[
  {
    "path": ".clang-format",
    "content": "---\nLanguage: Cpp\nBasedOnStyle: WebKit\n\nBinPackArguments: false\nBinPackParameters: false\nNamespaceIndentation: None\nColumnLimit: 80\nAlwaysBreakTemplateDeclarations: true\nAlignEscapedNewlines: Left\nAlignAfterOpenBracket: AlwaysBreak\n\n\nAccessModifierOffset: -4\nAlignConsecutiveAssignments: false\nAlignConsecutiveDeclarations: false\nAlignOperands:   false\nAlignTrailingComments: false\nAllowAllParametersOfDeclarationOnNextLine: true\nAllowShortBlocksOnASingleLine: false\nAllowShortCaseLabelsOnASingleLine: false\nAllowShortFunctionsOnASingleLine: All\nAllowShortIfStatementsOnASingleLine: false\nAllowShortLoopsOnASingleLine: false\nAlwaysBreakAfterDefinitionReturnType: None\nAlwaysBreakAfterReturnType: None\nAlwaysBreakBeforeMultilineStrings: false\nBraceWrapping:   \n  AfterClass:      false\n  AfterControlStatement: false\n  AfterEnum:       false\n  AfterFunction:   false\n  AfterNamespace:  false\n  AfterObjCDeclaration: false\n  AfterStruct:     false\n  AfterUnion:      false\n  AfterExternBlock: false\n  BeforeCatch:     false\n  BeforeElse:      false\n  IndentBraces:    false\n  SplitEmptyFunction: true\n  SplitEmptyRecord: true\n  SplitEmptyNamespace: true\nBreakBeforeBinaryOperators: All\nBreakBeforeBraces: Custom\nBreakBeforeInheritanceComma: false\nBreakBeforeTernaryOperators: true\nBreakConstructorInitializersBeforeComma: false\nBreakConstructorInitializers: BeforeComma\nBreakAfterJavaFieldAnnotations: false\nBreakStringLiterals: true\nCommentPragmas:  '^ IWYU pragma:'\nCompactNamespaces: false\nConstructorInitializerAllOnOneLineOrOnePerLine: false\nConstructorInitializerIndentWidth: 4\nContinuationIndentWidth: 4\nCpp11BracedListStyle: false\nDerivePointerAlignment: false\nDisableFormat:   false\nExperimentalAutoDetectBinPacking: false\nFixNamespaceComments: false\nForEachMacros:   \n  - foreach\n  - Q_FOREACH\n  - BOOST_FOREACH\nIncludeBlocks:   Preserve\nIncludeCategories: \n  - Regex:           '^\"(llvm|llvm-c|clang|clang-c)/'\n    Priority:        2\n  - Regex:           '^(<|\"(gtest|gmock|isl|json)/)'\n    Priority:        3\n  - Regex:           '.*'\n    Priority:        1\nIncludeIsMainRegex: '(Test)?$'\nIndentCaseLabels: false\nIndentPPDirectives: None\nIndentWidth:     4\nIndentWrappedFunctionNames: false\nJavaScriptQuotes: Leave\nJavaScriptWrapImports: true\nKeepEmptyLinesAtTheStartOfBlocks: true\nMacroBlockBegin: ''\nMacroBlockEnd:   ''\nMaxEmptyLinesToKeep: 1\nObjCBlockIndentWidth: 4\nObjCSpaceAfterProperty: true\nObjCSpaceBeforeProtocolList: true\nPenaltyBreakAssignment: 2\nPenaltyBreakBeforeFirstCallParameter: 19\nPenaltyBreakComment: 300\nPenaltyBreakFirstLessLess: 120\nPenaltyBreakString: 1000\nPenaltyExcessCharacter: 1000000\nPenaltyReturnTypeOnItsOwnLine: 60\nPointerAlignment: Left\nRawStringFormats: \n  - Delimiter:       pb\n    Language:        TextProto\n    BasedOnStyle:    google\nReflowComments:  true\nSortIncludes:    true\nSortUsingDeclarations: true\nSpaceAfterCStyleCast: false\nSpaceAfterTemplateKeyword: true\nSpaceBeforeAssignmentOperators: true\nSpaceBeforeParens: ControlStatements\nSpaceInEmptyParentheses: false\nSpacesBeforeTrailingComments: 1\nSpacesInAngles:  false\nSpacesInContainerLiterals: true\nSpacesInCStyleCastParentheses: false\nSpacesInParentheses: false\nSpacesInSquareBrackets: false\nStandard:        Cpp11\nTabWidth:        8\nUseTab:          Never\n...\n\n"
  },
  {
    "path": ".gitignore",
    "content": ".DS_Store\n/.sconsign.dblite\n/build/\n/.vscode/\n/swift/sajson.xcodeproj/project.xcworkspace/xcshareddata/\n\n# Bazel\nMODULE.bazel.lock\n# Ignore backup files.\n*~\n# Ignore Vim swap files.\n.*.swp\n# macOS-specific excludes\n.DS_Store\n# Ignore files generated by IDEs.\n/.aswb/\n/.bazelbsp/\n/.cache/\n/.classpath\n/.clwb/\n/.factorypath\n/.idea/\n/.ijwb/\n/.project\n/.settings\n/.vscode/\n.eclipse/\n.settings/\n.classpath\n.project\neclipse-*bin/\n/bazel.iml\n# Ignore all bazel-* symlinks. There is no full list since this can change\n# based on the name of the directory bazel is cloned into.\n/bazel-*\n# Ignore outputs generated during Bazel bootstrapping.\n/output/\n# Ignore jekyll build output.\n/production\n/.sass-cache\n# Bazelisk version file\n.bazelversion\n# User-specific .bazelrc\nuser.bazelrc\n"
  },
  {
    "path": ".travis.yml",
    "content": "os: osx\nosx_image: xcode9.2\n\nlanguage: cpp\n\n# sudo: required\n\n# dist: trusty\n\n#install:\n#- sudo apt-get install libstdc++6 gcc-multilib g++-multilib\n\ninstall:\n- brew install scons valgrind\n\nscript:\n- s/build\n- s/test\n# TODO: add test.  (can't run swift tests until newer osx_image, but newer osx_image\n# has broken valgrind.)\n- xcodebuild clean build -project swift/sajson.xcodeproj -scheme sajson-macOS\n"
  },
  {
    "path": "BUILD.bazel",
    "content": "load(\"@rules_cc//cc:defs.bzl\", \"cc_binary\", \"cc_library\", \"cc_test\")\n\ncc_library(\n    name = \"sajson\",\n    hdrs = glob([\"include/*.h\"]),\n    copts = select({\n        \"@bazel_tools//src/conditions:windows\": [\n            \"/W4\",\n            \"/WX\",\n        ],\n        \"//conditions:default\": [\n            \"-std=c++11\",\n            \"-Wall\",\n            \"-Werror\",\n            \"-Wno-unused-private-field\",\n        ],\n    }),\n    includes = [\"include\"],\n    visibility = [\"//visibility:public\"],\n)\n\ncc_test(\n    name = \"benchmark\",\n    srcs = [\"benchmark/benchmark.cpp\"],\n    copts = select({\n        \"@bazel_tools//src/conditions:windows\": [\"/O2\"],  # MSVC uses /O2\n        \"//conditions:default\": [\n            \"-O2\",  # GCC/Clang use -O2\n            \"-std=c++17\",\n        ],\n    }),\n    data = glob([\"testdata/*.json\"]),\n    deps = [\":sajson\"],\n)\n\ncc_test(\n    name = \"test\",\n    srcs = [\"tests/test.cpp\"],\n    copts = select({\n        \"@bazel_tools//src/conditions:windows\": [],\n        \"//conditions:default\": [\n            \"-std=c++17\",\n        ],\n    }),\n    deps = [\n        \":sajson\",\n        \"@unittest-cpp\",\n    ],\n)\n\ncc_binary(\n    name = \"example-main\",\n    srcs = [\"example/main.cpp\"],\n    deps = [\":sajson\"],\n)\n\ncc_binary(\n    name = \"example-zero-allocation\",\n    srcs = [\"example/zero-allocation.cpp\"],\n    deps = [\":sajson\"],\n)\n"
  },
  {
    "path": "LICENSE.txt",
    "content": "Copyright (c) 2012-2017 Chad Austin\n\nPermission 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:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE 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.\n"
  },
  {
    "path": "MODULE.bazel",
    "content": "\"\"\"\nModule: sajson\nPurpose: Provides the sajson library compileable as a Bazel target. Includes unit and benchmark tests through Bazel\nNote: Examples included as buildable binaries\n\"\"\"\n\nmodule(\n    name = \"sajson\",\n    version = \"0.0.0-20210905003841-ec644013e34f\",\n    compatibility_level = 1,\n)\n\nbazel_dep(name = \"rules_cc\", version = \"0.1.1\")\nbazel_dep(name = \"platforms\", version = \"0.0.11\")\n\nbazel_dep(name = \"unittest-cpp\", version = \"2.0.1-0.20201113052638-10e50ad70c69\", dev_dependency = True)\n"
  },
  {
    "path": "README.md",
    "content": "[![Documentation](https://img.shields.io/badge/docs-docsforge-blue)](http://sajson.docsforge.com/)\n\n# sajson\n\nsajson is an extremely high-performance, in-place, DOM-style JSON parser written in C++.\n\nOriginally, sajson meant Single Allocation JSON, but it now supports dynamic allocation too.\n\n## Features\n\nsajson parses an input document into a contiguous AST structure.  Unlike some other high-performance JSON parsers, the AST is efficiently queryable.  Object lookups by key are O(lg N) and array indexing is O(1).\n\nsajson does not require that the input buffer is null-terminated.  You can use it to parse straight out of a disk mmap or network buffer, for example.\n\nsajson is in-situ: it modifies the input string.  While parsing, string values are converted to UTF-8.\n\n(Note: sajson pays a slight performance penalty for not requiring null termination of the input string.  Because sajson is in-situ, many uses cases require copying the input data anyway.  Therefore, I could be convinced to add an option for requiring null termination.)\n\n### Other Features\n\n* Single header file -- simply drop sajson.h into your project.\n* No exceptions, RTTI, or longjmp.\n* O(1) stack usage. No document will overflow the stack.\n* Only two number types: 32-bits and doubles.\n* Small code size -- suitable for Emscripten.\n* Has been fuzzed with American Fuzzy Lop.\n\n## AST Structure\n\nThe parsed AST's size is computed as such:\n\n* 2 words per string\n* 1 word per 32-bit integer value\n* 64 bits per floating point value\n* 1+N words per array, where N is the number of elements\n* 1+3N words per object, where N is the number of members\n\nThe values null, true, and false are encoded in tag bits and have no cost otherwise.\n\n## Allocation Modes\n\n### Single\n\nThe original sajson allocation mode allocates one word per byte of the input document.  This is the fastest mode: because the AST and parse stack are guaranteed to fit, no allocation checks are required at runtime.\n\nThat is, on 32-bit platforms, sajson allocates 4 bytes per input character.  On 64-bit platforms, sajson allocates 8 bytes per input character.  Only use this parse mode if you can handle allocating the worst-case buffer size for your input documents.\n\n### Dynamic\n\nThe dynamic allocation mode grows the parse stack and AST buffer as needed.  It's about 10-40% slower than single allocation because it needs to check for out-of-memory every time data is appended, and occasionally the buffers need to be reallocated and copied.\n\n### Bounded\n\nThe bounded allocation mode takes a fixed-size memory buffer and uses it for both\nthe parse stack and the resulting AST.  If the parse stack and AST fit in the given\nbuffer, the parse succeeds.  This allocation mode allows using sajson without\nthe library making any allocations.\n\n## Performance\n\nsajson's performance is excellent - it frequently benchmarks faster than RapidJSON, for example.\n\nImplementation details are available at [http://chadaustin.me/tag/sajson/](http://chadaustin.me/tag/sajson/).\n\n## Documentation\n\nAPI documentation is available at http://chadaustin.github.io/sajson/doxygen/\n\n## Downsides / Missing Features\n\n* sajson does not support UTF-16 or UTF-32.  However, I have never seen one of those in the wild, so I suspect they may be a case of aggressive overspecification.  Some JSON specifications indicate that UTF-8 is the only valid encoding.  Either way, just transcode to UTF-8 first.\n\n* No support for 64-bit integers.  If this is something you want, just ask.  (There's little technical reason not to support it.  It's just that most people avoid 64-bit integers in JSON because JavaScript can't read them.)\n\n* Requires C++11.  Some of the ownership semantics were awkward to express in C++03.\n"
  },
  {
    "path": "SConscript",
    "content": "Import(\"*\")\n\nunittestpp_env = env.Clone()\nunittestpp_env.Append(CPPPATH=[\"#/third-party/UnitTest++/src\"])\nunittestpp_env.Library(\n    \"libraries/unittestpp\",\n    [\n        \"third-party/UnitTest++/src/AssertException.cpp\",\n        \"third-party/UnitTest++/src/Checks.cpp\",\n        \"third-party/UnitTest++/src/CurrentTest.cpp\",\n        \"third-party/UnitTest++/src/DeferredTestReporter.cpp\",\n        \"third-party/UnitTest++/src/DeferredTestResult.cpp\",\n        \"third-party/UnitTest++/src/MemoryOutStream.cpp\",\n        \"third-party/UnitTest++/src/ReportAssert.cpp\",\n        \"third-party/UnitTest++/src/Test.cpp\",\n        \"third-party/UnitTest++/src/TestDetails.cpp\",\n        \"third-party/UnitTest++/src/TestList.cpp\",\n        \"third-party/UnitTest++/src/TestReporter.cpp\",\n        \"third-party/UnitTest++/src/TestReporterStdout.cpp\",\n        \"third-party/UnitTest++/src/TestResults.cpp\",\n        \"third-party/UnitTest++/src/TestRunner.cpp\",\n        \"third-party/UnitTest++/src/TimeConstraint.cpp\",\n        \"third-party/UnitTest++/src/XmlTestReporter.cpp\",\n        \"third-party/UnitTest++/src/Posix/SignalTranslator.cpp\",\n        \"third-party/UnitTest++/src/Posix/TimeHelpers.cpp\",\n    ],\n)\n\ntest_env = env.Clone(tools=[unittestpp, sajson])\ntest_env.Program(\"test\", [\"tests/test.cpp\", \"tests/test_no_stl.cpp\"])\n\ntest_unsorted_env = test_env.Clone()\ntest_unsorted_env.Append(CPPDEFINES=[\"SAJSON_UNSORTED_OBJECT_KEYS\"])\ntest_unsorted_env.Program(\n    \"test_unsorted\",\n    [test_unsorted_env.Object(\"tests/test_unsorted.o\", \"tests/test.cpp\")],\n)\n\nbench_env = env.Clone(tools=[sajson])\nbench_env.Append(CPPDEFINES=[\"NDEBUG\"])\nbench_env.Program(\"bench\", [\"benchmark/benchmark.cpp\"])\n\nparse_stats_env = env.Clone(tools=[sajson])\nparse_stats_env.Program(\"parse_stats\", [\"example/main.cpp\"])\n"
  },
  {
    "path": "SConstruct",
    "content": "import os\nimport multiprocessing\nimport sys\n\nSetOption(\"num_jobs\", multiprocessing.cpu_count())\n\n\ndef export(fn):\n    Export({fn.__name__: fn})\n    return fn\n\n\n@export\ndef sajson(env):\n    env.Append(CPPPATH=[\"#/include\"])\n\n\n@export\ndef unittestpp(env):\n    env.Append(\n        CPPPATH=[\"#/third-party/UnitTest++/src\"],\n        LIBPATH=[\"#/${BUILDDIR}/libraries\"],\n        LIBS=[\"unittestpp\"],\n    )\n\n\ndef gcc(env):\n    env[\"CC\"] = \"gcc\"\n    env[\"CXX\"] = \"g++\"\n\n\ndef clang(env):\n    env[\"CC\"] = \"clang\"\n    env[\"CXX\"] = \"clang++\"\n\n\ndef dbg(env):\n    env.Append(CCFLAGS=[\"-g\"])\n\n\ndef opt(env):\n    env.Append(CCFLAGS=[\"-O2\", \"-g\"], LINKFLAGS=[\"-O2\", \"-g\"])\n\n\ndef san(env):\n    static_opt = \"-static-libasan\" if env.subst(\"$CC\") == \"gcc\" else None\n    env.Append(\n        CCFLAGS=[\n            \"-g\",\n            # ASAN & UBSAN\n            \"-fsanitize=address,undefined\",\n            # Requires newer gcc.\n            # '-fsanitize=pointer-compare', '-fsanitize=pointer-subtract',\n        ],\n        LINKFLAGS=[\"-g\", static_opt, \"-fsanitize=address,undefined\"],\n    )\n\n\ndef m32(env):\n    env.Append(CCFLAGS=[\"-m32\"], LINKFLAGS=[\"-m32\"])\n\n\ndef m64(env):\n    env.Append(CCFLAGS=[\"-m64\"], LINKFLAGS=[\"-m64\"])\n\n\nenv = Environment(\n    ENV=os.environ,\n    CXXFLAGS=[\"-std=c++11\", \"-Wall\", \"-Werror\", \"-Wno-unused-private-field\"],\n)\n\nif sys.platform == \"darwin\":\n    builds = [\n        (\"clang-64-opt\", [clang, m64, opt]),\n        (\"clang-64-dbg\", [clang, m64, dbg]),\n        # Not sure how to link with libasan on the travis-ci Mac image.\n        # ('clang-64-san', [clang, m64, san]),\n    ]\nelse:\n    builds = [\n        (\"gcc-32-opt\", [gcc, m32, opt]),\n        (\"gcc-32-dbg\", [gcc, m32, dbg]),\n        (\"gcc-32-san\", [gcc, m32, san]),\n        (\"gcc-64-opt\", [gcc, m64, opt]),\n        (\"gcc-64-dbg\", [gcc, m64, dbg]),\n        (\"gcc-64-san\", [gcc, m64, san]),\n        (\"clang-32-opt\", [clang, m32, opt]),\n        (\"clang-32-dbg\", [clang, m32, dbg]),\n        # clang m32 sanitizers don't work on ubuntu\n        # ('clang-32-san', [clang, m32, san]),\n        (\"clang-64-opt\", [clang, m64, opt]),\n        (\"clang-64-dbg\", [clang, m64, dbg]),\n        (\"clang-64-san\", [clang, m64, san]),\n    ]\n\nfor name, tools in builds:\n    e = env.Clone(tools=tools)\n    e.Append(BUILDDIR=os.path.join(\"build\", name))\n    e.SConscript(\"SConscript\", variant_dir=\"$BUILDDIR\", duplicate=0, exports={\"env\": e})\n"
  },
  {
    "path": "benchmark/benchmark.cpp",
    "content": "#include <memory>\n#include <sajson.h>\n#include <ctime>\n#include <vector>\n\nconst char* default_files[] = {\n    \"testdata/apache_builds.json\", \"testdata/github_events.json\",\n    \"testdata/instruments.json\",   \"testdata/mesh.json\",\n    \"testdata/mesh.pretty.json\",   \"testdata/nested.json\",\n    \"testdata/svg_menu.json\",      \"testdata/truenull.json\",\n    \"testdata/twitter.json\",       \"testdata/update-center.json\",\n    \"testdata/whitespace.json\",\n};\nconst size_t default_files_count\n    = sizeof(default_files) / sizeof(*default_files);\n\ntemplate <typename AllocationStrategy>\nvoid run_benchmark(size_t max_string_length, const char* filename) {\n    FILE* file = fopen(filename, \"rb\");\n    if (!file) {\n        perror(\"fopen failed\");\n        return;\n    }\n\n    std::unique_ptr<FILE, int (*)(FILE*)> deleter(file, fclose);\n\n    if (fseek(file, 0, SEEK_END)) {\n        perror(\"fseek failed\");\n        return;\n    }\n    size_t length = ftell(file);\n    if (fseek(file, 0, SEEK_SET)) {\n        perror(\"fseek failed\");\n        return;\n    }\n\n    std::vector<char> buffer(length);\n    if (fread(buffer.data(), length, 1, file) != 1) {\n        perror(\"fread failed\");\n        return;\n    }\n\n    deleter.reset();\n\n    clock_t minimum_each = std::numeric_limits<clock_t>::max();\n\n    clock_t start = clock();\n\n    const size_t N = 1000;\n    for (size_t i = 0; i < N; ++i) {\n        clock_t before_each = clock();\n        sajson::parse(\n            AllocationStrategy(), sajson::string(buffer.data(), buffer.size()));\n        clock_t elapsed_each = clock() - before_each;\n        minimum_each = std::min(minimum_each, elapsed_each);\n    }\n\n    clock_t elapsed = clock() - start;\n\n    double average_elapsed_ms = 1000.0 * elapsed / CLOCKS_PER_SEC / N;\n    double minimum_elapsed_ms = 1000.0 * minimum_each / CLOCKS_PER_SEC;\n    printf(\n        \"%*s - %0.3f ms - %0.3f ms\\n\",\n        static_cast<int>(max_string_length),\n        filename,\n        average_elapsed_ms,\n        minimum_elapsed_ms);\n}\n\ntemplate <typename AllocationStrategy>\nvoid run_all(size_t files_count, const char** files) {\n    size_t max_string_length = 0;\n    for (size_t i = 0; i < files_count; ++i) {\n        max_string_length = std::max(max_string_length, strlen(files[i]));\n    }\n    printf(\n        \"%*s - %8s - %8s\\n\",\n        static_cast<int>(max_string_length),\n        \"file\",\n        \"avg\",\n        \"min\");\n    printf(\n        \"%*s - %8s - %8s\\n\",\n        static_cast<int>(max_string_length),\n        \"----\",\n        \"---\",\n        \"---\");\n    for (size_t i = 0; i < files_count; ++i) {\n        run_benchmark<AllocationStrategy>(max_string_length, files[i]);\n    }\n}\n\nint main(int argc, const char** argv) {\n    if (argc > 1) {\n        // printf(\"\\n=== SINGLE ALLOCATION ===\\n\\n\");\n        run_all<sajson::single_allocation>(argc - 1, argv + 1);\n        // printf(\"\\n=== DYNAMIC ALLOCATION ===\\n\\n\");\n        // run_all<sajson::dynamic_allocation>(argc - 1, argv + 1);\n    } else {\n        // printf(\"\\n=== SINGLE ALLOCATION ===\\n\\n\");\n        run_all<sajson::single_allocation>(default_files_count, default_files);\n        // printf(\"\\n=== DYNAMIC ALLOCATION ===\\n\\n\");\n        // run_all<sajson::dynamic_allocation>(default_files_count,\n        // default_files);\n    }\n}\n"
  },
  {
    "path": "doc/docsforge.yaml",
    "content": "sidebar:\n  Basic Tutorial:\n  - Getting Started: README.md\n  Examples:\n  - main.cpp: example/main.cpp\n  - zero-allocation.cpp: example/zero-allocation.cpp\n\n\nautodocSettings:\n  Public API:\n    language: cpp\n    INPUT: include/sajson.h\n    EXCLUDE: test tests examples\n    EXCLUDE_PATTERNS: '*/tests/* */test/*'\n    includeApi: []\n    excludeApi: []\n    documentSingleUnderscore: true\n    documentStatic: true\n    documentProtected: true\n    extractNonDocComments: false\n    extract_namespace_comments: true\n    sort_by_type: true\n    sort_alphabetically: true\n    separate_defines: false\n    star_mentioned: true\n    star_list: []\n    ENABLE_PREPROCESSING: 'YES'\n    MACRO_EXPANSION: 'NO'\n    EXPAND_ONLY_PREDEF: 'NO'\n    PREDEFINED: ''\n    SEARCH_INCLUDES: 'YES'\n    INCLUDE_PATH: ''\n    INCLUDE_FILE_PATTERNS: ''\n    ALIASES: ''\n    EXAMPLE_PATH: ''"
  },
  {
    "path": "doc/doxygen.config",
    "content": "# Doxyfile 1.8.11\n\n# This file describes the settings to be used by the documentation system\n# doxygen (www.doxygen.org) for a project.\n#\n# All text after a double hash (##) is considered a comment and is placed in\n# front of the TAG it is preceding.\n#\n# All text after a single hash (#) is considered a comment and will be ignored.\n# The format is:\n# TAG = value [value, ...]\n# For lists, items can also be appended using:\n# TAG += value [value, ...]\n# Values that contain spaces should be placed between quotes (\\\" \\\").\n\n#---------------------------------------------------------------------------\n# Project related configuration options\n#---------------------------------------------------------------------------\n\n# This tag specifies the encoding used for all characters in the config file\n# that follow. The default is UTF-8 which is also the encoding used for all text\n# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv\n# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv\n# for the list of possible encodings.\n# The default value is: UTF-8.\n\nDOXYFILE_ENCODING      = UTF-8\n\n# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by\n# double-quotes, unless you are using Doxywizard) that should identify the\n# project for which the documentation is generated. This name is used in the\n# title of most generated pages and in a few other places.\n# The default value is: My Project.\n\nPROJECT_NAME           = \"sajson\"\n\n# The PROJECT_NUMBER tag can be used to enter a project or revision number. This\n# could be handy for archiving the generated documentation or if some version\n# control system is used.\n\nPROJECT_NUMBER         =\n\n# Using the PROJECT_BRIEF tag one can provide an optional one line description\n# for a project that appears at the top of each page and should give viewer a\n# quick idea about the purpose of the project. Keep the description short.\n\nPROJECT_BRIEF          = \"High-Performance JSON Parser\"\n\n# With the PROJECT_LOGO tag one can specify a logo or an icon that is included\n# in the documentation. The maximum height of the logo should not exceed 55\n# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy\n# the logo to the output directory.\n\nPROJECT_LOGO           =\n\n# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path\n# into which the generated documentation will be written. If a relative path is\n# entered, it will be relative to the location where doxygen was started. If\n# left blank the current directory will be used.\n\nOUTPUT_DIRECTORY       = doc/doxygen/\n\n# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-\n# directories (in 2 levels) under the output directory of each output format and\n# will distribute the generated files over these directories. Enabling this\n# option can be useful when feeding doxygen a huge amount of source files, where\n# putting all generated files in the same directory would otherwise causes\n# performance problems for the file system.\n# The default value is: NO.\n\nCREATE_SUBDIRS         = NO\n\n# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII\n# characters to appear in the names of generated files. If set to NO, non-ASCII\n# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode\n# U+3044.\n# The default value is: NO.\n\nALLOW_UNICODE_NAMES    = NO\n\n# The OUTPUT_LANGUAGE tag is used to specify the language in which all\n# documentation generated by doxygen is written. Doxygen will use this\n# information to generate all constant output in the proper language.\n# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,\n# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),\n# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,\n# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),\n# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,\n# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,\n# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,\n# Ukrainian and Vietnamese.\n# The default value is: English.\n\nOUTPUT_LANGUAGE        = English\n\n# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member\n# descriptions after the members that are listed in the file and class\n# documentation (similar to Javadoc). Set to NO to disable this.\n# The default value is: YES.\n\nBRIEF_MEMBER_DESC      = YES\n\n# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief\n# description of a member or function before the detailed description\n#\n# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the\n# brief descriptions will be completely suppressed.\n# The default value is: YES.\n\nREPEAT_BRIEF           = YES\n\n# This tag implements a quasi-intelligent brief description abbreviator that is\n# used to form the text in various listings. Each string in this list, if found\n# as the leading text of the brief description, will be stripped from the text\n# and the result, after processing the whole list, is used as the annotated\n# text. Otherwise, the brief description is used as-is. If left blank, the\n# following values are used ($name is automatically replaced with the name of\n# the entity):The $name class, The $name widget, The $name file, is, provides,\n# specifies, contains, represents, a, an and the.\n\nABBREVIATE_BRIEF       =\n\n# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then\n# doxygen will generate a detailed section even if there is only a brief\n# description.\n# The default value is: NO.\n\nALWAYS_DETAILED_SEC    = YES\n\n# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all\n# inherited members of a class in the documentation of that class as if those\n# members were ordinary class members. Constructors, destructors and assignment\n# operators of the base classes will not be shown.\n# The default value is: NO.\n\nINLINE_INHERITED_MEMB  = NO\n\n# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path\n# before files name in the file list and in the header files. If set to NO the\n# shortest path that makes the file name unique will be used\n# The default value is: YES.\n\nFULL_PATH_NAMES        = YES\n\n# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.\n# Stripping is only done if one of the specified strings matches the left-hand\n# part of the path. The tag can be used to show relative paths in the file list.\n# If left blank the directory from which doxygen is run is used as the path to\n# strip.\n#\n# Note that you can specify absolute paths here, but also relative paths, which\n# will be relative from the directory where doxygen is started.\n# This tag requires that the tag FULL_PATH_NAMES is set to YES.\n\nSTRIP_FROM_PATH        =\n\n# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the\n# path mentioned in the documentation of a class, which tells the reader which\n# header file to include in order to use a class. If left blank only the name of\n# the header file containing the class definition is used. Otherwise one should\n# specify the list of include paths that are normally passed to the compiler\n# using the -I flag.\n\nSTRIP_FROM_INC_PATH    =\n\n# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but\n# less readable) file names. This can be useful is your file systems doesn't\n# support long names like on DOS, Mac, or CD-ROM.\n# The default value is: NO.\n\nSHORT_NAMES            = NO\n\n# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the\n# first line (until the first dot) of a Javadoc-style comment as the brief\n# description. If set to NO, the Javadoc-style will behave just like regular Qt-\n# style comments (thus requiring an explicit @brief command for a brief\n# description.)\n# The default value is: NO.\n\nJAVADOC_AUTOBRIEF      = YES\n\n# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first\n# line (until the first dot) of a Qt-style comment as the brief description. If\n# set to NO, the Qt-style will behave just like regular Qt-style comments (thus\n# requiring an explicit \\brief command for a brief description.)\n# The default value is: NO.\n\nQT_AUTOBRIEF           = YES\n\n# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a\n# multi-line C++ special comment block (i.e. a block of //! or /// comments) as\n# a brief description. This used to be the default behavior. The new default is\n# to treat a multi-line C++ comment block as a detailed description. Set this\n# tag to YES if you prefer the old behavior instead.\n#\n# Note that setting this tag to YES also means that rational rose comments are\n# not recognized any more.\n# The default value is: NO.\n\nMULTILINE_CPP_IS_BRIEF = NO\n\n# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the\n# documentation from any documented member that it re-implements.\n# The default value is: YES.\n\nINHERIT_DOCS           = YES\n\n# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new\n# page for each member. If set to NO, the documentation of a member will be part\n# of the file/class/namespace that contains it.\n# The default value is: NO.\n\nSEPARATE_MEMBER_PAGES  = NO\n\n# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen\n# uses this value to replace tabs by spaces in code fragments.\n# Minimum value: 1, maximum value: 16, default value: 4.\n\nTAB_SIZE               = 4\n\n# This tag can be used to specify a number of aliases that act as commands in\n# the documentation. An alias has the form:\n# name=value\n# For example adding\n# \"sideeffect=@par Side Effects:\\n\"\n# will allow you to put the command \\sideeffect (or @sideeffect) in the\n# documentation, which will result in a user-defined paragraph with heading\n# \"Side Effects:\". You can put \\n's in the value part of an alias to insert\n# newlines.\n\nALIASES                =\n\n# This tag can be used to specify a number of word-keyword mappings (TCL only).\n# A mapping has the form \"name=value\". For example adding \"class=itcl::class\"\n# will allow you to use the command class in the itcl::class meaning.\n\nTCL_SUBST              =\n\n# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources\n# only. Doxygen will then generate output that is more tailored for C. For\n# instance, some of the names that are used will be different. The list of all\n# members will be omitted, etc.\n# The default value is: NO.\n\nOPTIMIZE_OUTPUT_FOR_C  = NO\n\n# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or\n# Python sources only. Doxygen will then generate output that is more tailored\n# for that language. For instance, namespaces will be presented as packages,\n# qualified scopes will look different, etc.\n# The default value is: NO.\n\nOPTIMIZE_OUTPUT_JAVA   = NO\n\n# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran\n# sources. Doxygen will then generate output that is tailored for Fortran.\n# The default value is: NO.\n\nOPTIMIZE_FOR_FORTRAN   = NO\n\n# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL\n# sources. Doxygen will then generate output that is tailored for VHDL.\n# The default value is: NO.\n\nOPTIMIZE_OUTPUT_VHDL   = NO\n\n# Doxygen selects the parser to use depending on the extension of the files it\n# parses. With this tag you can assign which parser to use for a given\n# extension. Doxygen has a built-in mapping, but you can override or extend it\n# using this tag. The format is ext=language, where ext is a file extension, and\n# language is one of the parsers supported by doxygen: IDL, Java, Javascript,\n# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran:\n# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran:\n# Fortran. In the later case the parser tries to guess whether the code is fixed\n# or free formatted code, this is the default for Fortran type files), VHDL. For\n# instance to make doxygen treat .inc files as Fortran files (default is PHP),\n# and .f files as C (default is Fortran), use: inc=Fortran f=C.\n#\n# Note: For files without extension you can use no_extension as a placeholder.\n#\n# Note that for custom extensions you also need to set FILE_PATTERNS otherwise\n# the files are not read by doxygen.\n\nEXTENSION_MAPPING      =\n\n# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments\n# according to the Markdown format, which allows for more readable\n# documentation. See http://daringfireball.net/projects/markdown/ for details.\n# The output of markdown processing is further processed by doxygen, so you can\n# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in\n# case of backward compatibilities issues.\n# The default value is: YES.\n\nMARKDOWN_SUPPORT       = YES\n\n# When enabled doxygen tries to link words that correspond to documented\n# classes, or namespaces to their corresponding documentation. Such a link can\n# be prevented in individual cases by putting a % sign in front of the word or\n# globally by setting AUTOLINK_SUPPORT to NO.\n# The default value is: YES.\n\nAUTOLINK_SUPPORT       = YES\n\n# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want\n# to include (a tag file for) the STL sources as input, then you should set this\n# tag to YES in order to let doxygen match functions declarations and\n# definitions whose arguments contain STL classes (e.g. func(std::string);\n# versus func(std::string) {}). This also make the inheritance and collaboration\n# diagrams that involve STL classes more complete and accurate.\n# The default value is: NO.\n\nBUILTIN_STL_SUPPORT    = NO\n\n# If you use Microsoft's C++/CLI language, you should set this option to YES to\n# enable parsing support.\n# The default value is: NO.\n\nCPP_CLI_SUPPORT        = NO\n\n# Set the SIP_SUPPORT tag to YES if your project consists of sip (see:\n# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen\n# will parse them like normal C++ but will assume all classes use public instead\n# of private inheritance when no explicit protection keyword is present.\n# The default value is: NO.\n\nSIP_SUPPORT            = NO\n\n# For Microsoft's IDL there are propget and propput attributes to indicate\n# getter and setter methods for a property. Setting this option to YES will make\n# doxygen to replace the get and set methods by a property in the documentation.\n# This will only work if the methods are indeed getting or setting a simple\n# type. If this is not the case, or you want to show the methods anyway, you\n# should set this option to NO.\n# The default value is: YES.\n\nIDL_PROPERTY_SUPPORT   = YES\n\n# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC\n# tag is set to YES then doxygen will reuse the documentation of the first\n# member in the group (if any) for the other members of the group. By default\n# all members of a group must be documented explicitly.\n# The default value is: NO.\n\nDISTRIBUTE_GROUP_DOC   = NO\n\n# If one adds a struct or class to a group and this option is enabled, then also\n# any nested class or struct is added to the same group. By default this option\n# is disabled and one has to add nested compounds explicitly via \\ingroup.\n# The default value is: NO.\n\nGROUP_NESTED_COMPOUNDS = NO\n\n# Set the SUBGROUPING tag to YES to allow class member groups of the same type\n# (for instance a group of public functions) to be put as a subgroup of that\n# type (e.g. under the Public Functions section). Set it to NO to prevent\n# subgrouping. Alternatively, this can be done per class using the\n# \\nosubgrouping command.\n# The default value is: YES.\n\nSUBGROUPING            = YES\n\n# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions\n# are shown inside the group in which they are included (e.g. using \\ingroup)\n# instead of on a separate page (for HTML and Man pages) or section (for LaTeX\n# and RTF).\n#\n# Note that this feature does not work in combination with\n# SEPARATE_MEMBER_PAGES.\n# The default value is: NO.\n\nINLINE_GROUPED_CLASSES = NO\n\n# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions\n# with only public data fields or simple typedef fields will be shown inline in\n# the documentation of the scope in which they are defined (i.e. file,\n# namespace, or group documentation), provided this scope is documented. If set\n# to NO, structs, classes, and unions are shown on a separate page (for HTML and\n# Man pages) or section (for LaTeX and RTF).\n# The default value is: NO.\n\nINLINE_SIMPLE_STRUCTS  = NO\n\n# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or\n# enum is documented as struct, union, or enum with the name of the typedef. So\n# typedef struct TypeS {} TypeT, will appear in the documentation as a struct\n# with name TypeT. When disabled the typedef will appear as a member of a file,\n# namespace, or class. And the struct will be named TypeS. This can typically be\n# useful for C code in case the coding convention dictates that all compound\n# types are typedef'ed and only the typedef is referenced, never the tag name.\n# The default value is: NO.\n\nTYPEDEF_HIDES_STRUCT   = NO\n\n# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This\n# cache is used to resolve symbols given their name and scope. Since this can be\n# an expensive process and often the same symbol appears multiple times in the\n# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small\n# doxygen will become slower. If the cache is too large, memory is wasted. The\n# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range\n# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536\n# symbols. At the end of a run doxygen will report the cache usage and suggest\n# the optimal cache size from a speed point of view.\n# Minimum value: 0, maximum value: 9, default value: 0.\n\nLOOKUP_CACHE_SIZE      = 0\n\n#---------------------------------------------------------------------------\n# Build related configuration options\n#---------------------------------------------------------------------------\n\n# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in\n# documentation are documented, even if no documentation was available. Private\n# class members and static file members will be hidden unless the\n# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.\n# Note: This will also disable the warnings about undocumented members that are\n# normally produced when WARNINGS is set to YES.\n# The default value is: NO.\n\nEXTRACT_ALL            = NO\n\n# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will\n# be included in the documentation.\n# The default value is: NO.\n\nEXTRACT_PRIVATE        = NO\n\n# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal\n# scope will be included in the documentation.\n# The default value is: NO.\n\nEXTRACT_PACKAGE        = NO\n\n# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be\n# included in the documentation.\n# The default value is: NO.\n\nEXTRACT_STATIC         = NO\n\n# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined\n# locally in source files will be included in the documentation. If set to NO,\n# only classes defined in header files are included. Does not have any effect\n# for Java sources.\n# The default value is: YES.\n\nEXTRACT_LOCAL_CLASSES  = YES\n\n# This flag is only useful for Objective-C code. If set to YES, local methods,\n# which are defined in the implementation section but not in the interface are\n# included in the documentation. If set to NO, only methods in the interface are\n# included.\n# The default value is: NO.\n\nEXTRACT_LOCAL_METHODS  = NO\n\n# If this flag is set to YES, the members of anonymous namespaces will be\n# extracted and appear in the documentation as a namespace called\n# 'anonymous_namespace{file}', where file will be replaced with the base name of\n# the file that contains the anonymous namespace. By default anonymous namespace\n# are hidden.\n# The default value is: NO.\n\nEXTRACT_ANON_NSPACES   = NO\n\n# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all\n# undocumented members inside documented classes or files. If set to NO these\n# members will be included in the various overviews, but no documentation\n# section is generated. This option has no effect if EXTRACT_ALL is enabled.\n# The default value is: NO.\n\nHIDE_UNDOC_MEMBERS     = NO\n\n# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all\n# undocumented classes that are normally visible in the class hierarchy. If set\n# to NO, these classes will be included in the various overviews. This option\n# has no effect if EXTRACT_ALL is enabled.\n# The default value is: NO.\n\nHIDE_UNDOC_CLASSES     = NO\n\n# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend\n# (class|struct|union) declarations. If set to NO, these declarations will be\n# included in the documentation.\n# The default value is: NO.\n\nHIDE_FRIEND_COMPOUNDS  = NO\n\n# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any\n# documentation blocks found inside the body of a function. If set to NO, these\n# blocks will be appended to the function's detailed documentation block.\n# The default value is: NO.\n\nHIDE_IN_BODY_DOCS      = NO\n\n# The INTERNAL_DOCS tag determines if documentation that is typed after a\n# \\internal command is included. If the tag is set to NO then the documentation\n# will be excluded. Set it to YES to include the internal documentation.\n# The default value is: NO.\n\nINTERNAL_DOCS          = NO\n\n# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file\n# names in lower-case letters. If set to YES, upper-case letters are also\n# allowed. This is useful if you have classes or files whose names only differ\n# in case and if your file system supports case sensitive file names. Windows\n# and Mac users are advised to set this option to NO.\n# The default value is: system dependent.\n\nCASE_SENSE_NAMES       = YES\n\n# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with\n# their full class and namespace scopes in the documentation. If set to YES, the\n# scope will be hidden.\n# The default value is: NO.\n\nHIDE_SCOPE_NAMES       = NO\n\n# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will\n# append additional text to a page's title, such as Class Reference. If set to\n# YES the compound reference will be hidden.\n# The default value is: NO.\n\nHIDE_COMPOUND_REFERENCE= NO\n\n# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of\n# the files that are included by a file in the documentation of that file.\n# The default value is: YES.\n\nSHOW_INCLUDE_FILES     = YES\n\n# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each\n# grouped member an include statement to the documentation, telling the reader\n# which file to include in order to use the member.\n# The default value is: NO.\n\nSHOW_GROUPED_MEMB_INC  = NO\n\n# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include\n# files with double quotes in the documentation rather than with sharp brackets.\n# The default value is: NO.\n\nFORCE_LOCAL_INCLUDES   = NO\n\n# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the\n# documentation for inline members.\n# The default value is: YES.\n\nINLINE_INFO            = YES\n\n# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the\n# (detailed) documentation of file and class members alphabetically by member\n# name. If set to NO, the members will appear in declaration order.\n# The default value is: YES.\n\nSORT_MEMBER_DOCS       = NO\n\n# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief\n# descriptions of file, namespace and class members alphabetically by member\n# name. If set to NO, the members will appear in declaration order. Note that\n# this will also influence the order of the classes in the class list.\n# The default value is: NO.\n\nSORT_BRIEF_DOCS        = NO\n\n# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the\n# (brief and detailed) documentation of class members so that constructors and\n# destructors are listed first. If set to NO the constructors will appear in the\n# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.\n# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief\n# member documentation.\n# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting\n# detailed member documentation.\n# The default value is: NO.\n\nSORT_MEMBERS_CTORS_1ST = NO\n\n# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy\n# of group names into alphabetical order. If set to NO the group names will\n# appear in their defined order.\n# The default value is: NO.\n\nSORT_GROUP_NAMES       = NO\n\n# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by\n# fully-qualified names, including namespaces. If set to NO, the class list will\n# be sorted only by class name, not including the namespace part.\n# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.\n# Note: This option applies only to the class list, not to the alphabetical\n# list.\n# The default value is: NO.\n\nSORT_BY_SCOPE_NAME     = NO\n\n# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper\n# type resolution of all parameters of a function it will reject a match between\n# the prototype and the implementation of a member function even if there is\n# only one candidate or it is obvious which candidate to choose by doing a\n# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still\n# accept a match between prototype and implementation in such cases.\n# The default value is: NO.\n\nSTRICT_PROTO_MATCHING  = NO\n\n# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo\n# list. This list is created by putting \\todo commands in the documentation.\n# The default value is: YES.\n\nGENERATE_TODOLIST      = YES\n\n# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test\n# list. This list is created by putting \\test commands in the documentation.\n# The default value is: YES.\n\nGENERATE_TESTLIST      = YES\n\n# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug\n# list. This list is created by putting \\bug commands in the documentation.\n# The default value is: YES.\n\nGENERATE_BUGLIST       = YES\n\n# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)\n# the deprecated list. This list is created by putting \\deprecated commands in\n# the documentation.\n# The default value is: YES.\n\nGENERATE_DEPRECATEDLIST= YES\n\n# The ENABLED_SECTIONS tag can be used to enable conditional documentation\n# sections, marked by \\if <section_label> ... \\endif and \\cond <section_label>\n# ... \\endcond blocks.\n\nENABLED_SECTIONS       =\n\n# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the\n# initial value of a variable or macro / define can have for it to appear in the\n# documentation. If the initializer consists of more lines than specified here\n# it will be hidden. Use a value of 0 to hide initializers completely. The\n# appearance of the value of individual variables and macros / defines can be\n# controlled using \\showinitializer or \\hideinitializer command in the\n# documentation regardless of this setting.\n# Minimum value: 0, maximum value: 10000, default value: 30.\n\nMAX_INITIALIZER_LINES  = 30\n\n# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at\n# the bottom of the documentation of classes and structs. If set to YES, the\n# list will mention the files that were used to generate the documentation.\n# The default value is: YES.\n\nSHOW_USED_FILES        = YES\n\n# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This\n# will remove the Files entry from the Quick Index and from the Folder Tree View\n# (if specified).\n# The default value is: YES.\n\nSHOW_FILES             = NO\n\n# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces\n# page. This will remove the Namespaces entry from the Quick Index and from the\n# Folder Tree View (if specified).\n# The default value is: YES.\n\nSHOW_NAMESPACES        = YES\n\n# The FILE_VERSION_FILTER tag can be used to specify a program or script that\n# doxygen should invoke to get the current version for each file (typically from\n# the version control system). Doxygen will invoke the program by executing (via\n# popen()) the command command input-file, where command is the value of the\n# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided\n# by doxygen. Whatever the program writes to standard output is used as the file\n# version. For an example see the documentation.\n\nFILE_VERSION_FILTER    =\n\n# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed\n# by doxygen. The layout file controls the global structure of the generated\n# output files in an output format independent way. To create the layout file\n# that represents doxygen's defaults, run doxygen with the -l option. You can\n# optionally specify a file name after the option, if omitted DoxygenLayout.xml\n# will be used as the name of the layout file.\n#\n# Note that if you run doxygen from a directory containing a file called\n# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE\n# tag is left empty.\n\nLAYOUT_FILE            =\n\n# The CITE_BIB_FILES tag can be used to specify one or more bib files containing\n# the reference definitions. This must be a list of .bib files. The .bib\n# extension is automatically appended if omitted. This requires the bibtex tool\n# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info.\n# For LaTeX the style of the bibliography can be controlled using\n# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the\n# search path. See also \\cite for info how to create references.\n\nCITE_BIB_FILES         =\n\n#---------------------------------------------------------------------------\n# Configuration options related to warning and progress messages\n#---------------------------------------------------------------------------\n\n# The QUIET tag can be used to turn on/off the messages that are generated to\n# standard output by doxygen. If QUIET is set to YES this implies that the\n# messages are off.\n# The default value is: NO.\n\nQUIET                  = NO\n\n# The WARNINGS tag can be used to turn on/off the warning messages that are\n# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES\n# this implies that the warnings are on.\n#\n# Tip: Turn warnings on while writing the documentation.\n# The default value is: YES.\n\nWARNINGS               = YES\n\n# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate\n# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag\n# will automatically be disabled.\n# The default value is: YES.\n\nWARN_IF_UNDOCUMENTED   = YES\n\n# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for\n# potential errors in the documentation, such as not documenting some parameters\n# in a documented function, or documenting parameters that don't exist or using\n# markup commands wrongly.\n# The default value is: YES.\n\nWARN_IF_DOC_ERROR      = YES\n\n# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that\n# are documented, but have no documentation for their parameters or return\n# value. If set to NO, doxygen will only warn about wrong or incomplete\n# parameter documentation, but not about the absence of documentation.\n# The default value is: NO.\n\nWARN_NO_PARAMDOC       = NO\n\n# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when\n# a warning is encountered.\n# The default value is: NO.\n\nWARN_AS_ERROR          = NO\n\n# The WARN_FORMAT tag determines the format of the warning messages that doxygen\n# can produce. The string should contain the $file, $line, and $text tags, which\n# will be replaced by the file and line number from which the warning originated\n# and the warning text. Optionally the format may contain $version, which will\n# be replaced by the version of the file (if it could be obtained via\n# FILE_VERSION_FILTER)\n# The default value is: $file:$line: $text.\n\nWARN_FORMAT            = \"$file:$line: $text\"\n\n# The WARN_LOGFILE tag can be used to specify a file to which warning and error\n# messages should be written. If left blank the output is written to standard\n# error (stderr).\n\nWARN_LOGFILE           =\n\n#---------------------------------------------------------------------------\n# Configuration options related to the input files\n#---------------------------------------------------------------------------\n\n# The INPUT tag is used to specify the files and/or directories that contain\n# documented source files. You may enter file names like myfile.cpp or\n# directories like /usr/src/myproject. Separate the files or directories with\n# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING\n# Note: If this tag is empty the current directory is searched.\n\nINPUT                  = include/sajson.h\n\n# This tag can be used to specify the character encoding of the source files\n# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses\n# libiconv (or the iconv built into libc) for the transcoding. See the libiconv\n# documentation (see: http://www.gnu.org/software/libiconv) for the list of\n# possible encodings.\n# The default value is: UTF-8.\n\nINPUT_ENCODING         = UTF-8\n\n# If the value of the INPUT tag contains directories, you can use the\n# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and\n# *.h) to filter out the source-files in the directories.\n#\n# Note that for custom extensions or not directly supported extensions you also\n# need to set EXTENSION_MAPPING for the extension otherwise the files are not\n# read by doxygen.\n#\n# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,\n# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,\n# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,\n# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f, *.for, *.tcl,\n# *.vhd, *.vhdl, *.ucf, *.qsf, *.as and *.js.\n\nFILE_PATTERNS          =\n\n# The RECURSIVE tag can be used to specify whether or not subdirectories should\n# be searched for input files as well.\n# The default value is: NO.\n\nRECURSIVE              = NO\n\n# The EXCLUDE tag can be used to specify files and/or directories that should be\n# excluded from the INPUT source files. This way you can easily exclude a\n# subdirectory from a directory tree whose root is specified with the INPUT tag.\n#\n# Note that relative paths are relative to the directory from which doxygen is\n# run.\n\nEXCLUDE                =\n\n# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or\n# directories that are symbolic links (a Unix file system feature) are excluded\n# from the input.\n# The default value is: NO.\n\nEXCLUDE_SYMLINKS       = NO\n\n# If the value of the INPUT tag contains directories, you can use the\n# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude\n# certain files from those directories.\n#\n# Note that the wildcards are matched against the file with absolute path, so to\n# exclude all test directories for example use the pattern */test/*\n\nEXCLUDE_PATTERNS       =\n\n# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names\n# (namespaces, classes, functions, etc.) that should be excluded from the\n# output. The symbol name can be a fully qualified name, a word, or if the\n# wildcard * is used, a substring. Examples: ANamespace, AClass,\n# AClass::ANamespace, ANamespace::*Test\n#\n# Note that the wildcards are matched against the file with absolute path, so to\n# exclude all test directories use the pattern */test/*\n\nEXCLUDE_SYMBOLS        =\n\n# The EXAMPLE_PATH tag can be used to specify one or more files or directories\n# that contain example code fragments that are included (see the \\include\n# command).\n\nEXAMPLE_PATH           =\n\n# If the value of the EXAMPLE_PATH tag contains directories, you can use the\n# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and\n# *.h) to filter out the source-files in the directories. If left blank all\n# files are included.\n\nEXAMPLE_PATTERNS       =\n\n# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be\n# searched for input files to be used with the \\include or \\dontinclude commands\n# irrespective of the value of the RECURSIVE tag.\n# The default value is: NO.\n\nEXAMPLE_RECURSIVE      = NO\n\n# The IMAGE_PATH tag can be used to specify one or more files or directories\n# that contain images that are to be included in the documentation (see the\n# \\image command).\n\nIMAGE_PATH             =\n\n# The INPUT_FILTER tag can be used to specify a program that doxygen should\n# invoke to filter for each input file. Doxygen will invoke the filter program\n# by executing (via popen()) the command:\n#\n# <filter> <input-file>\n#\n# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the\n# name of an input file. Doxygen will then use the output that the filter\n# program writes to standard output. If FILTER_PATTERNS is specified, this tag\n# will be ignored.\n#\n# Note that the filter must not add or remove lines; it is applied before the\n# code is scanned, but not when the output code is generated. If lines are added\n# or removed, the anchors will not be placed correctly.\n#\n# Note that for custom extensions or not directly supported extensions you also\n# need to set EXTENSION_MAPPING for the extension otherwise the files are not\n# properly processed by doxygen.\n\nINPUT_FILTER           =\n\n# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern\n# basis. Doxygen will compare the file name with each pattern and apply the\n# filter if there is a match. The filters are a list of the form: pattern=filter\n# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how\n# filters are used. If the FILTER_PATTERNS tag is empty or if none of the\n# patterns match the file name, INPUT_FILTER is applied.\n#\n# Note that for custom extensions or not directly supported extensions you also\n# need to set EXTENSION_MAPPING for the extension otherwise the files are not\n# properly processed by doxygen.\n\nFILTER_PATTERNS        =\n\n# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using\n# INPUT_FILTER) will also be used to filter the input files that are used for\n# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).\n# The default value is: NO.\n\nFILTER_SOURCE_FILES    = NO\n\n# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file\n# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and\n# it is also possible to disable source filtering for a specific pattern using\n# *.ext= (so without naming a filter).\n# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.\n\nFILTER_SOURCE_PATTERNS =\n\n# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that\n# is part of the input, its contents will be placed on the main page\n# (index.html). This can be useful if you have a project on for instance GitHub\n# and want to reuse the introduction page also for the doxygen output.\n\nUSE_MDFILE_AS_MAINPAGE =\n\n#---------------------------------------------------------------------------\n# Configuration options related to source browsing\n#---------------------------------------------------------------------------\n\n# If the SOURCE_BROWSER tag is set to YES then a list of source files will be\n# generated. Documented entities will be cross-referenced with these sources.\n#\n# Note: To get rid of all source code in the generated output, make sure that\n# also VERBATIM_HEADERS is set to NO.\n# The default value is: NO.\n\nSOURCE_BROWSER         = NO\n\n# Setting the INLINE_SOURCES tag to YES will include the body of functions,\n# classes and enums directly into the documentation.\n# The default value is: NO.\n\nINLINE_SOURCES         = NO\n\n# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any\n# special comment blocks from generated source code fragments. Normal C, C++ and\n# Fortran comments will always remain visible.\n# The default value is: YES.\n\nSTRIP_CODE_COMMENTS    = YES\n\n# If the REFERENCED_BY_RELATION tag is set to YES then for each documented\n# function all documented functions referencing it will be listed.\n# The default value is: NO.\n\nREFERENCED_BY_RELATION = NO\n\n# If the REFERENCES_RELATION tag is set to YES then for each documented function\n# all documented entities called/used by that function will be listed.\n# The default value is: NO.\n\nREFERENCES_RELATION    = NO\n\n# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set\n# to YES then the hyperlinks from functions in REFERENCES_RELATION and\n# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will\n# link to the documentation.\n# The default value is: YES.\n\nREFERENCES_LINK_SOURCE = YES\n\n# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the\n# source code will show a tooltip with additional information such as prototype,\n# brief description and links to the definition and documentation. Since this\n# will make the HTML file larger and loading of large files a bit slower, you\n# can opt to disable this feature.\n# The default value is: YES.\n# This tag requires that the tag SOURCE_BROWSER is set to YES.\n\nSOURCE_TOOLTIPS        = YES\n\n# If the USE_HTAGS tag is set to YES then the references to source code will\n# point to the HTML generated by the htags(1) tool instead of doxygen built-in\n# source browser. The htags tool is part of GNU's global source tagging system\n# (see http://www.gnu.org/software/global/global.html). You will need version\n# 4.8.6 or higher.\n#\n# To use it do the following:\n# - Install the latest version of global\n# - Enable SOURCE_BROWSER and USE_HTAGS in the config file\n# - Make sure the INPUT points to the root of the source tree\n# - Run doxygen as normal\n#\n# Doxygen will invoke htags (and that will in turn invoke gtags), so these\n# tools must be available from the command line (i.e. in the search path).\n#\n# The result: instead of the source browser generated by doxygen, the links to\n# source code will now point to the output of htags.\n# The default value is: NO.\n# This tag requires that the tag SOURCE_BROWSER is set to YES.\n\nUSE_HTAGS              = NO\n\n# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a\n# verbatim copy of the header file for each class for which an include is\n# specified. Set to NO to disable this.\n# See also: Section \\class.\n# The default value is: YES.\n\nVERBATIM_HEADERS       = YES\n\n# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the\n# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the\n# cost of reduced performance. This can be particularly helpful with template\n# rich C++ code for which doxygen's built-in parser lacks the necessary type\n# information.\n# Note: The availability of this option depends on whether or not doxygen was\n# generated with the -Duse-libclang=ON option for CMake.\n# The default value is: NO.\n\nCLANG_ASSISTED_PARSING = NO\n\n# If clang assisted parsing is enabled you can provide the compiler with command\n# line options that you would normally use when invoking the compiler. Note that\n# the include paths will already be set by doxygen for the files and directories\n# specified with INPUT and INCLUDE_PATH.\n# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.\n\nCLANG_OPTIONS          =\n\n#---------------------------------------------------------------------------\n# Configuration options related to the alphabetical class index\n#---------------------------------------------------------------------------\n\n# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all\n# compounds will be generated. Enable this if the project contains a lot of\n# classes, structs, unions or interfaces.\n# The default value is: YES.\n\nALPHABETICAL_INDEX     = YES\n\n# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in\n# which the alphabetical index list will be split.\n# Minimum value: 1, maximum value: 20, default value: 5.\n# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.\n\nCOLS_IN_ALPHA_INDEX    = 5\n\n# In case all classes in a project start with a common prefix, all classes will\n# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag\n# can be used to specify a prefix (or a list of prefixes) that should be ignored\n# while generating the index headers.\n# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.\n\nIGNORE_PREFIX          =\n\n#---------------------------------------------------------------------------\n# Configuration options related to the HTML output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output\n# The default value is: YES.\n\nGENERATE_HTML          = YES\n\n# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a\n# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n# it.\n# The default directory is: html.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_OUTPUT            = html\n\n# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each\n# generated HTML page (for example: .htm, .php, .asp).\n# The default value is: .html.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_FILE_EXTENSION    = .html\n\n# The HTML_HEADER tag can be used to specify a user-defined HTML header file for\n# each generated HTML page. If the tag is left blank doxygen will generate a\n# standard header.\n#\n# To get valid HTML the header file that includes any scripts and style sheets\n# that doxygen needs, which is dependent on the configuration options used (e.g.\n# the setting GENERATE_TREEVIEW). It is highly recommended to start with a\n# default header using\n# doxygen -w html new_header.html new_footer.html new_stylesheet.css\n# YourConfigFile\n# and then modify the file new_header.html. See also section \"Doxygen usage\"\n# for information on how to generate the default header that doxygen normally\n# uses.\n# Note: The header is subject to change so you typically have to regenerate the\n# default header when upgrading to a newer version of doxygen. For a description\n# of the possible markers and block names see the documentation.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_HEADER            =\n\n# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each\n# generated HTML page. If the tag is left blank doxygen will generate a standard\n# footer. See HTML_HEADER for more information on how to generate a default\n# footer and what special commands can be used inside the footer. See also\n# section \"Doxygen usage\" for information on how to generate the default footer\n# that doxygen normally uses.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_FOOTER            =\n\n# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style\n# sheet that is used by each HTML page. It can be used to fine-tune the look of\n# the HTML output. If left blank doxygen will generate a default style sheet.\n# See also section \"Doxygen usage\" for information on how to generate the style\n# sheet that doxygen normally uses.\n# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as\n# it is more robust and this tag (HTML_STYLESHEET) will in the future become\n# obsolete.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_STYLESHEET        =\n\n# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined\n# cascading style sheets that are included after the standard style sheets\n# created by doxygen. Using this option one can overrule certain style aspects.\n# This is preferred over using HTML_STYLESHEET since it does not replace the\n# standard style sheet and is therefore more robust against future updates.\n# Doxygen will copy the style sheet files to the output directory.\n# Note: The order of the extra style sheet files is of importance (e.g. the last\n# style sheet in the list overrules the setting of the previous ones in the\n# list). For an example see the documentation.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_EXTRA_STYLESHEET  =\n\n# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or\n# other source files which should be copied to the HTML output directory. Note\n# that these files will be copied to the base HTML output directory. Use the\n# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these\n# files. In the HTML_STYLESHEET file, use the file name only. Also note that the\n# files will be copied as-is; there are no commands or markers available.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_EXTRA_FILES       =\n\n# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen\n# will adjust the colors in the style sheet and background images according to\n# this color. Hue is specified as an angle on a colorwheel, see\n# http://en.wikipedia.org/wiki/Hue for more information. For instance the value\n# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300\n# purple, and 360 is red again.\n# Minimum value: 0, maximum value: 359, default value: 220.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_COLORSTYLE_HUE    = 220\n\n# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors\n# in the HTML output. For a value of 0 the output will use grayscales only. A\n# value of 255 will produce the most vivid colors.\n# Minimum value: 0, maximum value: 255, default value: 100.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_COLORSTYLE_SAT    = 100\n\n# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the\n# luminance component of the colors in the HTML output. Values below 100\n# gradually make the output lighter, whereas values above 100 make the output\n# darker. The value divided by 100 is the actual gamma applied, so 80 represents\n# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not\n# change the gamma.\n# Minimum value: 40, maximum value: 240, default value: 80.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_COLORSTYLE_GAMMA  = 80\n\n# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML\n# page will contain the date and time when the page was generated. Setting this\n# to YES can help to show when doxygen was last run and thus if the\n# documentation is up to date.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_TIMESTAMP         = NO\n\n# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML\n# documentation will contain sections that can be hidden and shown after the\n# page has loaded.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_DYNAMIC_SECTIONS  = NO\n\n# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries\n# shown in the various tree structured indices initially; the user can expand\n# and collapse entries dynamically later on. Doxygen will expand the tree to\n# such a level that at most the specified number of entries are visible (unless\n# a fully collapsed tree already exceeds this amount). So setting the number of\n# entries 1 will produce a full collapsed tree by default. 0 is a special value\n# representing an infinite number of entries and will result in a full expanded\n# tree by default.\n# Minimum value: 0, maximum value: 9999, default value: 100.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_INDEX_NUM_ENTRIES = 100\n\n# If the GENERATE_DOCSET tag is set to YES, additional index files will be\n# generated that can be used as input for Apple's Xcode 3 integrated development\n# environment (see: http://developer.apple.com/tools/xcode/), introduced with\n# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a\n# Makefile in the HTML output directory. Running make will produce the docset in\n# that directory and running make install will install the docset in\n# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at\n# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html\n# for more information.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nGENERATE_DOCSET        = NO\n\n# This tag determines the name of the docset feed. A documentation feed provides\n# an umbrella under which multiple documentation sets from a single provider\n# (such as a company or product suite) can be grouped.\n# The default value is: Doxygen generated docs.\n# This tag requires that the tag GENERATE_DOCSET is set to YES.\n\nDOCSET_FEEDNAME        = \"Doxygen generated docs\"\n\n# This tag specifies a string that should uniquely identify the documentation\n# set bundle. This should be a reverse domain-name style string, e.g.\n# com.mycompany.MyDocSet. Doxygen will append .docset to the name.\n# The default value is: org.doxygen.Project.\n# This tag requires that the tag GENERATE_DOCSET is set to YES.\n\nDOCSET_BUNDLE_ID       = org.doxygen.Project\n\n# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify\n# the documentation publisher. This should be a reverse domain-name style\n# string, e.g. com.mycompany.MyDocSet.documentation.\n# The default value is: org.doxygen.Publisher.\n# This tag requires that the tag GENERATE_DOCSET is set to YES.\n\nDOCSET_PUBLISHER_ID    = org.doxygen.Publisher\n\n# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.\n# The default value is: Publisher.\n# This tag requires that the tag GENERATE_DOCSET is set to YES.\n\nDOCSET_PUBLISHER_NAME  = Publisher\n\n# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three\n# additional HTML index files: index.hhp, index.hhc, and index.hhk. The\n# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop\n# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on\n# Windows.\n#\n# The HTML Help Workshop contains a compiler that can convert all HTML output\n# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML\n# files are now used as the Windows 98 help format, and will replace the old\n# Windows help format (.hlp) on all Windows platforms in the future. Compressed\n# HTML files also contain an index, a table of contents, and you can search for\n# words in the documentation. The HTML workshop also contains a viewer for\n# compressed HTML files.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nGENERATE_HTMLHELP      = NO\n\n# The CHM_FILE tag can be used to specify the file name of the resulting .chm\n# file. You can add a path in front of the file if the result should not be\n# written to the html output directory.\n# This tag requires that the tag GENERATE_HTMLHELP is set to YES.\n\nCHM_FILE               =\n\n# The HHC_LOCATION tag can be used to specify the location (absolute path\n# including file name) of the HTML help compiler (hhc.exe). If non-empty,\n# doxygen will try to run the HTML help compiler on the generated index.hhp.\n# The file has to be specified with full path.\n# This tag requires that the tag GENERATE_HTMLHELP is set to YES.\n\nHHC_LOCATION           =\n\n# The GENERATE_CHI flag controls if a separate .chi index file is generated\n# (YES) or that it should be included in the master .chm file (NO).\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTMLHELP is set to YES.\n\nGENERATE_CHI           = NO\n\n# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)\n# and project file content.\n# This tag requires that the tag GENERATE_HTMLHELP is set to YES.\n\nCHM_INDEX_ENCODING     =\n\n# The BINARY_TOC flag controls whether a binary table of contents is generated\n# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it\n# enables the Previous and Next buttons.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTMLHELP is set to YES.\n\nBINARY_TOC             = NO\n\n# The TOC_EXPAND flag can be set to YES to add extra items for group members to\n# the table of contents of the HTML help documentation and to the tree view.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTMLHELP is set to YES.\n\nTOC_EXPAND             = NO\n\n# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and\n# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that\n# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help\n# (.qch) of the generated HTML documentation.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nGENERATE_QHP           = NO\n\n# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify\n# the file name of the resulting .qch file. The path specified is relative to\n# the HTML output folder.\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQCH_FILE               =\n\n# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help\n# Project output. For more information please see Qt Help Project / Namespace\n# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace).\n# The default value is: org.doxygen.Project.\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQHP_NAMESPACE          = org.doxygen.Project\n\n# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt\n# Help Project output. For more information please see Qt Help Project / Virtual\n# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual-\n# folders).\n# The default value is: doc.\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQHP_VIRTUAL_FOLDER     = doc\n\n# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom\n# filter to add. For more information please see Qt Help Project / Custom\n# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-\n# filters).\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQHP_CUST_FILTER_NAME   =\n\n# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the\n# custom filter to add. For more information please see Qt Help Project / Custom\n# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-\n# filters).\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQHP_CUST_FILTER_ATTRS  =\n\n# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this\n# project's filter section matches. Qt Help Project / Filter Attributes (see:\n# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes).\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQHP_SECT_FILTER_ATTRS  =\n\n# The QHG_LOCATION tag can be used to specify the location of Qt's\n# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the\n# generated .qhp file.\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQHG_LOCATION           =\n\n# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be\n# generated, together with the HTML files, they form an Eclipse help plugin. To\n# install this plugin and make it available under the help contents menu in\n# Eclipse, the contents of the directory containing the HTML and XML files needs\n# to be copied into the plugins directory of eclipse. The name of the directory\n# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.\n# After copying Eclipse needs to be restarted before the help appears.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nGENERATE_ECLIPSEHELP   = NO\n\n# A unique identifier for the Eclipse help plugin. When installing the plugin\n# the directory name containing the HTML and XML files should also have this\n# name. Each documentation set should have its own identifier.\n# The default value is: org.doxygen.Project.\n# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.\n\nECLIPSE_DOC_ID         = org.doxygen.Project\n\n# If you want full control over the layout of the generated HTML pages it might\n# be necessary to disable the index and replace it with your own. The\n# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top\n# of each HTML page. A value of NO enables the index and the value YES disables\n# it. Since the tabs in the index contain the same information as the navigation\n# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nDISABLE_INDEX          = NO\n\n# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index\n# structure should be generated to display hierarchical information. If the tag\n# value is set to YES, a side panel will be generated containing a tree-like\n# index structure (just like the one that is generated for HTML Help). For this\n# to work a browser that supports JavaScript, DHTML, CSS and frames is required\n# (i.e. any modern browser). Windows users are probably better off using the\n# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can\n# further fine-tune the look of the index. As an example, the default style\n# sheet generated by doxygen has an example that shows how to put an image at\n# the root of the tree instead of the PROJECT_NAME. Since the tree basically has\n# the same information as the tab index, you could consider setting\n# DISABLE_INDEX to YES when enabling this option.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nGENERATE_TREEVIEW      = NO\n\n# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that\n# doxygen will group on one line in the generated HTML documentation.\n#\n# Note that a value of 0 will completely suppress the enum values from appearing\n# in the overview section.\n# Minimum value: 0, maximum value: 20, default value: 4.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nENUM_VALUES_PER_LINE   = 4\n\n# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used\n# to set the initial width (in pixels) of the frame in which the tree is shown.\n# Minimum value: 0, maximum value: 1500, default value: 250.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nTREEVIEW_WIDTH         = 250\n\n# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to\n# external symbols imported via tag files in a separate window.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nEXT_LINKS_IN_WINDOW    = NO\n\n# Use this tag to change the font size of LaTeX formulas included as images in\n# the HTML documentation. When you change the font size after a successful\n# doxygen run you need to manually remove any form_*.png images from the HTML\n# output directory to force them to be regenerated.\n# Minimum value: 8, maximum value: 50, default value: 10.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nFORMULA_FONTSIZE       = 10\n\n# Use the FORMULA_TRANPARENT tag to determine whether or not the images\n# generated for formulas are transparent PNGs. Transparent PNGs are not\n# supported properly for IE 6.0, but are supported on all modern browsers.\n#\n# Note that when changing this option you need to delete any form_*.png files in\n# the HTML output directory before the changes have effect.\n# The default value is: YES.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nFORMULA_TRANSPARENT    = YES\n\n# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see\n# http://www.mathjax.org) which uses client side Javascript for the rendering\n# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX\n# installed or if you want to formulas look prettier in the HTML output. When\n# enabled you may also need to install MathJax separately and configure the path\n# to it using the MATHJAX_RELPATH option.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nUSE_MATHJAX            = NO\n\n# When MathJax is enabled you can set the default output format to be used for\n# the MathJax output. See the MathJax site (see:\n# http://docs.mathjax.org/en/latest/output.html) for more details.\n# Possible values are: HTML-CSS (which is slower, but has the best\n# compatibility), NativeMML (i.e. MathML) and SVG.\n# The default value is: HTML-CSS.\n# This tag requires that the tag USE_MATHJAX is set to YES.\n\nMATHJAX_FORMAT         = HTML-CSS\n\n# When MathJax is enabled you need to specify the location relative to the HTML\n# output directory using the MATHJAX_RELPATH option. The destination directory\n# should contain the MathJax.js script. For instance, if the mathjax directory\n# is located at the same level as the HTML output directory, then\n# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax\n# Content Delivery Network so you can quickly see the result without installing\n# MathJax. However, it is strongly recommended to install a local copy of\n# MathJax from http://www.mathjax.org before deployment.\n# The default value is: http://cdn.mathjax.org/mathjax/latest.\n# This tag requires that the tag USE_MATHJAX is set to YES.\n\nMATHJAX_RELPATH        = http://cdn.mathjax.org/mathjax/latest\n\n# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax\n# extension names that should be enabled during MathJax rendering. For example\n# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols\n# This tag requires that the tag USE_MATHJAX is set to YES.\n\nMATHJAX_EXTENSIONS     =\n\n# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces\n# of code that will be used on startup of the MathJax code. See the MathJax site\n# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an\n# example see the documentation.\n# This tag requires that the tag USE_MATHJAX is set to YES.\n\nMATHJAX_CODEFILE       =\n\n# When the SEARCHENGINE tag is enabled doxygen will generate a search box for\n# the HTML output. The underlying search engine uses javascript and DHTML and\n# should work on any modern browser. Note that when using HTML help\n# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)\n# there is already a search function so this one should typically be disabled.\n# For large projects the javascript based search engine can be slow, then\n# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to\n# search using the keyboard; to jump to the search box use <access key> + S\n# (what the <access key> is depends on the OS and browser, but it is typically\n# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down\n# key> to jump into the search results window, the results can be navigated\n# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel\n# the search. The filter options can be selected when the cursor is inside the\n# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>\n# to select a filter and <Enter> or <escape> to activate or cancel the filter\n# option.\n# The default value is: YES.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nSEARCHENGINE           = YES\n\n# When the SERVER_BASED_SEARCH tag is enabled the search engine will be\n# implemented using a web server instead of a web client using Javascript. There\n# are two flavors of web server based searching depending on the EXTERNAL_SEARCH\n# setting. When disabled, doxygen will generate a PHP script for searching and\n# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing\n# and searching needs to be provided by external tools. See the section\n# \"External Indexing and Searching\" for details.\n# The default value is: NO.\n# This tag requires that the tag SEARCHENGINE is set to YES.\n\nSERVER_BASED_SEARCH    = NO\n\n# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP\n# script for searching. Instead the search results are written to an XML file\n# which needs to be processed by an external indexer. Doxygen will invoke an\n# external search engine pointed to by the SEARCHENGINE_URL option to obtain the\n# search results.\n#\n# Doxygen ships with an example indexer (doxyindexer) and search engine\n# (doxysearch.cgi) which are based on the open source search engine library\n# Xapian (see: http://xapian.org/).\n#\n# See the section \"External Indexing and Searching\" for details.\n# The default value is: NO.\n# This tag requires that the tag SEARCHENGINE is set to YES.\n\nEXTERNAL_SEARCH        = NO\n\n# The SEARCHENGINE_URL should point to a search engine hosted by a web server\n# which will return the search results when EXTERNAL_SEARCH is enabled.\n#\n# Doxygen ships with an example indexer (doxyindexer) and search engine\n# (doxysearch.cgi) which are based on the open source search engine library\n# Xapian (see: http://xapian.org/). See the section \"External Indexing and\n# Searching\" for details.\n# This tag requires that the tag SEARCHENGINE is set to YES.\n\nSEARCHENGINE_URL       =\n\n# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed\n# search data is written to a file for indexing by an external tool. With the\n# SEARCHDATA_FILE tag the name of this file can be specified.\n# The default file is: searchdata.xml.\n# This tag requires that the tag SEARCHENGINE is set to YES.\n\nSEARCHDATA_FILE        = searchdata.xml\n\n# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the\n# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is\n# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple\n# projects and redirect the results back to the right project.\n# This tag requires that the tag SEARCHENGINE is set to YES.\n\nEXTERNAL_SEARCH_ID     =\n\n# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen\n# projects other than the one defined by this configuration file, but that are\n# all added to the same external search index. Each project needs to have a\n# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of\n# to a relative location where the documentation can be found. The format is:\n# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...\n# This tag requires that the tag SEARCHENGINE is set to YES.\n\nEXTRA_SEARCH_MAPPINGS  =\n\n#---------------------------------------------------------------------------\n# Configuration options related to the LaTeX output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.\n# The default value is: YES.\n\nGENERATE_LATEX         = NO\n\n# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a\n# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n# it.\n# The default directory is: latex.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_OUTPUT           = latex\n\n# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be\n# invoked.\n#\n# Note that when enabling USE_PDFLATEX this option is only used for generating\n# bitmaps for formulas in the HTML output, but not in the Makefile that is\n# written to the output directory.\n# The default file is: latex.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_CMD_NAME         = latex\n\n# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate\n# index for LaTeX.\n# The default file is: makeindex.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nMAKEINDEX_CMD_NAME     = makeindex\n\n# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX\n# documents. This may be useful for small projects and may help to save some\n# trees in general.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nCOMPACT_LATEX          = NO\n\n# The PAPER_TYPE tag can be used to set the paper type that is used by the\n# printer.\n# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x\n# 14 inches) and executive (7.25 x 10.5 inches).\n# The default value is: a4.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nPAPER_TYPE             = a4\n\n# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names\n# that should be included in the LaTeX output. The package can be specified just\n# by its name or with the correct syntax as to be used with the LaTeX\n# \\usepackage command. To get the times font for instance you can specify :\n# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}\n# To use the option intlimits with the amsmath package you can specify:\n# EXTRA_PACKAGES=[intlimits]{amsmath}\n# If left blank no extra packages will be included.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nEXTRA_PACKAGES         =\n\n# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the\n# generated LaTeX document. The header should contain everything until the first\n# chapter. If it is left blank doxygen will generate a standard header. See\n# section \"Doxygen usage\" for information on how to let doxygen write the\n# default header to a separate file.\n#\n# Note: Only use a user-defined header if you know what you are doing! The\n# following commands have a special meaning inside the header: $title,\n# $datetime, $date, $doxygenversion, $projectname, $projectnumber,\n# $projectbrief, $projectlogo. Doxygen will replace $title with the empty\n# string, for the replacement values of the other commands the user is referred\n# to HTML_HEADER.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_HEADER           =\n\n# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the\n# generated LaTeX document. The footer should contain everything after the last\n# chapter. If it is left blank doxygen will generate a standard footer. See\n# LATEX_HEADER for more information on how to generate a default footer and what\n# special commands can be used inside the footer.\n#\n# Note: Only use a user-defined footer if you know what you are doing!\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_FOOTER           =\n\n# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined\n# LaTeX style sheets that are included after the standard style sheets created\n# by doxygen. Using this option one can overrule certain style aspects. Doxygen\n# will copy the style sheet files to the output directory.\n# Note: The order of the extra style sheet files is of importance (e.g. the last\n# style sheet in the list overrules the setting of the previous ones in the\n# list).\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_EXTRA_STYLESHEET =\n\n# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or\n# other source files which should be copied to the LATEX_OUTPUT output\n# directory. Note that the files will be copied as-is; there are no commands or\n# markers available.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_EXTRA_FILES      =\n\n# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is\n# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will\n# contain links (just like the HTML output) instead of page references. This\n# makes the output suitable for online browsing using a PDF viewer.\n# The default value is: YES.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nPDF_HYPERLINKS         = YES\n\n# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate\n# the PDF file directly from the LaTeX files. Set this option to YES, to get a\n# higher quality PDF documentation.\n# The default value is: YES.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nUSE_PDFLATEX           = YES\n\n# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode\n# command to the generated LaTeX files. This will instruct LaTeX to keep running\n# if errors occur, instead of asking the user for help. This option is also used\n# when generating formulas in HTML.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_BATCHMODE        = NO\n\n# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the\n# index chapters (such as File Index, Compound Index, etc.) in the output.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_HIDE_INDICES     = NO\n\n# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source\n# code with syntax highlighting in the LaTeX output.\n#\n# Note that which sources are shown also depends on other settings such as\n# SOURCE_BROWSER.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_SOURCE_CODE      = NO\n\n# The LATEX_BIB_STYLE tag can be used to specify the style to use for the\n# bibliography, e.g. plainnat, or ieeetr. See\n# http://en.wikipedia.org/wiki/BibTeX and \\cite for more info.\n# The default value is: plain.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_BIB_STYLE        = plain\n\n# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated\n# page will contain the date and time when the page was generated. Setting this\n# to NO can help when comparing the output of multiple runs.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_TIMESTAMP        = NO\n\n#---------------------------------------------------------------------------\n# Configuration options related to the RTF output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The\n# RTF output is optimized for Word 97 and may not look too pretty with other RTF\n# readers/editors.\n# The default value is: NO.\n\nGENERATE_RTF           = NO\n\n# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a\n# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n# it.\n# The default directory is: rtf.\n# This tag requires that the tag GENERATE_RTF is set to YES.\n\nRTF_OUTPUT             = rtf\n\n# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF\n# documents. This may be useful for small projects and may help to save some\n# trees in general.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_RTF is set to YES.\n\nCOMPACT_RTF            = NO\n\n# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will\n# contain hyperlink fields. The RTF file will contain links (just like the HTML\n# output) instead of page references. This makes the output suitable for online\n# browsing using Word or some other Word compatible readers that support those\n# fields.\n#\n# Note: WordPad (write) and others do not support links.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_RTF is set to YES.\n\nRTF_HYPERLINKS         = NO\n\n# Load stylesheet definitions from file. Syntax is similar to doxygen's config\n# file, i.e. a series of assignments. You only have to provide replacements,\n# missing definitions are set to their default value.\n#\n# See also section \"Doxygen usage\" for information on how to generate the\n# default style sheet that doxygen normally uses.\n# This tag requires that the tag GENERATE_RTF is set to YES.\n\nRTF_STYLESHEET_FILE    =\n\n# Set optional variables used in the generation of an RTF document. Syntax is\n# similar to doxygen's config file. A template extensions file can be generated\n# using doxygen -e rtf extensionFile.\n# This tag requires that the tag GENERATE_RTF is set to YES.\n\nRTF_EXTENSIONS_FILE    =\n\n# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code\n# with syntax highlighting in the RTF output.\n#\n# Note that which sources are shown also depends on other settings such as\n# SOURCE_BROWSER.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_RTF is set to YES.\n\nRTF_SOURCE_CODE        = NO\n\n#---------------------------------------------------------------------------\n# Configuration options related to the man page output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for\n# classes and files.\n# The default value is: NO.\n\nGENERATE_MAN           = NO\n\n# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a\n# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n# it. A directory man3 will be created inside the directory specified by\n# MAN_OUTPUT.\n# The default directory is: man.\n# This tag requires that the tag GENERATE_MAN is set to YES.\n\nMAN_OUTPUT             = man\n\n# The MAN_EXTENSION tag determines the extension that is added to the generated\n# man pages. In case the manual section does not start with a number, the number\n# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is\n# optional.\n# The default value is: .3.\n# This tag requires that the tag GENERATE_MAN is set to YES.\n\nMAN_EXTENSION          = .3\n\n# The MAN_SUBDIR tag determines the name of the directory created within\n# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by\n# MAN_EXTENSION with the initial . removed.\n# This tag requires that the tag GENERATE_MAN is set to YES.\n\nMAN_SUBDIR             =\n\n# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it\n# will generate one additional man file for each entity documented in the real\n# man page(s). These additional files only source the real man page, but without\n# them the man command would be unable to find the correct page.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_MAN is set to YES.\n\nMAN_LINKS              = NO\n\n#---------------------------------------------------------------------------\n# Configuration options related to the XML output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that\n# captures the structure of the code including all documentation.\n# The default value is: NO.\n\nGENERATE_XML           = NO\n\n# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a\n# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n# it.\n# The default directory is: xml.\n# This tag requires that the tag GENERATE_XML is set to YES.\n\nXML_OUTPUT             = xml\n\n# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program\n# listings (including syntax highlighting and cross-referencing information) to\n# the XML output. Note that enabling this will significantly increase the size\n# of the XML output.\n# The default value is: YES.\n# This tag requires that the tag GENERATE_XML is set to YES.\n\nXML_PROGRAMLISTING     = YES\n\n#---------------------------------------------------------------------------\n# Configuration options related to the DOCBOOK output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files\n# that can be used to generate PDF.\n# The default value is: NO.\n\nGENERATE_DOCBOOK       = NO\n\n# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.\n# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in\n# front of it.\n# The default directory is: docbook.\n# This tag requires that the tag GENERATE_DOCBOOK is set to YES.\n\nDOCBOOK_OUTPUT         = docbook\n\n# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the\n# program listings (including syntax highlighting and cross-referencing\n# information) to the DOCBOOK output. Note that enabling this will significantly\n# increase the size of the DOCBOOK output.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_DOCBOOK is set to YES.\n\nDOCBOOK_PROGRAMLISTING = NO\n\n#---------------------------------------------------------------------------\n# Configuration options for the AutoGen Definitions output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an\n# AutoGen Definitions (see http://autogen.sf.net) file that captures the\n# structure of the code including all documentation. Note that this feature is\n# still experimental and incomplete at the moment.\n# The default value is: NO.\n\nGENERATE_AUTOGEN_DEF   = NO\n\n#---------------------------------------------------------------------------\n# Configuration options related to the Perl module output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module\n# file that captures the structure of the code including all documentation.\n#\n# Note that this feature is still experimental and incomplete at the moment.\n# The default value is: NO.\n\nGENERATE_PERLMOD       = NO\n\n# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary\n# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI\n# output from the Perl module output.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_PERLMOD is set to YES.\n\nPERLMOD_LATEX          = NO\n\n# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely\n# formatted so it can be parsed by a human reader. This is useful if you want to\n# understand what is going on. On the other hand, if this tag is set to NO, the\n# size of the Perl module output will be much smaller and Perl will parse it\n# just the same.\n# The default value is: YES.\n# This tag requires that the tag GENERATE_PERLMOD is set to YES.\n\nPERLMOD_PRETTY         = YES\n\n# The names of the make variables in the generated doxyrules.make file are\n# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful\n# so different doxyrules.make files included by the same Makefile don't\n# overwrite each other's variables.\n# This tag requires that the tag GENERATE_PERLMOD is set to YES.\n\nPERLMOD_MAKEVAR_PREFIX =\n\n#---------------------------------------------------------------------------\n# Configuration options related to the preprocessor\n#---------------------------------------------------------------------------\n\n# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all\n# C-preprocessor directives found in the sources and include files.\n# The default value is: YES.\n\nENABLE_PREPROCESSING   = YES\n\n# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names\n# in the source code. If set to NO, only conditional compilation will be\n# performed. Macro expansion can be done in a controlled way by setting\n# EXPAND_ONLY_PREDEF to YES.\n# The default value is: NO.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\n\nMACRO_EXPANSION        = NO\n\n# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then\n# the macro expansion is limited to the macros specified with the PREDEFINED and\n# EXPAND_AS_DEFINED tags.\n# The default value is: NO.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\n\nEXPAND_ONLY_PREDEF     = NO\n\n# If the SEARCH_INCLUDES tag is set to YES, the include files in the\n# INCLUDE_PATH will be searched if a #include is found.\n# The default value is: YES.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\n\nSEARCH_INCLUDES        = YES\n\n# The INCLUDE_PATH tag can be used to specify one or more directories that\n# contain include files that are not input files but should be processed by the\n# preprocessor.\n# This tag requires that the tag SEARCH_INCLUDES is set to YES.\n\nINCLUDE_PATH           =\n\n# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard\n# patterns (like *.h and *.hpp) to filter out the header-files in the\n# directories. If left blank, the patterns specified with FILE_PATTERNS will be\n# used.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\n\nINCLUDE_FILE_PATTERNS  =\n\n# The PREDEFINED tag can be used to specify one or more macro names that are\n# defined before the preprocessor is started (similar to the -D option of e.g.\n# gcc). The argument of the tag is a list of macros of the form: name or\n# name=definition (no spaces). If the definition and the \"=\" are omitted, \"=1\"\n# is assumed. To prevent a macro definition from being undefined via #undef or\n# recursively expanded use the := operator instead of the = operator.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\n\nPREDEFINED             =\n\n# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this\n# tag can be used to specify a list of macro names that should be expanded. The\n# macro definition that is found in the sources will be used. Use the PREDEFINED\n# tag if you want to use a different macro definition that overrules the\n# definition found in the source code.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\n\nEXPAND_AS_DEFINED      =\n\n# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will\n# remove all references to function-like macros that are alone on a line, have\n# an all uppercase name, and do not end with a semicolon. Such function macros\n# are typically used for boiler-plate code, and will confuse the parser if not\n# removed.\n# The default value is: YES.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\n\nSKIP_FUNCTION_MACROS   = YES\n\n#---------------------------------------------------------------------------\n# Configuration options related to external references\n#---------------------------------------------------------------------------\n\n# The TAGFILES tag can be used to specify one or more tag files. For each tag\n# file the location of the external documentation should be added. The format of\n# a tag file without this location is as follows:\n# TAGFILES = file1 file2 ...\n# Adding location for the tag files is done as follows:\n# TAGFILES = file1=loc1 \"file2 = loc2\" ...\n# where loc1 and loc2 can be relative or absolute paths or URLs. See the\n# section \"Linking to external documentation\" for more information about the use\n# of tag files.\n# Note: Each tag file must have a unique name (where the name does NOT include\n# the path). If a tag file is not located in the directory in which doxygen is\n# run, you must also specify the path to the tagfile here.\n\nTAGFILES               =\n\n# When a file name is specified after GENERATE_TAGFILE, doxygen will create a\n# tag file that is based on the input files it reads. See section \"Linking to\n# external documentation\" for more information about the usage of tag files.\n\nGENERATE_TAGFILE       =\n\n# If the ALLEXTERNALS tag is set to YES, all external class will be listed in\n# the class index. If set to NO, only the inherited external classes will be\n# listed.\n# The default value is: NO.\n\nALLEXTERNALS           = NO\n\n# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed\n# in the modules index. If set to NO, only the current project's groups will be\n# listed.\n# The default value is: YES.\n\nEXTERNAL_GROUPS        = YES\n\n# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in\n# the related pages index. If set to NO, only the current project's pages will\n# be listed.\n# The default value is: YES.\n\nEXTERNAL_PAGES         = YES\n\n# The PERL_PATH should be the absolute path and name of the perl script\n# interpreter (i.e. the result of 'which perl').\n# The default file (with absolute path) is: /usr/bin/perl.\n\nPERL_PATH              = /usr/bin/perl\n\n#---------------------------------------------------------------------------\n# Configuration options related to the dot tool\n#---------------------------------------------------------------------------\n\n# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram\n# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to\n# NO turns the diagrams off. Note that this option also works with HAVE_DOT\n# disabled, but it is recommended to install and use dot, since it yields more\n# powerful graphs.\n# The default value is: YES.\n\nCLASS_DIAGRAMS         = YES\n\n# You can define message sequence charts within doxygen comments using the \\msc\n# command. Doxygen will then run the mscgen tool (see:\n# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the\n# documentation. The MSCGEN_PATH tag allows you to specify the directory where\n# the mscgen tool resides. If left empty the tool is assumed to be found in the\n# default search path.\n\nMSCGEN_PATH            =\n\n# You can include diagrams made with dia in doxygen documentation. Doxygen will\n# then run dia to produce the diagram and insert it in the documentation. The\n# DIA_PATH tag allows you to specify the directory where the dia binary resides.\n# If left empty dia is assumed to be found in the default search path.\n\nDIA_PATH               =\n\n# If set to YES the inheritance and collaboration graphs will hide inheritance\n# and usage relations if the target is undocumented or is not a class.\n# The default value is: YES.\n\nHIDE_UNDOC_RELATIONS   = YES\n\n# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is\n# available from the path. This tool is part of Graphviz (see:\n# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent\n# Bell Labs. The other options in this section have no effect if this option is\n# set to NO\n# The default value is: YES.\n\nHAVE_DOT               = YES\n\n# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed\n# to run in parallel. When set to 0 doxygen will base this on the number of\n# processors available in the system. You can set it explicitly to a value\n# larger than 0 to get control over the balance between CPU load and processing\n# speed.\n# Minimum value: 0, maximum value: 32, default value: 0.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_NUM_THREADS        = 0\n\n# When you want a differently looking font in the dot files that doxygen\n# generates you can specify the font name using DOT_FONTNAME. You need to make\n# sure dot is able to find the font, which can be done by putting it in a\n# standard location or by setting the DOTFONTPATH environment variable or by\n# setting DOT_FONTPATH to the directory containing the font.\n# The default value is: Helvetica.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_FONTNAME           = Helvetica\n\n# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of\n# dot graphs.\n# Minimum value: 4, maximum value: 24, default value: 10.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_FONTSIZE           = 10\n\n# By default doxygen will tell dot to use the default font as specified with\n# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set\n# the path where dot can find it using this tag.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_FONTPATH           =\n\n# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for\n# each documented class showing the direct and indirect inheritance relations.\n# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nCLASS_GRAPH            = YES\n\n# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a\n# graph for each documented class showing the direct and indirect implementation\n# dependencies (inheritance, containment, and class references variables) of the\n# class with other documented classes.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nCOLLABORATION_GRAPH    = YES\n\n# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for\n# groups, showing the direct groups dependencies.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nGROUP_GRAPHS           = YES\n\n# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and\n# collaboration diagrams in a style similar to the OMG's Unified Modeling\n# Language.\n# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nUML_LOOK               = NO\n\n# If the UML_LOOK tag is enabled, the fields and methods are shown inside the\n# class node. If there are many fields or methods and many nodes the graph may\n# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the\n# number of items for each type to make the size more manageable. Set this to 0\n# for no limit. Note that the threshold may be exceeded by 50% before the limit\n# is enforced. So when you set the threshold to 10, up to 15 fields may appear,\n# but if the number exceeds 15, the total amount of fields shown is limited to\n# 10.\n# Minimum value: 0, maximum value: 100, default value: 10.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nUML_LIMIT_NUM_FIELDS   = 10\n\n# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and\n# collaboration graphs will show the relations between templates and their\n# instances.\n# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nTEMPLATE_RELATIONS     = NO\n\n# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to\n# YES then doxygen will generate a graph for each documented file showing the\n# direct and indirect include dependencies of the file with other documented\n# files.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nINCLUDE_GRAPH          = NO\n\n# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are\n# set to YES then doxygen will generate a graph for each documented file showing\n# the direct and indirect include dependencies of the file with other documented\n# files.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nINCLUDED_BY_GRAPH      = NO\n\n# If the CALL_GRAPH tag is set to YES then doxygen will generate a call\n# dependency graph for every global function or class method.\n#\n# Note that enabling this option will significantly increase the time of a run.\n# So in most cases it will be better to enable call graphs for selected\n# functions only using the \\callgraph command. Disabling a call graph can be\n# accomplished by means of the command \\hidecallgraph.\n# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nCALL_GRAPH             = NO\n\n# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller\n# dependency graph for every global function or class method.\n#\n# Note that enabling this option will significantly increase the time of a run.\n# So in most cases it will be better to enable caller graphs for selected\n# functions only using the \\callergraph command. Disabling a caller graph can be\n# accomplished by means of the command \\hidecallergraph.\n# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nCALLER_GRAPH           = NO\n\n# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical\n# hierarchy of all classes instead of a textual one.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nGRAPHICAL_HIERARCHY    = NO\n\n# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the\n# dependencies a directory has on other directories in a graphical way. The\n# dependency relations are determined by the #include relations between the\n# files in the directories.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDIRECTORY_GRAPH        = YES\n\n# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images\n# generated by dot. For an explanation of the image formats see the section\n# output formats in the documentation of the dot tool (Graphviz (see:\n# http://www.graphviz.org/)).\n# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order\n# to make the SVG files visible in IE 9+ (other browsers do not have this\n# requirement).\n# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd,\n# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo,\n# gif:cairo:gd, gif:gd, gif:gd:gd, svg, png:gd, png:gd:gd, png:cairo,\n# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and\n# png:gdiplus:gdiplus.\n# The default value is: png.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_IMAGE_FORMAT       = png\n\n# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to\n# enable generation of interactive SVG images that allow zooming and panning.\n#\n# Note that this requires a modern browser other than Internet Explorer. Tested\n# and working are Firefox, Chrome, Safari, and Opera.\n# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make\n# the SVG files visible. Older versions of IE do not have SVG support.\n# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nINTERACTIVE_SVG        = NO\n\n# The DOT_PATH tag can be used to specify the path where the dot tool can be\n# found. If left blank, it is assumed the dot tool can be found in the path.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_PATH               =\n\n# The DOTFILE_DIRS tag can be used to specify one or more directories that\n# contain dot files that are included in the documentation (see the \\dotfile\n# command).\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOTFILE_DIRS           =\n\n# The MSCFILE_DIRS tag can be used to specify one or more directories that\n# contain msc files that are included in the documentation (see the \\mscfile\n# command).\n\nMSCFILE_DIRS           =\n\n# The DIAFILE_DIRS tag can be used to specify one or more directories that\n# contain dia files that are included in the documentation (see the \\diafile\n# command).\n\nDIAFILE_DIRS           =\n\n# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the\n# path where java can find the plantuml.jar file. If left blank, it is assumed\n# PlantUML is not used or called during a preprocessing step. Doxygen will\n# generate a warning when it encounters a \\startuml command in this case and\n# will not generate output for the diagram.\n\nPLANTUML_JAR_PATH      =\n\n# When using plantuml, the specified paths are searched for files specified by\n# the !include statement in a plantuml block.\n\nPLANTUML_INCLUDE_PATH  =\n\n# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes\n# that will be shown in the graph. If the number of nodes in a graph becomes\n# larger than this value, doxygen will truncate the graph, which is visualized\n# by representing a node as a red box. Note that doxygen if the number of direct\n# children of the root node in a graph is already larger than\n# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that\n# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.\n# Minimum value: 0, maximum value: 10000, default value: 50.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_GRAPH_MAX_NODES    = 50\n\n# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs\n# generated by dot. A depth value of 3 means that only nodes reachable from the\n# root by following a path via at most 3 edges will be shown. Nodes that lay\n# further from the root node will be omitted. Note that setting this option to 1\n# or 2 may greatly reduce the computation time needed for large code bases. Also\n# note that the size of a graph can be further restricted by\n# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.\n# Minimum value: 0, maximum value: 1000, default value: 0.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nMAX_DOT_GRAPH_DEPTH    = 0\n\n# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent\n# background. This is disabled by default, because dot on Windows does not seem\n# to support this out of the box.\n#\n# Warning: Depending on the platform used, enabling this option may lead to\n# badly anti-aliased labels on the edges of a graph (i.e. they become hard to\n# read).\n# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_TRANSPARENT        = NO\n\n# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output\n# files in one run (i.e. multiple -o and -T options on the command line). This\n# makes dot run faster, but since only newer versions of dot (>1.8.10) support\n# this, this feature is disabled by default.\n# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_MULTI_TARGETS      = NO\n\n# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page\n# explaining the meaning of the various boxes and arrows in the dot generated\n# graphs.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nGENERATE_LEGEND        = YES\n\n# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot\n# files that are used to generate the various graphs.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_CLEANUP            = YES\n"
  },
  {
    "path": "example/main.cpp",
    "content": "#include \"sajson.h\"\n#include <assert.h>\n\nusing namespace sajson;\n\ninline bool success(const document& doc) {\n    if (!doc.is_valid()) {\n        fprintf(stderr, \"%s\\n\", doc.get_error_message_as_cstring());\n        return false;\n    }\n    return true;\n}\n\nstruct jsonstats {\n    jsonstats()\n        : null_count(0)\n        , false_count(0)\n        , true_count(0)\n        , number_count(0)\n        , object_count(0)\n        , array_count(0)\n        , string_count(0)\n        , total_string_length(0)\n        , total_array_length(0)\n        , total_object_length(0)\n        , total_number_value(0) {}\n\n    size_t null_count;\n    size_t false_count;\n    size_t true_count;\n    size_t number_count;\n    size_t object_count;\n    size_t array_count;\n    size_t string_count;\n\n    size_t total_string_length;\n    size_t total_array_length;\n    size_t total_object_length;\n    double total_number_value;\n};\n\nvoid traverse(jsonstats& stats, const sajson::value& node) {\n    using namespace sajson;\n\n    switch (node.get_type()) {\n    case TYPE_NULL:\n        ++stats.null_count;\n        break;\n\n    case TYPE_FALSE:\n        ++stats.false_count;\n        break;\n\n    case TYPE_TRUE:\n        ++stats.true_count;\n        break;\n\n    case TYPE_ARRAY: {\n        ++stats.array_count;\n        auto length = node.get_length();\n        stats.total_array_length += length;\n        for (size_t i = 0; i < length; ++i) {\n            traverse(stats, node.get_array_element(i));\n        }\n        break;\n    }\n\n    case TYPE_OBJECT: {\n        ++stats.object_count;\n        auto length = node.get_length();\n        stats.total_object_length += length;\n        for (auto i = 0u; i < length; ++i) {\n            traverse(stats, node.get_object_value(i));\n        }\n        break;\n    }\n\n    case TYPE_STRING:\n        ++stats.string_count;\n        stats.total_string_length += node.get_string_length();\n        break;\n\n    case TYPE_DOUBLE:\n    case TYPE_INTEGER:\n        ++stats.number_count;\n        stats.total_number_value += node.get_number_value();\n        break;\n\n    default:\n        assert(false && \"unknown node type\");\n    }\n}\n\nint main(int argc, char** argv) {\n    FILE* file = fopen(argv[1], \"rb\");\n    if (!file) {\n        fprintf(stderr, \"Failed to open file\\n\");\n        return 1;\n    }\n    fseek(file, 0, SEEK_END);\n    size_t length = ftell(file);\n    fseek(file, 0, SEEK_SET);\n\n    char* buffer = new char[length];\n    if (length != fread(buffer, 1, length, file)) {\n        fclose(file);\n        delete[] buffer;\n        fprintf(stderr, \"Failed to read entire file\\n\");\n        return 1;\n    }\n    fclose(file);\n\n    const sajson::document& document = sajson::parse(\n        sajson::dynamic_allocation(), mutable_string_view(length, buffer));\n    if (!success(document)) {\n        fclose(file);\n        delete[] buffer;\n        return 1;\n    }\n\n    jsonstats stats;\n    traverse(stats, document.get_root());\n\n    printf(\"object count: %d\\n\", (int)stats.object_count);\n    printf(\"array count: %d\\n\", (int)stats.array_count);\n    printf(\"bool count: %d\\n\", (int)stats.true_count + (int)stats.false_count);\n    printf(\"number count: %d\\n\", (int)stats.number_count);\n    printf(\"string count: %d\\n\", (int)stats.string_count);\n    printf(\"null count: %d\\n\", (int)stats.null_count);\n    \n    fclose(file);\n    delete[] buffer;\n    return 0;\n}\n"
  },
  {
    "path": "example/zero-allocation.cpp",
    "content": "#include \"sajson.h\"\n#include <assert.h>\n\nusing namespace sajson;\n\nint main() {\n    char input_text[]\n        = \"{\\\"menu\\\":{\\\"header\\\":\\\"SVG \"\n          \"Viewer\\\",\\\"items\\\":[{\\\"id\\\":\\\"Open\\\"},{\\\"id\\\":\\\"OpenNew\\\",\\\"label\\\":\"\n          \"\\\"Open New\\\"},null,{\\\"id\\\":\\\"ZoomIn\\\",\\\"label\\\":\\\"Zoom \"\n          \"In\\\"},{\\\"id\\\":\\\"ZoomOut\\\",\\\"label\\\":\\\"Zoom \"\n          \"Out\\\"},{\\\"id\\\":\\\"OriginalView\\\",\\\"label\\\":\\\"Original \"\n          \"View\\\"},null,{\\\"id\\\":\\\"Quality\\\"},{\\\"id\\\":\\\"Pause\\\"},{\\\"id\\\":\"\n          \"\\\"Mute\\\"},\"\n          \"null,{\\\"id\\\":\\\"Find\\\",\\\"label\\\":\\\"Find...\\\"},{\\\"id\\\":\\\"FindAgain\\\",\"\n          \"\\\"label\\\":\\\"Find \"\n          \"Again\\\"},{\\\"id\\\":\\\"Copy\\\"},{\\\"id\\\":\\\"CopyAgain\\\",\\\"label\\\":\\\"Copy \"\n          \"Again\\\"},{\\\"id\\\":\\\"CopySVG\\\",\\\"label\\\":\\\"Copy \"\n          \"SVG\\\"},{\\\"id\\\":\\\"ViewSVG\\\",\\\"label\\\":\\\"View \"\n          \"SVG\\\"},{\\\"id\\\":\\\"ViewSource\\\",\\\"label\\\":\\\"View \"\n          \"Source\\\"},{\\\"id\\\":\\\"SaveAs\\\",\\\"label\\\":\\\"Save \"\n          \"As\\\"},null,{\\\"id\\\":\\\"Help\\\"},{\\\"id\\\":\\\"About\\\",\\\"label\\\":\\\"About \"\n          \"Adobe \"\n          \"CVG Viewer...\\\"}]}}\";\n\n    const size_t AST_BUFFER_SIZE = 500;\n    size_t ast_buffer[AST_BUFFER_SIZE];\n\n    const document& doc = parse(\n        // The bounded allocation mode attempts to fit the AST into the given\n        // fixed-size buffer, returning ERROR_OUT_OF_MEMORY if it is not large\n        // enough to parse this document.\n        bounded_allocation(ast_buffer, AST_BUFFER_SIZE),\n        // If sajson is asked to parse a mutable_string_view, it will not\n        // allocate a copy and instead parse in-place.\n        mutable_string_view(strlen(input_text), input_text));\n\n    if (doc.is_valid()) {\n        puts(\"success!\");\n        return 0;\n    } else {\n        printf(\"parse failed: %s\\n\", doc.get_error_message_as_cstring());\n        return 1;\n    }\n}\n"
  },
  {
    "path": "include/sajson.h",
    "content": "/*\n * Copyright (c) 2012-2017 Chad Austin\n *\n * Permission is hereby granted, free of charge, to any person\n * obtaining a copy of this software and associated documentation\n * files (the \"Software\"), to deal in the Software without\n * restriction, including without limitation the rights to use, copy,\n * modify, merge, publish, distribute, sublicense, and/or sell copies\n * of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be\n * included in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\n#pragma once\n\n#include <algorithm>\n#include <assert.h>\n#include <cstdio>\n#include <limits.h>\n#include <limits>\n#include <math.h>\n#include <stddef.h>\n#include <stdint.h>\n#include <string.h>\n\n#ifndef SAJSON_NO_STD_STRING\n#include <string> // for convenient access to error messages and string values.\n#endif\n\n#if defined(__GNUC__) || defined(__clang__)\n#define SAJSON_LIKELY(x) __builtin_expect(!!(x), 1)\n#define SAJSON_UNLIKELY(x) __builtin_expect(!!(x), 0)\n#define SAJSON_ALWAYS_INLINE __attribute__((always_inline))\n#define SAJSON_UNREACHABLE() __builtin_unreachable()\n#define SAJSON_snprintf snprintf\n#elif defined(_MSC_VER)\n#define SAJSON_LIKELY(x) x\n#define SAJSON_UNLIKELY(x) x\n#define SAJSON_ALWAYS_INLINE __forceinline\n#define SAJSON_UNREACHABLE() __assume(0)\n#if (_MSC_VER <= 1800)\n#define SAJSON_snprintf _snprintf\n#else\n#define SAJSON_snprintf snprintf\n#endif\n#else\n#define SAJSON_LIKELY(x) x\n#define SAJSON_UNLIKELY(x) x\n#define SAJSON_ALWAYS_INLINE inline\n#define SAJSON_UNREACHABLE() assert(!\"unreachable\")\n#define SAJSON_snprintf snprintf\n#endif\n\n/**\n * sajson Public API\n */\nnamespace sajson {\n\n/**\n * Indicates a JSON value's type.\n *\n * In early versions of sajson, this was the tag value directly from the parsed\n * AST storage, but, to preserve API compabitility, it is now synthesized.\n */\nenum type : uint8_t {\n    TYPE_INTEGER,\n    TYPE_DOUBLE,\n    TYPE_NULL,\n    TYPE_FALSE,\n    TYPE_TRUE,\n    TYPE_STRING,\n    TYPE_ARRAY,\n    TYPE_OBJECT,\n};\n\nnamespace internal {\n\n/**\n * get_value_of_key for objects is O(lg N), but most objects have\n * small, bounded key sets, and the sort adds parsing overhead when a\n * linear scan would be fast anyway and the code consuming objects may\n * never lookup values by name! Therefore, only binary search for\n * large numbers of keys.\n */\nconstexpr inline bool should_binary_search(size_t length) {\n#ifdef SAJSON_UNSORTED_OBJECT_KEYS\n    return false;\n#else\n    return length > 100;\n#endif\n}\n\n/**\n * The low bits of every AST word indicate the value's type. This representation\n * is internal and subject to change.\n */\nenum class tag : uint8_t {\n    integer,\n    double_,\n    null,\n    false_,\n    true_,\n    string,\n    array,\n    object,\n};\n\nstatic const size_t TAG_BITS = 3;\nstatic const size_t TAG_MASK = (1 << TAG_BITS) - 1;\nstatic const size_t VALUE_MASK = ~size_t{} >> TAG_BITS;\n\nstatic const size_t ROOT_MARKER = VALUE_MASK;\n\nconstexpr inline tag get_element_tag(size_t s) {\n    return static_cast<tag>(s & TAG_MASK);\n}\n\nconstexpr inline size_t get_element_value(size_t s) { return s >> TAG_BITS; }\n\nconstexpr inline size_t make_element(tag t, size_t value) {\n    // assert((value & ~VALUE_MASK) == 0);\n    // value &= VALUE_MASK;\n    return static_cast<size_t>(t) | (value << TAG_BITS);\n}\n\n// This template utilizes the One Definition Rule to create global arrays in a\n// header. This trick courtesy of Rich Geldreich's Purple JSON parser.\ntemplate <typename unused = void>\nstruct globals_struct {\n// clang-format off\n\n    // bit 0 (1) - set if: plain ASCII string character\n    // bit 1 (2) - set if: whitespace\n    // bit 4 (0x10) - set if: 0-9 e E .\n    constexpr static const uint8_t parse_flags[256] = {\n     // 0    1    2    3    4    5    6    7      8    9    A    B    C    D    E    F\n        0,   0,   0,   0,   0,   0,   0,   0,     0,   2,   2,   0,   0,   2,   0,   0, // 0\n        0,   0,   0,   0,   0,   0,   0,   0,     0,   0,   0,   0,   0,   0,   0,   0, // 1\n        3,   1,   0,   1,   1,   1,   1,   1,     1,   1,   1,   1,   1,   1,   0x11,1, // 2\n        0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,  0x11,0x11,1,   1,   1,   1,   1,   1, // 3\n        1,   1,   1,   1,   1,   0x11,1,   1,     1,   1,   1,   1,   1,   1,   1,   1, // 4\n        1,   1,   1,   1,   1,   1,   1,   1,     1,   1,   1,   1,   0,   1,   1,   1, // 5\n        1,   1,   1,   1,   1,   0x11,1,   1,     1,   1,   1,   1,   1,   1,   1,   1, // 6\n        1,   1,   1,   1,   1,   1,   1,   1,     1,   1,   1,   1,   1,   1,   1,   1, // 7\n\n        // 128-255\n        0,0,0,0,0,0,0,0,  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,  0,0,0,0,0,0,0,0,\n        0,0,0,0,0,0,0,0,  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,  0,0,0,0,0,0,0,0,\n        0,0,0,0,0,0,0,0,  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,  0,0,0,0,0,0,0,0,\n        0,0,0,0,0,0,0,0,  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,  0,0,0,0,0,0,0,0\n    };\n\n// clang-format on\n};\ntypedef globals_struct<> globals;\n\nconstexpr inline bool is_plain_string_character(char c) {\n    // return c >= 0x20 && c <= 0x7f && c != 0x22 && c != 0x5c;\n    return (globals::parse_flags[static_cast<unsigned char>(c)] & 1) != 0;\n}\n\nconstexpr inline bool is_whitespace(char c) {\n    // return c == '\\r' || c == '\\n' || c == '\\t' || c == ' ';\n    return (globals::parse_flags[static_cast<unsigned char>(c)] & 2) != 0;\n}\n\nclass allocated_buffer {\npublic:\n    allocated_buffer()\n        : memory(0) {}\n\n    explicit allocated_buffer(size_t length) {\n        // throws std::bad_alloc upon allocation failure\n        void* buffer = operator new(sizeof(size_t) + length);\n        memory = static_cast<layout*>(buffer);\n        memory->refcount = 1;\n    }\n\n    allocated_buffer(const allocated_buffer& that)\n        : memory(that.memory) {\n        incref();\n    }\n\n    allocated_buffer(allocated_buffer&& that)\n        : memory(that.memory) {\n        that.memory = 0;\n    }\n\n    ~allocated_buffer() { decref(); }\n\n    allocated_buffer& operator=(const allocated_buffer& that) {\n        if (this != &that) {\n            decref();\n            memory = that.memory;\n            incref();\n        }\n        return *this;\n    }\n\n    allocated_buffer& operator=(allocated_buffer&& that) {\n        if (this != &that) {\n            decref();\n            memory = that.memory;\n            that.memory = 0;\n        }\n        return *this;\n    }\n\n    char* get_data() const { return memory ? memory->data : 0; }\n\nprivate:\n    void incref() const {\n        if (memory) {\n            ++(memory->refcount);\n        }\n    }\n\n    void decref() const {\n        if (memory && --(memory->refcount) == 0) {\n            operator delete(memory);\n        }\n    }\n\n    struct layout {\n        size_t refcount;\n        char data[];\n    };\n\n    layout* memory;\n};\n} // namespace internal\n\n/// A simple type encoding a pointer to some memory and a length (in bytes).\n/// Does not maintain any memory.\nclass string {\npublic:\n    string(const char* text_, size_t length)\n        : text(text_)\n        , _length(length) {}\n\n    const char* data() const { return text; }\n\n    size_t length() const { return _length; }\n\n#ifndef SAJSON_NO_STD_STRING\n    std::string as_string() const { return std::string(text, text + _length); }\n#endif\n\nprivate:\n    const char* const text;\n    const size_t _length;\n\n    string(); /*=delete*/\n};\n\n/// A convenient way to parse JSON from a string literal.  The string ends\n/// at its first NUL character.\nclass literal : public string {\npublic:\n    template <size_t sz>\n    explicit literal(const char (&text_)[sz])\n        : string(text_, sz - 1) {\n        static_assert(sz > 0, \"!\");\n    }\n};\n\n/// A pointer to a mutable buffer, its size in bytes, and strong ownership of\n/// any copied memory.\nclass mutable_string_view {\npublic:\n    /// Creates an empty, zero-sized view.\n    mutable_string_view()\n        : length_(0)\n        , data(0)\n        , buffer() {}\n\n    /// Given a length in bytes and a pointer, constructs a view\n    /// that does not allocate a copy of the data or maintain its life.\n    /// The given pointer must stay valid for the duration of the parse and the\n    /// resulting \\ref document's life.\n    mutable_string_view(size_t length, char* data_)\n        : length_(length)\n        , data(data_)\n        , buffer() {}\n\n    /// Allocates a copy of the given \\ref literal string and exposes a\n    /// mutable view into it.  Throws std::bad_alloc if allocation fails.\n    mutable_string_view(const literal& s)\n        : length_(s.length())\n        , buffer(length_) {\n        data = buffer.get_data();\n        memcpy(data, s.data(), length_);\n    }\n\n    /// Allocates a copy of the given \\ref string and exposes a mutable view\n    /// into it.  Throws std::bad_alloc if allocation fails.\n    mutable_string_view(const string& s)\n        : length_(s.length())\n        , buffer(length_) {\n        data = buffer.get_data();\n        memcpy(data, s.data(), length_);\n    }\n\n    /// Copies a mutable_string_view.  If any backing memory has been\n    /// allocated, its refcount is incremented - both views can safely\n    /// use the memory.\n    mutable_string_view(const mutable_string_view& that)\n        : length_(that.length_)\n        , data(that.data)\n        , buffer(that.buffer) {}\n\n    /// Move constructor - neuters the old mutable_string_view.\n    mutable_string_view(mutable_string_view&& that)\n        : length_(that.length_)\n        , data(that.data)\n        , buffer(std::move(that.buffer)) {\n        that.length_ = 0;\n        that.data = 0;\n    }\n\n    mutable_string_view& operator=(mutable_string_view&& that) {\n        if (this != &that) {\n            length_ = that.length_;\n            data = that.data;\n            buffer = std::move(that.buffer);\n            that.length_ = 0;\n            that.data = 0;\n        }\n        return *this;\n    }\n\n    mutable_string_view& operator=(const mutable_string_view& that) {\n        if (this != &that) {\n            length_ = that.length_;\n            data = that.data;\n            buffer = that.buffer;\n        }\n        return *this;\n    }\n\n    size_t length() const { return length_; }\n\n    char* get_data() const { return data; }\n\nprivate:\n    size_t length_;\n    char* data;\n    internal::allocated_buffer buffer; // may not be allocated\n};\n\nnamespace internal {\nstruct object_key_record {\n    size_t key_start;\n    size_t key_end;\n    size_t value;\n\n    bool match(const char* object_data, const string& str) const {\n        size_t length = key_end - key_start;\n        return length == str.length()\n            && 0 == memcmp(str.data(), object_data + key_start, length);\n    }\n};\n\nstruct object_key_comparator {\n    object_key_comparator(const char* object_data)\n        : data(object_data) {}\n\n    bool operator()(const object_key_record& lhs, const string& rhs) const {\n        const size_t lhs_length = lhs.key_end - lhs.key_start;\n        const size_t rhs_length = rhs.length();\n        if (lhs_length < rhs_length) {\n            return true;\n        } else if (lhs_length > rhs_length) {\n            return false;\n        }\n        return memcmp(data + lhs.key_start, rhs.data(), lhs_length) < 0;\n    }\n\n    bool operator()(const string& lhs, const object_key_record& rhs) const {\n        return !(*this)(rhs, lhs);\n    }\n\n    bool\n    operator()(const object_key_record& lhs, const object_key_record& rhs) {\n        const size_t lhs_length = lhs.key_end - lhs.key_start;\n        const size_t rhs_length = rhs.key_end - rhs.key_start;\n        if (lhs_length < rhs_length) {\n            return true;\n        } else if (lhs_length > rhs_length) {\n            return false;\n        }\n        return memcmp(data + lhs.key_start, data + rhs.key_start, lhs_length)\n            < 0;\n    }\n\n    const char* data;\n};\n} // namespace internal\n\nnamespace integer_storage {\nenum { word_length = 1 };\n\ninline int load(const size_t* location) {\n    int value;\n    memcpy(&value, location, sizeof(value));\n    return value;\n}\n\ninline void store(size_t* location, int value) {\n    // NOTE: Most modern compilers optimize away this constant-size\n    // memcpy into a single instruction. If any don't, and treat\n    // punning through a union as legal, they can be special-cased.\n    static_assert(\n        sizeof(value) <= sizeof(*location),\n        \"size_t must not be smaller than int\");\n    memcpy(location, &value, sizeof(value));\n}\n} // namespace integer_storage\n\nnamespace double_storage {\nenum { word_length = sizeof(double) / sizeof(size_t) };\n\ninline double load(const size_t* location) {\n    double value;\n    memcpy(&value, location, sizeof(double));\n    return value;\n}\n\ninline void store(size_t* location, double value) {\n    // NOTE: Most modern compilers optimize away this constant-size\n    // memcpy into a single instruction. If any don't, and treat\n    // punning through a union as legal, they can be special-cased.\n    memcpy(location, &value, sizeof(double));\n}\n} // namespace double_storage\n\n/// Represents a JSON value.  First, call get_type() to check its type,\n/// which determines which methods are available.\n///\n/// Note that \\ref value does not maintain any backing memory, only the\n/// corresponding \\ref document does.  It is illegal to access a \\ref value\n/// after its \\ref document has been destroyed.\nclass value {\npublic:\n    value()\n        : value_tag{ tag::null }\n        , payload{ nullptr }\n        , text{ nullptr } {}\n\n    /// Returns the JSON value's \\ref type.\n    type get_type() const {\n        // As of 2020, current versions of MSVC generate a jump table for this\n        // conversion. If it matters, a more clever mapping with knowledge of\n        // the specific values is possible. gcc and clang generate good code --\n        // at worst a table lookup.\n        switch (value_tag) {\n        case tag::integer:\n            return TYPE_INTEGER;\n        case tag::double_:\n            return TYPE_DOUBLE;\n        case tag::null:\n            return TYPE_NULL;\n        case tag::false_:\n            return TYPE_FALSE;\n        case tag::true_:\n            return TYPE_TRUE;\n        case tag::string:\n            return TYPE_STRING;\n        case tag::array:\n            return TYPE_ARRAY;\n        case tag::object:\n            return TYPE_OBJECT;\n        }\n        SAJSON_UNREACHABLE();\n    }\n\n    bool is_boolean() const {\n        return value_tag == tag::false_ || value_tag == tag::true_;\n    }\n\n    bool get_boolean_value() const {\n        switch (value_tag) {\n        case tag::true_:\n            return true;\n        case tag::false_:\n            return false;\n        default:\n            assert(false);\n            return false;\n        }\n    }\n\n    /// Returns the length of the object or array.\n    /// Only legal if get_type() is TYPE_ARRAY or TYPE_OBJECT.\n    size_t get_length() const {\n        assert_tag_2(tag::array, tag::object);\n        return payload[0];\n    }\n\n    /// Returns the nth element of an array.  Calling with an out-of-bound\n    /// index is undefined behavior.\n    /// Only legal if get_type() is TYPE_ARRAY.\n    value get_array_element(size_t index) const {\n        using namespace internal;\n        assert_tag(tag::array);\n        size_t element = payload[1 + index];\n        return value(\n            get_element_tag(element),\n            payload + get_element_value(element),\n            text);\n    }\n\n    /// Returns the nth key of an object.  Calling with an out-of-bound\n    /// index is undefined behavior.\n    /// Only legal if get_type() is TYPE_OBJECT.\n    string get_object_key(size_t index) const {\n        assert_tag(tag::object);\n        const size_t* s = payload + 1 + index * 3;\n        return string(text + s[0], s[1] - s[0]);\n    }\n\n    /// Returns the nth value of an object.  Calling with an out-of-bound\n    /// index is undefined behavior.  Only legal if get_type() is TYPE_OBJECT.\n    value get_object_value(size_t index) const {\n        using namespace internal;\n        assert_tag(tag::object);\n        size_t element = payload[3 + index * 3];\n        return value(\n            get_element_tag(element),\n            payload + get_element_value(element),\n            text);\n    }\n\n    /// Given a string key, returns the value with that key or a null value\n    /// if the key is not found.  Running time is O(lg N).\n    /// Only legal if get_type() is TYPE_OBJECT.\n    value get_value_of_key(const string& key) const {\n        assert_tag(tag::object);\n        size_t i = find_object_key(key);\n        if (i < get_length()) {\n            return get_object_value(i);\n        } else {\n            return value(tag::null, 0, 0);\n        }\n    }\n\n    /// Given a string key, returns the index of the associated value if\n    /// one exists.  Returns get_length() if there is no such key.\n    /// Note: sajson sorts object keys, so the running time is O(lg N).\n    /// Only legal if get_type() is TYPE_OBJECT\n    size_t find_object_key(const string& key) const {\n        using namespace internal;\n        assert_tag(tag::object);\n        size_t length = get_length();\n        const object_key_record* start\n            = reinterpret_cast<const object_key_record*>(payload + 1);\n        const object_key_record* end = start + length;\n        if (SAJSON_UNLIKELY(should_binary_search(length))) {\n            const object_key_record* i = std::lower_bound(\n                start, end, key, object_key_comparator(text));\n            if (i != end && i->match(text, key)) {\n                return i - start;\n            }\n        } else {\n            for (size_t i = 0; i < length; ++i) {\n                if (start[i].match(text, key)) {\n                    return i;\n                }\n            }\n        }\n        return length;\n    }\n\n    /// If a numeric value was parsed as a 32-bit integer, returns it.\n    /// Only legal if get_type() is TYPE_INTEGER.\n    int get_integer_value() const {\n        assert_tag(tag::integer);\n        return integer_storage::load(payload);\n    }\n\n    /// If a numeric value was parsed as a double, returns it.\n    /// Only legal if get_type() is TYPE_DOUBLE.\n    double get_double_value() const {\n        assert_tag(tag::double_);\n        return double_storage::load(payload);\n    }\n\n    /// Returns a numeric value as a double-precision float.\n    /// Only legal if get_type() is TYPE_INTEGER or TYPE_DOUBLE.\n    double get_number_value() const {\n        assert_tag_2(tag::integer, tag::double_);\n        if (value_tag == tag::integer) {\n            return get_integer_value();\n        } else {\n            return get_double_value();\n        }\n    }\n\n    /// Returns true and writes to the output argument if the numeric value\n    /// fits in a 53-bit integer.  This is useful for timestamps and other\n    /// situations where integral values with greater than 32-bit precision\n    /// are used, as 64-bit values are not understood by all JSON\n    /// implementations or languages.\n    /// Returns false if the value is not an integer or not in range.\n    /// Only legal if get_type() is TYPE_INTEGER or TYPE_DOUBLE.\n    bool get_int53_value(int64_t* out) const {\n        // Make sure the output variable is always defined to avoid any\n        // possible situation like\n        // https://gist.github.com/chadaustin/2c249cb850619ddec05b23ca42cf7a18\n        *out = 0;\n\n        assert_tag_2(tag::integer, tag::double_);\n        switch (value_tag) {\n        case tag::integer:\n            *out = get_integer_value();\n            return true;\n        case tag::double_: {\n            double v = get_double_value();\n            if (v < -(1LL << 53) || v > (1LL << 53)) {\n                return false;\n            }\n            int64_t as_int = static_cast<int64_t>(v);\n            if (as_int != v) {\n                return false;\n            }\n            *out = as_int;\n            return true;\n        }\n        default:\n            return false;\n        }\n    }\n\n    /// Returns the length of the string.\n    /// Only legal if get_type() is TYPE_STRING.\n    size_t get_string_length() const {\n        assert_tag(tag::string);\n        return payload[1] - payload[0];\n    }\n\n    /// Returns a pointer to the beginning of a string value's data.\n    /// WARNING: Calling this function and using the return value as a\n    /// C-style string (that is, without also using get_string_length())\n    /// will cause the string to appear truncated if the string has\n    /// embedded NULs.\n    /// Only legal if get_type() is TYPE_STRING.\n    const char* as_cstring() const {\n        assert_tag(tag::string);\n        return text + payload[0];\n    }\n\n#ifndef SAJSON_NO_STD_STRING\n    /// Returns a string's value as a std::string.\n    /// Only legal if get_type() is TYPE_STRING.\n    std::string as_string() const {\n        assert_tag(tag::string);\n        return std::string(text + payload[0], text + payload[1]);\n    }\n#endif\n\n    /// \\cond INTERNAL\n    const size_t* _internal_get_payload() const { return payload; }\n    /// \\endcond\n\nprivate:\n    using tag = internal::tag;\n\n    explicit value(tag value_tag_, const size_t* payload_, const char* text_)\n        : value_tag(value_tag_)\n        , payload(payload_)\n        , text(text_) {}\n\n    void assert_tag(tag expected) const { assert(expected == value_tag); }\n\n    void assert_tag_2(tag e1, tag e2) const {\n        assert(e1 == value_tag || e2 == value_tag);\n    }\n\n    void assert_in_bounds(size_t i) const { assert(i < get_length()); }\n\n    const tag value_tag;\n    const size_t* const payload;\n    const char* const text;\n\n    friend class document;\n};\n\n/// Error code indicating why parse failed.\nenum error {\n    ERROR_NO_ERROR,\n    ERROR_OUT_OF_MEMORY,\n    ERROR_UNEXPECTED_END,\n    ERROR_MISSING_ROOT_ELEMENT,\n    ERROR_BAD_ROOT,\n    ERROR_EXPECTED_COMMA,\n    ERROR_MISSING_OBJECT_KEY,\n    ERROR_EXPECTED_COLON,\n    ERROR_EXPECTED_END_OF_INPUT,\n    ERROR_UNEXPECTED_COMMA,\n    ERROR_EXPECTED_VALUE,\n    ERROR_EXPECTED_NULL,\n    ERROR_EXPECTED_FALSE,\n    ERROR_EXPECTED_TRUE,\n    ERROR_INVALID_NUMBER,\n    ERROR_MISSING_EXPONENT,\n    ERROR_ILLEGAL_CODEPOINT,\n    ERROR_INVALID_UNICODE_ESCAPE,\n    ERROR_UNEXPECTED_END_OF_UTF16,\n    ERROR_EXPECTED_U,\n    ERROR_INVALID_UTF16_TRAIL_SURROGATE,\n    ERROR_UNKNOWN_ESCAPE,\n    ERROR_INVALID_UTF8,\n    ERROR_UNINITIALIZED,\n};\n\nnamespace internal {\nclass ownership {\npublic:\n    ownership() = delete;\n    ownership(const ownership&) = delete;\n    void operator=(const ownership&) = delete;\n\n    explicit ownership(size_t* p_)\n        : p(p_) {}\n\n    ownership(ownership&& p_)\n        : p(p_.p) {\n        p_.p = 0;\n    }\n\n    ~ownership() { delete[] p; }\n\n    bool is_valid() const { return !!p; }\n\nprivate:\n    size_t* p;\n};\n\ninline const char* get_error_text(error error_code) {\n    switch (error_code) {\n    case ERROR_NO_ERROR:\n        return \"no error\";\n    case ERROR_OUT_OF_MEMORY:\n        return \"out of memory\";\n    case ERROR_UNEXPECTED_END:\n        return \"unexpected end of input\";\n    case ERROR_MISSING_ROOT_ELEMENT:\n        return \"missing root element\";\n    case ERROR_BAD_ROOT:\n        return \"document root must be object or array\";\n    case ERROR_EXPECTED_COMMA:\n        return \"expected ,\";\n    case ERROR_MISSING_OBJECT_KEY:\n        return \"missing object key\";\n    case ERROR_EXPECTED_COLON:\n        return \"expected :\";\n    case ERROR_EXPECTED_END_OF_INPUT:\n        return \"expected end of input\";\n    case ERROR_UNEXPECTED_COMMA:\n        return \"unexpected comma\";\n    case ERROR_EXPECTED_VALUE:\n        return \"expected value\";\n    case ERROR_EXPECTED_NULL:\n        return \"expected 'null'\";\n    case ERROR_EXPECTED_FALSE:\n        return \"expected 'false'\";\n    case ERROR_EXPECTED_TRUE:\n        return \"expected 'true'\";\n    case ERROR_INVALID_NUMBER:\n        return \"invalid number\";\n    case ERROR_MISSING_EXPONENT:\n        return \"missing exponent\";\n    case ERROR_ILLEGAL_CODEPOINT:\n        return \"illegal unprintable codepoint in string\";\n    case ERROR_INVALID_UNICODE_ESCAPE:\n        return \"invalid character in unicode escape\";\n    case ERROR_UNEXPECTED_END_OF_UTF16:\n        return \"unexpected end of input during UTF-16 surrogate pair\";\n    case ERROR_EXPECTED_U:\n        return \"expected \\\\u\";\n    case ERROR_INVALID_UTF16_TRAIL_SURROGATE:\n        return \"invalid UTF-16 trail surrogate\";\n    case ERROR_UNKNOWN_ESCAPE:\n        return \"unknown escape\";\n    case ERROR_INVALID_UTF8:\n        return \"invalid UTF-8\";\n    case ERROR_UNINITIALIZED:\n        return \"uninitialized document\";\n    }\n\n    SAJSON_UNREACHABLE();\n}\n} // namespace internal\n\n/**\n * Represents the result of a JSON parse: either is_valid() and the document\n * contains a root value or parse error information is available.\n *\n * Note that the document holds a strong reference to any memory allocated:\n * any mutable copy of the input text and any memory allocated for the\n * AST data structure.  Thus, the document must not be deallocated while any\n * \\ref value is in use.\n */\nclass document {\npublic:\n    document()\n        : document{ mutable_string_view{}, 0, 0, ERROR_UNINITIALIZED, 0 } {}\n\n    document(document&& rhs)\n        : input(rhs.input)\n        , structure(std::move(rhs.structure))\n        , root_tag(rhs.root_tag)\n        , root(rhs.root)\n        , error_line(rhs.error_line)\n        , error_column(rhs.error_column)\n        , error_code(rhs.error_code)\n        , error_arg(rhs.error_arg) {\n        // Yikes... but strcpy is okay here because formatted_error is\n        // guaranteed to be null-terminated.\n        strcpy(formatted_error_message, rhs.formatted_error_message);\n        // should rhs's fields be zeroed too?\n    }\n\n    /**\n     * Returns true if the document was parsed successfully.\n     * If true, call get_root() to access the document's root value.\n     * If false, call get_error_line(), get_error_column(), and\n     * get_error_message_as_cstring() to see why the parse failed.\n     */\n    bool is_valid() const {\n        return root_tag == tag::array || root_tag == tag::object;\n    }\n\n    /// If is_valid(), returns the document's root \\ref value.\n    value get_root() const { return value(root_tag, root, input.get_data()); }\n\n    /// If not is_valid(), returns the one-based line number where the parse\n    /// failed.\n    size_t get_error_line() const { return error_line; }\n\n    /// If not is_valid(), returns the one-based column number where the parse\n    /// failed.\n    size_t get_error_column() const { return error_column; }\n\n#ifndef SAJSON_NO_STD_STRING\n    /// If not is_valid(), returns a std::string indicating why the parse\n    /// failed.\n    std::string get_error_message_as_string() const {\n        return formatted_error_message;\n    }\n#endif\n\n    /// If not is_valid(), returns a null-terminated C string indicating why the\n    /// parse failed.\n    const char* get_error_message_as_cstring() const {\n        return formatted_error_message;\n    }\n\n    /// \\cond INTERNAL\n\n    // WARNING: Internal function which is subject to change\n    error _internal_get_error_code() const { return error_code; }\n\n    // WARNING: Internal function which is subject to change\n    int _internal_get_error_argument() const { return error_arg; }\n\n    // WARNING: Internal function which is subject to change\n    const char* _internal_get_error_text() const {\n        return internal::get_error_text(error_code);\n    }\n\n    // WARNING: Internal function exposed only for high-performance language\n    // bindings.\n    internal::tag _internal_get_root_tag() const { return root_tag; }\n\n    // WARNING: Internal function exposed only for high-performance language\n    // bindings.\n    const size_t* _internal_get_root() const { return root; }\n\n    // WARNING: Internal function exposed only for high-performance language\n    // bindings.\n    const mutable_string_view& _internal_get_input() const { return input; }\n\n    /// \\endcond\n\nprivate:\n    using tag = internal::tag;\n\n    document(const document&) = delete;\n    void operator=(const document&) = delete;\n\n    explicit document(\n        const mutable_string_view& input_,\n        internal::ownership&& structure_,\n        tag root_tag_,\n        const size_t* root_)\n        : input(input_)\n        , structure(std::move(structure_))\n        , root_tag(root_tag_)\n        , root(root_)\n        , error_line(0)\n        , error_column(0)\n        , error_code(ERROR_NO_ERROR)\n        , error_arg(0) {\n        formatted_error_message[0] = 0;\n    }\n\n    explicit document(\n        const mutable_string_view& input_,\n        size_t error_line_,\n        size_t error_column_,\n        const error error_code_,\n        int error_arg_)\n        : input(input_)\n        , structure(0)\n        , root_tag(tag::null)\n        , root(0)\n        , error_line(error_line_)\n        , error_column(error_column_)\n        , error_code(error_code_)\n        , error_arg(error_arg_) {\n        formatted_error_message[ERROR_BUFFER_LENGTH - 1] = 0;\n        int written = has_significant_error_arg()\n            ? SAJSON_snprintf(\n                  formatted_error_message,\n                  ERROR_BUFFER_LENGTH - 1,\n                  \"%s: %d\",\n                  _internal_get_error_text(),\n                  error_arg)\n            : SAJSON_snprintf(\n                  formatted_error_message,\n                  ERROR_BUFFER_LENGTH - 1,\n                  \"%s\",\n                  _internal_get_error_text());\n        (void)written;\n        assert(written >= 0 && written < ERROR_BUFFER_LENGTH);\n    }\n\n    bool has_significant_error_arg() const {\n        return error_code == ERROR_ILLEGAL_CODEPOINT;\n    }\n\n    mutable_string_view input;\n    internal::ownership structure;\n    const tag root_tag;\n    const size_t* const root;\n    const size_t error_line;\n    const size_t error_column;\n    const error error_code;\n    const int error_arg;\n\n    enum { ERROR_BUFFER_LENGTH = 128 };\n    char formatted_error_message[ERROR_BUFFER_LENGTH];\n\n    template <typename AllocationStrategy, typename StringType>\n    friend document\n    parse(const AllocationStrategy& strategy, const StringType& string);\n    template <typename Allocator>\n    friend class parser;\n};\n\n/// Allocation policy that allocates one large buffer guaranteed to hold the\n/// resulting AST.  This allocation policy is the fastest since it requires\n/// no conditionals to see if more memory must be allocated.\nclass single_allocation {\npublic:\n    /// \\cond INTERNAL\n\n    class stack_head {\n    public:\n        stack_head(stack_head&& other)\n            : stack_bottom(other.stack_bottom)\n            , stack_top(other.stack_top) {}\n\n        bool push(size_t element) {\n            *stack_top++ = element;\n            return true;\n        }\n\n        size_t* reserve(size_t amount, bool* success) {\n            size_t* rv = stack_top;\n            stack_top += amount;\n            *success = true;\n            return rv;\n        }\n\n        // The compiler does not see the stack_head (stored in a local)\n        // and the allocator (stored as a field) have the same stack_bottom\n        // values, so it does a bit of redundant work.\n        // So there's a microoptimization available here: introduce a type\n        // \"stack_mark\" and make it polymorphic on the allocator.  For\n        // single_allocation, it merely needs to be a single pointer.\n\n        void reset(size_t new_top) { stack_top = stack_bottom + new_top; }\n\n        size_t get_size() { return stack_top - stack_bottom; }\n\n        size_t* get_top() { return stack_top; }\n\n        size_t* get_pointer_from_offset(size_t offset) {\n            return stack_bottom + offset;\n        }\n\n    private:\n        stack_head() = delete;\n        stack_head(const stack_head&) = delete;\n        void operator=(const stack_head&) = delete;\n\n        explicit stack_head(size_t* base)\n            : stack_bottom(base)\n            , stack_top(base) {}\n\n        size_t* const stack_bottom;\n        size_t* stack_top;\n\n        friend class single_allocation;\n    };\n\n    class allocator {\n    public:\n        allocator() = delete;\n        allocator(const allocator&) = delete;\n        void operator=(const allocator&) = delete;\n\n        explicit allocator(\n            size_t* buffer, size_t input_size, bool should_deallocate_)\n            : structure(buffer)\n            , structure_end(buffer ? buffer + input_size : 0)\n            , write_cursor(structure_end)\n            , should_deallocate(should_deallocate_) {}\n\n        explicit allocator(std::nullptr_t)\n            : structure(0)\n            , structure_end(0)\n            , write_cursor(0)\n            , should_deallocate(false) {}\n\n        allocator(allocator&& other)\n            : structure(other.structure)\n            , structure_end(other.structure_end)\n            , write_cursor(other.write_cursor)\n            , should_deallocate(other.should_deallocate) {\n            other.structure = 0;\n            other.structure_end = 0;\n            other.write_cursor = 0;\n            other.should_deallocate = false;\n        }\n\n        ~allocator() {\n            if (should_deallocate) {\n                delete[] structure;\n            }\n        }\n\n        stack_head get_stack_head(bool* success) {\n            *success = true;\n            return stack_head(structure);\n        }\n\n        size_t get_write_offset() { return structure_end - write_cursor; }\n\n        size_t* get_write_pointer_of(size_t v) { return structure_end - v; }\n\n        size_t* reserve(size_t size, bool* success) {\n            *success = true;\n            write_cursor -= size;\n            return write_cursor;\n        }\n\n        size_t* get_ast_root() { return write_cursor; }\n\n        internal::ownership transfer_ownership() {\n            auto p = structure;\n            structure = 0;\n            structure_end = 0;\n            write_cursor = 0;\n            if (should_deallocate) {\n                return internal::ownership(p);\n            } else {\n                return internal::ownership(0);\n            }\n        }\n\n    private:\n        size_t* structure;\n        size_t* structure_end;\n        size_t* write_cursor;\n        bool should_deallocate;\n    };\n\n    /// \\endcond\n\n    /// Allocate a single worst-case AST buffer with one word per byte in\n    /// the input document.\n    single_allocation()\n        : has_existing_buffer(false)\n        , existing_buffer(0)\n        , existing_buffer_size(0) {}\n\n    /// Write the AST into an existing buffer.  Will fail with an out of\n    /// memory error if the buffer is not guaranteed to be big enough for\n    /// the document.  The caller must guarantee the memory is valid for\n    /// the duration of the parse and the AST traversal.\n    single_allocation(size_t* existing_buffer_, size_t size_in_words)\n        : has_existing_buffer(true)\n        , existing_buffer(existing_buffer_)\n        , existing_buffer_size(size_in_words) {}\n\n    /// Convenience wrapper for single_allocation(size_t*, size_t) that\n    /// automatically infers the length of a given array.\n    template <size_t N>\n    explicit single_allocation(size_t (&existing_buffer_)[N])\n        : single_allocation(existing_buffer_, N) {}\n\n    /// \\cond INTERNAL\n\n    allocator\n    make_allocator(size_t input_document_size_in_bytes, bool* succeeded) const {\n        if (has_existing_buffer) {\n            if (existing_buffer_size < input_document_size_in_bytes) {\n                *succeeded = false;\n                return allocator(nullptr);\n            }\n            *succeeded = true;\n            return allocator(\n                existing_buffer, input_document_size_in_bytes, false);\n        } else {\n            size_t* buffer\n                = new (std::nothrow) size_t[input_document_size_in_bytes];\n            if (!buffer) {\n                *succeeded = false;\n                return allocator(nullptr);\n            }\n            *succeeded = true;\n            return allocator(buffer, input_document_size_in_bytes, true);\n        }\n    }\n\n    /// \\endcond\n\nprivate:\n    bool has_existing_buffer;\n    size_t* existing_buffer;\n    size_t existing_buffer_size;\n};\n\n/// Allocation policy that uses dynamically-growing buffers for both the\n/// parse stack and the AST.  This allocation policy minimizes peak memory\n/// usage at the cost of some allocation and copying churn.\nclass dynamic_allocation {\npublic:\n    /// \\cond INTERNAL\n\n    class stack_head {\n    public:\n        stack_head(stack_head&& other)\n            : stack_top(other.stack_top)\n            , stack_bottom(other.stack_bottom)\n            , stack_limit(other.stack_limit) {\n            other.stack_top = 0;\n            other.stack_bottom = 0;\n            other.stack_limit = 0;\n        }\n\n        ~stack_head() { delete[] stack_bottom; }\n\n        bool push(size_t element) {\n            if (can_grow(1)) {\n                *stack_top++ = element;\n                return true;\n            } else {\n                return false;\n            }\n        }\n\n        size_t* reserve(size_t amount, bool* success) {\n            if (can_grow(amount)) {\n                size_t* rv = stack_top;\n                stack_top += amount;\n                *success = true;\n                return rv;\n            } else {\n                *success = false;\n                return 0;\n            }\n        }\n\n        void reset(size_t new_top) { stack_top = stack_bottom + new_top; }\n\n        size_t get_size() { return stack_top - stack_bottom; }\n\n        size_t* get_top() { return stack_top; }\n\n        size_t* get_pointer_from_offset(size_t offset) {\n            return stack_bottom + offset;\n        }\n\n    private:\n        stack_head(const stack_head&) = delete;\n        void operator=(const stack_head&) = delete;\n\n        explicit stack_head(size_t initial_capacity, bool* success) {\n            assert(initial_capacity);\n            stack_bottom = new (std::nothrow) size_t[initial_capacity];\n            stack_top = stack_bottom;\n            if (stack_bottom) {\n                stack_limit = stack_bottom + initial_capacity;\n            } else {\n                stack_limit = 0;\n            }\n            *success = !!stack_bottom;\n        }\n\n        bool can_grow(size_t amount) {\n            if (SAJSON_LIKELY(\n                    amount <= static_cast<size_t>(stack_limit - stack_top))) {\n                return true;\n            }\n\n            size_t current_size = stack_top - stack_bottom;\n            size_t old_capacity = stack_limit - stack_bottom;\n            size_t new_capacity = old_capacity * 2;\n            while (new_capacity < amount + current_size) {\n                new_capacity *= 2;\n            }\n            size_t* new_stack = new (std::nothrow) size_t[new_capacity];\n            if (!new_stack) {\n                stack_top = 0;\n                stack_bottom = 0;\n                stack_limit = 0;\n                return false;\n            }\n\n            memcpy(new_stack, stack_bottom, current_size * sizeof(size_t));\n            delete[] stack_bottom;\n            stack_top = new_stack + current_size;\n            stack_bottom = new_stack;\n            stack_limit = stack_bottom + new_capacity;\n            return true;\n        }\n\n        size_t* stack_top; // stack grows up: stack_top >= stack_bottom\n        size_t* stack_bottom;\n        size_t* stack_limit;\n\n        friend class dynamic_allocation;\n    };\n\n    class allocator {\n    public:\n        allocator() = delete;\n        allocator(const allocator&) = delete;\n        void operator=(const allocator&) = delete;\n\n        explicit allocator(\n            size_t* buffer_,\n            size_t current_capacity,\n            size_t initial_stack_capacity_)\n            : ast_buffer_bottom(buffer_)\n            , ast_buffer_top(buffer_ + current_capacity)\n            , ast_write_head(ast_buffer_top)\n            , initial_stack_capacity(initial_stack_capacity_) {}\n\n        explicit allocator(std::nullptr_t)\n            : ast_buffer_bottom(0)\n            , ast_buffer_top(0)\n            , ast_write_head(0)\n            , initial_stack_capacity(0) {}\n\n        allocator(allocator&& other)\n            : ast_buffer_bottom(other.ast_buffer_bottom)\n            , ast_buffer_top(other.ast_buffer_top)\n            , ast_write_head(other.ast_write_head)\n            , initial_stack_capacity(other.initial_stack_capacity) {\n            other.ast_buffer_bottom = 0;\n            other.ast_buffer_top = 0;\n            other.ast_write_head = 0;\n        }\n\n        ~allocator() { delete[] ast_buffer_bottom; }\n\n        stack_head get_stack_head(bool* success) {\n            return stack_head(initial_stack_capacity, success);\n        }\n\n        size_t get_write_offset() { return ast_buffer_top - ast_write_head; }\n\n        size_t* get_write_pointer_of(size_t v) { return ast_buffer_top - v; }\n\n        size_t* reserve(size_t size, bool* success) {\n            if (can_grow(size)) {\n                ast_write_head -= size;\n                *success = true;\n                return ast_write_head;\n            } else {\n                *success = false;\n                return 0;\n            }\n        }\n\n        size_t* get_ast_root() { return ast_write_head; }\n\n        internal::ownership transfer_ownership() {\n            auto p = ast_buffer_bottom;\n            ast_buffer_bottom = 0;\n            ast_buffer_top = 0;\n            ast_write_head = 0;\n            return internal::ownership(p);\n        }\n\n    private:\n        bool can_grow(size_t amount) {\n            if (SAJSON_LIKELY(\n                    amount <= static_cast<size_t>(\n                                  ast_write_head - ast_buffer_bottom))) {\n                return true;\n            }\n            size_t current_capacity = ast_buffer_top - ast_buffer_bottom;\n\n            size_t current_size = ast_buffer_top - ast_write_head;\n            size_t new_capacity = current_capacity * 2;\n            while (new_capacity < amount + current_size) {\n                new_capacity *= 2;\n            }\n\n            size_t* old_buffer = ast_buffer_bottom;\n            size_t* new_buffer = new (std::nothrow) size_t[new_capacity];\n            if (!new_buffer) {\n                ast_buffer_bottom = 0;\n                ast_buffer_top = 0;\n                ast_write_head = 0;\n                return false;\n            }\n\n            size_t* old_write_head = ast_write_head;\n            ast_buffer_bottom = new_buffer;\n            ast_buffer_top = new_buffer + new_capacity;\n            ast_write_head = ast_buffer_top - current_size;\n            memcpy(\n                ast_write_head, old_write_head, current_size * sizeof(size_t));\n            delete[] old_buffer;\n\n            return true;\n        }\n\n        size_t*\n            ast_buffer_bottom; // base address of the ast buffer - it grows down\n        size_t* ast_buffer_top;\n        size_t* ast_write_head;\n        size_t initial_stack_capacity;\n    };\n\n    /// \\endcond\n\n    /// Creates a dynamic_allocation policy with the given initial AST\n    /// and stack buffer sizes.\n    dynamic_allocation(\n        size_t initial_ast_capacity_ = 0, size_t initial_stack_capacity_ = 0)\n        : initial_ast_capacity(initial_ast_capacity_)\n        , initial_stack_capacity(initial_stack_capacity_) {}\n\n    /// \\cond INTERNAL\n\n    allocator\n    make_allocator(size_t input_document_size_in_bytes, bool* succeeded) const {\n        size_t capacity = initial_ast_capacity;\n        if (!capacity) {\n            // TODO: guess based on input document size\n            capacity = 1024;\n        }\n\n        size_t* buffer = new (std::nothrow) size_t[capacity];\n        if (!buffer) {\n            *succeeded = false;\n            return allocator(nullptr);\n        }\n\n        size_t stack_capacity = initial_stack_capacity;\n        if (!stack_capacity) {\n            stack_capacity = 256;\n        }\n\n        *succeeded = true;\n        return allocator(buffer, capacity, stack_capacity);\n    }\n\n    /// \\endcond\n\nprivate:\n    size_t initial_ast_capacity;\n    size_t initial_stack_capacity;\n};\n\n/// Allocation policy that attempts to fit the parsed AST into an existing\n/// memory buffer.  This allocation policy is useful when using sajson in\n/// a zero-allocation context or when there are constraints on the amount\n// of memory that can be used.\nclass bounded_allocation {\npublic:\n    /// \\cond INTERNAL\n\n    class allocator;\n\n    class stack_head {\n    public:\n        stack_head(stack_head&& other)\n            : source_allocator(other.source_allocator) {\n            other.source_allocator = 0;\n        }\n\n        bool push(size_t element) {\n            if (SAJSON_LIKELY(source_allocator->can_grow(1))) {\n                *(source_allocator->stack_top)++ = element;\n                return true;\n            } else {\n                return false;\n            }\n        }\n\n        size_t* reserve(size_t amount, bool* success) {\n            if (SAJSON_LIKELY(source_allocator->can_grow(amount))) {\n                size_t* rv = source_allocator->stack_top;\n                source_allocator->stack_top += amount;\n                *success = true;\n                return rv;\n            } else {\n                *success = false;\n                return 0;\n            }\n        }\n\n        void reset(size_t new_top) {\n            source_allocator->stack_top = source_allocator->structure + new_top;\n        }\n\n        size_t get_size() {\n            return source_allocator->stack_top - source_allocator->structure;\n        }\n\n        size_t* get_top() { return source_allocator->stack_top; }\n\n        size_t* get_pointer_from_offset(size_t offset) {\n            return source_allocator->structure + offset;\n        }\n\n    private:\n        stack_head(const stack_head&) = delete;\n        void operator=(const stack_head&) = delete;\n\n        explicit stack_head(allocator* source_allocator_)\n            : source_allocator(source_allocator_) {}\n\n        allocator* source_allocator;\n\n        friend class bounded_allocation;\n    };\n\n    class allocator {\n    public:\n        allocator() = delete;\n        allocator(const allocator&) = delete;\n        void operator=(const allocator&) = delete;\n\n        explicit allocator(size_t* existing_buffer, size_t existing_buffer_size)\n            : structure(existing_buffer)\n            , structure_end(existing_buffer + existing_buffer_size)\n            , write_cursor(structure_end)\n            , stack_top(structure) {}\n\n        allocator(allocator&& other)\n            : structure(other.structure)\n            , structure_end(other.structure_end)\n            , write_cursor(other.write_cursor)\n            , stack_top(other.stack_top) {\n            other.structure = 0;\n            other.structure_end = 0;\n            other.write_cursor = 0;\n            other.stack_top = 0;\n        }\n\n        stack_head get_stack_head(bool* success) {\n            *success = true;\n            return stack_head(this);\n        }\n\n        size_t get_write_offset() { return structure_end - write_cursor; }\n\n        size_t* get_write_pointer_of(size_t v) { return structure_end - v; }\n\n        size_t* reserve(size_t size, bool* success) {\n            if (can_grow(size)) {\n                write_cursor -= size;\n                *success = true;\n                return write_cursor;\n            } else {\n                *success = false;\n                return 0;\n            }\n        }\n\n        size_t* get_ast_root() { return write_cursor; }\n\n        internal::ownership transfer_ownership() {\n            structure = 0;\n            structure_end = 0;\n            write_cursor = 0;\n            return internal::ownership(0);\n        }\n\n    private:\n        bool can_grow(size_t amount) {\n            // invariant: stack_top <= write_cursor\n            // thus: write_cursor - stack_top is positive\n            return static_cast<size_t>(write_cursor - stack_top) >= amount;\n        }\n\n        size_t* structure;\n        size_t* structure_end;\n        size_t* write_cursor;\n        size_t* stack_top;\n\n        friend class bounded_allocation;\n    };\n\n    /// \\endcond\n\n    /// Uses an existing buffer to hold the parsed AST, if it fits.  The\n    /// specified buffer must not be deallocated until after the document\n    /// is parsed and the AST traversed.\n    bounded_allocation(size_t* existing_buffer_, size_t size_in_words)\n        : existing_buffer(existing_buffer_)\n        , existing_buffer_size(size_in_words) {}\n\n    /// Convenience wrapper for bounded_allocation(size_t*, size) that\n    /// automatically infers the size of the given array.\n    template <size_t N>\n    explicit bounded_allocation(size_t (&existing_buffer_)[N])\n        : bounded_allocation(existing_buffer_, N) {}\n\n    /// \\cond INTERNAL\n\n    allocator\n    make_allocator(size_t input_document_size_in_bytes, bool* succeeded) const {\n        *succeeded = true;\n        return allocator(existing_buffer, existing_buffer_size);\n    }\n\n    /// \\endcond\n\nprivate:\n    size_t* existing_buffer;\n    size_t existing_buffer_size;\n};\n\n// I thought about putting parser in the internal namespace but I don't\n// want to indent it further...\n/// \\cond INTERNAL\ntemplate <typename Allocator>\nclass parser {\npublic:\n    parser(const mutable_string_view& msv, Allocator&& allocator_)\n        : input(msv)\n        , input_end(input.get_data() + input.length())\n        , allocator(std::move(allocator_))\n        , root_tag(internal::tag::null)\n        , error_line(0)\n        , error_column(0) {}\n\n    document get_document() {\n        if (parse()) {\n            size_t* ast_root = allocator.get_ast_root();\n            return document(\n                input, allocator.transfer_ownership(), root_tag, ast_root);\n        } else {\n            return document(\n                input, error_line, error_column, error_code, error_arg);\n        }\n    }\n\nprivate:\n    struct error_result {\n        operator bool() const { return false; }\n        operator char*() const { return 0; }\n    };\n\n    bool at_eof(const char* p) { return p == input_end; }\n\n    char* skip_whitespace(char* p) {\n        // There is an opportunity to make better use of superscalar\n        // hardware here* but if someone cares about JSON parsing\n        // performance the first thing they do is minify, so prefer\n        // to optimize for code size here.\n        // *\n        // https://github.com/chadaustin/Web-Benchmarks/blob/master/json/third-party/pjson/pjson.h#L1873\n        for (;;) {\n            if (SAJSON_UNLIKELY(p == input_end)) {\n                return 0;\n            } else if (internal::is_whitespace(*p)) {\n                ++p;\n            } else {\n                return p;\n            }\n        }\n    }\n\n    error_result oom(char* p, const char* /*reason*/) {\n        return make_error(p, ERROR_OUT_OF_MEMORY);\n    }\n\n    error_result unexpected_end() {\n        return make_error(0, ERROR_UNEXPECTED_END);\n    }\n\n    error_result unexpected_end(char* p) {\n        return make_error(p, ERROR_UNEXPECTED_END);\n    }\n\n    error_result make_error(char* p, error code, int arg = 0) {\n        if (!p) {\n            p = input_end;\n        }\n\n        error_line = 1;\n        error_column = 1;\n\n        char* c = input.get_data();\n        while (c < p) {\n            if (*c == '\\r') {\n                if (c + 1 < p && c[1] == '\\n') {\n                    ++error_line;\n                    error_column = 1;\n                    ++c;\n                } else {\n                    ++error_line;\n                    error_column = 1;\n                }\n            } else if (*c == '\\n') {\n                ++error_line;\n                error_column = 1;\n            } else {\n                // TODO: count UTF-8 characters\n                ++error_column;\n            }\n            ++c;\n        }\n\n        error_code = code;\n        error_arg = arg;\n        return error_result();\n    }\n\n    bool parse() {\n        using namespace internal;\n\n        // p points to the character currently being parsed\n        char* p = input.get_data();\n\n        bool success;\n        auto stack = allocator.get_stack_head(&success);\n        if (SAJSON_UNLIKELY(!success)) {\n            return oom(p, \"failed to get stack head\");\n        }\n\n        p = skip_whitespace(p);\n        if (SAJSON_UNLIKELY(!p)) {\n            return make_error(p, ERROR_MISSING_ROOT_ELEMENT);\n        }\n\n        // current_base is an offset to the first element of the current\n        // structure (object or array)\n        size_t current_base = stack.get_size();\n        tag current_structure_tag;\n        if (*p == '[') {\n            current_structure_tag = tag::array;\n            bool s\n                = stack.push(make_element(current_structure_tag, ROOT_MARKER));\n            if (SAJSON_UNLIKELY(!s)) {\n                return oom(p, \"stack.push array\");\n            }\n            goto array_close_or_element;\n        } else if (*p == '{') {\n            current_structure_tag = tag::object;\n            bool s\n                = stack.push(make_element(current_structure_tag, ROOT_MARKER));\n            if (SAJSON_UNLIKELY(!s)) {\n                printf(\"oom 3\\n\");\n                return oom(p, \"stack.push object\");\n            }\n            goto object_close_or_element;\n        } else {\n            return make_error(p, ERROR_BAD_ROOT);\n        }\n\n        // BEGIN STATE MACHINE\n\n        size_t pop_element; // used as an argument into the `pop` routine\n\n        if (0) { // purely for structure\n\n        // ASSUMES: byte at p SHOULD be skipped\n        array_close_or_element:\n            p = skip_whitespace(p + 1);\n            if (SAJSON_UNLIKELY(!p)) {\n                return unexpected_end();\n            }\n            if (*p == ']') {\n                goto pop_array;\n            } else {\n                goto next_element;\n            }\n            SAJSON_UNREACHABLE();\n\n        // ASSUMES: byte at p SHOULD be skipped\n        object_close_or_element:\n            p = skip_whitespace(p + 1);\n            if (SAJSON_UNLIKELY(!p)) {\n                return unexpected_end();\n            }\n            if (*p == '}') {\n                goto pop_object;\n            } else {\n                goto object_key;\n            }\n            SAJSON_UNREACHABLE();\n\n        // ASSUMES: byte at p SHOULD NOT be skipped\n        structure_close_or_comma:\n            p = skip_whitespace(p);\n            if (SAJSON_UNLIKELY(!p)) {\n                return unexpected_end();\n            }\n\n            if (current_structure_tag == tag::array) {\n                if (*p == ']') {\n                    goto pop_array;\n                } else {\n                    if (SAJSON_UNLIKELY(*p != ',')) {\n                        return make_error(p, ERROR_EXPECTED_COMMA);\n                    }\n                    ++p;\n                    goto next_element;\n                }\n            } else {\n                assert(current_structure_tag == tag::object);\n                if (*p == '}') {\n                    goto pop_object;\n                } else {\n                    if (SAJSON_UNLIKELY(*p != ',')) {\n                        return make_error(p, ERROR_EXPECTED_COMMA);\n                    }\n                    ++p;\n                    goto object_key;\n                }\n            }\n            SAJSON_UNREACHABLE();\n\n        // ASSUMES: *p == '}'\n        pop_object : {\n            ++p;\n            size_t* base_ptr = stack.get_pointer_from_offset(current_base);\n            pop_element = *base_ptr;\n            if (SAJSON_UNLIKELY(\n                    !install_object(base_ptr + 1, stack.get_top()))) {\n                return oom(p, \"install_object\");\n            }\n            goto pop;\n        }\n\n        // ASSUMES: *p == ']'\n        pop_array : {\n            ++p;\n            size_t* base_ptr = stack.get_pointer_from_offset(current_base);\n            pop_element = *base_ptr;\n            if (SAJSON_UNLIKELY(\n                    !install_array(base_ptr + 1, stack.get_top()))) {\n                return oom(p, \"install_array\");\n            }\n            goto pop;\n        }\n\n        // ASSUMES: byte at p SHOULD NOT be skipped\n        object_key : {\n            p = skip_whitespace(p);\n            if (SAJSON_UNLIKELY(!p)) {\n                return unexpected_end();\n            }\n            if (SAJSON_UNLIKELY(*p != '\"')) {\n                return make_error(p, ERROR_MISSING_OBJECT_KEY);\n            }\n            bool success_;\n            size_t* out = stack.reserve(2, &success_);\n            if (SAJSON_UNLIKELY(!success_)) {\n                return oom(p, \"reserve for object key\");\n            }\n            p = parse_string(p, out);\n            if (SAJSON_UNLIKELY(!p)) {\n                return false;\n            }\n            p = skip_whitespace(p);\n            if (SAJSON_UNLIKELY(!p || *p != ':')) {\n                return make_error(p, ERROR_EXPECTED_COLON);\n            }\n            ++p;\n            goto next_element;\n        }\n\n        // ASSUMES: byte at p SHOULD NOT be skipped\n        next_element:\n            p = skip_whitespace(p);\n            if (SAJSON_UNLIKELY(!p)) {\n                return unexpected_end();\n            }\n\n            tag value_tag_result;\n            switch (*p) {\n            case 0:\n                return unexpected_end(p);\n            case 'n':\n                p = parse_null(p);\n                if (!p) {\n                    return false;\n                }\n                value_tag_result = tag::null;\n                break;\n            case 'f':\n                p = parse_false(p);\n                if (!p) {\n                    return false;\n                }\n                value_tag_result = tag::false_;\n                break;\n            case 't':\n                p = parse_true(p);\n                if (!p) {\n                    return false;\n                }\n                value_tag_result = tag::true_;\n                break;\n            case '0':\n            case '1':\n            case '2':\n            case '3':\n            case '4':\n            case '5':\n            case '6':\n            case '7':\n            case '8':\n            case '9':\n            case '-': {\n                auto result = parse_number(p);\n                p = result.first;\n                if (!p) {\n                    return false;\n                }\n                value_tag_result = result.second;\n                break;\n            }\n            case '\"': {\n                bool success_;\n                size_t* string_tag = allocator.reserve(2, &success_);\n                if (SAJSON_UNLIKELY(!success_)) {\n                    return oom(p, \"reserve for string tag\");\n                }\n                p = parse_string(p, string_tag);\n                if (!p) {\n                    return false;\n                }\n                value_tag_result = tag::string;\n                break;\n            }\n\n            case '[': {\n                size_t previous_base = current_base;\n                current_base = stack.get_size();\n                bool s = stack.push(\n                    make_element(current_structure_tag, previous_base));\n                if (SAJSON_UNLIKELY(!s)) {\n                    return oom(p, \"stack.push array\");\n                }\n                current_structure_tag = tag::array;\n                goto array_close_or_element;\n            }\n            case '{': {\n                size_t previous_base = current_base;\n                current_base = stack.get_size();\n                bool s = stack.push(\n                    make_element(current_structure_tag, previous_base));\n                if (SAJSON_UNLIKELY(!s)) {\n                    return oom(p, \"stack.push object\");\n                }\n                current_structure_tag = tag::object;\n                goto object_close_or_element;\n            }\n            pop : {\n                size_t parent = get_element_value(pop_element);\n                if (parent == ROOT_MARKER) {\n                    root_tag = current_structure_tag;\n                    p = skip_whitespace(p);\n                    if (SAJSON_UNLIKELY(p)) {\n                        return make_error(p, ERROR_EXPECTED_END_OF_INPUT);\n                    }\n                    return true;\n                }\n                stack.reset(current_base);\n                current_base = parent;\n                value_tag_result = current_structure_tag;\n                current_structure_tag = get_element_tag(pop_element);\n                break;\n            }\n\n            case ',':\n                return make_error(p, ERROR_UNEXPECTED_COMMA);\n            default:\n                return make_error(p, ERROR_EXPECTED_VALUE);\n            }\n\n            bool s = stack.push(\n                make_element(value_tag_result, allocator.get_write_offset()));\n            if (SAJSON_UNLIKELY(!s)) {\n                return oom(p, \"stack.push value\");\n            }\n\n            goto structure_close_or_comma;\n        }\n\n        SAJSON_UNREACHABLE();\n    }\n\n    bool has_remaining_characters(char* p, ptrdiff_t remaining) {\n        return input_end - p >= remaining;\n    }\n\n    char* parse_null(char* p) {\n        if (SAJSON_UNLIKELY(!has_remaining_characters(p, 4))) {\n            make_error(p, ERROR_UNEXPECTED_END);\n            return 0;\n        }\n        char p1 = p[1];\n        char p2 = p[2];\n        char p3 = p[3];\n        if (SAJSON_UNLIKELY(p1 != 'u' || p2 != 'l' || p3 != 'l')) {\n            make_error(p, ERROR_EXPECTED_NULL);\n            return 0;\n        }\n        return p + 4;\n    }\n\n    char* parse_false(char* p) {\n        if (SAJSON_UNLIKELY(!has_remaining_characters(p, 5))) {\n            return make_error(p, ERROR_UNEXPECTED_END);\n        }\n        char p1 = p[1];\n        char p2 = p[2];\n        char p3 = p[3];\n        char p4 = p[4];\n        if (SAJSON_UNLIKELY(p1 != 'a' || p2 != 'l' || p3 != 's' || p4 != 'e')) {\n            return make_error(p, ERROR_EXPECTED_FALSE);\n        }\n        return p + 5;\n    }\n\n    char* parse_true(char* p) {\n        if (SAJSON_UNLIKELY(!has_remaining_characters(p, 4))) {\n            return make_error(p, ERROR_UNEXPECTED_END);\n        }\n        char p1 = p[1];\n        char p2 = p[2];\n        char p3 = p[3];\n        if (SAJSON_UNLIKELY(p1 != 'r' || p2 != 'u' || p3 != 'e')) {\n            return make_error(p, ERROR_EXPECTED_TRUE);\n        }\n        return p + 4;\n    }\n\n    static double pow10(int64_t exponent) {\n        if (SAJSON_UNLIKELY(exponent > 308)) {\n            return std::numeric_limits<double>::infinity();\n        } else if (SAJSON_UNLIKELY(exponent < -323)) {\n            return 0.0;\n        }\n\n        // clang-format off\n        static const double constants[] = {\n            1e-323,1e-322,1e-321,1e-320,1e-319,1e-318,1e-317,1e-316,1e-315,1e-314,\n            1e-313,1e-312,1e-311,1e-310,1e-309,1e-308,1e-307,1e-306,1e-305,1e-304,\n            1e-303,1e-302,1e-301,1e-300,1e-299,1e-298,1e-297,1e-296,1e-295,1e-294,\n            1e-293,1e-292,1e-291,1e-290,1e-289,1e-288,1e-287,1e-286,1e-285,1e-284,\n            1e-283,1e-282,1e-281,1e-280,1e-279,1e-278,1e-277,1e-276,1e-275,1e-274,\n            1e-273,1e-272,1e-271,1e-270,1e-269,1e-268,1e-267,1e-266,1e-265,1e-264,\n            1e-263,1e-262,1e-261,1e-260,1e-259,1e-258,1e-257,1e-256,1e-255,1e-254,\n            1e-253,1e-252,1e-251,1e-250,1e-249,1e-248,1e-247,1e-246,1e-245,1e-244,\n            1e-243,1e-242,1e-241,1e-240,1e-239,1e-238,1e-237,1e-236,1e-235,1e-234,\n            1e-233,1e-232,1e-231,1e-230,1e-229,1e-228,1e-227,1e-226,1e-225,1e-224,\n            1e-223,1e-222,1e-221,1e-220,1e-219,1e-218,1e-217,1e-216,1e-215,1e-214,\n            1e-213,1e-212,1e-211,1e-210,1e-209,1e-208,1e-207,1e-206,1e-205,1e-204,\n            1e-203,1e-202,1e-201,1e-200,1e-199,1e-198,1e-197,1e-196,1e-195,1e-194,\n            1e-193,1e-192,1e-191,1e-190,1e-189,1e-188,1e-187,1e-186,1e-185,1e-184,\n            1e-183,1e-182,1e-181,1e-180,1e-179,1e-178,1e-177,1e-176,1e-175,1e-174,\n            1e-173,1e-172,1e-171,1e-170,1e-169,1e-168,1e-167,1e-166,1e-165,1e-164,\n            1e-163,1e-162,1e-161,1e-160,1e-159,1e-158,1e-157,1e-156,1e-155,1e-154,\n            1e-153,1e-152,1e-151,1e-150,1e-149,1e-148,1e-147,1e-146,1e-145,1e-144,\n            1e-143,1e-142,1e-141,1e-140,1e-139,1e-138,1e-137,1e-136,1e-135,1e-134,\n            1e-133,1e-132,1e-131,1e-130,1e-129,1e-128,1e-127,1e-126,1e-125,1e-124,\n            1e-123,1e-122,1e-121,1e-120,1e-119,1e-118,1e-117,1e-116,1e-115,1e-114,\n            1e-113,1e-112,1e-111,1e-110,1e-109,1e-108,1e-107,1e-106,1e-105,1e-104,\n            1e-103,1e-102,1e-101,1e-100,1e-99,1e-98,1e-97,1e-96,1e-95,1e-94,1e-93,\n            1e-92,1e-91,1e-90,1e-89,1e-88,1e-87,1e-86,1e-85,1e-84,1e-83,1e-82,1e-81,\n            1e-80,1e-79,1e-78,1e-77,1e-76,1e-75,1e-74,1e-73,1e-72,1e-71,1e-70,1e-69,\n            1e-68,1e-67,1e-66,1e-65,1e-64,1e-63,1e-62,1e-61,1e-60,1e-59,1e-58,1e-57,\n            1e-56,1e-55,1e-54,1e-53,1e-52,1e-51,1e-50,1e-49,1e-48,1e-47,1e-46,1e-45,\n            1e-44,1e-43,1e-42,1e-41,1e-40,1e-39,1e-38,1e-37,1e-36,1e-35,1e-34,1e-33,\n            1e-32,1e-31,1e-30,1e-29,1e-28,1e-27,1e-26,1e-25,1e-24,1e-23,1e-22,1e-21,\n            1e-20,1e-19,1e-18,1e-17,1e-16,1e-15,1e-14,1e-13,1e-12,1e-11,1e-10,1e-9,\n            1e-8,1e-7,1e-6,1e-5,1e-4,1e-3,1e-2,1e-1,1e0,1e1,1e2,1e3,1e4,1e5,1e6,1e7,\n            1e8,1e9,1e10,1e11,1e12,1e13,1e14,1e15,1e16,1e17,1e18,1e19,1e20,1e21,\n            1e22,1e23,1e24,1e25,1e26,1e27,1e28,1e29,1e30,1e31,1e32,1e33,1e34,1e35,\n            1e36,1e37,1e38,1e39,1e40,1e41,1e42,1e43,1e44,1e45,1e46,1e47,1e48,1e49,\n            1e50,1e51,1e52,1e53,1e54,1e55,1e56,1e57,1e58,1e59,1e60,1e61,1e62,1e63,\n            1e64,1e65,1e66,1e67,1e68,1e69,1e70,1e71,1e72,1e73,1e74,1e75,1e76,1e77,\n            1e78,1e79,1e80,1e81,1e82,1e83,1e84,1e85,1e86,1e87,1e88,1e89,1e90,1e91,\n            1e92,1e93,1e94,1e95,1e96,1e97,1e98,1e99,1e100,1e101,1e102,1e103,1e104,\n            1e105,1e106,1e107,1e108,1e109,1e110,1e111,1e112,1e113,1e114,1e115,1e116,\n            1e117,1e118,1e119,1e120,1e121,1e122,1e123,1e124,1e125,1e126,1e127,1e128,\n            1e129,1e130,1e131,1e132,1e133,1e134,1e135,1e136,1e137,1e138,1e139,1e140,\n            1e141,1e142,1e143,1e144,1e145,1e146,1e147,1e148,1e149,1e150,1e151,1e152,\n            1e153,1e154,1e155,1e156,1e157,1e158,1e159,1e160,1e161,1e162,1e163,1e164,\n            1e165,1e166,1e167,1e168,1e169,1e170,1e171,1e172,1e173,1e174,1e175,1e176,\n            1e177,1e178,1e179,1e180,1e181,1e182,1e183,1e184,1e185,1e186,1e187,1e188,\n            1e189,1e190,1e191,1e192,1e193,1e194,1e195,1e196,1e197,1e198,1e199,1e200,\n            1e201,1e202,1e203,1e204,1e205,1e206,1e207,1e208,1e209,1e210,1e211,1e212,\n            1e213,1e214,1e215,1e216,1e217,1e218,1e219,1e220,1e221,1e222,1e223,1e224,\n            1e225,1e226,1e227,1e228,1e229,1e230,1e231,1e232,1e233,1e234,1e235,1e236,\n            1e237,1e238,1e239,1e240,1e241,1e242,1e243,1e244,1e245,1e246,1e247,1e248,\n            1e249,1e250,1e251,1e252,1e253,1e254,1e255,1e256,1e257,1e258,1e259,1e260,\n            1e261,1e262,1e263,1e264,1e265,1e266,1e267,1e268,1e269,1e270,1e271,1e272,\n            1e273,1e274,1e275,1e276,1e277,1e278,1e279,1e280,1e281,1e282,1e283,1e284,\n            1e285,1e286,1e287,1e288,1e289,1e290,1e291,1e292,1e293,1e294,1e295,1e296,\n            1e297,1e298,1e299,1e300,1e301,1e302,1e303,1e304,1e305,1e306,1e307,1e308\n        };\n        // clang-format on\n\n        return constants[exponent + 323];\n    }\n\n    std::pair<char*, internal::tag> parse_number(char* p) {\n        using internal::tag;\n\n        // Assume 32-bit, two's complement integers.\n        static constexpr unsigned RISKY = INT_MAX / 10u;\n        unsigned max_digit_after_risky = INT_MAX % 10u;\n\n        bool negative = false;\n        if ('-' == *p) {\n            ++p;\n            negative = true;\n\n            if (SAJSON_UNLIKELY(at_eof(p))) {\n                return std::make_pair(\n                    make_error(p, ERROR_UNEXPECTED_END), tag::null);\n            }\n\n            ++max_digit_after_risky;\n        }\n\n        bool try_double = false;\n\n        unsigned u = 0;\n        double d = 0.0; // gcc complains that d might be used uninitialized\n                        // which isn't true. appease the warning anyway.\n        if (*p == '0') {\n            ++p;\n            if (SAJSON_UNLIKELY(at_eof(p))) {\n                return std::make_pair(\n                    make_error(p, ERROR_UNEXPECTED_END), tag::null);\n            }\n        } else {\n            unsigned char c = *p;\n            if (c < '0' || c > '9') {\n                return std::make_pair(\n                    make_error(p, ERROR_INVALID_NUMBER), tag::null);\n            }\n\n            do {\n                ++p;\n                if (SAJSON_UNLIKELY(at_eof(p))) {\n                    return std::make_pair(\n                        make_error(p, ERROR_UNEXPECTED_END), tag::null);\n                }\n\n                unsigned char digit = c - '0';\n\n                if (SAJSON_UNLIKELY(!try_double && (u > RISKY || (u == RISKY && digit > max_digit_after_risky)))) {\n                    // TODO: could split this into two loops\n                    try_double = true;\n                    d = u;\n                }\n                if (SAJSON_UNLIKELY(try_double)) {\n                    d = 10.0 * d + digit;\n                } else {\n                    u = 10 * u + digit;\n                }\n\n                c = *p;\n            } while (c >= '0' && c <= '9');\n        }\n\n        int64_t exponent = 0;\n\n        if ('.' == *p) {\n            if (!try_double) {\n                try_double = true;\n                d = u;\n            }\n            ++p;\n            if (SAJSON_UNLIKELY(at_eof(p))) {\n                return std::make_pair(\n                    make_error(p, ERROR_UNEXPECTED_END), tag::null);\n            }\n            char c = *p;\n            if (c < '0' || c > '9') {\n                return std::make_pair(\n                    make_error(p, ERROR_INVALID_NUMBER), tag::null);\n            }\n\n            do {\n                ++p;\n                if (SAJSON_UNLIKELY(at_eof(p))) {\n                    return std::make_pair(\n                        make_error(p, ERROR_UNEXPECTED_END), tag::null);\n                }\n                d = d * 10 + (c - '0');\n                // One option to avoid underflow would be to clamp\n                // to INT_MIN, but int64 subtraction is cheap and\n                // in the absurd case of parsing 2 GB of digits\n                // with an extremely high exponent, this will\n                // produce accurate results.  Instead, we just\n                // leave exponent as int64_t and it will never\n                // underflow.\n                --exponent;\n\n                c = *p;\n            } while (c >= '0' && c <= '9');\n        }\n\n        char e = *p;\n        if ('e' == e || 'E' == e) {\n            if (!try_double) {\n                try_double = true;\n                d = u;\n            }\n            ++p;\n            if (SAJSON_UNLIKELY(at_eof(p))) {\n                return std::make_pair(\n                    make_error(p, ERROR_UNEXPECTED_END), tag::null);\n            }\n\n            bool negativeExponent = false;\n            if ('-' == *p) {\n                negativeExponent = true;\n                ++p;\n                if (SAJSON_UNLIKELY(at_eof(p))) {\n                    return std::make_pair(\n                        make_error(p, ERROR_UNEXPECTED_END), tag::null);\n                }\n            } else if ('+' == *p) {\n                ++p;\n                if (SAJSON_UNLIKELY(at_eof(p))) {\n                    return std::make_pair(\n                        make_error(p, ERROR_UNEXPECTED_END), tag::null);\n                }\n            }\n\n            int exp = 0;\n\n            char c = *p;\n            if (SAJSON_UNLIKELY(c < '0' || c > '9')) {\n                return std::make_pair(\n                    make_error(p, ERROR_MISSING_EXPONENT), tag::null);\n            }\n            for (;;) {\n                // c guaranteed to be between '0' and '9', inclusive\n                unsigned char digit = c - '0';\n                if (exp > (INT_MAX - digit) / 10) {\n                    // The exponent overflowed.  Keep parsing, but\n                    // it will definitely be out of range when\n                    // pow10 is called.\n                    exp = INT_MAX;\n                } else {\n                    exp = 10 * exp + digit;\n                }\n\n                ++p;\n                if (SAJSON_UNLIKELY(at_eof(p))) {\n                    return std::make_pair(\n                        make_error(p, ERROR_UNEXPECTED_END), tag::null);\n                }\n\n                c = *p;\n                if (c < '0' || c > '9') {\n                    break;\n                }\n            }\n            static_assert(\n                -INT_MAX >= INT_MIN, \"exp can be negated without loss or UB\");\n            exponent += (negativeExponent ? -exp : exp);\n        }\n\n        if (exponent) {\n            assert(try_double);\n            // If d is zero but the exponent is huge, don't\n            // multiply zero by inf which gives nan.\n            if (d != 0.0) {\n                d *= pow10(exponent);\n            }\n        }\n\n        if (negative) {\n            if (try_double) {\n                d = -d;\n            } else {\n                u = 0u - u;\n            }\n        }\n        if (try_double) {\n            bool success;\n            size_t* out\n                = allocator.reserve(double_storage::word_length, &success);\n            if (SAJSON_UNLIKELY(!success)) {\n                return std::make_pair(oom(p, \"double\"), tag::null);\n            }\n            double_storage::store(out, d);\n            return std::make_pair(p, tag::double_);\n        } else {\n            bool success;\n            size_t* out\n                = allocator.reserve(integer_storage::word_length, &success);\n            if (SAJSON_UNLIKELY(!success)) {\n                return std::make_pair(oom(p, \"integer\"), tag::null);\n            }\n            integer_storage::store(out, static_cast<int>(u));\n            return std::make_pair(p, tag::integer);\n        }\n    }\n\n    bool install_array(size_t* array_base, size_t* array_end) {\n        using namespace sajson::internal;\n\n        const size_t length = array_end - array_base;\n        bool success;\n        size_t* const new_base = allocator.reserve(length + 1, &success);\n        if (SAJSON_UNLIKELY(!success)) {\n            return false;\n        }\n        size_t* out = new_base + length + 1;\n        size_t* const structure_end = allocator.get_write_pointer_of(0);\n\n        while (array_end > array_base) {\n            size_t element = *--array_end;\n            tag element_type = get_element_tag(element);\n            size_t element_value = get_element_value(element);\n            size_t* element_ptr = structure_end - element_value;\n            *--out = make_element(element_type, element_ptr - new_base);\n        }\n        *--out = length;\n        return true;\n    }\n\n    bool install_object(size_t* object_base, size_t* object_end) {\n        using namespace internal;\n\n        assert((object_end - object_base) % 3 == 0);\n        const size_t length_times_3 = object_end - object_base;\n        const size_t length = length_times_3 / 3;\n        if (SAJSON_UNLIKELY(should_binary_search(length))) {\n            std::sort(\n                reinterpret_cast<object_key_record*>(object_base),\n                reinterpret_cast<object_key_record*>(object_end),\n                object_key_comparator(input.get_data()));\n        }\n\n        bool success;\n        size_t* const new_base\n            = allocator.reserve(length_times_3 + 1, &success);\n        if (SAJSON_UNLIKELY(!success)) {\n            return false;\n        }\n        size_t* out = new_base + length_times_3 + 1;\n        size_t* const structure_end = allocator.get_write_pointer_of(0);\n\n        while (object_end > object_base) {\n            size_t element = *--object_end;\n            tag element_type = get_element_tag(element);\n            size_t element_value = get_element_value(element);\n            size_t* element_ptr = structure_end - element_value;\n\n            *--out = make_element(element_type, element_ptr - new_base);\n            *--out = *--object_end;\n            *--out = *--object_end;\n        }\n        *--out = length;\n        return true;\n    }\n\n    char* parse_string(char* p, size_t* tag) {\n        using namespace internal;\n\n        ++p; // \"\n        size_t start = p - input.get_data();\n        char* input_end_local = input_end;\n        while (input_end_local - p >= 4) {\n            if (!is_plain_string_character(p[0])) {\n                goto found;\n            }\n            if (!is_plain_string_character(p[1])) {\n                p += 1;\n                goto found;\n            }\n            if (!is_plain_string_character(p[2])) {\n                p += 2;\n                goto found;\n            }\n            if (!is_plain_string_character(p[3])) {\n                p += 3;\n                goto found;\n            }\n            p += 4;\n        }\n        for (;;) {\n            if (SAJSON_UNLIKELY(p >= input_end_local)) {\n                return make_error(p, ERROR_UNEXPECTED_END);\n            }\n\n            if (!is_plain_string_character(*p)) {\n                break;\n            }\n\n            ++p;\n        }\n    found:\n        if (SAJSON_LIKELY(*p == '\"')) {\n            tag[0] = start;\n            tag[1] = p - input.get_data();\n            *p = '\\0';\n            return p + 1;\n        }\n\n        if (*p >= 0 && *p < 0x20) {\n            return make_error(p, ERROR_ILLEGAL_CODEPOINT, static_cast<int>(*p));\n        } else {\n            // backslash or >0x7f\n            return parse_string_slow(p, tag, start);\n        }\n    }\n\n    char* read_hex(char* p, unsigned& u) {\n        unsigned v = 0;\n        int i = 4;\n        while (i--) {\n            unsigned char c = *p++;\n            if (c >= '0' && c <= '9') {\n                c -= '0';\n            } else if (c >= 'a' && c <= 'f') {\n                c = c - 'a' + 10;\n            } else if (c >= 'A' && c <= 'F') {\n                c = c - 'A' + 10;\n            } else {\n                return make_error(p, ERROR_INVALID_UNICODE_ESCAPE);\n            }\n            v = (v << 4) + c;\n        }\n\n        u = v;\n        return p;\n    }\n\n    void write_utf8(unsigned codepoint, char*& end) {\n        if (codepoint < 0x80) {\n            *end++ = codepoint;\n        } else if (codepoint < 0x800) {\n            *end++ = 0xC0 | (codepoint >> 6);\n            *end++ = 0x80 | (codepoint & 0x3F);\n        } else if (codepoint < 0x10000) {\n            *end++ = 0xE0 | (codepoint >> 12);\n            *end++ = 0x80 | ((codepoint >> 6) & 0x3F);\n            *end++ = 0x80 | (codepoint & 0x3F);\n        } else {\n            assert(codepoint < 0x200000);\n            *end++ = 0xF0 | (codepoint >> 18);\n            *end++ = 0x80 | ((codepoint >> 12) & 0x3F);\n            *end++ = 0x80 | ((codepoint >> 6) & 0x3F);\n            *end++ = 0x80 | (codepoint & 0x3F);\n        }\n    }\n\n    char* parse_string_slow(char* p, size_t* tag, size_t start) {\n        char* end = p;\n        char* input_end_local = input_end;\n\n        for (;;) {\n            if (SAJSON_UNLIKELY(p >= input_end_local)) {\n                return make_error(p, ERROR_UNEXPECTED_END);\n            }\n\n            if (SAJSON_UNLIKELY(*p >= 0 && *p < 0x20)) {\n                return make_error(\n                    p, ERROR_ILLEGAL_CODEPOINT, static_cast<int>(*p));\n            }\n\n            switch (*p) {\n            case '\"':\n                tag[0] = start;\n                tag[1] = end - input.get_data();\n                *end = '\\0';\n                return p + 1;\n\n            case '\\\\':\n                ++p;\n                if (SAJSON_UNLIKELY(p >= input_end_local)) {\n                    return make_error(p, ERROR_UNEXPECTED_END);\n                }\n\n                char replacement;\n                switch (*p) {\n                case '\"':\n                    replacement = '\"';\n                    goto replace;\n                case '\\\\':\n                    replacement = '\\\\';\n                    goto replace;\n                case '/':\n                    replacement = '/';\n                    goto replace;\n                case 'b':\n                    replacement = '\\b';\n                    goto replace;\n                case 'f':\n                    replacement = '\\f';\n                    goto replace;\n                case 'n':\n                    replacement = '\\n';\n                    goto replace;\n                case 'r':\n                    replacement = '\\r';\n                    goto replace;\n                case 't':\n                    replacement = '\\t';\n                    goto replace;\n                replace:\n                    *end++ = replacement;\n                    ++p;\n                    break;\n                case 'u': {\n                    ++p;\n                    if (SAJSON_UNLIKELY(!has_remaining_characters(p, 4))) {\n                        return make_error(p, ERROR_UNEXPECTED_END);\n                    }\n                    unsigned u = 0; // gcc's complaining that this could be used\n                                    // uninitialized. wrong.\n                    p = read_hex(p, u);\n                    if (!p) {\n                        return 0;\n                    }\n                    if (u >= 0xD800 && u <= 0xDBFF) {\n                        if (SAJSON_UNLIKELY(!has_remaining_characters(p, 6))) {\n                            return make_error(p, ERROR_UNEXPECTED_END_OF_UTF16);\n                        }\n                        char p0 = p[0];\n                        char p1 = p[1];\n                        if (p0 != '\\\\' || p1 != 'u') {\n                            return make_error(p, ERROR_EXPECTED_U);\n                        }\n                        p += 2;\n                        unsigned v = 0; // gcc's complaining that this could be\n                                        // used uninitialized. wrong.\n                        p = read_hex(p, v);\n                        if (!p) {\n                            return p;\n                        }\n\n                        if (v < 0xDC00 || v > 0xDFFF) {\n                            return make_error(\n                                p, ERROR_INVALID_UTF16_TRAIL_SURROGATE);\n                        }\n                        u = 0x10000 + (((u - 0xD800) << 10) | (v - 0xDC00));\n                    }\n                    write_utf8(u, end);\n                    break;\n                }\n                default:\n                    return make_error(p, ERROR_UNKNOWN_ESCAPE);\n                }\n                break;\n\n            default:\n                // validate UTF-8\n                unsigned char c0 = p[0];\n                if (c0 < 128) {\n                    *end++ = *p++;\n                } else if (c0 < 224) {\n                    if (SAJSON_UNLIKELY(!has_remaining_characters(p, 2))) {\n                        return unexpected_end(p);\n                    }\n                    unsigned char c1 = p[1];\n                    if (c1 < 128 || c1 >= 192) {\n                        return make_error(p + 1, ERROR_INVALID_UTF8);\n                    }\n                    end[0] = c0;\n                    end[1] = c1;\n                    end += 2;\n                    p += 2;\n                } else if (c0 < 240) {\n                    if (SAJSON_UNLIKELY(!has_remaining_characters(p, 3))) {\n                        return unexpected_end(p);\n                    }\n                    unsigned char c1 = p[1];\n                    if (c1 < 128 || c1 >= 192) {\n                        return make_error(p + 1, ERROR_INVALID_UTF8);\n                    }\n                    unsigned char c2 = p[2];\n                    if (c2 < 128 || c2 >= 192) {\n                        return make_error(p + 2, ERROR_INVALID_UTF8);\n                    }\n                    end[0] = c0;\n                    end[1] = c1;\n                    end[2] = c2;\n                    end += 3;\n                    p += 3;\n                } else if (c0 < 248) {\n                    if (SAJSON_UNLIKELY(!has_remaining_characters(p, 4))) {\n                        return unexpected_end(p);\n                    }\n                    unsigned char c1 = p[1];\n                    if (c1 < 128 || c1 >= 192) {\n                        return make_error(p + 1, ERROR_INVALID_UTF8);\n                    }\n                    unsigned char c2 = p[2];\n                    if (c2 < 128 || c2 >= 192) {\n                        return make_error(p + 2, ERROR_INVALID_UTF8);\n                    }\n                    unsigned char c3 = p[3];\n                    if (c3 < 128 || c3 >= 192) {\n                        return make_error(p + 3, ERROR_INVALID_UTF8);\n                    }\n                    end[0] = c0;\n                    end[1] = c1;\n                    end[2] = c2;\n                    end[3] = c3;\n                    end += 4;\n                    p += 4;\n                } else {\n                    return make_error(p, ERROR_INVALID_UTF8);\n                }\n                break;\n            }\n        }\n    }\n\n    mutable_string_view input;\n    char* const input_end;\n    Allocator allocator;\n\n    internal::tag root_tag;\n    size_t error_line;\n    size_t error_column;\n    error error_code;\n    int error_arg; // optional argument for the error\n};\n/// \\endcond\n\n/**\n * Parses a string of JSON bytes into a \\ref document, given an allocation\n * strategy instance.  Any kind of string type is valid as long as a\n * mutable_string_view can be constructed from it.\n *\n * Valid allocation strategies are \\ref single_allocation,\n * \\ref dynamic_allocation, and \\ref bounded_allocation.\n *\n * A \\ref document is returned whether or not the parse succeeds: success\n * state is available by calling document::is_valid().\n */\ntemplate <typename AllocationStrategy, typename StringType>\ndocument parse(const AllocationStrategy& strategy, const StringType& string) {\n    mutable_string_view input(string);\n\n    bool success;\n    auto allocator = strategy.make_allocator(input.length(), &success);\n    if (!success) {\n        return document(input, 1, 1, ERROR_OUT_OF_MEMORY, 0);\n    }\n\n    return parser<typename AllocationStrategy::allocator>(\n               input, std::move(allocator))\n        .get_document();\n}\n} // namespace sajson\n"
  },
  {
    "path": "include/sajson_ostream.h",
    "content": "#pragma once\n\n#include \"sajson.h\"\n#include <ostream>\n\nnamespace sajson {\ninline std::ostream& operator<<(std::ostream& os, type t) {\n    switch (t) {\n    case TYPE_INTEGER:\n        return os << \"<integer>\";\n    case TYPE_DOUBLE:\n        return os << \"<double>\";\n    case TYPE_NULL:\n        return os << \"<null>\";\n    case TYPE_FALSE:\n        return os << \"<false>\";\n    case TYPE_TRUE:\n        return os << \"<true>\";\n    case TYPE_STRING:\n        return os << \"<string>\";\n    case TYPE_ARRAY:\n        return os << \"<array>\";\n    case TYPE_OBJECT:\n        return os << \"<object>\";\n    default:\n        return os << \"<unknown type>\";\n    }\n}\n} // namespace sajson\n"
  },
  {
    "path": "s/bench",
    "content": "#!/bin/bash\ncd `dirname \"$0\"`/..\n\n# note: for valgrind to work on 32-bit targets, the libc6-dbg:i386\n# package must be installed.\n\nset -e\n\nfor a in $(ls build); do\n    if [[ \"$a\" == *-opt ]]; then\n        echo \"$a:\"\n        build/$a/bench\n        echo\n    fi\ndone\n"
  },
  {
    "path": "s/build",
    "content": "#!/bin/bash\ncd `dirname \"$0\"`/..\n\nscons -Q \"$@\"\n"
  },
  {
    "path": "s/doxygen",
    "content": "#!/bin/bash\ncd `dirname \"$0\"`/..\n\ndoxygen doc/doxygen.config\n"
  },
  {
    "path": "s/fmt",
    "content": "#!/bin/bash\ncd `dirname \"$0\"`/..\n\nset -e\n\nfind example include benchmark swift tests \\( -name '*.h' -o -name '*.cpp' \\) -exec clang-format -i {} +\nfind . \\( -iname SConstruct -o -iname SConscript \\) -exec black {} +\n"
  },
  {
    "path": "s/setup-ubuntu",
    "content": "#!/bin/bash\ncd `dirname \"$0\"`/..\n\nsudo apt install clang scons valgrind graphviz doxygen clang-format gcc-multilib g++-multilib libc6-dbg:i386 black\n"
  },
  {
    "path": "s/test",
    "content": "#!/bin/bash\ncd `dirname \"$0\"`/..\n\n# note: for valgrind to work on 32-bit targets, the libc6-dbg:i386\n# package must be installed.\n\nif [[ \"$OSTYPE\" == \"darwin\"* ]]; then\n    SYSTEM_VALGRIND=\nelse\n    SYSTEM_VALGRIND=$(which valgrind)\nfi\n\nset -e\n\nfor a in $(ls build); do\n    if [[ \"$a\" == *-san || \"$SYSTEM_VALGRIND\" == \"\" ]]; then\n        # ASAN doesn't tolerate being run under valgrind.\n        # Shadow memory range interleaves with an existing memory mapping.\n        VALGRIND=\n    else\n        VALGRIND=\"valgrind -q\"\n    fi\n    echo \"$a:\"\n    $VALGRIND build/$a/test\n    $VALGRIND build/$a/test_unsorted\n    echo\ndone\n"
  },
  {
    "path": "swift/.gitignore",
    "content": "/sajson.xcodeproj/project.xcworkspace/xcuserdata/\n/sajson.xcodeproj/xcuserdata/\n"
  },
  {
    "path": "swift/sajson/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>FMWK</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleVersion</key>\n\t<string>$(CURRENT_PROJECT_VERSION)</string>\n\t<key>NSPrincipalClass</key>\n\t<string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "swift/sajson/sajson-ffi.cpp",
    "content": "#include \"sajson-ffi.h\"\n#include \"../../include/sajson.h\"\n\n// never instantiated, only inherits so static_cast is legal\nstruct sajson_document : sajson::document {};\nstruct sajson_value : sajson::value {};\n\nnamespace {\n\nsajson::document* unwrap(sajson_document* doc) {\n    return static_cast<sajson::document*>(doc);\n}\n\nsajson_document* wrap(sajson::document* doc) {\n    return static_cast<sajson_document*>(doc);\n}\n\ntemplate <typename T>\ntypename std::underlying_type<T>::type to_underlying(T value) {\n    return static_cast<typename std::underlying_type<T>::type>(value);\n}\n}\n\nsajson_document* sajson_parse_single_allocation(char* bytes, size_t length) {\n    auto doc = sajson::parse(\n        sajson::single_allocation(),\n        sajson::mutable_string_view(length, bytes));\n    return wrap(new (std::nothrow) sajson::document(std::move(doc)));\n}\n\nsajson_document* sajson_parse_dynamic_allocation(char* bytes, size_t length) {\n    auto doc = sajson::parse(\n        sajson::dynamic_allocation(),\n        sajson::mutable_string_view(length, bytes));\n    return wrap(new (std::nothrow) sajson::document(std::move(doc)));\n}\n\nvoid sajson_free_document(sajson_document* doc) { delete unwrap(doc); }\n\nint sajson_has_error(sajson_document* doc) { return !unwrap(doc)->is_valid(); }\n\nsize_t sajson_get_error_line(sajson_document* doc) {\n    return unwrap(doc)->get_error_line();\n}\n\nsize_t sajson_get_error_column(sajson_document* doc) {\n    return unwrap(doc)->get_error_column();\n}\n\nconst char* sajson_get_error_message(sajson_document* doc) {\n    return unwrap(doc)->get_error_message_as_cstring();\n}\n\nuint8_t sajson_get_root_tag(sajson_document* doc) {\n    return to_underlying(unwrap(doc)->_internal_get_root_tag());\n}\n\nconst size_t* sajson_get_root(sajson_document* doc) {\n    return unwrap(doc)->_internal_get_root();\n}\n\nconst unsigned char* sajson_get_input(sajson_document* doc) {\n    return reinterpret_cast<const unsigned char*>(\n        unwrap(doc)->_internal_get_input().get_data());\n}\n\nsize_t sajson_get_input_length(struct sajson_document* doc) {\n    return unwrap(doc)->_internal_get_input().length();\n}\n\n// MARK: -\n\n/// HACK: This is a re-implemented version of a similar function on\n/// sajson::value. We should modify it to either share a common helper, or\n/// remove it completely and re-implement the search logic in Swift.\nsize_t sajson_find_object_key(\n    const size_t* const payload,\n    const char* key,\n    size_t length,\n    const unsigned char* input) {\n    auto inputCasted = reinterpret_cast<const char* const>(input);\n    sajson::string key_string = sajson::string(key, length);\n    size_t value_length = payload[0];\n\n    const sajson::internal::object_key_record* start\n        = reinterpret_cast<const sajson::internal::object_key_record*>(\n            payload + 1);\n    const sajson::internal::object_key_record* end = start + value_length;\n    const sajson::internal::object_key_record* i = std::lower_bound(\n        start,\n        end,\n        key_string,\n        sajson::internal::object_key_comparator(inputCasted));\n    return (i != end && (i->key_end - i->key_start) == key_string.length()\n            && memcmp(\n                   key_string.data(), input + i->key_start, key_string.length())\n                == 0)\n        ? i - start\n        : value_length;\n}\n"
  },
  {
    "path": "swift/sajson/sajson-swift/sajson-ffi.h",
    "content": "#pragma once\n\n#include <stddef.h>\n#include <stdint.h>\n\nstruct sajson_document;\n\n// Swift turns size_t into Int but we want UInt on the Swift side\ntypedef unsigned long sajson_element;\n\n#ifdef __cplusplus\nstatic_assert(\n    sizeof(sajson_element) == sizeof(size_t),\n    \"sajson_element should be pointer-sized and also convert to the \"\n    \"right Swift types\");\n\nextern \"C\" {\n#endif\n\nstruct sajson_document*\nsajson_parse_single_allocation(char* bytes, size_t length);\nstruct sajson_document*\nsajson_parse_dynamic_allocation(char* bytes, size_t length);\nvoid sajson_free_document(struct sajson_document* doc);\nint sajson_has_error(struct sajson_document* doc);\nsize_t sajson_get_error_line(struct sajson_document* doc);\nsize_t sajson_get_error_column(struct sajson_document* doc);\nconst char* sajson_get_error_message(struct sajson_document* doc);\nuint8_t sajson_get_root_tag(struct sajson_document* doc);\nconst sajson_element* sajson_get_root(struct sajson_document* doc);\nconst unsigned char* sajson_get_input(struct sajson_document* doc);\nsize_t sajson_get_input_length(struct sajson_document* doc);\nsize_t sajson_find_object_key(\n    const sajson_element* payload,\n    const char* key,\n    size_t length,\n    const unsigned char* input);\n\n#ifdef __cplusplus\n}\n#endif\n"
  },
  {
    "path": "swift/sajson/sajson.swift",
    "content": "import Foundation\n\n// MARK: ValueReader\n\n/// Represents a JSON value decoded from the sajson AST.  This type provides decoded access\n/// to array and object elements lazily.\n///\n/// WARNING: Do NOT store these outside of your immediate parsing code - `ValueReader`\n/// accesses memory owned by the Document, and if the Document is deallocated before a\n/// ValueReader is used, Bad Things Will Happen.\npublic enum ValueReader {\n    case integer(Int32)\n    case double(Float64)\n    case null\n    case bool(Bool)\n    case string(String)\n    case array(ArrayReader)\n    case object(ObjectReader)\n\n    // Deeply inflate this ValueReader into a typed Value.\n    public var value: Value {\n        switch self {\n        case .integer(let i): return .integer(i)\n        case .double(let d): return .double(d)\n        case .null: return .null\n        case .bool(let b): return .bool(b)\n        case .string(let s): return .string(s)\n        case .array(let reader):\n            var result: [Value] = []\n            result.reserveCapacity(reader.count)\n            for element in reader {\n                result.append(element.value)\n            }\n            return .array(result)\n        case .object(let reader):\n            var result: [String: Value] = [:]\n            for (key, element) in reader {\n                result[key] = element.value\n            }\n            return .object(result)\n        }\n    }\n\n    // Deeply inflate this ValueReader into an untyped Swift Any.\n    public var valueAsAny: Any {\n        switch self {\n        case .integer(let i): return i\n        case .double(let d): return d\n        case .null: return NSNull()\n        case .bool(let b): return b\n        case .string(let s): return s\n        case .array(let reader):\n            var result: [Any] = []\n            result.reserveCapacity(reader.count)\n            for element in reader {\n                result.append(element.valueAsAny)\n            }\n            return result\n        case .object(let reader):\n            var result: [String: Any] = [:]\n            for (key, element) in reader {\n                result[key] = element.valueAsAny\n            }\n            return result\n        }\n    }\n}\n\n// Encapsulates logic required to read from an array.\npublic struct ArrayReader: Sequence {\n    fileprivate init(payload: UnsafePointer<UInt>, input: UnsafeBufferPointer<UInt8>) {\n        self.payload = payload\n        self.input = input\n    }\n\n    public subscript(i: Int)-> ValueReader {\n        if i >= count {\n            preconditionFailure(\"Index out of range: \\(i)\")\n        }\n\n        let element = payload[1 + i]\n        let elementTag = UInt8(element & 7)\n        let elementOffset = Int(element >> 3)\n        return ASTNode(tag: elementTag, payload: payload.advanced(by: elementOffset), input: input).valueReader\n    }\n\n    public var count: Int {\n        return Int(payload[0])\n    }\n\n    // MARK: Sequence\n\n    public struct Iterator: IteratorProtocol {\n        fileprivate init(arrayReader: ArrayReader) {\n            self.arrayReader = arrayReader\n        }\n\n        public mutating func next() -> ValueReader? {\n            if currentIndex < arrayReader.count {\n                let value = arrayReader[currentIndex]\n                currentIndex += 1\n                return value\n            } else {\n                return nil\n            }\n        }\n\n        private var currentIndex = 0\n        private let arrayReader: ArrayReader\n    }\n\n    public func makeIterator() -> ArrayReader.Iterator {\n        return Iterator(arrayReader: self)\n    }\n\n    // MARK: Private\n\n    private let payload: UnsafePointer<UInt>\n    private let input: UnsafeBufferPointer<UInt8>\n}\n\n// Encapsulates logic required to read from an object.\npublic struct ObjectReader: Sequence {\n    fileprivate init(payload: UnsafePointer<UInt>, input: UnsafeBufferPointer<UInt8>) {\n        self.payload = payload\n        self.input = input\n    }\n\n    public var count: Int {\n        return Int(payload[0])\n    }\n\n    public subscript(i: Int) -> (String, ValueReader) {\n        if i >= count {\n            preconditionFailure(\"Index out of range: \\(i)\")\n        }\n\n        let start = Int(payload[1 + i * 3])\n        let end = Int(payload[2 + i * 3])\n        let value = Int(payload[3 + i * 3])\n\n        let key = decodeString(input, start, end)\n\n        let valueTag = UInt8(value & 7)\n        let valueOffset = Int(value >> 3)\n        return (key, ASTNode(tag: valueTag, payload: payload.advanced(by: valueOffset), input: input).valueReader)\n    }\n\n    public subscript(key: String) -> ValueReader? {\n        let objectLocation = sajson_find_object_key(payload, key, key.lengthOfBytes(using: .utf8), input.baseAddress!)\n        if objectLocation >= count {\n            return nil\n        }\n\n        let element = payload[3 + objectLocation * 3]\n        let elementTag = UInt8(element & 7)\n        let elementOffset = Int(element >> 3)\n        return ASTNode(tag: elementTag, payload: payload.advanced(by: elementOffset), input: input).valueReader\n    }\n\n    /// Returns the object as a dictionary. Should generally be avoided, as it is less efficient than directly reading\n    /// values.\n    public func asDictionary() -> [String: ValueReader] {\n        var result = [String: ValueReader](minimumCapacity: self.count)\n        for i in 0..<self.count {\n            let start = Int(payload[1 + i * 3])\n            let end = Int(payload[2 + i * 3])\n            let value = Int(payload[3 + i * 3])\n\n            let key = decodeString(input, start, end)\n\n            let valueTag = UInt8(value & 7)\n            let valueOffset = Int(value >> 3)\n            result[key] = ASTNode(tag: valueTag, payload: payload.advanced(by: valueOffset), input: input).valueReader\n        }\n        return result\n    }\n\n    // MARK: Sequence\n\n    public struct Iterator: IteratorProtocol {\n        fileprivate init(objectReader: ObjectReader) {\n            self.objectReader = objectReader\n        }\n\n        public mutating func next() -> (String, ValueReader)? {\n            if currentIndex < objectReader.count {\n                let value = objectReader[currentIndex]\n                currentIndex += 1\n                return value\n            } else {\n                return nil\n            }\n        }\n\n        private var currentIndex = 0\n        private let objectReader: ObjectReader\n    }\n    \n    public func makeIterator() -> ObjectReader.Iterator {\n        return Iterator(objectReader: self)\n    }\n\n    // MARK: Private\n\n    private let payload: UnsafePointer<UInt>\n    private let input: UnsafeBufferPointer<UInt8>\n}\n\n// MARK: Value\n\n/// Represents a fully-decoded JSON parse tree.  This API is provided for convenience, but for\n/// optimal performance, consider using `ValueReader` instead.\npublic enum Value {\n    case integer(Int32)\n    case double(Float64)\n    case null\n    case bool(Bool)\n    case string(String)\n    case array([Value])\n    case object([String: Value])\n}\n\n// Internal type that represents a decodable sajson AST node.\nprivate struct ASTNode {\n    // Keep this in sync with sajson::type\n    private struct RawTag {\n        static let integer: UInt8 = 0\n        static let double: UInt8 = 1\n        static let null: UInt8 = 2\n        static let bfalse: UInt8 = 3\n        static let btrue: UInt8 = 4\n        static let string: UInt8 = 5\n        static let array: UInt8 = 6\n        static let object: UInt8 = 7\n    }\n    \n    fileprivate init(tag: UInt8, payload: UnsafePointer<UInt>, input: UnsafeBufferPointer<UInt8>) {\n        self.tag = tag\n        self.payload = payload\n        self.input = input\n    }\n\n    public var valueReader: ValueReader {\n        switch tag {\n        case RawTag.integer:\n            // This syntax to read the bottom bits of a UInt as an Int32 is insane.\n            return payload.withMemoryRebound(to: Int32.self, capacity: 1) { p in\n                return .integer(p[0])\n            }\n        case RawTag.double:\n            if MemoryLayout<Int>.size == MemoryLayout<Int32>.size {\n                let lo = UInt64(payload[0])\n                let hi = UInt64(payload[1])\n                let bitPattern = lo | (hi << 32)\n                return .double(Float64(bitPattern: bitPattern))\n            } else {\n                return .double(Float64(bitPattern: UInt64(payload[0])))\n            }\n        case RawTag.null:\n            return .null\n        case RawTag.bfalse:\n            return .bool(false)\n        case RawTag.btrue:\n            return .bool(true)\n        case RawTag.string:\n            let start = Int(payload[0])\n            let end = Int(payload[1])\n            return .string(decodeString(input, start, end))\n        case RawTag.array:\n            return .array(ArrayReader(payload: payload, input: input))\n        case RawTag.object:\n            return .object(ObjectReader(payload: payload, input: input))\n        default:\n            fatalError(\"Unknown sajson value type - memory corruption detected?\")\n        }\n    }\n\n\n    // MARK: Private\n\n    private let tag: UInt8\n    private let payload: UnsafePointer<UInt>\n    private let input: UnsafeBufferPointer<UInt8>\n}\n\n// Internal function that, as cheaply as possible, converts an in-memory buffer\n// containing UTF-8 into a Swift string.\nprivate func decodeString(_ input: UnsafeBufferPointer<UInt8>, _ start: Int, _ end: Int) -> String {\n    // TODO: are the following two lines a single copy?\n    // Does it validate the correctness of the UTF-8 or can we force it to simply memcpy?\n    let data = Data(bytesNoCopy: UnsafeMutableRawPointer(mutating: input.baseAddress!.advanced(by: start)), count: end - start, deallocator: .none)\n    return String(data: data, encoding: .utf8)!\n}\n\n/// Represents a parsed JSON document and a handle to any referenced memory.\npublic final class Document {\n    internal init(doc: OpaquePointer!, input: Data) {\n        self.doc = doc\n        self.input = input\n\n        let rootTag = sajson_get_root_tag(doc)\n        let rootValuePaylod = sajson_get_root(doc)!\n        let inputPointer = sajson_get_input(doc)!\n        let inputLength = sajson_get_input_length(doc)\n\n        self.rootNode = ASTNode(\n            tag: rootTag,\n            payload: rootValuePaylod,\n            input: UnsafeBufferPointer(start: inputPointer, count: inputLength))\n    }\n    \n    deinit {\n        sajson_free_document(doc)\n    }\n\n    /// Provides access to the root value reader of the JSON document.  Using `ValueReader`\n    /// is faster than `Value` because it avoids the need to construct intermediate Swift\n    /// arrays and dictionaries.\n    ///\n    /// This function is structured as a closure rather than a property to prevent accidentally\n    /// holding onto a `ValueReader` before the `Document` has been deallocated.\n    public func withRootValueReader<T>(_ cb: (ValueReader) -> T) -> T {\n        return cb(rootNode.valueReader)\n    }\n\n    /// Decodes the entire document into a Swift `Value` tree.\n    /// This accessor is convenient, but for optimum performance, use `withRootValueReader` instead.\n    var rootValue: Value {\n        return withRootValueReader { rootReader in\n            return rootReader.value\n        }\n    }\n\n    // MARK: Private\n\n    private let rootNode: ASTNode\n    private let doc: OpaquePointer!\n    private let input: Data // We need to hold onto the memory from the buffer we parsed\n}\n\npublic final class ParseError: Error {\n    internal init(line: Int, column: Int, message: String) {\n        self.line = line\n        self.column = column\n        self.message = message\n    }\n    \n    public let line: Int\n    public let column: Int\n    public let message: String\n}\n\npublic enum AllocationStrategy {\n    /// Allocates one machine word per byte in the input document.  This mode is the fastest.\n    case single\n\n    /// Dynamically grows the AST buffer and parse stack at the cost of being about 10% slower.\n    case dynamic\n}\n\n/// Parses an input document given a buffer of JSON data.  For efficiency, this function\n/// mutates the given data.  Use `parse(allocationStrategy:input:)` if you intend to use\n/// the passed buffer again.\n///\n/// Throws `ParseError` on failure.\npublic func parse(allocationStrategy: AllocationStrategy, mutating: inout Data) throws -> Document {\n    let inputLength = mutating.count\n\n    let dptr: OpaquePointer! = mutating.withUnsafeMutableBytes { (ptr: UnsafeMutablePointer<Int8>) in\n        switch allocationStrategy {\n        case .single:\n            return sajson_parse_single_allocation(ptr, inputLength)\n        case .dynamic:\n            return sajson_parse_dynamic_allocation(ptr, inputLength)\n        }\n    }\n\n    if dptr == nil {\n        fatalError(\"Out of memory: failed to allocate document structure\")\n    }\n\n    if sajson_has_error(dptr) != 0 {\n        throw ParseError(\n            line: sajson_get_error_line(dptr),\n            column: sajson_get_error_column(dptr),\n            message: String(cString: sajson_get_error_message(dptr)))\n    }\n\n    return Document(doc: dptr, input: mutating)\n}\n\n/// Parses an input document given a buffer of JSON data.\n///\n/// Throws `ParseError` on failure.\npublic func parse(allocationStrategy: AllocationStrategy, input: Data) throws -> Document {\n    var copy = input\n    return try parse(allocationStrategy: allocationStrategy, mutating: &copy)\n}\n\n/// Parses an input document given a String containing JSON.  If you have binary data, it's\n/// more efficient to use `parse(allocationStrategy:input:)` or `parse(allocationStrategy:mutating:)`\n/// instead.\n///\n/// Throws `ParseError` on failure.\npublic func parse(allocationStrategy: AllocationStrategy, input: String) throws -> Document {\n    var copy = input.data(using: .utf8)!\n    return try parse(allocationStrategy: allocationStrategy, mutating: &copy)\n}\n"
  },
  {
    "path": "swift/sajson/sajson_swift.h",
    "content": "#pragma once\n\n#include \"sajson-ffi.h\"\n"
  },
  {
    "path": "swift/sajson.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t8E3348621EC3B007006F6069 /* sajson_swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 63DA0EBD1EBD6604003D404F /* sajson_swift.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t8E3348631EC3B101006F6069 /* sajson_swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 63DA0EBD1EBD6604003D404F /* sajson_swift.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t8EE355D51EC39F8E00885763 /* sajson_swift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EE355CC1EC39F8E00885763 /* sajson_swift.framework */; };\n\t\t8EE3560D1EC39FEB00885763 /* sajson_swift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EE356041EC39FEA00885763 /* sajson_swift.framework */; };\n\t\t8EE3561B1EC3A85F00885763 /* sajson-ffi.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E72C8461EC0F31A00EEE1FC /* sajson-ffi.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t8EE3561C1EC3A86900885763 /* sajson.h in Headers */ = {isa = PBXBuildFile; fileRef = 63F80E5C1EC03C2800A5A902 /* sajson.h */; settings = {ATTRIBUTES = (Private, ); }; };\n\t\t8EE3561D1EC3A87700885763 /* sajson-ffi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63DA0EC21EBD66C9003D404F /* sajson-ffi.cpp */; };\n\t\t8EE3561E1EC3A87700885763 /* sajson.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63DA0EBB1EBD65FB003D404F /* sajson.swift */; };\n\t\t8EE3561F1EC3A88600885763 /* sajson.h in Headers */ = {isa = PBXBuildFile; fileRef = 63F80E5C1EC03C2800A5A902 /* sajson.h */; settings = {ATTRIBUTES = (Private, ); }; };\n\t\t8EE356201EC3A88600885763 /* sajson-ffi.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E72C8461EC0F31A00EEE1FC /* sajson-ffi.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t8EE356211EC3A8AD00885763 /* sajson-ffi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63DA0EC21EBD66C9003D404F /* sajson-ffi.cpp */; };\n\t\t8EE356221EC3A8AD00885763 /* sajson.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63DA0EBB1EBD65FB003D404F /* sajson.swift */; };\n\t\t8EE356231EC3A8E500885763 /* sajsonTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 638FA3D01EBD6575002CDC45 /* sajsonTests.swift */; };\n\t\t8EE356241EC3A8EC00885763 /* sajsonTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 638FA3D01EBD6575002CDC45 /* sajsonTests.swift */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t8EE355D61EC39F8E00885763 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 638FA3B91EBD6574002CDC45 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 8EE355CB1EC39F8E00885763;\n\t\t\tremoteInfo = \"sajson-iOS\";\n\t\t};\n\t\t8EE3560E1EC39FEB00885763 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 638FA3B91EBD6574002CDC45 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 8EE356031EC39FEA00885763;\n\t\t\tremoteInfo = \"sajson-macOS\";\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t638FA3C61EBD6575002CDC45 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t638FA3D01EBD6575002CDC45 /* sajsonTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = sajsonTests.swift; sourceTree = \"<group>\"; };\n\t\t638FA3D21EBD6575002CDC45 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t63DA0EBB1EBD65FB003D404F /* sajson.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = sajson.swift; sourceTree = \"<group>\"; };\n\t\t63DA0EBD1EBD6604003D404F /* sajson_swift.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sajson_swift.h; sourceTree = \"<group>\"; };\n\t\t63DA0EC21EBD66C9003D404F /* sajson-ffi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = \"sajson-ffi.cpp\"; sourceTree = \"<group>\"; };\n\t\t63F80E5C1EC03C2800A5A902 /* sajson.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.h; fileEncoding = 4; name = sajson.h; path = ../include/sajson.h; sourceTree = SOURCE_ROOT; };\n\t\t8E72C8461EC0F31A00EEE1FC /* sajson-ffi.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.h; fileEncoding = 4; name = \"sajson-ffi.h\"; path = \"sajson-swift/sajson-ffi.h\"; sourceTree = \"<group>\"; };\n\t\t8EE355CC1EC39F8E00885763 /* sajson_swift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = sajson_swift.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t8EE355D41EC39F8E00885763 /* sajson-iOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = \"sajson-iOSTests.xctest\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t8EE356041EC39FEA00885763 /* sajson_swift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = sajson_swift.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t8EE3560C1EC39FEB00885763 /* sajson-macOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = \"sajson-macOSTests.xctest\"; sourceTree = BUILT_PRODUCTS_DIR; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t8EE355C81EC39F8E00885763 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t8EE355D11EC39F8E00885763 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t8EE355D51EC39F8E00885763 /* sajson_swift.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t8EE356001EC39FEA00885763 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t8EE356091EC39FEB00885763 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t8EE3560D1EC39FEB00885763 /* sajson_swift.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t638FA3B81EBD6574002CDC45 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t63DA0EBF1EBD6661003D404F /* sajson */,\n\t\t\t\t638FA3C41EBD6575002CDC45 /* sajson-swift */,\n\t\t\t\t638FA3CF1EBD6575002CDC45 /* sajsonTests */,\n\t\t\t\t638FA3C31EBD6575002CDC45 /* Products */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t638FA3C31EBD6575002CDC45 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t8EE355CC1EC39F8E00885763 /* sajson_swift.framework */,\n\t\t\t\t8EE355D41EC39F8E00885763 /* sajson-iOSTests.xctest */,\n\t\t\t\t8EE356041EC39FEA00885763 /* sajson_swift.framework */,\n\t\t\t\t8EE3560C1EC39FEB00885763 /* sajson-macOSTests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t638FA3C41EBD6575002CDC45 /* sajson-swift */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t63DA0EC21EBD66C9003D404F /* sajson-ffi.cpp */,\n\t\t\t\t8E72C8461EC0F31A00EEE1FC /* sajson-ffi.h */,\n\t\t\t\t63DA0EBD1EBD6604003D404F /* sajson_swift.h */,\n\t\t\t\t63DA0EBB1EBD65FB003D404F /* sajson.swift */,\n\t\t\t\t638FA3C61EBD6575002CDC45 /* Info.plist */,\n\t\t\t);\n\t\t\tname = \"sajson-swift\";\n\t\t\tpath = sajson;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t638FA3CF1EBD6575002CDC45 /* sajsonTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t638FA3D01EBD6575002CDC45 /* sajsonTests.swift */,\n\t\t\t\t638FA3D21EBD6575002CDC45 /* Info.plist */,\n\t\t\t);\n\t\t\tpath = sajsonTests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t63DA0EBF1EBD6661003D404F /* sajson */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t63F80E5C1EC03C2800A5A902 /* sajson.h */,\n\t\t\t);\n\t\t\tname = sajson;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXHeadersBuildPhase section */\n\t\t8EE355C91EC39F8E00885763 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t8EE3561B1EC3A85F00885763 /* sajson-ffi.h in Headers */,\n\t\t\t\t8E3348621EC3B007006F6069 /* sajson_swift.h in Headers */,\n\t\t\t\t8EE3561C1EC3A86900885763 /* sajson.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t8EE356011EC39FEA00885763 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t8EE356201EC3A88600885763 /* sajson-ffi.h in Headers */,\n\t\t\t\t8E3348631EC3B101006F6069 /* sajson_swift.h in Headers */,\n\t\t\t\t8EE3561F1EC3A88600885763 /* sajson.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXHeadersBuildPhase section */\n\n/* Begin PBXNativeTarget section */\n\t\t8EE355CB1EC39F8E00885763 /* sajson_iOS */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 8EE355E11EC39F8E00885763 /* Build configuration list for PBXNativeTarget \"sajson_iOS\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t8EE355C71EC39F8E00885763 /* Sources */,\n\t\t\t\t8EE355C81EC39F8E00885763 /* Frameworks */,\n\t\t\t\t8EE355C91EC39F8E00885763 /* Headers */,\n\t\t\t\t8EE355CA1EC39F8E00885763 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = sajson_iOS;\n\t\t\tproductName = \"sajson-iOS\";\n\t\t\tproductReference = 8EE355CC1EC39F8E00885763 /* sajson_swift.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t8EE355D31EC39F8E00885763 /* sajson-iOSTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 8EE355E21EC39F8E00885763 /* Build configuration list for PBXNativeTarget \"sajson-iOSTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t8EE355D01EC39F8E00885763 /* Sources */,\n\t\t\t\t8EE355D11EC39F8E00885763 /* Frameworks */,\n\t\t\t\t8EE355D21EC39F8E00885763 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t8EE355D71EC39F8E00885763 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"sajson-iOSTests\";\n\t\t\tproductName = \"sajson-iOSTests\";\n\t\t\tproductReference = 8EE355D41EC39F8E00885763 /* sajson-iOSTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n\t\t8EE356031EC39FEA00885763 /* sajson-macOS */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 8EE356151EC39FEB00885763 /* Build configuration list for PBXNativeTarget \"sajson-macOS\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t8EE355FF1EC39FEA00885763 /* Sources */,\n\t\t\t\t8EE356001EC39FEA00885763 /* Frameworks */,\n\t\t\t\t8EE356011EC39FEA00885763 /* Headers */,\n\t\t\t\t8EE356021EC39FEA00885763 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = \"sajson-macOS\";\n\t\t\tproductName = \"sajson-macOS\";\n\t\t\tproductReference = 8EE356041EC39FEA00885763 /* sajson_swift.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t8EE3560B1EC39FEB00885763 /* sajson-macOSTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 8EE356181EC39FEB00885763 /* Build configuration list for PBXNativeTarget \"sajson-macOSTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t8EE356081EC39FEB00885763 /* Sources */,\n\t\t\t\t8EE356091EC39FEB00885763 /* Frameworks */,\n\t\t\t\t8EE3560A1EC39FEB00885763 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t8EE3560F1EC39FEB00885763 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"sajson-macOSTests\";\n\t\t\tproductName = \"sajson-macOSTests\";\n\t\t\tproductReference = 8EE3560C1EC39FEB00885763 /* sajson-macOSTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t638FA3B91EBD6574002CDC45 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastSwiftUpdateCheck = 0830;\n\t\t\t\tLastUpgradeCheck = 1010;\n\t\t\t\tORGANIZATIONNAME = \"Chad Austin\";\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t8EE355CB1EC39F8E00885763 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 8.3.2;\n\t\t\t\t\t\tProvisioningStyle = Automatic;\n\t\t\t\t\t};\n\t\t\t\t\t8EE355D31EC39F8E00885763 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 8.3.2;\n\t\t\t\t\t\tProvisioningStyle = Automatic;\n\t\t\t\t\t};\n\t\t\t\t\t8EE356031EC39FEA00885763 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 8.3.2;\n\t\t\t\t\t\tLastSwiftMigration = 1010;\n\t\t\t\t\t\tProvisioningStyle = Automatic;\n\t\t\t\t\t};\n\t\t\t\t\t8EE3560B1EC39FEB00885763 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 8.3.2;\n\t\t\t\t\t\tLastSwiftMigration = 1010;\n\t\t\t\t\t\tProvisioningStyle = Automatic;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 638FA3BC1EBD6574002CDC45 /* Build configuration list for PBXProject \"sajson\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = English;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t);\n\t\t\tmainGroup = 638FA3B81EBD6574002CDC45;\n\t\t\tproductRefGroup = 638FA3C31EBD6575002CDC45 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t8EE355CB1EC39F8E00885763 /* sajson_iOS */,\n\t\t\t\t8EE355D31EC39F8E00885763 /* sajson-iOSTests */,\n\t\t\t\t8EE356031EC39FEA00885763 /* sajson-macOS */,\n\t\t\t\t8EE3560B1EC39FEB00885763 /* sajson-macOSTests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t8EE355CA1EC39F8E00885763 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t8EE355D21EC39F8E00885763 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t8EE356021EC39FEA00885763 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t8EE3560A1EC39FEB00885763 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t8EE355C71EC39F8E00885763 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t8EE3561D1EC3A87700885763 /* sajson-ffi.cpp in Sources */,\n\t\t\t\t8EE3561E1EC3A87700885763 /* sajson.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t8EE355D01EC39F8E00885763 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t8EE356231EC3A8E500885763 /* sajsonTests.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t8EE355FF1EC39FEA00885763 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t8EE356211EC3A8AD00885763 /* sajson-ffi.cpp in Sources */,\n\t\t\t\t8EE356221EC3A8AD00885763 /* sajson.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t8EE356081EC39FEB00885763 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t8EE356241EC3A8EC00885763 /* sajsonTests.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\t8EE355D71EC39F8E00885763 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 8EE355CB1EC39F8E00885763 /* sajson_iOS */;\n\t\t\ttargetProxy = 8EE355D61EC39F8E00885763 /* PBXContainerItemProxy */;\n\t\t};\n\t\t8EE3560F1EC39FEB00885763 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 8EE356031EC39FEA00885763 /* sajson-macOS */;\n\t\t\ttargetProxy = 8EE3560E1EC39FEB00885763 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin XCBuildConfiguration section */\n\t\t638FA3D41EBD6575002CDC45 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 10.3;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t638FA3D51EBD6575002CDC45 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 10.3;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Owholemodule\";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t8EE355DD1EC39F8E00885763 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tAPPLICATION_EXTENSION_API_ONLY = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tINFOPLIST_FILE = sajson/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"me.chadaustin.sajson-iOS\";\n\t\t\t\tPRODUCT_NAME = sajson_swift;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t8EE355DE1EC39F8E00885763 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tAPPLICATION_EXTENSION_API_ONLY = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tINFOPLIST_FILE = sajson/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"me.chadaustin.sajson-iOS\";\n\t\t\t\tPRODUCT_NAME = sajson_swift;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t8EE355DF1EC39F8E00885763 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;\n\t\t\t\tINFOPLIST_FILE = sajsonTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"me.chadaustin.sajson-iOSTests\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t8EE355E01EC39F8E00885763 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;\n\t\t\t\tINFOPLIST_FILE = sajsonTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"me.chadaustin.sajson-iOSTests\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t8EE356161EC39FEB00885763 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tAPPLICATION_EXTENSION_API_ONLY = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tFRAMEWORK_VERSION = A;\n\t\t\t\tINFOPLIST_FILE = sajson/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/../Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.11;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"me.chadaustin.sajson-macOS\";\n\t\t\t\tPRODUCT_NAME = sajson_swift;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_SWIFT3_OBJC_INFERENCE = Default;\n\t\t\t\tSWIFT_VERSION = 4.2;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t8EE356171EC39FEB00885763 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tAPPLICATION_EXTENSION_API_ONLY = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tFRAMEWORK_VERSION = A;\n\t\t\t\tINFOPLIST_FILE = sajson/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/../Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.11;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"me.chadaustin.sajson-macOS\";\n\t\t\t\tPRODUCT_NAME = sajson_swift;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_SWIFT3_OBJC_INFERENCE = Default;\n\t\t\t\tSWIFT_VERSION = 4.2;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t8EE356191EC39FEB00885763 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tINFOPLIST_FILE = sajsonTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks\";\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.12;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"me.chadaustin.sajson-macOSTests\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSWIFT_SWIFT3_OBJC_INFERENCE = Default;\n\t\t\t\tSWIFT_VERSION = 4.2;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t8EE3561A1EC39FEB00885763 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tINFOPLIST_FILE = sajsonTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks\";\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.12;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"me.chadaustin.sajson-macOSTests\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSWIFT_SWIFT3_OBJC_INFERENCE = Default;\n\t\t\t\tSWIFT_VERSION = 4.2;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t638FA3BC1EBD6574002CDC45 /* Build configuration list for PBXProject \"sajson\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t638FA3D41EBD6575002CDC45 /* Debug */,\n\t\t\t\t638FA3D51EBD6575002CDC45 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t8EE355E11EC39F8E00885763 /* Build configuration list for PBXNativeTarget \"sajson_iOS\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t8EE355DD1EC39F8E00885763 /* Debug */,\n\t\t\t\t8EE355DE1EC39F8E00885763 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t8EE355E21EC39F8E00885763 /* Build configuration list for PBXNativeTarget \"sajson-iOSTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t8EE355DF1EC39F8E00885763 /* Debug */,\n\t\t\t\t8EE355E01EC39F8E00885763 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t8EE356151EC39FEB00885763 /* Build configuration list for PBXNativeTarget \"sajson-macOS\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t8EE356161EC39FEB00885763 /* Debug */,\n\t\t\t\t8EE356171EC39FEB00885763 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t8EE356181EC39FEB00885763 /* Build configuration list for PBXNativeTarget \"sajson-macOSTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t8EE356191EC39FEB00885763 /* Debug */,\n\t\t\t\t8EE3561A1EC39FEB00885763 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = 638FA3B91EBD6574002CDC45 /* Project object */;\n}\n"
  },
  {
    "path": "swift/sajson.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:sajson.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "swift/sajson.xcodeproj/xcshareddata/xcschemes/sajson-macOS.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"1010\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"8EE356031EC39FEA00885763\"\n               BuildableName = \"sajson_swift.framework\"\n               BlueprintName = \"sajson-macOS\"\n               ReferencedContainer = \"container:sajson.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Release\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      enableAddressSanitizer = \"YES\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n         <TestableReference\n            skipped = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"8EE3560B1EC39FEB00885763\"\n               BuildableName = \"sajson-macOSTests.xctest\"\n               BlueprintName = \"sajson-macOSTests\"\n               ReferencedContainer = \"container:sajson.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n      </Testables>\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"8EE356031EC39FEA00885763\"\n            BuildableName = \"sajson_swift.framework\"\n            BlueprintName = \"sajson-macOS\"\n            ReferencedContainer = \"container:sajson.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"8EE356031EC39FEA00885763\"\n            BuildableName = \"sajson_swift.framework\"\n            BlueprintName = \"sajson-macOS\"\n            ReferencedContainer = \"container:sajson.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"8EE356031EC39FEA00885763\"\n            BuildableName = \"sajson_swift.framework\"\n            BlueprintName = \"sajson-macOS\"\n            ReferencedContainer = \"container:sajson.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "swift/sajsonTests/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>BNDL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "swift/sajsonTests/sajsonTests.swift",
    "content": "import Foundation\nimport XCTest\nimport sajson_swift\n\nclass sajsonTests: XCTestCase {\n    func test_empty_array() {\n        _ = try! parse(allocationStrategy: .single, input: \"[]\")\n    }\n\n    func test_zero_embedded_strings() {\n        let doc = try! parse(allocationStrategy: .single, input: \"[\\\"a\\\\u0000b\\\"]\")\n        doc.withRootValueReader { docValue in\n            guard case .array(let array) = docValue else { XCTFail(); return }\n            XCTAssertEqual(1, array.count)\n            guard case .string(let str) = array[0] else { XCTFail(); return }\n            XCTAssertEqual(\"a\\0b\", str)\n        }\n    }\n\n    func test_array() {\n        let doc = try! parse(allocationStrategy: .single, input: \"[10, \\\"Hello\\\"]\")\n        doc.withRootValueReader { docValue in\n            guard case .array(let array) = docValue else { XCTFail(); return }\n            XCTAssert(array.count == 2)\n            guard case .integer(10) = array[0] else { XCTFail(); return }\n\n            guard case .string(\"Hello\") = array[1] else { XCTFail(); return }\n        }\n    }\n\n    func test_object() {\n        let doc = try! parse(allocationStrategy: .single, input: \"{\\\"hello\\\": \\\"world\\\", \\\"hello2\\\": null}\")\n        doc.withRootValueReader { docValue in\n            guard case .object(let objectReader) = docValue else { XCTFail(); return }\n            XCTAssert(objectReader.count == 2)\n            guard case .some(.string(\"world\")) = objectReader[\"hello\"] else { XCTFail(); return }\n\n            guard case .some(.null) = objectReader[\"hello2\"] else { XCTFail(); return }\n\n            // Accessing a non-existent key will return none.\n            guard case .none = objectReader[\"hello3\"] else { XCTFail(); return }\n        }\n    }\n\n    func test_mutating_parse_changes_input() {\n        var data = \"[\\\"\\\\n\\\"]\".data(using: .utf8)!\n        let _ = try! parse(allocationStrategy: .single, mutating: &data)\n        XCTAssertEqual(10, data[2])\n    }\n\n    // MARK: Benchmarks\n\n    func test_large_json_benchmark_parse_only() {\n        let largeJsonData = createLargeTestJsonData(objectCount: 1000)\n\n        measure {\n            _ = try! parse(allocationStrategy: .single, input: largeJsonData)\n        }\n    }\n\n\n    func test_large_json_benchmark_all() {\n        let largeJsonData = createLargeTestJsonData(objectCount: 1000)\n\n        measure {\n            let doc = try! parse(allocationStrategy: .single, input: largeJsonData)\n            doc.withRootValueReader { swiftValue in\n\n                //XCTAssert(swiftValue.array?[0].object?[\"0\"]?.string != nil)\n\n                guard case .array(let array) = swiftValue else {\n                    preconditionFailure()\n                }\n\n                // Verify that something was actually deserialized.\n                XCTAssert(array.count == 1000)\n            }\n        }\n    }\n\n    func test_floats() {\n        let doc = try! parse(allocationStrategy: .single, input: \"{\\\"start\\\": 12.948, \\\"end\\\": 42.1234}\")\n        doc.withRootValueReader { docValue in\n            guard case .object(let objectReader) = docValue else { XCTFail(); return }\n            XCTAssert(objectReader.count == 2)\n            guard case .some(.double(let start)) = objectReader[\"start\"] else { XCTFail(); return }\n            guard case .some(.double(let end)) = objectReader[\"end\"] else { XCTFail(); return }\n\n            XCTAssertEqual(12.948, start, accuracy: 0.001)\n            XCTAssertEqual(42.1234, end, accuracy: 0.001)\n        }\n    }\n\n    // MARK: Helpers\n\n    func createLargeTestJsonData(objectCount: Int) -> Data {\n        var largeArray = [[String: Any]]()\n        for _ in 0..<objectCount {\n            largeArray.append(createTestJsonObject())\n        }\n        return try! JSONSerialization.data(withJSONObject: largeArray)\n    }\n\n    func createTestJsonObject() -> [String: Any] {\n        var jsonDict =  [String: Any]()\n        for i in 0..<100 {\n            jsonDict[\"\\(i)\"] = randomString()\n        }\n        for i in 100..<200 {\n            jsonDict[\"\\(i)\"] = randomInt()\n        }\n        return jsonDict\n    }\n\n    private func randomString() -> String {\n        return UUID().uuidString\n    }\n\n    private func randomInt() -> Int32 {\n        return Int32(arc4random_uniform(UInt32(Int32.max)))\n    }\n}\n"
  },
  {
    "path": "testdata/apache_builds.json",
    "content": "{\n  \"assignedLabels\" : [\n    {\n      \n    }\n  ],\n  \"mode\" : \"EXCLUSIVE\",\n  \"nodeDescription\" : \"the master Jenkins node\",\n  \"nodeName\" : \"\",\n  \"numExecutors\" : 0,\n  \"description\" : \"<a href=\\\"http://www.apache.org/\\\"><img src=\\\"https://www.apache.org/images/asf_logo_wide.gif\\\"></img></a>\\r\\n<p>\\r\\nThis is a public build and test server for <a href=\\\"http://projects.apache.org/\\\">projects</a> of the\\r\\n<a href=\\\"http://www.apache.org/\\\">Apache Software Foundation</a>. All times on this server are UTC.\\r\\n</p>\\r\\n<p>\\r\\nSee the <a href=\\\"http://wiki.apache.org/general/Hudson\\\">Jenkins wiki page</a> for more information\\r\\nabout this service.\\r\\n</p>\",\n  \"jobs\" : [\n    {\n      \"name\" : \"Abdera-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Abdera-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Abdera2-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Abdera2-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Accumulo-1.3.x\",\n      \"url\" : \"https://builds.apache.org/job/Accumulo-1.3.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Accumulo-1.4.x\",\n      \"url\" : \"https://builds.apache.org/job/Accumulo-1.4.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Accumulo-Trunk\",\n      \"url\" : \"https://builds.apache.org/job/Accumulo-Trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ACE-trunk\",\n      \"url\" : \"https://builds.apache.org/job/ACE-trunk/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"ActiveMQ\",\n      \"url\" : \"https://builds.apache.org/job/ActiveMQ/\",\n      \"color\" : \"aborted_anime\"\n    },\n    {\n      \"name\" : \"ActiveMQ Protocol Buffer\",\n      \"url\" : \"https://builds.apache.org/job/ActiveMQ%20Protocol%20Buffer/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"ActiveMQ-Apollo\",\n      \"url\" : \"https://builds.apache.org/job/ActiveMQ-Apollo/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"ActiveMQ-Apollo-Deploy\",\n      \"url\" : \"https://builds.apache.org/job/ActiveMQ-Apollo-Deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ActiveMQ-Java7\",\n      \"url\" : \"https://builds.apache.org/job/ActiveMQ-Java7/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"ActiveMQ-SysTest-Trunk\",\n      \"url\" : \"https://builds.apache.org/job/ActiveMQ-SysTest-Trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"ActiveMQ-Trunk-Deploy\",\n      \"url\" : \"https://builds.apache.org/job/ActiveMQ-Trunk-Deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Amber\",\n      \"url\" : \"https://builds.apache.org/job/Amber/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Amber-OAuth-2.0\",\n      \"url\" : \"https://builds.apache.org/job/Amber-OAuth-2.0/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Amber-OAuth-2.0-windows\",\n      \"url\" : \"https://builds.apache.org/job/Amber-OAuth-2.0-windows/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Ant-Build-Matrix\",\n      \"url\" : \"https://builds.apache.org/job/Ant-Build-Matrix/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"Ant_BuildFromPOMs\",\n      \"url\" : \"https://builds.apache.org/job/Ant_BuildFromPOMs/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Ant_Nightly\",\n      \"url\" : \"https://builds.apache.org/job/Ant_Nightly/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Any23-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Any23-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Apache Airavata\",\n      \"url\" : \"https://builds.apache.org/job/Apache%20Airavata/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Apache Wicket 1.4.x\",\n      \"url\" : \"https://builds.apache.org/job/Apache%20Wicket%201.4.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Apache Wicket 1.5.x\",\n      \"url\" : \"https://builds.apache.org/job/Apache%20Wicket%201.5.x/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Apache Wicket 6.0.x\",\n      \"url\" : \"https://builds.apache.org/job/Apache%20Wicket%206.0.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"apache-deltacloud-core\",\n      \"url\" : \"https://builds.apache.org/job/apache-deltacloud-core/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"archetypes\",\n      \"url\" : \"https://builds.apache.org/job/archetypes/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"archiva-1.3.x\",\n      \"url\" : \"https://builds.apache.org/job/archiva-1.3.x/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"archiva-all-maven-3.x-jdk-1.6\",\n      \"url\" : \"https://builds.apache.org/job/archiva-all-maven-3.x-jdk-1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"archiva-all-maven-3.x-jdk-1.6-empty-repo\",\n      \"url\" : \"https://builds.apache.org/job/archiva-all-maven-3.x-jdk-1.6-empty-repo/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"archiva-all-maven-3.x-jdk-1.6-web-it-js\",\n      \"url\" : \"https://builds.apache.org/job/archiva-all-maven-3.x-jdk-1.6-web-it-js/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"archiva-all-maven-3.x-jdk-1.6-windows\",\n      \"url\" : \"https://builds.apache.org/job/archiva-all-maven-3.x-jdk-1.6-windows/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"archiva-all-maven-3.x-jdk-1.6-with-it-macos\",\n      \"url\" : \"https://builds.apache.org/job/archiva-all-maven-3.x-jdk-1.6-with-it-macos/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"archiva-all-maven-3.x-jdk-1.6-with-web-it-js-windows\",\n      \"url\" : \"https://builds.apache.org/job/archiva-all-maven-3.x-jdk-1.6-with-web-it-js-windows/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"archiva-all-maven-3.x-jdk-1.7\",\n      \"url\" : \"https://builds.apache.org/job/archiva-all-maven-3.x-jdk-1.7/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"archiva-all-maven-3.x-jdk-1.7-web-it-js\",\n      \"url\" : \"https://builds.apache.org/job/archiva-all-maven-3.x-jdk-1.7-web-it-js/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"archiva-parent\",\n      \"url\" : \"https://builds.apache.org/job/archiva-parent/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Aries\",\n      \"url\" : \"https://builds.apache.org/job/Aries/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Aries - Deploy\",\n      \"url\" : \"https://builds.apache.org/job/Aries%20-%20Deploy/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"AriesWithSnapshotDependencies\",\n      \"url\" : \"https://builds.apache.org/job/AriesWithSnapshotDependencies/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"ASF Parent Pom\",\n      \"url\" : \"https://builds.apache.org/job/ASF%20Parent%20Pom/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"AsyncWeb\",\n      \"url\" : \"https://builds.apache.org/job/AsyncWeb/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"AVRO-python\",\n      \"url\" : \"https://builds.apache.org/job/AVRO-python/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"AvroJava\",\n      \"url\" : \"https://builds.apache.org/job/AvroJava/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"AWF\",\n      \"url\" : \"https://builds.apache.org/job/AWF/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"axis-trunk\",\n      \"url\" : \"https://builds.apache.org/job/axis-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Axis2\",\n      \"url\" : \"https://builds.apache.org/job/Axis2/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"axis2-1.5\",\n      \"url\" : \"https://builds.apache.org/job/axis2-1.5/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"axis2-1.6\",\n      \"url\" : \"https://builds.apache.org/job/axis2-1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"axis2-transports-trunk\",\n      \"url\" : \"https://builds.apache.org/job/axis2-transports-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Axis2-trunk-java-1.6\",\n      \"url\" : \"https://builds.apache.org/job/Axis2-trunk-java-1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Bigtop-tickle-slaves\",\n      \"url\" : \"https://builds.apache.org/job/Bigtop-tickle-slaves/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Bigtop-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Bigtop-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Bigtop-trunk-iTest\",\n      \"url\" : \"https://builds.apache.org/job/Bigtop-trunk-iTest/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Bigtop-trunk-test-execution\",\n      \"url\" : \"https://builds.apache.org/job/Bigtop-trunk-test-execution/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Bigtop-trunk-testartifacts\",\n      \"url\" : \"https://builds.apache.org/job/Bigtop-trunk-testartifacts/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Blur-master-jdk6\",\n      \"url\" : \"https://builds.apache.org/job/Blur-master-jdk6/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"Blur-master-jdk7\",\n      \"url\" : \"https://builds.apache.org/job/Blur-master-jdk7/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"bookkeeper-debug\",\n      \"url\" : \"https://builds.apache.org/job/bookkeeper-debug/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"bookkeeper-trunk\",\n      \"url\" : \"https://builds.apache.org/job/bookkeeper-trunk/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"bookkeeper-trunk-find-patches-available\",\n      \"url\" : \"https://builds.apache.org/job/bookkeeper-trunk-find-patches-available/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"bookkeeper-trunk-precommit-build\",\n      \"url\" : \"https://builds.apache.org/job/bookkeeper-trunk-precommit-build/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"bookkeeper-trunk2\",\n      \"url\" : \"https://builds.apache.org/job/bookkeeper-trunk2/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Buildr-ci-build-jruby-win32\",\n      \"url\" : \"https://builds.apache.org/job/Buildr-ci-build-jruby-win32/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Buildr-ci-matrix\",\n      \"url\" : \"https://builds.apache.org/job/Buildr-ci-matrix/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Buildr-ci-windows-matrix\",\n      \"url\" : \"https://builds.apache.org/job/Buildr-ci-windows-matrix/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Buildr-metrics-build\",\n      \"url\" : \"https://builds.apache.org/job/Buildr-metrics-build/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Buildr-omnibus-build\",\n      \"url\" : \"https://builds.apache.org/job/Buildr-omnibus-build/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Buildr-website-build\",\n      \"url\" : \"https://builds.apache.org/job/Buildr-website-build/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"BVal-trunk\",\n      \"url\" : \"https://builds.apache.org/job/BVal-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"BVal-trunk-linux-tck-deploy\",\n      \"url\" : \"https://builds.apache.org/job/BVal-trunk-linux-tck-deploy/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Cactus\",\n      \"url\" : \"https://builds.apache.org/job/Cactus/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Camel-2.10.x\",\n      \"url\" : \"https://builds.apache.org/job/Camel-2.10.x/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Camel-2.7.x\",\n      \"url\" : \"https://builds.apache.org/job/Camel-2.7.x/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Camel-2.8.x\",\n      \"url\" : \"https://builds.apache.org/job/Camel-2.8.x/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Camel-2.9.x\",\n      \"url\" : \"https://builds.apache.org/job/Camel-2.9.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Camel.2.10.x.fulltest\",\n      \"url\" : \"https://builds.apache.org/job/Camel.2.10.x.fulltest/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Camel.2.7.x.fulltest\",\n      \"url\" : \"https://builds.apache.org/job/Camel.2.7.x.fulltest/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Camel.2.8.x.fulltest\",\n      \"url\" : \"https://builds.apache.org/job/Camel.2.8.x.fulltest/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Camel.2.9.x.fulltest\",\n      \"url\" : \"https://builds.apache.org/job/Camel.2.9.x.fulltest/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Camel.trunk.fulltest\",\n      \"url\" : \"https://builds.apache.org/job/Camel.trunk.fulltest/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"Camel.trunk.fulltest.java7\",\n      \"url\" : \"https://builds.apache.org/job/Camel.trunk.fulltest.java7/\",\n      \"color\" : \"yellow_anime\"\n    },\n    {\n      \"name\" : \"Camel.trunk.fulltest.spring3.0\",\n      \"url\" : \"https://builds.apache.org/job/Camel.trunk.fulltest.spring3.0/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Camel.trunk.fulltest.windows\",\n      \"url\" : \"https://builds.apache.org/job/Camel.trunk.fulltest.windows/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Camel.trunk.notest\",\n      \"url\" : \"https://builds.apache.org/job/Camel.trunk.notest/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Cayenne-30\",\n      \"url\" : \"https://builds.apache.org/job/Cayenne-30/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Cayenne-31\",\n      \"url\" : \"https://builds.apache.org/job/Cayenne-31/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Cayenne-doc\",\n      \"url\" : \"https://builds.apache.org/job/Cayenne-doc/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Cayenne-doc30\",\n      \"url\" : \"https://builds.apache.org/job/Cayenne-doc30/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Cayenne-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Cayenne-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"central-indexer-test\",\n      \"url\" : \"https://builds.apache.org/job/central-indexer-test/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Chemistry - DotCMIS\",\n      \"url\" : \"https://builds.apache.org/job/Chemistry%20-%20DotCMIS/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Chemistry - OpenCMIS - install\",\n      \"url\" : \"https://builds.apache.org/job/Chemistry%20-%20OpenCMIS%20-%20install/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Chemistry - OpenCMIS - javadoc\",\n      \"url\" : \"https://builds.apache.org/job/Chemistry%20-%20OpenCMIS%20-%20javadoc/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Chemistry - OpenCMIS - Release Profile\",\n      \"url\" : \"https://builds.apache.org/job/Chemistry%20-%20OpenCMIS%20-%20Release%20Profile/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Chemistry - OpenCMIS - Workbench\",\n      \"url\" : \"https://builds.apache.org/job/Chemistry%20-%20OpenCMIS%20-%20Workbench/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Chemistry-Phyton-cmislib-doc\",\n      \"url\" : \"https://builds.apache.org/job/Chemistry-Phyton-cmislib-doc/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Chukwa-release\",\n      \"url\" : \"https://builds.apache.org/job/Chukwa-release/\",\n      \"color\" : \"grey\"\n    },\n    {\n      \"name\" : \"Chukwa-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Chukwa-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"clerezza-scala-1.6\",\n      \"url\" : \"https://builds.apache.org/job/clerezza-scala-1.6/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"clerezza-site\",\n      \"url\" : \"https://builds.apache.org/job/clerezza-site/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"clerezza-trunk-1.6\",\n      \"url\" : \"https://builds.apache.org/job/clerezza-trunk-1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Click\",\n      \"url\" : \"https://builds.apache.org/job/Click/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"cloudstack-api_refactor\",\n      \"url\" : \"https://builds.apache.org/job/cloudstack-api_refactor/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"cloudstack-docs-master-adminguide\",\n      \"url\" : \"https://builds.apache.org/job/cloudstack-docs-master-adminguide/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"cloudstack-javelin\",\n      \"url\" : \"https://builds.apache.org/job/cloudstack-javelin/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"cloudstack-marvin\",\n      \"url\" : \"https://builds.apache.org/job/cloudstack-marvin/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"cloudstack-master-maven\",\n      \"url\" : \"https://builds.apache.org/job/cloudstack-master-maven/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"cloudstack-rat-master\",\n      \"url\" : \"https://builds.apache.org/job/cloudstack-rat-master/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Cocoon 3.0\",\n      \"url\" : \"https://builds.apache.org/job/Cocoon%203.0/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"CODI (add-ons)\",\n      \"url\" : \"https://builds.apache.org/job/CODI%20(add-ons)/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"CODI (deploy)\",\n      \"url\" : \"https://builds.apache.org/job/CODI%20(deploy)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"CODI (nightly)\",\n      \"url\" : \"https://builds.apache.org/job/CODI%20(nightly)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"codi-apache-extras\",\n      \"url\" : \"https://builds.apache.org/job/codi-apache-extras/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"codi-apache-extras-addons\",\n      \"url\" : \"https://builds.apache.org/job/codi-apache-extras-addons/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"codi-apache-extras-test\",\n      \"url\" : \"https://builds.apache.org/job/codi-apache-extras-test/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"codi-mirror\",\n      \"url\" : \"https://builds.apache.org/job/codi-mirror/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"CODI-test\",\n      \"url\" : \"https://builds.apache.org/job/CODI-test/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"CODI-u1test\",\n      \"url\" : \"https://builds.apache.org/job/CODI-u1test/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Commons\",\n      \"url\" : \"https://builds.apache.org/job/Commons/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"Commons FileUpload\",\n      \"url\" : \"https://builds.apache.org/job/Commons%20FileUpload/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"commons-collections\",\n      \"url\" : \"https://builds.apache.org/job/commons-collections/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"commons-vfs-trunk\",\n      \"url\" : \"https://builds.apache.org/job/commons-vfs-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"CommonsAnt\",\n      \"url\" : \"https://builds.apache.org/job/CommonsAnt/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"core-integration-testing-maven-3\",\n      \"url\" : \"https://builds.apache.org/job/core-integration-testing-maven-3/\",\n      \"color\" : \"red_anime\"\n    },\n    {\n      \"name\" : \"core-integration-testing-maven-3-embedded\",\n      \"url\" : \"https://builds.apache.org/job/core-integration-testing-maven-3-embedded/\",\n      \"color\" : \"red_anime\"\n    },\n    {\n      \"name\" : \"core-integration-testing-maven-3-jdk-1.6\",\n      \"url\" : \"https://builds.apache.org/job/core-integration-testing-maven-3-jdk-1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"core-integration-testing-maven-3-jdk-1.6-log4j2\",\n      \"url\" : \"https://builds.apache.org/job/core-integration-testing-maven-3-jdk-1.6-log4j2/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"core-integration-testing-maven-3-jdk-1.7\",\n      \"url\" : \"https://builds.apache.org/job/core-integration-testing-maven-3-jdk-1.7/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"core-integration-testing-maven-3-osx\",\n      \"url\" : \"https://builds.apache.org/job/core-integration-testing-maven-3-osx/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"core-integration-testing-maven-3-solaris\",\n      \"url\" : \"https://builds.apache.org/job/core-integration-testing-maven-3-solaris/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"core-it-maven-3-win\",\n      \"url\" : \"https://builds.apache.org/job/core-it-maven-3-win/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Crunch-master\",\n      \"url\" : \"https://builds.apache.org/job/Crunch-master/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Crunch-master-integration\",\n      \"url\" : \"https://builds.apache.org/job/Crunch-master-integration/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ctakes-trunk-compiletest\",\n      \"url\" : \"https://builds.apache.org/job/ctakes-trunk-compiletest/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ctakes-trunk-package\",\n      \"url\" : \"https://builds.apache.org/job/ctakes-trunk-package/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"CXF-2.2-deploy\",\n      \"url\" : \"https://builds.apache.org/job/CXF-2.2-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"CXF-2.2.x-JDK15\",\n      \"url\" : \"https://builds.apache.org/job/CXF-2.2.x-JDK15/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"CXF-2.3-deploy\",\n      \"url\" : \"https://builds.apache.org/job/CXF-2.3-deploy/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"CXF-2.3.x\",\n      \"url\" : \"https://builds.apache.org/job/CXF-2.3.x/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"CXF-2.4-deploy\",\n      \"url\" : \"https://builds.apache.org/job/CXF-2.4-deploy/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"CXF-2.4.x\",\n      \"url\" : \"https://builds.apache.org/job/CXF-2.4.x/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"CXF-2.5-deploy\",\n      \"url\" : \"https://builds.apache.org/job/CXF-2.5-deploy/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"CXF-2.5.x\",\n      \"url\" : \"https://builds.apache.org/job/CXF-2.5.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"CXF-2.6-deploy\",\n      \"url\" : \"https://builds.apache.org/job/CXF-2.6-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"CXF-2.6.x\",\n      \"url\" : \"https://builds.apache.org/job/CXF-2.6.x/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"CXF-2.7-deploy\",\n      \"url\" : \"https://builds.apache.org/job/CXF-2.7-deploy/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"CXF-2.7.x\",\n      \"url\" : \"https://builds.apache.org/job/CXF-2.7.x/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"CXF-build-tools\",\n      \"url\" : \"https://builds.apache.org/job/CXF-build-tools/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"CXF-DOSGi\",\n      \"url\" : \"https://builds.apache.org/job/CXF-DOSGi/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"CXF-DOSGi-deploy\",\n      \"url\" : \"https://builds.apache.org/job/CXF-DOSGi-deploy/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"CXF-Fediz\",\n      \"url\" : \"https://builds.apache.org/job/CXF-Fediz/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"CXF-trunk-deploy\",\n      \"url\" : \"https://builds.apache.org/job/CXF-trunk-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"CXF-Trunk-IBM-JDK16\",\n      \"url\" : \"https://builds.apache.org/job/CXF-Trunk-IBM-JDK16/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"CXF-Trunk-JDK16\",\n      \"url\" : \"https://builds.apache.org/job/CXF-Trunk-JDK16/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"CXF-Trunk-JDK17\",\n      \"url\" : \"https://builds.apache.org/job/CXF-Trunk-JDK17/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"CXF-trunk-windows\",\n      \"url\" : \"https://builds.apache.org/job/CXF-trunk-windows/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"CXF-xjc-utils\",\n      \"url\" : \"https://builds.apache.org/job/CXF-xjc-utils/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Deploy\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Examples\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Examples/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike OWB (nightly)\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20OWB%20(nightly)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike OWB 1.1.1\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20OWB%201.1.1/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike OWB 1.1.2\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20OWB%201.1.2/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike OWB 1.1.3\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20OWB%201.1.3/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike OWB 1.1.4\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20OWB%201.1.4/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike OWB 1.1.4 (JDK 1.7)\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20OWB%201.1.4%20(JDK%201.7)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike OWB 1.1.5\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20OWB%201.1.5/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"DeltaSpike OWB 1.1.6\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20OWB%201.1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike OWB 1.1.7\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20OWB%201.1.7/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike OWB 1.1.8-SNAPSHOT\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20OWB%201.1.8-SNAPSHOT/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike RAT-Check\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20RAT-Check/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike TomEE v1\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20TomEE%20v1/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld (nightly)\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%20(nightly)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 1.1.10\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%201.1.10/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 1.1.3\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%201.1.3/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 1.1.3.SP1\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%201.1.3.SP1/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 1.1.4\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%201.1.4/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 1.1.5\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%201.1.5/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 1.1.5.AS71\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%201.1.5.AS71/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 1.1.6\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%201.1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 1.1.7\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%201.1.7/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 1.1.8\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%201.1.8/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 1.1.9\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%201.1.9/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 1.1.9 (JDK 1.7)\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%201.1.9%20(JDK%201.7)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 1.2.0-SNAPSHOT\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%201.2.0-SNAPSHOT/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 2.0.0 Beta1\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%202.0.0%20Beta1/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 2.0.0 Beta2\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%202.0.0%20Beta2/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 2.0.0-SNAPSHOT\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%202.0.0-SNAPSHOT/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"DeltaSpike Weld 2.0.0.Alpha2\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike%20Weld%202.0.0.Alpha2/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"DeltaSpike_Control_Build\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike_Control_Build/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike_TomEE\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike_TomEE/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"DeltaSpike_TomEE_latest\",\n      \"url\" : \"https://builds.apache.org/job/DeltaSpike_TomEE_latest/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Derby-10.9-derbyall\",\n      \"url\" : \"https://builds.apache.org/job/Derby-10.9-derbyall/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Derby-10.9-suites.All\",\n      \"url\" : \"https://builds.apache.org/job/Derby-10.9-suites.All/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Derby-branch-10.5\",\n      \"url\" : \"https://builds.apache.org/job/Derby-branch-10.5/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Derby-branch-10.6\",\n      \"url\" : \"https://builds.apache.org/job/Derby-branch-10.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Derby-branch-10.7\",\n      \"url\" : \"https://builds.apache.org/job/Derby-branch-10.7/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Derby-branch-10.8\",\n      \"url\" : \"https://builds.apache.org/job/Derby-branch-10.8/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Derby-branch-10.9\",\n      \"url\" : \"https://builds.apache.org/job/Derby-branch-10.9/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Derby-docs\",\n      \"url\" : \"https://builds.apache.org/job/Derby-docs/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Derby-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Derby-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Derby-trunk-suites.All-ARM\",\n      \"url\" : \"https://builds.apache.org/job/Derby-trunk-suites.All-ARM/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"Derby-trunk_clover\",\n      \"url\" : \"https://builds.apache.org/job/Derby-trunk_clover/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Derby-trunk_suites.All\",\n      \"url\" : \"https://builds.apache.org/job/Derby-trunk_suites.All/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"dir-apacheds-jdbm-jdk16-ubuntu-deploy\",\n      \"url\" : \"https://builds.apache.org/job/dir-apacheds-jdbm-jdk16-ubuntu-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-apacheds-jdbm-jdk16-win\",\n      \"url\" : \"https://builds.apache.org/job/dir-apacheds-jdbm-jdk16-win/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-apacheds-jdk16-ubuntu-deploy\",\n      \"url\" : \"https://builds.apache.org/job/dir-apacheds-jdk16-ubuntu-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-apacheds-jdk16-ubuntu-installers\",\n      \"url\" : \"https://builds.apache.org/job/dir-apacheds-jdk16-ubuntu-installers/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-apacheds-jdk16-win\",\n      \"url\" : \"https://builds.apache.org/job/dir-apacheds-jdk16-win/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"dir-apacheds-manuals\",\n      \"url\" : \"https://builds.apache.org/job/dir-apacheds-manuals/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-api-manuals\",\n      \"url\" : \"https://builds.apache.org/job/dir-api-manuals/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-checkstyle-jdk16-deploy-site\",\n      \"url\" : \"https://builds.apache.org/job/dir-checkstyle-jdk16-deploy-site/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-groovyldap-jdk15-deploy-site\",\n      \"url\" : \"https://builds.apache.org/job/dir-groovyldap-jdk15-deploy-site/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-junit-addons-jdk15-deploy-site\",\n      \"url\" : \"https://builds.apache.org/job/dir-junit-addons-jdk15-deploy-site/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-project-jdk15-deploy\",\n      \"url\" : \"https://builds.apache.org/job/dir-project-jdk15-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-shared-jdk16-ubuntu-deploy\",\n      \"url\" : \"https://builds.apache.org/job/dir-shared-jdk16-ubuntu-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-shared-jdk16-win\",\n      \"url\" : \"https://builds.apache.org/job/dir-shared-jdk16-win/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-skins-jdk15-deploy-site\",\n      \"url\" : \"https://builds.apache.org/job/dir-skins-jdk15-deploy-site/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-studio-jdk16-ubuntu-applications\",\n      \"url\" : \"https://builds.apache.org/job/dir-studio-jdk16-ubuntu-applications/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-studio-jdk16-ubuntu-deploy\",\n      \"url\" : \"https://builds.apache.org/job/dir-studio-jdk16-ubuntu-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-studio-jdk16-win\",\n      \"url\" : \"https://builds.apache.org/job/dir-studio-jdk16-win/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"dir-studio-manuals\",\n      \"url\" : \"https://builds.apache.org/job/dir-studio-manuals/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"dir-studio-maven-plugin-jdk15-deploy-site\",\n      \"url\" : \"https://builds.apache.org/job/dir-studio-maven-plugin-jdk15-deploy-site/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"directmemory-parent\",\n      \"url\" : \"https://builds.apache.org/job/directmemory-parent/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"directmemory-trunk\",\n      \"url\" : \"https://builds.apache.org/job/directmemory-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"directmemory-windows\",\n      \"url\" : \"https://builds.apache.org/job/directmemory-windows/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"doxia\",\n      \"url\" : \"https://builds.apache.org/job/doxia/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"doxia-eclipse-editor\",\n      \"url\" : \"https://builds.apache.org/job/doxia-eclipse-editor/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"doxia-sitetools\",\n      \"url\" : \"https://builds.apache.org/job/doxia-sitetools/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"doxia-tools\",\n      \"url\" : \"https://builds.apache.org/job/doxia-tools/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Drill-Physical-Plan\",\n      \"url\" : \"https://builds.apache.org/job/Drill-Physical-Plan/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"EasyAnt\",\n      \"url\" : \"https://builds.apache.org/job/EasyAnt/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Empire-db multios\",\n      \"url\" : \"https://builds.apache.org/job/Empire-db%20multios/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Empire-db reports\",\n      \"url\" : \"https://builds.apache.org/job/Empire-db%20reports/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Empire-db snapshot\",\n      \"url\" : \"https://builds.apache.org/job/Empire-db%20snapshot/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ESME\",\n      \"url\" : \"https://builds.apache.org/job/ESME/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"etch-trunk-linux-x86\",\n      \"url\" : \"https://builds.apache.org/job/etch-trunk-linux-x86/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"etch-trunk-linux-x86-experimental\",\n      \"url\" : \"https://builds.apache.org/job/etch-trunk-linux-x86-experimental/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"etch-trunk-windows-x86\",\n      \"url\" : \"https://builds.apache.org/job/etch-trunk-windows-x86/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"etch-trunk-windows-x86-experimental\",\n      \"url\" : \"https://builds.apache.org/job/etch-trunk-windows-x86-experimental/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ExtVal for JSF 1.2 (deploy)\",\n      \"url\" : \"https://builds.apache.org/job/ExtVal%20for%20JSF%201.2%20(deploy)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ExtVal for JSF 1.2 (nightly)\",\n      \"url\" : \"https://builds.apache.org/job/ExtVal%20for%20JSF%201.2%20(nightly)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ExtVal for JSF 2.0 (deploy)\",\n      \"url\" : \"https://builds.apache.org/job/ExtVal%20for%20JSF%202.0%20(deploy)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ExtVal for JSF 2.0 (nightly)\",\n      \"url\" : \"https://builds.apache.org/job/ExtVal%20for%20JSF%202.0%20(nightly)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Felix iPOJO API\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20API/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Felix iPOJO Arch\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20Arch/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Felix iPOJO Arch-Gogo\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20Arch-Gogo/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Felix iPOJO EventAdmin Handler\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20EventAdmin%20Handler/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Felix iPOJO Extender Handler\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20Extender%20Handler/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Felix iPOJO JMX Handler\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20JMX%20Handler/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Felix iPOJO Junit4OSGi\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20Junit4OSGi/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Felix iPOJO Manipulator\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20Manipulator/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Felix iPOJO Metadata\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20Metadata/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Felix iPOJO Runtime\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20Runtime/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Felix iPOJO Temporal Handler\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20Temporal%20Handler/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Felix iPOJO Tests\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20Tests/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Felix iPOJO Transaction Handler\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20Transaction%20Handler/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Felix iPOJO Webconsole\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20Webconsole/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Felix iPOJO Whiteboard Handler\",\n      \"url\" : \"https://builds.apache.org/job/Felix%20iPOJO%20Whiteboard%20Handler/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Felix-FileInstall\",\n      \"url\" : \"https://builds.apache.org/job/Felix-FileInstall/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Felix-Gogo\",\n      \"url\" : \"https://builds.apache.org/job/Felix-Gogo/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Felix-WebConsole\",\n      \"url\" : \"https://builds.apache.org/job/Felix-WebConsole/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Flex_SDK_build\",\n      \"url\" : \"https://builds.apache.org/job/Flex_SDK_build/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Flex_SDK_checkin_tests\",\n      \"url\" : \"https://builds.apache.org/job/Flex_SDK_checkin_tests/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"flume-0.9\",\n      \"url\" : \"https://builds.apache.org/job/flume-0.9/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"flume-1.3.0\",\n      \"url\" : \"https://builds.apache.org/job/flume-1.3.0/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"flume-1.4.0\",\n      \"url\" : \"https://builds.apache.org/job/flume-1.4.0/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"flume-trunk\",\n      \"url\" : \"https://builds.apache.org/job/flume-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"FontBox-trunk\",\n      \"url\" : \"https://builds.apache.org/job/FontBox-trunk/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"ftpserver-1.0.x-jdk1.5-solaris\",\n      \"url\" : \"https://builds.apache.org/job/ftpserver-1.0.x-jdk1.5-solaris/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"ftpserver-1.0.x-jdk1.5-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/ftpserver-1.0.x-jdk1.5-ubuntu/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ftpserver-trunk-jdk1.5-ibm-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/ftpserver-trunk-jdk1.5-ibm-ubuntu/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ftpserver-trunk-jdk1.5-solaris\",\n      \"url\" : \"https://builds.apache.org/job/ftpserver-trunk-jdk1.5-solaris/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"ftpserver-trunk-jdk1.5-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/ftpserver-trunk-jdk1.5-ubuntu/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ftpserver-trunk-jdk1.6-freebsd\",\n      \"url\" : \"https://builds.apache.org/job/ftpserver-trunk-jdk1.6-freebsd/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"ftpserver-trunk-jdk1.6-ibm-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/ftpserver-trunk-jdk1.6-ibm-ubuntu/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ftpserver-trunk-jdk1.6-osx\",\n      \"url\" : \"https://builds.apache.org/job/ftpserver-trunk-jdk1.6-osx/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"ftpserver-trunk-jdk1.6-solaris\",\n      \"url\" : \"https://builds.apache.org/job/ftpserver-trunk-jdk1.6-solaris/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ftpserver-trunk-jdk1.6-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/ftpserver-trunk-jdk1.6-ubuntu/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ftpserver-trunk-jdk1.6-windows\",\n      \"url\" : \"https://builds.apache.org/job/ftpserver-trunk-jdk1.6-windows/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Giraph-trunk-Commit\",\n      \"url\" : \"https://builds.apache.org/job/Giraph-trunk-Commit/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"giraph-trunk-hadoop-0.20.203\",\n      \"url\" : \"https://builds.apache.org/job/giraph-trunk-hadoop-0.20.203/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"giraph-trunk-hadoop-0.23\",\n      \"url\" : \"https://builds.apache.org/job/giraph-trunk-hadoop-0.23/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"giraph-trunk-hadoop-1.0\",\n      \"url\" : \"https://builds.apache.org/job/giraph-trunk-hadoop-1.0/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"giraph-trunk-hadoop-trunk\",\n      \"url\" : \"https://builds.apache.org/job/giraph-trunk-hadoop-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"giraph-trunk-non-secure\",\n      \"url\" : \"https://builds.apache.org/job/giraph-trunk-non-secure/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"gora-trunk\",\n      \"url\" : \"https://builds.apache.org/job/gora-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"gora-trunk-ant\",\n      \"url\" : \"https://builds.apache.org/job/gora-trunk-ant/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"goraamazon_branch\",\n      \"url\" : \"https://builds.apache.org/job/goraamazon_branch/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hadoop-0.20-security\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-0.20-security/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hadoop-0.20.203-Build\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-0.20.203-Build/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hadoop-1-Build\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-1-Build/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Hadoop-1-Code-Coverage\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-1-Code-Coverage/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Hadoop-1-win\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-1-win/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Hadoop-1.0-Build\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-1.0-Build/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Hadoop-Common-0.23-Build\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Common-0.23-Build/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Hadoop-Common-0.23-Commit\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Common-0.23-Commit/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Hadoop-Common-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Common-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Hadoop-Hdfs-0.23-Build\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Hdfs-0.23-Build/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Hadoop-Hdfs-0.23-Commit\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Hdfs-0.23-Commit/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hadoop-Hdfs-22-branch\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Hdfs-22-branch/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Hadoop-Hdfs-HAbranch-build\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Hdfs-HAbranch-build/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hadoop-Hdfs-NIFbranch-build\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Hdfs-NIFbranch-build/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hadoop-Hdfs-Snapshots-Branch-build\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Hdfs-Snapshots-Branch-build/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Hadoop-Hdfs-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Hdfs-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Hadoop-Hdfs-trunk-Commit\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Hdfs-trunk-Commit/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hadoop-Mapreduce-0.23-Build\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Mapreduce-0.23-Build/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hadoop-Mapreduce-0.23-Commit\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Mapreduce-0.23-Commit/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hadoop-Mapreduce-22-branch\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Mapreduce-22-branch/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Hadoop-Mapreduce-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Mapreduce-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Hadoop-Mapreduce-trunk-Commit\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Mapreduce-trunk-Commit/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hadoop-MR-279-Build\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-MR-279-Build/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hadoop-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-trunk/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Hadoop-trunk-ARM\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-trunk-ARM/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Hadoop-trunk-Commit\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-trunk-Commit/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Hadoop-Yarn-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Hadoop-Yarn-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Hama trunk\",\n      \"url\" : \"https://builds.apache.org/job/Hama%20trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Hama-Nightly\",\n      \"url\" : \"https://builds.apache.org/job/Hama-Nightly/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Hama-Patch\",\n      \"url\" : \"https://builds.apache.org/job/Hama-Patch/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Hama-Patch-Admin\",\n      \"url\" : \"https://builds.apache.org/job/Hama-Patch-Admin/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"hbase-0.90\",\n      \"url\" : \"https://builds.apache.org/job/hbase-0.90/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"HBase-0.92\",\n      \"url\" : \"https://builds.apache.org/job/HBase-0.92/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"HBase-0.92-security\",\n      \"url\" : \"https://builds.apache.org/job/HBase-0.92-security/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"HBase-0.94\",\n      \"url\" : \"https://builds.apache.org/job/HBase-0.94/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"HBase-0.94-deploy\",\n      \"url\" : \"https://builds.apache.org/job/HBase-0.94-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"HBase-0.94-security\",\n      \"url\" : \"https://builds.apache.org/job/HBase-0.94-security/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"HBase-0.94-security-on-Hadoop-23\",\n      \"url\" : \"https://builds.apache.org/job/HBase-0.94-security-on-Hadoop-23/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"HBase-TRUNK\",\n      \"url\" : \"https://builds.apache.org/job/HBase-TRUNK/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"HBase-TRUNK-on-Hadoop-2.0.0\",\n      \"url\" : \"https://builds.apache.org/job/HBase-TRUNK-on-Hadoop-2.0.0/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"HBase-TRUNK-on-Hadoop-23\",\n      \"url\" : \"https://builds.apache.org/job/HBase-TRUNK-on-Hadoop-23/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"HBase-TRUNK-security\",\n      \"url\" : \"https://builds.apache.org/job/HBase-TRUNK-security/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hcatalog-0.2-build\",\n      \"url\" : \"https://builds.apache.org/job/Hcatalog-0.2-build/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hcatalog-0.3-build\",\n      \"url\" : \"https://builds.apache.org/job/Hcatalog-0.3-build/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hcatalog-0.4-build\",\n      \"url\" : \"https://builds.apache.org/job/Hcatalog-0.4-build/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Hcatalog-trunk-build\",\n      \"url\" : \"https://builds.apache.org/job/Hcatalog-trunk-build/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"helix\",\n      \"url\" : \"https://builds.apache.org/job/helix/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"helix-1.7\",\n      \"url\" : \"https://builds.apache.org/job/helix-1.7/\",\n      \"color\" : \"red_anime\"\n    },\n    {\n      \"name\" : \"Hive-0.10.0-SNAPSHOT-h0.20.1\",\n      \"url\" : \"https://builds.apache.org/job/Hive-0.10.0-SNAPSHOT-h0.20.1/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Hive-0.9.1-SNAPSHOT-h0.21\",\n      \"url\" : \"https://builds.apache.org/job/Hive-0.9.1-SNAPSHOT-h0.21/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Hive-0.9.1-SNAPSHOT-h0.21-keepgoing=false\",\n      \"url\" : \"https://builds.apache.org/job/Hive-0.9.1-SNAPSHOT-h0.21-keepgoing=false/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Hive-trunk-h0.21\",\n      \"url\" : \"https://builds.apache.org/job/Hive-trunk-h0.21/\",\n      \"color\" : \"red_anime\"\n    },\n    {\n      \"name\" : \"hive-trunk-hadoop1\",\n      \"url\" : \"https://builds.apache.org/job/hive-trunk-hadoop1/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Hive-trunk-hadoop2\",\n      \"url\" : \"https://builds.apache.org/job/Hive-trunk-hadoop2/\",\n      \"color\" : \"red_anime\"\n    },\n    {\n      \"name\" : \"HttpComponents AsyncClient\",\n      \"url\" : \"https://builds.apache.org/job/HttpComponents%20AsyncClient/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"HttpComponents Client\",\n      \"url\" : \"https://builds.apache.org/job/HttpComponents%20Client/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"HttpComponents Client (4.2.x)\",\n      \"url\" : \"https://builds.apache.org/job/HttpComponents%20Client%20(4.2.x)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"HttpComponents Core\",\n      \"url\" : \"https://builds.apache.org/job/HttpComponents%20Core/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"HttpComponents Core (4.2.x)\",\n      \"url\" : \"https://builds.apache.org/job/HttpComponents%20Core%20(4.2.x)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"hupa-trunk\",\n      \"url\" : \"https://builds.apache.org/job/hupa-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"hupa-trunk-site\",\n      \"url\" : \"https://builds.apache.org/job/hupa-trunk-site/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"imap-trunk-m2\",\n      \"url\" : \"https://builds.apache.org/job/imap-trunk-m2/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"imap-trunk-site\",\n      \"url\" : \"https://builds.apache.org/job/imap-trunk-site/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"isis-core-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/isis-core-ubuntu/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Ivy\",\n      \"url\" : \"https://builds.apache.org/job/Ivy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Ivy-2.3-tests\",\n      \"url\" : \"https://builds.apache.org/job/Ivy-2.3-tests/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Ivy-check\",\n      \"url\" : \"https://builds.apache.org/job/Ivy-check/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Ivy-tests\",\n      \"url\" : \"https://builds.apache.org/job/Ivy-tests/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"IvyDE\",\n      \"url\" : \"https://builds.apache.org/job/IvyDE/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"IvyDE-updatesite\",\n      \"url\" : \"https://builds.apache.org/job/IvyDE-updatesite/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Jackrabbit-2.2\",\n      \"url\" : \"https://builds.apache.org/job/Jackrabbit-2.2/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Jackrabbit-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Jackrabbit-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Jakarta_BSF3\",\n      \"url\" : \"https://builds.apache.org/job/Jakarta_BSF3/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"james-mailet\",\n      \"url\" : \"https://builds.apache.org/job/james-mailet/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"james-project\",\n      \"url\" : \"https://builds.apache.org/job/james-project/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"james-server-trunk\",\n      \"url\" : \"https://builds.apache.org/job/james-server-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"james-server-trunk-site\",\n      \"url\" : \"https://builds.apache.org/job/james-server-trunk-site/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"james-server-v2.3\",\n      \"url\" : \"https://builds.apache.org/job/james-server-v2.3/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"james-server-v2.3-m2\",\n      \"url\" : \"https://builds.apache.org/job/james-server-v2.3-m2/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"james-skin\",\n      \"url\" : \"https://builds.apache.org/job/james-skin/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"jdkim-trunk\",\n      \"url\" : \"https://builds.apache.org/job/jdkim-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"jdkim-trunk-site\",\n      \"url\" : \"https://builds.apache.org/job/jdkim-trunk-site/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Jena__Development_Deploy\",\n      \"url\" : \"https://builds.apache.org/job/Jena__Development_Deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Jena__Development_Test\",\n      \"url\" : \"https://builds.apache.org/job/Jena__Development_Test/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Jena_Development_Test_Windows\",\n      \"url\" : \"https://builds.apache.org/job/Jena_Development_Test_Windows/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"Jena_LARQ\",\n      \"url\" : \"https://builds.apache.org/job/Jena_LARQ/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Jena_LARQ_Snapshot\",\n      \"url\" : \"https://builds.apache.org/job/Jena_LARQ_Snapshot/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Jena_SDB\",\n      \"url\" : \"https://builds.apache.org/job/Jena_SDB/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Jena_SDB_Snapshot\",\n      \"url\" : \"https://builds.apache.org/job/Jena_SDB_Snapshot/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"JMeter adhoc\",\n      \"url\" : \"https://builds.apache.org/job/JMeter%20adhoc/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"JMeter-trunk\",\n      \"url\" : \"https://builds.apache.org/job/JMeter-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"jsieve-trunk\",\n      \"url\" : \"https://builds.apache.org/job/jsieve-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"jsieve-trunk-site\",\n      \"url\" : \"https://builds.apache.org/job/jsieve-trunk-site/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"jspf-trunk\",\n      \"url\" : \"https://builds.apache.org/job/jspf-trunk/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"jspf-trunk-site\",\n      \"url\" : \"https://builds.apache.org/job/jspf-trunk-site/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"JSPWiki\",\n      \"url\" : \"https://builds.apache.org/job/JSPWiki/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Kafka-0.7\",\n      \"url\" : \"https://builds.apache.org/job/Kafka-0.7/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Kafka-0.8\",\n      \"url\" : \"https://builds.apache.org/job/Kafka-0.8/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Kafka-consumer_redesign\",\n      \"url\" : \"https://builds.apache.org/job/Kafka-consumer_redesign/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Kafka-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Kafka-trunk/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Kalumet-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Kalumet-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Karaf\",\n      \"url\" : \"https://builds.apache.org/job/Karaf/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Karaf-2.2.x\",\n      \"url\" : \"https://builds.apache.org/job/Karaf-2.2.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Karaf-2.3.x\",\n      \"url\" : \"https://builds.apache.org/job/Karaf-2.3.x/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Karaf-WebConsole\",\n      \"url\" : \"https://builds.apache.org/job/Karaf-WebConsole/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"kato.api-head\",\n      \"url\" : \"https://builds.apache.org/job/kato.api-head/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Ki\",\n      \"url\" : \"https://builds.apache.org/job/Ki/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"lightning-trunk\",\n      \"url\" : \"https://builds.apache.org/job/lightning-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Log4j 2.x\",\n      \"url\" : \"https://builds.apache.org/job/Log4j%202.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Lucene-Artifacts-4.x\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Artifacts-4.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Lucene-Artifacts-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Artifacts-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Lucene-BadApples-trunk-java7\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-BadApples-trunk-java7/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Lucene-Solr-Clover-4.x\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Solr-Clover-4.x/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"Lucene-Solr-Clover-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Solr-Clover-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Lucene-Solr-Maven-4.x\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Solr-Maven-4.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Lucene-Solr-Maven-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Solr-Maven-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Lucene-Solr-NightlyTests-4.x\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Solr-NightlyTests-4.x/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Lucene-Solr-NightlyTests-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Solr-NightlyTests-trunk/\",\n      \"color\" : \"blue_anime\"\n    },\n    {\n      \"name\" : \"Lucene-Solr-SmokeRelease-4.x\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Solr-SmokeRelease-4.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Lucene-Solr-SmokeRelease-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Solr-SmokeRelease-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Lucene-Solr-Tests-4.x-Java6\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Solr-Tests-4.x-Java6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Lucene-Solr-Tests-4.x-java7\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Solr-Tests-4.x-java7/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Lucene-Solr-Tests-trunk-Java6\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Solr-Tests-trunk-Java6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Lucene-Solr-Tests-trunk-java7\",\n      \"url\" : \"https://builds.apache.org/job/Lucene-Solr-Tests-trunk-java7/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Lucene.Net-Trunk-All-Nightly\",\n      \"url\" : \"https://builds.apache.org/job/Lucene.Net-Trunk-All-Nightly/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Lucene.Net-Trunk-All-Poll-Changes\",\n      \"url\" : \"https://builds.apache.org/job/Lucene.Net-Trunk-All-Poll-Changes/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Lucene.Net-Trunk-Contrib-Nightly\",\n      \"url\" : \"https://builds.apache.org/job/Lucene.Net-Trunk-Contrib-Nightly/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Lucene.Net-Trunk-Contrib-Poll-Changes\",\n      \"url\" : \"https://builds.apache.org/job/Lucene.Net-Trunk-Contrib-Poll-Changes/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"mahout-collections-trunk\",\n      \"url\" : \"https://builds.apache.org/job/mahout-collections-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Mahout-Examples-Classify-20News\",\n      \"url\" : \"https://builds.apache.org/job/Mahout-Examples-Classify-20News/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Mahout-Examples-Cluster-Reuters\",\n      \"url\" : \"https://builds.apache.org/job/Mahout-Examples-Cluster-Reuters/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Mahout-Examples-Cluster-Reuters-II\",\n      \"url\" : \"https://builds.apache.org/job/Mahout-Examples-Cluster-Reuters-II/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"mahout-nightly\",\n      \"url\" : \"https://builds.apache.org/job/mahout-nightly/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Mahout-Quality\",\n      \"url\" : \"https://builds.apache.org/job/Mahout-Quality/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Mahout-Trunk\",\n      \"url\" : \"https://builds.apache.org/job/Mahout-Trunk/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"MahoutClover\",\n      \"url\" : \"https://builds.apache.org/job/MahoutClover/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"mailbox\",\n      \"url\" : \"https://builds.apache.org/job/mailbox/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"mailbox-integration-tests\",\n      \"url\" : \"https://builds.apache.org/job/mailbox-integration-tests/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"mailbox-integration-tests-site\",\n      \"url\" : \"https://builds.apache.org/job/mailbox-integration-tests-site/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"mailbox-site\",\n      \"url\" : \"https://builds.apache.org/job/mailbox-site/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"maven-2.2.x\",\n      \"url\" : \"https://builds.apache.org/job/maven-2.2.x/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"maven-3.0.x\",\n      \"url\" : \"https://builds.apache.org/job/maven-3.0.x/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"maven-ant-tasks\",\n      \"url\" : \"https://builds.apache.org/job/maven-ant-tasks/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-archetype-m2\",\n      \"url\" : \"https://builds.apache.org/job/maven-archetype-m2/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-archetype-m3\",\n      \"url\" : \"https://builds.apache.org/job/maven-archetype-m3/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-enforcer\",\n      \"url\" : \"https://builds.apache.org/job/maven-enforcer/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-indexer\",\n      \"url\" : \"https://builds.apache.org/job/maven-indexer/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-jxr\",\n      \"url\" : \"https://builds.apache.org/job/maven-jxr/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"maven-parent\",\n      \"url\" : \"https://builds.apache.org/job/maven-parent/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-plugin-testing\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugin-testing/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-plugin-testing-mvn-2.x\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugin-testing-mvn-2.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-plugin-tools\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugin-tools/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-plugin-tools-2.x\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugin-tools-2.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-plugin-tools-2.x-m2\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugin-tools-2.x-m2/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-plugin-tools-jdk-1.7\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugin-tools-jdk-1.7/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-plugin-tools-m2\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugin-tools-m2/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-plugin-tools-windows\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugin-tools-windows/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-plugins\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugins/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"maven-plugins-ITs-m2\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugins-ITs-m2/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"maven-plugins-ITs-m2-with-maven-plugin\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugins-ITs-m2-with-maven-plugin/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"maven-plugins-ITs-m3\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugins-ITs-m3/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"maven-plugins-ITs-m3-windows\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugins-ITs-m3-windows/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"maven-plugins-ITs-m3-with-maven-plugin\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugins-ITs-m3-with-maven-plugin/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"maven-plugins-ITs-m3.0.3\",\n      \"url\" : \"https://builds.apache.org/job/maven-plugins-ITs-m3.0.3/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-project-resources\",\n      \"url\" : \"https://builds.apache.org/job/maven-project-resources/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-release\",\n      \"url\" : \"https://builds.apache.org/job/maven-release/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-sandbox-plexus-utils-commons-bridge\",\n      \"url\" : \"https://builds.apache.org/job/maven-sandbox-plexus-utils-commons-bridge/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"maven-scm\",\n      \"url\" : \"https://builds.apache.org/job/maven-scm/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-scm-1.7\",\n      \"url\" : \"https://builds.apache.org/job/maven-scm-1.7/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"maven-scm-mvn-2.2x\",\n      \"url\" : \"https://builds.apache.org/job/maven-scm-mvn-2.2x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-scm-provider-svnjava\",\n      \"url\" : \"https://builds.apache.org/job/maven-scm-provider-svnjava/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-scm-windows\",\n      \"url\" : \"https://builds.apache.org/job/maven-scm-windows/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"maven-shared\",\n      \"url\" : \"https://builds.apache.org/job/maven-shared/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-shared-windows\",\n      \"url\" : \"https://builds.apache.org/job/maven-shared-windows/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-site-plugin-2.x\",\n      \"url\" : \"https://builds.apache.org/job/maven-site-plugin-2.x/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"maven-skins\",\n      \"url\" : \"https://builds.apache.org/job/maven-skins/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"maven-surefire\",\n      \"url\" : \"https://builds.apache.org/job/maven-surefire/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-surefire-mvn-2.2.1\",\n      \"url\" : \"https://builds.apache.org/job/maven-surefire-mvn-2.2.1/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"maven-surefire-windows\",\n      \"url\" : \"https://builds.apache.org/job/maven-surefire-windows/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-wagon\",\n      \"url\" : \"https://builds.apache.org/job/maven-wagon/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"maven-wagon-windows\",\n      \"url\" : \"https://builds.apache.org/job/maven-wagon-windows/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"maven-wagon-with-ssh-embedded\",\n      \"url\" : \"https://builds.apache.org/job/maven-wagon-with-ssh-embedded/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME\",\n      \"url\" : \"https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Mesos-Trunk-Ubuntu-Build-Out-Of-Src-Disable-Java-Disable-Python-Disable-Webui\",\n      \"url\" : \"https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-Out-Of-Src-Disable-Java-Disable-Python-Disable-Webui/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Mesos-Trunk-Ubuntu-Build-Out-Of-Src-Set-JAVA_HOME\",\n      \"url\" : \"https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-Out-Of-Src-Set-JAVA_HOME/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"mime4j-trunk\",\n      \"url\" : \"https://builds.apache.org/job/mime4j-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"mime4j-trunk-site\",\n      \"url\" : \"https://builds.apache.org/job/mime4j-trunk-site/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"MINA-1.0.X\",\n      \"url\" : \"https://builds.apache.org/job/MINA-1.0.X/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"MINA-1.1.X\",\n      \"url\" : \"https://builds.apache.org/job/MINA-1.1.X/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"MINA-2.0.X-jdk1.5-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/MINA-2.0.X-jdk1.5-ubuntu/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"MINA-trunk-jdk1.6-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/MINA-trunk-jdk1.6-ubuntu/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"MINA-trunk-jdk1.6-windows\",\n      \"url\" : \"https://builds.apache.org/job/MINA-trunk-jdk1.6-windows/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"MINA-trunk-jdk1.7-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/MINA-trunk-jdk1.7-ubuntu/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"mpt-trunk\",\n      \"url\" : \"https://builds.apache.org/job/mpt-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"mpt-trunk-site\",\n      \"url\" : \"https://builds.apache.org/job/mpt-trunk-site/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"mrunit-trunk\",\n      \"url\" : \"https://builds.apache.org/job/mrunit-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-commons\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-commons/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-current-2.0\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-current-2.0/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-current-2.0-integration-tests\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-current-2.0-integration-tests/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"myfaces-current11\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-current11/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-current12\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-current12/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-current21\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-current21/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-current21_949\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-current21_949/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-current22\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-current22/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-ext-scripting\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-ext-scripting/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"myfaces-master-pom\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-master-pom/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-maven\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-maven/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-maven-achetypes\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-maven-achetypes/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-maven2-plugins\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-maven2-plugins/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Myfaces-Orchestra\",\n      \"url\" : \"https://builds.apache.org/job/Myfaces-Orchestra/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"myfaces-orchestra-core\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-orchestra-core/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"myfaces-orchestra-core12\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-orchestra-core12/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"myfaces-orchestra-core20\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-orchestra-core20/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-orchestra-maven\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-orchestra-maven/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-shared\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-shared/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-shared-2.0\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-shared-2.0/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"myfaces-shared-3.0\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-shared-3.0/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"myfaces-site-skin\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-site-skin/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-test\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-test/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"myfaces-tomahawk\",\n      \"url\" : \"https://builds.apache.org/job/myfaces-tomahawk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"MyFaces-Trinidad-Plugins2\",\n      \"url\" : \"https://builds.apache.org/job/MyFaces-Trinidad-Plugins2/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"neethi-2.0\",\n      \"url\" : \"https://builds.apache.org/job/neethi-2.0/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"neethi-trunk\",\n      \"url\" : \"https://builds.apache.org/job/neethi-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"NPanday\",\n      \"url\" : \"https://builds.apache.org/job/NPanday/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"NPanday-dist\",\n      \"url\" : \"https://builds.apache.org/job/NPanday-dist/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"NPanday-docs\",\n      \"url\" : \"https://builds.apache.org/job/NPanday-docs/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"NPanday-it-runner\",\n      \"url\" : \"https://builds.apache.org/job/NPanday-it-runner/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"NPanday-its\",\n      \"url\" : \"https://builds.apache.org/job/NPanday-its/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"npanday-plugin-its\",\n      \"url\" : \"https://builds.apache.org/job/npanday-plugin-its/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"nutch-2.x-maven\",\n      \"url\" : \"https://builds.apache.org/job/nutch-2.x-maven/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Nutch-2.x-Windows\",\n      \"url\" : \"https://builds.apache.org/job/Nutch-2.x-Windows/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Nutch-nutchgora\",\n      \"url\" : \"https://builds.apache.org/job/Nutch-nutchgora/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Nutch-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Nutch-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"nutch-trunk-maven\",\n      \"url\" : \"https://builds.apache.org/job/nutch-trunk-maven/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Nutch-trunk-Windows\",\n      \"url\" : \"https://builds.apache.org/job/Nutch-trunk-Windows/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"nuvem\",\n      \"url\" : \"https://builds.apache.org/job/nuvem/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"ODE-1.x\",\n      \"url\" : \"https://builds.apache.org/job/ODE-1.x/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"ODE-trunk\",\n      \"url\" : \"https://builds.apache.org/job/ODE-trunk/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"ODE-trunk-jdk6\",\n      \"url\" : \"https://builds.apache.org/job/ODE-trunk-jdk6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ODE-trunk-m2-jdk5-nightly-deploy\",\n      \"url\" : \"https://builds.apache.org/job/ODE-trunk-m2-jdk5-nightly-deploy/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"ODE-trunk-maven2-jdk5\",\n      \"url\" : \"https://builds.apache.org/job/ODE-trunk-maven2-jdk5/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"ODFToolkit\",\n      \"url\" : \"https://builds.apache.org/job/ODFToolkit/\",\n      \"color\" : \"red_anime\"\n    },\n    {\n      \"name\" : \"ODFToolkit-windows\",\n      \"url\" : \"https://builds.apache.org/job/ODFToolkit-windows/\",\n      \"color\" : \"blue_anime\"\n    },\n    {\n      \"name\" : \"ognl\",\n      \"url\" : \"https://builds.apache.org/job/ognl/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Onami-Aggregator\",\n      \"url\" : \"https://builds.apache.org/job/Onami-Aggregator/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Onami-Autobind\",\n      \"url\" : \"https://builds.apache.org/job/Onami-Autobind/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Onami-Cache\",\n      \"url\" : \"https://builds.apache.org/job/Onami-Cache/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Onami-Configuration\",\n      \"url\" : \"https://builds.apache.org/job/Onami-Configuration/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Onami-Guava\",\n      \"url\" : \"https://builds.apache.org/job/Onami-Guava/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Onami-Lifecycle\",\n      \"url\" : \"https://builds.apache.org/job/Onami-Lifecycle/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Onami-Logging\",\n      \"url\" : \"https://builds.apache.org/job/Onami-Logging/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Onami-Parent\",\n      \"url\" : \"https://builds.apache.org/job/Onami-Parent/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Onami-Scheduler\",\n      \"url\" : \"https://builds.apache.org/job/Onami-Scheduler/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Onami-SPI\",\n      \"url\" : \"https://builds.apache.org/job/Onami-SPI/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Onami-Test\",\n      \"url\" : \"https://builds.apache.org/job/Onami-Test/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"oodt-trunk\",\n      \"url\" : \"https://builds.apache.org/job/oodt-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"oozie-trunk-find-patches-available\",\n      \"url\" : \"https://builds.apache.org/job/oozie-trunk-find-patches-available/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"oozie-trunk-precommit-build\",\n      \"url\" : \"https://builds.apache.org/job/oozie-trunk-precommit-build/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"oozie-trunk-w-hadoop-1\",\n      \"url\" : \"https://builds.apache.org/job/oozie-trunk-w-hadoop-1/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"oozie-trunk-w-hadoop-2\",\n      \"url\" : \"https://builds.apache.org/job/oozie-trunk-w-hadoop-2/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"OpenEJB_and_TomEE_Build\",\n      \"url\" : \"https://builds.apache.org/job/OpenEJB_and_TomEE_Build/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenEJB_deploy_patched_module\",\n      \"url\" : \"https://builds.apache.org/job/OpenEJB_deploy_patched_module/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenJPA-11x\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-11x/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"OpenJPA-12x\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-12x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenJPA-13x\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-13x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenJPA-20x-deploy\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-20x-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenJPA-21x\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-21x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenJPA-21x-deploy\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-21x-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenJPA-21x-docs\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-21x-docs/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenJPA-221x\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-221x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenJPA-221x-deploy\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-221x-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenJPA-22x\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-22x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenJPA-22x-deploy\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-22x-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenJPA-EclipsePlugin-trunk\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-EclipsePlugin-trunk/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"OpenJPA-trunk\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenJPA-trunk-deploy\",\n      \"url\" : \"https://builds.apache.org/job/OpenJPA-trunk-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"openmeetings\",\n      \"url\" : \"https://builds.apache.org/job/openmeetings/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenMeetings 2.0\",\n      \"url\" : \"https://builds.apache.org/job/OpenMeetings%202.0/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenMeetings ATutor Plugin\",\n      \"url\" : \"https://builds.apache.org/job/OpenMeetings%20ATutor%20Plugin/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenMeetings Bitrix Plugin\",\n      \"url\" : \"https://builds.apache.org/job/OpenMeetings%20Bitrix%20Plugin/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenMeetings Drupal 7.x Plugin\",\n      \"url\" : \"https://builds.apache.org/job/OpenMeetings%20Drupal%207.x%20Plugin/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenMeetings Joomla Plugin\",\n      \"url\" : \"https://builds.apache.org/job/OpenMeetings%20Joomla%20Plugin/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenMeetings Moodle Plugin\",\n      \"url\" : \"https://builds.apache.org/job/OpenMeetings%20Moodle%20Plugin/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenMeetings SugarCRM Plugin\",\n      \"url\" : \"https://builds.apache.org/job/OpenMeetings%20SugarCRM%20Plugin/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenMeetings Teambox Plugin\",\n      \"url\" : \"https://builds.apache.org/job/OpenMeetings%20Teambox%20Plugin/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenMeetings Zimbra Plugin\",\n      \"url\" : \"https://builds.apache.org/job/OpenMeetings%20Zimbra%20Plugin/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenNLP\",\n      \"url\" : \"https://builds.apache.org/job/OpenNLP/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenWebBeans-1.1.x-deploy\",\n      \"url\" : \"https://builds.apache.org/job/OpenWebBeans-1.1.x-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenWebBeans-trunk\",\n      \"url\" : \"https://builds.apache.org/job/OpenWebBeans-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenWebBeans-trunk-deploy\",\n      \"url\" : \"https://builds.apache.org/job/OpenWebBeans-trunk-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenWebBeans_1.0.x\",\n      \"url\" : \"https://builds.apache.org/job/OpenWebBeans_1.0.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"OpenWebBeans_1.1.x\",\n      \"url\" : \"https://builds.apache.org/job/OpenWebBeans_1.1.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"org.apache.kato\",\n      \"url\" : \"https://builds.apache.org/job/org.apache.kato/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"org.apache.kato.eclipse\",\n      \"url\" : \"https://builds.apache.org/job/org.apache.kato.eclipse/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"org.apache.kato.rc1\",\n      \"url\" : \"https://builds.apache.org/job/org.apache.kato.rc1/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"PDFBox-ant\",\n      \"url\" : \"https://builds.apache.org/job/PDFBox-ant/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"PDFBox-trunk\",\n      \"url\" : \"https://builds.apache.org/job/PDFBox-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Pig-0.9\",\n      \"url\" : \"https://builds.apache.org/job/Pig-0.9/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Pig-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Pig-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Pig-trunk-commit\",\n      \"url\" : \"https://builds.apache.org/job/Pig-trunk-commit/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Pivot-maintenance\",\n      \"url\" : \"https://builds.apache.org/job/Pivot-maintenance/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Pivot-maintenance on Java 7\",\n      \"url\" : \"https://builds.apache.org/job/Pivot-maintenance%20on%20Java%207/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Pivot-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Pivot-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Pivot-trunk on Java 7\",\n      \"url\" : \"https://builds.apache.org/job/Pivot-trunk%20on%20Java%207/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"POI\",\n      \"url\" : \"https://builds.apache.org/job/POI/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-applications-dbbrowser-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-applications-dbbrowser-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-applications-demo-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-applications-demo-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-applications-gems-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-applications-gems-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-applications-logging-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-applications-logging-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-applications-pom-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-applications-pom-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-applications-rss-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-applications-rss-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-applications-webcontent-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-applications-webcontent-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-bridges-common-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-bridges-common-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-bridges-pom-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-bridges-pom-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-bridges-script-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-bridges-script-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-bridges-velocity-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-bridges-velocity-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-jetspeed-2-applications-j2-admin-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-jetspeed-2-applications-j2-admin-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-jetspeed-2-portal-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-jetspeed-2-portal-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-pluto-2.0.x\",\n      \"url\" : \"https://builds.apache.org/job/portals-pluto-2.0.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-pluto-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-pluto-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portals-pom-trunk\",\n      \"url\" : \"https://builds.apache.org/job/portals-pom-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portlet-bridge-api-documentation-1.0\",\n      \"url\" : \"https://builds.apache.org/job/portlet-bridge-api-documentation-1.0/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portlet-bridge-api-documentation-2.0\",\n      \"url\" : \"https://builds.apache.org/job/portlet-bridge-api-documentation-2.0/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"portlet-bridge-core-1.0\",\n      \"url\" : \"https://builds.apache.org/job/portlet-bridge-core-1.0/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"portlet-bridge-core-2.0\",\n      \"url\" : \"https://builds.apache.org/job/portlet-bridge-core-2.0/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"portlet-bridge-core-3.0\",\n      \"url\" : \"https://builds.apache.org/job/portlet-bridge-core-3.0/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"portlet-bridge-master-pom\",\n      \"url\" : \"https://builds.apache.org/job/portlet-bridge-master-pom/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"postage-trunk\",\n      \"url\" : \"https://builds.apache.org/job/postage-trunk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"postage-trunk-m2\",\n      \"url\" : \"https://builds.apache.org/job/postage-trunk-m2/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"PreCommit-Admin\",\n      \"url\" : \"https://builds.apache.org/job/PreCommit-Admin/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"PreCommit-FLUME-Build\",\n      \"url\" : \"https://builds.apache.org/job/PreCommit-FLUME-Build/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"PreCommit-GIRAPH-Build\",\n      \"url\" : \"https://builds.apache.org/job/PreCommit-GIRAPH-Build/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"PreCommit-HADOOP-Build\",\n      \"url\" : \"https://builds.apache.org/job/PreCommit-HADOOP-Build/\",\n      \"color\" : \"red_anime\"\n    },\n    {\n      \"name\" : \"PreCommit-HADOOP-Build-Ant-IVY\",\n      \"url\" : \"https://builds.apache.org/job/PreCommit-HADOOP-Build-Ant-IVY/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"PreCommit-HBASE-Build\",\n      \"url\" : \"https://builds.apache.org/job/PreCommit-HBASE-Build/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"PreCommit-HDFS-Build\",\n      \"url\" : \"https://builds.apache.org/job/PreCommit-HDFS-Build/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"PreCommit-MAPREDUCE-Build\",\n      \"url\" : \"https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"PreCommit-PIG-Build\",\n      \"url\" : \"https://builds.apache.org/job/PreCommit-PIG-Build/\",\n      \"color\" : \"grey\"\n    },\n    {\n      \"name\" : \"PreCommit-YARN-Build\",\n      \"url\" : \"https://builds.apache.org/job/PreCommit-YARN-Build/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"PreCommit-ZOOKEEPER-Build\",\n      \"url\" : \"https://builds.apache.org/job/PreCommit-ZOOKEEPER-Build/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"protoc-version\",\n      \"url\" : \"https://builds.apache.org/job/protoc-version/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"protocols-trunk\",\n      \"url\" : \"https://builds.apache.org/job/protocols-trunk/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"protocols-trunk-site\",\n      \"url\" : \"https://builds.apache.org/job/protocols-trunk-site/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"python-test\",\n      \"url\" : \"https://builds.apache.org/job/python-test/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Qpid-Java-Artefact-Release\",\n      \"url\" : \"https://builds.apache.org/job/Qpid-Java-Artefact-Release/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Qpid-Java-Artefact-Release-0.20\",\n      \"url\" : \"https://builds.apache.org/job/Qpid-Java-Artefact-Release-0.20/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Qpid-Java-Cpp-Test\",\n      \"url\" : \"https://builds.apache.org/job/Qpid-Java-Cpp-Test/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Qpid-Java-Java-BDB-TestMatrix\",\n      \"url\" : \"https://builds.apache.org/job/Qpid-Java-Java-BDB-TestMatrix/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Qpid-Java-Java-DBY-TestMatrix\",\n      \"url\" : \"https://builds.apache.org/job/Qpid-Java-Java-DBY-TestMatrix/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Qpid-Java-Java-MMS-TestMatrix\",\n      \"url\" : \"https://builds.apache.org/job/Qpid-Java-Java-MMS-TestMatrix/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Qpid-Java-Java-Test-0.20\",\n      \"url\" : \"https://builds.apache.org/job/Qpid-Java-Java-Test-0.20/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Qpid-Java-Java-Test-IBMJDK1.6\",\n      \"url\" : \"https://builds.apache.org/job/Qpid-Java-Java-Test-IBMJDK1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Qpid-Java-Java-Test-JDK1.7\",\n      \"url\" : \"https://builds.apache.org/job/Qpid-Java-Java-Test-JDK1.7/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Qpid-proton-j\",\n      \"url\" : \"https://builds.apache.org/job/Qpid-proton-j/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Qpid-proton-j-Deploy\",\n      \"url\" : \"https://builds.apache.org/job/Qpid-proton-j-Deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Qpid-Python-Cpp-Test\",\n      \"url\" : \"https://builds.apache.org/job/Qpid-Python-Cpp-Test/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Qpid-Python-Java-Test\",\n      \"url\" : \"https://builds.apache.org/job/Qpid-Python-Java-Test/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Rampart\",\n      \"url\" : \"https://builds.apache.org/job/Rampart/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"rampart-1.5\",\n      \"url\" : \"https://builds.apache.org/job/rampart-1.5/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"rampart-1.6\",\n      \"url\" : \"https://builds.apache.org/job/rampart-1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"rat-jdk-1.5-maven-2\",\n      \"url\" : \"https://builds.apache.org/job/rat-jdk-1.5-maven-2/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"rave-master-pom-trunk\",\n      \"url\" : \"https://builds.apache.org/job/rave-master-pom-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"rave-project-trunk\",\n      \"url\" : \"https://builds.apache.org/job/rave-project-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Red5 Trunk\",\n      \"url\" : \"https://builds.apache.org/job/Red5%20Trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"redback-components\",\n      \"url\" : \"https://builds.apache.org/job/redback-components/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"redback-components-1.7\",\n      \"url\" : \"https://builds.apache.org/job/redback-components-1.7/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"redback-core\",\n      \"url\" : \"https://builds.apache.org/job/redback-core/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"redback-core-1.7\",\n      \"url\" : \"https://builds.apache.org/job/redback-core-1.7/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"replay_extcdi117\",\n      \"url\" : \"https://builds.apache.org/job/replay_extcdi117/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"River-dev-jdk6\",\n      \"url\" : \"https://builds.apache.org/job/River-dev-jdk6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"River-dev-jdk7\",\n      \"url\" : \"https://builds.apache.org/job/River-dev-jdk7/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"River-QA-arm\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-arm/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"River-QA-bsd\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-bsd/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"River-QA-bsd-jdk7-skunk\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-bsd-jdk7-skunk/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"River-QA-J9\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-J9/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"River-QA-matrix\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-matrix/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"River-QA-OpenJDK\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-OpenJDK/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"River-QA-osx\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-osx/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"river-qa-refactor-arm\",\n      \"url\" : \"https://builds.apache.org/job/river-qa-refactor-arm/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"river-qa-refactor-jdk7\",\n      \"url\" : \"https://builds.apache.org/job/river-qa-refactor-jdk7/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"river-qa-refactor-windows\",\n      \"url\" : \"https://builds.apache.org/job/river-qa-refactor-windows/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"river-qa-refactoring\",\n      \"url\" : \"https://builds.apache.org/job/river-qa-refactoring/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"river-qa-refactoring-solaris\",\n      \"url\" : \"https://builds.apache.org/job/river-qa-refactoring-solaris/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"River-QA-solaris\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-solaris/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"River-QA-tree\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-tree/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"River-QA-ubuntu-jdk6\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-ubuntu-jdk6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"River-QA-ubuntu-jdk7\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-ubuntu-jdk7/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"River-QA-ubuntu-jdk7-skunk\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-ubuntu-jdk7-skunk/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"River-QA-ubuntu-openjdk\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-ubuntu-openjdk/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"River-QA-windows\",\n      \"url\" : \"https://builds.apache.org/job/River-QA-windows/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"River-tck-jdk7\",\n      \"url\" : \"https://builds.apache.org/job/River-tck-jdk7/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"River-trunk-jdk6\",\n      \"url\" : \"https://builds.apache.org/job/River-trunk-jdk6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"River-trunk-jdk7\",\n      \"url\" : \"https://builds.apache.org/job/River-trunk-jdk7/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"River-verify\",\n      \"url\" : \"https://builds.apache.org/job/River-verify/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"River-verify-generics\",\n      \"url\" : \"https://builds.apache.org/job/River-verify-generics/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Roller-For-JavaEE6\",\n      \"url\" : \"https://builds.apache.org/job/Roller-For-JavaEE6/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Roller-For-JBoss\",\n      \"url\" : \"https://builds.apache.org/job/Roller-For-JBoss/\",\n      \"color\" : \"blue_anime\"\n    },\n    {\n      \"name\" : \"Roller-For-Tomcat\",\n      \"url\" : \"https://builds.apache.org/job/Roller-For-Tomcat/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"sandesha2-1.4\",\n      \"url\" : \"https://builds.apache.org/job/sandesha2-1.4/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"sandesha2-1.6\",\n      \"url\" : \"https://builds.apache.org/job/sandesha2-1.6/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"sandesha2-trunk\",\n      \"url\" : \"https://builds.apache.org/job/sandesha2-trunk/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"santuario-java-1.4.x-fixes\",\n      \"url\" : \"https://builds.apache.org/job/santuario-java-1.4.x-fixes/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"santuario-java-1.5.x-fixes\",\n      \"url\" : \"https://builds.apache.org/job/santuario-java-1.5.x-fixes/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"santuario-java-trunk\",\n      \"url\" : \"https://builds.apache.org/job/santuario-java-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Servicemix-Archetypes\",\n      \"url\" : \"https://builds.apache.org/job/Servicemix-Archetypes/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"ServiceMix-Bundles\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-Bundles/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ServiceMix-Components\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-Components/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ServiceMix-Components-2011.02.x\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-Components-2011.02.x/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"ServiceMix-Components-2011.02.x-Deploy\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-Components-2011.02.x-Deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ServiceMix-Components-Deploy\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-Components-Deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ServiceMix-Docs\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-Docs/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"ServiceMix-Features\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-Features/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"ServiceMix-Features-4.4.x\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-Features-4.4.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ServiceMix-Features-Deploy\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-Features-Deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ServiceMix-NMR\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-NMR/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ServiceMix-NMR-Deploy\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-NMR-Deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ServiceMix-Plugins\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-Plugins/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ServiceMix-POM\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-POM/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ServiceMix-Specs\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-Specs/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ServiceMix-Utils\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix-Utils/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ServiceMix3\",\n      \"url\" : \"https://builds.apache.org/job/ServiceMix3/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Shindig\",\n      \"url\" : \"https://builds.apache.org/job/Shindig/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"Shindig Assembly\",\n      \"url\" : \"https://builds.apache.org/job/Shindig%20Assembly/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Shindig Trunk (IBM 1.6)\",\n      \"url\" : \"https://builds.apache.org/job/Shindig%20Trunk%20(IBM%201.6)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Shindig Trunk (JDK 1.5)\",\n      \"url\" : \"https://builds.apache.org/job/Shindig%20Trunk%20(JDK%201.5)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Shindig Trunk (JDK 1.6)\",\n      \"url\" : \"https://builds.apache.org/job/Shindig%20Trunk%20(JDK%201.6)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Shindig Trunk (JDK 1.7)\",\n      \"url\" : \"https://builds.apache.org/job/Shindig%20Trunk%20(JDK%201.7)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Shiro\",\n      \"url\" : \"https://builds.apache.org/job/Shiro/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"sis-jdk7\",\n      \"url\" : \"https://builds.apache.org/job/sis-jdk7/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"sis-trunk\",\n      \"url\" : \"https://builds.apache.org/job/sis-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"sling-contrib-1.6\",\n      \"url\" : \"https://builds.apache.org/job/sling-contrib-1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"sling-samples-1.5\",\n      \"url\" : \"https://builds.apache.org/job/sling-samples-1.5/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"sling-trunk-1.5\",\n      \"url\" : \"https://builds.apache.org/job/sling-trunk-1.5/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"sling-trunk-1.6\",\n      \"url\" : \"https://builds.apache.org/job/sling-trunk-1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Solaris1\",\n      \"url\" : \"https://builds.apache.org/job/Solaris1/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Solaris2\",\n      \"url\" : \"https://builds.apache.org/job/Solaris2/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Solr-Artifacts-4.x\",\n      \"url\" : \"https://builds.apache.org/job/Solr-Artifacts-4.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Solr-Artifacts-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Solr-Artifacts-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"SpamAssassin-3.3.x\",\n      \"url\" : \"https://builds.apache.org/job/SpamAssassin-3.3.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"SpamAssassin-trunk\",\n      \"url\" : \"https://builds.apache.org/job/SpamAssassin-trunk/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"SpamAssassin-trunk-FreeBSD\",\n      \"url\" : \"https://builds.apache.org/job/SpamAssassin-trunk-FreeBSD/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Sqoop-ant-jdk-1.6-hadoop100\",\n      \"url\" : \"https://builds.apache.org/job/Sqoop-ant-jdk-1.6-hadoop100/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Sqoop-ant-jdk-1.6-hadoop20\",\n      \"url\" : \"https://builds.apache.org/job/Sqoop-ant-jdk-1.6-hadoop20/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Sqoop-ant-jdk-1.6-hadoop200\",\n      \"url\" : \"https://builds.apache.org/job/Sqoop-ant-jdk-1.6-hadoop200/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Sqoop-ant-jdk-1.6-hadoop23\",\n      \"url\" : \"https://builds.apache.org/job/Sqoop-ant-jdk-1.6-hadoop23/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Sqoop-ant-jdk-1.7-hadoop200\",\n      \"url\" : \"https://builds.apache.org/job/Sqoop-ant-jdk-1.7-hadoop200/\",\n      \"color\" : \"grey\"\n    },\n    {\n      \"name\" : \"Sqoop2-hadoop100\",\n      \"url\" : \"https://builds.apache.org/job/Sqoop2-hadoop100/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"Sqoop2-hadoop200\",\n      \"url\" : \"https://builds.apache.org/job/Sqoop2-hadoop200/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"stanbol-trunk-1.6\",\n      \"url\" : \"https://builds.apache.org/job/stanbol-trunk-1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"stdcxx-4.2.2-12d-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/stdcxx-4.2.2-12d-ubuntu/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"stdcxx-4.2.2-12S-freebsd\",\n      \"url\" : \"https://builds.apache.org/job/stdcxx-4.2.2-12S-freebsd/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"stdcxx-4.2.2-15D-windows\",\n      \"url\" : \"https://builds.apache.org/job/stdcxx-4.2.2-15D-windows/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"stdcxx-4.2.2-15s-solaris\",\n      \"url\" : \"https://builds.apache.org/job/stdcxx-4.2.2-15s-solaris/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"struts-annotations\",\n      \"url\" : \"https://builds.apache.org/job/struts-annotations/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"struts-master\",\n      \"url\" : \"https://builds.apache.org/job/struts-master/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"struts1\",\n      \"url\" : \"https://builds.apache.org/job/struts1/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Struts2-3-x\",\n      \"url\" : \"https://builds.apache.org/job/Struts2-3-x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Struts2-JDK5\",\n      \"url\" : \"https://builds.apache.org/job/Struts2-JDK5/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Struts2-JDK6\",\n      \"url\" : \"https://builds.apache.org/job/Struts2-JDK6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Struts2-JDK7\",\n      \"url\" : \"https://builds.apache.org/job/Struts2-JDK7/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"subversion-1.6.x-solaris\",\n      \"url\" : \"https://builds.apache.org/job/subversion-1.6.x-solaris/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"subversion-1.6.x-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/subversion-1.6.x-ubuntu/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"subversion-doxygen\",\n      \"url\" : \"https://builds.apache.org/job/subversion-doxygen/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"subversion-javadoc\",\n      \"url\" : \"https://builds.apache.org/job/subversion-javadoc/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"subversion-trunk-solaris\",\n      \"url\" : \"https://builds.apache.org/job/subversion-trunk-solaris/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"subversion-trunk-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/subversion-trunk-ubuntu/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"subversion-trunk-windows\",\n      \"url\" : \"https://builds.apache.org/job/subversion-trunk-windows/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Synapse - Trunk\",\n      \"url\" : \"https://builds.apache.org/job/Synapse%20-%20Trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Syncope-1_0_X\",\n      \"url\" : \"https://builds.apache.org/job/Syncope-1_0_X/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Syncope-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Syncope-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Syncope-windows\",\n      \"url\" : \"https://builds.apache.org/job/Syncope-windows/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"taglib-extended\",\n      \"url\" : \"https://builds.apache.org/job/taglib-extended/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"taglib-parent\",\n      \"url\" : \"https://builds.apache.org/job/taglib-parent/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"taglib-rdc\",\n      \"url\" : \"https://builds.apache.org/job/taglib-rdc/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"taglib-standard\",\n      \"url\" : \"https://builds.apache.org/job/taglib-standard/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"tapestry-4.1-trunk\",\n      \"url\" : \"https://builds.apache.org/job/tapestry-4.1-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"tapestry-5.1-freestyle\",\n      \"url\" : \"https://builds.apache.org/job/tapestry-5.1-freestyle/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"tapestry-trunk-freestyle\",\n      \"url\" : \"https://builds.apache.org/job/tapestry-trunk-freestyle/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Test\",\n      \"url\" : \"https://builds.apache.org/job/Test/\",\n      \"color\" : \"grey\"\n    },\n    {\n      \"name\" : \"test-ulimit\",\n      \"url\" : \"https://builds.apache.org/job/test-ulimit/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"TestBuilds\",\n      \"url\" : \"https://builds.apache.org/job/TestBuilds/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Thrift\",\n      \"url\" : \"https://builds.apache.org/job/Thrift/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Thrift-Compiler-Linux32\",\n      \"url\" : \"https://builds.apache.org/job/Thrift-Compiler-Linux32/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Thrift-Compiler-Linux64\",\n      \"url\" : \"https://builds.apache.org/job/Thrift-Compiler-Linux64/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Thrift-Compiler-Windows\",\n      \"url\" : \"https://builds.apache.org/job/Thrift-Compiler-Windows/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Thrift-cpp\",\n      \"url\" : \"https://builds.apache.org/job/Thrift-cpp/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Thrift-Debian-Packages\",\n      \"url\" : \"https://builds.apache.org/job/Thrift-Debian-Packages/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Thrift-env-test\",\n      \"url\" : \"https://builds.apache.org/job/Thrift-env-test/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Thrift-env-test_arm\",\n      \"url\" : \"https://builds.apache.org/job/Thrift-env-test_arm/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Thrift-erlang\",\n      \"url\" : \"https://builds.apache.org/job/Thrift-erlang/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Thrift-freebsd\",\n      \"url\" : \"https://builds.apache.org/job/Thrift-freebsd/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Thrift-llvm\",\n      \"url\" : \"https://builds.apache.org/job/Thrift-llvm/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Thrift-osx\",\n      \"url\" : \"https://builds.apache.org/job/Thrift-osx/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Thrift-Windows\",\n      \"url\" : \"https://builds.apache.org/job/Thrift-Windows/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Thrift-Windows-env-test\",\n      \"url\" : \"https://builds.apache.org/job/Thrift-Windows-env-test/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Thrift_arm\",\n      \"url\" : \"https://builds.apache.org/job/Thrift_arm/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Tika-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Tika-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"tobago-1.0.x\",\n      \"url\" : \"https://builds.apache.org/job/tobago-1.0.x/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"tobago-1.0.x-deploy\",\n      \"url\" : \"https://builds.apache.org/job/tobago-1.0.x-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"tobago-1.5.x\",\n      \"url\" : \"https://builds.apache.org/job/tobago-1.5.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"tobago-1.5.x-deploy\",\n      \"url\" : \"https://builds.apache.org/job/tobago-1.5.x-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"tobago-trunk\",\n      \"url\" : \"https://builds.apache.org/job/tobago-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"tobago-trunk-deploy\",\n      \"url\" : \"https://builds.apache.org/job/tobago-trunk-deploy/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Tomcat-7.x\",\n      \"url\" : \"https://builds.apache.org/job/Tomcat-7.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Tomcat-7.x-Maven\",\n      \"url\" : \"https://builds.apache.org/job/Tomcat-7.x-Maven/\",\n      \"color\" : \"yellow\"\n    },\n    {\n      \"name\" : \"TomcatMavenPlugin-mvn2.x\",\n      \"url\" : \"https://builds.apache.org/job/TomcatMavenPlugin-mvn2.x/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"TomcatMavenPlugin-mvn3.x\",\n      \"url\" : \"https://builds.apache.org/job/TomcatMavenPlugin-mvn3.x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"torque4-test-project-derby\",\n      \"url\" : \"https://builds.apache.org/job/torque4-test-project-derby/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"torque4-test-project-hsqldb\",\n      \"url\" : \"https://builds.apache.org/job/torque4-test-project-hsqldb/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Torque4-trunk\",\n      \"url\" : \"https://builds.apache.org/job/Torque4-trunk/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"traffic-trunk\",\n      \"url\" : \"https://builds.apache.org/job/traffic-trunk/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Trinidad Core 1.0.x (sanity)\",\n      \"url\" : \"https://builds.apache.org/job/Trinidad%20Core%201.0.x%20(sanity)/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Trinidad Core 1.2.x (sanity)\",\n      \"url\" : \"https://builds.apache.org/job/Trinidad%20Core%201.2.x%20(sanity)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Trinidad Core 2.0.x (sanity)\",\n      \"url\" : \"https://builds.apache.org/job/Trinidad%20Core%202.0.x%20(sanity)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Trinidad Core 2.0.x (snapshot)\",\n      \"url\" : \"https://builds.apache.org/job/Trinidad%20Core%202.0.x%20(snapshot)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Trinidad Core Trunk (sanity)\",\n      \"url\" : \"https://builds.apache.org/job/Trinidad%20Core%20Trunk%20(sanity)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Trinidad Core Trunk (snapshot)\",\n      \"url\" : \"https://builds.apache.org/job/Trinidad%20Core%20Trunk%20(snapshot)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Trinidad Plugins 1.2.x (snapshot)\",\n      \"url\" : \"https://builds.apache.org/job/Trinidad%20Plugins%201.2.x%20(snapshot)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Trinidad Plugins 2.0.x (snapshot)\",\n      \"url\" : \"https://builds.apache.org/job/Trinidad%20Plugins%202.0.x%20(snapshot)/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Trinidad Site\",\n      \"url\" : \"https://builds.apache.org/job/Trinidad%20Site/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Turbine Core\",\n      \"url\" : \"https://builds.apache.org/job/Turbine%20Core/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Turbine Fulcrum\",\n      \"url\" : \"https://builds.apache.org/job/Turbine%20Fulcrum/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Tuscany-1x\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-1x/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Tuscany-2.0-Beta2-branch\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-2.0-Beta2-branch/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Tuscany-2.0-Beta2-tag\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-2.0-Beta2-tag/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Tuscany-2x\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-2x/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Tuscany-2x-all\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-2x-all/\",\n      \"color\" : \"grey\"\n    },\n    {\n      \"name\" : \"Tuscany-2x-compliance\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-2x-compliance/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Tuscany-2x-deploy\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-2x-deploy/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Tuscany-2x-distributions\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-2x-distributions/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Tuscany-2x-temp\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-2x-temp/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Tuscany-2x-tests\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-2x-tests/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"Tuscany-DAS\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-DAS/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Tuscany-jms-test-runner\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-jms-test-runner/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Tuscany-oasis-jms-contributions\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-oasis-jms-contributions/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Tuscany-quick-all-distro\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-quick-all-distro/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Tuscany-SDO\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-SDO/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Tuscany-test\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-test/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Tuscany-test2\",\n      \"url\" : \"https://builds.apache.org/job/Tuscany-test2/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Ubuntu1\",\n      \"url\" : \"https://builds.apache.org/job/Ubuntu1/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Ubuntu2\",\n      \"url\" : \"https://builds.apache.org/job/Ubuntu2/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"UIMA Addons\",\n      \"url\" : \"https://builds.apache.org/job/UIMA%20Addons/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"UIMA-AS\",\n      \"url\" : \"https://builds.apache.org/job/UIMA-AS/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"UIMA-SDK\",\n      \"url\" : \"https://builds.apache.org/job/UIMA-SDK/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"UIMA-TextMarker\",\n      \"url\" : \"https://builds.apache.org/job/UIMA-TextMarker/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"UIMA-uimaFIT\",\n      \"url\" : \"https://builds.apache.org/job/UIMA-uimaFIT/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"UIMAJ SDK java7\",\n      \"url\" : \"https://builds.apache.org/job/UIMAJ%20SDK%20java7/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"vysper-trunk-harmony1.5-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/vysper-trunk-harmony1.5-ubuntu/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"vysper-trunk-jdk1.5-ibm-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/vysper-trunk-jdk1.5-ibm-ubuntu/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"vysper-trunk-jdk1.5-solaris\",\n      \"url\" : \"https://builds.apache.org/job/vysper-trunk-jdk1.5-solaris/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"vysper-trunk-jdk1.5-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/vysper-trunk-jdk1.5-ubuntu/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"vysper-trunk-jdk1.6-ibm-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/vysper-trunk-jdk1.6-ibm-ubuntu/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"vysper-trunk-jdk1.6-solaris\",\n      \"url\" : \"https://builds.apache.org/job/vysper-trunk-jdk1.6-solaris/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"vysper-trunk-jdk1.6-ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/vysper-trunk-jdk1.6-ubuntu/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"vysper-trunk-jdk1.6-windows\",\n      \"url\" : \"https://builds.apache.org/job/vysper-trunk-jdk1.6-windows/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"wagon-benchmarks\",\n      \"url\" : \"https://builds.apache.org/job/wagon-benchmarks/\",\n      \"color\" : \"aborted\"\n    },\n    {\n      \"name\" : \"wave-all_tests\",\n      \"url\" : \"https://builds.apache.org/job/wave-all_tests/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"wave-small_tests\",\n      \"url\" : \"https://builds.apache.org/job/wave-small_tests/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Whirr-Solaris\",\n      \"url\" : \"https://builds.apache.org/job/Whirr-Solaris/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Whirr-Ubuntu\",\n      \"url\" : \"https://builds.apache.org/job/Whirr-Ubuntu/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Windows1\",\n      \"url\" : \"https://builds.apache.org/job/Windows1/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"Wink-Trunk-JDK1.5\",\n      \"url\" : \"https://builds.apache.org/job/Wink-Trunk-JDK1.5/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Wink-Trunk-JDK1.5-itests\",\n      \"url\" : \"https://builds.apache.org/job/Wink-Trunk-JDK1.5-itests/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"Wink-Trunk-JDK1.6\",\n      \"url\" : \"https://builds.apache.org/job/Wink-Trunk-JDK1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"Wink-Trunk-JDK1.6-itests\",\n      \"url\" : \"https://builds.apache.org/job/Wink-Trunk-JDK1.6-itests/\",\n      \"color\" : \"disabled\"\n    },\n    {\n      \"name\" : \"woden-trunk\",\n      \"url\" : \"https://builds.apache.org/job/woden-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ws-axiom-trunk\",\n      \"url\" : \"https://builds.apache.org/job/ws-axiom-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"wss4j-1.5\",\n      \"url\" : \"https://builds.apache.org/job/wss4j-1.5/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"wss4j-1.6\",\n      \"url\" : \"https://builds.apache.org/job/wss4j-1.6/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"wss4j-trunk\",\n      \"url\" : \"https://builds.apache.org/job/wss4j-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"xmlschema-1.4-branch-jdk15\",\n      \"url\" : \"https://builds.apache.org/job/xmlschema-1.4-branch-jdk15/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"xmlschema-trunk-eclipse-support\",\n      \"url\" : \"https://builds.apache.org/job/xmlschema-trunk-eclipse-support/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"xmlschema-trunk-jdk15\",\n      \"url\" : \"https://builds.apache.org/job/xmlschema-trunk-jdk15/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"ZooKeeper-3.4-WinVS2008_java\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper-3.4-WinVS2008_java/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"ZooKeeper-trunk\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper-trunk/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ZooKeeper-trunk-ibm6\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper-trunk-ibm6/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"ZooKeeper-trunk-jdk7\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper-trunk-jdk7/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ZooKeeper-trunk-openjdk7\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper-trunk-openjdk7/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ZooKeeper-trunk-solaris\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper-trunk-solaris/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"ZooKeeper-trunk-WinVS2008\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper-trunk-WinVS2008/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"ZooKeeper-trunk-WinVS2008_java\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper-trunk-WinVS2008_java/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"ZooKeeper_branch33\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper_branch33/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ZooKeeper_branch33_solaris\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper_branch33_solaris/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"ZooKeeper_branch34\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper_branch34/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ZooKeeper_branch34_jdk7\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper_branch34_jdk7/\",\n      \"color\" : \"red\"\n    },\n    {\n      \"name\" : \"ZooKeeper_branch34_openjdk7\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper_branch34_openjdk7/\",\n      \"color\" : \"blue\"\n    },\n    {\n      \"name\" : \"ZooKeeper_branch34_solaris\",\n      \"url\" : \"https://builds.apache.org/job/ZooKeeper_branch34_solaris/\",\n      \"color\" : \"aborted_anime\"\n    }\n  ],\n  \"overallLoad\" : {\n    \n  },\n  \"primaryView\" : {\n    \"name\" : \"All\",\n    \"url\" : \"https://builds.apache.org/\"\n  },\n  \"quietingDown\" : false,\n  \"slaveAgentPort\" : 0,\n  \"unlabeledLoad\" : {\n    \n  },\n  \"useCrumbs\" : true,\n  \"useSecurity\" : true,\n  \"views\" : [\n    {\n      \"name\" : \"All\",\n      \"url\" : \"https://builds.apache.org/\"\n    },\n    {\n      \"name\" : \"CloudStack\",\n      \"url\" : \"https://builds.apache.org/view/CloudStack/\"\n    },\n    {\n      \"name\" : \"Hadoop\",\n      \"url\" : \"https://builds.apache.org/view/Hadoop/\"\n    },\n    {\n      \"name\" : \"Onami\",\n      \"url\" : \"https://builds.apache.org/view/Onami/\"\n    }\n  ]\n}"
  },
  {
    "path": "testdata/github_events.json",
    "content": "[\n  {\n    \"type\": \"PushEvent\",\n    \"created_at\": \"2013-01-10T07:58:30Z\",\n    \"actor\": {\n      \"gravatar_id\": \"a7cec1f75a06a5f8ab53139515da5d99\",\n      \"login\": \"jathanism\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/a7cec1f75a06a5f8ab53139515da5d99?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/jathanism\",\n      \"id\": 138052\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/jathanism/trigger\",\n      \"id\": 6357414,\n      \"name\": \"jathanism/trigger\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"commits\": [\n        {\n          \"url\": \"https://api.github.com/repos/jathanism/trigger/commits/05570a3080693f6e55244e012b3b1ec59516c01b\",\n          \"message\": \"- SSH Channel data now initialized in base class (TriggerSSHChannelBase)\\n- New doc w/ checklist for adding new vendor support to Trigger.\",\n          \"distinct\": true,\n          \"sha\": \"05570a3080693f6e55244e012b3b1ec59516c01b\",\n          \"author\": {\n            \"email\": \"jathanism@aol.com\",\n            \"name\": \"jathanism\"\n          }\n        }\n      ],\n      \"distinct_size\": 1,\n      \"ref\": \"refs/heads/issue-22\",\n      \"push_id\": 134107894,\n      \"head\": \"05570a3080693f6e55244e012b3b1ec59516c01b\",\n      \"before\": \"7460e1588817b3f885fb4ec76ec2f08c7caf6385\",\n      \"size\": 1\n    },\n    \"id\": \"1652857722\"\n  },\n  {\n    \"type\": \"CreateEvent\",\n    \"created_at\": \"2013-01-10T07:58:29Z\",\n    \"actor\": {\n      \"gravatar_id\": \"51c8c8adbe8abff73c622a734afae4b0\",\n      \"login\": \"noahlu\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/51c8c8adbe8abff73c622a734afae4b0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/noahlu\",\n      \"id\": 1229684\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/noahlu/mockingbird\",\n      \"id\": 7536438,\n      \"name\": \"noahlu/mockingbird\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"description\": \"blog system\",\n      \"master_branch\": \"master\",\n      \"ref\": \"master\",\n      \"ref_type\": \"branch\"\n    },\n    \"id\": \"1652857721\"\n  },\n  {\n    \"type\": \"ForkEvent\",\n    \"created_at\": \"2013-01-10T07:58:29Z\",\n    \"actor\": {\n      \"gravatar_id\": \"053e38be1bd8b18bf8b1c26e11a797ff\",\n      \"login\": \"rtlong\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/053e38be1bd8b18bf8b1c26e11a797ff?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/rtlong\",\n      \"id\": 199912\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/Bluebie/digiusb.rb\",\n      \"id\": 7270403,\n      \"name\": \"Bluebie/digiusb.rb\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"forkee\": {\n        \"description\": \"A little ruby thing for talking to digiusb, like a serial port or like a telnet (whichever!)\",\n        \"fork\": true,\n        \"url\": \"https://api.github.com/repos/rtlong/digiusb.rb\",\n        \"language\": \"Ruby\",\n        \"stargazers_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/stargazers\",\n        \"clone_url\": \"https://github.com/rtlong/digiusb.rb.git\",\n        \"tags_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/tags{/tag}\",\n        \"full_name\": \"rtlong/digiusb.rb\",\n        \"merges_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/merges\",\n        \"forks\": 0,\n        \"private\": false,\n        \"git_refs_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/git/refs{/sha}\",\n        \"archive_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/{archive_format}{/ref}\",\n        \"collaborators_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/collaborators{/collaborator}\",\n        \"owner\": {\n          \"url\": \"https://api.github.com/users/rtlong\",\n          \"gists_url\": \"https://api.github.com/users/rtlong/gists{/gist_id}\",\n          \"gravatar_id\": \"053e38be1bd8b18bf8b1c26e11a797ff\",\n          \"type\": \"User\",\n          \"avatar_url\": \"https://secure.gravatar.com/avatar/053e38be1bd8b18bf8b1c26e11a797ff?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n          \"subscriptions_url\": \"https://api.github.com/users/rtlong/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/rtlong/orgs\",\n          \"received_events_url\": \"https://api.github.com/users/rtlong/received_events\",\n          \"repos_url\": \"https://api.github.com/users/rtlong/repos\",\n          \"login\": \"rtlong\",\n          \"id\": 199912,\n          \"starred_url\": \"https://api.github.com/users/rtlong/starred{/owner}{/repo}\",\n          \"events_url\": \"https://api.github.com/users/rtlong/events{/privacy}\",\n          \"followers_url\": \"https://api.github.com/users/rtlong/followers\",\n          \"following_url\": \"https://api.github.com/users/rtlong/following\"\n        },\n        \"languages_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/languages\",\n        \"trees_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/git/trees{/sha}\",\n        \"labels_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/labels{/name}\",\n        \"html_url\": \"https://github.com/rtlong/digiusb.rb\",\n        \"pushed_at\": \"2013-01-08T13:23:08Z\",\n        \"created_at\": \"2013-01-10T07:58:28Z\",\n        \"has_issues\": false,\n        \"forks_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/forks\",\n        \"branches_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/branches{/branch}\",\n        \"commits_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/commits{/sha}\",\n        \"notifications_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/notifications{?since,all,participating}\",\n        \"open_issues\": 0,\n        \"contents_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/contents/{+path}\",\n        \"blobs_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/git/blobs{/sha}\",\n        \"issues_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/issues{/number}\",\n        \"compare_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/compare/{base}...{head}\",\n        \"issue_events_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/issues/events{/number}\",\n        \"name\": \"digiusb.rb\",\n        \"updated_at\": \"2013-01-10T07:58:28Z\",\n        \"statuses_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/statuses/{sha}\",\n        \"forks_count\": 0,\n        \"assignees_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/assignees{/user}\",\n        \"ssh_url\": \"git@github.com:rtlong/digiusb.rb.git\",\n        \"public\": true,\n        \"has_wiki\": true,\n        \"subscribers_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/subscribers\",\n        \"mirror_url\": null,\n        \"watchers_count\": 0,\n        \"id\": 7536836,\n        \"has_downloads\": true,\n        \"git_commits_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/git/commits{/sha}\",\n        \"downloads_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/downloads\",\n        \"pulls_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/pulls{/number}\",\n        \"homepage\": null,\n        \"issue_comment_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/issues/comments/{number}\",\n        \"hooks_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/hooks\",\n        \"subscription_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/subscription\",\n        \"milestones_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/milestones{/number}\",\n        \"svn_url\": \"https://github.com/rtlong/digiusb.rb\",\n        \"events_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/events\",\n        \"git_tags_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/git/tags{/sha}\",\n        \"teams_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/teams\",\n        \"comments_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/comments{/number}\",\n        \"open_issues_count\": 0,\n        \"keys_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/keys{/key_id}\",\n        \"git_url\": \"git://github.com/rtlong/digiusb.rb.git\",\n        \"contributors_url\": \"https://api.github.com/repos/rtlong/digiusb.rb/contributors\",\n        \"size\": 280,\n        \"watchers\": 0\n      }\n    },\n    \"id\": \"1652857715\"\n  },\n  {\n    \"type\": \"WatchEvent\",\n    \"created_at\": \"2013-01-10T07:58:29Z\",\n    \"actor\": {\n      \"gravatar_id\": \"7641a96810be55debc2a1515ff0b6c2a\",\n      \"login\": \"Armaklan\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/7641a96810be55debc2a1515ff0b6c2a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/Armaklan\",\n      \"id\": 2310432\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/scrooloose/syntastic\",\n      \"id\": 248523,\n      \"name\": \"scrooloose/syntastic\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"action\": \"started\"\n    },\n    \"id\": \"1652857714\"\n  },\n  {\n    \"type\": \"PushEvent\",\n    \"created_at\": \"2013-01-10T07:58:28Z\",\n    \"actor\": {\n      \"gravatar_id\": \"3c4478e6ae6c60b73d21c9fa0d1785ea\",\n      \"login\": \"ChrisMissal\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/3c4478e6ae6c60b73d21c9fa0d1785ea?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/ChrisMissal\",\n      \"id\": 67798\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/ChrisMissal/NugetStatus\",\n      \"id\": 3873737,\n      \"name\": \"ChrisMissal/NugetStatus\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"commits\": [\n        {\n          \"url\": \"https://api.github.com/repos/ChrisMissal/NugetStatus/commits/458203e8a5b2aea9fc71041bd82b5ee2df5324cd\",\n          \"message\": \"added images for build status\",\n          \"distinct\": true,\n          \"sha\": \"458203e8a5b2aea9fc71041bd82b5ee2df5324cd\",\n          \"author\": {\n            \"email\": \"chris.missal@gmail.com\",\n            \"name\": \"Chris Missal\"\n          }\n        }\n      ],\n      \"distinct_size\": 1,\n      \"ref\": \"refs/heads/master\",\n      \"push_id\": 134107891,\n      \"before\": \"b04e7f47bf97821ba0b1d71da6ed82b8eb22a435\",\n      \"head\": \"458203e8a5b2aea9fc71041bd82b5ee2df5324cd\",\n      \"size\": 1\n    },\n    \"id\": \"1652857713\"\n  },\n  {\n    \"type\": \"PushEvent\",\n    \"created_at\": \"2013-01-10T07:58:27Z\",\n    \"actor\": {\n      \"gravatar_id\": \"f8b3de3c77bce8a6b65841936fefe353\",\n      \"login\": \"markpiro\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/f8b3de3c77bce8a6b65841936fefe353?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/markpiro\",\n      \"id\": 362803\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/markpiro/muzicbaux\",\n      \"id\": 7496715,\n      \"name\": \"markpiro/muzicbaux\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"commits\": [\n        {\n          \"url\": \"https://api.github.com/repos/markpiro/muzicbaux/commits/bbbb56de64cb3c7c1d174546fb4e340c75bb8c0c\",\n          \"message\": \"auth callback change\",\n          \"distinct\": false,\n          \"sha\": \"bbbb56de64cb3c7c1d174546fb4e340c75bb8c0c\",\n          \"author\": {\n            \"email\": \"justbanter@gmail.com\",\n            \"name\": \"mark\"\n          }\n        }\n      ],\n      \"distinct_size\": 0,\n      \"ref\": \"refs/heads/gh-pages\",\n      \"push_id\": 134107890,\n      \"head\": \"bbbb56de64cb3c7c1d174546fb4e340c75bb8c0c\",\n      \"before\": \"b06a8ac52ce1e0a984c79a7a0d8e7a96e6674615\",\n      \"size\": 1\n    },\n    \"id\": \"1652857711\"\n  },\n  {\n    \"type\": \"WatchEvent\",\n    \"created_at\": \"2013-01-10T07:58:27Z\",\n    \"actor\": {\n      \"gravatar_id\": \"8001f021514ae09142731a7d00190512\",\n      \"login\": \"tmaybe\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/8001f021514ae09142731a7d00190512?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/tmaybe\",\n      \"id\": 546665\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/ubuwaits/beautiful-web-type\",\n      \"id\": 3159966,\n      \"name\": \"ubuwaits/beautiful-web-type\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"action\": \"started\"\n    },\n    \"id\": \"1652857705\"\n  },\n  {\n    \"type\": \"WatchEvent\",\n    \"created_at\": \"2013-01-10T07:58:26Z\",\n    \"actor\": {\n      \"gravatar_id\": \"6674c7cd4753478f1dddec7d3ca479e0\",\n      \"login\": \"neeckeloo\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/6674c7cd4753478f1dddec7d3ca479e0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/neeckeloo\",\n      \"id\": 1768645\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/pmsipilot/jquery-highchartTable-plugin\",\n      \"id\": 2986393,\n      \"name\": \"pmsipilot/jquery-highchartTable-plugin\"\n    },\n    \"public\": true,\n    \"org\": {\n      \"gravatar_id\": \"6f61ed1e3396060275238bd85c6bce45\",\n      \"login\": \"pmsipilot\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/6f61ed1e3396060275238bd85c6bce45?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png\",\n      \"url\": \"https://api.github.com/orgs/pmsipilot\",\n      \"id\": 1233777\n    },\n    \"payload\": {\n      \"action\": \"started\"\n    },\n    \"id\": \"1652857702\"\n  },\n  {\n    \"type\": \"WatchEvent\",\n    \"created_at\": \"2013-01-10T07:58:26Z\",\n    \"actor\": {\n      \"gravatar_id\": \"404c21b3964401b264bc0ccda001c8b5\",\n      \"login\": \"xyzgentoo\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/404c21b3964401b264bc0ccda001c8b5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/xyzgentoo\",\n      \"id\": 503440\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/takashisite/TSPopover\",\n      \"id\": 4324360,\n      \"name\": \"takashisite/TSPopover\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"action\": \"started\"\n    },\n    \"id\": \"1652857701\"\n  },\n  {\n    \"type\": \"PushEvent\",\n    \"created_at\": \"2013-01-10T07:58:23Z\",\n    \"actor\": {\n      \"gravatar_id\": \"34b251cf082c202fb3160b1afb810001\",\n      \"login\": \"janodvarko\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/34b251cf082c202fb3160b1afb810001?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/janodvarko\",\n      \"id\": 37785\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/firebug/firebug\",\n      \"id\": 900208,\n      \"name\": \"firebug/firebug\"\n    },\n    \"public\": true,\n    \"org\": {\n      \"gravatar_id\": \"22b746e34a570b90788b575588c4ce3e\",\n      \"login\": \"firebug\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/22b746e34a570b90788b575588c4ce3e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png\",\n      \"url\": \"https://api.github.com/orgs/firebug\",\n      \"id\": 386750\n    },\n    \"payload\": {\n      \"commits\": [\n        {\n          \"url\": \"https://api.github.com/repos/firebug/firebug/commits/2ce302eb2f4cf52963cdf0208a39193fc6f965a7\",\n          \"message\": \"FBTest: move script/4932/ test into the main test list\",\n          \"distinct\": true,\n          \"sha\": \"2ce302eb2f4cf52963cdf0208a39193fc6f965a7\",\n          \"author\": {\n            \"email\": \"odvarko@gmail.com\",\n            \"name\": \"Jan Odvarko\"\n          }\n        },\n        {\n          \"url\": \"https://api.github.com/repos/firebug/firebug/commits/30bbd75152df3069435f2f02d140962f1b880653\",\n          \"message\": \"Merge branch 'master' of github.com:firebug/firebug\",\n          \"distinct\": true,\n          \"sha\": \"30bbd75152df3069435f2f02d140962f1b880653\",\n          \"author\": {\n            \"email\": \"odvarko@gmail.com\",\n            \"name\": \"Jan Odvarko\"\n          }\n        }\n      ],\n      \"distinct_size\": 2,\n      \"ref\": \"refs/heads/master\",\n      \"push_id\": 134107888,\n      \"head\": \"30bbd75152df3069435f2f02d140962f1b880653\",\n      \"before\": \"bc2ea3c0978a178828b1dfa9229484f9b7ccb95e\",\n      \"size\": 2\n    },\n    \"id\": \"1652857699\"\n  },\n  {\n    \"type\": \"IssueCommentEvent\",\n    \"created_at\": \"2013-01-10T07:58:23Z\",\n    \"actor\": {\n      \"gravatar_id\": \"29f82ebe1801087f04de6aaae92e19ea\",\n      \"login\": \"pat\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/29f82ebe1801087f04de6aaae92e19ea?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/pat\",\n      \"id\": 4183\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/pat/thinking-sphinx\",\n      \"id\": 9525,\n      \"name\": \"pat/thinking-sphinx\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"issue\": {\n        \"user\": {\n          \"url\": \"https://api.github.com/users/lephyrius\",\n          \"gists_url\": \"https://api.github.com/users/lephyrius/gists{/gist_id}\",\n          \"gravatar_id\": \"ed0c8be5f65a0b1b77b9db7991f4ede1\",\n          \"type\": \"User\",\n          \"avatar_url\": \"https://secure.gravatar.com/avatar/ed0c8be5f65a0b1b77b9db7991f4ede1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n          \"subscriptions_url\": \"https://api.github.com/users/lephyrius/subscriptions\",\n          \"received_events_url\": \"https://api.github.com/users/lephyrius/received_events\",\n          \"organizations_url\": \"https://api.github.com/users/lephyrius/orgs\",\n          \"repos_url\": \"https://api.github.com/users/lephyrius/repos\",\n          \"login\": \"lephyrius\",\n          \"id\": 747215,\n          \"starred_url\": \"https://api.github.com/users/lephyrius/starred{/owner}{/repo}\",\n          \"events_url\": \"https://api.github.com/users/lephyrius/events{/privacy}\",\n          \"followers_url\": \"https://api.github.com/users/lephyrius/followers\",\n          \"following_url\": \"https://api.github.com/users/lephyrius/following\"\n        },\n        \"url\": \"https://api.github.com/repos/pat/thinking-sphinx/issues/415\",\n        \"labels\": [\n\n        ],\n        \"html_url\": \"https://github.com/pat/thinking-sphinx/issues/415\",\n        \"labels_url\": \"https://api.github.com/repos/pat/thinking-sphinx/issues/415/labels{/name}\",\n        \"pull_request\": {\n          \"html_url\": null,\n          \"patch_url\": null,\n          \"diff_url\": null\n        },\n        \"created_at\": \"2013-01-05T11:13:24Z\",\n        \"closed_at\": \"2013-01-05T17:28:50Z\",\n        \"milestone\": null,\n        \"title\": \"Migrating to TS3 got some error\",\n        \"body\": \"```\\r\\nundefined method `<<' for nil:NilClass\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/active_record/sql_source.rb:107:in `block in prepare_for_render'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/active_record/sql_source.rb:104:in `each'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/active_record/sql_source.rb:104:in `prepare_for_render'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/active_record/sql_source.rb:61:in `render'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/riddle-1.5.4/lib/riddle/configuration/index.rb:29:in `block in render'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/riddle-1.5.4/lib/riddle/configuration/index.rb:29:in `collect'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/riddle-1.5.4/lib/riddle/configuration/index.rb:29:in `render'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/core/index.rb:48:in `render'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/riddle-1.5.4/lib/riddle/configuration.rb:39:in `block in render'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/riddle-1.5.4/lib/riddle/configuration.rb:39:in `collect'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/riddle-1.5.4/lib/riddle/configuration.rb:39:in `render'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/configuration.rb:81:in `render'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/configuration.rb:87:in `block in render_to_file'\\r\\n.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/open-uri.rb:35:in `open'\\r\\n.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/open-uri.rb:35:in `open'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/configuration.rb:87:in `render_to_file'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/rake_interface.rb:4:in `configure'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/rake_interface.rb:31:in `index'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/tasks.rb:9:in `block (2 levels) in <top (required)>'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:228:in `call'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:228:in `block in execute'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:223:in `each'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:223:in `execute'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:166:in `block in invoke_with_call_chain'\\r\\n.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:159:in `invoke_with_call_chain'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:187:in `block in invoke_prerequisites'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:185:in `each'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:185:in `invoke_prerequisites'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:165:in `block in invoke_with_call_chain'\\r\\n.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:159:in `invoke_with_call_chain'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:152:in `invoke'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:143:in `invoke_task'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:101:in `block (2 levels) in top_level'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:101:in `each'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:101:in `block in top_level'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:110:in `run_with_threads'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:95:in `top_level'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:73:in `block in run'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:160:in `standard_exception_handling'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:70:in `run'\\r\\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/bin/rake:33:in `<top (required)>'\\r\\n.rvm/gems/ruby-1.9.3-p327/bin/rake:23:in `load'\\r\\n.rvm/gems/ruby-1.9.3-p327/bin/rake:23:in `<main>'\\r\\nTasks: TOP => ts:rebuild => ts:index\\r\\n```\\r\\nGot this error when migrating to thinking sphinx 3.\\r\\n\",\n        \"updated_at\": \"2013-01-10T07:58:23Z\",\n        \"number\": 415,\n        \"state\": \"closed\",\n        \"assignee\": null,\n        \"id\": 9704821,\n        \"events_url\": \"https://api.github.com/repos/pat/thinking-sphinx/issues/415/events\",\n        \"comments_url\": \"https://api.github.com/repos/pat/thinking-sphinx/issues/415/comments\",\n        \"comments\": 8\n      },\n      \"action\": \"created\",\n      \"comment\": {\n        \"user\": {\n          \"url\": \"https://api.github.com/users/pat\",\n          \"gists_url\": \"https://api.github.com/users/pat/gists{/gist_id}\",\n          \"gravatar_id\": \"29f82ebe1801087f04de6aaae92e19ea\",\n          \"type\": \"User\",\n          \"avatar_url\": \"https://secure.gravatar.com/avatar/29f82ebe1801087f04de6aaae92e19ea?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n          \"subscriptions_url\": \"https://api.github.com/users/pat/subscriptions\",\n          \"received_events_url\": \"https://api.github.com/users/pat/received_events\",\n          \"organizations_url\": \"https://api.github.com/users/pat/orgs\",\n          \"repos_url\": \"https://api.github.com/users/pat/repos\",\n          \"login\": \"pat\",\n          \"id\": 4183,\n          \"starred_url\": \"https://api.github.com/users/pat/starred{/owner}{/repo}\",\n          \"events_url\": \"https://api.github.com/users/pat/events{/privacy}\",\n          \"followers_url\": \"https://api.github.com/users/pat/followers\",\n          \"following_url\": \"https://api.github.com/users/pat/following\"\n        },\n        \"url\": \"https://api.github.com/repos/pat/thinking-sphinx/issues/comments/12084063\",\n        \"issue_url\": \"https://api.github.com/repos/pat/thinking-sphinx/issues/9704821\",\n        \"created_at\": \"2013-01-10T07:58:23Z\",\n        \"body\": \"I was just wondering what the cause of the issue was.\",\n        \"updated_at\": \"2013-01-10T07:58:23Z\",\n        \"id\": 12084063\n      }\n    },\n    \"id\": \"1652857697\"\n  },\n  {\n    \"type\": \"IssuesEvent\",\n    \"created_at\": \"2013-01-10T07:58:22Z\",\n    \"actor\": {\n      \"gravatar_id\": \"786552a84365e60df3eeec8bc339a18c\",\n      \"login\": \"imsky\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/786552a84365e60df3eeec8bc339a18c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/imsky\",\n      \"id\": 330895\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/imsky/holder\",\n      \"id\": 4641606,\n      \"name\": \"imsky/holder\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"issue\": {\n        \"user\": {\n          \"url\": \"https://api.github.com/users/imsky\",\n          \"gists_url\": \"https://api.github.com/users/imsky/gists{/gist_id}\",\n          \"gravatar_id\": \"786552a84365e60df3eeec8bc339a18c\",\n          \"type\": \"User\",\n          \"avatar_url\": \"https://secure.gravatar.com/avatar/786552a84365e60df3eeec8bc339a18c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n          \"subscriptions_url\": \"https://api.github.com/users/imsky/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/imsky/orgs\",\n          \"received_events_url\": \"https://api.github.com/users/imsky/received_events\",\n          \"repos_url\": \"https://api.github.com/users/imsky/repos\",\n          \"login\": \"imsky\",\n          \"id\": 330895,\n          \"starred_url\": \"https://api.github.com/users/imsky/starred{/owner}{/repo}\",\n          \"events_url\": \"https://api.github.com/users/imsky/events{/privacy}\",\n          \"followers_url\": \"https://api.github.com/users/imsky/followers\",\n          \"following_url\": \"https://api.github.com/users/imsky/following\"\n        },\n        \"url\": \"https://api.github.com/repos/imsky/holder/issues/27\",\n        \"labels\": [\n\n        ],\n        \"html_url\": \"https://github.com/imsky/holder/issues/27\",\n        \"labels_url\": \"https://api.github.com/repos/imsky/holder/issues/27/labels{/name}\",\n        \"pull_request\": {\n          \"html_url\": null,\n          \"patch_url\": null,\n          \"diff_url\": null\n        },\n        \"title\": \"Fix width regression on retina display\",\n        \"created_at\": \"2013-01-10T07:58:22Z\",\n        \"closed_at\": null,\n        \"milestone\": null,\n        \"body\": \"\",\n        \"updated_at\": \"2013-01-10T07:58:22Z\",\n        \"assignee\": {\n          \"url\": \"https://api.github.com/users/imsky\",\n          \"gists_url\": \"https://api.github.com/users/imsky/gists{/gist_id}\",\n          \"gravatar_id\": \"786552a84365e60df3eeec8bc339a18c\",\n          \"type\": \"User\",\n          \"avatar_url\": \"https://secure.gravatar.com/avatar/786552a84365e60df3eeec8bc339a18c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n          \"subscriptions_url\": \"https://api.github.com/users/imsky/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/imsky/orgs\",\n          \"received_events_url\": \"https://api.github.com/users/imsky/received_events\",\n          \"repos_url\": \"https://api.github.com/users/imsky/repos\",\n          \"login\": \"imsky\",\n          \"id\": 330895,\n          \"starred_url\": \"https://api.github.com/users/imsky/starred{/owner}{/repo}\",\n          \"events_url\": \"https://api.github.com/users/imsky/events{/privacy}\",\n          \"followers_url\": \"https://api.github.com/users/imsky/followers\",\n          \"following_url\": \"https://api.github.com/users/imsky/following\"\n        },\n        \"number\": 27,\n        \"state\": \"open\",\n        \"id\": 9833911,\n        \"events_url\": \"https://api.github.com/repos/imsky/holder/issues/27/events\",\n        \"comments_url\": \"https://api.github.com/repos/imsky/holder/issues/27/comments\",\n        \"comments\": 0\n      },\n      \"action\": \"opened\"\n    },\n    \"id\": \"1652857694\"\n  },\n  {\n    \"type\": \"PushEvent\",\n    \"created_at\": \"2013-01-10T07:58:22Z\",\n    \"actor\": {\n      \"gravatar_id\": \"f0b6d83305726d6a06282a864c92ec46\",\n      \"login\": \"MartinGeisse\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/f0b6d83305726d6a06282a864c92ec46?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/MartinGeisse\",\n      \"id\": 1786083\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/MartinGeisse/public\",\n      \"id\": 4472103,\n      \"name\": \"MartinGeisse/public\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"commits\": [\n        {\n          \"url\": \"https://api.github.com/repos/MartinGeisse/public/commits/21ab9590d5b793d84564e68dc3f7f9ce28e6d272\",\n          \"message\": \"...\",\n          \"distinct\": true,\n          \"sha\": \"21ab9590d5b793d84564e68dc3f7f9ce28e6d272\",\n          \"author\": {\n            \"email\": \"geisse@Shopgates-Mac-mini-3.local\",\n            \"name\": \"Martin Geisse\"\n          }\n        },\n        {\n          \"url\": \"https://api.github.com/repos/MartinGeisse/public/commits/928877011d46d807955a7894c3397d2c5307faa9\",\n          \"message\": \"...\",\n          \"distinct\": true,\n          \"sha\": \"928877011d46d807955a7894c3397d2c5307faa9\",\n          \"author\": {\n            \"email\": \"geisse@Shopgates-Mac-mini-3.local\",\n            \"name\": \"Martin Geisse\"\n          }\n        }\n      ],\n      \"distinct_size\": 2,\n      \"ref\": \"refs/heads/master\",\n      \"push_id\": 134107887,\n      \"head\": \"928877011d46d807955a7894c3397d2c5307faa9\",\n      \"before\": \"bdf420d834e807827bc15eb38901d2bbb31bde17\",\n      \"size\": 2\n    },\n    \"id\": \"1652857692\"\n  },\n  {\n    \"type\": \"PushEvent\",\n    \"created_at\": \"2013-01-10T07:58:22Z\",\n    \"actor\": {\n      \"gravatar_id\": \"d89b0514cf4a50d0e53c5533fbe73e83\",\n      \"login\": \"mengzhuo\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/d89b0514cf4a50d0e53c5533fbe73e83?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/mengzhuo\",\n      \"id\": 885662\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/mengzhuo/personal-Vim\",\n      \"id\": 7450902,\n      \"name\": \"mengzhuo/personal-Vim\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"commits\": [\n        {\n          \"url\": \"https://api.github.com/repos/mengzhuo/personal-Vim/commits/689b7eba4735c494befb3367a216cb7218d92dd6\",\n          \"message\": \"format vimrc\",\n          \"distinct\": true,\n          \"sha\": \"689b7eba4735c494befb3367a216cb7218d92dd6\",\n          \"author\": {\n            \"email\": \"mengzhuo1203@gmail.com\",\n            \"name\": \"Meng Zhuo\"\n          }\n        }\n      ],\n      \"distinct_size\": 1,\n      \"ref\": \"refs/heads/master\",\n      \"push_id\": 134107885,\n      \"head\": \"689b7eba4735c494befb3367a216cb7218d92dd6\",\n      \"before\": \"ce44e73622d6ff7b4284ada289ec350087f5c846\",\n      \"size\": 1\n    },\n    \"id\": \"1652857690\"\n  },\n  {\n    \"type\": \"PushEvent\",\n    \"created_at\": \"2013-01-10T07:58:22Z\",\n    \"actor\": {\n      \"gravatar_id\": \"7611f72ccfcc7126d82e8edbfac70267\",\n      \"login\": \"mpetersen\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/7611f72ccfcc7126d82e8edbfac70267?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/mpetersen\",\n      \"id\": 50281\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/mpetersen/nelson\",\n      \"id\": 5403274,\n      \"name\": \"mpetersen/nelson\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"commits\": [\n        {\n          \"url\": \"https://api.github.com/repos/mpetersen/nelson/commits/621ed66f18cdf9aadf4a685d6ea6f6cbc43dac83\",\n          \"message\": \"Update README.md\",\n          \"distinct\": true,\n          \"sha\": \"621ed66f18cdf9aadf4a685d6ea6f6cbc43dac83\",\n          \"author\": {\n            \"email\": \"mail@moritzpetersen.de\",\n            \"name\": \"Moritz Petersen\"\n          }\n        }\n      ],\n      \"distinct_size\": 1,\n      \"ref\": \"refs/heads/master\",\n      \"push_id\": 134107879,\n      \"head\": \"621ed66f18cdf9aadf4a685d6ea6f6cbc43dac83\",\n      \"before\": \"4b17c791ddbf0cb7f6bb03989555bbd9680fdade\",\n      \"size\": 1\n    },\n    \"id\": \"1652857684\"\n  },\n  {\n    \"type\": \"PushEvent\",\n    \"created_at\": \"2013-01-10T07:58:21Z\",\n    \"actor\": {\n      \"gravatar_id\": \"d41d8cd98f00b204e9800998ecf8427e\",\n      \"login\": \"graudeejs\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/graudeejs\",\n      \"id\": 1020124\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/cubesystems/i18n-leaf\",\n      \"id\": 6688885,\n      \"name\": \"cubesystems/i18n-leaf\"\n    },\n    \"public\": true,\n    \"org\": {\n      \"gravatar_id\": \"e12067ce3c567fca0d089997694f9e9f\",\n      \"login\": \"cubesystems\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/e12067ce3c567fca0d089997694f9e9f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png\",\n      \"url\": \"https://api.github.com/orgs/cubesystems\",\n      \"id\": 686284\n    },\n    \"payload\": {\n      \"commits\": [\n        {\n          \"url\": \"https://api.github.com/repos/cubesystems/i18n-leaf/commits/196a702cf97a1d9bc076c23299fc2054580e74c7\",\n          \"message\": \"Fix typo, remove contributing section.... for now\",\n          \"distinct\": true,\n          \"sha\": \"196a702cf97a1d9bc076c23299fc2054580e74c7\",\n          \"author\": {\n            \"email\": \"aldis@cubesystems.lv\",\n            \"name\": \"Aldis Berjoza\"\n          }\n        }\n      ],\n      \"distinct_size\": 1,\n      \"ref\": \"refs/heads/master\",\n      \"push_id\": 134107876,\n      \"before\": \"f12210994ba154c848e712c772ede5aef718786c\",\n      \"head\": \"196a702cf97a1d9bc076c23299fc2054580e74c7\",\n      \"size\": 1\n    },\n    \"id\": \"1652857682\"\n  },\n  {\n    \"type\": \"PushEvent\",\n    \"created_at\": \"2013-01-10T07:58:21Z\",\n    \"actor\": {\n      \"gravatar_id\": \"d514d73311703c0c91bc1f380134567a\",\n      \"login\": \"njmittet\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/d514d73311703c0c91bc1f380134567a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/njmittet\",\n      \"id\": 655211\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/njmittet/git-test\",\n      \"id\": 6186327,\n      \"name\": \"njmittet/git-test\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"commits\": [\n        {\n          \"url\": \"https://api.github.com/repos/njmittet/git-test/commits/a265dd95d563a1815e4817fba43cd157f814693f\",\n          \"message\": \"Added another line\",\n          \"distinct\": true,\n          \"sha\": \"a265dd95d563a1815e4817fba43cd157f814693f\",\n          \"author\": {\n            \"email\": \"njmittet@gmail.com\",\n            \"name\": \"Nils Jørgen Mittet\"\n          }\n        },\n        {\n          \"url\": \"https://api.github.com/repos/njmittet/git-test/commits/d58dd1b6d201a3a3ddd55d09b529af6374297f38\",\n          \"message\": \"Merge branch 'master' of github.com:njmittet/git-test\\n\\nConflicts:\\n\\tclient.txt\",\n          \"distinct\": true,\n          \"sha\": \"d58dd1b6d201a3a3ddd55d09b529af6374297f38\",\n          \"author\": {\n            \"email\": \"njmittet@gmail.com\",\n            \"name\": \"Nils Jørgen Mittet\"\n          }\n        }\n      ],\n      \"distinct_size\": 2,\n      \"ref\": \"refs/heads/master\",\n      \"push_id\": 134107874,\n      \"head\": \"d58dd1b6d201a3a3ddd55d09b529af6374297f38\",\n      \"before\": \"42cc0d9567ea359340ccd602cb6fa6215ce9e961\",\n      \"size\": 2\n    },\n    \"id\": \"1652857680\"\n  },\n  {\n    \"type\": \"WatchEvent\",\n    \"created_at\": \"2013-01-10T07:58:20Z\",\n    \"actor\": {\n      \"gravatar_id\": \"11cf92381d24bdea86a357cc2c6bff4e\",\n      \"login\": \"demitsuri\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/11cf92381d24bdea86a357cc2c6bff4e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/demitsuri\",\n      \"id\": 2697636\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/JohnAlbin/git-svn-migrate\",\n      \"id\": 870387,\n      \"name\": \"JohnAlbin/git-svn-migrate\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"action\": \"started\"\n    },\n    \"id\": \"1652857678\"\n  },\n  {\n    \"type\": \"PushEvent\",\n    \"created_at\": \"2013-01-10T07:58:20Z\",\n    \"actor\": {\n      \"gravatar_id\": \"699eb751118c39590468040803ec21d6\",\n      \"login\": \"eatienza\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/699eb751118c39590468040803ec21d6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/eatienza\",\n      \"id\": 1743603\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/eatienza/gopack\",\n      \"id\": 7172902,\n      \"name\": \"eatienza/gopack\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"commits\": [\n        {\n          \"url\": \"https://api.github.com/repos/eatienza/gopack/commits/139a78b68326dfd000e24ad55e366a3deaba40ae\",\n          \"message\": \"make gpk test work in subdirectories\",\n          \"distinct\": true,\n          \"sha\": \"139a78b68326dfd000e24ad55e366a3deaba40ae\",\n          \"author\": {\n            \"email\": \"eric@ericaro.net\",\n            \"name\": \"Eric Atienza\"\n          }\n        }\n      ],\n      \"distinct_size\": 1,\n      \"ref\": \"refs/heads/master\",\n      \"push_id\": 134107873,\n      \"head\": \"139a78b68326dfd000e24ad55e366a3deaba40ae\",\n      \"before\": \"065c2d29b6ea565fe08cc84863cafbcabc8ce6ff\",\n      \"size\": 1\n    },\n    \"id\": \"1652857675\"\n  },\n  {\n    \"type\": \"GollumEvent\",\n    \"created_at\": \"2013-01-10T07:58:19Z\",\n    \"actor\": {\n      \"gravatar_id\": \"8b608e9e82cf3cda8c66cb1b08a014b3\",\n      \"login\": \"greentea039\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/8b608e9e82cf3cda8c66cb1b08a014b3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/greentea039\",\n      \"id\": 2049309\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/GaryMcNabb/HVSTAT\",\n      \"id\": 5182252,\n      \"name\": \"GaryMcNabb/HVSTAT\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"pages\": [\n        {\n          \"page_name\": \"Home\",\n          \"html_url\": \"https://github.com/GaryMcNabb/HVSTAT/wiki/Home\",\n          \"title\": \"Home\",\n          \"sha\": \"3753f109634c7f5ba6f465f65b5c8f575054f9f8\",\n          \"summary\": null,\n          \"action\": \"edited\"\n        }\n      ]\n    },\n    \"id\": \"1652857670\"\n  },\n  {\n    \"type\": \"WatchEvent\",\n    \"created_at\": \"2013-01-10T07:58:18Z\",\n    \"actor\": {\n      \"gravatar_id\": \"be73a0d3304f2a2c43b0c27a79045b69\",\n      \"login\": \"henter\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/be73a0d3304f2a2c43b0c27a79045b69?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/henter\",\n      \"id\": 239970\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/jackyz/pobi\",\n      \"id\": 7216584,\n      \"name\": \"jackyz/pobi\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"action\": \"started\"\n    },\n    \"id\": \"1652857669\"\n  },\n  {\n    \"type\": \"CreateEvent\",\n    \"created_at\": \"2013-01-10T07:58:18Z\",\n    \"actor\": {\n      \"gravatar_id\": \"9721138b1cd172d47e88cd4d11614362\",\n      \"login\": \"marciohariki\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/9721138b1cd172d47e88cd4d11614362?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/marciohariki\",\n      \"id\": 478795\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/marciohariki/faraja\",\n      \"id\": 7536835,\n      \"name\": \"marciohariki/faraja\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"description\": \"\",\n      \"master_branch\": \"master\",\n      \"ref\": null,\n      \"ref_type\": \"repository\"\n    },\n    \"id\": \"1652857668\"\n  },\n  {\n    \"type\": \"CreateEvent\",\n    \"created_at\": \"2013-01-10T07:58:18Z\",\n    \"actor\": {\n      \"gravatar_id\": \"16044a3433095bc94514e1ac58a005a8\",\n      \"login\": \"OdyX\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/16044a3433095bc94514e1ac58a005a8?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/OdyX\",\n      \"id\": 417403\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/OdyX/colobot-level-i18n-infra\",\n      \"id\": 7536834,\n      \"name\": \"OdyX/colobot-level-i18n-infra\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"description\": \"Translation infrastructure work for colobot levels\",\n      \"master_branch\": \"master\",\n      \"ref\": null,\n      \"ref_type\": \"repository\"\n    },\n    \"id\": \"1652857667\"\n  },\n  {\n    \"type\": \"IssueCommentEvent\",\n    \"created_at\": \"2013-01-10T07:58:17Z\",\n    \"actor\": {\n      \"gravatar_id\": \"29bc0a400b55eb59e811fce93477ca38\",\n      \"login\": \"rosenkrieger\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/29bc0a400b55eb59e811fce93477ca38?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/rosenkrieger\",\n      \"id\": 2276814\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/SynoCommunity/spksrc\",\n      \"id\": 2565137,\n      \"name\": \"SynoCommunity/spksrc\"\n    },\n    \"public\": true,\n    \"org\": {\n      \"gravatar_id\": \"35084cec3ea4e7ea80951078d2030339\",\n      \"login\": \"SynoCommunity\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/35084cec3ea4e7ea80951078d2030339?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png\",\n      \"url\": \"https://api.github.com/orgs/SynoCommunity\",\n      \"id\": 1123581\n    },\n    \"payload\": {\n      \"issue\": {\n        \"user\": {\n          \"url\": \"https://api.github.com/users/G1zm0\",\n          \"gists_url\": \"https://api.github.com/users/G1zm0/gists{/gist_id}\",\n          \"gravatar_id\": \"0d0b73f1ccb919689faa904c2c658d3b\",\n          \"type\": \"User\",\n          \"avatar_url\": \"https://secure.gravatar.com/avatar/0d0b73f1ccb919689faa904c2c658d3b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n          \"subscriptions_url\": \"https://api.github.com/users/G1zm0/subscriptions\",\n          \"received_events_url\": \"https://api.github.com/users/G1zm0/received_events\",\n          \"organizations_url\": \"https://api.github.com/users/G1zm0/orgs\",\n          \"repos_url\": \"https://api.github.com/users/G1zm0/repos\",\n          \"login\": \"G1zm0\",\n          \"id\": 1174845,\n          \"starred_url\": \"https://api.github.com/users/G1zm0/starred{/owner}{/repo}\",\n          \"events_url\": \"https://api.github.com/users/G1zm0/events{/privacy}\",\n          \"followers_url\": \"https://api.github.com/users/G1zm0/followers\",\n          \"following_url\": \"https://api.github.com/users/G1zm0/following\"\n        },\n        \"url\": \"https://api.github.com/repos/SynoCommunity/spksrc/issues/249\",\n        \"labels\": [\n\n        ],\n        \"html_url\": \"https://github.com/SynoCommunity/spksrc/issues/249\",\n        \"labels_url\": \"https://api.github.com/repos/SynoCommunity/spksrc/issues/249/labels{/name}\",\n        \"pull_request\": {\n          \"html_url\": null,\n          \"patch_url\": null,\n          \"diff_url\": null\n        },\n        \"title\": \"Newznab install DS211J\",\n        \"created_at\": \"2012-09-23T14:21:36Z\",\n        \"closed_at\": null,\n        \"milestone\": null,\n        \"body\": \"This is related to [#227](https://github.com/SynoCommunity/spksrc/issues/227#issuecomment-8543626), to keep a log.\\r\\nAnd ask for help if needed.\\r\\n\\r\\nStep 1 to install is setting al [Prerequisites](http://newznab.readthedocs.org/en/latest/install/#prerequisites)\\r\\n- Enable php and webstation in DSM.\\r\\n- Do NOT enable register_globals\\r\\n- add :/opt/share/pear to php open_basedir\\r\\n- ipkg install php-curl\\r\\n- ipkg install php-pear\\r\\n- edit php.ini \\r\\n1. (set max php memory limit to 256), won't know if this will work.\\r\\n2. add pear to openbase_dir (include_path = \\\".:/php/includes:/opt/share/pear\\\")\\r\\n\\r\\n[Result:](https://dl.dropbox.com/u/16935152/newsnab/step1.png)\\r\\n\\r\\n\\r\\n\",\n        \"updated_at\": \"2013-01-10T07:58:17Z\",\n        \"assignee\": null,\n        \"number\": 249,\n        \"state\": \"open\",\n        \"id\": 7071528,\n        \"events_url\": \"https://api.github.com/repos/SynoCommunity/spksrc/issues/249/events\",\n        \"comments_url\": \"https://api.github.com/repos/SynoCommunity/spksrc/issues/249/comments\",\n        \"comments\": 146\n      },\n      \"action\": \"created\",\n      \"comment\": {\n        \"user\": {\n          \"url\": \"https://api.github.com/users/rosenkrieger\",\n          \"gists_url\": \"https://api.github.com/users/rosenkrieger/gists{/gist_id}\",\n          \"gravatar_id\": \"29bc0a400b55eb59e811fce93477ca38\",\n          \"type\": \"User\",\n          \"avatar_url\": \"https://secure.gravatar.com/avatar/29bc0a400b55eb59e811fce93477ca38?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n          \"subscriptions_url\": \"https://api.github.com/users/rosenkrieger/subscriptions\",\n          \"received_events_url\": \"https://api.github.com/users/rosenkrieger/received_events\",\n          \"organizations_url\": \"https://api.github.com/users/rosenkrieger/orgs\",\n          \"repos_url\": \"https://api.github.com/users/rosenkrieger/repos\",\n          \"login\": \"rosenkrieger\",\n          \"id\": 2276814,\n          \"starred_url\": \"https://api.github.com/users/rosenkrieger/starred{/owner}{/repo}\",\n          \"events_url\": \"https://api.github.com/users/rosenkrieger/events{/privacy}\",\n          \"followers_url\": \"https://api.github.com/users/rosenkrieger/followers\",\n          \"following_url\": \"https://api.github.com/users/rosenkrieger/following\"\n        },\n        \"url\": \"https://api.github.com/repos/SynoCommunity/spksrc/issues/comments/12084060\",\n        \"issue_url\": \"https://api.github.com/repos/SynoCommunity/spksrc/issues/7071528\",\n        \"created_at\": \"2013-01-10T07:58:16Z\",\n        \"body\": \"Me. Again ;-)\\r\\n\\r\\nHopefully someone who understands REGEX can help me.\\r\\n\\r\\nSo I added an ebook group, for some reason there are also movies from a certain poster in there - which I do NOT want.\\r\\n\\r\\nThe REGEX /^(?P<name>.*)$/i finds everything in the group, including the stuff i do not want. \\r\\n\\r\\nHow would I have to change it so that stuff from usenet-space-cowboys is NOT included?\",\n        \"updated_at\": \"2013-01-10T07:58:16Z\",\n        \"id\": 12084060\n      }\n    },\n    \"id\": \"1652857665\"\n  },\n  {\n    \"type\": \"ForkEvent\",\n    \"created_at\": \"2013-01-10T07:58:17Z\",\n    \"actor\": {\n      \"gravatar_id\": \"57a77579176a45583682e372067e8d23\",\n      \"login\": \"slwchs\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/57a77579176a45583682e372067e8d23?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/slwchs\",\n      \"id\": 1146116\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/DeNADev/HandlerSocket-Plugin-for-MySQL\",\n      \"id\": 837872,\n      \"name\": \"DeNADev/HandlerSocket-Plugin-for-MySQL\"\n    },\n    \"public\": true,\n    \"org\": {\n      \"gravatar_id\": \"a5c6d5d74b64284fcb7d963ee2d3cfc5\",\n      \"login\": \"DeNADev\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/a5c6d5d74b64284fcb7d963ee2d3cfc5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png\",\n      \"url\": \"https://api.github.com/orgs/DeNADev\",\n      \"id\": 1357586\n    },\n    \"payload\": {\n      \"forkee\": {\n        \"description\": \"\",\n        \"fork\": true,\n        \"url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL\",\n        \"language\": \"C++\",\n        \"stargazers_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/stargazers\",\n        \"clone_url\": \"https://github.com/slwchs/HandlerSocket-Plugin-for-MySQL.git\",\n        \"tags_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/tags{/tag}\",\n        \"full_name\": \"slwchs/HandlerSocket-Plugin-for-MySQL\",\n        \"merges_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/merges\",\n        \"forks\": 0,\n        \"private\": false,\n        \"git_refs_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/git/refs{/sha}\",\n        \"archive_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/{archive_format}{/ref}\",\n        \"collaborators_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/collaborators{/collaborator}\",\n        \"owner\": {\n          \"url\": \"https://api.github.com/users/slwchs\",\n          \"gists_url\": \"https://api.github.com/users/slwchs/gists{/gist_id}\",\n          \"gravatar_id\": \"57a77579176a45583682e372067e8d23\",\n          \"type\": \"User\",\n          \"avatar_url\": \"https://secure.gravatar.com/avatar/57a77579176a45583682e372067e8d23?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n          \"subscriptions_url\": \"https://api.github.com/users/slwchs/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/slwchs/orgs\",\n          \"received_events_url\": \"https://api.github.com/users/slwchs/received_events\",\n          \"repos_url\": \"https://api.github.com/users/slwchs/repos\",\n          \"login\": \"slwchs\",\n          \"id\": 1146116,\n          \"starred_url\": \"https://api.github.com/users/slwchs/starred{/owner}{/repo}\",\n          \"events_url\": \"https://api.github.com/users/slwchs/events{/privacy}\",\n          \"followers_url\": \"https://api.github.com/users/slwchs/followers\",\n          \"following_url\": \"https://api.github.com/users/slwchs/following\"\n        },\n        \"languages_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/languages\",\n        \"trees_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/git/trees{/sha}\",\n        \"labels_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/labels{/name}\",\n        \"html_url\": \"https://github.com/slwchs/HandlerSocket-Plugin-for-MySQL\",\n        \"pushed_at\": \"2012-07-10T06:30:41Z\",\n        \"created_at\": \"2013-01-10T07:58:16Z\",\n        \"has_issues\": false,\n        \"forks_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/forks\",\n        \"branches_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/branches{/branch}\",\n        \"commits_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/commits{/sha}\",\n        \"notifications_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/notifications{?since,all,participating}\",\n        \"open_issues\": 0,\n        \"contents_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/contents/{+path}\",\n        \"blobs_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/git/blobs{/sha}\",\n        \"issues_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/issues{/number}\",\n        \"compare_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/compare/{base}...{head}\",\n        \"issue_events_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/issues/events{/number}\",\n        \"name\": \"HandlerSocket-Plugin-for-MySQL\",\n        \"updated_at\": \"2013-01-10T07:58:16Z\",\n        \"statuses_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/statuses/{sha}\",\n        \"forks_count\": 0,\n        \"assignees_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/assignees{/user}\",\n        \"ssh_url\": \"git@github.com:slwchs/HandlerSocket-Plugin-for-MySQL.git\",\n        \"public\": true,\n        \"has_wiki\": true,\n        \"subscribers_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/subscribers\",\n        \"mirror_url\": null,\n        \"watchers_count\": 0,\n        \"id\": 7536833,\n        \"has_downloads\": true,\n        \"git_commits_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/git/commits{/sha}\",\n        \"downloads_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/downloads\",\n        \"pulls_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/pulls{/number}\",\n        \"homepage\": \"\",\n        \"issue_comment_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/issues/comments/{number}\",\n        \"hooks_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/hooks\",\n        \"subscription_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/subscription\",\n        \"milestones_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/milestones{/number}\",\n        \"svn_url\": \"https://github.com/slwchs/HandlerSocket-Plugin-for-MySQL\",\n        \"events_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/events\",\n        \"git_tags_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/git/tags{/sha}\",\n        \"teams_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/teams\",\n        \"comments_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/comments{/number}\",\n        \"open_issues_count\": 0,\n        \"keys_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/keys{/key_id}\",\n        \"git_url\": \"git://github.com/slwchs/HandlerSocket-Plugin-for-MySQL.git\",\n        \"contributors_url\": \"https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/contributors\",\n        \"size\": 204,\n        \"watchers\": 0\n      }\n    },\n    \"id\": \"1652857660\"\n  },\n  {\n    \"type\": \"PushEvent\",\n    \"created_at\": \"2013-01-10T07:58:16Z\",\n    \"actor\": {\n      \"gravatar_id\": \"f8b3de3c77bce8a6b65841936fefe353\",\n      \"login\": \"markpiro\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/f8b3de3c77bce8a6b65841936fefe353?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/markpiro\",\n      \"id\": 362803\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/markpiro/muzicbaux\",\n      \"id\": 7496715,\n      \"name\": \"markpiro/muzicbaux\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"commits\": [\n        {\n          \"url\": \"https://api.github.com/repos/markpiro/muzicbaux/commits/bbbb56de64cb3c7c1d174546fb4e340c75bb8c0c\",\n          \"message\": \"auth callback change\",\n          \"distinct\": true,\n          \"sha\": \"bbbb56de64cb3c7c1d174546fb4e340c75bb8c0c\",\n          \"author\": {\n            \"email\": \"justbanter@gmail.com\",\n            \"name\": \"mark\"\n          }\n        }\n      ],\n      \"distinct_size\": 1,\n      \"ref\": \"refs/heads/master\",\n      \"push_id\": 134107864,\n      \"head\": \"bbbb56de64cb3c7c1d174546fb4e340c75bb8c0c\",\n      \"before\": \"b06a8ac52ce1e0a984c79a7a0d8e7a96e6674615\",\n      \"size\": 1\n    },\n    \"id\": \"1652857654\"\n  },\n  {\n    \"type\": \"PushEvent\",\n    \"created_at\": \"2013-01-10T07:58:15Z\",\n    \"actor\": {\n      \"gravatar_id\": \"b9fc678d24d871a8505c7da255993bc5\",\n      \"login\": \"skorks\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/b9fc678d24d871a8505c7da255993bc5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/skorks\",\n      \"id\": 109413\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/skorks/escort\",\n      \"id\": 7437220,\n      \"name\": \"skorks/escort\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"commits\": [\n        {\n          \"url\": \"https://api.github.com/repos/skorks/escort/commits/047f85ba0a47de5debdb43f62c3782543e228250\",\n          \"message\": \"Better formatters for help text\",\n          \"distinct\": true,\n          \"sha\": \"047f85ba0a47de5debdb43f62c3782543e228250\",\n          \"author\": {\n            \"email\": \"alan@skorks.com\",\n            \"name\": \"Alan Skorkin\"\n          }\n        }\n      ],\n      \"distinct_size\": 1,\n      \"ref\": \"refs/heads/master\",\n      \"push_id\": 134107863,\n      \"head\": \"047f85ba0a47de5debdb43f62c3782543e228250\",\n      \"before\": \"267ba05093edd0ea70e5dc3801a6f06b171a07d0\",\n      \"size\": 1\n    },\n    \"id\": \"1652857652\"\n  },\n  {\n    \"type\": \"PushEvent\",\n    \"created_at\": \"2013-01-10T07:58:14Z\",\n    \"actor\": {\n      \"gravatar_id\": \"6a0503c195f533b5cd6bd4ccdd6cdc3e\",\n      \"login\": \"kmaehashi\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/6a0503c195f533b5cd6bd4ccdd6cdc3e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/kmaehashi\",\n      \"id\": 939877\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/jubatus/website\",\n      \"id\": 2644458,\n      \"name\": \"jubatus/website\"\n    },\n    \"public\": true,\n    \"org\": {\n      \"gravatar_id\": \"e48bca9362833c506303719cf6f2fd9c\",\n      \"login\": \"jubatus\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/e48bca9362833c506303719cf6f2fd9c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png\",\n      \"url\": \"https://api.github.com/orgs/jubatus\",\n      \"id\": 740604\n    },\n    \"payload\": {\n      \"commits\": [\n        {\n          \"url\": \"https://api.github.com/repos/jubatus/website/commits/210ed738f81eadeaf7135c7ff1b7c471d9a91312\",\n          \"message\": \"fix dead link\",\n          \"distinct\": true,\n          \"sha\": \"210ed738f81eadeaf7135c7ff1b7c471d9a91312\",\n          \"author\": {\n            \"email\": \"webmaster@kenichimaehashi.com\",\n            \"name\": \"Kenichi Maehashi\"\n          }\n        }\n      ],\n      \"distinct_size\": 1,\n      \"ref\": \"refs/heads/develop\",\n      \"push_id\": 134107860,\n      \"before\": \"27b48c300994293b38c1b1d7f8cf656a551aa16f\",\n      \"head\": \"210ed738f81eadeaf7135c7ff1b7c471d9a91312\",\n      \"size\": 1\n    },\n    \"id\": \"1652857648\"\n  },\n  {\n    \"type\": \"GollumEvent\",\n    \"created_at\": \"2013-01-10T07:58:15Z\",\n    \"actor\": {\n      \"gravatar_id\": \"923326b259c68209a76497ad1d3ceec0\",\n      \"login\": \"akrillo89\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/923326b259c68209a76497ad1d3ceec0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/akrillo89\",\n      \"id\": 2676770\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/arsenij-solovjev/sonar-modelbus-plugin\",\n      \"id\": 6535088,\n      \"name\": \"arsenij-solovjev/sonar-modelbus-plugin\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"pages\": [\n        {\n          \"page_name\": \"Sonar Plugin Development\",\n          \"html_url\": \"https://github.com/arsenij-solovjev/sonar-modelbus-plugin/wiki/Sonar-Plugin-Development\",\n          \"title\": \"Sonar Plugin Development\",\n          \"sha\": \"a824c9c9bb5e874e0d91809512d42654d46f8c14\",\n          \"summary\": null,\n          \"action\": \"edited\"\n        }\n      ]\n    },\n    \"id\": \"1652857651\"\n  },\n  {\n    \"type\": \"ForkEvent\",\n    \"created_at\": \"2013-01-10T07:58:13Z\",\n    \"actor\": {\n      \"gravatar_id\": \"28f08154fd59530479209fef41f674e1\",\n      \"login\": \"vcovito\",\n      \"avatar_url\": \"https://secure.gravatar.com/avatar/28f08154fd59530479209fef41f674e1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n      \"url\": \"https://api.github.com/users/vcovito\",\n      \"id\": 1354081\n    },\n    \"repo\": {\n      \"url\": \"https://api.github.com/repos/wang-bin/QtAV\",\n      \"id\": 6435042,\n      \"name\": \"wang-bin/QtAV\"\n    },\n    \"public\": true,\n    \"payload\": {\n      \"forkee\": {\n        \"full_name\": \"vcovito/QtAV\",\n        \"stargazers_url\": \"https://api.github.com/repos/vcovito/QtAV/stargazers\",\n        \"clone_url\": \"https://github.com/vcovito/QtAV.git\",\n        \"fork\": true,\n        \"url\": \"https://api.github.com/repos/vcovito/QtAV\",\n        \"tags_url\": \"https://api.github.com/repos/vcovito/QtAV/tags{/tag}\",\n        \"description\": \"A media library based on Qt and FFmpeg. Development files for MinGW can be downloaded frome https://sourceforge.net/projects/qtav/files/?\",\n        \"merges_url\": \"https://api.github.com/repos/vcovito/QtAV/merges\",\n        \"forks\": 0,\n        \"language\": \"C++\",\n        \"private\": false,\n        \"archive_url\": \"https://api.github.com/repos/vcovito/QtAV/{archive_format}{/ref}\",\n        \"collaborators_url\": \"https://api.github.com/repos/vcovito/QtAV/collaborators{/collaborator}\",\n        \"languages_url\": \"https://api.github.com/repos/vcovito/QtAV/languages\",\n        \"owner\": {\n          \"gists_url\": \"https://api.github.com/users/vcovito/gists{/gist_id}\",\n          \"gravatar_id\": \"28f08154fd59530479209fef41f674e1\",\n          \"url\": \"https://api.github.com/users/vcovito\",\n          \"type\": \"User\",\n          \"avatar_url\": \"https://secure.gravatar.com/avatar/28f08154fd59530479209fef41f674e1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n          \"subscriptions_url\": \"https://api.github.com/users/vcovito/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/vcovito/orgs\",\n          \"received_events_url\": \"https://api.github.com/users/vcovito/received_events\",\n          \"repos_url\": \"https://api.github.com/users/vcovito/repos\",\n          \"login\": \"vcovito\",\n          \"starred_url\": \"https://api.github.com/users/vcovito/starred{/owner}{/repo}\",\n          \"id\": 1354081,\n          \"events_url\": \"https://api.github.com/users/vcovito/events{/privacy}\",\n          \"followers_url\": \"https://api.github.com/users/vcovito/followers\",\n          \"following_url\": \"https://api.github.com/users/vcovito/following\"\n        },\n        \"git_refs_url\": \"https://api.github.com/repos/vcovito/QtAV/git/refs{/sha}\",\n        \"labels_url\": \"https://api.github.com/repos/vcovito/QtAV/labels{/name}\",\n        \"pushed_at\": \"2013-01-07T12:17:03Z\",\n        \"html_url\": \"https://github.com/vcovito/QtAV\",\n        \"trees_url\": \"https://api.github.com/repos/vcovito/QtAV/git/trees{/sha}\",\n        \"forks_url\": \"https://api.github.com/repos/vcovito/QtAV/forks\",\n        \"commits_url\": \"https://api.github.com/repos/vcovito/QtAV/commits{/sha}\",\n        \"branches_url\": \"https://api.github.com/repos/vcovito/QtAV/branches{/branch}\",\n        \"notifications_url\": \"https://api.github.com/repos/vcovito/QtAV/notifications{?since,all,participating}\",\n        \"created_at\": \"2013-01-10T07:58:13Z\",\n        \"has_issues\": false,\n        \"blobs_url\": \"https://api.github.com/repos/vcovito/QtAV/git/blobs{/sha}\",\n        \"issues_url\": \"https://api.github.com/repos/vcovito/QtAV/issues{/number}\",\n        \"compare_url\": \"https://api.github.com/repos/vcovito/QtAV/compare/{base}...{head}\",\n        \"open_issues\": 0,\n        \"contents_url\": \"https://api.github.com/repos/vcovito/QtAV/contents/{+path}\",\n        \"name\": \"QtAV\",\n        \"statuses_url\": \"https://api.github.com/repos/vcovito/QtAV/statuses/{sha}\",\n        \"assignees_url\": \"https://api.github.com/repos/vcovito/QtAV/assignees{/user}\",\n        \"forks_count\": 0,\n        \"updated_at\": \"2013-01-10T07:58:13Z\",\n        \"issue_events_url\": \"https://api.github.com/repos/vcovito/QtAV/issues/events{/number}\",\n        \"ssh_url\": \"git@github.com:vcovito/QtAV.git\",\n        \"subscribers_url\": \"https://api.github.com/repos/vcovito/QtAV/subscribers\",\n        \"mirror_url\": null,\n        \"public\": true,\n        \"has_wiki\": true,\n        \"git_commits_url\": \"https://api.github.com/repos/vcovito/QtAV/git/commits{/sha}\",\n        \"downloads_url\": \"https://api.github.com/repos/vcovito/QtAV/downloads\",\n        \"id\": 7536832,\n        \"pulls_url\": \"https://api.github.com/repos/vcovito/QtAV/pulls{/number}\",\n        \"has_downloads\": true,\n        \"issue_comment_url\": \"https://api.github.com/repos/vcovito/QtAV/issues/comments/{number}\",\n        \"watchers_count\": 0,\n        \"homepage\": \"\",\n        \"hooks_url\": \"https://api.github.com/repos/vcovito/QtAV/hooks\",\n        \"subscription_url\": \"https://api.github.com/repos/vcovito/QtAV/subscription\",\n        \"milestones_url\": \"https://api.github.com/repos/vcovito/QtAV/milestones{/number}\",\n        \"events_url\": \"https://api.github.com/repos/vcovito/QtAV/events\",\n        \"svn_url\": \"https://github.com/vcovito/QtAV\",\n        \"git_tags_url\": \"https://api.github.com/repos/vcovito/QtAV/git/tags{/sha}\",\n        \"teams_url\": \"https://api.github.com/repos/vcovito/QtAV/teams\",\n        \"comments_url\": \"https://api.github.com/repos/vcovito/QtAV/comments{/number}\",\n        \"open_issues_count\": 0,\n        \"keys_url\": \"https://api.github.com/repos/vcovito/QtAV/keys{/key_id}\",\n        \"contributors_url\": \"https://api.github.com/repos/vcovito/QtAV/contributors\",\n        \"size\": 4286,\n        \"watchers\": 0,\n        \"git_url\": \"git://github.com/vcovito/QtAV.git\"\n      }\n    },\n    \"id\": \"1652857642\"\n  }\n]\n"
  },
  {
    "path": "testdata/instruments.json",
    "content": "{\n   \"graphstate\" : null,\n   \"instruments\" : [\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 1,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 44,\n         \"default_filter_cutoff_enabled\" : true,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : true,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 0\n               },\n               {\n                  \"tick\" : 6,\n                  \"value\" : 3\n               },\n               {\n                  \"tick\" : 22,\n                  \"value\" : 53\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 61\n               },\n               {\n                  \"tick\" : 8,\n                  \"value\" : 1\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 11,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 37,\n                  \"value\" : 2\n               },\n               {\n                  \"tick\" : 58,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 125,\n         \"default_filter_cutoff_enabled\" : true,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 44,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 8,\n                  \"value\" : 7\n               },\n               {\n                  \"tick\" : 20,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 125,\n         \"default_filter_cutoff_enabled\" : true,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 44,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 8,\n                  \"value\" : 7\n               },\n               {\n                  \"tick\" : 20,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 72,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 168,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 24,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 33,\n                  \"value\" : 22\n               },\n               {\n                  \"tick\" : 49,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 112,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 14,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 27,\n                  \"value\" : 17\n               },\n               {\n                  \"tick\" : 51,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 42,\n         \"default_filter_cutoff_enabled\" : true,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 25,\n         \"default_filter_resonance_enabled\" : true,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 3,\n                  \"value\" : 2\n               },\n               {\n                  \"tick\" : 31,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 42,\n         \"default_filter_cutoff_enabled\" : true,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 25,\n         \"default_filter_resonance_enabled\" : true,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 3,\n                  \"value\" : 2\n               },\n               {\n                  \"tick\" : 31,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 27,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 52,\n         \"default_filter_resonance_enabled\" : true,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 3,\n            \"loop_start\" : 3,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 0\n               },\n               {\n                  \"tick\" : 22,\n                  \"value\" : 0\n               },\n               {\n                  \"tick\" : 24,\n                  \"value\" : 14\n               },\n               {\n                  \"tick\" : 27,\n                  \"value\" : 39\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 4,\n                  \"value\" : 51\n               },\n               {\n                  \"tick\" : 12,\n                  \"value\" : 58\n               },\n               {\n                  \"tick\" : 23,\n                  \"value\" : 61\n               },\n               {\n                  \"tick\" : 35,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 36,\n                  \"value\" : 47\n               },\n               {\n                  \"tick\" : 53,\n                  \"value\" : 47\n               },\n               {\n                  \"tick\" : 68,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 2,\n            \"loop_start\" : 2,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 63\n               },\n               {\n                  \"tick\" : 7,\n                  \"value\" : 27\n               },\n               {\n                  \"tick\" : 32,\n                  \"value\" : 11\n               },\n               {\n                  \"tick\" : 100,\n                  \"value\" : 5\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 6\n               },\n               {\n                  \"tick\" : 15,\n                  \"value\" : 3\n               },\n               {\n                  \"tick\" : 29,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 52,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 61,\n                  \"value\" : 5\n               },\n               {\n                  \"tick\" : 73,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 333,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 40,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 11,\n                  \"value\" : 5\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 44,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 137,\n                  \"value\" : 39\n               },\n               {\n                  \"tick\" : 221,\n                  \"value\" : 58\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 30,\n         \"default_filter_cutoff_enabled\" : true,\n         \"default_filter_mode\" : 0,\n         \"default_filter_resonance\" : 52,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 48,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 3,\n            \"loop_start\" : 3,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 0\n               },\n               {\n                  \"tick\" : 22,\n                  \"value\" : 0\n               },\n               {\n                  \"tick\" : 24,\n                  \"value\" : 14\n               },\n               {\n                  \"tick\" : 27,\n                  \"value\" : 39\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 11,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 19,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 23,\n                  \"value\" : 61\n               },\n               {\n                  \"tick\" : 38,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 333,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 1,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 125,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 2,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 20,\n                  \"value\" : 24\n               },\n               {\n                  \"tick\" : 47,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 125,\n         \"default_filter_cutoff_enabled\" : true,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 50,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 83,\n                  \"value\" : 15\n               },\n               {\n                  \"tick\" : 134,\n                  \"value\" : 4\n               },\n               {\n                  \"tick\" : 179,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 256,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 25,\n         \"default_filter_cutoff_enabled\" : true,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 57\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 84,\n                  \"value\" : 26\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 2,\n            \"loop_start\" : 2,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 7,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 15,\n                  \"value\" : 55\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 20\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 84,\n                  \"value\" : 26\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 2,\n            \"loop_start\" : 2,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 0\n               },\n               {\n                  \"tick\" : 5,\n                  \"value\" : 0\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 104,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 191,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 1,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 1\n               },\n               {\n                  \"tick\" : 66,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 100,\n         \"default_filter_cutoff_enabled\" : true,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 224,\n                  \"value\" : 21\n               },\n               {\n                  \"tick\" : 739,\n                  \"value\" : 11\n               },\n               {\n                  \"tick\" : 3879,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 3,\n            \"loop_start\" : 3,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 0\n               },\n               {\n                  \"tick\" : 700,\n                  \"value\" : 18\n               },\n               {\n                  \"tick\" : 1469,\n                  \"value\" : 48\n               },\n               {\n                  \"tick\" : 1588,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 34\n               },\n               {\n                  \"tick\" : 379,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 0\n               },\n               {\n                  \"tick\" : 119,\n                  \"value\" : 4\n               },\n               {\n                  \"tick\" : 248,\n                  \"value\" : 22\n               },\n               {\n                  \"tick\" : 318,\n                  \"value\" : 50\n               },\n               {\n                  \"tick\" : 344,\n                  \"value\" : 60\n               },\n               {\n                  \"tick\" : 365,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 384,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 128,\n         \"volume_ramp_up\" : 128\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 3,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 17,\n                  \"value\" : 39\n               },\n               {\n                  \"tick\" : 35,\n                  \"value\" : 24\n               },\n               {\n                  \"tick\" : 52,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 427,\n                  \"value\" : 29\n               },\n               {\n                  \"tick\" : 563,\n                  \"value\" : 27\n               },\n               {\n                  \"tick\" : 667,\n                  \"value\" : 24\n               },\n               {\n                  \"tick\" : 730,\n                  \"value\" : 19\n               },\n               {\n                  \"tick\" : 769,\n                  \"value\" : 13\n               },\n               {\n                  \"tick\" : 873,\n                  \"value\" : 17\n               },\n               {\n                  \"tick\" : 1325,\n                  \"value\" : 8\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 3,\n            \"loop_start\" : 3,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 0\n               },\n               {\n                  \"tick\" : 127,\n                  \"value\" : 19\n               },\n               {\n                  \"tick\" : 192,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 384,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 22,\n         \"default_filter_cutoff_enabled\" : true,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 32,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 20\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 84,\n                  \"value\" : 26\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 35,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 45,\n                  \"value\" : 0\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 256,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 25,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 47,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 3,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 32,\n                  \"value\" : 50\n               },\n               {\n                  \"tick\" : 72,\n                  \"value\" : 14\n               },\n               {\n                  \"tick\" : 115,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 62\n               },\n               {\n                  \"tick\" : 47,\n                  \"value\" : 60\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 25,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 3,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 32,\n                  \"value\" : 50\n               },\n               {\n                  \"tick\" : 72,\n                  \"value\" : 14\n               },\n               {\n                  \"tick\" : 115,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 62\n               },\n               {\n                  \"tick\" : 47,\n                  \"value\" : 60\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 106,\n                  \"value\" : 33\n               },\n               {\n                  \"tick\" : 185,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 362,\n                  \"value\" : 29\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 128,\n         \"volume_ramp_up\" : 128\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 61,\n         \"default_filter_cutoff_enabled\" : true,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 50,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"photosynthesis\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 25,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 3,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 32,\n                  \"value\" : 50\n               },\n               {\n                  \"tick\" : 72,\n                  \"value\" : 14\n               },\n               {\n                  \"tick\" : 115,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 62\n               },\n               {\n                  \"tick\" : 47,\n                  \"value\" : 60\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 61,\n         \"default_filter_cutoff_enabled\" : true,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 50,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 41,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"photosynthesis\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 61,\n         \"default_filter_cutoff_enabled\" : true,\n         \"default_filter_mode\" : 1,\n         \"default_filter_resonance\" : 50,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 24,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"photosynthesis\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 256,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 0,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      },\n      {\n         \"default_filter_cutoff\" : 0,\n         \"default_filter_cutoff_enabled\" : false,\n         \"default_filter_mode\" : 255,\n         \"default_filter_resonance\" : 0,\n         \"default_filter_resonance_enabled\" : false,\n         \"default_pan\" : 128,\n         \"duplicate_check_type\" : 0,\n         \"duplicate_note_action\" : 0,\n         \"fadeout\" : 0,\n         \"global_volume\" : 64,\n         \"graph_insert\" : 0,\n         \"legacy_filename\" : \"\",\n         \"midi_bank\" : 0,\n         \"midi_channel\" : 0,\n         \"midi_drum_set\" : 0,\n         \"midi_program\" : 0,\n         \"name\" : \"\",\n         \"new_note_action\" : 1,\n         \"note_map\" : null,\n         \"panning_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 32\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 32\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"pitch_pan_center\" : 60,\n         \"pitch_pan_separation\" : 0,\n         \"pitch_to_tempo_lock\" : 0,\n         \"random_cutoff_weight\" : 0,\n         \"random_pan_weight\" : 0,\n         \"random_resonance_weight\" : 0,\n         \"random_volume_weight\" : 0,\n         \"sample_map\" : null,\n         \"tuning\" : null,\n         \"volume_envelope\" : {\n            \"loop_end\" : 0,\n            \"loop_start\" : 0,\n            \"nodes\" : [\n               {\n                  \"tick\" : 0,\n                  \"value\" : 64\n               },\n               {\n                  \"tick\" : 10,\n                  \"value\" : 64\n               }\n            ],\n            \"release_node\" : 255,\n            \"sustain_end\" : 0,\n            \"sustain_start\" : 0\n         },\n         \"volume_ramp_down\" : 0,\n         \"volume_ramp_up\" : 0\n      }\n   ],\n   \"message\" : null,\n   \"name\" : \"epanos\",\n   \"orderlist\" : null,\n   \"patterns\" : [\n      {\n         \"data\" : null,\n         \"name\" : \"reset\",\n         \"rows\" : 32,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"pad sweep intro\",\n         \"rows\" : 512,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : [\n            {\n               \"channel\" : 0,\n               \"fxcmd\" : 0,\n               \"fxparam\" : 0,\n               \"instr\" : 0,\n               \"note\" : 254,\n               \"row\" : 0,\n               \"volcmd\" : 0,\n               \"volval\" : 0\n            }\n         ],\n         \"name\" : \"kick + sample intro\",\n         \"rows\" : 512,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"intro transition\",\n         \"rows\" : 256,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"a 1\",\n         \"rows\" : 512,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"b 1\",\n         \"rows\" : 512,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"transition 1\",\n         \"rows\" : 512,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"a 2\",\n         \"rows\" : 512,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 576,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"b1\",\n         \"rows\" : 512,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"b 2\",\n         \"rows\" : 512,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 512,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"c\",\n         \"rows\" : 512,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : [\n            {\n               \"channel\" : 0,\n               \"fxcmd\" : 0,\n               \"fxparam\" : 0,\n               \"instr\" : 0,\n               \"note\" : 254,\n               \"row\" : 0,\n               \"volcmd\" : 0,\n               \"volval\" : 0\n            }\n         ],\n         \"name\" : \"end\",\n         \"rows\" : 512,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      },\n      {\n         \"data\" : null,\n         \"name\" : \"\",\n         \"rows\" : 64,\n         \"rows_per_beat\" : 0,\n         \"rows_per_measure\" : 0\n      }\n   ],\n   \"pluginstate\" : null,\n   \"samples\" : [\n      {\n         \"c5_samplerate\" : 8363,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 49492,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"Nr-14.wav\",\n         \"length\" : 360,\n         \"loop_end\" : 358,\n         \"loop_start\" : 98,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 8363,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"VEH3 Basses\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 33,\n         \"legacy_filename\" : \"CH Dynamo\",\n         \"length\" : 21056,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"HHclose.wav\",\n         \"length\" : 4079,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"holyass.wav\",\n         \"length\" : 9457,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"free SOR KFR\",\n         \"length\" : 10091,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"0003 1-Audio\",\n         \"length\" : 935268,\n         \"loop_end\" : 935267,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 83235,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"anger.wav\",\n         \"length\" : 14760,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 55,\n         \"legacy_filename\" : \"OH Dynamo\",\n         \"length\" : 61923,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"hats[178]\",\n         \"length\" : 14345,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 53,\n         \"legacy_filename\" : \"hats[178]\",\n         \"length\" : 14172,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 29,\n         \"legacy_filename\" : \"\",\n         \"length\" : 4607,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"47454_Gijskn\",\n         \"length\" : 4969,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"hh3open.wav\",\n         \"length\" : 120997,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 44,\n         \"legacy_filename\" : \"hh3open.wav\",\n         \"length\" : 120121,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 12,\n         \"legacy_filename\" : \"GDRD1CD1V1\",\n         \"length\" : 12286,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"OH Dynamo\",\n         \"length\" : 44145,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"CR8hatcl.wav\",\n         \"length\" : 6289,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 8363,\n         \"global_volume\" : 12,\n         \"legacy_filename\" : \"eee.wav\",\n         \"length\" : 34864,\n         \"loop_end\" : 34862,\n         \"loop_start\" : 25000,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 44,\n         \"legacy_filename\" : \"holycrap2\",\n         \"length\" : 344123,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 21575,\n         \"global_volume\" : 0,\n         \"legacy_filename\" : \"pain.wav\",\n         \"length\" : 8180,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 22050,\n         \"global_volume\" : 0,\n         \"legacy_filename\" : \"jump3.wav\",\n         \"length\" : 13496,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"JHO Verse\",\n         \"length\" : 91574,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"yummy_xmix4_\",\n         \"length\" : 45184,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 9,\n         \"legacy_filename\" : \"douchesweep_\",\n         \"length\" : 1764000,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"augh_01.wav\",\n         \"length\" : 80080,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"yummy_xmix4_\",\n         \"length\" : 45281,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"VEH3 Pre-Shi\",\n         \"length\" : 14229,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"VEH3 Snares\",\n         \"length\" : 9738,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"yummy_xmix4_\",\n         \"length\" : 44885,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"kick_click\",\n         \"length\" : 1172,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"TF_138_drum_\",\n         \"length\" : 4823,\n         \"loop_end\" : 4823,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 16,\n         \"legacy_filename\" : \"TF_138_HiHat\",\n         \"length\" : 5288,\n         \"loop_end\" : 5288,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"\",\n         \"length\" : 3857,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"ANGRYPIANO\",\n         \"length\" : 204289,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"holyass.wav\",\n         \"length\" : 81867,\n         \"loop_end\" : 81867,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"yummy_xmix4_\",\n         \"length\" : 44800,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"01-111222_08\",\n         \"length\" : 50608,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 27,\n         \"legacy_filename\" : \"hh3open.wav\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 33032,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"VEE2 Bassdru\",\n         \"length\" : 12488,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 108223,\n         \"global_volume\" : 63,\n         \"legacy_filename\" : \"dabass.wav\",\n         \"length\" : 83268,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"ANGRYPIANO\",\n         \"length\" : 204289,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"free SOR KFR\",\n         \"length\" : 8039,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 48,\n         \"legacy_filename\" : \"yummy_intro\",\n         \"length\" : 338668,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 40,\n         \"legacy_filename\" : \"\",\n         \"length\" : 5061,\n         \"loop_end\" : 5059,\n         \"loop_start\" : 4182,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 39282,\n         \"global_volume\" : 38,\n         \"legacy_filename\" : \"\",\n         \"length\" : 5001,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"INDUSTRIAL_s\",\n         \"length\" : 96453,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 55828,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"bass2.wav\",\n         \"length\" : 338152,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"OH Dynamo\",\n         \"length\" : 61923,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"Mine_Break_1\",\n         \"length\" : 5650,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"moogbass.wav\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 27776,\n         \"global_volume\" : 23,\n         \"legacy_filename\" : \"PIANO56\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"cepstral_01\",\n         \"length\" : 62440,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"yummy_xmix2\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"01-111222_08\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"01-111222_08\",\n         \"length\" : 35776,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 8363,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 43825,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"yummy_xmix7_\",\n         \"length\" : 128402,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"dorfenhorf\",\n         \"length\" : 39975,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 8363,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 44100,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"\",\n         \"length\" : 0,\n         \"loop_end\" : 0,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      },\n      {\n         \"c5_samplerate\" : 60472,\n         \"global_volume\" : 64,\n         \"legacy_filename\" : \"dabass.wav\",\n         \"length\" : 9861,\n         \"loop_end\" : 9859,\n         \"loop_start\" : 0,\n         \"name\" : \"test\",\n         \"pan\" : 128,\n         \"sustain_end\" : 0,\n         \"sustain_start\" : 0,\n         \"vibrato_depth\" : 0,\n         \"vibrato_rate\" : 0,\n         \"vibrato_sweep\" : 0,\n         \"vibrato_type\" : 0,\n         \"volume\" : 256\n      }\n   ],\n   \"version\" : 1\n}\n"
  },
  {
    "path": "testdata/mesh.json",
    "content": "{\"batches\": [{\"indexRange\": [0, 33408], \"vertexRange\": [0, 3600], \"usedBones\": [22]}], \"morphTargets\": {}, \"positions\": [-0.0636837780476, 2.34647130966, 0.0452156066895, -0.0606756210327, 2.34551143646, 0.0295177698135, -0.0577713251114, 2.35072994232, 0.0302016735077, -0.0611855685711, 2.35236978531, 0.0464453697205, -0.0572466850281, 2.34213256836, 0.0151053667068, -0.0538873374462, 2.34651136398, 0.0153127908707, -0.0500386953354, 2.35005044937, 0.0154707431793, -0.0541608035564, 2.35478925705, 0.0311042070389, -0.0577769577503, 2.35722780228, 0.0477689504623, -0.0491383075714, 2.35714840889, 0.0318441390991, -0.0525485277176, 2.36010742188, 0.0491374731064, -0.0452115237713, 2.35152959824, 0.0158544778824, -0.0398955643177, 2.351749897, 0.016560792923, -0.0434094965458, 2.358907938, 0.032267332077, -0.0464098453522, 2.36276626587, 0.0498303174973, -0.0672268867493, 2.34249258041, 0.0760914087296, -0.0658501386642, 2.34509181976, 0.0610657930374, -0.0636596381664, 2.35148978233, 0.0629088878632, -0.0652514994144, 2.34931063652, 0.0785007476807, -0.0603807270527, 2.35694813728, 0.0647082328796, -0.0620350837708, 2.35528898239, 0.0807291269302, -0.0549257993698, 2.36064720154, 0.066307425499, -0.0563369989395, 2.35968732834, 0.0825264453888, -0.0483827590942, 2.36380624771, 0.067479968071, -0.0493980646133, 2.36344623566, 0.0839664936066, -0.0678191184998, 2.33627438545, 0.10135602951, -0.0678658783436, 2.33937382698, 0.0896501541138, -0.0660189092159, 2.34661126137, 0.0925059318542, -0.066019654274, 2.34397220612, 0.104495167732, -0.0628027915955, 2.3531293869, 0.0950469970703, -0.0627468526363, 2.35096979141, 0.107242465019, -0.0568488836288, 2.35818767548, 0.0969561338425, -0.0565277338028, 2.35656833649, 0.109250426292, -0.0495254695415, 2.3625664711, 0.0984976291656, -0.0488352775574, 2.36146688461, 0.110888957977, -0.0658765137196, 2.32881689072, 0.120658159256, -0.067138761282, 2.33299541473, 0.11143040657, -0.0653115212917, 2.3408331871, 0.115031242371, -0.0639520585537, 2.33665418625, 0.124725461006, -0.0619300603867, 2.34801077843, 0.118185520172, -0.0604153871536, 2.34387207031, 0.128269433975, -0.0554404258728, 2.35384893417, 0.12044608593, -0.0536540448666, 2.34987044334, 0.130766153336, -0.0473966598511, 2.35902738571, 0.122259736061, -0.0452800989151, 2.35522866249, 0.132739067078, -0.0618149340153, 2.31801986694, 0.136624932289, -0.064084649086, 2.32379817963, 0.129058122635, -0.0619994401932, 2.33153581619, 0.133562207222, -0.0595110654831, 2.32555770874, 0.141525506973, -0.0582656562328, 2.33869361877, 0.137468934059, -0.0555436313152, 2.33257579803, 0.145758748055, -0.0512347221375, 2.34473204613, 0.14018034935, -0.0482494533062, 2.33853387833, 0.148657679558, -0.0425551235676, 2.3501701355, 0.142293572426, -0.0392917096615, 2.34397220612, 0.150889396667, -0.0560503005981, 2.30452394485, 0.149242520332, -0.0591193139553, 2.31156206131, 0.143354654312, -0.0565446615219, 2.31881976128, 0.148598909378, -0.0531583726406, 2.31140208244, 0.154766798019, -0.052312463522, 2.32559776306, 0.153113484383, -0.0486346483231, 2.3178601265, 0.159507632256, -0.0447648763657, 2.33141589165, 0.156168222427, -0.0408476889133, 2.32347822189, 0.162681221962, -0.0355596542358, 2.33677434921, 0.158493041992, -0.0314289033413, 2.32865691185, 0.16507101059, -0.0489984452724, 2.28896856308, 0.158474206924, -0.0526590645313, 2.29694628716, 0.154283761978, -0.0494094789028, 2.30340433121, 0.160013318062, -0.0453561544418, 2.29492712021, 0.164322018623, -0.0445733070374, 2.30948233604, 0.164916276932, -0.040191501379, 2.30056548119, 0.169313907623, -0.0365645587444, 2.31480073929, 0.168165922165, -0.0319820642471, 2.30554366112, 0.172592163086, -0.0269692242146, 2.3197593689, 0.170588970184, -0.0222505331039, 2.31018209457, 0.175014138222, -0.0410751998425, 2.27201366425, 0.164283633232, -0.0451195538044, 2.28061103821, 0.1618090868, -0.0410557985306, 2.286049366, 0.167677760124, -0.0365663766861, 2.27687263489, 0.170063614845, -0.0355516672134, 2.29118776321, 0.172675013542, -0.0307169854641, 2.28149080276, 0.174974799156, -0.0271672010422, 2.29576683044, 0.175929427147, -0.0221862792969, 2.2856297493, 0.17814719677, -0.0173424184322, 2.30006527901, 0.178312540054, -0.0123151540756, 2.2895283699, 0.180450439453, -0.032696723938, 2.25433921814, 0.166633963585, -0.0369168519974, 2.26321649551, 0.165893316269, -0.0319457948208, 2.26747512817, 0.171464204788, -0.0272513926029, 2.25797796249, 0.171863555908, -0.0257501900196, 2.27153396606, 0.17618727684, -0.0207143127918, 2.26143741608, 0.176287770271, -0.0171064138412, 2.275192976, 0.179214954376, -0.0119939744473, 2.26459646225, 0.17910182476, -0.00723826885223, 2.27865195274, 0.181394338608, -0.00218176841736, 2.26759529114, 0.181110739708, -0.0242786407471, 2.23660469055, 0.165488839149, -0.0284665822983, 2.2454419136, 0.166500806808, -0.0225411653519, 2.24844121933, 0.171245217323, -0.0178730487823, 2.23896360397, 0.169593453407, -0.0156721174717, 2.25130033493, 0.175250649452, -0.0106866061687, 2.24124288559, 0.173050761223, -0.00691577792168, 2.25393939018, 0.177777767181, -0.00193846225739, 2.24334263802, 0.175212144852, 0.00278437137604, 2.25645828247, 0.179565548897, 0.00759062170982, 2.2453417778, 0.176725506783, -0.0162370502949, 2.21944999695, 0.160811781883, -0.0201848745346, 2.22790718079, 0.163594245911, -0.0133045017719, 2.22964668274, 0.166892886162, -0.00889348983765, 2.22058939934, 0.163126468658, -0.00582042336464, 2.23134636879, 0.169662475586, -0.00113663077354, 2.22168898582, 0.165060758591, 0.00287127494812, 2.2329056263, 0.171374320984, 0.00744673609734, 2.22272872925, 0.166233778, 0.0121668279171, 2.23440551758, 0.172556996346, 0.0164432823658, 2.22372841835, 0.167026281357, -0.00883674621582, 2.20333433151, 0.15301668644, -0.012487411499, 2.21131229401, 0.157137274742, -0.00469765067101, 2.21187210083, 0.158279180527, -0.000609427690506, 2.20333433151, 0.152891039848, 0.00330197811127, 2.21243190765, 0.159220457077, 0.00761792063713, 2.20333433151, 0.152760386467, 0.0117211341858, 2.212931633, 0.159760355949, 0.0158450603485, 2.20333433151, 0.152620434761, 0.0203500688076, 2.21343135834, 0.160099625587, 0.0240721702576, 2.20333433151, 0.152475237846, -0.0597605407238, 2.36768484116, 0.0361577272415, -0.0571503341198, 2.3663854599, 0.01828789711, -0.0541204214096, 2.37130403519, 0.0170049667358, -0.0562793910503, 2.37298345566, 0.0353996753693, -0.054070264101, 2.36344623566, 0.000998497009277, -0.0514784753323, 2.3677649498, -0.000528216362, -0.0482728481293, 2.37134385109, -0.00182104110718, -0.0503713786602, 2.37542247772, 0.0158895254135, -0.0519779622555, 2.37750196457, 0.0346394777298, -0.045183390379, 2.37792158127, 0.0151082277298, -0.0460356771946, 2.38072109222, 0.0336573123932, -0.04383918643, 2.37344312668, -0.00264608860016, -0.0387916564941, 2.37480282784, -0.00323724746704, -0.0392759740353, 2.37958145142, 0.01449406147, -0.0392729043961, 2.38274049759, 0.0330959558487, -0.0622256696224, 2.36276650429, 0.0730373859406, -0.061431646347, 2.36600542068, 0.054852604866, -0.0574721992016, 2.37188386917, 0.0543873310089, -0.0577656030655, 2.36904430389, 0.073026061058, -0.0526005029678, 2.37688231468, 0.0539042949677, -0.0523108243942, 2.37446284294, 0.0728509426117, -0.0459042787552, 2.38052105904, 0.053004026413, -0.0448668897152, 2.37836194038, 0.0721564292908, -0.0382958352566, 2.38296031952, 0.0524063110352, -0.0364281833172, 2.38114118576, 0.0715764760971, -0.0614310503006, 2.35606861115, 0.103752732277, -0.0622045993805, 2.35918736458, 0.0895817279816, -0.0572260916233, 2.36576557159, 0.0900720357895, -0.0559204816818, 2.36294651031, 0.104676961899, -0.0511803627014, 2.37152385712, 0.0902436971664, -0.0492811203003, 2.36896443367, 0.105219125748, -0.0430006682873, 2.37560272217, 0.0898035764694, -0.0403832197189, 2.37324333191, 0.104999899864, -0.0337537527084, 2.3786816597, 0.0892394781113, -0.0303564071655, 2.37664222717, 0.10439991951, -0.0578738749027, 2.34883069992, 0.127290487289, -0.0599666833878, 2.35290956497, 0.116017818451, -0.0539157390594, 2.35990762711, 0.117529988289, -0.0512781143188, 2.35582876205, 0.129404187202, -0.0466843545437, 2.36604547501, 0.118518233299, -0.0434618294239, 2.36202669144, 0.130847096443, -0.0370922088623, 2.37050390244, 0.118458628654, -0.0332045853138, 2.36664533615, 0.130948543549, -0.0263197124004, 2.37414312363, 0.117875218391, -0.0217270553112, 2.37044405937, 0.130379199982, -0.0520516633987, 2.33807373047, 0.146765351295, -0.055214881897, 2.34387207031, 0.1375477314, -0.0480744540691, 2.3507900238, 0.140259385109, -0.044371843338, 2.34487199783, 0.150055766106, -0.0396853685379, 2.3569881916, 0.142153024673, -0.0354264974594, 2.35097002983, 0.152383327484, -0.0287983119488, 2.36168670654, 0.14241039753, -0.0239505469799, 2.35570859909, 0.152785420418, -0.0166624486446, 2.36564564705, 0.141849517822, -0.0112096071243, 2.35974740982, 0.152224421501, -0.0444617271423, 2.32421779633, 0.161983847618, -0.0484465360641, 2.33151578903, 0.154918789864, -0.0402362346649, 2.33809399605, 0.158752918243, -0.0357350409031, 2.33053636551, 0.166310667992, -0.0307569205761, 2.34405207634, 0.16148519516, -0.0257482528687, 2.33629441261, 0.169405698776, -0.0187391042709, 2.34877061844, 0.162014365196, -0.0132410526276, 2.34093284607, 0.170038223267, -0.00545224547386, 2.35286951065, 0.161441683769, 0.000526070594788, 2.34505176544, 0.169438958168, -0.0356012284756, 2.30772280693, 0.172751903534, -0.0401590168476, 2.31628060341, 0.167936325073, -0.0309344530106, 2.32225894928, 0.17268884182, -0.025901556015, 2.31332159042, 0.177847266197, -0.0204720199108, 2.32775688171, 0.176092267036, -0.0150001347065, 2.31849956512, 0.181491732597, -0.0075341463089, 2.33229589462, 0.176797986031, -0.00169563293457, 2.32285881042, 0.182234406471, 0.00664159655571, 2.33635473251, 0.176154732704, 0.0128105580807, 2.32683730125, 0.181526184082, -0.0259673595428, 2.2890086174, 0.178874492645, -0.0308499038219, 2.29862594604, 0.176405906677, -0.0207028090954, 2.30378437042, 0.181745886803, -0.0154047906399, 2.2936873436, 0.184344649315, -0.00940427184105, 2.30860280991, 0.185551762581, -0.00375580787659, 2.29810619354, 0.188219189644, 0.0041968524456, 2.31274175644, 0.186288952827, 0.0100660324097, 2.30198478699, 0.188902020454, 0.0189493000507, 2.3165602684, 0.185491681099, 0.02497407794, 2.3056037426, 0.187988996506, -0.0160577297211, 2.26853489876, 0.180157423019, -0.0210160315037, 2.27897167206, 0.180132985115, -0.0100744962692, 2.28313040733, 0.185603380203, -0.00477847456932, 2.27215385437, 0.185481548309, 0.00187337398529, 2.287109375, 0.18944132328, 0.00741171836853, 2.27563285828, 0.189165353775, 0.0158342123032, 2.29066824913, 0.190014839172, 0.0214239358902, 2.27883172035, 0.189568281174, 0.0308012962341, 2.29402732849, 0.188956141472, 0.0363471508026, 2.28189086914, 0.18833065033, -0.00636947154999, 2.24672150612, 0.176406145096, -0.0111548602581, 2.25775814056, 0.178923130035, 0.00041651725769, 2.26081728935, 0.18393945694, 0.00544381141663, 2.24918079376, 0.180936694145, 0.0127875506878, 2.26377630234, 0.187338471413, 0.0179291963577, 2.25157999992, 0.183907985687, 0.0267579555511, 2.2665553093, 0.187503457069, 0.0317588746548, 2.25389957428, 0.183761000633, 0.0415282547474, 2.26925468445, 0.186050891876, 0.0462603569031, 2.2561788559, 0.182054638863, 0.00260016322136, 2.22398805618, 0.167426228523, -0.00176373124123, 2.23544502258, 0.172581911087, 0.0102367401123, 2.23730444908, 0.176433086395, 0.0147286355495, 2.22522783279, 0.170388817787, 0.0227649509907, 2.23914384842, 0.178820967674, 0.0272231996059, 2.22648739815, 0.172024726868, 0.0363485813141, 2.24094343185, 0.178281903267, 0.0404504239559, 2.22772693634, 0.171007514, 0.0504602193832, 2.24272251129, 0.17627966404, 0.0540436506271, 2.22896671295, 0.168664097786, 0.0105679929256, 2.20081543922, 0.153725385666, 0.00666007399559, 2.21243190765, 0.160914778709, 0.0188526213169, 2.21305179596, 0.162763237953, 0.0227929353714, 2.20081543922, 0.15434718132, 0.0312323570251, 2.21369171143, 0.163466334343, 0.0350170433521, 2.20081567764, 0.154026865959, 0.0439863204956, 2.21431136131, 0.161878585815, 0.0472395420074, 2.20081543922, 0.151822328568, 0.0569275617599, 2.21495127678, 0.159145593643, 0.0594613850117, 2.20081543922, 0.148675680161, -0.129561275244, 2.29718589783, 0.0231043100357, -0.128583788872, 2.29302740097, 0.00803446769714, -0.126260489225, 2.29892587662, 0.00372791290283, -0.127461910248, 2.30392432213, 0.0195960998535, -0.127395898104, 2.28822898865, -0.00737321376801, -0.124825358391, 2.29322719574, -0.0124760866165, -0.121257215738, 2.29788613319, -0.0165650844574, -0.122790545225, 2.30442428589, 0.000258922576904, -0.124074727297, 2.31024217606, 0.016717672348, -0.117027521133, 2.30934286118, -0.00177896022797, -0.11811169982, 2.31600046158, 0.0147761106491, -0.115694254637, 2.30192470551, -0.0186597108841, -0.109134078026, 2.30596351624, -0.0200673341751, -0.110117703676, 2.31442117691, -0.00349283218384, -0.110861182213, 2.32187891006, 0.0129392147064, -0.130266278982, 2.30186462402, 0.0511947870255, -0.130118966103, 2.30010557175, 0.0374981164932, -0.12819609046, 2.30758333206, 0.0347929000854, -0.128473609686, 2.3099424839, 0.0492894649506, -0.124860286713, 2.31462097168, 0.0324894189835, -0.125159025192, 2.31746006012, 0.0476993322372, -0.118698567152, 2.32107925415, 0.0307261943817, -0.118800520897, 2.32425785065, 0.0463730096817, -0.111123889685, 2.32759714127, 0.0288715362549, -0.11092031002, 2.33111619949, 0.0447728633881, -0.129368513823, 2.30214500427, 0.076410651207, -0.130012750626, 2.30252456665, 0.0641725063324, -0.128304600716, 2.31108212471, 0.0630574226379, -0.127699643373, 2.31110215187, 0.0760684013367, -0.124981850386, 2.3189997673, 0.0621658563614, -0.124340504408, 2.3193397522, 0.0758239030838, -0.118430256844, 2.32579779625, 0.0615463256836, -0.117600291967, 2.32619738579, 0.0757746696472, -0.1102643013, 2.33255553246, 0.0605537891388, -0.10916981101, 2.33257579803, 0.0756207704544, -0.126946896315, 2.29862594604, 0.0985815525055, -0.128343433142, 2.30082511902, 0.0878875255585, -0.126669317484, 2.31004238129, 0.0882934331894, -0.125224143267, 2.30800294876, 0.099703669548, -0.123245716095, 2.31851959229, 0.0886830091476, -0.121709674597, 2.31660032272, 0.100707292557, -0.116323232651, 2.32553768158, 0.0890401601791, -0.114611744881, 2.32369804382, 0.101474642754, -0.10765132308, 2.33181595802, 0.0893812179565, -0.10572245717, 2.33001637459, 0.102123498917, -0.123079448938, 2.29182767868, 0.117536664009, -0.125189036131, 2.295586586, 0.108471751213, -0.1233741045, 2.30502390862, 0.110270738602, -0.121130228043, 2.30122470856, 0.11996614933, -0.119742870331, 2.31368112564, 0.111861467361, -0.117357224226, 2.30982255936, 0.122109055519, -0.112478464842, 2.32075929642, 0.113035082817, -0.109935998917, 2.31682038307, 0.123679637909, -0.103397578001, 2.3270573616, 0.114000678062, -0.100690633059, 2.32303857803, 0.124963879585, -0.117843985558, 2.28237056732, 0.133105397224, -0.120627790689, 2.28740930557, 0.125754952431, -0.118502855301, 2.29666662216, 0.128761172295, -0.115501910448, 2.29138803482, 0.136626958847, -0.114563792944, 2.30510377884, 0.131415009499, -0.111373901367, 2.29962563515, 0.139743328094, -0.106996893883, 2.31196165085, 0.133365511894, -0.103673696518, 2.30624341965, 0.142050385475, -0.0976159274578, 2.31801986694, 0.134963989258, -0.0941873788834, 2.31208181381, 0.14395236969, -0.111319154501, 2.27081418037, 0.145117044449, -0.114737898111, 2.27681255341, 0.139566421509, -0.11213850975, 2.28550958633, 0.143535017967, -0.108422845602, 2.27909183502, 0.149457097054, -0.107799053192, 2.29342746735, 0.147058367729, -0.103850454092, 2.28660964966, 0.153324246407, -0.0999789535999, 2.29976558685, 0.149691462517, -0.0959256589413, 2.29260778427, 0.15624666214, -0.0904189050198, 2.30532360077, 0.151879429817, -0.0863246917725, 2.29784631729, 0.158696293831, -0.103582948446, 2.25769805908, 0.15340089798, -0.107597470284, 2.2644162178, 0.149735569954, -0.104365319014, 2.27219390869, 0.15436398983, -0.0999764204025, 2.26491594315, 0.158227324486, -0.0995393693447, 2.27925157547, 0.158505320549, -0.0948773622513, 2.2714343071, 0.16256582737, -0.0915261507034, 2.28485012054, 0.161672949791, -0.0867929458618, 2.27657222748, 0.165928483009, -0.0819192826748, 2.28970861435, 0.164353728294, -0.0772158801556, 2.28101110458, 0.168803095818, -0.0947135984898, 2.24364256859, 0.157786130905, -0.0992850065231, 2.25076007843, 0.156091332436, -0.0952666699886, 2.25729823112, 0.161018610001, -0.0902465581894, 2.24946069717, 0.162708878517, -0.089875459671, 2.26321649551, 0.165470004082, -0.0845452547073, 2.25467920303, 0.167182087898, -0.0817389190197, 2.26783514023, 0.168970346451, -0.0763763189316, 2.25875759125, 0.170756340027, -0.072229385376, 2.27183389664, 0.171995043755, -0.0669733583927, 2.26225662231, 0.173880815506, -0.08478936553, 2.22918701172, 0.15810251236, -0.0898784697056, 2.23642468452, 0.158463478088, -0.084926366806, 2.24142313004, 0.163269877434, -0.0793166458607, 2.23330545425, 0.162672877312, -0.078898191452, 2.2459218502, 0.167666435242, -0.0729452073574, 2.23700428009, 0.166887283325, -0.0707180500031, 2.24940085411, 0.171243429184, -0.0647766590118, 2.23984360695, 0.170389652252, -0.0614622533321, 2.25237989426, 0.174410939217, -0.0557098090649, 2.24226284027, 0.173536419868, -0.0738884210587, 2.21491122246, 0.154178857803, -0.0794562101364, 2.2219889164, 0.15668129921, -0.0734278857708, 2.22516775131, 0.160889029503, -0.0672704875469, 2.21709060669, 0.157889962196, -0.0666978359222, 2.22800731659, 0.164808869362, -0.0601674318314, 2.21902990341, 0.161395192146, -0.0585649013519, 2.2301864624, 0.168152689934, -0.0520950555801, 2.22048902512, 0.164489388466, -0.0497301518917, 2.23202610016, 0.171208500862, -0.0435376167297, 2.22172880173, 0.167377829552, -0.0621916055679, 2.20123529434, 0.146417498589, -0.0680962502956, 2.20801329613, 0.150573730469, -0.0608547925949, 2.20913290977, 0.153646707535, -0.0543102025986, 2.20123529434, 0.148781657219, -0.0533654689789, 2.21011257172, 0.156610846519, -0.0464276075363, 2.20123529434, 0.151141405106, -0.0453798770905, 2.21085262299, 0.159357666969, -0.0385419130325, 2.20123529434, 0.153491616249, -0.0371459722519, 2.21147203445, 0.161995530128, -0.0306551456451, 2.20123529434, 0.155837416649, -0.14867028594, 2.20501422882, -0.0801923274994, -0.141403317451, 2.21063232422, -0.0942178964615, -0.144010752439, 2.21655035019, -0.0919879674911, -0.15175318718, 2.21145248413, -0.0776852369308, -0.133666992188, 2.21647047997, -0.108432769775, -0.135750770569, 2.22180891037, -0.106453299522, -0.136678338051, 2.22714734077, -0.104631900787, -0.145310372114, 2.22250890732, -0.0898886919022, -0.153386473656, 2.21799039841, -0.075287938118, -0.143994688988, 2.22856712341, -0.0880497694016, -0.152120679617, 2.22470808029, -0.0731097459793, -0.135293960571, 2.23248577118, -0.103128194809, -0.132753491402, 2.23782444, -0.101782917976, -0.141371577978, 2.23466491699, -0.0863415002823, -0.14940533042, 2.23154616356, -0.0710413455963, -0.160423517227, 2.19505691528, -0.0533034801483, -0.154999226332, 2.19983577728, -0.0665446519852, -0.158461093903, 2.20669364929, -0.0637067556381, -0.164171427488, 2.20225477219, -0.0500900745392, -0.16035091877, 2.21369171143, -0.060972571373, -0.166244029999, 2.2096529007, -0.0469876527786, -0.159096479416, 2.22100901604, -0.058445930481, -0.164965987206, 2.21745061874, -0.0441070795059, -0.156270235777, 2.22846698761, -0.0560232400894, -0.162012457848, 2.22546768188, -0.0413373708725, -0.168693870306, 2.18665981293, -0.0281538963318, -0.164977163076, 2.1906785965, -0.0404971837997, -0.168921589851, 2.19813632965, -0.0368732213974, -0.172748446465, 2.19429731369, -0.024093747139, -0.171106308699, 2.2058339119, -0.0333782434464, -0.174977749586, 2.20225477219, -0.0201896429062, -0.169771701097, 2.21405124664, -0.030141711235, -0.173557370901, 2.21079230309, -0.0165982246399, -0.166677683592, 2.2225086689, -0.0270338058472, -0.170311778784, 2.21964979172, -0.0131628513336, -0.173751115799, 2.17968177795, -0.00497007369995, -0.171607166529, 2.18300056458, -0.0163022279739, -0.175689190626, 2.19075846672, -0.0117888450623, -0.17778095603, 2.18749904633, 3.21865081787e-06, -0.177899092436, 2.19887590408, -0.00746643543243, -0.179910689592, 2.19571661949, 0.00474619865417, -0.176365733147, 2.20769333839, -0.00352501869202, -0.178240329027, 2.20471382141, 0.00902903079987, -0.172960549593, 2.2168507576, 0.00022566318512, -0.174670010805, 2.21411132812, 0.0130817890167, -0.175865054131, 2.17398333549, 0.0160212516785, -0.175159096718, 2.17668294907, 0.00581395626068, -0.179060906172, 2.18450021744, 0.011244893074, -0.179566144943, 2.18176102638, 0.0218989849091, -0.181052565575, 2.19277763367, 0.0164031982422, -0.18136537075, 2.19001865387, 0.0274597406387, -0.179224252701, 2.20189523697, 0.0210155248642, -0.179360866547, 2.19921565056, 0.0323860645294, -0.175486057997, 2.21147203445, 0.0253549814224, -0.175454467535, 2.20889282227, 0.0369955301285, -0.175305843353, 2.16938495636, 0.0345931053162, -0.175902634859, 2.17154407501, 0.0256239175797, -0.179334044456, 2.17926168442, 0.0319272279739, -0.178401321173, 2.1769824028, 0.0412924289703, -0.180889368057, 2.18747901917, 0.0378702878952, -0.179664969444, 2.18512010574, 0.0475903749466, -0.178693026304, 2.19669675827, 0.0430920124054, -0.177264302969, 2.19429731369, 0.053084731102, -0.174620866776, 2.20641374588, 0.0479528903961, -0.173031538725, 2.20399427414, 0.0581774711609, -0.172342985868, 2.16574573517, 0.0505191087723, -0.17410799861, 2.16744542122, 0.0429012775421, -0.176805615425, 2.17492341995, 0.0499569177628, -0.174583643675, 2.17306375504, 0.0578830242157, -0.17773231864, 2.18294095993, 0.0565744638443, -0.175132155418, 2.18094134331, 0.0647780895233, -0.175117492676, 2.19203805923, 0.0623158216476, -0.17229616642, 2.18993854523, 0.0707367658615, -0.170732021332, 2.20169520378, 0.0676188468933, -0.167768359184, 2.19945573807, 0.0762268304825, -0.167246669531, 2.16290688515, 0.0635726451874, -0.170044630766, 2.16422653198, 0.0574191808701, -0.17177271843, 2.17140436172, 0.0650326013565, -0.168409913778, 2.16992473602, 0.0713684558868, -0.171904534101, 2.17914175987, 0.072155714035, -0.168089777231, 2.17748212814, 0.0786627531052, -0.16884341836, 2.1879594326, 0.0782988071442, -0.16480243206, 2.18612003326, 0.0849539041519, -0.164186239243, 2.19733667374, 0.0839520692825, -0.160031676292, 2.19529676437, 0.0907436609268, -0.160286784172, 2.16070771217, 0.0735263824463, -0.163982868195, 2.1617269516, 0.0689511299133, -0.164532452822, 2.16860485077, 0.0768526792526, -0.16017767787, 2.16744542122, 0.0814483165741, -0.163728356361, 2.17600297928, 0.0842539072037, -0.158860892057, 2.17466330528, 0.0888838768005, -0.160216450691, 2.18442058563, 0.0906533002853, -0.155128568411, 2.18284082413, 0.0953480005264, -0.155350446701, 2.19335746765, 0.0965515375137, -0.150188595057, 2.1915178299, 0.101326107979, -0.151732951403, 2.15900802612, 0.0801541805267, -0.156192183495, 2.15980768204, 0.0772703886032, -0.155382245779, 2.16642570496, 0.0851167440414, -0.150183647871, 2.1655459404, 0.0878208875656, -0.153527230024, 2.17348337173, 0.0925081968307, -0.147768139839, 2.17244410515, 0.0950818061829, -0.149582028389, 2.18142127991, 0.0989900827408, -0.143620252609, 2.18012142181, 0.101530909538, -0.144591778517, 2.18977856636, 0.105017185211, -0.138605952263, 2.18815898895, 0.107574343681, -0.141855329275, 2.15764856339, 0.0832291841507, -0.146942853928, 2.15830826759, 0.0821499824524, -0.144618868828, 2.16476631165, 0.0895229578018, -0.138725280762, 2.16410636902, 0.0901851654053, -0.141623824835, 2.17154407501, 0.096559047699, -0.135134577751, 2.17078447342, 0.0968954563141, -0.1372859478, 2.1789419651, 0.102921724319, -0.130622953176, 2.17790269852, 0.103114008904, -0.132276892662, 2.18663978577, 0.108947515488, -0.125650644302, 2.18523979187, 0.109086871147, -0.13102170825, 2.15648889542, 0.0830253362656, -0.136504292488, 2.1570687294, 0.0833634138107, -0.132539749146, 2.16354656219, 0.0897703170776, -0.126208305359, 2.16302680969, 0.0888164043427, -0.12834084034, 2.17016458511, 0.0960458517075, -0.121394962072, 2.16958475113, 0.0946034193039, -0.123673915863, 2.17700242996, 0.102059602737, -0.116582006216, 2.17614269257, 0.100381493568, -0.11877271533, 2.18394041061, 0.10794210434, -0.111769199371, 2.18272066116, 0.106155276299, -0.144266009331, 2.20941281319, -0.0795271396637, -0.13881751895, 2.21895003319, -0.0878059864044, -0.139011412859, 2.22538805008, -0.0868963003159, -0.145382881165, 2.2163105011, -0.0783410072327, -0.132957011461, 2.22876691818, -0.0959132909775, -0.132162690163, 2.23474502563, -0.0952572822571, -0.13190639019, 2.24022340775, -0.0936861038208, -0.13941386342, 2.2314863205, -0.085142493248, -0.146399974823, 2.22296857834, -0.0763890743256, -0.140233844519, 2.23684453964, -0.0817000865936, -0.147216916084, 2.22916698456, -0.0729066133499, -0.132725685835, 2.24474191666, -0.0902851819992, -0.13408267498, 2.24878072739, -0.0859687328339, -0.141262173653, 2.24186301231, -0.0774133205414, -0.147934168577, 2.23510503769, -0.0686584711075, -0.152734041214, 2.19211769104, -0.062017083168, -0.148890018463, 2.20047521591, -0.0709058046341, -0.150800228119, 2.20777320862, -0.0693964958191, -0.155313879251, 2.19973564148, -0.0601453781128, -0.152342766523, 2.2149310112, -0.0672167539597, -0.157298117876, 2.20735359192, -0.057711482048, -0.153150558472, 2.22186899185, -0.0636961460114, -0.158090472221, 2.21497106552, -0.0541538000107, -0.153590887785, 2.22868704796, -0.0595052242279, -0.158287256956, 2.2225689888, -0.0500336885452, -0.158258765936, 2.17706251144, -0.0437397956848, -0.15584218502, 2.18432044983, -0.0529364347458, -0.158975124359, 2.192237854, -0.0506701469421, -0.161834567785, 2.18521976471, -0.0410529375076, -0.161321133375, 2.20025539398, -0.0479601621628, -0.164467334747, 2.19357776642, -0.0380491018295, -0.162093043327, 2.20845317841, -0.0443637371063, -0.165214151144, 2.20233488083, -0.0344114303589, -0.162077873945, 2.21677064896, -0.0403240919113, -0.165017932653, 2.21129202843, -0.0304567813873, -0.161193728447, 2.16410636902, -0.0252990722656, -0.160027891397, 2.17032432556, -0.0345021486282, -0.163942933083, 2.17870187759, -0.0313764810562, -0.165351271629, 2.17264413834, -0.021723151207, -0.166792184114, 2.18735933304, -0.0280648469925, -0.168351560831, 2.18156099319, -0.0180939435959, -0.167510032654, 2.19657659531, -0.0243816375732, -0.169036954641, 2.191198349, -0.0143587589264, -0.167162150145, 2.20609378815, -0.0205124616623, -0.168564885855, 2.20119524002, -0.0105708837509, -0.161892980337, 2.15311002731, -0.00729882717133, -0.161800742149, 2.15836811066, -0.0162061452866, -0.166110485792, 2.16704535484, -0.0121750831604, -0.1665379107, 2.16190719604, -0.00281476974487, -0.169304728508, 2.17618298531, -0.00822257995605, -0.170619487762, 2.17120432854, 0.00146222114563, -0.169850945473, 2.18617987633, -0.00442814826965, -0.170279592276, 2.18150091171, 0.00532567501068, -0.169281721115, 2.19659662247, -0.000712513923645, -0.169366687536, 2.19227790833, 0.00898230075836, -0.16274702549, 2.14395260811, 0.00965738296509, -0.161881089211, 2.14831113815, 0.00134742259979, -0.167843699455, 2.15720844269, 0.00627505779266, -0.16985809803, 2.15290975571, 0.0150122642517, -0.171857684851, 2.1666457653, 0.0108745098114, -0.172699064016, 2.16244697571, 0.0199273824692, -0.17108297348, 2.17716264725, 0.0148178339005, -0.171666741371, 2.17316389084, 0.0239636898041, -0.169289857149, 2.1882390976, 0.0184333324432, -0.169551372528, 2.18446016312, 0.0275601148605, -0.162906616926, 2.1365146637, 0.024965763092, -0.164192199707, 2.14003372192, 0.017555475235, -0.171352505684, 2.14903116226, 0.0233143568039, -0.16981947422, 2.14555191994, 0.0310990810394, -0.173091739416, 2.15864801407, 0.028534412384, -0.172260373831, 2.15522909164, 0.0366098880768, -0.171907901764, 2.16950464249, 0.0326780080795, -0.170042842627, 2.16614603996, 0.0408761501312, -0.169560164213, 2.18096160889, 0.0362824201584, -0.166682928801, 2.17770242691, 0.0445201396942, -0.157726377249, 2.13063669205, 0.0380228757858, -0.161330908537, 2.13337564468, 0.0318135023117, -0.166975736618, 2.14245319366, 0.0382837057114, -0.163123726845, 2.13973379135, 0.0447858572006, -0.170246362686, 2.1521499157, 0.044065952301, -0.165221095085, 2.14943099022, 0.0508170127869, -0.167905300856, 2.16310691833, 0.048473238945, -0.162813395262, 2.16038751602, 0.0553843975067, -0.164508700371, 2.1747033596, 0.0521926879883, -0.160261631012, 2.17196416855, 0.0592198371887, -0.151015400887, 2.12619805336, 0.0482244491577, -0.154375582933, 2.12825703621, 0.0435183048248, -0.15904840827, 2.13735437393, 0.050523519516, -0.155214101076, 2.13533520699, 0.0554139614105, -0.160217434168, 2.14705181122, 0.0567764043808, -0.155614465475, 2.14501190186, 0.0618575811386, -0.158339977264, 2.15794849396, 0.0615249872208, -0.154572486877, 2.15580892563, 0.066810131073, -0.156912058592, 2.16944503784, 0.0655213594437, -0.153888553381, 2.16716575623, 0.0710171461105, -0.14456012845, 2.12307882309, 0.054967045784, -0.147719740868, 2.12449836731, 0.0520659685135, -0.151434868574, 2.13363575935, 0.0593745708466, -0.147689431906, 2.1322760582, 0.0623235702515, -0.151490420103, 2.14329242706, 0.065974354744, -0.147695541382, 2.14189338684, 0.0690395832062, -0.151127934456, 2.15394949913, 0.0711550712585, -0.147804379463, 2.15236997604, 0.0744746923447, -0.150756090879, 2.16512584686, 0.0756264925003, -0.147540092468, 2.1633067131, 0.0792692899704, -0.138954043388, 2.12113952637, 0.0576469898224, -0.14158809185, 2.1219792366, 0.0568525791168, -0.144038677216, 2.13119649887, 0.064178109169, -0.140033692122, 2.13043665886, 0.0648555755615, -0.144175857306, 2.14077353477, 0.0709674358368, -0.140838623047, 2.13997387886, 0.0716707706451, -0.144441127777, 2.15107011795, 0.0766843557358, -0.141095042229, 2.15001058578, 0.077699303627, -0.144295245409, 2.1616871357, 0.0818653106689, -0.141076803207, 2.16028738022, 0.0833340883255, -0.133836746216, 2.12013983727, 0.0563189983368, -0.136380434036, 2.12057971954, 0.0572746992111, -0.137042194605, 2.1299366951, 0.0642739534378, -0.134082078934, 2.12959718704, 0.063062787056, -0.137568026781, 2.13945388794, 0.0710636377335, -0.134330481291, 2.13905382156, 0.0698013305664, -0.137821644545, 2.14921092987, 0.0774345397949, -0.134584754705, 2.14853096008, 0.0765297412872, -0.137939095497, 2.15910792351, 0.0835957527161, -0.134841889143, 2.1580080986, 0.0832533836365, -0.16170835495, 2.15642881393, -0.0703428983688, -0.160250544548, 2.16286659241, -0.078842997551, -0.160152196884, 2.16904497147, -0.07836997509, -0.162330776453, 2.16274690628, -0.0695654153824, -0.158588886261, 2.16948461533, -0.0873577594757, -0.157740205526, 2.17548298836, -0.0871610641479, -0.15739390254, 2.18106126785, -0.0859960317612, -0.16030216217, 2.17488336563, -0.0770000219345, -0.162961810827, 2.16882491112, -0.0679688453674, -0.160948395729, 2.18010163307, -0.0738370418549, -0.163610190153, 2.17448306084, -0.0647332668304, -0.158053129911, 2.18581986427, -0.0828952789307, -0.15459549427, 2.19015860558, -0.0824475288391, -0.157223701477, 2.18498015404, -0.073399066925, -0.159647941589, 2.17990159988, -0.0642995834351, -0.163424700499, 2.14443230629, -0.0534722805023, -0.162758260965, 2.15027046204, -0.0618723630905, -0.164042264223, 2.15668869019, -0.0607351064682, -0.165310263634, 2.15093040466, -0.0519280433655, -0.165124982595, 2.16300678253, -0.0588670969009, -0.166813015938, 2.15740823746, -0.0497514009476, -0.165804952383, 2.16906499863, -0.0555372238159, -0.167549967766, 2.16386651993, -0.0463088750839, -0.161664575338, 2.17500329018, -0.0550982952118, -0.163285106421, 2.1703042984, -0.0458549261093, -0.163705140352, 2.13363575935, -0.0370473861694, -0.163732141256, 2.13887405396, -0.0451835393906, -0.166158556938, 2.14543223381, -0.0431950092316, -0.166611075401, 2.14021396637, -0.0345853567123, -0.168047815561, 2.15206980705, -0.0406787395477, -0.168851017952, 2.14697170258, -0.0317059755325, -0.168862432241, 2.15888810158, -0.0371072292328, -0.169759303331, 2.15412950516, -0.0279915332794, -0.16452050209, 2.16578578949, -0.0366294384003, -0.165382713079, 2.16148710251, -0.027480840683, -0.162746042013, 2.12403869629, -0.0213969945908, -0.163368314505, 2.12869739532, -0.0291048288345, -0.166691511869, 2.13525509834, -0.0261495113373, -0.166423559189, 2.13059663773, -0.0179374217987, -0.169244676828, 2.14213299751, -0.0228898525238, -0.169250369072, 2.1375541687, -0.0142871141434, -0.170258373022, 2.14961099625, -0.01902115345, -0.170376330614, 2.14531207085, -0.0102555751801, -0.165882915258, 2.1573882103, -0.018469452858, -0.166032671928, 2.15348958969, -0.00965487957001, -0.160743266344, 2.1156411171, -0.00684916973114, -0.161862969398, 2.11969995499, -0.0139646530151, -0.165830880404, 2.1262178421, -0.00999879837036, -0.164937347174, 2.12211894989, -0.00238382816315, -0.168889760971, 2.13323545456, -0.00595462322235, -0.168184608221, 2.12919712067, 0.00205087661743, -0.17013040185, 2.14127326012, -0.00175404548645, -0.170463472605, 2.1374745369, 0.0064240694046, -0.166671872139, 2.14981079102, -0.00109684467316, -0.166724592447, 2.14633178711, 0.00714516639709, -0.157892912626, 2.10838317871, 0.00626742839813, -0.159411907196, 2.11186218262, -9.14335250854e-05, -0.16376671195, 2.11832022667, 0.00485754013062, -0.162343025208, 2.11480140686, 0.0116752386093, -0.168134063482, 2.12543821335, 0.00967240333557, -0.166783452034, 2.1219792366, 0.0168535709381, -0.17005905509, 2.13391566277, 0.0142197608948, -0.168821007013, 2.13061666489, 0.0215730667114, -0.16613483429, 2.14305281639, 0.0150113105774, -0.164996623993, 2.14001369476, 0.0224418640137, -0.154391169548, 2.10228514671, 0.0176248550415, -0.156211256981, 2.10518431664, 0.0121865272522, -0.160689473152, 2.11160230637, 0.0180193185806, -0.158830285072, 2.10868310928, 0.0238398313522, -0.165156334639, 2.11880016327, 0.0235371589661, -0.163274884224, 2.11592102051, 0.0296665430069, -0.167289018631, 2.12759757042, 0.0284254550934, -0.165480464697, 2.12481832504, 0.0347168445587, -0.163564771414, 2.13717460632, 0.0293771028519, -0.161850899458, 2.13457536697, 0.0357573032379, -0.150433927774, 2.09732651711, 0.0268943309784, -0.152457207441, 2.0996658802, 0.0225410461426, -0.156788915396, 2.10608386993, 0.0290868282318, -0.15458932519, 2.10378456116, 0.0337101221085, -0.16116091609, 2.11334180832, 0.0351848602295, -0.157937735319, 2.11108255386, 0.0400356054306, -0.163412451744, 2.12233924866, 0.0403884649277, -0.160752177238, 2.1201198101, 0.0453808307648, -0.158860892057, 2.13217592239, 0.0401116609573, -0.155942320824, 2.13001680374, 0.045508146286, -0.146217465401, 2.09350776672, 0.0337483882904, -0.148345798254, 2.095287323, 0.0306437015533, -0.152255266905, 2.10178542137, 0.0376601219177, -0.149810343981, 2.1001060009, 0.0408861637115, -0.155430287123, 2.10914325714, 0.0441616773605, -0.152752071619, 2.10752344131, 0.0475064516068, -0.157136321068, 2.11818027496, 0.0496344566345, -0.154391974211, 2.11654067039, 0.05309009552, -0.153173774481, 2.12807750702, 0.0498653650284, -0.149206727743, 2.12637782097, 0.0534284114838, -0.141937494278, 2.09078836441, 0.0378572940826, -0.144073098898, 2.09200811386, 0.0361663103104, -0.147278308868, 2.09874629974, 0.0433391332626, -0.144683122635, 2.09770679474, 0.0449684858322, -0.149925321341, 2.10622382164, 0.0500128269196, -0.146971583366, 2.10526418686, 0.051624417305, -0.151455849409, 2.11518120766, 0.0556886196136, -0.148345351219, 2.11414146423, 0.0573703050613, -0.146254181862, 2.12489843369, 0.0561380386353, -0.143407255411, 2.12365865707, 0.0583385229111, -0.137790352106, 2.08914899826, 0.0388940572739, -0.139835208654, 2.08982896805, 0.0387803316116, -0.142048478127, 2.09696674347, 0.0457239151001, -0.139398097992, 2.09658670425, 0.0455561876297, -0.143912553787, 2.10464453697, 0.0522840023041, -0.140770107508, 2.1043844223, 0.0519351959229, -0.145077943802, 2.1134018898, 0.0580765008926, -0.141670435667, 2.11296200752, 0.0577471256256, -0.14003932476, 2.12265872955, 0.0591617822647, -0.137716054916, 2.12191915512, 0.0587898492813, -0.133906602859, 2.08848953247, 0.0369957685471, -0.135827988386, 2.08874893188, 0.038157582283, -0.13675570488, 2.09650683403, 0.0444149971008, -0.134117335081, 2.09660673141, 0.0427870750427, -0.1375657022, 2.10446453094, 0.0505208969116, -0.134330481291, 2.10472464561, 0.0485739707947, -0.138140320778, 2.11284208298, 0.0563231706619, -0.134549021721, 2.11286187172, 0.0543520450592, -0.133978098631, 2.1213991642, 0.0574882030487, -0.130150705576, 2.12099933624, 0.0565042495728, -0.153905749321, 2.14163327217, -0.0821206569672, -0.150577753782, 2.14845132828, -0.0910823345184, -0.152280211449, 2.15288996696, -0.0877904891968, -0.156261205673, 2.14647197723, -0.0788805484772, -0.14690181613, 2.15540933609, -0.100142121315, -0.147915571928, 2.15942788124, -0.0967717170715, -0.148526161909, 2.16374635696, -0.0935200452805, -0.153400063515, 2.15766859055, -0.0845530033112, -0.157864481211, 2.15167021751, -0.0756378173828, -0.153354734182, 2.1631269455, -0.0814250707626, -0.157963871956, 2.15762829781, -0.0723896026611, -0.148330658674, 2.16868495941, -0.0905046463013, -0.147731989622, 2.17394351959, -0.0876076221466, -0.152726501226, 2.16894507408, -0.0783512592316, -0.157311290503, 2.16394662857, -0.0691387653351, -0.158520549536, 2.12897729874, -0.0648100376129, -0.156537741423, 2.13515520096, -0.0733554363251, -0.159474462271, 2.14029359818, -0.0701135396957, -0.161967128515, 2.13437509537, -0.0615195035934, -0.161510080099, 2.14585208893, -0.0668247938156, -0.164384126663, 2.14021396637, -0.0581505298615, -0.161743760109, 2.1522102356, -0.0634425878525, -0.164741486311, 2.14691162109, -0.0546234846115, -0.161076545715, 2.15898799896, -0.0600135326385, -0.164069056511, 2.15406942368, -0.0510177612305, -0.160722017288, 2.11758041382, -0.0484735965729, -0.159899711609, 2.12311887741, -0.0565083026886, -0.163786500692, 2.12869739532, -0.0531297922134, -0.164979815483, 2.12327861786, -0.0449739694595, -0.16653445363, 2.13473534584, -0.0496509075165, -0.168008893728, 2.12947702408, -0.0413625240326, -0.167004585266, 2.14173316956, -0.0459721088409, -0.168580293655, 2.13669490814, -0.0375275611877, -0.166335582733, 2.14921092987, -0.0421931743622, -0.167922645807, 2.14443254471, -0.0335808992386, -0.160880804062, 2.10742354393, -0.0333003997803, -0.161033779383, 2.1123418808, -0.0407298803329, -0.165594130754, 2.11810016632, -0.037083029747, -0.165676593781, 2.11320185661, -0.0294871330261, -0.168854832649, 2.12441849709, -0.0333213806152, -0.169119954109, 2.11956000328, -0.0255634784698, -0.16951584816, 2.13181614876, -0.0293297767639, -0.169858932495, 2.1270775795, -0.0214182138443, -0.168877243996, 2.13975358009, -0.025223493576, -0.168360590935, 2.13517522812, -0.0171620845795, -0.159366607666, 2.09850597382, -0.0194789171219, -0.160309791565, 2.10280489922, -0.0262088775635, -0.165274143219, 2.10856294632, -0.0222173929214, -0.164434075356, 2.10420465469, -0.0153032541275, -0.168852061033, 2.11494112015, -0.0181251764297, -0.168098419905, 2.11056280136, -0.0110424757004, -0.169656604528, 2.12251901627, -0.0138322114944, -0.168956369162, 2.11816048622, -0.00661158561707, -0.16821038723, 2.13071680069, -0.00942134857178, -0.167235255241, 2.12639808655, -0.00211298465729, -0.156549692154, 2.09080839157, -0.00719785690308, -0.158097863197, 2.09450721741, -0.0131341218948, -0.163203716278, 2.10012578964, -0.00877594947815, -0.161630004644, 2.09634685516, -0.00266575813293, -0.166907161474, 2.10642385483, -0.00435197353363, -0.165325641632, 2.10254478455, 0.00191056728363, -0.16780552268, 2.11400151253, 0.00020432472229, -0.166251391172, 2.11006259918, 0.00657570362091, -0.166119664907, 2.12223911285, 0.00482666492462, -0.16461071372, 2.11826038361, 0.0112851858139, -0.152800053358, 2.08435058594, 0.00335395336151, -0.154768228531, 2.08742952347, -0.00169408321381, -0.159760117531, 2.09282779694, 0.00299680233002, -0.157641410828, 2.08962869644, 0.00818145275116, -0.163401395082, 2.09892630577, 0.00770902633667, -0.161182284355, 2.09558701515, 0.0130066871643, -0.164341568947, 2.10636377335, 0.0124633312225, -0.162123054266, 2.10288500786, 0.0178275108337, -0.162749052048, 2.11446142197, 0.0172389745712, -0.160581707954, 2.11086249352, 0.0226459503174, -0.148488014936, 2.0790719986, 0.0119876861572, -0.150691360235, 2.0815513134, 0.00792217254639, -0.155320733786, 2.0867099762, 0.0128575563431, -0.152845233679, 2.08411073685, 0.0169948339462, -0.158716082573, 2.09252786636, 0.017767906189, -0.156050086021, 2.08978891373, 0.0219563245773, -0.159643411636, 2.09968590736, 0.0226285457611, -0.15694975853, 2.09674668312, 0.0268270969391, -0.158154845238, 2.10748338699, 0.0274642705917, -0.155425667763, 2.10434436798, 0.0316523313522, -0.143983483315, 2.07501316071, 0.0185143947601, -0.146236658096, 2.07689285278, 0.0155260562897, -0.150262445211, 2.08181142807, 0.0205624103546, -0.14761903882, 2.07983183861, 0.0235300064087, -0.153232187033, 2.08732938766, 0.025535941124, -0.150309801102, 2.08521032333, 0.0284699201584, -0.154090046883, 2.09408760071, 0.0303835868835, -0.151110976934, 2.09172844887, 0.0332581996918, -0.152620285749, 2.10144519806, 0.0351685285568, -0.149695843458, 2.09882640839, 0.0379709005356, -0.139656871557, 2.07213449478, 0.0227457284927, -0.141774773598, 2.07343387604, 0.0209286212921, -0.14496243, 2.07815265656, 0.0258673429489, -0.142339587212, 2.07681274414, 0.0275437831879, -0.147330731153, 2.0834107399, 0.0307229757309, -0.144342422485, 2.08195137978, 0.032258272171, -0.148060232401, 2.08968901634, 0.0354118347168, -0.144984990358, 2.08796954155, 0.0368046760559, -0.147683173418, 2.09646701813, 0.0400178432465, -0.144947618246, 2.09440755844, 0.041267156601, -0.135877758265, 2.07043480873, 0.0244925022125, -0.137675642967, 2.07113456726, 0.0239412784576, -0.139797925949, 2.07581329346, 0.028529047966, -0.137384533882, 2.07513332367, 0.0287926197052, -0.141392856836, 2.08083152771, 0.0330400466919, -0.138529330492, 2.08009195328, 0.0330319404602, -0.141932964325, 2.08658981323, 0.0373972654343, -0.138951033354, 2.08555030823, 0.0371500253677, -0.1419454813, 2.09266805649, 0.0416775941849, -0.139011025429, 2.09126853943, 0.0412074327469, -0.132855653763, 2.0697350502, 0.0239239931107, -0.134309500456, 2.07001471519, 0.0243754386902, -0.135146230459, 2.07479310036, 0.0283033847809, -0.132995605469, 2.07463359833, 0.0274385213852, -0.135799854994, 2.07971191406, 0.0321974754333, -0.133137226105, 2.07951164246, 0.0309503078461, -0.136086910963, 2.0848903656, 0.0360231399536, -0.133281469345, 2.084410429, 0.0344567298889, -0.136190652847, 2.09018874168, 0.0398144721985, -0.133427292109, 2.08928894997, 0.0379605293274, 0.167422443628, 2.17940187454, -0.0600762367249, 0.16876578331, 2.18620014191, -0.0586260557175, 0.162441968918, 2.19293785095, -0.071524977684, 0.16216340661, 2.1865196228, -0.0723495483398, 0.156365156174, 2.19387769699, -0.0848779678345, 0.155516415834, 2.19987559319, -0.0846812725067, 0.155170351267, 2.2054541111, -0.0835163593292, 0.162898033857, 2.19907569885, -0.0698562860489, 0.169982820749, 2.19287776947, -0.0564593076706, 0.170946985483, 2.19939565659, -0.0528591871262, 0.163709402084, 2.20473408699, -0.0664987564087, 0.155829340219, 2.2102124691, -0.0804152488708, 0.156991004944, 2.21455097198, -0.076346039772, 0.164698243141, 2.21015262604, -0.062296628952, 0.171784520149, 2.20581388474, -0.0485424995422, 0.174773454666, 2.1665456295, -0.0370743274689, 0.177876830101, 2.17396354675, -0.034389257431, 0.173886060715, 2.17986154556, -0.0462416410446, 0.171602368355, 2.17276382446, -0.048313498497, 0.175781130791, 2.18703937531, -0.043588757515, 0.180369108915, 2.18154096603, -0.0312646627426, 0.181639552116, 2.18949866295, -0.0272622108459, 0.176899194717, 2.19431734085, -0.0397744178772, 0.177628517151, 2.20163488388, -0.0353792905807, 0.182299137115, 2.19763636589, -0.0228202342987, 0.178370714188, 2.15546941757, -0.0162180662155, 0.182766795158, 2.16332674026, -0.0123516321182, 0.180812448263, 2.16844534874, -0.0230865478516, 0.17700612545, 2.16080760956, -0.0263715982437, 0.183822721243, 2.17638278008, -0.0195074081421, 0.186217993498, 2.17158412933, -0.00833702087402, 0.187779068947, 2.18064141273, -0.00402665138245, 0.185241669416, 2.18494033813, -0.015340089798, 0.185865044594, 2.19377756119, -0.0108788013458, 0.188395112753, 2.19011878967, 0.000431656837463, 0.178776025772, 2.14609193802, 0.00238883495331, 0.184029191732, 2.1542494297, 0.00734448432922, 0.183814406395, 2.15858793259, -0.00220191478729, 0.178937196732, 2.15057063103, -0.00662684440613, 0.187630653381, 2.16710567474, 0.00222599506378, 0.188137054443, 2.16296696663, 0.0121619701385, 0.18995320797, 2.17284393311, 0.016703248024, 0.189325064421, 2.17660284042, 0.00666034221649, 0.189958453178, 2.18661975861, 0.01109790802, 0.190623641014, 2.18328046799, 0.0211067199707, 0.17655146122, 2.13833427429, 0.0186429023743, 0.18225762248, 2.146671772, 0.0245567560196, 0.183485597372, 2.15027046204, 0.0162699222565, 0.177957266569, 2.14201307297, 0.0108164548874, 0.187812715769, 2.15916776657, 0.0214501619339, 0.186733603477, 2.1556892395, 0.0300704240799, 0.188749581575, 2.16608595848, 0.034784078598, 0.189736843109, 2.16932487488, 0.0260838270187, 0.190459936857, 2.18012166023, 0.0304441452026, 0.189535617828, 2.17716264725, 0.0390976667404, 0.172258973122, 2.13211607933, 0.0324401855469, 0.178045034409, 2.14053344727, 0.0391430854797, 0.180419296026, 2.14341259003, 0.0321871042252, 0.17462849617, 2.13503503799, 0.0258550643921, 0.184976190329, 2.15252995491, 0.0380029678345, 0.182615876198, 2.14969086647, 0.0452270507812, 0.184756159782, 2.1603474617, 0.0500719547272, 0.187064886093, 2.16308689117, 0.0427860021591, 0.187919855118, 2.17436361313, 0.0470532178879, 0.185681343079, 2.1717441082, 0.0542979240417, 0.166460752487, 2.12735748291, 0.0436770915985, 0.171985268593, 2.13579511642, 0.0509618520737, 0.175208836794, 2.13799405098, 0.0454075336456, 0.169512987137, 2.1295568943, 0.0383849143982, 0.179728895426, 2.14717149734, 0.0517226457596, 0.176391333342, 2.14497232437, 0.0574697256088, 0.178560853004, 2.15564894676, 0.0624234676361, 0.181897044182, 2.15786838531, 0.0566238164902, 0.182889193296, 2.16932487488, 0.0608180761337, 0.179612159729, 2.16708564758, 0.0666004419327, 0.159718602896, 2.12399840355, 0.0522496700287, 0.164671272039, 2.132376194, 0.0598703622818, 0.168447941542, 2.13391566277, 0.0557887554169, 0.163172483444, 2.12551784515, 0.0483027696609, 0.172678917646, 2.14305281639, 0.0624477863312, 0.168667644262, 2.1414732933, 0.0666369199753, 0.170751214027, 2.15197038651, 0.0716949701309, 0.174821257591, 2.15366983414, 0.0674532651901, 0.175919055939, 2.1650261879, 0.0716317892075, 0.17187872529, 2.16316699982, 0.0758987665176, 0.152594476938, 2.12195920944, 0.0580543279648, 0.156696677208, 2.13025665283, 0.0657266378403, 0.160729438066, 2.13115644455, 0.0631890296936, 0.156169265509, 2.12281894684, 0.0555044412613, 0.1644333601, 2.14017391205, 0.070016503334, 0.160052269697, 2.13917398453, 0.0725667476654, 0.161915153265, 2.14929080009, 0.0777423381805, 0.166424751282, 2.15051031113, 0.0751305818558, 0.167559862137, 2.16150712967, 0.0793877840042, 0.163031578064, 2.16002774239, 0.0820858478546, 0.145650833845, 2.12115955353, 0.0609877109528, 0.148654937744, 2.12937688828, 0.0683887004852, 0.15264710784, 2.12967681885, 0.0674660205841, 0.149064987898, 2.1213991642, 0.0598864555359, 0.155600398779, 2.138474226, 0.0742671489716, 0.151153355837, 2.13805437088, 0.0750976800919, 0.152640491724, 2.1476316452, 0.0804220438004, 0.157295942307, 2.14833116531, 0.0795121192932, 0.158362597227, 2.15874814987, 0.083979010582, 0.153621792793, 2.15768861771, 0.0850546360016, 0.139449119568, 2.12149906158, 0.0609458684921, 0.141139179468, 2.12965679169, 0.0677145719528, 0.1447943151, 2.12937688828, 0.0684773921967, 0.142422050238, 2.12117958069, 0.0613453388214, 0.146787285805, 2.13791441917, 0.0750379562378, 0.142578125, 2.13807415962, 0.0740678310394, 0.143514841795, 2.14697170258, 0.0795907974243, 0.148022323847, 2.14719152451, 0.0804544687271, 0.148878216743, 2.15680837631, 0.0852988958359, 0.14420029521, 2.15614914894, 0.084698677063, 0.134318232536, 2.12281894684, 0.0582231283188, 0.134528964758, 2.13093662262, 0.0640143156052, 0.137764185667, 2.13021659851, 0.0660818815231, 0.136802077293, 2.12207889557, 0.0597769021988, 0.138601899147, 2.13849401474, 0.0721672773361, 0.134742110968, 2.13905382156, 0.0698012113571, 0.134960651398, 2.14719152451, 0.0755792856216, 0.139191508293, 2.14703154564, 0.0778133869171, 0.139657258987, 2.1556892395, 0.0832403898239, 0.135181635618, 2.15532898903, 0.081353187561, 0.165357679129, 2.16460633278, -0.0728552341461, 0.169939666986, 2.17044448853, -0.0711880922318, 0.165665388107, 2.17832231522, -0.0807647705078, 0.161573171616, 2.17300367355, -0.0821717977524, 0.15748167038, 2.181661129, -0.0915343761444, 0.161070108414, 2.18639969826, -0.0903713703156, 0.163537472486, 2.19135832787, -0.0889685153961, 0.168502926826, 2.18388032913, -0.0791019201279, 0.173106878996, 2.17658257484, -0.0692565441132, 0.1735239923, 2.18334054947, -0.066806435585, 0.168831080198, 2.18997859955, -0.0769265890121, 0.163761734962, 2.19675683975, -0.0870853662491, 0.162864804268, 2.20237493515, -0.0849620103836, 0.167904287577, 2.19633674622, -0.0744949579239, 0.17256629467, 2.19039869308, -0.0640970468521, 0.16922211647, 2.14931106567, -0.0544747114182, 0.175281852484, 2.15598869324, -0.0523375272751, 0.173290461302, 2.16300678253, -0.061674118042, 0.167587161064, 2.15670895576, -0.0635681152344, 0.176987528801, 2.16964483261, -0.0594534873962, 0.179632157087, 2.16306686401, -0.0498156547546, 0.18058809638, 2.17092442513, -0.0468561649323, 0.177465200424, 2.1769824028, -0.0567637681961, 0.176473498344, 2.18466043472, -0.0538371801376, 0.179651975632, 2.17916202545, -0.0437549352646, 0.172762662172, 2.1365146637, -0.0370624065399, 0.179283648729, 2.143232584, -0.0342578887939, 0.177017331123, 2.14941096306, -0.0432300567627, 0.171318680048, 2.14239311218, -0.0456645488739, 0.181378006935, 2.15684843063, -0.0404683351517, 0.1835899055, 2.15099024773, -0.0311348438263, 0.184601277113, 2.15966796875, -0.0277407169342, 0.182530850172, 2.16514611244, -0.0372710227966, 0.18195065856, 2.17386341095, -0.0339342355728, 0.183841466904, 2.16878509521, -0.0243116617203, 0.170901566744, 2.12917709351, -0.0204863548279, 0.178976982832, 2.13457536697, -0.0166424512863, 0.180345535278, 2.13799405098, -0.0253241062164, 0.172060847282, 2.13259601593, -0.0286141633987, 0.185529559851, 2.14549207687, -0.021769285202, 0.184993118048, 2.14089345932, -0.0128265619278, 0.186683028936, 2.14959096909, -0.00933873653412, 0.186209201813, 2.15446949005, -0.0182999372482, 0.185076862574, 2.16394662857, -0.014969587326, 0.18560218811, 2.15934801102, -0.00599348545074, 0.169688791037, 2.12099933624, -0.00557231903076, 0.176533907652, 2.12711763382, -0.000611782073975, 0.176776647568, 2.13179636002, -0.00841319561005, 0.170470714569, 2.12497806549, -0.0127362012863, 0.182564735413, 2.13803434372, -0.00432884693146, 0.182235360146, 2.13343572617, 0.00377607345581, 0.184749811888, 2.14135336876, 0.00746035575867, 0.185162901878, 2.14577198029, -0.00073766708374, 0.185389995575, 2.15496945381, 0.00260710716248, 0.184807419777, 2.15085029602, 0.0107929706573, 0.166158229113, 2.11396169662, 0.00605893135071, 0.176518082619, 2.11694073677, 0.0126047134399, 0.17746758461, 2.12129926682, 0.00651180744171, 0.167764306068, 2.11752033234, 0.00053334236145, 0.183593511581, 2.12759757042, 0.0114386081696, 0.182954341173, 2.12327861786, 0.0184148550034, 0.183356285095, 2.13301587105, 0.0224609375, 0.184979081154, 2.1367149353, 0.0152088403702, 0.183693885803, 2.14697170258, 0.0185241699219, 0.181983828545, 2.1433327198, 0.0257611274719, 0.162536501884, 2.10704374313, 0.0159028768539, 0.169979453087, 2.11216211319, 0.0231804847717, 0.173880070448, 2.11400151253, 0.0180940628052, 0.164593458176, 2.1104426384, 0.0112278461456, 0.179446578026, 2.1203994751, 0.0242990255356, 0.17495855689, 2.11858034134, 0.0295182466507, 0.17719244957, 2.12681770325, 0.0345360040665, 0.181018471718, 2.12963676453, 0.0290611982346, 0.179780095816, 2.13995361328, 0.0324648618698, 0.177072525024, 2.13685464859, 0.0385727882385, 0.155959099531, 2.1018652916, 0.0237911939621, 0.164498776197, 2.10648393631, 0.0327221155167, 0.166865795851, 2.10966300964, 0.0281083583832, 0.159586429596, 2.10412454605, 0.0200566053391, 0.172049045563, 2.11586117744, 0.0349264144897, 0.170459121466, 2.11236214638, 0.0403277873993, 0.171773701906, 2.12133955956, 0.0454263687134, 0.174152612686, 2.12405848503, 0.0400364398956, 0.173964709044, 2.13401532173, 0.044093132019, 0.170469522476, 2.13143634796, 0.048977971077, 0.150213032961, 2.09744691849, 0.0304945707321, 0.157659620047, 2.10202503204, 0.0395464897156, 0.161383867264, 2.10392475128, 0.0365414619446, 0.152884840965, 2.09964561462, 0.0273040533066, 0.167628973722, 2.10990285873, 0.04463326931, 0.163197726011, 2.108522892, 0.0476452112198, 0.163826346397, 2.11736059189, 0.0528606176376, 0.168142646551, 2.11918020248, 0.0496469736099, 0.166553258896, 2.12913703918, 0.0531513690948, 0.162274003029, 2.12711763382, 0.056593298912, 0.145069211721, 2.09368753433, 0.0353068113327, 0.149228900671, 2.09976577759, 0.0433242321014, 0.153343319893, 2.10082530975, 0.0417326688766, 0.14775159955, 2.09540724754, 0.0332474708557, 0.157410860062, 2.10774350166, 0.0493376255035, 0.15234375, 2.10686397552, 0.0506459474564, 0.15355682373, 2.11492109299, 0.0564762353897, 0.158632725477, 2.11604094505, 0.0549561977386, 0.157656997442, 2.12537813187, 0.0592633485794, 0.152721911669, 2.12393856049, 0.0611140727997, 0.138473540545, 2.09116864204, 0.0368175506592, 0.141466856003, 2.09792661667, 0.0443712472916, 0.145333260298, 2.09872627258, 0.0442245006561, 0.141968697309, 2.09230804443, 0.0365115404129, 0.14820638299, 2.10578393936, 0.0515632629395, 0.143888950348, 2.10502409935, 0.0515778064728, 0.143794536591, 2.11318182945, 0.057421207428, 0.148921459913, 2.11384153366, 0.0574650764465, 0.147520422935, 2.12279891968, 0.0621353387833, 0.142051100731, 2.12193965912, 0.0622559785843, 0.130982398987, 2.08998918533, 0.0355793237686, 0.133246541023, 2.09706687927, 0.0423866510391, 0.13753926754, 2.09736633301, 0.0436753034592, 0.134678721428, 2.09046888351, 0.0363270044327, 0.139139533043, 2.10470438004, 0.0504957437515, 0.133724659681, 2.1047244072, 0.0485845804214, 0.132345199585, 2.11286187172, 0.0543797016144, 0.138138532639, 2.11294198036, 0.0561635494232, 0.13634955883, 2.1213991642, 0.0614476203918, 0.130532026291, 2.12099933624, 0.0601745843887, 0.160945773125, 2.14073348045, -0.0714547634125, 0.163560181856, 2.14637184143, -0.0688092708588, 0.161325216293, 2.15298986435, -0.0748225450516, 0.159506797791, 2.14785146713, -0.0773787498474, 0.157839745283, 2.15514922142, -0.0832080841064, 0.158812850714, 2.15974760056, -0.0807231664658, 0.159377813339, 2.16464614868, -0.0784143209457, 0.162513494492, 2.15846824646, -0.0723613500595, 0.165336489677, 2.15236997604, -0.0661851167679, 0.165436476469, 2.15910768509, -0.0636035203934, 0.162441372871, 2.16458630562, -0.07008934021, 0.159125775099, 2.17010450363, -0.0764573812485, 0.158465594053, 2.17582273483, -0.0746762752533, 0.161738991737, 2.17102408409, -0.0679121017456, 0.164698243141, 2.16620588303, -0.061042547226, 0.162485957146, 2.12763738632, -0.0590893030167, 0.166399121284, 2.13395547867, -0.056160569191, 0.165239930153, 2.14003372192, -0.0625710487366, 0.161928385496, 2.13399553299, -0.0653429031372, 0.167533397675, 2.14647197723, -0.0597627162933, 0.16914114356, 2.14073324203, -0.0531512498856, 0.16954061389, 2.1483912468, -0.0499814748764, 0.167790770531, 2.15370988846, -0.056881070137, 0.167029708624, 2.16136741638, -0.0539622306824, 0.168768614531, 2.15650868416, -0.0467312335968, 0.162454098463, 2.11602115631, -0.0463453531265, 0.167294472456, 2.12265896797, -0.0430333614349, 0.167072534561, 2.1281774044, -0.0496304035187, 0.162650674582, 2.12163925171, -0.0527410507202, 0.170195966959, 2.13519525528, -0.0464086532593, 0.17073443532, 2.12985682487, -0.0395913124084, 0.171373486519, 2.13809418678, -0.035888671875, 0.1707226336, 2.1431927681, -0.0429644584656, 0.16995087266, 2.15169048309, -0.0394092798233, 0.17061188817, 2.14689159393, -0.0320560932159, 0.161104768515, 2.10582399368, -0.033597946167, 0.166522502899, 2.11252212524, -0.0298501253128, 0.167099714279, 2.11744070053, -0.0364223718643, 0.161928087473, 2.11074256897, -0.0399484634399, 0.170792847872, 2.12471866608, -0.0327574014664, 0.170407533646, 2.11981964111, -0.0259636640549, 0.171226501465, 2.12835741043, -0.0217989683151, 0.171529203653, 2.13315582275, -0.028813958168, 0.170787215233, 2.14215302467, -0.0247316360474, 0.170512288809, 2.13749432564, -0.0174956321716, 0.158691883087, 2.09698677063, -0.021222114563, 0.164359927177, 2.10352468491, -0.0170332193375, 0.16559779644, 2.10786342621, -0.0233696699142, 0.16001522541, 2.10122537613, -0.027340054512, 0.169614911079, 2.11516141891, -0.0192676782608, 0.168451666832, 2.11072301865, -0.0127269029617, 0.169391274452, 2.11925983429, -0.00818634033203, 0.170501470566, 2.12371873856, -0.0149034261703, 0.16982293129, 2.13291597366, -0.0104080438614, 0.168754458427, 2.1284570694, -0.00352871417999, 0.155470103025, 2.08948922157, -0.00959300994873, 0.161083191633, 2.09570717812, -0.00500416755676, 0.162843376398, 2.09946608543, -0.0108938217163, 0.15716612339, 2.09306764603, -0.0152907371521, 0.166954189539, 2.10654401779, -0.00639855861664, 0.165158748627, 2.10264492035, -0.000340104103088, 0.166159391403, 2.1109623909, 0.00447523593903, 0.167931675911, 2.11500120163, -0.00170695781708, 0.167342662811, 2.12415838242, 0.00308263301849, 0.165622830391, 2.1199798584, 0.00936615467072, 0.151693344116, 2.08327054977, 0.000914454460144, 0.156968593597, 2.08910894394, 0.00581383705139, 0.159113377333, 2.09226799011, 0.000582575798035, 0.153635174036, 2.0862300396, -0.00417566299438, 0.163101702929, 2.09900593758, 0.00539112091064, 0.160819798708, 2.09564733505, 0.0107380151749, 0.161822915077, 2.10358476639, 0.0157116651535, 0.164111047983, 2.10714387894, 0.010301232338, 0.163630843163, 2.11600112915, 0.0152617692947, 0.161402106285, 2.11222219467, 0.0207099914551, 0.147616416216, 2.07829236984, 0.009925365448, 0.152292996645, 2.08373069763, 0.0149995088577, 0.154683679342, 2.0862698555, 0.0106370449066, 0.149676591158, 2.08063173294, 0.00563049316406, 0.158349186182, 2.09256792068, 0.0156430006027, 0.155726402998, 2.08980894089, 0.0200487375259, 0.156673073769, 2.09722661972, 0.0250486135483, 0.159331321716, 2.10026550293, 0.0206471681595, 0.158971935511, 2.10864329338, 0.0256505012512, 0.156376451254, 2.10530424118, 0.0300238132477, 0.143493056297, 2.07451343536, 0.0170646905899, 0.147332906723, 2.07957172394, 0.0221301317215, 0.149831175804, 2.08149147034, 0.0188479423523, 0.14554464817, 2.07627272606, 0.0137524604797, 0.152987837791, 2.08734941483, 0.0238980054855, 0.150169819593, 2.08521032333, 0.0271333456039, 0.151001572609, 2.09202814102, 0.0320127010345, 0.15388417244, 2.09446763992, 0.0288569927216, 0.153650611639, 2.10222530365, 0.0337702035904, 0.150830507278, 2.09942626953, 0.0368293523788, 0.139577865601, 2.07187414169, 0.0219573974609, 0.142364531755, 2.0766928196, 0.0267834663391, 0.144832462072, 2.07797265053, 0.0247929096222, 0.141493678093, 2.07305383682, 0.019815325737, 0.147309154272, 2.08341097832, 0.0296974182129, 0.144441723824, 2.08195137978, 0.0315330028534, 0.14510011673, 2.08810949326, 0.0361288785934, 0.148061275482, 2.08990907669, 0.0344562530518, 0.147951364517, 2.09690666199, 0.0391420125961, 0.145048826933, 2.09470748901, 0.0406476259232, 0.136125057936, 2.07035493851, 0.0242282152176, 0.137664884329, 2.07509326935, 0.0285376310349, 0.13996386528, 2.07573318481, 0.0280495882034, 0.137777805328, 2.07097482681, 0.0234439373016, 0.141604661942, 2.08085155487, 0.0325825214386, 0.138833671808, 2.08009195328, 0.0327892303467, 0.139260292053, 2.08559012413, 0.0369236469269, 0.142154246569, 2.08666968346, 0.0369710922241, 0.142158478498, 2.0928478241, 0.0412870645523, 0.139315932989, 2.09134817123, 0.0410000085831, 0.133267372847, 2.0697350502, 0.0239239931107, 0.133407473564, 2.07463359833, 0.0274385213852, 0.135502070189, 2.07477331161, 0.0281957387924, 0.134651511908, 2.06997489929, 0.0242635011673, 0.136165499687, 2.07971191406, 0.032094836235, 0.133548855782, 2.07951164246, 0.0309503078461, 0.133693218231, 2.084410429, 0.0344567298889, 0.136454790831, 2.08491039276, 0.0359276533127, 0.136556595564, 2.09022879601, 0.03972697258, 0.133839011192, 2.08928918839, 0.0379606485367, 0.0715833902359, 2.34335255623, 0.0292837619781, 0.0664115846157, 2.33985352516, 0.0217888355255, 0.0711048841476, 2.3404135704, 0.0142642259598, 0.0775391757488, 2.34383225441, 0.0209858417511, 0.0611863136292, 2.33569455147, 0.0141980648041, 0.0645694732666, 2.33639454842, 0.00745844841003, 0.0677709281445, 2.33517456055, 0.00168597698212, 0.0754068791866, 2.33863401413, 0.00785052776337, 0.0828980207443, 2.34155273438, 0.0139700174332, 0.0789256095886, 2.33303546906, 0.00278604030609, 0.0870627164841, 2.33497476578, 0.00831389427185, 0.0706089437008, 2.33069610596, -0.0027562379837, 0.0732652842999, 2.32461810112, -0.00659966468811, 0.0820528268814, 2.32565784454, -0.00172686576843, 0.0906304121017, 2.3264374733, 0.00316071510315, 0.0815777480602, 2.3450717926, 0.0450034141541, 0.0766486823559, 2.34515190125, 0.0369390249252, 0.0837707519531, 2.34563183784, 0.0278789997101, 0.0897680521011, 2.34539175034, 0.0353925228119, 0.0900994241238, 2.34301233292, 0.020216345787, 0.0969787538052, 2.34245228767, 0.0271420478821, 0.0948407649994, 2.33569455147, 0.013872385025, 0.102229714394, 2.33465528488, 0.0200330018997, 0.0987887382507, 2.32613754272, 0.00810289382935, 0.106501072645, 2.324477911, 0.0134348869324, 0.0909090042114, 2.34049320221, 0.0613406896591, 0.0863411426544, 2.34341239929, 0.0532237291336, 0.0954995155334, 2.34343218803, 0.0432636737823, 0.100933551788, 2.34013319016, 0.0511972904205, 0.103503793478, 2.3402132988, 0.034502863884, 0.109642148018, 2.33663439751, 0.0420069694519, 0.109199255705, 2.33209562302, 0.0265914201736, 0.115719050169, 2.3283367157, 0.0332987308502, 0.113740444183, 2.32155895233, 0.0190696716309, 0.120480269194, 2.31767988205, 0.0248047113419, 0.099340647459, 2.33195567131, 0.0764117240906, 0.095252007246, 2.33659434319, 0.0691304206848, 0.106038331985, 2.33577466011, 0.0589323043823, 0.110782384872, 2.33065629005, 0.0662505626678, 0.115361779928, 2.33201551437, 0.0493842363358, 0.120630025864, 2.32667732239, 0.0564054250717, 0.121759176254, 2.32365846634, 0.0399161577225, 0.127289146185, 2.31835985184, 0.0462367534637, 0.126693487167, 2.31306123734, 0.0304466485977, 0.13235399127, 2.30794286728, 0.0358273983002, 0.106636017561, 2.32125902176, 0.0889033079147, 0.103145092726, 2.32679748535, 0.0830396413803, 0.115134030581, 2.32501792908, 0.0729764699936, 0.119061589241, 2.31903958321, 0.0789728164673, 0.125414729118, 2.32087898254, 0.0628844499588, 0.129683613777, 2.31476068497, 0.0686758756638, 0.132278800011, 2.31264162064, 0.052090883255, 0.136698096991, 2.30668306351, 0.0573501586914, 0.137434840202, 2.30250453949, 0.0408120155334, 0.141909211874, 2.29670619965, 0.045498251915, 0.112558245659, 2.30910253525, 0.0985215902328, 0.109783440828, 2.31546068192, 0.0939491987228, 0.122533410788, 2.31286168098, 0.0841646194458, 0.125518113375, 2.30614352226, 0.0889201164246, 0.133404284716, 2.3084230423, 0.0737966299057, 0.136544555426, 2.30144500732, 0.0786466598511, 0.140516757965, 2.30028533936, 0.0622614622116, 0.143704622984, 2.29328727722, 0.0670288801193, 0.145750164986, 2.29030847549, 0.0501426458359, 0.148931384087, 2.283390522, 0.0547386407852, 0.116870880127, 2.29452705383, 0.106572628021, 0.114930659533, 2.30210494995, 0.102731823921, 0.127983540297, 2.29878568649, 0.0933653116226, 0.129898548126, 2.29088830948, 0.0974869728088, 0.139072030783, 2.29386758804, 0.0832501649857, 0.140954464674, 2.285769701, 0.0875914096832, 0.146231293678, 2.28572964668, 0.0716383457184, 0.1480666399, 2.27771186829, 0.0760760307312, 0.151426076889, 2.27599239349, 0.0592776536942, 0.153207302094, 2.26817512512, 0.0637509822845, 0.119337409735, 2.27789211273, 0.113118648529, 0.11834987998, 2.28642988205, 0.110037207603, 0.13123139739, 2.28247070312, 0.101271986961, 0.131950139999, 2.27363348007, 0.104707837105, 0.142159432173, 2.27719211578, 0.091653585434, 0.142654746771, 2.26821470261, 0.0954204797745, 0.14918076992, 2.26925468445, 0.0803282260895, 0.149543017149, 2.26045751572, 0.0843807458878, 0.154248595238, 2.25999736786, 0.0681495666504, 0.154522895813, 2.25152015686, 0.072464466095, 0.119720846415, 2.25963783264, 0.118105053902, 0.119804233313, 2.26893472672, 0.115810275078, 0.132023543119, 2.26443624496, 0.107781052589, 0.131419509649, 2.25491905212, 0.110478997231, 0.142408013344, 2.25891780853, 0.09887611866, 0.14138686657, 2.24934053421, 0.102004051208, 0.14912340045, 2.25136017799, 0.0882196426392, 0.147891521454, 2.24204301834, 0.0918308496475, 0.154004096985, 2.24280261993, 0.0766872167587, 0.152664870024, 2.23390555382, 0.0808086395264, 0.11778485775, 2.24026346207, 0.121476769447, 0.119057655334, 2.25006055832, 0.11999630928, 0.130106896162, 2.24516201019, 0.112788677216, 0.128053754568, 2.23520469666, 0.114697098732, 0.139559268951, 2.23954343796, 0.104787945747, 0.136892676353, 2.22962665558, 0.107211709023, 0.145817518234, 2.23256587982, 0.0952005386353, 0.142870813608, 2.22296857834, 0.0983150005341, 0.150478810072, 2.22488808632, 0.0848200321198, 0.147419065237, 2.2157907486, 0.0887125730515, 0.113292574883, 2.22018957138, 0.123178958893, 0.115873008966, 2.23028659821, 0.12254011631, 0.125228524208, 2.22514796257, 0.116191148758, 0.121599674225, 2.215031147, 0.117257833481, 0.133354753256, 2.21962976456, 0.109258770943, 0.128913283348, 2.20963287354, 0.110913276672, 0.139021635056, 2.21335124969, 0.101159930229, 0.134239286184, 2.20375442505, 0.103721499443, 0.143458843231, 2.20667362213, 0.0924773216248, 0.138571739197, 2.19761633873, 0.0961055755615, 0.106386065483, 2.19987559319, 0.123378992081, 0.11001381278, 2.21005249023, 0.123387098312, 0.117135375738, 2.20493412018, 0.117884755135, 0.112253516912, 2.19481706619, 0.118291258812, 0.123535841703, 2.199696064, 0.112158894539, 0.117690443993, 2.18977856636, 0.113199949265, 0.128494024277, 2.19423723221, 0.10598552227, 0.122266888618, 2.18476009369, 0.108101129532, 0.132730722427, 2.18865919113, 0.0995887517929, 0.126413017511, 2.1797413826, 0.10299885273, -0.0418154001236, 2.32743692398, -0.0656636953354, -0.0248129069805, 2.3321158886, -0.075710773468, -0.0252475440502, 2.33775377274, -0.07406270504, -0.0416126251221, 2.33381509781, -0.0634220838547, -0.00711524486542, 2.33545446396, -0.0856494903564, -0.00824975967407, 2.34071302414, -0.0848649740219, -0.00847899913788, 2.3455915451, -0.0834277868271, -0.0247101783752, 2.34305238724, -0.0720125436783, -0.040366768837, 2.33979344368, -0.0609269142151, -0.0222290754318, 2.34771108627, -0.069186091423, -0.0370346009731, 2.34491181374, -0.0578706264496, -0.00689765810966, 2.34983062744, -0.0807744264603, -0.00441095232964, 2.35372900963, -0.077579498291, -0.0187760293484, 2.35208964348, -0.0660440921783, -0.0326591432095, 2.34959030151, -0.0545743703842, -0.0716823339462, 2.32015943527, -0.0480850934982, -0.0574268400669, 2.32367801666, -0.0567756891251, -0.0567125082016, 2.33101606369, -0.0541541576385, -0.0705697238445, 2.32815718651, -0.0448696613312, -0.0548739731312, 2.3377737999, -0.0513204336166, -0.0682460069656, 2.33555459976, -0.041600227356, -0.0507881939411, 2.34325218201, -0.0479184389114, -0.0635006427765, 2.34161281586, -0.0380729436874, -0.0455784797668, 2.34791111946, -0.0441274642944, -0.0575442016125, 2.34681129456, -0.0342710018158, -0.0962617397308, 2.31058239937, -0.0276579856873, -0.0846156775951, 2.3156208992, -0.0382945537567, -0.0832068920135, 2.32393813133, -0.0342457294464, -0.0946471691132, 2.31909966469, -0.0226666927338, -0.080496519804, 2.33165597916, -0.0302902460098, -0.0916391313076, 2.32699728012, -0.0179071426392, -0.0751825273037, 2.33801388741, -0.0264055728912, -0.0858442783356, 2.33341550827, -0.0134524106979, -0.0685664415359, 2.34353232384, -0.0224087238312, -0.0786558687687, 2.33893346786, -0.00897896289825, -0.115828871727, 2.29894542694, -0.00570905208588, -0.10665461421, 2.30514383316, -0.0166856050491, -0.10491296649, 2.31340169907, -0.0104809999466, -0.114027172327, 2.30676341057, 0.00179409980774, -0.101688116789, 2.32101917267, -0.00458467006683, -0.110656946898, 2.31418085098, 0.0087012052536, -0.0954967439175, 2.32721710205, 0.000780582427979, -0.104150742292, 2.32043933868, 0.0147429704666, -0.0878222882748, 2.33307552338, 0.00555050373077, -0.0960760116577, 2.32639765739, 0.0200550556183, -0.130659341812, 2.28554964066, 0.0149940252304, -0.123818993568, 2.29252767563, 0.00475454330444, -0.122012138367, 2.30004549026, 0.0133451223373, -0.128891319036, 2.29302740097, 0.0243248939514, -0.118559956551, 2.30706310272, 0.0213980674744, -0.125410526991, 2.29978561401, 0.033304810524, -0.11181640625, 2.31314134598, 0.0282801389694, -0.11850476265, 2.30540370941, 0.0413208007812, -0.103427320719, 2.31897974014, 0.0343967676163, -0.109886646271, 2.31078195572, 0.0485173463821, -0.141028165817, 2.27005434036, 0.0346541404724, -0.136384218931, 2.27803206444, 0.0249960422516, -0.134686559439, 2.28544950485, 0.0349889993668, -0.139421314001, 2.27737236023, 0.0452326536179, -0.131222754717, 2.29222774506, 0.0445517301559, -0.136010527611, 2.28417015076, 0.0553106069565, -0.12422645092, 2.29778599739, 0.0532534122467, -0.12899184227, 2.28992843628, 0.0643876791, -0.115463942289, 2.30276465416, 0.0614790916443, -0.120169490576, 2.2951669693, 0.0729641914368, -0.14721095562, 2.25309944153, 0.0525147914886, -0.144625753164, 2.26171684265, 0.0438624620438, -0.143118023872, 2.26889467239, 0.0549396276474, -0.145799160004, 2.26013755798, 0.0639947652817, -0.139787554741, 2.2756729126, 0.065457701683, -0.142567753792, 2.26687574387, 0.0748697519302, -0.132811903954, 2.28163099289, 0.0748575925827, -0.135697007179, 2.27299332619, 0.0845355987549, -0.124013692141, 2.28716921806, 0.0836985111237, -0.127006620169, 2.27883172035, 0.0935966968536, -0.149483084679, 2.23544502258, 0.0677270889282, -0.148818612099, 2.2443022728, 0.0605049133301, -0.147487848997, 2.25118017197, 0.0722821950912, -0.148206681013, 2.24210309982, 0.0796865224838, -0.144365042448, 2.25783824921, 0.0834237337112, -0.145193189383, 2.24868106842, 0.0909954309464, -0.137657761574, 2.26409626007, 0.0932935476303, -0.138705044985, 2.25503897667, 0.101003885269, -0.129158586264, 2.27017450333, 0.102528333664, -0.13047978282, 2.26131725311, 0.110361933708, -0.148119539022, 2.2178504467, 0.0794415473938, -0.149238497019, 2.22658753395, 0.0740745067596, -0.147978305817, 2.233045578, 0.0860922336578, -0.146825432777, 2.22406816483, 0.0913835763931, -0.145066022873, 2.23948359489, 0.0974624156952, -0.143997520208, 2.23034644127, 0.102700948715, -0.138849258423, 2.24590158463, 0.107538342476, -0.138101309538, 2.236764431, 0.112769126892, -0.130980610847, 2.25229978561, 0.116967082024, -0.130671143532, 2.24322247505, 0.122212648392, -0.143396139145, 2.20103502274, 0.0868097543716, -0.146160632372, 2.20929265022, 0.083722114563, -0.144771099091, 2.21527075768, 0.0954451560974, -0.141837567091, 2.20677375793, 0.0981613397598, -0.142001271248, 2.22136926651, 0.106587409973, -0.139091581106, 2.212651968, 0.108998537064, -0.136471629143, 2.2277071476, 0.116568088531, -0.133970737457, 2.21882987022, 0.118807315826, -0.129561513662, 2.23414540291, 0.125967979431, -0.127662271261, 2.22514796257, 0.128101825714, -0.135587692261, 2.18579983711, 0.0889825820923, -0.139860391617, 2.19317770004, 0.0885987281799, -0.138047933578, 2.19863605499, 0.0994163751602, -0.133424729109, 2.19099807739, 0.0990948677063, -0.135282158852, 2.20425438881, 0.109810829163, -0.130586504936, 2.19633674622, 0.108901381493, -0.13060939312, 2.2102124691, 0.119358778, -0.126398444176, 2.20193529129, 0.118095159531, -0.124983280897, 2.2163105011, 0.128483772278, -0.12153506279, 2.20767331123, 0.126982927322, -0.125286787748, 2.17248392105, 0.085972070694, -0.130612939596, 2.17900180817, 0.0878549814224, -0.127990603447, 2.18392038345, 0.0970813035965, -0.122151106596, 2.17714262009, 0.094221830368, -0.125018835068, 2.18893909454, 0.106146097183, -0.119015097618, 2.18180084229, 0.102468132973, -0.121348142624, 2.19409751892, 0.114887833595, -0.115878224373, 2.18647956848, 0.110708594322, -0.117327809334, 2.1993355751, 0.123467922211, -0.112740963697, 2.19115829468, 0.118946075439, 0.0753284692764, 2.33759403229, -0.0118829011917, 0.0658753812313, 2.33373498917, -0.0218104124069, 0.0699090957642, 2.33005619049, -0.0270870923996, 0.0799094736576, 2.33293533325, -0.0172559022903, 0.0562509596348, 2.32919645309, -0.0313820838928, 0.0597041547298, 2.3265171051, -0.0365544557571, 0.0625147521496, 2.3228187561, -0.0413144826889, 0.0731054544449, 2.32535767555, -0.0319464206696, 0.0834667980671, 2.32729721069, -0.0222460031509, 0.0746272802353, 2.31873989105, -0.0359781980515, 0.0849772691727, 2.31981945038, -0.0264900922775, 0.0640394687653, 2.31714010239, -0.0452045202255, 0.0649213790894, 2.31060242653, -0.0487992763519, 0.075311422348, 2.3112616539, -0.0397049188614, 0.0854645967484, 2.31152200699, -0.0304671525955, 0.0931578576565, 2.3427324295, 0.00713133811951, 0.0844393670559, 2.34069299698, -0.0022052526474, 0.0895003080368, 2.33505487442, -0.00757217407227, 0.0986354351044, 2.33629441261, 0.00175738334656, 0.0933690071106, 2.32855677605, -0.0126757621765, 0.102768778801, 2.32897663116, -0.00333845615387, 0.0948527753353, 2.3202393055, -0.0171415805817, 0.104213476181, 2.31997919083, -0.00797617435455, 0.0951438844204, 2.31114244461, -0.0213929414749, 0.104313850403, 2.31026220322, -0.0125153064728, 0.109220027924, 2.34059333801, 0.0268148183823, 0.101434588432, 2.34283256531, 0.016654253006, 0.10726800561, 2.33581471443, 0.0111656188965, 0.115351319313, 2.33323526382, 0.0210636854172, 0.111622720957, 2.3279569149, 0.00589609146118, 0.119887590408, 2.32509803772, 0.0154534578323, 0.113020271063, 2.31847977638, 0.000982046127319, 0.121233612299, 2.31548070908, 0.0100654363632, 0.112939268351, 2.30832266808, -0.00385212898254, 0.120984226465, 2.30514407158, 0.00473570823669, 0.123117059469, 2.33141589165, 0.0471558570862, 0.116464018822, 2.33659434319, 0.0371506214142, 0.122839093208, 2.32905673981, 0.0310634374619, 0.129684656858, 2.32379817963, 0.0407091379166, 0.127520471811, 2.32081890106, 0.0250164270401, 0.134477615356, 2.3156208992, 0.0341880321503, 0.128813862801, 2.31120181084, 0.0190765857697, 0.135721594095, 2.30610370636, 0.0276900529861, 0.128413438797, 2.30092525482, 0.0131659507751, 0.135191172361, 2.29596662521, 0.021191239357, 0.134451597929, 2.31953954697, 0.0645879507065, 0.12912940979, 2.32559776306, 0.0564061403275, 0.135840982199, 2.31799983978, 0.0495938062668, 0.141261905432, 2.31198167801, 0.0574576854706, 0.140715926886, 2.3099424839, 0.0425968170166, 0.146192073822, 2.30378437042, 0.0503247976303, 0.141917347908, 2.30052518845, 0.0356575250626, 0.14736148715, 2.29422688484, 0.0432415008545, 0.141282111406, 2.29032850266, 0.0288330316544, 0.146650910378, 2.28401041031, 0.0361834764481, 0.142825931311, 2.30624341965, 0.0784415006638, 0.139033585787, 2.31324148178, 0.0717526674271, 0.145900726318, 2.30536365509, 0.0647481679916, 0.149710536003, 2.29804611206, 0.0716155767441, 0.150862693787, 2.29688644409, 0.0576804876328, 0.154684662819, 2.28936862946, 0.0646413564682, 0.152014732361, 2.28726911545, 0.0504857301712, 0.155837386847, 2.27975130081, 0.0573700666428, 0.151261776686, 2.27707242966, 0.0432275533676, 0.155079364777, 2.26963472366, 0.0499502420425, 0.147842139006, 2.2904086113, 0.0904062986374, 0.145778626204, 2.29860591888, 0.0846652984619, 0.1526453197, 2.29014825821, 0.0780383348465, 0.154657959938, 2.28177070618, 0.0839941501617, 0.157614797354, 2.28133106232, 0.071183681488, 0.159609347582, 2.27285385132, 0.0772843360901, 0.158790081739, 2.27173376083, 0.0638743638992, 0.160833030939, 2.26335668564, 0.0699782371521, 0.158068031073, 2.26177692413, 0.0563373565674, 0.160192400217, 2.25359964371, 0.0623737573624, 0.149102807045, 2.27273368835, 0.100370049477, 0.148966789246, 2.28175091743, 0.0956470966339, 0.155701756477, 2.27299356461, 0.0894623994827, 0.155730605125, 2.26391649246, 0.0944209098816, 0.160625457764, 2.26403617859, 0.0829198360443, 0.160619735718, 2.25499916077, 0.0880669355392, 0.161926954985, 2.25469875336, 0.0756614208221, 0.16203224659, 2.24586176872, 0.0809037685394, 0.161417007446, 2.24518203735, 0.0680449008942, 0.161706209183, 2.23660445213, 0.0733358860016, 0.146210312843, 2.2539794445, 0.108193159103, 0.148200660944, 2.26343679428, 0.104557991028, 0.154697299004, 2.25463891029, 0.0988481044769, 0.152555704117, 2.24528169632, 0.102722764015, 0.159548848867, 2.2458217144, 0.092702627182, 0.15736925602, 2.23660469055, 0.0968030691147, 0.16110932827, 2.23692464828, 0.085685133934, 0.159118920565, 2.22800731659, 0.0899852514267, 0.161024600267, 2.22800731659, 0.0782316923141, 0.159336686134, 2.21942996979, 0.0827182531357, 0.138766914606, 2.23490524292, 0.113735079765, 0.143082380295, 2.24444246292, 0.111257910728, 0.149259179831, 2.2359046936, 0.106022715569, 0.144760936499, 2.22662782669, 0.108727097511, 0.154038071632, 2.22744750977, 0.100345492363, 0.149511814117, 2.21847009659, 0.103306412697, 0.156021237373, 2.21917009354, 0.0937842130661, 0.151777148247, 2.21055221558, 0.0970611572266, 0.156606912613, 2.21097183228, 0.0867801904678, 0.152799606323, 2.20275449753, 0.0904031991959, 0.126374840736, 2.21625065804, 0.116855859756, 0.133214145899, 2.22546768188, 0.11560690403, 0.139014214277, 2.21755027771, 0.110813498497, 0.131972670555, 2.20875287056, 0.112260818481, 0.143747448921, 2.20975255966, 0.105662584305, 0.136701107025, 2.20139551163, 0.107390284538, 0.14634680748, 2.20223474503, 0.099796295166, 0.139690846205, 2.19431734085, 0.101969122887, 0.147879570723, 2.19485712051, 0.0935722589493, 0.141811132431, 2.18735933304, 0.0962728261948, 0.109354376793, 2.19855594635, 0.117753386497, 0.118198633194, 2.20733356476, 0.117464661598, 0.123589724302, 2.20035552979, 0.113047480583, 0.114535808563, 2.19215798378, 0.113503694534, 0.128330081701, 2.19349765778, 0.108466982841, 0.119296580553, 2.18583989143, 0.109217882156, 0.131769865751, 2.18687963486, 0.103559851646, 0.12321600318, 2.17968177795, 0.104859471321, 0.134558916092, 2.18036150932, 0.0984899997711, 0.126714736223, 2.17362356186, 0.100465297699, 0.0263677835464, 2.33019638062, -0.0491865873337, 0.0063519179821, 2.32733726501, -0.0551307201385, 0.0109767615795, 2.32553768158, -0.061271905899, 0.0313443243504, 2.32663726807, -0.0550531148911, -0.0143953561783, 2.32087922096, -0.060051202774, -0.0101631879807, 2.32029914856, -0.0661257505417, -0.00680685043335, 2.31853961945, -0.0718659162521, 0.0145746469498, 2.32257843018, -0.0671166181564, 0.0351476371288, 2.3221783638, -0.0607560873032, 0.0161184966564, 2.31744003296, -0.0722054243088, 0.0366048812866, 2.31602048874, -0.0659656524658, -0.00520250201225, 2.31430101395, -0.0767344236374, -0.00447395443916, 2.30846261978, -0.0809674263, 0.0166352987289, 2.31108212471, -0.0769190788269, 0.0368892848492, 2.30906248093, -0.0710400342941, 0.0620232820511, 2.32755708694, -0.034210562706, 0.0449213981628, 2.32873678207, -0.0412404537201, 0.0501668155193, 2.32413816452, -0.0472905635834, 0.0674624443054, 2.3222784996, -0.0406001806259, 0.0541034936905, 2.31901955605, -0.0534391403198, 0.0714679956436, 2.31644034386, -0.0470139980316, 0.055422514677, 2.31236171722, -0.0591069459915, 0.0726060569286, 2.30914282799, -0.0529577732086, 0.0554324388504, 2.30484390259, -0.0645270347595, 0.0723103582859, 2.30098509789, -0.0585899353027, 0.0919147729874, 2.32119894028, -0.017273068428, 0.0776841342449, 2.32451796532, -0.0258896350861, 0.0832487046719, 2.31901955605, -0.0329110622406, 0.0975434780121, 2.31558084488, -0.0249103307724, 0.0872664451599, 2.31316137314, -0.0400737524033, 0.101524710655, 2.30976247787, -0.0328571796417, 0.0881907641888, 2.30570363998, -0.0466269254684, 0.102211594582, 2.30194473267, -0.0398108959198, 0.0875681638718, 2.29714632034, -0.052604675293, 0.101250857115, 2.29298734665, -0.0461084842682, 0.116128891706, 2.31336140633, 0.000327110290527, 0.104726195335, 2.31775999069, -0.00851547718048, 0.11036452651, 2.31212186813, -0.0167906284332, 0.12172961235, 2.30778312683, -0.00852763652802, 0.114268302917, 2.30626344681, -0.0253093242645, 0.125522851944, 2.3018245697, -0.017440199852, 0.114703387022, 2.2981262207, -0.0325745344162, 0.125701189041, 2.29354715347, -0.0249818563461, 0.113403767347, 2.28876900673, -0.039163351059, 0.124072104692, 2.28409004211, -0.031831741333, 0.134751290083, 2.30144500732, 0.0184803009033, 0.126133710146, 2.30778312683, 0.00945746898651, 0.131656646729, 2.30248451233, -0.00013279914856, 0.140163302422, 2.29628658295, 0.00838685035706, 0.13531395793, 2.29636669159, -0.00931668281555, 0.143667191267, 2.29004812241, -0.00100576877594, 0.135240346193, 2.28802919388, -0.017097234726, 0.143355488777, 2.28167104721, -0.00898504257202, 0.133301138878, 2.27855181694, -0.0241756439209, 0.141135960817, 2.27221393585, -0.0162571668625, 0.147868365049, 2.28702926636, 0.0359023809433, 0.141992688179, 2.29458713531, 0.0272271633148, 0.147267341614, 2.28926849365, 0.0169733762741, 0.15298679471, 2.28157091141, 0.0255570411682, 0.150608301163, 2.28295040131, 0.00742566585541, 0.156162858009, 2.27519273758, 0.0159112215042, 0.150082081556, 2.27459335327, -0.000709414482117, 0.15545463562, 2.26689577103, 0.00766479969025, 0.14762198925, 2.26523590088, -0.00813865661621, 0.152804106474, 2.25767803192, 0.000117897987366, 0.155566215515, 2.27025437355, 0.0527622699738, 0.152389377356, 2.27887177467, 0.0444386005402, 0.157339245081, 2.27331352234, 0.0340677499771, 0.160342335701, 2.26459622383, 0.0424356460571, 0.160356372595, 2.26687574387, 0.0243839025497, 0.163214445114, 2.25813817978, 0.0327764749527, 0.159508377314, 2.2586979866, 0.0160735845566, 0.16227838397, 2.25010061264, 0.0244525671005, 0.156727641821, 2.24964094162, 0.00845015048981, 0.159437865019, 2.24126291275, 0.0167962312698, 0.157930731773, 2.25205993652, 0.0684794187546, 0.157409638166, 2.26127696037, 0.0608003139496, 0.162014335394, 2.25553894043, 0.050590634346, 0.162372589111, 2.24624156952, 0.0584633350372, 0.164762884378, 2.24908089638, 0.0410225391388, 0.165027230978, 2.23980379105, 0.0490554571152, 0.163799524307, 2.24120283127, 0.0327372550964, 0.164106845856, 2.23210597038, 0.0408635139465, 0.160980015993, 2.23260593414, 0.0250935554504, 0.161399245262, 2.22378849983, 0.033280134201, 0.155048340559, 2.2333855629, 0.0824674367905, 0.157139897346, 2.24272274971, 0.0757262706757, 0.161435037851, 2.23684453964, 0.0659832954407, 0.1592194736, 2.22744750977, 0.0730808973312, 0.164032697678, 2.23042678833, 0.0568078756332, 0.161805540323, 2.22106933594, 0.0642131567001, 0.163235545158, 2.2229487896, 0.0487673282623, 0.161220312119, 2.21379137039, 0.0563832521439, 0.16074064374, 2.21491146088, 0.0412939786911, 0.159049600363, 2.20607376099, 0.0490725040436, 0.147004812956, 2.21517109871, 0.0941400527954, 0.151666402817, 2.22416830063, 0.0886298418045, 0.155743956566, 2.21819019318, 0.079686164856, 0.151025772095, 2.20915317535, 0.0857290029526, 0.158370763063, 2.21185207367, 0.071204662323, 0.153754591942, 2.20285463333, 0.0777155160904, 0.158096283674, 2.20479393005, 0.0636481046677, 0.153898715973, 2.19601678848, 0.0704970359802, 0.156371206045, 2.19737648964, 0.0565538406372, 0.152750641108, 2.18893909454, 0.0636758804321, 0.133886575699, 2.19837617874, 0.102910280228, 0.141074776649, 2.20653367043, 0.0989243984222, 0.145083189011, 2.20045542717, 0.091139793396, 0.137933582067, 2.192237854, 0.0958482027054, 0.147982120514, 2.19421720505, 0.0836787223816, 0.141079187393, 2.18603992462, 0.0890275239944, 0.148662298918, 2.18759918213, 0.0768655538559, 0.142422348261, 2.17964196205, 0.0826895236969, 0.148233175278, 2.18082141876, 0.0703762769699, 0.142864078283, 2.17316389084, 0.0765929222107, 0.116392701864, 2.18350028992, 0.108701348305, 0.125451296568, 2.19077849388, 0.106023788452, 0.129595041275, 2.18460011482, 0.0997846126556, 0.120661944151, 2.17726230621, 0.103335261345, 0.133071660995, 2.1784222126, 0.0936951637268, 0.124511361122, 2.17110443115, 0.0980221033096, 0.135213583708, 2.17224383354, 0.0879046916962, 0.127520471811, 2.16510629654, 0.0928150415421, 0.136688560247, 2.16604566574, 0.0822635889053, 0.130109518766, 2.15918779373, 0.0876613855362, 0.124567627907, 2.04936122894, -0.0664257407188, 0.117223381996, 2.03042697906, -0.0664547681808, 0.122497439384, 2.02838754654, -0.0570179224014, 0.130136489868, 2.04744195938, -0.0558465719223, 0.10986661911, 2.01165246964, -0.0666796565056, 0.114789128304, 2.00951337814, -0.058496594429, 0.118198901415, 2.0084335804, -0.0499887466431, 0.126006126404, 2.02732777596, -0.0473473668098, 0.133707642555, 2.04638195038, -0.045095205307, 0.125983804464, 2.02818775177, -0.0372090935707, 0.133282780647, 2.04706192017, -0.0339994430542, 0.11858317256, 2.00951337814, -0.0408309698105, 0.117454975843, 2.01165246964, -0.0313483476639, 0.124195933342, 2.03000688553, -0.0268366336823, 0.130859702826, 2.04858136177, -0.0227317810059, 0.138389199972, 2.08796930313, -0.0675164461136, 0.131885975599, 2.06859540939, -0.0667879581451, 0.137637227774, 2.06683588028, -0.0552886724472, 0.144223451614, 2.08639001846, -0.0552388429642, 0.141198158264, 2.06583619118, -0.0436208248138, 0.147791981697, 2.08545017242, -0.0427782535553, 0.140378803015, 2.06631612778, -0.0316154956818, 0.146828860044, 2.0857899189, -0.0299518108368, 0.137369126081, 2.06755566597, -0.0194413661957, 0.143600016832, 2.08676958084, -0.0169419050217, 0.146404981613, 2.12661790848, -0.06991314888, 0.143287777901, 2.10736370087, -0.068584561348, 0.149119347334, 2.10592412949, -0.0555905103683, 0.152460575104, 2.12531805038, -0.0563311576843, 0.152802824974, 2.10504412651, -0.0424218177795, 0.15644261241, 2.12449836731, -0.0425711870193, 0.152189850807, 2.10526418686, -0.0289033651352, 0.15627682209, 2.12461853027, -0.0284548997879, 0.149428635836, 2.10602402687, -0.0152099132538, 0.154037475586, 2.12519836426, -0.0141605138779, 0.147582501173, 2.16410636902, -0.0730974674225, 0.147564411163, 2.14557170868, -0.0714212656021, 0.154382348061, 2.14443230629, -0.0574474334717, 0.155099600554, 2.16310691833, -0.0588482618332, 0.158922046423, 2.14369297028, -0.0432466268539, 0.160034298897, 2.16244697571, -0.0443168878555, 0.158904582262, 2.14371275902, -0.028591632843, 0.159803986549, 2.16240692139, -0.029222369194, 0.156608909369, 2.1441526413, -0.0137093067169, 0.156991153955, 2.16270685196, -0.013846039772, 0.14677965641, 2.19925546646, -0.0767661333084, 0.147275775671, 2.18204116821, -0.0749300718307, 0.154827237129, 2.18120145798, -0.0604419708252, 0.153695940971, 2.19859576225, -0.0621268749237, 0.159572601318, 2.18060159683, -0.0456516742706, 0.157741546631, 2.19811630249, -0.0471733808517, 0.15870526433, 2.18052148819, -0.030256986618, 0.156046032906, 2.19795656204, -0.0315918922424, 0.15503180027, 2.18070173264, -0.014560341835, 0.151480048895, 2.19799613953, -0.0156964063644, 0.144407600164, 2.23084640503, -0.0800322294235, 0.146229863167, 2.21559095383, -0.0784523487091, 0.151835799217, 2.21521091461, -0.0638002157211, 0.148625522852, 2.23080635071, -0.0654656887054, 0.154745697975, 2.21487116814, -0.0488049983978, 0.150423169136, 2.23064637184, -0.050523519516, 0.152263611555, 2.21463108063, -0.0331227779388, 0.147380113602, 2.23030662537, -0.0348300933838, 0.147085398436, 2.21443128586, -0.0170975923538, 0.141916364431, 2.22984647751, -0.0187612771988, 0.133940190077, 2.25753831863, -0.0830461978912, 0.140094131231, 2.24488210678, -0.0815494060516, 0.143443703651, 2.24520158768, -0.0671261548996, 0.136708974838, 2.25813794136, -0.0688059329987, 0.144611924887, 2.24526166916, -0.0523064136505, 0.13750872016, 2.25835800171, -0.0541714429855, 0.141417741776, 2.24480199814, -0.0366939306259, 0.134370803833, 2.25787830353, -0.0387487411499, 0.136042326689, 2.24410223961, -0.0206849575043, 0.129263758659, 2.25701832771, -0.0229318141937, 0.11739218235, 2.27921152115, -0.0858865976334, 0.12659573555, 2.2686753273, -0.0845659971237, 0.128839880228, 2.26935458183, -0.070529460907, 0.119173765182, 2.27985167503, -0.0721004009247, 0.129310101271, 2.26965475082, -0.0561360120773, 0.119366377592, 2.28019142151, -0.0580433607101, 0.126232653856, 2.26925468445, -0.041029214859, 0.11638045311, 2.2799115181, -0.0434445142746, 0.121381372213, 2.26847505569, -0.0255655050278, 0.111805438995, 2.27927160263, -0.0285745859146, 0.0916806459427, 2.30064535141, -0.087397813797, 0.105659842491, 2.29046821594, -0.0867856740952, 0.107048034668, 2.29118800163, -0.0733225345612, 0.0925268828869, 2.30144500732, -0.0744141340256, 0.107027888298, 2.29152798653, -0.0597364902496, 0.0922451913357, 2.30176448822, -0.0614460706711, 0.104191184044, 2.29112815857, -0.0459040403366, 0.0897073447704, 2.301404953, -0.0485091209412, 0.0999457836151, 2.29030847549, -0.0319479703903, 0.0860415697098, 2.30062532425, -0.0356193780899, 0.058549284935, 2.31276154518, -0.0889201164246, 0.0757365524769, 2.30770301819, -0.0878578424454, 0.0756749808788, 2.30832290649, -0.0755923986435, 0.0575108230114, 2.3131814003, -0.0777603387833, 0.0749685764313, 2.30862283707, -0.0634022951126, 0.0563145875931, 2.31322145462, -0.0664757490158, 0.0729727447033, 2.30860280991, -0.0513643026352, 0.0548032522202, 2.31330156326, -0.0552595853806, 0.0703321397305, 2.30898237228, -0.0399898290634, 0.0531339347363, 2.31430101395, -0.0449067354202, 0.0245968103409, 2.31420087814, -0.0912821292877, 0.0408408641815, 2.31580066681, -0.0906755924225, 0.0390535891056, 2.3164806366, -0.0813769102097, 0.0226547420025, 2.31502103806, -0.0837494134903, 0.0374005138874, 2.31662034988, -0.0716352462769, 0.0209376811981, 2.31528091431, -0.0756440162659, 0.0360152721405, 2.31680059433, -0.0616317987442, 0.019670009613, 2.31524085999, -0.0668156147003, 0.0347639024258, 2.31769990921, -0.0521657466888, 0.0186272859573, 2.31558084488, -0.0581742525101, 0.000732898712158, 2.29326748848, -0.0851159095764, 0.0118024051189, 2.30596351624, -0.0891358852386, 0.0106652677059, 2.30670332909, -0.0826177597046, 0.000880479812622, 2.29422688484, -0.0794169902802, 0.00963759422302, 2.30698347092, -0.0757268667221, 0.000918984413147, 2.2947268486, -0.0736433267593, 0.00882866978645, 2.30680322647, -0.0682905912399, 0.000739216804504, 2.2947268486, -0.0678576231003, 0.00812911987305, 2.30658340454, -0.06079185009, 0.0004503428936, 2.29438734055, -0.0620568990707, -0.0436002016068, 2.33321523666, -0.0609533786774, -0.0301643311977, 2.32571768761, -0.0754373073578, -0.0264419615269, 2.32919645309, -0.0751150846481, -0.0387999117374, 2.33739423752, -0.060573220253, -0.0155843794346, 2.31650018692, -0.0894778966904, -0.0127746164799, 2.31953954697, -0.0894693136215, -0.00993260741234, 2.32193875313, -0.0888805389404, -0.0226673781872, 2.33195567131, -0.0743165016174, -0.033917337656, 2.34071302414, -0.0597943067551, -0.0187876522541, 2.33329534531, -0.0725960731506, -0.028870254755, 2.34247255325, -0.0583485364914, -0.00702607631683, 2.3230984211, -0.0871534347534, -0.00408729910851, 2.32355833054, -0.0848127603531, -0.0148554742336, 2.33389520645, -0.0704172849655, -0.0237410068512, 2.34329223633, -0.0565015077591, -0.0633137226105, 2.34857082367, -0.0330228805542, -0.0547485053539, 2.34157276154, -0.0475043058395, -0.0485389232635, 2.34617137909, -0.0468162298203, -0.0558758974075, 2.35410928726, -0.0324808359146, -0.0421982109547, 2.34953022003, -0.0456714630127, -0.0482614040375, 2.35776805878, -0.0311700105667, -0.0355956554413, 2.35130977631, -0.0443754196167, -0.0402927696705, 2.35848760605, -0.0290590524673, -0.0288616716862, 2.35178995132, -0.0426031351089, -0.0321472883224, 2.35862779617, -0.0273978710175, -0.0734800100327, 2.35362935066, 0.00531268119812, -0.0690001249313, 2.35234975815, -0.0158016681671, -0.0610279142857, 2.35770797729, -0.014378786087, -0.0651897192001, 2.35840773582, 0.00761938095093, -0.0528580844402, 2.36116695404, -0.0123937129974, -0.0566962957382, 2.36106681824, 0.0105286836624, -0.0442920029163, 2.36138677597, -0.00974786281586, -0.0477961301804, 2.36078691483, 0.0133661031723, -0.0355280637741, 2.35962748528, -0.00651955604553, -0.0386925637722, 2.35892772675, 0.0162776708603, -0.0828915834427, 2.34743118286, 0.0591558218002, -0.0784249007702, 2.3531692028, 0.0303661823273, -0.0695559978485, 2.35722780228, 0.0327721834183, -0.0734333992004, 2.35045003891, 0.0614588260651, -0.0604845583439, 2.35910749435, 0.0356458425522, -0.0637855231762, 2.35168981552, 0.0636740922928, -0.051008194685, 2.35760807991, 0.0385000705719, -0.0537583827972, 2.34997034073, 0.0651624202728, -0.0413295030594, 2.35544848442, 0.040328502655, -0.043541520834, 2.34729099274, 0.0657814741135, -0.087406039238, 2.33185577393, 0.105574011803, -0.085936665535, 2.33931350708, 0.0856020450592, -0.0761289596558, 2.34167289734, 0.0874778032303, -0.0774594545364, 2.33371496201, 0.106886506081, -0.0661619901657, 2.3426527977, 0.0887945890427, -0.067390203476, 2.33447504044, 0.107383847237, -0.0558761060238, 2.34109306335, 0.0888007879257, -0.0570755898952, 2.33299541473, 0.106251120567, -0.0454308986664, 2.33837389946, 0.088059425354, -0.0466383397579, 2.33039617538, 0.104303240776, -0.0857708752155, 2.31262159348, 0.131044864655, -0.0871458351612, 2.32255840302, 0.120163917542, -0.0772413015366, 2.32423782349, 0.120725631714, -0.0760444402695, 2.31402111053, 0.131090283394, -0.0672462880611, 2.3249578476, 0.120347738266, -0.0662352144718, 2.31466126442, 0.130091428757, -0.057070761919, 2.32377815247, 0.11809027195, -0.0562598407269, 2.31378126144, 0.127004504204, -0.0468048751354, 2.32163906097, 0.114893555641, -0.0462012290955, 2.31214189529, 0.122873306274, -0.0814951658249, 2.29584693909, 0.145236611366, -0.0838958919048, 2.30398416519, 0.139142155647, -0.0744397342205, 2.30486392975, 0.139134526253, -0.0724167525768, 2.29600644112, 0.145389556885, -0.0648617744446, 2.30518388748, 0.138020038605, -0.0631441771984, 2.29586648941, 0.144401669502, -0.0550405979156, 2.30440425873, 0.134691953659, -0.0534828603268, 2.2950668335, 0.141132593155, -0.0450978279114, 2.30308437347, 0.130256652832, -0.0436274707317, 2.29394721985, 0.136722922325, -0.0750261545181, 2.27877163887, 0.153790950775, -0.0785427093506, 2.28736925125, 0.150109171867, -0.069965839386, 2.28676939011, 0.150385141373, -0.067076086998, 2.27727222443, 0.154143333435, -0.0611001551151, 2.28606939316, 0.149503350258, -0.0587204694748, 2.27595233917, 0.15334379673, -0.0516559779644, 2.28522992134, 0.146306276321, -0.0495538413525, 2.27501296997, 0.150241613388, -0.041923135519, 2.2842900753, 0.141951322556, -0.0399817228317, 2.2742331028, 0.145987987518, -0.0662367343903, 2.26177692413, 0.157648086548, -0.0709328353405, 2.27017450333, 0.156314134598, -0.0637361109257, 2.26767516136, 0.156686067581, -0.0599224865437, 2.25813794136, 0.157976865768, -0.0559960901737, 2.26563596725, 0.155942440033, -0.0529052019119, 2.2552986145, 0.157259106636, -0.0471695363522, 2.26453590393, 0.152968287468, -0.0444827079773, 2.25395941734, 0.154447793961, -0.0378000438213, 2.2638964653, 0.14887881279, -0.0353575646877, 2.25339984894, 0.150589585304, -0.0549338161945, 2.24616193771, 0.156623959541, -0.0609123706818, 2.25369930267, 0.157761335373, -0.0556116104126, 2.24884080887, 0.157979488373, -0.0507799088955, 2.23990345001, 0.156657457352, -0.049426227808, 2.24504208565, 0.157254219055, -0.0455374419689, 2.23506498337, 0.155888080597, -0.0414724647999, 2.24342250824, 0.154641747475, -0.038117647171, 2.23302555084, 0.153512239456, -0.0326341688633, 2.24286270142, 0.151085734367, -0.0296096801758, 2.23240590096, 0.150333166122, -0.0409106910229, 2.23326539993, 0.150473237038, -0.0482752323151, 2.23928356171, 0.154204726219, -0.0454038381577, 2.23150610924, 0.1539747715, -0.0394600629807, 2.22380852699, 0.149894475937, -0.0412167310715, 2.22548770905, 0.153121113777, -0.0364429950714, 2.21645069122, 0.148913860321, -0.0343979895115, 2.22294855118, 0.151021122932, -0.0302927196026, 2.21329164505, 0.147129774094, -0.0262634754181, 2.22216892242, 0.148297429085, -0.0225755870342, 2.21225166321, 0.14494407177, -0.0243518054485, 2.22372841835, 0.139652252197, -0.0328141450882, 2.22824668884, 0.145398497581, -0.0329248905182, 2.21695041656, 0.144380450249, -0.0260941684246, 2.21051216125, 0.138149619102, -0.0311941802502, 2.20811295509, 0.143226385117, -0.0257078111172, 2.20013570786, 0.136798858643, -0.0257804393768, 2.20421409607, 0.141800522804, -0.0210649967194, 2.19541716576, 0.13575220108, -0.0185252726078, 2.20277452469, 0.140238642693, -0.0142939984798, 2.19353747368, 0.134857416153, -0.0604097545147, 2.3264374733, -0.0502820014954, -0.0535877943039, 2.32605743408, -0.0621603727341, -0.0515226125717, 2.33151578903, -0.0657339096069, -0.0578101873398, 2.33399486542, -0.0531996488571, -0.0463627576828, 2.32831668854, -0.0760824680328, -0.0451539456844, 2.33107614517, -0.0805457830429, -0.0429972112179, 2.33413553238, -0.0842145681381, -0.0485629737377, 2.33669424057, -0.0687998533249, -0.0542888343334, 2.34061336517, -0.0555860996246, -0.0438139438629, 2.34135293961, -0.0707924365997, -0.0489242374897, 2.34563159943, -0.0570749044418, -0.0389440357685, 2.33795380592, -0.0863344669342, -0.0339429676533, 2.34213280678, -0.0876879692078, -0.0381706953049, 2.34577178955, -0.0723067522049, -0.0426379144192, 2.34997034073, -0.0582292079926, -0.0715688169003, 2.33021616936, -0.0277493000031, -0.0664249658585, 2.32839679718, -0.0391485691071, -0.0639352798462, 2.33703422546, -0.0418121814728, -0.0694556236267, 2.33931350708, -0.0301579236984, -0.0603353977203, 2.34467172623, -0.0439592599869, -0.0659912526608, 2.34763121605, -0.0321533679962, -0.0545149743557, 2.35057020187, -0.0452622175217, -0.0598245859146, 2.3546090126, -0.0334711074829, -0.0475844144821, 2.35540890694, -0.0459597110748, -0.0523063838482, 2.36052727699, -0.0341098308563, -0.0790301263332, 2.33017635345, -0.00288712978363, -0.0757763385773, 2.33079624176, -0.0156215429306, -0.0739289224148, 2.34037327766, -0.017573595047, -0.0773324072361, 2.34019327164, -0.00424611568451, -0.0705456733704, 2.34921050072, -0.0192177295685, -0.0739680826664, 2.34949040413, -0.00549125671387, -0.0640910565853, 2.35690832138, -0.0205283164978, -0.0672707259655, 2.35742807388, -0.00655448436737, -0.0561004579067, 2.36366605759, -0.0212869644165, -0.0589070022106, 2.36416602135, -0.00696086883545, -0.0828481912613, 2.32553768158, 0.0223505496979, -0.0813130140305, 2.32831668854, 0.00985479354858, -0.0796437263489, 2.33861398697, 0.00922167301178, -0.0811264812946, 2.33603453636, 0.022399187088, -0.0762281417847, 2.34817075729, 0.00857579708099, -0.0776139199734, 2.34577178955, 0.0223289728165, -0.0693206787109, 2.35630846024, 0.00786173343658, -0.0705199241638, 2.35402917862, 0.0219769477844, -0.060666680336, 2.36312627792, 0.00771498680115, -0.0616351664066, 2.36088705063, 0.0221104621887, -0.0843765437603, 2.31630039215, 0.0481306314468, -0.0838590562344, 2.32159900665, 0.0350558757782, -0.0820442438126, 2.33203577995, 0.0358860492706, -0.0824274718761, 2.3264374733, 0.0498504638672, -0.0784128904343, 2.3416929245, 0.0365108251572, -0.0786541700363, 2.33575439453, 0.0513011217117, -0.0711484849453, 2.34985017776, 0.0366605520248, -0.0712331235409, 2.34353232384, 0.0521245002747, -0.0620676279068, 2.35662817955, 0.0371606349945, -0.0619878768921, 2.35005044937, 0.0531113147736, -0.0840324163437, 2.30364441872, 0.0733532905579, -0.0844313204288, 2.31016254425, 0.0610688924789, -0.0823061168194, 2.31983947754, 0.0636641979218, -0.0816903114319, 2.31284141541, 0.0767132043839, -0.0783671140671, 2.32869672775, 0.0659314393997, -0.0775621831417, 2.32119894028, 0.0796900987625, -0.0708002150059, 2.33599448204, 0.0674483776093, -0.0698619186878, 2.32801675797, 0.0818268060684, -0.0614193975925, 2.34217262268, 0.0689352750778, -0.0603755712509, 2.33383512497, 0.0837498903275, -0.0819096565247, 2.29100799561, 0.0943217277527, -0.0831888616085, 2.29718613625, 0.0845260620117, -0.0805894434452, 2.30590343475, 0.0884746313095, -0.0790133476257, 2.29928565025, 0.0986616611481, -0.076249986887, 2.31382131577, 0.0919888019562, -0.0744409263134, 2.30680322647, 0.10252892971, -0.0684299170971, 2.32019901276, 0.0946027040482, -0.066516160965, 2.3128015995, 0.105451107025, -0.0588698387146, 2.32571768761, 0.0968332290649, -0.0569154322147, 2.3180398941, 0.107900977135, -0.0780804157257, 2.27731227875, 0.111612081528, -0.0802037715912, 2.28443026543, 0.103319168091, -0.0769715309143, 2.2922077179, 0.107947587967, -0.0744738578796, 2.28451013565, 0.116438269615, -0.0721455812454, 2.29926562309, 0.112089157104, -0.0693748891354, 2.29102802277, 0.120777249336, -0.0641324222088, 2.30486392975, 0.115256786346, -0.0612904727459, 2.29616689682, 0.124139666557, -0.0545255839825, 2.30972242355, 0.117937445641, -0.051713347435, 2.30062532425, 0.127014517784, -0.0726166665554, 2.2614569664, 0.125857830048, -0.0755483806133, 2.26965475082, 0.119143605232, -0.0715299844742, 2.27621269226, 0.124070763588, -0.0681495666504, 2.2672753334, 0.13078045845, -0.0661388337612, 2.28211069107, 0.128522276878, -0.0624483525753, 2.27251362801, 0.135253667831, -0.0580020844936, 2.28674936295, 0.132022619247, -0.0542794167995, 2.2765724659, 0.138828039169, -0.0484927594662, 2.29072809219, 0.13504743576, -0.0448764264584, 2.28007149696, 0.14195227623, -0.0655905902386, 2.24346232414, 0.136607170105, -0.0692944526672, 2.25273942947, 0.131697773933, -0.0643422305584, 2.2577381134, 0.13650405407, -0.0601176023483, 2.24760103226, 0.141177535057, -0.0583139955997, 2.26223683357, 0.140900611877, -0.0537463724613, 2.25130009651, 0.145392179489, -0.0501340329647, 2.26571559906, 0.144477725029, -0.0455777645111, 2.25413918495, 0.148894548416, -0.0408780574799, 2.2686753273, 0.147645115852, -0.0365107953548, 2.25655841827, 0.152041435242, -0.0570739507675, 2.22334861755, 0.143409013748, -0.0615139901638, 2.23366546631, 0.140529751778, -0.0554856061935, 2.23684453964, 0.14473760128, -0.0504557192326, 2.22550797462, 0.147119998932, -0.0487556755543, 2.23970365524, 0.14865732193, -0.0433529615402, 2.22744750977, 0.150625228882, -0.040622740984, 2.24186301231, 0.152001142502, -0.0352803468704, 2.22892689705, 0.153719425201, -0.0317879915237, 2.24370241165, 0.15505695343, -0.026722997427, 2.23016667366, 0.156607866287, -0.0473071038723, 2.20137524605, 0.146417379379, -0.0522792339325, 2.21249175072, 0.145188093185, -0.0450378358364, 2.21359157562, 0.148261189461, -0.0394258499146, 2.20137524605, 0.148781776428, -0.0375484228134, 2.21457123756, 0.151225328445, -0.0315431058407, 2.20137524605, 0.151141405106, -0.029562920332, 2.21531105042, 0.153972029686, -0.0236574113369, 2.20137524605, 0.153491735458, -0.0213290154934, 2.21593093872, 0.156609773636, -0.0157706737518, 2.20137524605, 0.15583729744, -0.126139134169, 2.27367353439, 0.0134401321411, -0.121028512716, 2.26507616043, 0.0001620054245, -0.117729902267, 2.27069425583, -0.0013016462326, -0.122235745192, 2.27967166901, 0.0122321844101, -0.115739703178, 2.25615882874, -0.0135676860809, -0.113093614578, 2.26133704185, -0.0152413845062, -0.109678268433, 2.26567602158, -0.0167348384857, -0.113617300987, 2.27531290054, -0.00265848636627, -0.117472320795, 2.28457021713, 0.0110552310944, -0.107876628637, 2.27797222137, -0.00382030010223, -0.110989093781, 2.28738927841, 0.00978434085846, -0.104724019766, 2.26829481125, -0.0178682804108, -0.099000453949, 2.27005434036, -0.0188236236572, -0.101321816444, 2.27989149094, -0.00510275363922, -0.103645682335, 2.28946828842, 0.00819432735443, -0.134807467461, 2.28790926933, 0.0375573635101, -0.130893081427, 2.28159093857, 0.0258152484894, -0.126480609179, 2.28790926933, 0.0249543190002, -0.129963368177, 2.29448699951, 0.0371271371841, -0.121159642935, 2.29302740097, 0.0240368843079, -0.124161273241, 2.2997853756, 0.0365560054779, -0.114021539688, 2.29604673386, 0.0227020978928, -0.116443872452, 2.30292463303, 0.035325884819, -0.105974793434, 2.29828572273, 0.0208880901337, -0.107768505812, 2.30536365509, 0.0333899259567, -0.138858884573, 2.29310750961, 0.0598373413086, -0.137399464846, 2.29164791107, 0.0489362478256, -0.132182329893, 2.29842615128, 0.0490132570267, -0.133326053619, 2.30000519753, 0.0604798793793, -0.125959604979, 2.30388450623, 0.0488640069962, -0.126743525267, 2.30560350418, 0.0608052015305, -0.11772570014, 2.30700325966, 0.0480139255524, -0.118061095476, 2.30862283707, 0.0604513883591, -0.108486205339, 2.3095023632, 0.0462605953217, -0.108328849077, 2.310942173, 0.0591939687729, -0.139137148857, 2.29072809219, 0.0797469615936, -0.139374494553, 2.29262757301, 0.0701460838318, -0.133583068848, 2.29952573776, 0.0713945627213, -0.133135050535, 2.29750609398, 0.0816290378571, -0.126702547073, 2.30512404442, 0.0722353458405, -0.126010775566, 2.30304431915, 0.0830143690109, -0.117644280195, 2.30814313889, 0.072260260582, -0.116642147303, 2.30610370636, 0.08340716362, -0.107497185469, 2.31006240845, 0.0717121362686, -0.10615170002, 2.30790305138, 0.0833036899567, -0.13698887825, 2.2842900753, 0.0964648723602, -0.138337016106, 2.28790926933, 0.0885248184204, -0.132163852453, 2.29454708099, 0.0910539627075, -0.130676984787, 2.29068803787, 0.0996408462524, -0.124841690063, 2.29996538162, 0.0930025577545, -0.123197197914, 2.29596662521, 0.102158904076, -0.115222215652, 2.30302429199, 0.0937901735306, -0.113381952047, 2.29902553558, 0.103360414505, -0.104454040527, 2.30488395691, 0.0939974784851, -0.102399110794, 2.30094480515, 0.103903889656, -0.132707118988, 2.27489304543, 0.109772920609, -0.135107368231, 2.27993154526, 0.10355246067, -0.128681689501, 2.286049366, 0.107360959053, -0.126185894012, 2.28069114685, 0.114184975624, -0.12107822299, 2.29114818573, 0.110441803932, -0.118486255407, 2.28554964066, 0.117810845375, -0.111118644476, 2.2941672802, 0.112067937851, -0.10843026638, 2.28852891922, 0.11986386776, -0.0999814271927, 2.29614686966, 0.112966656685, -0.0971958637238, 2.29058814049, 0.121129989624, -0.126410245895, 2.26307654381, 0.119552135468, -0.129803210497, 2.26923465729, 0.115110754967, -0.123196810484, 2.27469277382, 0.120084285736, -0.119721889496, 2.2681350708, 0.125029921532, -0.115422815084, 2.27929162979, 0.124224424362, -0.111888974905, 2.27245378494, 0.129641890526, -0.105313777924, 2.28223085403, 0.12669813633, -0.101767271757, 2.27531290054, 0.132521748543, -0.0940374135971, 2.28431010246, 0.128338575363, -0.0905010700226, 2.27745199203, 0.13453567028, -0.118216127157, 2.24942064285, 0.125685453415, -0.122543007135, 2.25643873215, 0.12308204174, -0.115768671036, 2.26109719276, 0.128993034363, -0.111344784498, 2.25365948677, 0.131944656372, -0.107886195183, 2.26511621475, 0.134021639824, -0.103416204453, 2.25735831261, 0.137322664261, -0.0977878570557, 2.26789522171, 0.137285113335, -0.0933731794357, 2.26003742218, 0.140938997269, -0.0865814387798, 2.2700343132, 0.139666199684, -0.0822733640671, 2.26219677925, 0.14367389679, -0.108242869377, 2.2345252037, 0.12805390358, -0.113444566727, 2.24210309982, 0.127347588539, -0.106457471848, 2.24590158463, 0.133855700493, -0.10111451149, 2.23788428307, 0.134697437286, -0.0984798669815, 2.24928069115, 0.13950419426, -0.0930787324905, 2.24094343185, 0.140524983406, -0.0885210931301, 2.25182008743, 0.143433690071, -0.0832286179066, 2.24334263802, 0.144720077515, -0.0775715112686, 2.25395917892, 0.146503567696, -0.0724713504314, 2.2454419136, 0.148098945618, -0.0966084003448, 2.21895003319, 0.126539707184, -0.10262581706, 2.22678756714, 0.127789616585, -0.0953230559826, 2.22972655296, 0.134441137314, -0.0890909135342, 2.22148895264, 0.133057713509, -0.0872142612934, 2.23244595528, 0.140343904495, -0.0808877646923, 2.22386837006, 0.138919711113, -0.0774935483932, 2.23468518257, 0.144748449326, -0.071313649416, 2.2259478569, 0.143469572067, -0.0669672191143, 2.23672437668, 0.148404121399, -0.0610539913177, 2.22786736488, 0.147363424301, -0.0834305584431, 2.20327472687, 0.121025204659, -0.0902049839497, 2.21107196808, 0.124289870262, -0.082425236702, 2.21323156357, 0.130518436432, -0.0753338634968, 2.20505428314, 0.126793980598, -0.0741005837917, 2.21529102325, 0.136211514473, -0.0668540000916, 2.20681357384, 0.132177829742, -0.0646860599518, 2.21717047691, 0.140833854675, -0.0576083958149, 2.20845317841, 0.136792063713, -0.0547264814377, 2.21895003319, 0.144921302795, -0.0479797124863, 2.2100725174, 0.141021490097, -0.0689911544323, 2.18793916702, 0.111920714378, -0.0762999951839, 2.19557714462, 0.116730332375, -0.0678239166737, 2.19703650475, 0.121855735779, -0.0601050555706, 2.18909907341, 0.116310596466, -0.0591495931149, 2.19849610329, 0.126778125763, -0.0512161254883, 2.19027853012, 0.120695352554, -0.0500782430172, 2.19991564751, 0.131294727325, -0.0423220396042, 2.19143843651, 0.125069379807, -0.0408086776733, 2.20131540298, 0.135608315468, -0.0334250926971, 2.19259786606, 0.129438519478, -0.0442594587803, 2.31640052795, -0.0690153837204, -0.0253003835678, 2.32279849052, -0.0790388584137, -0.0267267525196, 2.32679748535, -0.0753885507584, -0.0460479259491, 2.3218588829, -0.0646656751633, -0.00579735636711, 2.32713699341, -0.0881344079971, -0.00669467449188, 2.33013629913, -0.0857772827148, -0.00692081451416, 2.33271551132, -0.0831940174103, -0.027113199234, 2.33045625687, -0.071645617485, -0.046507358551, 2.32723712921, -0.0604836940765, -0.0254199206829, 2.33361530304, -0.0678087472916, -0.0443081855774, 2.33195567131, -0.0561647415161, -0.00580477714539, 2.33453512192, -0.0801998376846, -0.00401747226715, 2.3359541893, -0.0770311355591, -0.0226869285107, 2.33651447296, -0.0639892816544, -0.0407800972462, 2.3364944458, -0.0519911050797, -0.078478127718, 2.3050839901, -0.0492353439331, -0.0621300935745, 2.31066226959, -0.0591471195221, -0.0639475286007, 2.31818008423, -0.0550009012222, -0.0802445709705, 2.31338143349, -0.0447709560394, -0.0643051862717, 2.32541799545, -0.0509198904037, -0.0805681943893, 2.32135915756, -0.0403488874435, -0.0617427527905, 2.33183574677, -0.0467134714127, -0.0780069828033, 2.32859683037, -0.035932302475, -0.0577207505703, 2.33779382706, -0.042461514473, -0.0740032196045, 2.33547449112, -0.0315797328949, -0.106261700392, 2.29174757004, -0.0277010202408, -0.0928691923618, 2.29846572876, -0.0387717485428, -0.0947577655315, 2.30648326874, -0.0336771011353, -0.10827434063, 2.29904556274, -0.0219078063965, -0.0953587591648, 2.31428098679, -0.028617978096, -0.109128445387, 2.30604362488, -0.0160256624222, -0.0933845937252, 2.32139897346, -0.02352643013, -0.107665896416, 2.31246137619, -0.00995028018951, -0.0901225805283, 2.32825708389, -0.0184859037399, -0.105045080185, 2.31863975525, -0.00384104251862, -0.132066339254, 2.27713251114, -0.00368273258209, -0.119615077972, 2.2846698761, -0.0159364938736, -0.121580511332, 2.29136800766, -0.00940191745758, -0.133851766586, 2.28353023529, 0.00337111949921, -0.122328668833, 2.29776597023, -0.00273084640503, -0.134261101484, 2.28970861435, 0.0104349851608, -0.120641559362, 2.30358433723, 0.00417542457581, -0.131917923689, 2.29546666145, 0.0175187587738, -0.117737054825, 2.30936288834, 0.0109664201736, -0.128198415041, 2.30100536346, 0.0246125459671, -0.151023238897, 2.26161718369, 0.0205591917038, -0.142753243446, 2.26955461502, 0.0086315870285, -0.14426279068, 2.2756729126, 0.0159558057785, -0.1523655653, 2.26745533943, 0.0279951095581, -0.144226998091, 2.28163099289, 0.0231767892838, -0.15204668045, 2.27321338654, 0.0352736711502, -0.141100615263, 2.28730916977, 0.0301916599274, -0.148404210806, 2.27879190445, 0.0422374010086, -0.136428803205, 2.29280757904, 0.0371032953262, -0.143100142479, 2.2842900753, 0.0490436553955, -0.159460633993, 2.24412226677, 0.0418200492859, -0.15622317791, 2.25303959846, 0.0316522121429, -0.157712340355, 2.25853800774, 0.0391323566437, -0.16125190258, 2.24928092957, 0.0493613481522, -0.157539695501, 2.26409626007, 0.0465052127838, -0.161442488432, 2.25461912155, 0.0568854808807, -0.154042840004, 2.26969432831, 0.0536625385284, -0.158431380987, 2.26027727127, 0.0643757581711, -0.148884266615, 2.2753329277, 0.0607126951218, -0.153819322586, 2.26611566544, 0.0718493461609, -0.163352251053, 2.2263674736, 0.0592097043991, -0.161841869354, 2.23514509201, 0.0509716272354, -0.163933306932, 2.2400033474, 0.0586750507355, -0.165496468544, 2.23090648651, 0.0671741962433, -0.164491504431, 2.24512219429, 0.0664293766022, -0.166181564331, 2.23578453064, 0.0752128362656, -0.1619836092, 2.25080037117, 0.0742852687836, -0.163948506117, 2.24142313004, 0.0834001302719, -0.157942891121, 2.25675845146, 0.0821917057037, -0.160256236792, 2.24742150307, 0.0916612148285, -0.163285702467, 2.21015262604, 0.0730710029602, -0.163977473974, 2.21801018715, 0.0666370391846, -0.165681958199, 2.22220873833, 0.0749580860138, -0.16418120265, 2.2140712738, 0.081794500351, -0.16600689292, 2.22682762146, 0.0833117961884, -0.163771897554, 2.21847009659, 0.0904678106308, -0.163573414087, 2.23232579231, 0.0917301177979, -0.160753041506, 2.22380852699, 0.0990405082703, -0.159760326147, 2.2382440567, 0.100180745125, -0.156429171562, 2.22962665558, 0.107562661171, -0.157058358192, 2.19641685486, 0.0823084115982, -0.160845279694, 2.20293474197, 0.0783284902573, -0.160686284304, 2.20669364929, 0.0874503850937, -0.155621618032, 2.20013570786, 0.0917029380798, -0.159280657768, 2.21097183228, 0.096422791481, -0.153024166822, 2.20433425903, 0.100852608681, -0.155382066965, 2.21621084213, 0.10509622097, -0.148106098175, 2.20945286751, 0.109513044357, -0.150236815214, 2.22192907333, 0.113620042801, -0.142027497292, 2.215031147, 0.117928743362, -0.146965175867, 2.18549990654, 0.0860106945038, -0.152327805758, 2.19071817398, 0.0849097967148, -0.149411678314, 2.19445753098, 0.0943287611008, -0.142446786165, 2.18923854828, 0.0952610969543, -0.145493477583, 2.19857621193, 0.103432655334, -0.137116193771, 2.19325780869, 0.104149222374, -0.139570623636, 2.20347452164, 0.111905694008, -0.130161643028, 2.1977763176, 0.112312793732, -0.132645964622, 2.2087726593, 0.120063900948, -0.122395038605, 2.20257496834, 0.120114326477, -0.134955048561, 2.17548298836, 0.0830419063568, -0.141282320023, 2.18044161797, 0.0854907035828, -0.135116815567, 2.18412041664, 0.0944323539734, -0.127150535583, 2.17900180817, 0.0916676521301, -0.128321051598, 2.18787932396, 0.102988004684, -0.118896484375, 2.18244123459, 0.0999177694321, -0.120264738798, 2.1918182373, 0.110771298409, -0.109743237495, 2.18571972847, 0.107416629791, -0.111577868462, 2.19583678246, 0.118168830872, -0.100140362978, 2.18891906738, 0.114539384842, -0.119879573584, 2.16560602188, 0.0725532770157, -0.127659440041, 2.17052435875, 0.0783567428589, -0.11827647686, 2.17382359505, 0.0867919921875, -0.108948677778, 2.16860508919, 0.0808608531952, -0.108631461859, 2.17692279816, 0.0949076414108, -0.0979456007481, 2.1713643074, 0.0889267921448, -0.09846124053, 2.17964196205, 0.102382898331, -0.086798787117, 2.17356348038, 0.0965098142624, -0.088028639555, 2.18216085434, 0.109538316727, -0.0755797922611, 2.17550301552, 0.103851556778, 0.00868853926659, 2.33539485931, -0.0512501001358, 0.00142908096313, 2.32813692093, -0.0638641119003, 0.00808355212212, 2.33221554756, -0.0686371326447, 0.0165575742722, 2.33909368515, -0.0563853979111, -0.00605854392052, 2.32005929947, -0.0773588418961, -0.000642746686935, 2.32469797134, -0.0819361209869, 0.00491055846214, 2.32735729218, -0.0862690210342, 0.014680981636, 2.33435487747, -0.0734745264053, 0.0241758823395, 2.3402132988, -0.0612806081772, 0.0211643874645, 2.33297538757, -0.0784904956818, 0.0312929153442, 2.3374941349, -0.0665051937103, 0.0107389390469, 2.32655715942, -0.0902704000473, 0.0167047977448, 2.32365846634, -0.0939439535141, 0.0275906324387, 2.32945656776, -0.0834269523621, 0.0381590425968, 2.33305549622, -0.0722490549088, 0.021844625473, 2.34651136398, -0.0283926725388, 0.015491694212, 2.34183287621, -0.0398142337799, 0.0245273411274, 2.34467172623, -0.0448521375656, 0.0319911241531, 2.34863090515, -0.0333253145218, 0.0331202447414, 2.34467172623, -0.0495938062668, 0.0415068566799, 2.34777069092, -0.0380059480667, 0.0408276319504, 2.34069299698, -0.0549265146255, 0.0497607290745, 2.34339237213, -0.0440118312836, 0.0480926930904, 2.33513498306, -0.0610609054565, 0.0573836863041, 2.33713412285, -0.0506997108459, 0.0332235395908, 2.34863090515, -0.00301373004913, 0.0277532339096, 2.3486905098, -0.0160907506943, 0.0389480292797, 2.35089015961, -0.0215021371841, 0.0453960895538, 2.35224962234, -0.0100132226944, 0.0493292808533, 2.35118985176, -0.0277466773987, 0.0565805137157, 2.35232973099, -0.0165066719055, 0.05808365345, 2.34625148773, -0.0341358184814, 0.065788269043, 2.34711122513, -0.0233744382858, 0.0660244226456, 2.33905363083, -0.0410094261169, 0.0740078687668, 2.33953332901, -0.0307521820068, 0.0428734719753, 2.34599137306, 0.022515296936, 0.0382616221905, 2.34767103195, 0.0098717212677, 0.0513345003128, 2.35110998154, 0.0027437210083, 0.056761264801, 2.34893035889, 0.0156319141388, 0.0632538795471, 2.35162973404, -0.00451290607452, 0.0693424940109, 2.34993028641, 0.00763559341431, 0.0728666484356, 2.3465514183, -0.0121212005615, 0.0793102681637, 2.34517168999, -0.000785350799561, 0.0813258588314, 2.33889389038, -0.0201194286346, 0.0879712104797, 2.33757400513, -0.00942742824554, 0.0508422553539, 2.33725404739, 0.0482356548309, 0.0470650196075, 2.34289264679, 0.0350153446198, 0.0616753995419, 2.34579157829, 0.0280704498291, 0.0660752952099, 2.3403134346, 0.0410865545273, 0.0748395621777, 2.34691143036, 0.0198029279709, 0.0797381401062, 2.34211277962, 0.0320785045624, 0.0851111412048, 2.34277248383, 0.0105097293854, 0.0902609527111, 2.33867359161, 0.0219476222992, 0.0939362049103, 2.33541464806, 0.00126504898071, 0.0992134511471, 2.33195567131, 0.011914730072, 0.0571783483028, 2.32121872902, 0.0742263793945, 0.0542114675045, 2.32977628708, 0.0615466833115, 0.0699597299099, 2.33279561996, 0.0544064044952, 0.0733270645142, 2.32397794724, 0.0673328638077, 0.0840318202972, 2.33469486237, 0.0452736616135, 0.0877134799957, 2.32549762726, 0.0585740804672, 0.0947515964508, 2.33205580711, 0.034353017807, 0.0985748767853, 2.32347822189, 0.0471423864365, 0.103795051575, 2.32641744614, 0.0232561826706, 0.10767364502, 2.31897974014, 0.0350602865219, 0.0619293153286, 2.30332422256, 0.0953620672226, 0.0597489774227, 2.31222176552, 0.0856611728668, 0.0761761665344, 2.31436109543, 0.0793853998184, 0.0785055160522, 2.30458402634, 0.0899381637573, 0.0907764434814, 2.31538081169, 0.0711839199066, 0.0932137966156, 2.30500364304, 0.0824285745621, 0.101722687483, 2.3137011528, 0.0595996379852, 0.104186534882, 2.30338478088, 0.0710598230362, 0.110841721296, 2.31014251709, 0.0468384027481, 0.113291591406, 2.30048537254, 0.0580337047577, 0.0651435554028, 2.28409004211, 0.111289381981, 0.0637255012989, 2.2941069603, 0.103744626045, 0.0803135335445, 2.29494667053, 0.0987540483475, 0.0815991163254, 2.28461027145, 0.106617331505, 0.095018863678, 2.29490709305, 0.0918126106262, 0.0961847305298, 2.28441023827, 0.0999777317047, 0.105958789587, 2.29312753677, 0.0809618234634, 0.107030659914, 2.2827706337, 0.0894033908844, 0.115015864372, 2.29050827026, 0.068115234375, 0.116006761789, 2.28043150902, 0.0768616199493, 0.066869020462, 2.26195669174, 0.123600244522, 0.0661894083023, 2.27335357666, 0.117929935455, 0.082360714674, 2.27355337143, 0.11355471611, 0.0825968682766, 2.26187705994, 0.119488120079, 0.0967048406601, 2.27319335938, 0.107229828835, 0.0965720117092, 2.26135730743, 0.113482117653, 0.107394337654, 2.27169370651, 0.0970058441162, 0.107041627169, 2.2599773407, 0.103688716888, 0.116256684065, 2.26965475082, 0.0848321914673, 0.115758508444, 2.25815796852, 0.0920014381409, 0.0671537220478, 2.2376241684, 0.131766557693, 0.0671882629395, 2.250020504, 0.128234744072, 0.082306355238, 2.24966049194, 0.124339222908, 0.0814875364304, 2.23698425293, 0.128029346466, 0.0957798659801, 2.248960495, 0.118647456169, 0.0943211317062, 2.23614501953, 0.122638344765, 0.105964183807, 2.24766111374, 0.109362959862, 0.104153901339, 2.23484516144, 0.113939762115, 0.11450406909, 2.24602174759, 0.0982819795609, 0.112486004829, 2.23332571983, 0.103587627411, 0.0660456717014, 2.21175193787, 0.135260105133, 0.0667706727982, 2.22482824326, 0.134130477905, 0.0801393985748, 2.22396802902, 0.130480408669, 0.0782601833344, 2.21067237854, 0.131613850594, 0.0921894013882, 2.22294855118, 0.125367999077, 0.0893777608871, 2.20947265625, 0.126748800278, 0.101602554321, 2.2216091156, 0.117330431938, 0.0983019769192, 2.20805311203, 0.119445443153, 0.109697073698, 2.22012972832, 0.107830286026, 0.10612937808, 2.20649337769, 0.110923409462, 0.0637549161911, 2.1850399971, 0.134268641472, 0.0649843215942, 2.19845628738, 0.13508939743, 0.0758484601974, 2.19719648361, 0.131351351738, 0.07317045331, 2.18364048004, 0.130390763283, 0.0858792960644, 2.19583678246, 0.126693487167, 0.0820376873016, 2.18208122253, 0.125920534134, 0.0942438840866, 2.19421720505, 0.120196461678, 0.0898072719574, 2.18026161194, 0.120265364647, 0.101775527, 2.19249773026, 0.11277961731, 0.097028285265, 2.17830228806, 0.114017486572, -0.0300747156143, 2.34833073616, -0.0456140041351, -0.0298649966717, 2.33887386322, -0.0622924566269, -0.0217690169811, 2.34423184395, -0.0656535625458, -0.0208671092987, 2.35382914543, -0.04878282547, -0.0293575227261, 2.3306760788, -0.0818036794662, -0.0224110782146, 2.3354344368, -0.0851836204529, -0.0153461992741, 2.33853387833, -0.0878516435623, -0.0135242938995, 2.34771108627, -0.0685116052628, -0.0114900171757, 2.35734820366, -0.0517077445984, -0.00498196482658, 2.3474111557, -0.0701726675034, -0.00177443027496, 2.35634851456, -0.0534776449203, -0.00804445147514, 2.33857393265, -0.0891464948654, -0.000624388456345, 2.33677434921, -0.0896100997925, 0.00370910763741, 2.34473204613, -0.0710182189941, 0.00811037421227, 2.35240983963, -0.0542960166931, -0.0287580788136, 2.36206674576, -0.0135200023651, -0.0296892225742, 2.35706853867, -0.0303355455399, -0.0194450616837, 2.36242675781, -0.0332256555557, -0.0175545215607, 2.36758518219, -0.0164400339127, -0.00903090834618, 2.36562538147, -0.0359996557236, -0.00619757175446, 2.37076377869, -0.0193519592285, 0.00172314047813, 2.36378598213, -0.0377957820892, 0.00546610355377, 2.36860466003, -0.0215872526169, 0.0126471817493, 2.35930752754, -0.0391607284546, 0.0172831714153, 2.36494541168, -0.0246127843857, -0.0254587829113, 2.36528587341, 0.0221174955368, -0.0273313224316, 2.36400604248, 0.00457262992859, -0.0152469873428, 2.36950445175, 0.00167787075043, -0.0125738680363, 2.37064433098, 0.0192830562592, -0.00304067134857, 2.37260341644, -0.00139701366425, 0.000389367341995, 2.37360334396, 0.0160737037659, 0.00940963625908, 2.37102389336, -0.00483179092407, 0.0135091543198, 2.37178373337, 0.012114405632, 0.0219819843769, 2.36698532104, -0.0084468126297, 0.0267073810101, 2.36754512787, 0.00777971744537, -0.0205760002136, 2.35894751549, 0.0594637393951, -0.0231903791428, 2.36368608475, 0.0404423475266, -0.00958660244942, 2.36984443665, 0.037033200264, -0.00633677840233, 2.36532592773, 0.0560078620911, 0.00404188036919, 2.37344312668, 0.033185005188, 0.00786638259888, 2.36956429482, 0.0515236854553, 0.0177198946476, 2.37136363983, 0.0289281606674, 0.0219971835613, 2.36778497696, 0.0466238260269, 0.031422495842, 2.36752510071, 0.023453950882, 0.0360917150974, 2.36526584625, 0.0393625497818, -0.0145088136196, 2.34567165375, 0.0943347215652, -0.0176654756069, 2.35258960724, 0.0777710676193, -0.0028757750988, 2.35902762413, 0.0743508338928, 0.000744938850403, 2.35166978836, 0.0913895368576, 0.0118120610714, 2.36296629906, 0.0701131820679, 0.0158286094666, 2.35522866249, 0.087474822998, 0.0262961089611, 2.36210656166, 0.0640661716461, 0.0305721759796, 2.35496878624, 0.0806186199188, 0.0406781435013, 2.36014723778, 0.0558321475983, 0.0451456308365, 2.35288953781, 0.0721740722656, -0.00765618681908, 2.33219575882, 0.120372653008, -0.0111556947231, 2.33919358253, 0.108230829239, 0.00447395443916, 2.34439182281, 0.106043457985, 0.00825962424278, 2.33715391159, 0.118379235268, 0.0198653638363, 2.34755134583, 0.102472901344, 0.0238718092442, 2.34015321732, 0.114891171455, 0.0347805023193, 2.34703111649, 0.0956825017929, 0.0388766229153, 2.33919334412, 0.108413338661, 0.0494574308395, 2.34469175339, 0.0872632265091, 0.0535778105259, 2.33643436432, 0.100262999535, -0.00041726231575, 2.31526088715, 0.140795111656, -0.00406005978584, 2.32417798042, 0.131260871887, 0.0120505988598, 2.32885694504, 0.129444956779, 0.0157953500748, 2.31963944435, 0.139154672623, 0.0277972221375, 2.33175587654, 0.125987052917, 0.0315910577774, 2.32237887383, 0.135746002197, 0.042815476656, 2.33099603653, 0.119246482849, 0.0465527772903, 2.32183885574, 0.128801941872, 0.0574698448181, 2.32845664024, 0.110864162445, 0.0610975325108, 2.31967926025, 0.120090126991, 0.0068087875843, 2.29522681236, 0.155396938324, 0.00322231650352, 2.30556368828, 0.148874044418, 0.0194424390793, 2.30958247185, 0.147402763367, 0.0229404270649, 2.29884576797, 0.154084324837, 0.0352028310299, 2.31214189529, 0.144061326981, 0.0385817289352, 2.30120491982, 0.150825977325, 0.0500434935093, 2.31182193756, 0.136978983879, 0.0532429218292, 2.30106520653, 0.143676519394, 0.0644243955612, 2.31006240845, 0.128026485443, 0.0674138069153, 2.29968523979, 0.134581327438, 0.0136232078075, 2.27303361893, 0.16337120533, 0.0102924108505, 2.28433036804, 0.160262942314, 0.0262378454208, 2.28752923012, 0.159093618393, 0.0292831659317, 2.27579283714, 0.162325143814, 0.0416775941849, 2.28966856003, 0.155933737755, 0.0444395542145, 2.27767205238, 0.159277915955, 0.0561064481735, 2.28970861435, 0.148793339729, 0.0585892498493, 2.27785205841, 0.152228236198, 0.0700296163559, 2.28868865967, 0.139662146568, 0.0722357928753, 2.27715229988, 0.143177270889, 0.0196266174316, 2.24962091446, 0.16391146183, 0.0167511701584, 2.2614171505, 0.164621114731, 0.0320247411728, 2.26371622086, 0.163673877716, 0.0344115495682, 2.25146007538, 0.16303396225, 0.0468172132969, 2.26533579826, 0.160751819611, 0.0487596690655, 2.25279974937, 0.160248756409, 0.0606468915939, 2.26561594009, 0.153880596161, 0.0622344017029, 2.25311946869, 0.153648734093, 0.0739952325821, 2.26519584656, 0.145034313202, 0.0752722918987, 2.25291967392, 0.145141124725, 0.0244199931622, 2.22598767281, 0.156210660934, 0.022199511528, 2.23778414726, 0.161141395569, 0.0363918542862, 2.23914384842, 0.160300016403, 0.0379139482975, 2.22688770294, 0.155366897583, 0.050216794014, 2.24016356468, 0.157662391663, 0.0511375665665, 2.22758722305, 0.15288579464, 0.0633070468903, 2.24050331116, 0.151432394981, 0.0638203322887, 2.22784733772, 0.147129774094, 0.0760300159454, 2.24046301842, 0.143405914307, 0.0762325525284, 2.22790718079, 0.139736175537, 0.0278553664684, 2.20283460617, 0.14069378376, 0.0262382924557, 2.21437120438, 0.149017691612, 0.0389268398285, 2.21483111382, 0.148128986359, 0.03968501091, 2.20283460617, 0.139738917351, 0.0514716804028, 2.21517086029, 0.145812630653, 0.0515124499798, 2.20283460617, 0.137590885162, 0.0637294054031, 2.21533107758, 0.140640377998, 0.0633360445499, 2.20283460617, 0.133057236671, 0.0758430957794, 2.21537089348, 0.134040117264, 0.0751577317715, 2.20283460617, 0.12733066082, -0.0179878473282, 2.34237289429, -0.0546032190323, -0.0211696326733, 2.33241605759, -0.0714026689529, -0.0129264891148, 2.33709430695, -0.0751775503159, -0.0084984600544, 2.34651136398, -0.0583926439285, -0.0241968631744, 2.32205867767, -0.0902099609375, -0.0172504484653, 2.32667708397, -0.0935750007629, -0.0101855993271, 2.32949638367, -0.0961604118347, -0.00469455122948, 2.33949327469, -0.0781366825104, 0.000854104757309, 2.34775090218, -0.0611274242401, 0.00351521372795, 2.33793401718, -0.0796805620193, 0.00993326306343, 2.34435200691, -0.0624182224274, -0.00288382172585, 2.32911682129, -0.0972948074341, 0.00453627109528, 2.32673740387, -0.097518324852, 0.0117137730122, 2.33397531509, -0.0803529024124, 0.0188757181168, 2.3388338089, -0.0633652210236, -0.010734796524, 2.35750794411, -0.0241692066193, -0.0144971609116, 2.3511698246, -0.039422750473, -0.00386261940002, 2.35458898544, -0.0430824756622, 0.000944256782532, 2.36024713516, -0.0276755094528, 0.00651761889458, 2.35452890396, -0.0454016923904, 0.0122599303722, 2.36018705368, -0.0306003093719, 0.0163892507553, 2.35043001175, -0.0472596883774, 0.0228489339352, 2.35552835464, -0.0329848527908, 0.0260067284107, 2.34347248077, -0.0483468770981, 0.0330742299557, 2.34719085693, -0.0340794324875, -0.00254383683205, 2.36124706268, 0.00913095474243, -0.00673794746399, 2.360227108, -0.00752341747284, 0.00588509440422, 2.36314630508, -0.0115168094635, 0.0109229981899, 2.36376595497, 0.00520491600037, 0.0180447101593, 2.36346626282, -0.0152611732483, 0.0238355696201, 2.36382627487, 0.0012720823288, 0.0292772054672, 2.35810804367, -0.0179082155228, 0.035640090704, 2.35848760605, -0.00213575363159, 0.0400463044643, 2.3496901989, -0.0199415683746, 0.0468904972076, 2.35085010529, -0.0057156085968, 0.00628700852394, 2.35904741287, 0.0419845581055, 0.00181019306183, 2.36146688461, 0.0252691507339, 0.0160207748413, 2.36372613907, 0.0213869810104, 0.0211416482925, 2.36124706268, 0.0382444858551, 0.0295966863632, 2.36358618736, 0.017315864563, 0.0352913141251, 2.36188697815, 0.0333465337753, 0.0419029891491, 2.35794782639, 0.0135327577591, 0.0480310618877, 2.35680818558, 0.028622508049, 0.0535744130611, 2.35001039505, 0.00948023796082, 0.0600660145283, 2.34893035889, 0.0239262580872, 0.0154601335526, 2.34633159637, 0.0760360956192, 0.0108493864536, 2.35358953476, 0.0593007802963, 0.0262484550476, 2.35616827011, 0.0553369522095, 0.0313043296337, 2.34943056107, 0.0717562437057, 0.0408834218979, 2.35754823685, 0.049734711647, 0.0463368594646, 2.35053014755, 0.0664976835251, 0.0539903342724, 2.35270929337, 0.0445252656937, 0.0597457885742, 2.34633159637, 0.0605360269547, 0.0663330256939, 2.34593153, 0.0383888483047, 0.0723427534103, 2.34053325653, 0.0532100200653, 0.0246777236462, 2.33097600937, 0.103492975235, 0.0200819671154, 2.33851385117, 0.0910457372665, 0.0362722575665, 2.34155297279, 0.0870218276978, 0.041115373373, 2.33339548111, 0.100318431854, 0.0516152083874, 2.34225273132, 0.0822731256485, 0.0566820800304, 2.33381509781, 0.0960170030594, 0.0652630329132, 2.33865380287, 0.0757057666779, 0.0705076754093, 2.33053636551, 0.0892275571823, 0.0780633687973, 2.33359527588, 0.0675809383392, 0.0834625959396, 2.32579755783, 0.080805182457, 0.0336418151855, 2.31460118294, 0.122972726822, 0.0292101800442, 2.32325839996, 0.113889694214, 0.0457963645458, 2.32541799545, 0.111181378365, 0.0502784252167, 2.31672024727, 0.120536804199, 0.0615015923977, 2.32581758499, 0.107132554054, 0.0660372674465, 2.31722021103, 0.116601586342, 0.0754451751709, 2.32263851166, 0.100401520729, 0.0800410509109, 2.31454086304, 0.109667420387, 0.088507860899, 2.31790018082, 0.0921357870102, 0.0931671857834, 2.31024217606, 0.101234197617, 0.0420549213886, 2.29490709305, 0.136801958084, 0.0379359722137, 2.30510377884, 0.130643725395, 0.0545245409012, 2.30714321136, 0.128480911255, 0.0584979057312, 2.29686641693, 0.134905099869, 0.0702530145645, 2.30778312683, 0.124681591988, 0.0741122066975, 2.2976064682, 0.131260037422, 0.0842607319355, 2.30558371544, 0.117607831955, 0.0880695581436, 2.29588651657, 0.124117970467, 0.0974081754684, 2.30196475983, 0.108897686005, 0.10119843483, 2.29292750359, 0.115227222443, 0.0496188402176, 2.27291345596, 0.144177317619, 0.0459617078304, 2.28413033485, 0.141346931458, 0.0621612370014, 2.28598952293, 0.139700651169, 0.0654776096344, 2.27461314201, 0.142758131027, 0.0775789320469, 2.28678941727, 0.136224865913, 0.0806168317795, 2.27545261383, 0.139463424683, 0.0914332568645, 2.28552985191, 0.129090309143, 0.094317317009, 2.27461338043, 0.132418513298, 0.104505896568, 2.28323030472, 0.120126366615, 0.107298016548, 2.27291369438, 0.12349820137, 0.0560360848904, 2.24960064888, 0.144290208817, 0.0529893636703, 2.26135730743, 0.145192027092, 0.0684103667736, 2.26287651062, 0.143968582153, 0.0709220170975, 2.25090026855, 0.143223285675, 0.0831898450851, 2.26373624802, 0.140863656998, 0.085261464119, 2.25169992447, 0.140312790871, 0.0966869592667, 2.26323652267, 0.133995771408, 0.0985078513622, 2.25152015686, 0.133714914322, 0.109542697668, 2.26209688187, 0.125246405602, 0.111207813025, 2.25082015991, 0.125273704529, 0.0610085725784, 2.22598767281, 0.136333465576, 0.0587215125561, 2.2377641201, 0.141371011734, 0.0729757547379, 2.23880386353, 0.140413284302, 0.0745347440243, 2.22672748566, 0.135429620743, 0.0867954194546, 2.23950362206, 0.137698411942, 0.0877555608749, 2.22724723816, 0.13290822506, 0.0997455120087, 2.2395234108, 0.131469607353, 0.100365310907, 2.22734737396, 0.127153038979, 0.112260907888, 2.23918390274, 0.123484134674, 0.112669736147, 2.22724723816, 0.119780659676, 0.0644935071468, 2.20283460617, 0.120710611343, 0.0628600120544, 2.21437120438, 0.129076838493, 0.0755620002747, 2.21475100517, 0.128163099289, 0.0763231515884, 2.20283460617, 0.119755506516, 0.0881055593491, 2.215031147, 0.125829935074, 0.0881505906582, 2.20283460617, 0.117607474327, 0.100332856178, 2.21511077881, 0.120658040047, 0.0999742746353, 2.20283460617, 0.113073945045, 0.112401843071, 2.21509122849, 0.114066720009, 0.11179587245, 2.20283460617, 0.107347488403, 0.105196475983, 2.29322719574, -0.094713807106, 0.106314301491, 2.30008530617, -0.0919370651245, 0.0923212766647, 2.30794286728, -0.0980091094971, 0.0915161371231, 2.30172491074, -0.100525379181, 0.0771670341492, 2.31058239937, -0.106071949005, 0.0776295363903, 2.31618046761, -0.103800058365, 0.0778359174728, 2.32097911835, -0.100713610649, 0.0926505625248, 2.31338167191, -0.094647526741, 0.106747150421, 2.30612373352, -0.088302731514, 0.105810880661, 2.31052231789, -0.0829532146454, 0.0920278131962, 2.31724023819, -0.0895951986313, 0.0775299966335, 2.32425785065, -0.0959980487823, 0.0769679844379, 2.32669734955, -0.0904678106308, 0.0909290015697, 2.32025933266, -0.0836970806122, 0.104189753532, 2.31412124634, -0.0767461061478, 0.128581166267, 2.27789211273, -0.0815653800964, 0.13014408946, 2.2858300209, -0.0781742334366, 0.118909478188, 2.29268741608, -0.0853023529053, 0.117539525032, 2.28526973724, -0.0883727073669, 0.119408100843, 2.29928565025, -0.081399679184, 0.130671590567, 2.29290771484, -0.0740097761154, 0.129127830267, 2.29830598831, -0.0682977437973, 0.118164539337, 2.30420398712, -0.0758330821991, 0.116049617529, 2.30830287933, -0.0694341659546, 0.126548528671, 2.3028447628, -0.0618121623993, 0.146902799606, 2.26313638687, -0.0668066740036, 0.148680716753, 2.27171373367, -0.0627192258835, 0.140055507421, 2.27887177467, -0.0706233978271, 0.138357013464, 2.27059412003, -0.0743554830551, 0.140575915575, 2.28634977341, -0.0662044286728, 0.149159550667, 2.27953147888, -0.0580549240112, 0.147040367126, 2.285769701, -0.0522358417511, 0.138740152121, 2.29218769073, -0.0604109764099, 0.135725975037, 2.29722595215, -0.0539304018021, 0.143622040749, 2.2912478447, -0.0458396673203, 0.160447567701, 2.24794149399, -0.0509451627731, 0.162220805883, 2.25689840317, -0.0461300611496, 0.156056642532, 2.26437616348, -0.05453145504, 0.154254406691, 2.25557899475, -0.0589820146561, 0.156460523605, 2.27245378494, -0.0496324300766, 0.162517547607, 2.26517629623, -0.0410083532333, 0.15986135602, 2.27213406563, -0.0352740287781, 0.154067635536, 2.27907180786, -0.0438357591629, 0.150276422501, 2.28496980667, -0.037590265274, 0.155728578568, 2.27841186523, -0.0292332172394, 0.169501423836, 2.23260593414, -0.0344893932343, 0.171061724424, 2.24166297913, -0.0289651155472, 0.167210072279, 2.24932050705, -0.0375845432281, 0.165518045425, 2.24028348923, -0.042760014534, 0.167368859053, 2.25775814056, -0.0322543382645, 0.171052545309, 2.25020027161, -0.0234414339066, 0.167903870344, 2.25767803192, -0.0179191827774, 0.164460301399, 2.26499605179, -0.0266138315201, 0.160018444061, 2.27161407471, -0.0208188295364, 0.163185715675, 2.26463603973, -0.0123977661133, 0.174350351095, 2.21731042862, -0.0179471969604, 0.175500780344, 2.2262878418, -0.0117825269699, 0.173812866211, 2.23396539688, -0.0203410387039, 0.172433584929, 2.22492837906, -0.026197552681, 0.173607200384, 2.24256277084, -0.0146405696869, 0.175071120262, 2.23488521576, -0.00592398643494, 0.171481460333, 2.24274277687, -0.000677824020386, 0.170231342316, 2.25026035309, -0.00925254821777, 0.165270239115, 2.25749826431, -0.00402057170868, 0.166311830282, 2.25022029877, 0.00426197052002, 0.175280332565, 2.20235490799, -0.0018265247345, 0.175834745169, 2.21107196808, 0.00485908985138, 0.176162242889, 2.2186498642, -0.00335919857025, 0.175287246704, 2.20979237556, -0.00980234146118, 0.175482600927, 2.22720718384, 0.00263786315918, 0.174879789352, 2.21956968307, 0.0109729766846, 0.17090678215, 2.22764730453, 0.0159429311752, 0.171693563461, 2.23518490791, 0.00774192810059, 0.166350007057, 2.24288272858, 0.0123994350433, 0.165424436331, 2.23548460007, 0.0203410387039, 0.172577410936, 2.1879594326, 0.0133645534515, 0.172360748053, 2.19631671906, 0.020401597023, 0.174555063248, 2.20361471176, 0.0128026008606, 0.174365162849, 2.19507694244, 0.00591707229614, 0.173301458359, 2.21201181412, 0.019010424614, 0.170785427094, 2.20457410812, 0.0266790390015, 0.166492938995, 2.21267199516, 0.0314366817474, 0.169160097837, 2.2201294899, 0.0238624811172, 0.163575172424, 2.22806715965, 0.0280363559723, 0.160841822624, 2.22068929672, 0.0354348421097, 0.166527748108, 2.17438340187, 0.0271182060242, 0.16537630558, 2.18230080605, 0.0342864990234, 0.169288724661, 2.18919897079, 0.0275861024857, 0.169953078032, 2.18106126785, 0.0204528570175, 0.167370438576, 2.197296381, 0.0339069366455, 0.163094729185, 2.19021844864, 0.0406230688095, 0.15855333209, 2.19817614555, 0.0452964305878, 0.162944346666, 2.2053539753, 0.0386025905609, 0.157264083624, 2.21337151527, 0.0424857139587, 0.152881830931, 2.20617389679, 0.04913854599, 0.157417297363, 2.16186714172, 0.038926243782, 0.155178099871, 2.16930484772, 0.0459554195404, 0.160660266876, 2.17564296722, 0.0404326915741, 0.162337183952, 2.16798496246, 0.0332971811295, 0.157996505499, 2.18336057663, 0.0467562675476, 0.152114272118, 2.17680263519, 0.0522350072861, 0.147400707006, 2.18446016312, 0.0570158958435, 0.153359055519, 2.191198349, 0.0514554977417, 0.147734761238, 2.19909596443, 0.0553424358368, 0.141862601042, 2.19219779968, 0.0610474348068, 0.145532101393, 2.15065050125, 0.0482805967331, 0.142063498497, 2.15760827065, 0.0548501014709, 0.148966789246, 2.16326642036, 0.0507843494415, 0.1518034935, 2.15608882904, 0.0439417362213, 0.145486086607, 2.17054438591, 0.0569882392883, 0.13815048337, 2.16466617584, 0.0609441995621, 0.133348494768, 2.17184400558, 0.0660879611969, 0.140717506409, 2.17800211906, 0.0619144439697, 0.135305166245, 2.18552017212, 0.066202044487, 0.128101944923, 2.17910194397, 0.0707564353943, 0.131433486938, 2.14075350761, 0.0551071166992, 0.126619935036, 2.14731121063, 0.0608984231949, 0.134505361319, 2.15236997604, 0.0580824613571, 0.138638347387, 2.14561200142, 0.0518789291382, 0.130145907402, 2.15916776657, 0.0640317201614, 0.121806621552, 2.15386962891, 0.0666853189468, 0.116993665695, 2.16042757034, 0.0724632740021, 0.125332713127, 2.16604590416, 0.0694727897644, 0.120292901993, 2.17298364639, 0.0746595859528, 0.112180918455, 2.16698551178, 0.0782371759415, 0.118653535843, 2.26995420456, -0.110153436661, 0.119771242142, 2.27687263489, -0.107376933098, 0.107489734888, 2.28365039825, -0.114405155182, 0.106684535742, 2.27733230591, -0.116921305656, 0.0941343307495, 2.28513002396, -0.123463630676, 0.094596773386, 2.290828228, -0.121191740036, 0.0948032140732, 2.29576683044, -0.118105053902, 0.10781905055, 2.28918862343, -0.111043691635, 0.120204299688, 2.28297042847, -0.103742599487, 0.119268029928, 2.28740930557, -0.098393201828, 0.107196211815, 2.29312753677, -0.105991244316, 0.0944972336292, 2.29918551445, -0.113389492035, 0.0939350128174, 2.3018245697, -0.107859492302, 0.106097579002, 2.29626655579, -0.100093364716, 0.1176469028, 2.29100799561, -0.0921860933304, 0.1391299963, 2.25575876236, -0.0953261852264, 0.140693068504, 2.2636961937, -0.0919351577759, 0.130829691887, 2.27039432526, -0.0998648405075, 0.129459857941, 2.26291656494, -0.102935314178, 0.131328314543, 2.27701234818, -0.0959624052048, 0.141220539808, 2.27077436447, -0.087770819664, 0.139676660299, 2.27617287636, -0.0820586681366, 0.130084723234, 2.2819108963, -0.0903955698013, 0.127969771624, 2.28594946861, -0.0839967727661, 0.137097388506, 2.28071117401, -0.0755730867386, 0.155168324709, 2.24100351334, -0.0791767835617, 0.156946182251, 2.24958062172, -0.0750894546509, 0.149389266968, 2.25673866272, -0.0836547613144, 0.14769077301, 2.24846076965, -0.0873864889145, 0.149909734726, 2.2642159462, -0.0792354345322, 0.157425045967, 2.25739836693, -0.0704250335693, 0.155305862427, 2.26363658905, -0.0646060705185, 0.148073673248, 2.27005434036, -0.0734421014786, 0.145059794188, 2.27509307861, -0.0669614076614, 0.151887685061, 2.26911473274, -0.0582096576691, 0.166981339455, 2.22582769394, -0.0621860027313, 0.168754577637, 2.2347650528, -0.0573709011078, 0.163392066956, 2.24224257469, -0.0663061141968, 0.161589831114, 2.23344564438, -0.070756316185, 0.163795948029, 2.25032043457, -0.0614070892334, 0.169051378965, 2.24304246902, -0.0522490739822, 0.166394919157, 2.25000047684, -0.0465148687363, 0.161403030157, 2.25693869591, -0.0556101799011, 0.157611578703, 2.26283693314, -0.0493646860123, 0.162262201309, 2.25627851486, -0.0404739379883, 0.17478120327, 2.21047210693, -0.0448352098465, 0.176341563463, 2.21952962875, -0.0393105745316, 0.173061698675, 2.22718763351, -0.0483502149582, 0.171369671822, 2.21815013885, -0.053525686264, 0.173220485449, 2.23562502861, -0.0430200099945, 0.176332324743, 2.22806715965, -0.0337870121002, 0.173183649778, 2.23554515839, -0.0282646417618, 0.170311927795, 2.24286270142, -0.037379860878, 0.165869921446, 2.24948048592, -0.0315845012665, 0.16846549511, 2.24250268936, -0.0227434635162, 0.178780436516, 2.19517707825, -0.0276048183441, 0.179930835962, 2.20415449142, -0.021439909935, 0.178622037172, 2.21183204651, -0.0303183794022, 0.177242726088, 2.20279455185, -0.0361747741699, 0.178416341543, 2.22042942047, -0.0246180295944, 0.179501414299, 2.21275162697, -0.0155813694, 0.175911664963, 2.2206094265, -0.0103352069855, 0.175040364265, 2.22812700272, -0.0192300081253, 0.170079231262, 2.23536491394, -0.0139980316162, 0.170742034912, 2.22808694839, -0.00539541244507, 0.179191857576, 2.18022155762, -0.0109755992889, 0.179746359587, 2.18893909454, -0.00428986549377, 0.180296391249, 2.19651651382, -0.0127416849136, 0.179421395063, 2.18765926361, -0.0191849470139, 0.179616719484, 2.2050743103, -0.00674474239349, 0.178791642189, 2.1974363327, 0.00182402133942, 0.174818366766, 2.20551395416, 0.00679397583008, 0.175827741623, 2.21305179596, -0.00164067745209, 0.170484155416, 2.2207493782, 0.00301682949066, 0.169336080551, 2.21335124969, 0.0111919641495, 0.17622795701, 2.16582584381, 0.00457119941711, 0.176011294127, 2.17418336868, 0.0116082429886, 0.178308516741, 2.18148136139, 0.00384891033173, 0.178118556738, 2.17294406891, -0.00303685665131, 0.177054911852, 2.18987870216, 0.0100567340851, 0.17443588376, 2.18244123459, 0.0178855657578, 0.17014336586, 2.19053840637, 0.0226434469223, 0.172913640738, 2.19799613953, 0.0149086713791, 0.167328685522, 2.20593380928, 0.0190825462341, 0.164492368698, 2.19855594635, 0.0266414880753, 0.170101046562, 2.15224981308, 0.0185550451279, 0.168949574232, 2.16016769409, 0.0257232189178, 0.172882199287, 2.16706562042, 0.0189217329025, 0.173546552658, 2.1589281559, 0.0117886066437, 0.170963972807, 2.17516303062, 0.0252425670624, 0.166668057442, 2.16808509827, 0.0320599079132, 0.162126660347, 2.1760430336, 0.0367332696915, 0.166537672281, 2.18322062492, 0.0299382209778, 0.160857647657, 2.19123792648, 0.0338214635849, 0.156455159187, 2.18404054642, 0.0405753850937, 0.161023736, 2.13973379135, 0.0304948091507, 0.158784657717, 2.14717149734, 0.0375238656998, 0.164241045713, 2.15350961685, 0.0319459438324, 0.165917873383, 2.14585208893, 0.0248101949692, 0.161577224731, 2.16122722626, 0.0382696390152, 0.155720561743, 2.15466928482, 0.0438034534454, 0.151007205248, 2.16232681274, 0.0485845804214, 0.156939744949, 2.16906499863, 0.04296875, 0.151315540075, 2.17696261406, 0.0468559265137, 0.145469099283, 2.17006468773, 0.0526158809662, 0.149208754301, 2.12851715088, 0.0399096012115, 0.145740151405, 2.13549518585, 0.0464788675308, 0.152608275414, 2.14113330841, 0.0423904657364, 0.155445069075, 2.13395547867, 0.0355478525162, 0.149127602577, 2.14841127396, 0.0485939979553, 0.141827195883, 2.14253282547, 0.0525730848312, 0.137024998665, 2.14971065521, 0.0577169656754, 0.144358992577, 2.15586900711, 0.0535204410553, 0.13894662261, 2.16340661049, 0.0578081607819, 0.131778597832, 2.1569685936, 0.0623853206635, 0.135157346725, 2.11861991882, 0.0467547178268, 0.130344033241, 2.1251783371, 0.0525459051132, 0.138208031654, 2.13023638725, 0.0497236251831, 0.142340779305, 2.12347888947, 0.0435199737549, 0.133848637342, 2.1370344162, 0.0556727647781, 0.125530689955, 2.13173604012, 0.0583326816559, 0.120717763901, 2.13829421997, 0.064110994339, 0.129035443068, 2.14391255379, 0.0611138343811, 0.123995512724, 2.15085029602, 0.0663006305695, 0.115904927254, 2.14485239983, 0.0698847770691, -0.00784552097321, 2.33957338333, -0.0616725683212, 0.00294283032417, 2.32543754578, -0.0704102516174, 0.00666511058807, 2.32797694206, -0.0697555541992, -0.0030452311039, 2.34291267395, -0.0610411167145, 0.0146504640579, 2.30680322647, -0.0769513845444, 0.0174602270126, 2.30900263786, -0.0765931606293, 0.0203022956848, 2.31046199799, -0.0756167173386, 0.0104397833347, 2.32961654663, -0.0685460567474, 0.00183734297752, 2.34511184692, -0.0598396062851, 0.0143194198608, 2.32979631424, -0.0664166212082, 0.00688433647156, 2.34529161453, -0.0576587915421, 0.0232087671757, 2.31054234505, -0.0734550952911, 0.0261474847794, 2.309902668, -0.0706950426102, 0.018251657486, 2.32915687561, -0.0637921094894, 0.0120135545731, 2.34457206726, -0.0551197528839, -0.0238800048828, 2.35276937485, -0.0341151952744, -0.0167953670025, 2.34761118889, -0.0488805770874, -0.0105857849121, 2.35226964951, -0.0486255884171, -0.0164423882961, 2.35780787468, -0.0334131717682, -0.00424516201019, 2.35530877113, -0.0476934909821, -0.00882777571678, 2.36146688461, -0.0324891805649, 0.00235760211945, 2.35558843613, -0.0456782579422, -0.000859260559082, 2.3617067337, -0.0304412841797, 0.0090913772583, 2.35418891907, -0.0429400205612, 0.0072862803936, 2.35976743698, -0.0275111198425, -0.0335528552532, 2.35466885567, 0.0040078163147, -0.0290730893612, 2.35566854477, -0.0175050497055, -0.0211009979248, 2.35990762711, -0.0152369737625, -0.0252628028393, 2.35878753662, 0.00691282749176, -0.0129308700562, 2.36290669441, -0.0130498409271, -0.0167692005634, 2.36130666733, 0.00987255573273, -0.00436493754387, 2.36276626587, -0.0104042291641, -0.00786897540092, 2.36096668243, 0.0127099752426, 0.00439915060997, 2.36102700233, -0.00752902030945, 0.00123465061188, 2.35906744003, 0.0155953168869, -0.0429644286633, 2.34895038605, 0.0570454597473, -0.0384977757931, 2.35434889793, 0.0285699367523, -0.0296288728714, 2.35742783546, 0.0319201946259, -0.033506244421, 2.35076999664, 0.0604870319366, -0.0205574035645, 2.35902762413, 0.0350730419159, -0.0238584280014, 2.35178995132, 0.0629314184189, -0.0110811889172, 2.35790777206, 0.0375469923019, -0.0138312578201, 2.35039019585, 0.0641150474548, -0.00140246748924, 2.35602831841, 0.0391325950623, -0.00361439585686, 2.34807109833, 0.0643849372864, -0.0474788248539, 2.33185577393, 0.104917883873, -0.0460095107555, 2.34013319016, 0.0841656923294, -0.036201864481, 2.34197282791, 0.0865203142166, -0.0375322401524, 2.33371520042, 0.106230258942, -0.0262348651886, 2.34271240234, 0.0880702733994, -0.0274631083012, 2.33447504044, 0.106727719307, -0.015949010849, 2.34131288528, 0.0879454612732, -0.0171484947205, 2.33299541473, 0.105594992638, -0.00550374388695, 2.33891367912, 0.0868947505951, -0.00671121478081, 2.33041620255, 0.103626132011, -0.0458438098431, 2.31262159348, 0.130388498306, -0.0472187697887, 2.32255840302, 0.119507551193, -0.0373141467571, 2.32423782349, 0.120069384575, -0.0361175239086, 2.31402111053, 0.130434036255, -0.0273191928864, 2.3249578476, 0.119691491127, -0.0263080596924, 2.314661026, 0.129435181618, -0.0171436071396, 2.32377815247, 0.117434024811, -0.0163326263428, 2.31378126144, 0.126348376274, -0.00687780976295, 2.32163906097, 0.114237308502, -0.00627407431602, 2.31214189529, 0.122216939926, -0.0415680408478, 2.29584693909, 0.144580245018, -0.0439686775208, 2.30398416519, 0.138485908508, -0.0345125198364, 2.30486392975, 0.138478398323, -0.0324895381927, 2.29600644112, 0.144732952118, -0.0249346792698, 2.30518388748, 0.137364029884, -0.0232169628143, 2.29586648941, 0.143745422363, -0.0151135027409, 2.30440425873, 0.13403570652, -0.013555765152, 2.2950668335, 0.140476346016, -0.0051706135273, 2.30308437347, 0.129600524902, -0.00370025634766, 2.29394721985, 0.136066794395, -0.0350989997387, 2.27877163887, 0.153134822845, -0.0386154949665, 2.28736925125, 0.149452805519, -0.0300387144089, 2.28676939011, 0.149728775024, -0.0271489918232, 2.27727222443, 0.153487086296, -0.0211730003357, 2.28606963158, 0.148847103119, -0.0187933743, 2.27595233917, 0.1526876688, -0.0117289721966, 2.28522992134, 0.145649909973, -0.00962674617767, 2.27501296997, 0.149585366249, -0.00199592113495, 2.2842900753, 0.141295194626, -5.45382499695e-05, 2.27423334122, 0.145331740379, -0.0263096392155, 2.26177692413, 0.156991839409, -0.0310056209564, 2.27017450333, 0.155658006668, -0.0238090455532, 2.26767539978, 0.156029820442, -0.0199953317642, 2.25813794136, 0.157320737839, -0.0160690248013, 2.26563596725, 0.155286312103, -0.0129781961441, 2.2552986145, 0.156602978706, -0.00724253058434, 2.26453614235, 0.152312040329, -0.00455567240715, 2.25395917892, 0.153791308403, 0.00212725996971, 2.2638964653, 0.148222565651, 0.00456953048706, 2.25339984894, 0.149933218956, -0.0150067508221, 2.24616193771, 0.155967593193, -0.0209854543209, 2.25369930267, 0.157105088234, -0.0156844556332, 2.24884080887, 0.157323241234, -0.0108527839184, 2.23990345001, 0.156001210213, -0.00949916243553, 2.24504208565, 0.156597852707, -0.00561022758484, 2.23506498337, 0.155231833458, -0.00154531002045, 2.24342250824, 0.153985500336, 0.0018093585968, 2.23302555084, 0.152855992317, 0.00729289650917, 2.24286270142, 0.150429606438, 0.0103174448013, 2.23240566254, 0.149676918983, -0.000983476638794, 2.23326539993, 0.149817109108, -0.00834801793098, 2.23928356171, 0.153548359871, -0.00547683238983, 2.23150587082, 0.153318524361, 0.000467032194138, 2.22380852699, 0.149238109589, -0.00128972530365, 2.22548770905, 0.152464985847, 0.00348410010338, 2.21645069122, 0.148257613182, 0.00552901625633, 2.22294855118, 0.150364756584, 0.00963449478149, 2.21329164505, 0.146473646164, 0.013663649559, 2.22216916084, 0.147641181946, 0.0173515975475, 2.21225166321, 0.144287824631, 0.0155752003193, 2.22372865677, 0.138996005058, 0.00711286067963, 2.22824692726, 0.144742250443, 0.00700211524963, 2.21695041656, 0.1437240839, 0.0138330459595, 2.21051216125, 0.137493252754, 0.00873291492462, 2.20811319351, 0.142570137978, 0.0142191946507, 2.20013570786, 0.136142730713, 0.014146655798, 2.20421409607, 0.141144394875, 0.0188620090485, 2.19541692734, 0.135095953941, 0.0214019715786, 2.20277452469, 0.139582514763, 0.0256330668926, 2.19353747368, 0.134201288223, -0.0573118925095, 2.31921958923, -0.0868861675262, -0.0396327972412, 2.32487773895, -0.0926288366318, -0.0410091876984, 2.32801675797, -0.0885955095291, -0.0587764680386, 2.32249832153, -0.0818086862564, -0.0222207009792, 2.32911682129, -0.0974254608154, -0.0235243141651, 2.33221554756, -0.0945539474487, -0.0241619348526, 2.33485484123, -0.0913553237915, -0.041543841362, 2.33065605164, -0.0843876600266, -0.0592023134232, 2.32529783249, -0.0766870975494, -0.040395617485, 2.33241581917, -0.0798530578613, -0.057550817728, 2.32713699341, -0.0714443922043, -0.0234676897526, 2.33663463593, -0.0875397920609, -0.0221077203751, 2.33789396286, -0.0833715200424, -0.0384055674076, 2.3336353302, -0.0751200914383, -0.054860830307, 2.32859706879, -0.0663088560104, -0.0934467613697, 2.30338478088, -0.0704597234726, -0.0755245685577, 2.3123216629, -0.0796476602554, -0.077108502388, 2.31572055817, -0.0735232830048, -0.0951790809631, 2.30692338943, -0.0634194612503, -0.07741355896, 2.31863999367, -0.067459821701, -0.0954113900661, 2.31012248993, -0.0565451383591, -0.0751615464687, 2.32085943222, -0.0616847276688, -0.092643648386, 2.31268143654, -0.0501575469971, -0.0716309547424, 2.32305860519, -0.0564013719559, -0.0883760750294, 2.31542062759, -0.0444680452347, -0.125390380621, 2.28117108345, -0.0480694770813, -0.110254526138, 2.29254770279, -0.0595957040787, -0.11216211319, 2.29666662216, -0.0521322488785, -0.127502679825, 2.28556966782, -0.0404781103134, -0.112428635359, 2.30042552948, -0.0448322296143, -0.127898722887, 2.28974819183, -0.0330010652542, -0.109413385391, 2.30342459679, -0.0378596782684, -0.124862670898, 2.29344749451, -0.0257524251938, -0.104756951332, 2.30632352829, -0.0313203334808, -0.120110154152, 2.29690647125, -0.0186179876328, -0.148807644844, 2.25835800171, -0.0257771015167, -0.13829767704, 2.26975464821, -0.0368950366974, -0.140646129847, 2.27435302734, -0.0292738676071, -0.151364684105, 2.26307654381, -0.0181558132172, -0.141254752874, 2.27887177467, -0.0217306613922, -0.152198791504, 2.26791524887, -0.0105867385864, -0.138383388519, 2.28327035904, -0.0143437385559, -0.149586826563, 2.27295351028, -0.00312209129333, -0.133772462606, 2.2875893116, -0.00703525543213, -0.145251750946, 2.27811193466, 0.00429046154022, -0.162464529276, 2.23616480827, -0.00323581695557, -0.156752079725, 2.24710130692, -0.014421582222, -0.159431308508, 2.25192022324, -0.00676143169403, -0.165181368589, 2.24106311798, 0.00448668003082, -0.160433977842, 2.25699806213, 0.000864863395691, -0.166288226843, 2.24634170532, 0.0121827125549, -0.15808364749, 2.26259684563, 0.00842475891113, -0.164175629616, 2.25231981277, 0.0198251008987, -0.154056668282, 2.26845479012, 0.0159513950348, -0.16045320034, 2.25867795944, 0.027440905571, -0.168623685837, 2.21605062485, 0.017170548439, -0.166278749704, 2.22580766678, 0.0073709487915, -0.168950408697, 2.23076629639, 0.0151668787003, -0.171154111624, 2.22100901604, 0.0250611305237, -0.170089840889, 2.23614501953, 0.0229250192642, -0.17222520709, 2.2263674736, 0.0328954458237, -0.168164610863, 2.24230289459, 0.03060734272, -0.170377373695, 2.23254585266, 0.0406175851822, -0.164707064629, 2.24888086319, 0.0382521152496, -0.167070358992, 2.23914384842, 0.048283457756, -0.170321553946, 2.19827604294, 0.0337604284286, -0.169927865267, 2.2068734169, 0.0259337425232, -0.172207206488, 2.21171188354, 0.0339514017105, -0.172222018242, 2.20293474197, 0.0419579744339, -0.173080176115, 2.21697044373, 0.0418976545334, -0.172763824463, 2.20803308487, 0.0500637292862, -0.171140521765, 2.22304868698, 0.0497009754181, -0.170588880777, 2.21399116516, 0.0579859018326, -0.167794466019, 2.22956681252, 0.0574331283569, -0.167055606842, 2.22036981583, 0.065816283226, -0.168656080961, 2.18280076981, 0.0468866825104, -0.169934034348, 2.1902384758, 0.04075050354, -0.171309828758, 2.19473719597, 0.0492012500763, -0.169392466545, 2.18715953827, 0.0556290149689, -0.171384811401, 2.19969582558, 0.0575261116028, -0.168901175261, 2.19197797775, 0.0642096996307, -0.168857783079, 2.205493927, 0.0655996799469, -0.165953874588, 2.19765615463, 0.0724669694901, -0.165029525757, 2.21175193787, 0.0735476016998, -0.161778777838, 2.20377445221, 0.0805624723434, -0.163020133972, 2.16984462738, 0.0564849376678, -0.166377693415, 2.1759827137, 0.0521514415741, -0.166390925646, 2.18024158478, 0.0611892938614, -0.162234187126, 2.17406320572, 0.0658048391342, -0.165270924568, 2.1849603653, 0.0700387954712, -0.160434126854, 2.17868208885, 0.0749266147614, -0.16188454628, 2.19051837921, 0.0785114765167, -0.15660533309, 2.18410038948, 0.083651304245, -0.157365053892, 2.19649648666, 0.0867956876755, -0.151762217283, 2.18991851807, 0.0921777486801, -0.152764201164, 2.15980768204, 0.0620454549789, -0.15850353241, 2.16444635391, 0.0598266124725, -0.156852215528, 2.16864514351, 0.0693984031677, -0.150182276964, 2.16404628754, 0.0718377828598, -0.15433177352, 2.17320394516, 0.078785777092, -0.146883606911, 2.16854500771, 0.0814735889435, -0.150072693825, 2.17844223976, 0.0878043174744, -0.142152070999, 2.1736035347, 0.09079682827, -0.144944190979, 2.184040308, 0.0966384410858, -0.136704325676, 2.1789021492, 0.0999640226364, -0.13738489151, 2.1528096199, 0.0624915361404, -0.145738571882, 2.15594911575, 0.0630093812943, -0.142161250114, 2.16026759148, 0.0729904174805, -0.132723122835, 2.15720868111, 0.0726153850555, -0.138009756804, 2.16474628448, 0.0828471183777, -0.127605289221, 2.1616871357, 0.082638502121, -0.132709503174, 2.16958475113, 0.0924558639526, -0.121574729681, 2.16632556915, 0.092459321022, -0.126834958792, 2.17458319664, 0.101940631866, -0.115088015795, 2.17106437683, 0.102179408073, -0.117253035307, 2.14809131622, 0.0571841001511, -0.127661377192, 2.1502904892, 0.0602649450302, -0.121801137924, 2.15478944778, 0.0704723596573, -0.110137104988, 2.15268993378, 0.0674448013306, -0.115565299988, 2.15926790237, 0.0805794000626, -0.102707594633, 2.15720868111, 0.0775947570801, -0.10857796669, 2.1637866497, 0.0904858112335, -0.094650387764, 2.16158699989, 0.0875234603882, -0.101215213537, 2.1683049202, 0.100291848183, -0.0862795114517, 2.16592597961, 0.097341299057, -0.0311402082443, 2.3264374733, -0.0435882806778, -0.0208865106106, 2.32605743408, -0.0526708364487, -0.0177894532681, 2.33151578903, -0.0553992986679, -0.0277458131313, 2.33399486542, -0.0455247163773, -0.00959873199463, 2.32831668854, -0.063561797142, -0.00702974200249, 2.33107614517, -0.0674068927765, -0.00381556153297, 2.33413529396, -0.0701959133148, -0.0140064954758, 2.33669400215, -0.057361125946, -0.0236474573612, 2.34061336517, -0.0466635227203, -0.00887009501457, 2.34135293961, -0.0577353239059, -0.0180880725384, 2.34563159943, -0.0463637113571, 0.000701904296875, 2.33795380592, -0.0709125995636, 0.00587365031242, 2.34213280678, -0.0706005096436, -0.00303840637207, 2.34577155113, -0.0573709011078, -0.0117619037628, 2.34997034073, -0.0454528331757, -0.0489026010036, 2.33021593094, -0.025790810585, -0.040392011404, 2.32839679718, -0.0349545478821, -0.0371827185154, 2.33703422546, -0.0366852283478, -0.0461317002773, 2.33931350708, -0.0273998975754, -0.033086180687, 2.34467172623, -0.037572145462, -0.0422118902206, 2.34763121605, -0.0281863212585, -0.0271542072296, 2.35057020187, -0.0369508266449, -0.035946726799, 2.3546090126, -0.0274684429169, -0.0203630626202, 2.35540890694, -0.0354015827179, -0.0286175012589, 2.36052727699, -0.0256762504578, -0.063903093338, 2.33017611504, -0.00460648536682, -0.0567580759525, 2.33079624176, -0.0156382322311, -0.0543845891953, 2.34037327766, -0.0168991088867, -0.0618605613708, 2.34019327164, -0.0053528547287, -0.0506536960602, 2.34921050072, -0.0173783302307, -0.0582748353481, 2.34949040413, -0.00546026229858, -0.0441178977489, 2.35690832138, -0.0165622234344, -0.0515880584717, 2.35742783546, -0.00433206558228, -0.0363028347492, 2.36366605759, -0.0147330760956, -0.043531447649, 2.36416602135, -0.00204992294312, -0.0755701959133, 2.32553768158, 0.0180962085724, -0.070130199194, 2.32831668854, 0.0067423582077, -0.0683461427689, 2.33861398697, 0.00667464733124, -0.0739541053772, 2.33603453636, 0.0186910629272, -0.0649030208588, 2.34817075729, 0.00715160369873, -0.0706025063992, 2.34577178955, 0.0197447538376, -0.0581284463406, 2.35630846024, 0.00867772102356, -0.0637665688992, 2.35402917862, 0.0216734409332, -0.0498795211315, 2.36312627792, 0.011298418045, -0.0553883016109, 2.36088705063, 0.0246336460114, -0.0852402448654, 2.31630039215, 0.0420426130295, -0.080579996109, 2.32159900665, 0.0298155546188, -0.0791249275208, 2.33203554153, 0.0311809778214, -0.0839414596558, 2.3264374733, 0.0442941188812, -0.075882434845, 2.3416929245, 0.0329312086105, -0.0808279514313, 2.33575439453, 0.0468724966049, -0.0690451562405, 2.34985041618, 0.0353899002075, -0.0740568637848, 2.34353232384, 0.0500197410583, -0.0605976581573, 2.35662817955, 0.0387599468231, -0.0656090080738, 2.35005044937, 0.0539033412933, -0.0929577052593, 2.3036441803, 0.0660580396652, -0.0894182622433, 2.31016254425, 0.0542877912521, -0.0882317125797, 2.31983947754, 0.0574251413345, -0.0918097198009, 2.31284165382, 0.0699894428253, -0.0852216482162, 2.32869672775, 0.0608304738998, -0.0888464152813, 2.32119894028, 0.0741270780563, -0.0785335302353, 2.33599448204, 0.0646812915802, -0.0822295844555, 2.32801675797, 0.078607916832, -0.0701166391373, 2.34217262268, 0.0690821409225, -0.0738518536091, 2.33383512497, 0.083456158638, -0.0976329147816, 2.29100799561, 0.0866085290909, -0.095721244812, 2.29718589783, 0.0769163370132, -0.0945170819759, 2.30590343475, 0.0814877748489, -0.0962719619274, 2.29928565025, 0.0916454792023, -0.091524720192, 2.31382131577, 0.0862023830414, -0.0931714475155, 2.30680322647, 0.0967692136765, -0.0849467813969, 2.32019901276, 0.0911735296249, -0.0865924358368, 2.31280183792, 0.10206592083, -0.0765970945358, 2.32571768761, 0.0963366031647, -0.0782741606236, 2.3180398941, 0.107449650764, -0.0995177924633, 2.27731227875, 0.10421705246, -0.0988855361938, 2.28443050385, 0.0956801176071, -0.0972979962826, 2.2922077179, 0.10109770298, -0.0976387262344, 2.28451013565, 0.109941840172, -0.0940450131893, 2.29926538467, 0.106562018394, -0.094189375639, 2.29102802277, 0.115679860115, -0.0874602496624, 2.30486392975, 0.112119793892, -0.0875995159149, 2.2961666584, 0.121445178986, -0.0792098939419, 2.30972242355, 0.117724299431, -0.0794394314289, 2.30062532425, 0.127223968506, -0.098882317543, 2.2614569664, 0.119461536407, -0.0995197296143, 2.26965475082, 0.112162947655, -0.097282409668, 2.27621269226, 0.118114352226, -0.0962183475494, 2.2672753334, 0.125551819801, -0.0935924947262, 2.28211092949, 0.124052762985, -0.0922412872314, 2.27251362801, 0.131609678268, -0.0869969129562, 2.28674936295, 0.12996506691, -0.0856387317181, 2.2765724659, 0.137602090836, -0.0789484977722, 2.29072809219, 0.13586473465, -0.0777231454849, 2.28007125854, 0.143562197685, -0.0956511497498, 2.24346232414, 0.131890535355, -0.0975959300995, 2.25273966789, 0.126056194305, -0.0944350659847, 2.2577381134, 0.132190585136, -0.0919216573238, 2.24760127068, 0.137967586517, -0.0901237428188, 2.26223707199, 0.138280034065, -0.0872268378735, 2.25130009651, 0.143993616104, -0.0835115909576, 2.26571559906, 0.144279122353, -0.0806018412113, 2.25413918495, 0.149918556213, -0.0757491290569, 2.26867508888, 0.150232791901, -0.0730117559433, 2.25655841827, 0.155792355537, -0.0897482633591, 2.22334861755, 0.141052961349, -0.0930385291576, 2.23366546631, 0.136908054352, -0.0886666476727, 2.23684453964, 0.142818689346, -0.0846592187881, 2.22550797462, 0.146680831909, -0.0835381746292, 2.23970365524, 0.148679852486, -0.0790450870991, 2.22744750977, 0.15226829052, -0.0768961906433, 2.24186301231, 0.154443025589, -0.0723807513714, 2.22892689705, 0.157775163651, -0.069497436285, 2.24370241165, 0.160156607628, -0.0651915073395, 2.23016667366, 0.163241863251, -0.0814509689808, 2.20137524605, 0.147019147873, -0.0857713222504, 2.21249175072, 0.144268512726, -0.0798880755901, 2.21359157562, 0.149490237236, -0.074735045433, 2.20137548447, 0.151773333549, -0.0737351179123, 2.21457123756, 0.154688119888, -0.068016409874, 2.20137524605, 0.156523704529, -0.0670423209667, 2.21531105042, 0.159838080406, -0.0612922906876, 2.20137524605, 0.161266088486, -0.0600796937943, 2.21593093872, 0.164963960648, -0.0545650720596, 2.20137548447, 0.166004538536, 0.110828518867, 2.01743078232, -0.0765029191971, 0.0903525054455, 2.01263213158, -0.0963916182518, 0.0821220576763, 1.99458742142, -0.0890099406242, 0.101202636957, 1.99975597858, -0.0708037614822, 0.0909101963043, 1.9819034338, -0.0647605657578, 0.0733642280102, 1.97638118267, -0.0812128782272, 0.0556301772594, 1.97163057327, -0.0954719185829, 0.0626222789288, 1.99015307426, -0.104774773121, 0.0692300796509, 2.00853347778, -0.113600611687, 0.0468144416809, 2.00579404831, -0.125450015068, 0.0422842502594, 1.98717999458, -0.115657150745, 0.0375198423862, 1.9684214592, -0.105344474316, 0.0190331935883, 1.96675419807, -0.110794603825, 0.0213054120541, 1.98567032814, -0.121668159962, 0.0234946906567, 2.00445485115, -0.131995201111, -0.000340461730957, 2.00449466705, -0.133291065693, -0.000117152929306, 1.98562836647, -0.122819244862, 0.000170350074768, 1.96662819386, -0.111787438393, -0.0190688371658, 1.96804559231, -0.108287930489, -0.0217856168747, 1.98705196381, -0.119121730328, -0.0243024528027, 2.00593423843, -0.129392743111, -0.0480021238327, 2.00875329971, -0.120355904102, -0.0435024499893, 1.98994088173, -0.110586345196, -0.038684129715, 1.97100281715, -0.100260198116, -0.0584876835346, 1.97473347187, -0.0899685621262, -0.065243691206, 1.99356591702, -0.0996326208115, -0.071570545435, 2.01227235794, -0.108749806881, 0.12614607811, 2.0517206192, -0.085866689682, 0.10369348526, 2.04776144028, -0.108686983585, 0.0975281894207, 2.03036689758, -0.102943301201, 0.119121193886, 2.03476572037, -0.0815135240555, 0.0750685632229, 2.02660799026, -0.12147295475, 0.0801641941071, 2.04438257217, -0.128407478333, 0.0544807612896, 2.04220294952, -0.141927421093, 0.0508762300014, 2.0241484642, -0.134203314781, 0.0255188941956, 2.02298903465, -0.1412281394, 0.0273773372173, 2.041223526, -0.149375677109, -0.000412315130234, 2.04144358635, -0.150879621506, -0.000435471534729, 2.0231089592, -0.142641663551, -0.026419043541, 2.02454853058, -0.138538122177, -0.0281544923782, 2.04288315773, -0.146567761898, -0.0551153421402, 2.0455622673, -0.13656771183, -0.0518639981747, 2.02730798721, -0.129011631012, -0.0770395696163, 2.03070688248, -0.116773664951, -0.0816856920719, 2.04884147644, -0.123723804951, 0.1366533041, 2.08443045616, -0.0927202105522, 0.11317384243, 2.08141136169, -0.117842137814, 0.108893871307, 2.06477618217, -0.113645792007, 0.131968349218, 2.06829547882, -0.089592218399, 0.0845430791378, 2.06181740761, -0.134419858456, 0.0882317125797, 2.07885217667, -0.139526247978, 0.0603649616241, 2.07729244232, -0.154334127903, 0.0576399862766, 2.05991792679, -0.148634314537, 0.029070019722, 2.05913805962, -0.156446158886, 0.0305963754654, 2.07671284676, -0.162447869778, -5.18560409546e-05, 2.07713294029, -0.164048731327, -0.000280976295471, 2.05945825577, -0.158012628555, -0.029527515173, 2.06091761589, -0.153490960598, -0.0305565595627, 2.07859230042, -0.159317791462, -0.0598955154419, 2.08109140396, -0.148437380791, -0.0577835738659, 2.0634970665, -0.143038511276, -0.0855445861816, 2.06665587425, -0.129620075226, -0.0886514186859, 2.08413076401, -0.134481966496, 0.142872840166, 2.11538124084, -0.0973066091537, 0.119151800871, 2.11336183548, -0.124038159847, 0.116578191519, 2.09760665894, -0.121298670769, 0.140266448259, 2.1001458168, -0.0952817201614, 0.0912563800812, 2.09550690651, -0.143742263317, 0.0936433076859, 2.11174201965, -0.147083938122, 0.0645594596863, 2.11082243919, -0.162758529186, 0.0626677274704, 2.09426736832, -0.159038543701, 0.0319559574127, 2.09388780594, -0.167389273643, 0.0331487953663, 2.11068272591, -0.171278476715, 0.000659734010696, 2.11134243011, -0.172860622406, 0.000265151262283, 2.09442734718, -0.168995082378, -0.0312609672546, 2.0959072113, -0.164058089256, -0.0316592156887, 2.11280202866, -0.167721390724, -0.0625594854355, 2.1151611805, -0.156077384949, -0.0614784061909, 2.09832644463, -0.152779102325, -0.091041713953, 2.10122537613, -0.138329148293, -0.092750787735, 2.11792039871, -0.141181409359, 0.145326703787, 2.14435243607, -0.0998682975769, 0.121986746788, 2.14345288277, -0.127455711365, 0.12093988061, 2.128657341, -0.126083016396, 0.144537717104, 2.13011670113, -0.0988254547119, 0.0954187810421, 2.12749743462, -0.149567067623, 0.0966092348099, 2.14279270172, -0.151207447052, 0.0671563148499, 2.14259290695, -0.167288899422, 0.0660518407822, 2.12693786621, -0.165504932404, 0.034174233675, 2.12703752518, -0.174123942852, 0.0350322425365, 2.14291286469, -0.175934314728, 0.00164118409157, 2.14381241798, -0.177378237247, 0.00112187862396, 2.12779760361, -0.175652146339, -0.0317702293396, 2.12929677963, -0.170317173004, -0.0316126346588, 2.14531207085, -0.171855449677, -0.0633250772953, 2.14749121666, -0.159600257874, -0.06316614151, 2.13155627251, -0.158346652985, -0.0938138961792, 2.13417553902, -0.143058121204, -0.0942667424679, 2.14999055862, -0.143979430199, 0.144537329674, 2.17116451263, -0.100648760796, 0.122037023306, 2.17142438889, -0.128275871277, 0.122337460518, 2.15770840645, -0.128179073334, 0.145304679871, 2.15802812576, -0.100466370583, 0.0972405672073, 2.15756845474, -0.152021169662, 0.097339630127, 2.17180395126, -0.152023673058, 0.0682476460934, 2.17236375809, -0.168013691902, 0.0678842961788, 2.15774822235, -0.1681214571, 0.0357222557068, 2.15830826759, -0.17671751976, 0.0362440347672, 2.173183918, -0.176481842995, 0.00281155109406, 2.17434358597, -0.17766481638, 0.00220784544945, 2.1593477726, -0.178046405315, -0.0312053859234, 2.1608672142, -0.172345995903, -0.0305671691895, 2.17588281631, -0.171798348427, -0.0624089539051, 2.17788243294, -0.159118890762, -0.0630635917187, 2.16294693947, -0.159853219986, -0.0941445529461, 2.16530609131, -0.143964290619, -0.0934826135635, 2.18010187149, -0.143033146858, 0.141027003527, 2.19563698769, -0.0998904705048, 0.119661599398, 2.19709634781, -0.12667953968, 0.121130019426, 2.18456029892, -0.127768397331, 0.143089622259, 2.18370056152, -0.100446820259, 0.0969321429729, 2.18546009064, -0.151231408119, 0.0960448086262, 2.19853615761, -0.149659633636, 0.0679256618023, 2.19989562035, -0.165021657944, 0.0682575702667, 2.18641996384, -0.166976809502, 0.0365971326828, 2.1875193119, -0.175236225128, 0.0367814600468, 2.20125508308, -0.172988414764, 0.00408938527107, 2.20269489288, -0.173782587051, 0.00344213843346, 2.18879890442, -0.176240801811, -0.0297168195248, 2.19037842751, -0.17022228241, -0.0286731421947, 2.20429420471, -0.167627453804, -0.0600288808346, 2.20611381531, -0.154745221138, -0.0613882541656, 2.19227790833, -0.157411456108, -0.0923162996769, 2.19435739517, -0.141205072403, -0.0906810462475, 2.20805311203, -0.138499736786, 0.135318487883, 2.21755027771, -0.0978361368179, 0.115218997002, 2.22026968002, -0.122847676277, 0.117676258087, 2.20901274681, -0.125031709671, 0.138414978981, 2.20691347122, -0.0990101099014, 0.0947037935257, 2.21099209785, -0.147324562073, 0.0929353535175, 2.22280859947, -0.144241809845, 0.0662826001644, 2.2249879837, -0.15840113163, 0.0672634840012, 2.21277165413, -0.162159442902, 0.0367964506149, 2.21439146996, -0.169746875763, 0.0366419255733, 2.22688770294, -0.165520429611, 0.00539374351501, 2.2286272049, -0.165795087814, 0.00474333763123, 2.21597075462, -0.170298099518, -0.0274549424648, 2.21759033203, -0.164023756981, -0.0260809361935, 2.23028659821, -0.159420609474, -0.0564017295837, 2.23194599152, -0.146592259407, -0.0583575963974, 2.21934986115, -0.151134133339, -0.0886122882366, 2.22114944458, -0.134937167168, -0.0861453711987, 2.23360538483, -0.13053715229, 0.127933770418, 2.23674440384, -0.0947285890579, 0.109068512917, 2.24072313309, -0.116961240768, 0.112334936857, 2.23084640503, -0.120149970055, 0.131802946329, 2.22750711441, -0.0963987112045, 0.0907658040524, 2.23394560814, -0.140427589417, 0.0882213413715, 2.24438238144, -0.135897397995, 0.0634107887745, 2.24738144875, -0.148240327835, 0.0649945437908, 2.23654460907, -0.153757452965, 0.0363174378872, 2.23872375488, -0.160316705704, 0.0358227491379, 2.24988079071, -0.154144406319, 0.00664341449738, 2.25191998482, -0.153764724731, 0.00603055953979, 2.24062347412, -0.160281300545, -0.024570196867, 2.24230289459, -0.153828024864, -0.0229411125183, 2.25365948677, -0.147255897522, -0.0517449676991, 2.25515913963, -0.134772539139, -0.0541884601116, 2.24390244484, -0.141133785248, -0.0833156108856, 2.24542188644, -0.125318646431, -0.0801583528519, 2.25655841827, -0.119301795959, 0.119395375252, 2.25301933289, -0.0908106565475, 0.101568102837, 2.25823783875, -0.109201192856, 0.105464577675, 2.24986076355, -0.113304138184, 0.123776048422, 2.24526166916, -0.0928556919098, 0.0853284299374, 2.25407934189, -0.130667328835, 0.0821131467819, 2.26301646233, -0.124753236771, 0.0594020783901, 2.26687574387, -0.134627938271, 0.0615428388119, 2.25751829147, -0.14186000824, 0.0351575613022, 2.26027727127, -0.147011876106, 0.034321397543, 2.26995420456, -0.138927698135, 0.00775730609894, 2.27233362198, -0.137754440308, 0.00722244381905, 2.26249670982, -0.146253347397, -0.0212127864361, 2.26427602768, -0.139713644981, -0.0194039344788, 2.27417325974, -0.131210803986, -0.0462758243084, 2.27553272247, -0.119398355484, -0.0490983724594, 2.26571559906, -0.127522587776, -0.0767092704773, 2.26699519157, -0.112506151199, -0.0730033218861, 2.27669239044, -0.104951500893, 0.110225528479, 2.26615571976, -0.0863257646561, 0.0930773019791, 2.27263379097, -0.0997486114502, 0.0974241495132, 2.26583576202, -0.10467505455, 0.114856749773, 2.25999736786, -0.0886240005493, 0.0786020457745, 2.27117395401, -0.118170619011, 0.0748212039471, 2.27851200104, -0.110935807228, 0.0543490350246, 2.28323030472, -0.117652535439, 0.0570003986359, 2.27545261383, -0.126554965973, 0.0333141386509, 2.27883172035, -0.129899740219, 0.0321353375912, 2.28690958023, -0.119936704636, 0.00865423679352, 2.28964853287, -0.117827534676, 0.00823795795441, 2.2813911438, -0.128276586533, -0.0175332129002, 2.28327035904, -0.121757507324, -0.0156195163727, 2.29158806801, -0.111363172531, -0.0402116477489, 2.29284763336, -0.100582480431, -0.0433047711849, 2.28459024429, -0.110413551331, -0.0690761804581, 2.28560972214, -0.0966573953629, -0.0649631917477, 2.29374742508, -0.0876432657242, 0.100894927979, 2.27643251419, -0.0815262794495, 0.0839885771275, 2.28413009644, -0.0889502763748, 0.0885724723339, 2.27859210968, -0.0944439172745, 0.105567127466, 2.2715139389, -0.0839463472366, 0.0707970559597, 2.28500986099, -0.103064417839, 0.0666510760784, 2.29110813141, -0.0948749780655, 0.0484511852264, 2.29666662216, -0.0978004932404, 0.0514596700668, 2.29016828537, -0.107931017876, 0.0307844877243, 2.29412698746, -0.109046578407, 0.0293477475643, 2.30094480515, -0.0976933240891, 0.00930038094521, 2.30406427383, -0.0945200920105, 0.00899598002434, 2.2970662117, -0.106414675713, -0.013681769371, 2.2990655899, -0.100037693977, -0.0117318332195, 2.30614352226, -0.0882465839386, -0.0337897539139, 2.30730295181, -0.0788394212723, -0.0370243787766, 2.30028533936, -0.0899189710617, -0.0606994628906, 2.30108499527, -0.0779293775558, -0.0563605725765, 2.30800294876, -0.0678653717041], \"tex0\": [0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0881578996778, 0.916666984558, 0.0881578996778, 0.958333015442, 0.0112853003666, 0.958333015442, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0881578996778, 0.833333015442, 0.0881578996778, 0.875, 0.0112853003666, 0.875, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.833333015442, 0.24190300703, 0.875, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0881578996778, 0.75, 0.0881578996778, 0.791666984558, 0.0112853003666, 0.791666984558, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.75, 0.24190300703, 0.791666984558, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0881578996778, 0.666666984558, 0.0881578996778, 0.708333015442, 0.0112853003666, 0.708333015442, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.666666984558, 0.24190300703, 0.708333015442, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0881578996778, 0.583333015442, 0.0881578996778, 0.625, 0.0112853003666, 0.625, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.583333015442, 0.24190300703, 0.625, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0881578996778, 0.5, 0.0881578996778, 0.541666984558, 0.0112853003666, 0.541666984558, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.5, 0.24190300703, 0.541666984558, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0881578996778, 0.41666701436, 0.0881578996778, 0.45833298564, 0.0112853003666, 0.45833298564, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.41666701436, 0.24190300703, 0.45833298564, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0881578996778, 0.33333298564, 0.0881578996778, 0.375, 0.0112853003666, 0.375, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.33333298564, 0.24190300703, 0.375, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0881578996778, 0.25, 0.0881578996778, 0.29166701436, 0.0112853003666, 0.29166701436, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.25, 0.24190300703, 0.29166701436, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0881578996778, 0.166666999459, 0.0881578996778, 0.208333000541, 0.0112853003666, 0.208333000541, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.166666999459, 0.24190300703, 0.208333000541, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0881578996778, 0.083333298564, 0.0881578996778, 0.125, 0.0112853003666, 0.125, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.083333298564, 0.24190300703, 0.125, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0881578996778, 0.0, 0.0881578996778, 0.0416666008532, 0.0112853003666, 0.0416666008532, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0, 0.24190300703, 0.0416666008532, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0881578996778, 0.916666984558, 0.0881578996778, 0.958333015442, 0.0112853003666, 0.958333015442, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0881578996778, 0.833333015442, 0.0881578996778, 0.875, 0.0112853003666, 0.875, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.833333015442, 0.24190300703, 0.875, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0881578996778, 0.75, 0.0881578996778, 0.791666984558, 0.0112853003666, 0.791666984558, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.75, 0.24190300703, 0.791666984558, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0881578996778, 0.666666984558, 0.0881578996778, 0.708333015442, 0.0112853003666, 0.708333015442, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.666666984558, 0.24190300703, 0.708333015442, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0881578996778, 0.583333015442, 0.0881578996778, 0.625, 0.0112853003666, 0.625, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.583333015442, 0.24190300703, 0.625, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0881578996778, 0.5, 0.0881578996778, 0.541666984558, 0.0112853003666, 0.541666984558, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.5, 0.24190300703, 0.541666984558, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0881578996778, 0.41666701436, 0.0881578996778, 0.45833298564, 0.0112853003666, 0.45833298564, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.41666701436, 0.24190300703, 0.45833298564, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0881578996778, 0.33333298564, 0.0881578996778, 0.375, 0.0112853003666, 0.375, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.33333298564, 0.24190300703, 0.375, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0881578996778, 0.25, 0.0881578996778, 0.29166701436, 0.0112853003666, 0.29166701436, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.25, 0.24190300703, 0.29166701436, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0881578996778, 0.166666999459, 0.0881578996778, 0.208333000541, 0.0112853003666, 0.208333000541, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.166666999459, 0.24190300703, 0.208333000541, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0881578996778, 0.083333298564, 0.0881578996778, 0.125, 0.0112853003666, 0.125, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.083333298564, 0.24190300703, 0.125, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0881578996778, 0.0, 0.0881578996778, 0.0416666008532, 0.0112853003666, 0.0416666008532, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0, 0.24190300703, 0.0416666008532, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0881578996778, 0.916666984558, 0.0881578996778, 0.958333015442, 0.0112853003666, 0.958333015442, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0881578996778, 0.833333015442, 0.0881578996778, 0.875, 0.0112853003666, 0.875, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.833333015442, 0.24190300703, 0.875, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0881578996778, 0.75, 0.0881578996778, 0.791666984558, 0.0112853003666, 0.791666984558, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.75, 0.24190300703, 0.791666984558, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0881578996778, 0.666666984558, 0.0881578996778, 0.708333015442, 0.0112853003666, 0.708333015442, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.666666984558, 0.24190300703, 0.708333015442, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0881578996778, 0.583333015442, 0.0881578996778, 0.625, 0.0112853003666, 0.625, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.583333015442, 0.24190300703, 0.625, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0881578996778, 0.5, 0.0881578996778, 0.541666984558, 0.0112853003666, 0.541666984558, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.5, 0.24190300703, 0.541666984558, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0881578996778, 0.41666701436, 0.0881578996778, 0.45833298564, 0.0112853003666, 0.45833298564, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.41666701436, 0.24190300703, 0.45833298564, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0881578996778, 0.33333298564, 0.0881578996778, 0.375, 0.0112853003666, 0.375, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.33333298564, 0.24190300703, 0.375, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0881578996778, 0.25, 0.0881578996778, 0.29166701436, 0.0112853003666, 0.29166701436, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.25, 0.24190300703, 0.29166701436, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0881578996778, 0.166666999459, 0.0881578996778, 0.208333000541, 0.0112853003666, 0.208333000541, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.166666999459, 0.24190300703, 0.208333000541, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0881578996778, 0.083333298564, 0.0881578996778, 0.125, 0.0112853003666, 0.125, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.083333298564, 0.24190300703, 0.125, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0881578996778, 0.0, 0.0881578996778, 0.0416666008532, 0.0112853003666, 0.0416666008532, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0, 0.24190300703, 0.0416666008532, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0881578996778, 0.916666984558, 0.0881578996778, 0.958333015442, 0.0112853003666, 0.958333015442, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0881578996778, 0.833333015442, 0.0881578996778, 0.875, 0.0112853003666, 0.875, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.833333015442, 0.24190300703, 0.875, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0881578996778, 0.75, 0.0881578996778, 0.791666984558, 0.0112853003666, 0.791666984558, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.75, 0.24190300703, 0.791666984558, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0881578996778, 0.666666984558, 0.0881578996778, 0.708333015442, 0.0112853003666, 0.708333015442, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.666666984558, 0.24190300703, 0.708333015442, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0881578996778, 0.583333015442, 0.0881578996778, 0.625, 0.0112853003666, 0.625, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.583333015442, 0.24190300703, 0.625, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0881578996778, 0.5, 0.0881578996778, 0.541666984558, 0.0112853003666, 0.541666984558, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.5, 0.24190300703, 0.541666984558, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0881578996778, 0.41666701436, 0.0881578996778, 0.45833298564, 0.0112853003666, 0.45833298564, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.41666701436, 0.24190300703, 0.45833298564, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0881578996778, 0.33333298564, 0.0881578996778, 0.375, 0.0112853003666, 0.375, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.33333298564, 0.24190300703, 0.375, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0881578996778, 0.25, 0.0881578996778, 0.29166701436, 0.0112853003666, 0.29166701436, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.25, 0.24190300703, 0.29166701436, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0881578996778, 0.166666999459, 0.0881578996778, 0.208333000541, 0.0112853003666, 0.208333000541, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.166666999459, 0.24190300703, 0.208333000541, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0881578996778, 0.083333298564, 0.0881578996778, 0.125, 0.0112853003666, 0.125, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.083333298564, 0.24190300703, 0.125, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0881578996778, 0.0, 0.0881578996778, 0.0416666008532, 0.0112853003666, 0.0416666008532, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0, 0.24190300703, 0.0416666008532, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0881578996778, 0.916666984558, 0.0881578996778, 0.958333015442, 0.0112853003666, 0.958333015442, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0881578996778, 0.833333015442, 0.0881578996778, 0.875, 0.0112853003666, 0.875, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.833333015442, 0.24190300703, 0.875, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0881578996778, 0.75, 0.0881578996778, 0.791666984558, 0.0112853003666, 0.791666984558, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.75, 0.24190300703, 0.791666984558, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0881578996778, 0.666666984558, 0.0881578996778, 0.708333015442, 0.0112853003666, 0.708333015442, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.666666984558, 0.24190300703, 0.708333015442, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0881578996778, 0.583333015442, 0.0881578996778, 0.625, 0.0112853003666, 0.625, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.583333015442, 0.24190300703, 0.625, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0881578996778, 0.5, 0.0881578996778, 0.541666984558, 0.0112853003666, 0.541666984558, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.5, 0.24190300703, 0.541666984558, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0881578996778, 0.41666701436, 0.0881578996778, 0.45833298564, 0.0112853003666, 0.45833298564, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.41666701436, 0.24190300703, 0.45833298564, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0881578996778, 0.33333298564, 0.0881578996778, 0.375, 0.0112853003666, 0.375, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.33333298564, 0.24190300703, 0.375, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0881578996778, 0.25, 0.0881578996778, 0.29166701436, 0.0112853003666, 0.29166701436, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.25, 0.24190300703, 0.29166701436, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0881578996778, 0.166666999459, 0.0881578996778, 0.208333000541, 0.0112853003666, 0.208333000541, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.166666999459, 0.24190300703, 0.208333000541, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0881578996778, 0.083333298564, 0.0881578996778, 0.125, 0.0112853003666, 0.125, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.083333298564, 0.24190300703, 0.125, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0881578996778, 0.0, 0.0881578996778, 0.0416666008532, 0.0112853003666, 0.0416666008532, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0, 0.24190300703, 0.0416666008532, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0112853003666, 0.916666984558, 0.0112853003666, 0.958333015442, 0.0881578996778, 0.958333015442, 0.0881578996778, 0.916666984558, 0.0112853003666, 1.0, 0.0881578996778, 1.0, 0.165030002594, 1.0, 0.165030002594, 0.958333015442, 0.165030002594, 0.916666984558, 0.24190300703, 0.958333015442, 0.24190300703, 0.916666984558, 0.24190300703, 1.0, 0.318776011467, 1.0, 0.318776011467, 0.958333015442, 0.318776011467, 0.916666984558, 0.0112853003666, 0.833333015442, 0.0112853003666, 0.875, 0.0881578996778, 0.875, 0.0881578996778, 0.833333015442, 0.165030002594, 0.875, 0.165030002594, 0.833333015442, 0.24190300703, 0.875, 0.24190300703, 0.833333015442, 0.318776011467, 0.875, 0.318776011467, 0.833333015442, 0.0112853003666, 0.75, 0.0112853003666, 0.791666984558, 0.0881578996778, 0.791666984558, 0.0881578996778, 0.75, 0.165030002594, 0.791666984558, 0.165030002594, 0.75, 0.24190300703, 0.791666984558, 0.24190300703, 0.75, 0.318776011467, 0.791666984558, 0.318776011467, 0.75, 0.0112853003666, 0.666666984558, 0.0112853003666, 0.708333015442, 0.0881578996778, 0.708333015442, 0.0881578996778, 0.666666984558, 0.165030002594, 0.708333015442, 0.165030002594, 0.666666984558, 0.24190300703, 0.708333015442, 0.24190300703, 0.666666984558, 0.318776011467, 0.708333015442, 0.318776011467, 0.666666984558, 0.0112853003666, 0.583333015442, 0.0112853003666, 0.625, 0.0881578996778, 0.625, 0.0881578996778, 0.583333015442, 0.165030002594, 0.625, 0.165030002594, 0.583333015442, 0.24190300703, 0.625, 0.24190300703, 0.583333015442, 0.318776011467, 0.625, 0.318776011467, 0.583333015442, 0.0112853003666, 0.5, 0.0112853003666, 0.541666984558, 0.0881578996778, 0.541666984558, 0.0881578996778, 0.5, 0.165030002594, 0.541666984558, 0.165030002594, 0.5, 0.24190300703, 0.541666984558, 0.24190300703, 0.5, 0.318776011467, 0.541666984558, 0.318776011467, 0.5, 0.0112853003666, 0.41666701436, 0.0112853003666, 0.45833298564, 0.0881578996778, 0.45833298564, 0.0881578996778, 0.41666701436, 0.165030002594, 0.45833298564, 0.165030002594, 0.41666701436, 0.24190300703, 0.45833298564, 0.24190300703, 0.41666701436, 0.318776011467, 0.45833298564, 0.318776011467, 0.41666701436, 0.0112853003666, 0.33333298564, 0.0112853003666, 0.375, 0.0881578996778, 0.375, 0.0881578996778, 0.33333298564, 0.165030002594, 0.375, 0.165030002594, 0.33333298564, 0.24190300703, 0.375, 0.24190300703, 0.33333298564, 0.318776011467, 0.375, 0.318776011467, 0.33333298564, 0.0112853003666, 0.25, 0.0112853003666, 0.29166701436, 0.0881578996778, 0.29166701436, 0.0881578996778, 0.25, 0.165030002594, 0.29166701436, 0.165030002594, 0.25, 0.24190300703, 0.29166701436, 0.24190300703, 0.25, 0.318776011467, 0.29166701436, 0.318776011467, 0.25, 0.0112853003666, 0.166666999459, 0.0112853003666, 0.208333000541, 0.0881578996778, 0.208333000541, 0.0881578996778, 0.166666999459, 0.165030002594, 0.208333000541, 0.165030002594, 0.166666999459, 0.24190300703, 0.208333000541, 0.24190300703, 0.166666999459, 0.318776011467, 0.208333000541, 0.318776011467, 0.166666999459, 0.0112853003666, 0.083333298564, 0.0112853003666, 0.125, 0.0881578996778, 0.125, 0.0881578996778, 0.083333298564, 0.165030002594, 0.125, 0.165030002594, 0.0833334028721, 0.24190300703, 0.125, 0.24190300703, 0.083333298564, 0.318776011467, 0.125, 0.318776011467, 0.083333298564, 0.0112853003666, 0.0, 0.0112853003666, 0.0416666008532, 0.0881578996778, 0.0416666008532, 0.0881578996778, 0.0, 0.165030002594, 0.0416666008532, 0.165030002594, 0.0, 0.24190300703, 0.0416666008532, 0.24190300703, 0.0, 0.318776011467, 0.0416666008532, 0.318776011467, 0.0, 0.0, 0.916666984558, 0.125, 0.916666984558, 0.125, 0.958333015442, 0.0, 0.958333015442, 0.0, 1.0, 0.125, 1.0, 0.25, 1.0, 0.25, 0.958333015442, 0.25, 0.916666984558, 0.375, 0.916666984558, 0.375, 0.958333015442, 0.375, 1.0, 0.5, 1.0, 0.5, 0.958333015442, 0.5, 0.916666984558, 0.625, 0.916666984558, 0.625, 0.958333015442, 0.625, 1.0, 0.75, 1.0, 0.75, 0.958333015442, 0.75, 0.916666984558, 0.875, 0.916666984558, 0.875, 0.958333015442, 0.875, 1.0, 1.0, 1.0, 1.0, 0.958333015442, 1.0, 0.916666984558, 0.0, 0.833333015442, 0.125, 0.833333015442, 0.125, 0.875, 0.0, 0.875, 0.25, 0.875, 0.25, 0.833333015442, 0.375, 0.833333015442, 0.375, 0.875, 0.5, 0.875, 0.5, 0.833333015442, 0.625, 0.833333015442, 0.625, 0.875, 0.75, 0.875, 0.75, 0.833333015442, 0.875, 0.833333015442, 0.875, 0.875, 1.0, 0.875, 1.0, 0.833333015442, 0.0, 0.75, 0.125, 0.75, 0.125, 0.791666984558, 0.0, 0.791666984558, 0.25, 0.791666984558, 0.25, 0.75, 0.375, 0.75, 0.375, 0.791666984558, 0.5, 0.791666984558, 0.5, 0.75, 0.625, 0.75, 0.625, 0.791666984558, 0.75, 0.791666984558, 0.75, 0.75, 0.875, 0.75, 0.875, 0.791666984558, 1.0, 0.791666984558, 1.0, 0.75, 0.0, 0.666666984558, 0.125, 0.666666984558, 0.125, 0.708333015442, 0.0, 0.708333015442, 0.25, 0.708333015442, 0.25, 0.666666984558, 0.375, 0.666666984558, 0.375, 0.708333015442, 0.5, 0.708333015442, 0.5, 0.666666984558, 0.625, 0.666666984558, 0.625, 0.708333015442, 0.75, 0.708333015442, 0.75, 0.666666984558, 0.875, 0.666666984558, 0.875, 0.708333015442, 1.0, 0.708333015442, 1.0, 0.666666984558, 0.0, 0.583333015442, 0.125, 0.583333015442, 0.125, 0.625, 0.0, 0.625, 0.25, 0.625, 0.25, 0.583333015442, 0.375, 0.583333015442, 0.375, 0.625, 0.5, 0.625, 0.5, 0.583333015442, 0.625, 0.583333015442, 0.625, 0.625, 0.75, 0.625, 0.75, 0.583333015442, 0.875, 0.583333015442, 0.875, 0.625, 1.0, 0.625, 1.0, 0.583333015442, 0.0, 0.5, 0.125, 0.5, 0.125, 0.541666984558, 0.0, 0.541666984558, 0.25, 0.541666984558, 0.25, 0.5, 0.375, 0.5, 0.375, 0.541666984558, 0.5, 0.541666984558, 0.5, 0.5, 0.625, 0.5, 0.625, 0.541666984558, 0.75, 0.541666984558, 0.75, 0.5, 0.875, 0.5, 0.875, 0.541666984558, 1.0, 0.541666984558, 1.0, 0.5, 0.0, 0.41666701436, 0.125, 0.41666701436, 0.125, 0.45833298564, 0.0, 0.45833298564, 0.25, 0.45833298564, 0.25, 0.41666701436, 0.375, 0.41666701436, 0.375, 0.45833298564, 0.5, 0.45833298564, 0.5, 0.41666701436, 0.625, 0.41666701436, 0.625, 0.45833298564, 0.75, 0.45833298564, 0.75, 0.41666701436, 0.875, 0.41666701436, 0.875, 0.45833298564, 1.0, 0.45833298564, 1.0, 0.41666701436, 0.0, 0.33333298564, 0.125, 0.33333298564, 0.125, 0.375, 0.0, 0.375, 0.25, 0.375, 0.25, 0.33333298564, 0.375, 0.33333298564, 0.375, 0.375, 0.5, 0.375, 0.5, 0.33333298564, 0.625, 0.33333298564, 0.625, 0.375, 0.75, 0.375, 0.75, 0.33333298564, 0.875, 0.33333298564, 0.875, 0.375, 1.0, 0.375, 1.0, 0.33333298564, 0.0, 0.25, 0.125, 0.25, 0.125, 0.29166701436, 0.0, 0.29166701436, 0.25, 0.29166701436, 0.25, 0.25, 0.375, 0.25, 0.375, 0.29166701436, 0.5, 0.29166701436, 0.5, 0.25, 0.625, 0.25, 0.625, 0.29166701436, 0.75, 0.29166701436, 0.75, 0.25, 0.875, 0.25, 0.875, 0.29166701436, 1.0, 0.29166701436, 1.0, 0.25, 0.0, 0.166666999459, 0.125, 0.166666999459, 0.125, 0.208333000541, 0.0, 0.208333000541, 0.25, 0.208333000541, 0.25, 0.166666999459, 0.375, 0.166666999459, 0.375, 0.208333000541, 0.5, 0.208333000541, 0.5, 0.166666999459, 0.625, 0.166666999459, 0.625, 0.208333000541, 0.75, 0.208333000541, 0.75, 0.166666999459, 0.875, 0.166666999459, 0.875, 0.208333000541, 1.0, 0.208333000541, 1.0, 0.166666999459, 0.0, 0.083333298564, 0.125, 0.083333298564, 0.125, 0.125, 0.0, 0.125, 0.25, 0.125, 0.25, 0.0833334028721, 0.375, 0.083333298564, 0.375, 0.125, 0.5, 0.125, 0.5, 0.0833334028721, 0.625, 0.083333298564, 0.625, 0.125, 0.75, 0.125, 0.75, 0.0833334028721, 0.875, 0.083333298564, 0.875, 0.125, 1.0, 0.125, 1.0, 0.083333298564, 0.0, 0.0, 0.125, 0.0, 0.125, 0.0416666008532, 0.0, 0.0416666008532, 0.25, 0.0416666008532, 0.25, 0.0, 0.375, 0.0, 0.375, 0.0416666008532, 0.5, 0.0416666008532, 0.5, 0.0, 0.625, 0.0, 0.625, 0.0416666008532, 0.75, 0.0416666008532, 0.75, 0.0, 0.875, 0.0, 0.875, 0.0416666008532, 1.0, 0.0416666008532, 1.0, 0.0], \"colors\": [4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080, 4278190080], \"influences\": [[1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0], [1.0, 0]], \"normals\": [-0.892707407475, 0.41587638855, -0.171802103519, -0.830099284649, 0.495728254318, -0.254135191441, -0.761176049709, 0.582476019859, -0.28412720561, -0.847185134888, 0.504621565342, -0.164408370852, -0.749377667904, 0.563407838345, -0.346988201141, -0.680200517178, 0.639148950577, -0.358065843582, -0.453257113695, 0.808595776558, -0.374334931374, -0.542410135269, 0.78347837925, -0.302240759134, -0.647466421127, 0.744307160378, -0.161831110716, -0.305570691824, 0.89928740263, -0.311936795712, -0.411720633507, 0.89747595787, -0.156267791986, -0.113851614296, 0.928022742271, -0.353848189116, -0.0505650267005, 0.931694626808, -0.358865648508, -0.250207424164, 0.899825274944, -0.356519281864, -0.370006233454, 0.914761662483, -0.16031858325, -0.956638038158, 0.288788765669, -0.0289857387543, -0.93742787838, 0.340566158295, -0.0681233257055, -0.897397994995, 0.434903621674, -0.0702300667763, -0.925830423832, 0.377017080784, -0.00959135591984, -0.728443026543, 0.682779788971, -0.0507813692093, -0.778185904026, 0.627233564854, 0.0200111865997, -0.495415329933, 0.867533922195, -0.0366716682911, -0.553485810757, 0.831749796867, 0.0352421700954, -0.426507174969, 0.902694344521, -0.0512825250626, -0.483186036348, 0.874329864979, 0.0384111404419, -0.976572036743, 0.199113845825, 0.0778284966946, -0.971031665802, 0.235675811768, 0.0308190882206, -0.9432041049, 0.328541755676, 0.0426950156689, -0.952376365662, 0.284877955914, 0.105920009315, -0.810279250145, 0.580391705036, 0.0773943066597, -0.827706992626, 0.538921236992, 0.154472336173, -0.597996413708, 0.79573059082, 0.0927865803242, -0.626913607121, 0.757247209549, 0.181529134512, -0.52412468195, 0.84757900238, 0.0793678164482, -0.5530179739, 0.810741126537, 0.190435469151, -0.96674400568, 0.122439011931, 0.223182573915, -0.975566387177, 0.158493116498, 0.150152638555, -0.950423955917, 0.246985405684, 0.187322437763, -0.940153062344, 0.205017074943, 0.27106410265, -0.829615414143, 0.492549240589, 0.261781930923, -0.816409468651, 0.442231416702, 0.370546102524, -0.632129073143, 0.71038544178, 0.308481842279, -0.623277723789, 0.648644089699, 0.436098247766, -0.562530040741, 0.760365366936, 0.323728203773, -0.552308142185, 0.696386635303, 0.457599818707, -0.930376946926, 0.0486581027508, 0.362528473139, -0.95234143734, 0.0871109813452, 0.291298031807, -0.921269714832, 0.163950502872, 0.351822733879, -0.896055400372, 0.120862483978, 0.426466166973, -0.792592644691, 0.385403633118, 0.471866488457, -0.758603811264, 0.327276140451, 0.562855958939, -0.599276006222, 0.5806645751, 0.5505387187, -0.566463887691, 0.504285693169, 0.651314258575, -0.529907941818, 0.619897782803, 0.578204333782, -0.496035188437, 0.541651427746, 0.678202211857, -0.872636377811, -0.0251006186008, 0.487105876207, -0.906266272068, 0.0168462991714, 0.421656638384, -0.864224970341, 0.0777644962072, 0.49645203352, -0.827728033066, 0.0327694118023, 0.559631943703, -0.718131065369, 0.264285206795, 0.643301665783, -0.672235012054, 0.201177239418, 0.71205586195, -0.525665283203, 0.425859332085, 0.736013650894, -0.481281638145, 0.343773156404, 0.805967569351, -0.456344157457, 0.452442288399, 0.765794754028, -0.412647396326, 0.370181173086, 0.831915736198, -0.795700669289, -0.100495651364, 0.596788764, -0.840586125851, -0.0546663999557, 0.538352370262, -0.786145508289, -0.0122743844986, 0.61743158102, -0.74045330286, -0.0592280328274, 0.669041872025, -0.622671961784, 0.134743303061, 0.770403265953, -0.571089506149, 0.0691302120686, 0.817602992058, -0.434211850166, 0.261879861355, 0.86155372858, -0.386415302753, 0.178569018841, 0.904539763927, -0.36728605628, 0.277953088284, 0.887265026569, -0.321924746037, 0.195644974709, 0.926004290581, -0.697642326355, -0.179146885872, 0.693251609802, -0.755701780319, -0.128070265055, 0.641801118851, -0.690247476101, -0.106017976999, 0.715341925621, -0.63502317667, -0.155470043421, 0.756287574768, -0.516655981541, 0.000263899564743, 0.855840563774, -0.462078422308, -0.0669502019882, 0.883967041969, -0.338689684868, 0.0957827270031, 0.935687422752, -0.29120105505, 0.0115733742714, 0.95627617836, -0.276916384697, 0.103584676981, 0.954978585243, -0.233353510499, 0.0208801031113, 0.971857428551, -0.571657299995, -0.263995289803, 0.776472449303, -0.64726048708, -0.204710185528, 0.733855307102, -0.574777364731, -0.204593241215, 0.791939795017, -0.507346749306, -0.257960140705, 0.821858823299, -0.403896033764, -0.138805121183, 0.903878927231, -0.346494376659, -0.207830190659, 0.914408802986, -0.244954019785, -0.0723820924759, 0.966516137123, -0.199205830693, -0.158864974976, 0.966682076454, -0.191026300192, -0.0716301202774, 0.978659391403, -0.150698497891, -0.156291812658, 0.975837230682, -0.408546596766, -0.35878264904, 0.838904619217, -0.505671262741, -0.287392199039, 0.813079416752, -0.433880954981, -0.310618191957, 0.845375657082, -0.35118791461, -0.369714319706, 0.859868228436, -0.284239143133, -0.283809274435, 0.915454506874, -0.223521500826, -0.354833871126, 0.907483935356, -0.155392065644, -0.244801104069, 0.95672506094, -0.112691968679, -0.334306001663, 0.935380458832, -0.112332068384, -0.250500321388, 0.961263656616, -0.0767785087228, -0.337592035532, 0.937834739685, -0.206797540188, -0.464960575104, 0.860490083694, -0.320137292147, -0.379092514515, 0.867869913578, -0.262459725142, -0.426623165607, 0.865161716938, -0.166857600212, -0.492060363293, 0.854067027569, -0.158256202936, -0.435306489468, 0.885923445225, -0.0957720801234, -0.507133841515, 0.856177449226, -0.073084525764, -0.42147475481, 0.90355604887, -0.0366080440581, -0.51205933094, 0.85781788826, -0.0446315184236, -0.432880222797, 0.900010168552, -0.0171235278249, -0.519998967648, 0.853642165661, -0.0376652218401, -0.510598778725, 0.858642697334, -0.0958045721054, -0.462592303753, 0.881036937237, -0.0723103657365, -0.528836250305, 0.845280647278, 0.01328758616, -0.528645336628, 0.848382771015, -0.0376116372645, -0.567521572113, 0.822131752968, -0.00623397668824, -0.579639911652, 0.814478039742, -0.00772210769355, -0.57332277298, 0.818924665451, 0.0140203656629, -0.59266102314, 0.804954886436, 0.00160022662021, -0.584558367729, 0.810978055, 0.00908755511045, -0.596853733063, 0.801921844482, -0.83906763792, 0.538164436817, -0.075771048665, -0.857806921005, 0.477439790964, -0.188717991114, -0.808864712715, 0.555847108364, -0.190181553364, -0.788292884827, 0.609529852867, -0.0803954005241, -0.86675620079, 0.446047306061, -0.221745014191, -0.809613466263, 0.539110183716, -0.230830267072, -0.599835813046, 0.760136425495, -0.248566925526, -0.620637536049, 0.759568572044, -0.193030685186, -0.620097696781, 0.780774176121, -0.0725799798965, -0.372294545174, 0.905179619789, -0.203574538231, -0.392760366201, 0.916317284107, -0.0741556882858, -0.357466012239, 0.898545622826, -0.253437399864, -0.280462294817, 0.925092637539, -0.254833042622, -0.285533756018, 0.934288859367, -0.212061971426, -0.291607946157, 0.953109145164, -0.0771007537842, -0.809425473213, 0.577043652534, 0.106046944857, -0.828021943569, 0.559589982033, 0.0252170562744, -0.775588691235, 0.629804730415, 0.0347000062466, -0.758461892605, 0.640751481056, 0.116486847401, -0.605095267296, 0.793601334095, 0.0587566494942, -0.586076974869, 0.797377109528, 0.141774177551, -0.387889832258, 0.919124424458, 0.0644022226334, -0.376986116171, 0.913219213486, 0.152670860291, -0.29957151413, 0.951795518398, 0.061135828495, -0.298510849476, 0.942174434662, 0.150314599276, -0.775402784348, 0.592855930328, 0.216028779745, -0.792941510677, 0.589715898037, 0.151246324182, -0.741381108761, 0.649091959, 0.168612062931, -0.724230229855, 0.649985671043, 0.228921875358, -0.570219814777, 0.798721730709, 0.190496504307, -0.552318155766, 0.797172248363, 0.24260777235, -0.368462711573, 0.909711241722, 0.189883679152, -0.359951287508, 0.902075529099, 0.236835509539, -0.299719452858, 0.935596346855, 0.184996128082, -0.298729777336, 0.925723433495, 0.230637341738, -0.725247919559, 0.561625361443, 0.397476911545, -0.753369450569, 0.589549958706, 0.290279328823, -0.698620021343, 0.641050338745, 0.316829293966, -0.669660747051, 0.612038195133, 0.419953167439, -0.529100179672, 0.77957957983, 0.334224045277, -0.501726448536, 0.746500492096, 0.436351180077, -0.344162046909, 0.8822504282, 0.320284217596, -0.322376638651, 0.845069766045, 0.425824403763, -0.286555409431, 0.90282535553, 0.319669485092, -0.26562577486, 0.865207612514, 0.424564778805, -0.664845168591, 0.46740180254, 0.582162082195, -0.696263730526, 0.526522994041, 0.487223833799, -0.638906002045, 0.568326354027, 0.517880558968, -0.606203913689, 0.509509146214, 0.610174715519, -0.472056418657, 0.697390437126, 0.538707256317, -0.439761161804, 0.636584699154, 0.63306170702, -0.296020597219, 0.79658138752, 0.526522994041, -0.266439527273, 0.734241187572, 0.623935520649, -0.240460366011, 0.813110351562, 0.529554009438, -0.210112541914, 0.750923156738, 0.625591039658, -0.597508490086, 0.32112005353, 0.734345197678, -0.631953060627, 0.403079271317, 0.661482214928, -0.572076201439, 0.437779724598, 0.693162620068, -0.536165058613, 0.356047451496, 0.76495295763, -0.405411571264, 0.562066197395, 0.720499396324, -0.368384748697, 0.477114915848, 0.797528147697, -0.232668727636, 0.660617530346, 0.71333450079, -0.196567639709, 0.574577510357, 0.794115126133, -0.17647369206, 0.671852111816, 0.718934774399, -0.13840419054, 0.58646184206, 0.797686040401, -0.524049699306, 0.143481701612, 0.839154481888, -0.561493396759, 0.236564546824, 0.792564630508, -0.498826354742, 0.26607966423, 0.824481964111, -0.460204988718, 0.17203605175, 0.870638012886, -0.329620420933, 0.38343718648, 0.862393498421, -0.288438856602, 0.282527655363, 0.914536714554, -0.157098561525, 0.47886633873, 0.863367199898, -0.116651766002, 0.374363929033, 0.919587254524, -0.0990234911442, 0.483359992504, 0.869455397129, -0.0563224852085, 0.380020201206, 0.922934234142, -0.445277512074, -0.0411470532417, 0.894109010696, -0.485773295164, 0.0527502894402, 0.872145533562, -0.419908195734, 0.0756646692753, 0.904072999954, -0.379244476557, -0.0204058587551, 0.924744606018, -0.246365576982, 0.178365111351, 0.952305436134, -0.202949717641, 0.0712852776051, 0.976282119751, -0.0744457170367, 0.263682365417, 0.961418628693, -0.0329980365932, 0.149448871613, 0.987913608551, -0.015378555283, 0.260830193758, 0.964949607849, 0.027259465307, 0.148792058229, 0.988187551498, -0.360298156738, -0.214525222778, 0.907501935959, -0.404827713966, -0.125607043505, 0.905391573906, -0.336433380842, -0.113919526339, 0.934467792511, -0.293836236, -0.20447319746, 0.933406054974, -0.160118624568, -0.0348341166973, 0.98617708683, -0.117880396545, -0.139399915934, 0.982887148857, 0.00768812792376, 0.0336064398289, 0.999103307724, 0.0458181649446, -0.0802940428257, 0.995414376259, 0.0648633018136, 0.0252623856068, 0.997271776199, 0.102053180337, -0.084648758173, 0.990866780281, -0.265850692987, -0.368642598391, 0.890406012535, -0.316537380219, -0.285828590393, 0.904157876968, -0.248603910208, -0.289473593235, 0.92401188612, -0.203135639429, -0.370301157236, 0.906095266342, -0.0772799551487, -0.239989489317, 0.967382788658, -0.0392685383558, -0.33442696929, 0.941282629967, 0.0801785886288, -0.191204309464, 0.977961659431, 0.110575601459, -0.295750677586, 0.948525488377, 0.132045120001, -0.201054245234, 0.97032892704, 0.159188911319, -0.300265282393, 0.940157055855, -0.158066257834, -0.502507269382, 0.849645316601, -0.216329678893, -0.424530804157, 0.878846585751, -0.155000180006, -0.443939894438, 0.882206439972, -0.105528131127, -0.513706862926, 0.851095974445, -0.00283576361835, -0.423519074917, 0.90554946661, 0.0293888244778, -0.502335309982, 0.863824129105, 0.13459135592, -0.39325222373, 0.909194350243, 0.153569608927, -0.482382297516, 0.862043619156, 0.178216174245, -0.40170365572, 0.897924721241, 0.191822052002, -0.485767304897, 0.852426588535, -0.0704294294119, -0.561133563519, 0.824358046055, -0.100746572018, -0.528658330441, 0.842476546764, -0.0568262375891, -0.558136463165, 0.827436089516, -0.00341841741465, -0.567224681377, 0.82318931818, 0.0583455748856, -0.559756934643, 0.826234519482, 0.0863555148244, -0.571373403072, 0.815764605999, 0.165347069502, -0.542541086674, 0.823229372501, 0.184963136911, -0.55794942379, 0.808626770973, 0.198727980256, -0.545107364655, 0.814101099968, 0.202623799443, -0.555942118168, 0.805771648884, -0.96390080452, 0.23884986341, -0.115072235465, -0.95175153017, 0.270532280207, -0.14275187254, -0.921337723732, 0.339738428593, -0.187381401658, -0.935851335526, 0.319465517998, -0.146698698401, -0.940293967724, 0.287478148937, -0.180553466082, -0.885538518429, 0.407556891441, -0.221620067954, -0.736207604408, 0.601408302784, -0.309356570244, -0.798082947731, 0.538974225521, -0.268265008926, -0.821339905262, 0.526012122631, -0.219335719943, -0.643058776855, 0.687119483948, -0.337251156569, -0.680661439896, 0.677169501781, -0.278455853462, -0.583091855049, 0.725256979465, -0.365243732929, -0.56115847826, 0.735697805882, -0.378478705883, -0.60681271553, 0.70196890831, -0.372040629387, -0.643535614014, 0.705639898777, -0.295517742634, -0.976869940758, 0.211311161518, -0.0216723456979, -0.971360623837, 0.229489684105, -0.0564803481102, -0.945913314819, 0.309995353222, -0.092447668314, -0.952465295792, 0.300972104073, -0.0402794480324, -0.839431464672, 0.521509468555, -0.150925382972, -0.843558192253, 0.531117618084, -0.0756352692842, -0.699617683887, 0.687552332878, -0.192878738046, -0.70156109333, 0.705010056496, -0.10084053874, -0.667101562023, 0.713673472404, -0.212228924036, -0.661238253117, 0.742065906525, -0.107234627008, -0.979312181473, 0.185752913356, 0.0764163285494, -0.978867352009, 0.199798643589, 0.0359942317009, -0.955707371235, 0.292793571949, 0.01708984375, -0.956478118896, 0.281106084585, 0.0743242427707, -0.842625558376, 0.537827551365, -0.0109643936157, -0.841000020504, 0.536047041416, 0.0690567344427, -0.680535435677, 0.732164859772, -0.0142618715763, -0.659434854984, 0.74903178215, 0.0591045618057, -0.63731354475, 0.770212352276, -0.000535845756531, -0.603945612907, 0.794035077095, 0.0644479691982, -0.970146000385, 0.156734660268, 0.183432593942, -0.975634336472, 0.171269267797, 0.134908258915, -0.953373074532, 0.268089026213, 0.136397778988, -0.946677088737, 0.251540035009, 0.199817672372, -0.837768912315, 0.525275349617, 0.147057563066, -0.829028606415, 0.507380783558, 0.233822390437, -0.650148689747, 0.74403834343, 0.152020126581, -0.63969284296, 0.72695338726, 0.248450949788, -0.582913935184, 0.796764314175, 0.157394468784, -0.572465062141, 0.779000759125, 0.254632115364, -0.945633351803, 0.118708148599, 0.301796853542, -0.95956915617, 0.138003319502, 0.244087278843, -0.935077548027, 0.231905966997, 0.266919374466, -0.91845959425, 0.207158431411, 0.336027503014, -0.815261781216, 0.482361316681, 0.319488525391, -0.794636964798, 0.448314607143, 0.408609628677, -0.624771296978, 0.697632312775, 0.349809378386, -0.604996263981, 0.656777620316, 0.449465245008, -0.557007730007, 0.747808098793, 0.360446095467, -0.537287712097, 0.704642176628, 0.462815195322, -0.899473309517, 0.0656486749649, 0.431316703558, -0.925824344158, 0.0939352363348, 0.365270674229, -0.895588457584, 0.17799025774, 0.406985104084, -0.865766465664, 0.141703188419, 0.479338228703, -0.767823040485, 0.405422508717, 0.495456337929, -0.73390930891, 0.352657496929, 0.580005824566, -0.580480694771, 0.602375030518, 0.547341704369, -0.551272451878, 0.535807192326, 0.639066040516, -0.513190984726, 0.646938621998, 0.563472807407, -0.486199170351, 0.575554132462, 0.657072544098, -0.823360264301, -0.00887393951416, 0.566916763783, -0.866957128048, 0.0324561744928, 0.496716976166, -0.828428864479, 0.100120767951, 0.550525724888, -0.782282710075, 0.0496486127377, 0.620455622673, -0.693119645119, 0.289492577314, 0.659677743912, -0.646501719952, 0.218055099249, 0.730673313141, -0.518544375896, 0.455848306417, 0.722986578941, -0.482054412365, 0.365099668503, 0.796066522598, -0.455787301064, 0.491945415735, 0.741380095482, -0.424121886492, 0.393554091454, 0.815249800682, -0.71022850275, -0.110199719667, 0.694858074188, -0.774373114109, -0.05305108428, 0.630021691322, -0.728430986404, -0.0062755048275, 0.68464922905, -0.665269076824, -0.0715997815132, 0.742755651474, -0.593723654747, 0.135580033064, 0.792783498764, -0.538175463676, 0.0487683415413, 0.84106194973, -0.443877905607, 0.264146238565, 0.855917572975, -0.403921991587, 0.155398070812, 0.901162803173, -0.390419065952, 0.289723515511, 0.873516201973, -0.357497990131, 0.171265244484, 0.917746782303, -0.562574088573, -0.238998860121, 0.791066050529, -0.643752574921, -0.166686683893, 0.746454596519, -0.596892774105, -0.141233325005, 0.789410531521, -0.521679461002, -0.218829870224, 0.824233055115, -0.479081302881, -0.0481142103672, 0.876106381416, -0.421392709017, -0.143918514252, 0.895048618317, -0.364429950714, 0.0420247912407, 0.929957151413, -0.326064497232, -0.0754751861095, 0.942009449005, -0.324127107859, 0.0568844974041, 0.943981766701, -0.293620318174, -0.0702515542507, 0.953020095825, -0.402019590139, -0.388476639986, 0.828771710396, -0.485184460878, -0.306293487549, 0.818642735481, -0.44749584794, -0.298186004162, 0.842750489712, -0.372839421034, -0.382681399584, 0.844950795174, -0.364143013954, -0.247051358223, 0.897641897202, -0.312769532204, -0.343830138445, 0.885071754456, -0.290293335915, -0.190972328186, 0.937365889549, -0.258797824383, -0.306534409523, 0.915672421455, -0.264751017094, -0.183981478214, 0.946284115314, -0.240273430943, -0.307618141174, 0.920346021652, -0.267264276743, -0.547666609287, 0.792481601238, -0.329590469599, -0.463395059109, 0.822211682796, -0.308138936758, -0.466196209192, 0.828919649124, -0.252261787653, -0.55166041851, 0.794626951218, -0.266787409782, -0.444169819355, 0.854946792126, -0.231535062194, -0.534933447838, 0.812178730965, -0.232283830643, -0.414083987474, 0.879758358002, -0.213112622499, -0.517507731915, 0.828350841999, -0.220423415303, -0.41070497036, 0.884381890297, -0.206318676472, -0.521050572395, 0.827849984169, -0.218981847167, -0.638208210468, 0.737654149532, -0.227869167924, -0.612784862518, 0.756284594536, -0.223517492414, -0.61431145668, 0.756344556808, -0.220962256193, -0.637542426586, 0.737639129162, -0.214899092913, -0.605739057064, 0.765698730946, -0.216144695878, -0.624594330788, 0.750039458275, -0.20879393816, -0.589459955692, 0.77996045351, -0.22409529984, -0.618313252926, 0.752904593945, -0.208098143339, -0.580462694168, 0.786863327026, -0.214926078916, -0.608341217041, 0.763625383377, -0.838399767876, -0.203304618597, -0.505123496056, -0.836979210377, -0.17374150455, -0.518339395523, -0.855546593666, -0.0935594141483, -0.508609414101, -0.864691793919, -0.128119289875, -0.485067486763, -0.838146865368, -0.1401027143, -0.526570916176, -0.853612184525, -0.0753135681152, -0.514849483967, -0.873823046684, 0.15312474966, -0.460849821568, -0.879078507423, 0.143799558282, -0.453803956509, -0.896423280239, 0.115807011724, -0.427096009254, -0.845918476582, 0.378365725279, -0.375042706728, -0.866024374962, 0.357851862907, -0.348337769508, -0.833248376846, 0.405364602804, -0.375197678804, -0.811537921429, 0.468718409538, -0.348002851009, -0.819888412952, 0.450784862041, -0.352097630501, -0.842644512653, 0.432568341494, -0.319737404585, -0.865388631821, -0.258489906788, -0.428580582142, -0.851614773273, -0.236639529467, -0.467065960169, -0.880448043346, -0.155787944794, -0.447142958641, -0.896320283413, -0.178304150701, -0.405234634876, -0.917532861233, 0.0935850441456, -0.385708481073, -0.936681091785, 0.0781158953905, -0.340474188328, -0.887947797775, 0.342443555593, -0.306065529585, -0.907621860504, 0.329279541969, -0.259216725826, -0.864133059978, 0.418058753014, -0.279101729393, -0.883834064007, 0.406366229057, -0.230434402823, -0.893147289753, -0.293941229582, -0.339532464743, -0.878640651703, -0.275787711143, -0.389009475708, -0.912212491035, -0.194640219212, -0.359693348408, -0.926534175873, -0.210389465094, -0.310912102461, -0.954505681992, 0.0633002743125, -0.290357291698, -0.969396173954, 0.0532240271568, -0.238400995731, -0.923721015453, 0.319310545921, -0.210183501244, -0.938128709793, 0.307933986187, -0.156486719847, -0.90063893795, 0.394989669323, -0.179520785809, -0.913595020771, 0.385250627995, -0.127759411931, -0.915755391121, -0.322421610355, -0.238395988941, -0.904961705208, -0.302895516157, -0.297816067934, -0.939642190933, -0.222917661071, -0.258410960436, -0.949743211269, -0.237099379301, -0.202896714211, -0.982378304005, 0.0396612286568, -0.180986344814, -0.991704404354, 0.0298280902207, -0.122591972351, -0.94870442152, 0.298273921013, -0.101924195886, -0.957418859005, 0.284577041864, -0.0419782176614, -0.925298511982, 0.372143596411, -0.0687516331673, -0.932197391987, 0.3608700037, -0.013272896409, -0.927636802197, -0.351434886456, -0.12401355058, -0.92472666502, -0.327094197273, -0.19309669733, -0.957238912582, -0.250256419182, -0.143042802811, -0.960178971291, -0.266521513462, -0.0801198035479, -0.99793356657, 0.0134698338807, -0.0578237362206, -0.999668061733, -0.000241835135967, 0.00775946630165, -0.961979448795, 0.271387040615, 0.0184594243765, -0.96375888586, 0.251556992531, 0.085341617465, -0.937757670879, 0.342297613621, 0.0532838106155, -0.938186585903, 0.325760602951, 0.114375442266, -0.921782553196, -0.3868881464, 0.00559087097645, -0.931757569313, -0.354785859585, -0.0731522887945, -0.958447515965, -0.283953249454, -0.0120474547148, -0.949956119061, -0.305705666542, 0.059350579977, -0.996157169342, -0.0232682731003, 0.0807837024331, -0.986580967903, -0.0454206839204, 0.15488922596, -0.960630893707, 0.230500385165, 0.153145745397, -0.952515304089, 0.199657678604, 0.228576958179, -0.935502409935, 0.297500133514, 0.189011931419, -0.927079975605, 0.270149409771, 0.258723855019, -0.88751989603, -0.434137880802, 0.152410969138, -0.917484819889, -0.391756653786, 0.0643741488457, -0.93338906765, -0.331019043922, 0.136411815882, -0.906401216984, -0.361695736647, 0.216817528009, -0.967852652073, -0.0797667056322, 0.237263336778, -0.939770162106, -0.116064935923, 0.320557177067, -0.937417864799, 0.164574295282, 0.305873602629, -0.912645339966, 0.115702047944, 0.391264796257, -0.911563694477, 0.226281657815, 0.342408597469, -0.887620985508, 0.178983926773, 0.42366206646, -0.807931005955, -0.497002899647, 0.315645694733, -0.868337750435, -0.443362057209, 0.220941290259, -0.865964472294, -0.397998809814, 0.3018258214, -0.809365570545, -0.439897149801, 0.388348728418, -0.895643472672, -0.167488396168, 0.411298751831, -0.836396336555, -0.223896369338, 0.499707043171, -0.875891387463, 0.0579069107771, 0.478389501572, -0.820794045925, -0.0177648365498, 0.570419669151, -0.849430382252, 0.111305356026, 0.515242397785, -0.795134842396, 0.0313101112843, 0.605125188828, -0.660554528236, -0.573292851448, 0.484147787094, -0.763765335083, -0.51205933094, 0.392242491245, -0.732998609543, -0.487072885036, 0.474202811718, -0.634895265102, -0.537238717079, 0.554688453674, -0.750980198383, -0.29714423418, 0.589178025723, -0.645785927773, -0.37352514267, 0.665459036827, -0.745142996311, -0.106183886528, 0.657938301563, -0.640722453594, -0.212431788445, 0.73739027977, -0.717478275299, -0.0666907429695, 0.692945718765, -0.612195134163, -0.184611231089, 0.768460869789, -0.432793259621, -0.647579431534, 0.626679778099, -0.582084178925, -0.590672552586, 0.558283388615, -0.516433000565, -0.586693823338, 0.623284757137, -0.379426389933, -0.632364988327, 0.674942135811, -0.508461415768, -0.461680561304, 0.726439595222, -0.362811416388, -0.538413405418, 0.760180354118, -0.512421190739, -0.324340999126, 0.794746935368, -0.358240783215, -0.441178709269, 0.822448611259, -0.485523372889, -0.301177024841, 0.820338249207, -0.333070397377, -0.428742438555, 0.839428424835, -0.153076782823, -0.694760143757, 0.702332794666, -0.326097518206, -0.65690356493, 0.6793628335, -0.236404597759, -0.667808234692, 0.70536595583, -0.0899544283748, -0.694407224655, 0.713514447212, -0.198933914304, -0.61254799366, 0.764595985413, -0.0556129030883, -0.661488294601, 0.747486233711, -0.202286884189, -0.539996862411, 0.816627383232, -0.0461702533066, -0.62509816885, 0.778791725636, -0.18760535121, -0.52661293745, 0.828781664371, -0.0363237299025, -0.618486166, 0.784571051598, 0.00285261846147, -0.69004458189, 0.723343551159, -0.0693216621876, -0.678825974464, 0.730607271194, 0.0123677644879, -0.698077142239, 0.715493857861, 0.0540809631348, -0.682973742485, 0.728023052216, 0.0574262551963, -0.693330585957, 0.717907130718, 0.0833650231361, -0.696033775806, 0.712729752064, 0.0536325015128, -0.671915054321, 0.738274931908, 0.0866774171591, -0.693001687527, 0.715283930302, 0.0443813949823, -0.663131713867, 0.746781468391, 0.0771100074053, -0.681390166283, 0.727432370186, -0.822735488415, -0.0357631146908, -0.566766858101, -0.850254237652, 0.0482963323593, -0.523575842381, -0.830087304115, 0.080749809742, -0.551209509373, -0.827779948711, -0.00141999125481, -0.560512661934, -0.84553861618, 0.147334471345, -0.512594223022, -0.848639667034, 0.17613376677, -0.498179554939, -0.834928810596, 0.19434531033, -0.514314651489, -0.826227426529, 0.154129445553, -0.541284501553, -0.850973904133, 0.0957687646151, -0.515817224979, -0.839444458485, 0.219732627273, -0.496434032917, -0.864820837975, 0.186127796769, -0.46565836668, -0.829025626183, 0.239427700639, -0.504764616489, -0.831133008003, 0.251139163971, -0.495524346828, -0.844377934933, 0.237003415823, -0.479845076799, -0.874285936356, 0.208080142736, -0.437861770391, -0.851269841194, -0.164348348975, -0.4977196455, -0.846712231636, -0.114504411817, -0.519002258778, -0.850051283836, -0.0681131333113, -0.521699428558, -0.867458999157, -0.12366065383, -0.481268614531, -0.877572000027, 0.0436392128468, -0.476821988821, -0.907804846764, -0.00204403698444, -0.418667554855, -0.901072859764, 0.14589394629, -0.407650887966, -0.929419279099, 0.114820316434, -0.349847316742, -0.909339308739, 0.173319637775, -0.377438008785, -0.935981273651, 0.148881047964, -0.318072915077, -0.880349099636, -0.251750946045, -0.401250779629, -0.86949133873, -0.217306375504, -0.442898213863, -0.886866152287, -0.168980941176, -0.429314315319, -0.901972591877, -0.207860216498, -0.377670884132, -0.929749131203, -0.0380858033895, -0.365393638611, -0.95005607605, -0.0703098773956, -0.303060472012, -0.954061865807, 0.0870345160365, -0.285634726286, -0.972044467926, 0.0646101757884, -0.224393218756, -0.959664165974, 0.123833596706, -0.251208126545, -0.975304424763, 0.106610804796, -0.191862046719, -0.901918530464, -0.313620269299, -0.295941591263, -0.8922945261, -0.287575155497, -0.347143143415, -0.915684401989, -0.239794582129, -0.321585863829, -0.925543427467, -0.267959058285, -0.266391575336, -0.964358687401, -0.09667339921, -0.245074987411, -0.975003480911, -0.119472905993, -0.185717895627, -0.985583245754, 0.0442886129022, -0.161433249712, -0.994143784046, 0.0268109031022, -0.101766258478, -0.98778963089, 0.0875975340605, -0.126465797424, -0.994469583035, 0.0738245993853, -0.0705399960279, -0.897040009499, -0.366275370121, -0.246086671948, -0.908720552921, -0.336981207132, -0.245083957911, -0.926630079746, -0.294221132994, -0.232781678438, -0.913003265858, -0.316646337509, -0.256040632725, -0.97667402029, -0.119421944022, -0.176757618785, -0.98032194376, -0.112378068268, -0.160426557064, -0.997433781624, 0.0327017232776, -0.0587610527873, -0.99673897028, 0.0700469389558, -0.0316473394632, -0.9979596138, 0.0580750629306, -0.0100428685546, -0.995092451572, 0.09567900002, 0.00569050386548, -0.836517393589, -0.420023143291, -0.351019978523, -0.861994683743, -0.429322302341, -0.268409907818, -0.898085713387, -0.328077942133, -0.291895836592, -0.902764320374, -0.284731030464, -0.321465909481, -0.983981728554, -0.0900826007128, -0.151862129569, -0.992831110954, -0.0343019366264, -0.111831218004, -0.992933154106, 0.115185216069, -0.0145631022751, -0.990385830402, 0.135475084186, 0.0133691616356, -0.988054573536, 0.144256427884, 0.048315603286, -0.984155774117, 0.170412510633, 0.042353503406, -0.8230214715, -0.563492774963, -0.0671447217464, -0.830311179161, -0.4835729599, -0.275929629803, -0.930967867374, -0.334356039762, -0.144572347403, -0.892483472824, -0.446397185326, 0.0599969625473, -0.998843252659, -0.0382681414485, 0.0156337786466, -0.977429807186, -0.112560987473, 0.177080512047, -0.981577455997, 0.121277362108, 0.145578026772, -0.946780025959, 0.129381924868, 0.293707281351, -0.963420987129, 0.122906863689, 0.236875444651, -0.932692229748, 0.15185213089, 0.326224476099, -0.768451869488, -0.603286802769, 0.211950957775, -0.828906595707, -0.556004047394, 0.0563018620014, -0.84888458252, -0.494298696518, 0.185632929206, -0.803066492081, -0.510480821133, 0.306413471699, -0.914722681046, -0.195130050182, 0.35299038887, -0.821355879307, -0.24656355381, 0.51378685236, -0.889624297619, 0.0515796095133, 0.453105151653, -0.812984406948, -0.0379445552826, 0.580527663231, -0.882040560246, 0.111802250147, 0.457056969404, -0.844882845879, -0.00799229741096, 0.534326672554, -0.731171190739, -0.597214639187, 0.328815698624, -0.769957482815, -0.586819767952, 0.249407678843, -0.775846719742, -0.501970410347, 0.381423771381, -0.753819286823, -0.48461663723, 0.443057179451, -0.77681440115, -0.270909130573, 0.5679474473, -0.769797503948, -0.286639392376, 0.569775938988, -0.829248547554, -0.0961986333132, 0.549989879131, -0.819287538528, -0.163389652967, 0.549060106277, -0.88604336977, -0.0499633997679, 0.46024698019, -0.847315132618, -0.136224836111, 0.512734174728, -0.60712659359, -0.611596286297, 0.506698906422, -0.698819935322, -0.597359597683, 0.392694354057, -0.6909943223, -0.505460381508, 0.51617205143, -0.577165663242, -0.540323734283, 0.611822247505, -0.698011159897, -0.349679380655, 0.624420404434, -0.609988749027, -0.409083425999, 0.678204119205, -0.771673858166, -0.234995990992, 0.590502619743, -0.676899552345, -0.312129735947, 0.666165828705, -0.812166750431, -0.193177640438, 0.549967885017, -0.712229907513, -0.27328646183, 0.646095871925, -0.166431725025, -0.624321460724, 0.762836575508, -0.489024311304, -0.61806333065, 0.615019202232, -0.401007890701, -0.580160737038, 0.708521962166, -0.0939201340079, -0.599210977554, 0.794682979584, -0.417086035013, -0.48738181591, 0.76674246788, -0.132016122341, -0.544262588024, 0.828097879887, -0.50852638483, -0.39962631464, 0.76229673624, -0.225219964981, -0.485464334488, 0.844390869141, -0.596583843231, -0.34482884407, 0.724277257919, -0.359564393759, -0.449522256851, 0.817337155342, 0.212173908949, -0.57258605957, 0.791532874107, 0.114429444075, -0.58913308382, 0.799514472485, 0.152808830142, -0.57891112566, 0.800567209721, 0.257836133242, -0.555996060371, 0.789800405502, 0.156744658947, -0.552221179008, 0.81846177578, 0.235985726118, -0.548062443733, 0.802080750465, 0.0177892260253, -0.537911534309, 0.842455506325, 0.107378557324, -0.573506772518, 0.8117608428, -0.189990609884, -0.52049779892, 0.832094669342, -0.0522447191179, -0.538232386112, 0.840817034245, -0.968401491642, -0.0672920793295, -0.238885864615, -0.986898899078, 0.027775414288, -0.157018572092, -0.974892556667, 0.0345600694418, -0.218602970243, -0.966664016247, -0.050293803215, -0.249854534864, -0.978897333145, 0.118737138808, -0.164493322372, -0.975993275642, 0.117692455649, -0.181611135602, -0.967034876347, 0.0685616880655, -0.244006291032, -0.96152561903, 0.0416835099459, -0.270418345928, -0.968760371208, -0.00304544717073, -0.246759474277, -0.945367515087, 0.310057342052, -0.0976728945971, -0.953549981117, 0.291365981102, -0.0724255293608, -0.942011535168, 0.319696426392, -0.0990181863308, -0.785741627216, 0.604790329933, 0.127418503165, -0.794615983963, 0.595673024654, 0.114694342017, -0.805137813091, 0.578548312187, 0.128186255693, -0.946381151676, -0.217349365354, -0.237737193704, -0.96548640728, -0.156223803759, -0.206945508718, -0.963660955429, -0.120575577021, -0.237097382545, -0.954852581024, -0.182536870241, -0.233096599579, -0.971157670021, -0.0420083031058, -0.233418494463, -0.976171195507, -0.0838014930487, -0.198652997613, -0.961501598358, 0.268954753876, -0.0507370829582, -0.968321502209, 0.247723177075, -0.0195890814066, -0.817570984364, 0.560782670975, 0.12843516469, -0.828278839588, 0.538873195648, 0.151542231441, -0.920982837677, -0.326324403286, -0.211422130466, -0.93630617857, -0.285186856985, -0.203460544348, -0.947844743729, -0.235660821199, -0.213192611933, -0.938338577747, -0.28236669302, -0.197955220938, -0.97660702467, -0.116989657283, -0.178744003177, -0.977111816406, -0.152938812971, -0.145799964666, -0.97436773777, 0.223612457514, 0.000863835215569, -0.978659391403, 0.201525136828, 0.0317580103874, -0.841434836388, 0.518338441849, 0.150691479445, -0.850665032864, 0.494139760733, 0.17773732543, -0.89573353529, -0.408982485533, -0.172599881887, -0.907662808895, -0.37907153368, -0.178464114666, -0.929530262947, -0.323825180531, -0.174662232399, -0.919592261314, -0.360992968082, -0.153071761131, -0.975314378738, -0.182837754488, -0.121357344091, -0.972316324711, -0.214527189732, -0.0893002152443, -0.98252928257, 0.176682636142, 0.0530587770045, -0.984058797359, 0.154017478228, 0.0854535847902, -0.862702429295, 0.472278356552, 0.179147899151, -0.879017472267, 0.436745047569, 0.189676687121, -0.87135887146, -0.473632961512, -0.125710040331, -0.881334781647, -0.450090050697, -0.14164622128, -0.909870147705, -0.394160926342, -0.127156600356, -0.899223446846, -0.42503964901, -0.100671604276, -0.967910647392, -0.242643713951, -0.0605799928308, -0.952844142914, -0.288161933422, -0.0919066295028, -0.992692112923, 0.107040666044, 0.0500127896667, -0.996286034584, 0.0691510140896, 0.0450423918664, -0.923399090767, 0.365283668041, 0.115317180753, -0.912390470505, 0.368494689465, 0.176495671272, -0.847753942013, -0.525084376335, -0.070683836937, -0.857451975346, -0.504938483238, -0.0959689319134, -0.876311302185, -0.470547914505, -0.100298702717, -0.855938494205, -0.512906074524, -0.0607606470585, -0.941904485226, -0.327391117811, -0.0708949863911, -0.924890697002, -0.379152476788, 0.0147111564875, -0.988891303539, 0.0562949925661, 0.135357111692, -0.97735786438, 0.0298928841949, 0.208024173975, -0.896971106529, 0.363188326359, 0.250866234303, -0.88980525732, 0.334052085876, 0.309922397137, -0.82357019186, -0.566670894623, -0.00365665555, -0.835399627686, -0.547624588013, -0.0401370823383, -0.844640851021, -0.534244656563, -0.0236732661724, -0.830457210541, -0.556285977364, 0.0167989134789, -0.911738634109, -0.405849397182, 0.0584360361099, -0.896799147129, -0.429369330406, 0.103870630264, -0.968328475952, 0.00512064993382, 0.248415961862, -0.952138483524, -0.0210946202278, 0.303947210312, -0.887768864632, 0.311258018017, 0.338203847408, -0.824660897255, 0.306421428919, 0.474802583456, -0.793571293354, -0.602011203766, 0.0849904716015, -0.812565565109, -0.581495404243, 0.0315809547901, -0.815202772617, -0.573351860046, 0.0781607031822, -0.807166159153, -0.572489023209, 0.141899138689, -0.850892007351, -0.48008698225, 0.211884006858, -0.822513580322, -0.49344098568, 0.281750917435, -0.899655282497, -0.0281008332968, 0.435002624989, -0.836818218231, -0.0591384321451, 0.543721795082, -0.718448996544, 0.349055588245, 0.601155400276, -0.729688644409, 0.325167775154, 0.601013481617, -0.738394021988, -0.637706339359, 0.21794514358, -0.779510557652, -0.61163020134, 0.132919833064, -0.774656057358, -0.595126211643, 0.212434828281, -0.71957463026, -0.625724971294, 0.300128340721, -0.809836387634, -0.480027019978, 0.336357414722, -0.737545192242, -0.517456710339, 0.433199167252, -0.792904496193, -0.0617581307888, 0.605709075928, -0.741372048855, -0.064687371254, 0.667517364025, -0.668568074703, 0.251484036446, 0.699405789375, -0.591208398342, 0.265982687473, 0.761000096798, -0.572645008564, -0.684624195099, 0.450291991234, -0.699084877968, -0.64956176281, 0.297901034355, -0.631677210331, -0.654742181301, 0.414357841015, -0.474660634995, -0.684865117073, 0.552315235138, -0.609780848026, -0.563995659351, 0.556301891804, -0.418895453215, -0.600379705429, 0.680783390999, -0.616268873215, -0.119074046612, 0.778093934059, -0.412795335054, -0.205706894398, 0.886950075626, -0.544219613075, 0.25456610322, 0.799010634422, -0.331835776567, 0.0862723588943, 0.939062356949, 0.0381310805678, -0.65819722414, 0.751478016376, -0.39135876298, -0.70066434145, 0.596073925495, -0.216484606266, -0.689229786396, 0.691008269787, 0.134218454361, -0.628478229046, 0.765765726566, -0.125380143523, -0.607870399952, 0.783690273762, 0.186454683542, -0.574420571327, 0.796663403511, -0.144408389926, -0.284820944071, 0.947321891785, 0.155956894159, -0.357453018427, 0.920490026474, -0.0156979579479, -0.107767432928, 0.993748784065, 0.224437206984, -0.226142704487, 0.94756680727, 0.398808538914, -0.541791319847, 0.739466667175, 0.305137813091, -0.575250267982, 0.758533835411, 0.384037017822, -0.548925220966, 0.742019832134, 0.466255187988, -0.505049407482, 0.725897729397, 0.416865110397, -0.512264251709, 0.750469326973, 0.468267560005, -0.499377161264, 0.728521883488, 0.355854511261, -0.403142154217, 0.842757403851, 0.425403505564, -0.480404913425, 0.766576468945, 0.242313817143, -0.245417863131, 0.938323616982, 0.297654122114, -0.31102013588, 0.902255535126, -0.886395275593, -0.126688733697, -0.444578707218, -0.914288878441, -0.0535003393888, -0.400760948658, -0.91084086895, 0.0101146548986, -0.411901593208, -0.90163064003, -0.0819666385651, -0.423956930637, -0.919110357761, 0.0491800457239, -0.39014518261, -0.922056555748, 0.104985296726, -0.371734768152, -0.9164031744, 0.167439430952, -0.3627204597, -0.913220226765, 0.137562453747, -0.382754385471, -0.927172005177, 0.0653281658888, -0.368077814579, -0.912045478821, 0.236559554935, -0.33408010006, -0.929102361202, 0.203095644712, -0.308085948229, -0.903038203716, 0.262433767319, -0.339185535908, -0.901371717453, 0.280665248632, -0.328864663839, -0.907454967499, 0.268719822168, -0.322041720152, -0.928517520428, 0.24080824852, -0.281537950039, -0.861800730228, -0.292980492115, -0.413349151611, -0.877318024635, -0.238464981318, -0.415744453669, -0.897196948528, -0.166364759207, -0.4083596766, -0.891880631447, -0.234364241362, -0.38603040576, -0.939199328423, 0.0080331414938, -0.34239757061, -0.951627552509, -0.0482488274574, -0.30244666338, -0.951620578766, 0.163194715977, -0.25919470191, -0.96829354763, 0.128720104694, -0.212684750557, -0.949186384678, 0.211253196001, -0.231977939606, -0.96718287468, 0.180304557085, -0.177325427532, -0.841128885746, -0.40512663126, -0.35745203495, -0.851228952408, -0.365651547909, -0.375638544559, -0.887247025967, -0.291688919067, -0.356519281864, -0.881828665733, -0.341353923082, -0.324425011873, -0.959469199181, -0.0926719009876, -0.265001952648, -0.965612351894, -0.136500760913, -0.219900563359, -0.982196331024, 0.0934482738376, -0.161103338003, -0.991540491581, 0.0610363632441, -0.111882209778, -0.980090022087, 0.151515230536, -0.125944957137, -0.989824056625, 0.120425619185, -0.0717093423009, -0.822857439518, -0.487146824598, -0.291529923677, -0.830849051476, -0.455915331841, -0.318162918091, -0.876581251621, -0.384027004242, -0.289005696774, -0.869912266731, -0.422953277826, -0.252504736185, -0.968337535858, -0.174384325743, -0.176944553852, -0.968351483345, -0.211419150233, -0.130359634757, -0.998177528381, 0.0298269931227, -0.0463378056884, -0.998976290226, 0.03553776443, 0.0133775603026, -0.997146844864, 0.0651040375233, 0.0292450655252, -0.989076256752, 0.118023350835, 0.0848269760609, -0.804712951183, -0.550587773323, -0.220648378134, -0.812609553337, -0.524574577808, -0.252750635147, -0.863011360168, -0.456820011139, -0.21429425478, -0.854228019714, -0.4888433218, -0.175281062722, -0.965247452259, -0.245983704925, -0.0847720950842, -0.959182262421, -0.279135704041, -0.0380598902702, -0.997441768646, 0.00231081992388, 0.067089535296, -0.99228233099, -0.0190079621971, 0.120045736432, -0.984651625156, 0.0967888683081, 0.143137767911, -0.976331055164, 0.0894514769316, 0.195376977324, -0.785469710827, -0.601042509079, -0.145542055368, -0.794364094734, -0.578780174255, -0.182742789388, -0.845063686371, -0.516743898392, -0.135052204132, -0.833559215069, -0.543923735619, -0.0933944135904, -0.949635207653, -0.31225168705, 0.00938038527966, -0.93723487854, -0.343202352524, 0.0565515160561, -0.983845889568, -0.0533819831908, 0.169095933437, -0.971341609955, -0.0893995016813, 0.218858912587, -0.9687743783, 0.0646470710635, 0.238104075193, -0.95651102066, 0.0239309668541, 0.289673507214, -0.764365077019, -0.641185343266, -0.0634361505508, -0.775297880173, -0.621840119362, -0.107814401388, -0.821595847607, -0.567337632179, -0.0500487685204, -0.806342482567, -0.590927481651, -0.00361314415932, -0.920010149479, -0.376234352589, 0.106891706586, -0.899881124496, -0.406291306019, 0.156646668911, -0.954547703266, -0.126272857189, 0.268868774176, -0.931993484497, -0.166334748268, 0.321117013693, -0.941335678101, -0.0132192969322, 0.33631542325, -0.918426573277, -0.059613481164, 0.39030110836, -0.739220738411, -0.67218798399, 0.0333407521248, -0.754718065262, -0.655157089233, -0.0237919986248, -0.790047347546, -0.610796451569, 0.0463488996029, -0.767904043198, -0.631799221039, 0.10270896554, -0.871690750122, -0.440594881773, 0.213137596846, -0.839222550392, -0.471306622028, 0.2701343894, -0.902545452118, -0.207557320595, 0.37646728754, -0.863807022572, -0.251070171595, 0.43611523509, -0.887642860413, -0.107668474317, 0.447094976902, -0.847825944424, -0.155129164457, 0.506481051445, -0.700488448143, -0.694572210312, 0.162119060755, -0.729088783264, -0.679308831692, 0.0797818899155, -0.741754949093, -0.649083971977, 0.166991561651, -0.702017009258, -0.668544054031, 0.244166225195, -0.791011035442, -0.508481383324, 0.339327484369, -0.732075870037, -0.541904389858, 0.412068575621, -0.812457621098, -0.300730168819, 0.498869359493, -0.739518642426, -0.359318494797, 0.568681240082, -0.798457860947, -0.207564309239, 0.564604461193, -0.778068006039, -0.269321650267, 0.566984772682, -0.604198515415, -0.708568990231, 0.363691151142, -0.681084275246, -0.695551872253, 0.22743730247, -0.645423054695, -0.684256315231, 0.338553756475, -0.548265337944, -0.700235545635, 0.456587135792, -0.63747549057, -0.582100152969, 0.504162669182, -0.508734345436, -0.616163909435, 0.600773513317, -0.65505117178, -0.435156583786, 0.617205619812, -0.488768398762, -0.525314331055, 0.696093797684, -0.726940393448, -0.357320100069, 0.585898041725, -0.512241303921, -0.478761404753, 0.712595760822, -0.210125535727, -0.688272178173, 0.693920433521, -0.517900586128, -0.706945419312, 0.481043696404, -0.382569432259, -0.70514601469, 0.596495807171, -0.102081172168, -0.674074411392, 0.731163144112, -0.297602117062, -0.640151619911, 0.707838177681, -0.017162816599, -0.631189346313, 0.77504992485, -0.275648742914, -0.573993682861, 0.770678162575, 0.0187861267477, -0.590092718601, 0.806743323803, -0.301235020161, -0.548304438591, 0.779753446579, -0.0249635595828, -0.576824784279, 0.816116452217, 0.172302946448, -0.599148035049, 0.781491994858, 0.0374297946692, -0.630073666573, 0.775242805481, 0.167070537806, -0.608677208424, 0.775239884853, 0.27201884985, -0.556461930275, 0.784698963165, 0.238163053989, -0.576352894306, 0.781338989735, 0.312921494246, -0.556202054024, 0.769490599632, 0.256219595671, -0.562214195728, 0.785915672779, 0.336704313755, -0.541726350784, 0.769778490067, 0.233040615916, -0.562066257, 0.793202459812, 0.338557749987, -0.541909277439, 0.768836796284, 0.894914746284, -0.0828807651997, -0.437782734632, 0.898570597172, -0.0541150420904, -0.434785664082, 0.90081590414, 0.0357993990183, -0.432025492191, 0.916110277176, 0.0116563886404, -0.40000218153, 0.906357228756, 0.121685251594, -0.403863012791, 0.904476821423, 0.140447571874, -0.40198558569, 0.89462774992, 0.138384222984, -0.424130916595, 0.890163123608, 0.0934746861458, -0.445272505283, 0.906312227249, 0.0340168178082, -0.420520991087, 0.907914817333, 0.118980079889, -0.401161819696, 0.891912639141, 0.146654710174, -0.42705899477, 0.884427905083, 0.164514288306, -0.436025261879, 0.884549856186, 0.170453518629, -0.433491080999, 0.89361512661, 0.161501213908, -0.418049693108, 0.913234174252, 0.138097271323, -0.382529437542, 0.894857764244, -0.2354888767, -0.378379702568, 0.908604562283, -0.196084797382, -0.367947876453, 0.905802369118, -0.130788490176, -0.402259469032, 0.903447151184, -0.176461696625, -0.389924228191, 0.920948803425, -0.019508227706, -0.388419687748, 0.937602758408, -0.0726684331894, -0.339139580727, 0.950659811497, 0.0457399785519, -0.305857598782, 0.931510686874, 0.0802144706249, -0.353907108307, 0.935530483723, 0.108068339527, -0.335410684347, 0.955375432968, 0.0774151235819, -0.284008204937, 0.889437377453, -0.351840764284, -0.290699213743, 0.910567998886, -0.307506144047, -0.275139868259, 0.911191821098, -0.254674106836, -0.322904497385, 0.894993722439, -0.306959301233, -0.322736531496, 0.94870442152, -0.117924384773, -0.292318701744, 0.957907676697, -0.164432346821, -0.234030306339, 0.981060683727, -0.0259828567505, -0.190373495221, 0.968141555786, 0.00868590921164, -0.249041765928, 0.972198367119, 0.046555146575, -0.228163078427, 0.985622286797, 0.0139975622296, -0.166578680277, 0.87430793047, -0.447839736938, -0.185529991984, 0.900575041771, -0.401744604111, -0.164203390479, 0.907569825649, -0.355988502502, -0.221324160695, 0.882330536842, -0.408956468105, -0.231612041593, 0.962326347828, -0.206237703562, -0.175469994545, 0.962170362473, -0.248342007399, -0.10932097584, 0.9933629632, -0.0974864587188, -0.0558826252818, 0.989948034286, -0.0624473430216, -0.124495401978, 0.994324624538, -0.0177207477391, -0.101987183094, 0.997899591923, -0.0514701530337, -0.0307152215391, 0.845491588116, -0.529132127762, -0.0675132125616, 0.87408798933, -0.483583927155, -0.0389071702957, 0.890040159225, -0.443362057209, -0.103224813938, 0.860224187374, -0.493929803371, -0.124274492264, 0.956446170807, -0.287977993488, -0.0409257411957, 0.944388747215, -0.326327443123, 0.0321878790855, 0.980777740479, -0.168189197779, 0.0958322584629, 0.99060177803, -0.133292734623, 0.0183636546135, 0.995299339294, -0.0836460366845, 0.0421859547496, 0.985224366188, -0.11772543937, 0.121941171587, 0.799109578133, -0.597514510155, 0.0616112947464, 0.826102495193, -0.554226577282, 0.0989082306623, 0.853693127632, -0.519423127174, 0.0283536463976, 0.824072122574, -0.565937042236, -0.00423601269722, 0.924850642681, -0.363599181175, 0.10882614553, 0.897537946701, -0.398116767406, 0.187949240208, 0.935236513615, -0.2369094491, 0.261922895908, 0.962719261646, -0.202873721719, 0.1772274822, 0.967581748962, -0.149736776948, 0.201892003417, 0.939512193203, -0.183470577002, 0.288187980652, 0.72923374176, -0.653124690056, 0.202589839697, 0.749192655087, -0.613171815872, 0.249251693487, 0.792637586594, -0.58432751894, 0.172289982438, 0.768893778324, -0.62604790926, 0.127526476979, 0.85956543684, -0.432230442762, 0.271513015032, 0.81190776825, -0.462442278862, 0.355455636978, 0.846192419529, -0.302541613579, 0.437976717949, 0.89723700285, -0.270025461912, 0.348493725061, 0.902443349361, -0.214678168297, 0.372698426247, 0.850852012634, -0.247851133347, 0.462620258331, 0.623211741447, -0.694426178932, 0.358854621649, 0.628821015358, -0.657996296883, 0.413547068834, 0.696738541126, -0.636764645576, 0.329365491867, 0.686231732368, -0.673829436302, 0.272829592228, 0.748112022877, -0.492118358612, 0.444458782673, 0.671375215054, -0.516884922981, 0.530548810959, 0.698280036449, -0.364092022181, 0.615823030472, 0.781678915024, -0.333822220564, 0.52624809742, 0.789215624332, -0.277774095535, 0.547153711319, 0.706355631351, -0.310623168945, 0.635586023331, 0.450945794582, -0.714866042137, 0.533863782883, 0.434713691473, -0.680615365505, 0.58922201395, 0.545009374619, -0.672430872917, 0.500197887421, 0.556905806065, -0.7063986063, 0.436179280281, 0.56879222393, -0.539248168468, 0.620550572872, 0.448971390724, -0.55525624752, 0.699650645256, 0.470092982054, -0.419233381748, 0.776307523251, 0.597861409187, -0.393073230982, 0.698177099228, 0.614793360233, -0.338998645544, 0.711692094803, 0.490653812885, -0.371347784996, 0.787881016731, 0.146775662899, -0.689833641052, 0.708506941795, 0.116705752909, -0.656761646271, 0.744608163834, 0.296466439962, -0.677479326725, 0.672700822353, 0.334537982941, -0.711606025696, 0.617330551147, 0.289522558451, -0.562613070011, 0.773976147175, 0.115327171981, -0.561586380005, 0.818972706795, 0.145405083895, -0.46053892374, 0.875303685665, 0.324489980936, -0.443772912025, 0.834965825081, 0.367146104574, -0.398058742285, 0.840327143669, 0.195114076138, -0.42683711648, 0.882687449455, -0.341333925724, -0.559970915318, 0.754533112049, -0.330545157194, -0.546315014362, 0.769204676151, -0.0928369536996, -0.617491483688, 0.780693173409, -0.066550001502, -0.644317388535, 0.761460900307, -0.101681292057, -0.539685964584, 0.835341691971, -0.302952498198, -0.513257026672, 0.802610516548, -0.243998318911, -0.474676579237, 0.845306634903, -0.038141682744, -0.475181460381, 0.87871658802, 0.0509212203324, -0.452380359173, 0.890031158924, -0.1556609869, -0.468824386597, 0.869119524956, -0.557326674461, -0.467590749264, 0.685668885708, -0.544860422611, -0.476890951395, 0.689273834229, -0.490277916193, -0.493162065744, 0.718202054501, -0.516508996487, -0.485230445862, 0.705100059509, -0.464937567711, -0.479726076126, 0.743701338768, -0.503777801991, -0.475458443165, 0.720793306828, -0.415180623531, -0.519042253494, 0.746737480164, -0.372856408358, -0.487742692232, 0.788974761963, -0.250869244337, -0.504067778587, 0.826060414314, -0.340700089931, -0.502809166908, 0.794042229652, 0.70185303688, -0.395115673542, -0.592184126377, 0.764326155186, -0.318811714649, -0.559964895248, 0.745443880558, -0.300381243229, -0.594542384148, 0.689007937908, -0.365471601486, -0.625376105309, 0.684436202049, -0.36181974411, -0.632478952408, 0.734832048416, -0.302711606026, -0.606451809406, 0.864673793316, -0.0775682926178, -0.49570029974, 0.874331891537, -0.073918864131, -0.479035317898, 0.889660298824, -0.0915164351463, -0.446682095528, 0.940137028694, 0.146990597248, -0.306484431028, 0.926576137543, 0.165147125721, -0.337016224861, 0.92239433527, 0.174599260092, -0.343656212091, 0.921731591225, 0.254894018173, -0.291265010834, 0.925163567066, 0.245394915342, -0.28853186965, 0.93961918354, 0.225749790668, -0.256025671959, 0.718233048916, -0.473928838968, -0.50885027647, 0.776700377464, -0.421497672796, -0.467409819365, 0.771440982819, -0.378952503204, -0.510558784008, 0.697991192341, -0.470427900553, -0.539354085922, 0.912125468254, -0.12454739213, -0.389756292105, 0.921822607517, -0.179169893265, -0.34283643961, 0.975447356701, 0.0728356912732, -0.206380665302, 0.958398520947, 0.119937777519, -0.257845133543, 0.954180836678, 0.205417945981, -0.216189697385, 0.973690867424, 0.16333566606, -0.156980589032, 0.714253306389, -0.550612688065, -0.431351691484, 0.805751621723, -0.420296043158, -0.416548162699, 0.795613706112, -0.404368877411, -0.450422942638, 0.753802359104, -0.444694638252, -0.483141064644, 0.926036298275, -0.195177048445, -0.322116702795, 0.934793591499, -0.185842871666, -0.30169287324, 0.985040426254, 0.0461730472744, -0.164191409945, 0.981101632118, 0.0446423217654, -0.18666061759, 0.981717467308, 0.120832502842, -0.145002186298, 0.985708355904, 0.127219572663, -0.107656486332, 0.649306893349, -0.730660319328, -0.209600716829, 0.681121230125, -0.72162604332, -0.121351361275, 0.761579930782, -0.579115092754, -0.289859473705, 0.598501205444, -0.754146158695, -0.269176661968, 0.952433347702, -0.232330828905, -0.19567489624, 0.915553450584, -0.399313390255, -0.041326507926, 0.997519612312, -0.0542161241174, 0.0375786498189, 0.996484994888, 0.0291772875935, -0.0745825767517, 0.991227626801, 0.127362519503, -0.0253354534507, 0.995752155781, 0.0579796880484, 0.0671645104885, 0.710108458996, -0.624551355839, -0.324156105518, 0.779363572598, -0.493146061897, -0.385739505291, 0.754841923714, -0.625938951969, -0.194448292255, 0.784074187279, -0.567817509174, -0.24941265583, 0.880065202713, -0.469366252422, -0.0676557570696, 0.902620375156, -0.339304506779, -0.263712346554, 0.990032970905, -0.124197475612, -0.0616847649217, 0.988598406315, -0.145628005266, 0.0293727256358, 0.998522400856, -0.0363077372313, 0.0321101024747, 0.998061537743, 0.00513489171863, 0.0569394007325, 0.512459218502, -0.780008435249, -0.358285784721, 0.642795801163, -0.721149206161, -0.257202327251, 0.707536280155, -0.579037070274, -0.404355853796, 0.510257840157, -0.795830667019, -0.325095832348, 0.927176892757, -0.293138444424, -0.231966927648, 0.915925383568, -0.395326584578, 0.0647604465485, 0.965576410294, -0.0475893393159, 0.254546135664, 0.996964871883, -0.0455481410027, 0.0581552311778, 0.974682629108, 0.0523447841406, 0.215985760093, 0.955710351467, 0.0274806916714, 0.291989803314, 0.586588859558, -0.797859013081, -0.136860668659, 0.624967217445, -0.773693323135, 0.101045489311, 0.605886936188, -0.795031785965, -0.0148846209049, 0.5452272892, -0.766174614429, -0.339262545109, 0.774543046951, -0.543860673904, 0.322016716003, 0.778092980385, -0.565534174442, 0.27228474617, 0.870360136032, -0.296818345785, 0.392134577036, 0.90347212553, -0.185327023268, 0.385730475187, 0.932012498379, -0.00738242268562, 0.361515790224, 0.892578482628, -0.131321340799, 0.430644899607, 0.557635545731, -0.827908873558, -0.0548256933689, 0.658836960793, -0.747677147388, -0.0794278979301, 0.688498020172, -0.723558425903, -0.0427759587765, 0.612187087536, -0.790274262428, -0.00945246219635, 0.870673000813, -0.484910488129, 0.078659042716, 0.859176456928, -0.487598717213, 0.153163716197, 0.870982885361, -0.199233829975, 0.448430538177, 0.912761330605, -0.233459487557, 0.334303021431, 0.865614533424, -0.174645245075, 0.46862244606, 0.819110572338, -0.113519743085, 0.561754345894, 0.563525795937, -0.825717568398, -0.00505325198174, 0.46858844161, -0.856531381607, 0.2148860991, 0.575793087482, -0.81543970108, 0.054012298584, 0.530956685543, -0.841210842133, -0.0992297232151, 0.72575378418, -0.558567345142, 0.400849938393, 0.483976811171, -0.641952097416, 0.594188511372, 0.548899173737, -0.333563268185, 0.766055643559, 0.728686869144, -0.257479190826, 0.634126484394, 0.702312886715, -0.133960574865, 0.698719024658, 0.569980800152, -0.236045747995, 0.786638498306, 0.507110834122, -0.800368249416, 0.318819701672, 0.360676079988, -0.782084703445, 0.507594704628, 0.40079793334, -0.83147585392, 0.38393509388, 0.632118105888, -0.770789265633, 0.0755402743816, 0.289923429489, -0.671979010105, 0.681018292904, 0.318906664848, -0.666827619076, 0.673079669476, 0.32160487771, -0.495640277863, 0.806416392326, 0.398580640554, -0.431545615196, 0.808886647224, 0.480565875769, -0.325183779001, 0.814069151878, 0.32413110137, -0.394449859858, 0.859502434731, 0.121996156871, -0.763439416885, 0.633776545525, 0.0811558887362, -0.740263342857, 0.666947484016, 0.268329948187, -0.771812915802, 0.575934052467, 0.391156822443, -0.78383731842, 0.48165550828, 0.227603241801, -0.664963126183, 0.710927248001, 0.00491014681756, -0.650177598, 0.759368658066, -0.0434915646911, -0.534316599369, 0.843807041645, 0.191528141499, -0.511744439602, 0.837156116962, 0.168274179101, -0.434714734554, 0.884365856647, -0.0230681337416, -0.496673971415, 0.867282032967, -0.0884552821517, -0.699822664261, 0.708392977715, -0.1812312603, -0.636513769627, 0.749266684055, -0.10585103184, -0.683694541454, 0.721633017063, -0.0148433167487, -0.726564526558, 0.686497688293, -0.195845842361, -0.609223008156, 0.768041968346, -0.248296007514, -0.60126632452, 0.759093701839, -0.229126796126, -0.593924641609, 0.770811200142, -0.178252160549, -0.562672078609, 0.806859314442, -0.10737157613, -0.543236851692, 0.832322597504, -0.178751006722, -0.568414270878, 0.802714526653, 0.872979342937, -0.189661711454, -0.448699444532, 0.890935897827, -0.139806777239, -0.431374698877, 0.906129300594, -0.059405580163, -0.418085753918, 0.909898221493, -0.125319138169, -0.394685804844, 0.919544219971, -0.0334332883358, -0.390790969133, 0.9314686656, 0.0304604023695, -0.361710727215, 0.927761793137, 0.0973443090916, -0.359412431717, 0.92166864872, 0.0656047910452, -0.381600737572, 0.935396492481, 0.00363223254681, -0.352726459503, 0.952687203884, 0.141850158572, -0.267696142197, 0.936282157898, 0.166169792414, -0.308480829, 0.927824735641, 0.18483915925, -0.323067396879, 0.929404258728, 0.203482553363, -0.306919306517, 0.936424195766, 0.199491754174, -0.287592113018, 0.954335749149, 0.183587551117, -0.234380185604, 0.849802315235, -0.334761917591, -0.406406283379, 0.883881986141, -0.275513797998, -0.37714907527, 0.888060808182, -0.214559197426, -0.405842423439, 0.864947676659, -0.285938620567, -0.411704659462, 0.947279810905, -0.0465331524611, -0.316056549549, 0.959283232689, -0.0959847122431, -0.264495134354, 0.985681295395, 0.0801938697696, -0.14627879858, 0.972993135452, 0.109094046056, -0.201940000057, 0.972658157349, 0.160147637129, -0.166389733553, 0.985091507435, 0.13490024209, -0.103884615004, 0.83329731226, -0.434602677822, -0.340782046318, 0.876761198044, -0.371996641159, -0.303815245628, 0.881343781948, -0.327025234699, -0.340124309063, 0.842320621014, -0.398255676031, -0.362331539392, 0.965430438519, -0.135489076376, -0.221320152283, 0.969255268574, -0.173914477229, -0.172320947051, 0.998623371124, 0.0223551467061, -0.0405817404389, 0.994389593601, 0.0499675124884, -0.0899395346642, 0.992363333702, 0.110576599836, -0.0488345474005, 0.996155142784, 0.0839789360762, 0.0043145082891, 0.817439079285, -0.508291482925, -0.269869476557, 0.865664601326, -0.445425480604, -0.227195411921, 0.872252523899, -0.410434007645, -0.264795005322, 0.824996829033, -0.479715138674, -0.29774209857, 0.969405174255, -0.207264393568, -0.129191994667, 0.966998875141, -0.23910279572, -0.0844925791025, 0.997818648815, -0.0331929735839, 0.0515027455986, 0.999650120735, -0.00613749586046, 0.00766932312399, 0.996684908867, 0.0597101636231, 0.0495056472719, 0.994574606419, 0.0318943709135, 0.0959214270115, 0.800409317017, -0.564871430397, -0.199152857065, 0.850075244904, -0.503737807274, -0.151709184051, 0.858827531338, -0.475491344929, -0.188992902637, 0.808078944683, -0.541756391525, -0.23001152277, 0.961913466454, -0.268828809261, -0.0430058985949, 0.954679608345, -0.296611428261, -0.00195527076721, 0.986716985703, -0.0884566754103, 0.134016513824, 0.993416905403, -0.0609316974878, 0.0938382595778, 0.990608870983, 0.00745370984077, 0.134294435382, 0.983707845211, -0.0222773775458, 0.176689624786, 0.782281696796, -0.608975052834, -0.128767132759, 0.830392181873, -0.551346480846, -0.0765721797943, 0.841207921505, -0.527918577194, -0.114310458302, 0.79051220417, -0.589969754219, -0.162549883127, 0.944775700569, -0.324500977993, 0.0386479347944, 0.933193087578, -0.349941283464, 0.0780254304409, 0.965984225273, -0.145965918899, 0.212046965957, 0.977689743042, -0.116600781679, 0.1729837358, 0.975962281227, -0.047776773572, 0.211216196418, 0.963929891586, -0.0807082131505, 0.252432763577, 0.763552367687, -0.642909765244, -0.0552358925343, 0.80636048317, -0.590906500816, 0.00277164578438, 0.819666385651, -0.571043491364, -0.0381256043911, 0.772800505161, -0.627115547657, -0.0943523645401, 0.91783875227, -0.377553939819, 0.120091721416, 0.90096783638, -0.402132540941, 0.161066383123, 0.932907223701, -0.209202840924, 0.292085826397, 0.951614558697, -0.176023826003, 0.25068128109, 0.951604604721, -0.108819141984, 0.286362469196, 0.932211399078, -0.146957591176, 0.329820334911, 0.743557393551, -0.667576372623, 0.0293270945549, 0.774812996387, -0.624400377274, 0.095838457346, 0.792960524559, -0.607017636299, 0.0462589263916, 0.755593836308, -0.654251337051, -0.0207031667233, 0.877402961254, -0.431212753057, 0.208844929934, 0.851275861263, -0.456819057465, 0.256985366344, 0.878530681133, -0.283561378717, 0.383631139994, 0.91005307436, -0.243422478437, 0.334582954645, 0.912072479725, -0.180316567421, 0.367432057858, 0.879289388657, -0.226833492517, 0.418081730604, 0.715740799904, -0.683388590813, 0.141743183136, 0.722306847572, -0.654454350471, 0.222168892622, 0.754449129105, -0.637938320637, 0.152434930205, 0.737401247025, -0.671489238739, 0.068833976984, 0.811306893826, -0.489848017693, 0.318160891533, 0.762958526611, -0.519659996033, 0.383723080158, 0.777468204498, -0.37785884738, 0.502157330513, 0.83816587925, -0.325738579035, 0.436771064997, 0.842231631279, -0.270046442747, 0.46595826745, 0.77991938591, -0.329632461071, 0.531473457813, 0.643999457359, -0.692741751671, 0.323681235313, 0.592774927616, -0.684634208679, 0.42342710495, 0.676776587963, -0.667587339878, 0.309347569942, 0.705466926098, -0.679948687553, 0.19844904542, 0.680976331234, -0.559508025646, 0.471825450659, 0.565532147884, -0.595861017704, 0.569664895535, 0.553170919418, -0.50012499094, 0.665786921978, 0.692361831665, -0.433497041464, 0.576291918755, 0.699677705765, -0.389312416315, 0.598567247391, 0.563021957874, -0.462886154652, 0.684206306934, 0.285120874643, -0.688632011414, 0.666249752045, 0.15656170249, -0.675482988358, 0.720143437386, 0.44001108408, -0.694800138474, 0.568365335464, 0.577494621277, -0.689192831516, 0.43693202734, 0.360795021057, -0.629831790924, 0.687412381172, 0.0683777481318, -0.631917119026, 0.771623015404, 0.0340006276965, -0.589614987373, 0.806594371796, 0.344746857882, -0.559455096722, 0.753362476826, 0.371289879084, -0.53123152256, 0.761140108109, 0.0815155729651, -0.573517799377, 0.81475687027, -0.131686225533, -0.606354832649, 0.783829212189, -0.245044976473, -0.561185479164, 0.790202260017, -0.131965145469, -0.614330470562, 0.777547180653, 0.0206337682903, -0.635614991188, 0.771338939667, -0.208067148924, -0.581412374973, 0.78617054224, -0.290082395077, -0.561112523079, 0.774855971336, -0.313974171877, -0.546728909016, 0.775824606419, -0.225766807795, -0.56667983532, 0.792022824287, -0.198385074735, -0.566404938698, 0.799515485764, -0.315037846565, -0.546664834023, 0.775437712669, -0.255441844463, 0.95856243372, -0.123707592487, -0.393732070923, 0.901678681374, -0.177052497864, -0.264256179333, 0.928751528263, -0.258817851543, -0.14383456111, 0.961548626423, -0.232661783695, -0.424284845591, 0.891759693623, -0.155378043652, -0.314014136791, 0.917569875717, -0.242602735758, 0.0436749085784, 0.845283687115, -0.531963288784, 0.0639229938388, 0.851342797279, -0.520119905472, 0.154186412692, 0.857229113579, -0.490693807602, 0.288705796003, 0.661746144295, -0.691475152969, 0.353973090649, 0.657986283302, -0.6641933918, 0.268744826317, 0.673543572426, -0.688122153282, 0.325386703014, 0.597921431065, -0.732126891613, 0.347110152245, 0.591929197311, -0.727001428604, 0.395539522171, 0.59051066637, -0.703023612499, 0.0735087990761, 0.992696166039, 0.0924486219883, -0.0965918302536, 0.994745492935, -0.0233778655529, 0.0180784389377, 0.991433560848, -0.127000629902, 0.182257950306, 0.982943058014, -2.67326831818e-05, 0.309631466866, 0.867140114307, -0.389349400997, 0.442109465599, 0.859139561653, -0.256542474031, 0.465063542128, 0.666380763054, -0.582279086113, 0.581576347351, 0.665241122246, -0.467567801476, 0.491604536772, 0.589603900909, -0.640381574631, 0.598746180534, 0.599235057831, -0.530863642693, 0.291246026754, 0.922277390957, 0.252936661243, 0.190238535404, 0.965230464935, 0.177581340075, 0.296724379063, 0.949327290058, 0.100642621517, 0.384794801474, 0.904187917709, 0.183776497841, 0.541078567505, 0.829791426659, -0.134447365999, 0.598387300968, 0.799644470215, -0.0435526072979, 0.658792972565, 0.66078042984, -0.358827590942, 0.71455514431, 0.647961258888, -0.262589663267, 0.659734725952, 0.603712677956, -0.446851015091, 0.724435210228, 0.597574532032, -0.342774450779, 0.417283922434, 0.832541465759, 0.36351621151, 0.358175843954, 0.881039857864, 0.308017939329, 0.443711966276, 0.861066937447, 0.247141361237, 0.49338799715, 0.814082145691, 0.305342823267, 0.644402325153, 0.763392448425, 0.0370635688305, 0.67404037714, 0.731613993645, 0.0990243852139, 0.750191390514, 0.634336352348, -0.185005113482, 0.779841423035, 0.614887356758, -0.114703387022, 0.750808179379, 0.598266303539, -0.27885478735, 0.789492547512, 0.58035171032, -0.198217138648, 0.499876022339, 0.731238126755, 0.463477015495, 0.461118727922, 0.786063611507, 0.410938918591, 0.529926896095, 0.769109725952, 0.35643234849, 0.563862681389, 0.716745495796, 0.409550279379, 0.702077925205, 0.693689465523, 0.158991008997, 0.727523267269, 0.651660203934, 0.213179603219, 0.803241372108, 0.592450082302, -0.0565878152847, 0.830737054348, 0.556096076965, 0.00542494654655, 0.8104621768, 0.568259358406, -0.140099674463, 0.849809288979, 0.521756410599, -0.070640668273, 0.561714351177, 0.593833625317, 0.57553011179, 0.533879756927, 0.667695403099, 0.518219470978, 0.595372200012, 0.654716253281, 0.465054512024, 0.62251996994, 0.581842303276, 0.522805094719, 0.757135331631, 0.592419028282, 0.274191170931, 0.783108413219, 0.522368252277, 0.336555361748, 0.863351225853, 0.499360203743, 0.068258062005, 0.89037001133, 0.434563755989, 0.13338470459, 0.883981049061, 0.466870009899, -0.00261697173119, 0.912368476391, 0.403797030449, 0.0626652538776, 0.592701017857, 0.443226099014, 0.672051072121, 0.581259489059, 0.5182954669, 0.6268196702, 0.640989363194, 0.5067679286, 0.575948059559, 0.651809096336, 0.431408673525, 0.623239696026, 0.800778210163, 0.449480235577, 0.395117640495, 0.810165345669, 0.375819444656, 0.449208319187, 0.909122407436, 0.367272049189, 0.194945126772, 0.920022130013, 0.297978997231, 0.253308475018, 0.932124435902, 0.339287549257, 0.124197490513, 0.944296777248, 0.272087812424, 0.183486565948, 0.596994698048, 0.295601695776, 0.745394825935, 0.597537517548, 0.36876565218, 0.711587131023, 0.655646920204, 0.356485307217, 0.665163099766, 0.653367638588, 0.281970858574, 0.702138900757, 0.812195658684, 0.301175057888, 0.499027252197, 0.806844294071, 0.227034404874, 0.544843435287, 0.923064231873, 0.227870151401, 0.308908700943, 0.918795466423, 0.156774654984, 0.361430823803, 0.948826372623, 0.205069065094, 0.238896816969, 0.945880293846, 0.136236846447, 0.29350733757, 0.582659959793, 0.152514904737, 0.797899007797, 0.591379344463, 0.224127292633, 0.77423119545, 0.645997941494, 0.208588987589, 0.733875393867, 0.633429646492, 0.135368108749, 0.761471986771, 0.794746935368, 0.152018100023, 0.587081670761, 0.77579164505, 0.0795926749706, 0.625466108322, 0.906566202641, 0.0866110473871, 0.412349462509, 0.88704007864, 0.0161052495241, 0.460755825043, 0.936066269875, 0.0705489069223, 0.343801140785, 0.917807817459, 0.00198908150196, 0.396259307861, 0.556401908398, 0.0129211843014, 0.830449104309, 0.570354759693, 0.0847804248333, 0.816642284393, 0.617422521114, 0.0640820264816, 0.783632338047, 0.596685767174, -0.0080794095993, 0.802057743073, 0.749828577042, 0.00536617636681, 0.661154270172, 0.71789419651, -0.0622950792313, 0.692923665047, 0.858963549137, -0.0505636185408, 0.508942306042, 0.822583556175, -0.116882711649, 0.555960059166, 0.893966972828, -0.0572264194489, 0.443783938885, 0.858016848564, -0.123166769743, 0.498028546572, 0.524557590485, -0.126280874014, 0.84159886837, 0.541470468044, -0.0507052242756, 0.838829636574, 0.57436555624, -0.0768059194088, 0.814616918564, 0.547362744808, -0.148685097694, 0.823215305805, 0.677146494389, -0.13392457366, 0.723141551018, 0.632866859436, -0.191441178322, 0.749817550182, 0.776971340179, -0.173736542463, 0.604589343071, 0.719573616982, -0.228833898902, 0.655168116093, 0.819816410542, -0.166798636317, 0.547243714333, 0.759240627289, -0.22531594336, 0.610067784786, 0.518687367439, -0.200188547373, 0.830833077431, 0.522942066193, -0.169866710901, 0.83490884304, 0.531812369823, -0.198255121708, 0.822962462902, 0.532657146454, -0.224556177855, 0.815626621246, 0.585658073425, -0.240999251604, 0.77351140976, 0.569748938084, -0.240978211164, 0.785309791565, 0.663745522499, -0.247790172696, 0.705292999744, 0.611296355724, -0.233040571213, 0.755913734436, 0.71196693182, -0.222531780601, 0.665566980839, 0.659240841866, -0.241505041718, 0.71166908741, -0.551992297173, 0.288637816906, -0.781913816929, -0.521711409092, 0.201895028353, -0.828523755074, -0.556357979774, 0.26998642087, -0.785473823547, -0.551302492619, 0.353488236666, -0.755319952965, -0.53458750248, 0.0370502471924, -0.843943119049, -0.545572221279, 0.0954286456108, -0.832250654697, -0.557358622551, 0.391300857067, -0.731867969036, -0.562403142452, 0.48337700963, -0.670407533646, -0.534849464893, 0.536325037479, -0.65244692564, -0.509403169155, 0.680069565773, -0.526695966721, -0.487493783236, 0.70851200819, -0.509663045406, -0.512520194054, 0.650534570217, -0.559931814671, -0.47927325964, 0.719596683979, -0.501871407032, -0.490754783154, 0.730112433434, -0.474860548973, -0.465709328651, 0.760584294796, -0.451688587666, -0.613448679447, 0.369123518467, -0.697728216648, -0.537379682064, 0.329157590866, -0.77606356144, -0.548442363739, 0.388254761696, -0.740179419518, -0.616405785084, 0.418296694756, -0.666684627533, -0.527209758759, 0.566675901413, -0.63271188736, -0.591027498245, 0.586533784866, -0.553227901459, -0.455903321505, 0.7452429533, -0.485964179039, -0.519059240818, 0.751046061516, -0.407312989235, -0.424944639206, 0.807646095753, -0.408075749874, -0.468605428934, 0.806589484215, -0.359469413757, -0.742668628693, 0.438921451569, -0.505160450935, -0.6708304286, 0.412826269865, -0.615595042706, -0.688446044922, 0.458374500275, -0.561543345451, -0.743701338768, 0.482786178589, -0.461760520935, -0.664670228958, 0.609073996544, -0.432016462088, -0.703315556049, 0.634832262993, -0.318953663111, -0.581204473972, 0.765215933323, -0.275755703449, -0.614190459251, 0.774042248726, -0.151737183332, -0.545416235924, 0.809748470783, -0.215000092983, -0.569053113461, 0.815301775932, -0.104199498892, -0.807171225548, 0.490780800581, -0.327115207911, -0.761736989021, 0.483689874411, -0.430345982313, -0.777710080147, 0.516230046749, -0.357867926359, -0.801455974579, 0.530497729778, -0.275021910667, -0.730417370796, 0.651283323765, -0.204249277711, -0.742172837257, 0.65631377697, -0.133517682552, -0.632143080235, 0.772097826004, -0.0604707300663, -0.647533416748, 0.761599004269, 0.00795310735703, -0.599838852882, 0.799567461014, -0.0167930424213, -0.611662209034, 0.789396524429, 0.0460233986378, -0.860727071762, 0.462746232748, -0.210737377405, -0.818063855171, 0.5064920187, -0.271354049444, -0.820490181446, 0.530954658985, -0.210426449776, -0.848674654961, 0.505805253983, -0.152673900127, -0.755539774895, 0.651100337505, -0.0679970383644, -0.772631645203, 0.634310424328, -0.00931030511856, -0.654116392136, 0.752477645874, 0.0728292167187, -0.657735347748, 0.741238117218, 0.131702214479, -0.624241471291, 0.771261096001, 0.121966153383, -0.622109115124, 0.763313412666, 0.172423928976, -0.926169216633, 0.3600692451, -0.109346985817, -0.894228935242, 0.418014734983, -0.158160239458, -0.883551120758, 0.456592082977, -0.101276382804, -0.914861679077, 0.399588286877, -0.0524698644876, -0.801672816277, 0.595775067806, 0.0420516133308, -0.836798191071, 0.540000915527, 0.0869679450989, -0.679046928883, 0.712510824203, 0.174985170364, -0.712231814861, 0.666578650475, 0.218619987369, -0.628151297569, 0.746719479561, 0.217328339815, -0.66743439436, 0.69936478138, 0.25459009409, -0.971993386745, 0.232625737786, -0.0225800722837, -0.951971530914, 0.298392891884, -0.0640870332718, -0.941061735153, 0.337224125862, -0.00887230038643, -0.962424397469, 0.268265962601, 0.0341955721378, -0.869156420231, 0.475380420685, 0.134080484509, -0.896615147591, 0.405531555414, 0.176131814718, -0.751444041729, 0.605421125889, 0.261138081551, -0.786225557327, 0.535779178143, 0.306897342205, -0.702190876007, 0.648984014988, 0.291793882847, -0.745205938816, 0.572149217129, 0.341626822948, -0.994225740433, 0.0859808251262, 0.059321783483, -0.986688971519, 0.159685760736, 0.0184597223997, -0.977471709251, 0.195675879717, 0.0752071738243, -0.986074209213, 0.11474134028, 0.117849394679, -0.918808460236, 0.325102806091, 0.222476780415, -0.933278143406, 0.239375680685, 0.266620486975, -0.817779004574, 0.455625385046, 0.350769013166, -0.841477870941, 0.363016396761, 0.399412363768, -0.774562060833, 0.503794848919, 0.381629765034, -0.806518375874, 0.40079793334, 0.43391892314, -0.984986484051, -0.081554569304, 0.150155633688, -0.994503617287, 0.00489941239357, 0.101658292115, -0.985867202282, 0.030876673758, 0.162814825773, -0.974914550781, -0.0656306743622, 0.211259186268, -0.938290596008, 0.137710407376, 0.316294491291, -0.929690122604, 0.0303271412849, 0.366267412901, -0.856668174267, 0.256775468588, 0.446746081114, -0.856718242168, 0.131617248058, 0.498103559017, -0.822640478611, 0.305767655373, 0.478712379932, -0.829985320568, 0.16882802546, 0.531052589417, -0.920076131821, -0.282355695963, 0.270427316427, -0.963710904121, -0.172547876835, 0.202201932669, -0.948760509491, -0.166836619377, 0.267236292362, -0.900400042534, -0.285255879164, 0.327574044466, -0.901757657528, -0.100713565946, 0.419627249241, -0.8498493433, -0.235926747322, 0.470627844334, -0.838071942329, -0.00825271010399, 0.544944405556, -0.790811121464, -0.170652449131, 0.587274610996, -0.817637085915, 0.0396486520767, 0.573841691017, -0.777726054192, -0.129288956523, 0.6146723032, -0.727045416832, -0.531111598015, 0.434420824051, -0.855510592461, -0.389658302069, 0.340093284845, -0.821213960648, -0.409883230925, 0.396231383085, -0.696773529053, -0.545743107796, 0.464830607176, -0.759643495083, -0.394225895405, 0.516647934914, -0.63954782486, -0.539081215858, 0.547508716583, -0.714092373848, -0.336337447166, 0.613469660282, -0.597743451595, -0.508736312389, 0.619100987911, -0.721178174019, -0.281261056662, 0.632605910301, -0.614147484303, -0.459016352892, 0.641501247883, -0.551408469677, -0.644201397896, 0.529480099678, -0.62351667881, -0.601667284966, 0.498618364334, -0.56979393959, -0.637047529221, 0.51855635643, -0.494389683008, -0.662406921387, 0.562309145927, -0.508841276169, -0.651614189148, 0.562028288841, -0.480378895998, -0.67451518774, 0.560054838657, -0.508948266506, -0.619892776012, 0.596741735935, -0.49251922965, -0.662681758404, 0.563624680042, -0.551001608372, -0.571586310863, 0.607521474361, -0.495739281178, -0.636778652668, 0.590042769909, 0.265086919069, 0.826424360275, -0.496133178473, 0.13543009758, 0.857055127621, -0.49649900198, 0.232810676098, 0.821671843529, -0.519664049149, 0.326420426369, 0.783921301365, -0.527554690838, 0.0852559506893, 0.890014231205, -0.447215974331, 0.148153245449, 0.86294233799, -0.482470273972, 0.393628120422, 0.673750519753, -0.624910235405, 0.427992761135, 0.654696285725, -0.622567951679, 0.489818066359, 0.612624943256, -0.619810760021, 0.554977416992, 0.466518104076, -0.688300073147, 0.599135041237, 0.427594870329, -0.676457703114, 0.521241605282, 0.506926894188, -0.686096668243, 0.555982112885, 0.443834960461, -0.702346861362, 0.597471535206, 0.400929927826, -0.694031357765, 0.619457900524, 0.369544386864, -0.692173957825, 0.443241119385, 0.768732786179, -0.460415959358, 0.329611420631, 0.788877725601, -0.5180965662, 0.401491731405, 0.747160315514, -0.529105186462, 0.492911100388, 0.716549575329, -0.492942154408, 0.545432269573, 0.578588306904, -0.605917036533, 0.604928314686, 0.54707878828, -0.578068435192, 0.633753597736, 0.396660208702, -0.663636565208, 0.674346327782, 0.369108498096, -0.639070928097, 0.658971965313, 0.335563600063, -0.672717750072, 0.683475613594, 0.315856605768, -0.657641410828, 0.638069272041, 0.728521883488, -0.248030051589, 0.552041292191, 0.747715115547, -0.368196755648, 0.592105150223, 0.698122143745, -0.401787638664, 0.674038469791, 0.676772594452, -0.295036882162, 0.68396538496, 0.520280897617, -0.510779678822, 0.745946645737, 0.508702337742, -0.429164350033, 0.723876357079, 0.348326802254, -0.59503531456, 0.773012518883, 0.332965403795, -0.539427042007, 0.72567075491, 0.290458232164, -0.623243689537, 0.76937764883, 0.278664827347, -0.57428252697, 0.718069076538, 0.690505445004, -0.0835149884224, 0.690785348415, 0.706536531448, -0.151718139648, 0.719601631165, 0.662260949612, -0.207316398621, 0.749262690544, 0.647503435612, -0.136896669865, 0.789088666439, 0.497811675072, -0.359052538872, 0.814753890038, 0.493880867958, -0.302743554115, 0.808204829693, 0.328914642334, -0.487868666649, 0.832790434361, 0.326335430145, -0.446499168873, 0.795899569988, 0.277787089348, -0.537377715111, 0.827254116535, 0.267837107182, -0.493265032768, 0.762018799782, 0.646247804165, 0.0329713225365, 0.739937543869, 0.671900987625, -0.0209260880947, 0.769180655479, 0.633434653282, -0.0807331204414, 0.795247852802, 0.605481147766, -0.0192527770996, 0.838647663593, 0.48278516531, -0.250970184803, 0.872014582157, 0.447449833155, -0.196913510561, 0.860311150551, 0.308110952377, -0.405374586582, 0.891435682774, 0.277607172728, -0.35731408, 0.852361500263, 0.253028571606, -0.457003951073, 0.883342206478, 0.222962647676, -0.411569684744, 0.82244759798, 0.53696680069, 0.186125814915, 0.792229712009, 0.601679325104, 0.0987418591976, 0.831161916256, 0.553162932396, 0.0507547855377, 0.859836280346, 0.492862135172, 0.131014436483, 0.906450152397, 0.401207834482, -0.129525870085, 0.933522999287, 0.352795422077, -0.0588727146387, 0.921038806438, 0.242579713464, -0.303708225489, 0.948326528072, 0.202108949423, -0.243362486362, 0.911092817783, 0.191883027554, -0.363988041878, 0.938693463802, 0.15508915484, -0.306916296482, 0.84271645546, 0.396546244621, 0.363285303116, 0.839665353298, 0.470933794975, 0.269407629967, 0.87679117918, 0.428882449865, 0.216087728739, 0.881743609905, 0.358408749104, 0.305725634098, 0.954331815243, 0.296991288662, 0.0210422426462, 0.964797616005, 0.23938369751, 0.106096953154, 0.970952749252, 0.159818738699, -0.176363736391, 0.988428413868, 0.110551603138, -0.100915528834, 0.961158692837, 0.118159286678, -0.248210996389, 0.981821477413, 0.0715404003859, -0.174085408449, 0.803243398666, 0.236016705632, 0.546344995499, 0.831512868404, 0.318140923977, 0.454717695713, 0.871605694294, 0.284439086914, 0.398489654064, 0.846199393272, 0.204493224621, 0.491452515125, 0.964157760143, 0.173052743077, 0.199619725347, 0.948613524437, 0.104927316308, 0.297522127628, 0.997883558273, 0.0581470392644, -0.0156167857349, 0.996558010578, -0.00208321213722, 0.0791499912739, 0.994371652603, 0.0264288112521, -0.0996109172702, 0.999157190323, -0.032833982259, -0.00165754836053, 0.701151251793, 0.0653475821018, 0.709585666656, 0.75885784626, 0.149264916778, 0.633443653584, 0.803940176964, 0.123364761472, 0.581254482269, 0.745644807816, 0.0394042432308, 0.664723277092, 0.915548443794, 0.0287929028273, 0.400423049927, 0.864192008972, -0.0458088666201, 0.500468850136, 0.980307877064, -0.0652592033148, 0.184753194451, 0.944879591465, -0.134256452322, 0.297613114119, 0.991735458374, -0.08613948524, 0.0918541550636, 0.96313804388, -0.15734346211, 0.216805502772, 0.55473446846, -0.0986495018005, 0.825793623924, 0.629802763462, -0.0202549993992, 0.776101589203, 0.67512011528, -0.0409882962704, 0.73615860939, 0.592855870724, -0.12008073926, 0.795926690102, 0.790724158287, -0.124185502529, 0.598941087723, 0.704782128334, -0.193769454956, 0.682006001472, 0.887135088444, -0.201471149921, 0.414483785629, 0.803964197636, -0.267403274775, 0.530596733093, 0.921559631824, -0.211564123631, 0.324599981308, 0.83878660202, -0.284238129854, 0.463726967573, 0.397609889507, -0.246531516314, 0.883473157883, 0.474353730679, -0.174413323402, 0.862533450127, 0.509505093098, -0.191713064909, 0.838478684425, 0.421407699585, -0.261210113764, 0.868089795113, 0.598685145378, -0.26193189621, 0.756547451019, 0.497620671988, -0.31443297863, 0.808022975922, 0.702320873737, -0.321515887976, 0.634640336037, 0.579412996769, -0.366086393595, 0.727775216103, 0.758320987225, -0.320766091347, 0.566969752312, 0.621724188328, -0.375299662352, 0.687025427818, 0.333589226007, -0.313483327627, 0.88873052597, 0.348395764828, -0.294250130653, 0.889625310898, 0.362225562334, -0.307412147522, 0.879594326019, 0.33882266283, -0.324732989073, 0.882691383362, 0.404217898846, -0.350637078285, 0.84442794323, 0.37495970726, -0.346148431301, 0.859641373158, 0.481596559286, -0.374492883682, 0.791969776154, 0.417799800634, -0.34517171979, 0.840057253838, 0.542932033539, -0.358624696732, 0.758952736855, 0.462378323078, -0.364936769009, 0.80772703886, 0.142346009612, 0.902375459671, -0.406020402908, -0.130532577634, 0.919439315796, -0.370121240616, -0.0326169468462, 0.914929687977, -0.401542723179, 0.19762031734, 0.868758618832, -0.453432023525, -0.18635571003, 0.945792376995, -0.26484900713, -0.169345840812, 0.944908618927, -0.279045730829, -0.055593509227, 0.848232746124, -0.526124119759, 0.0908540561795, 0.815654635429, -0.570831537247, 0.276797413826, 0.752949595451, -0.596528768539, 0.159509822726, 0.654255390167, -0.73885178566, 0.324332028627, 0.609690845013, -0.722828686237, 0.0569601915777, 0.674851238728, -0.735341846943, 0.0822740420699, 0.593394756317, -0.800318241119, 0.174476310611, 0.595963001251, -0.783442378044, 0.324750930071, 0.565367221832, -0.757821083069, 0.3059925735, 0.848625659943, -0.430811882019, 0.249521628022, 0.862212598324, -0.440142095089, 0.280922144651, 0.841500818729, -0.46082085371, 0.333117395639, 0.818744659424, -0.466996908188, 0.337210148573, 0.734086334705, -0.588900148869, 0.371719747782, 0.710925221443, -0.596494793892, 0.372383534908, 0.590112805367, -0.715886712074, 0.39335718751, 0.563850700855, -0.725767791271, 0.385774493217, 0.539877951145, -0.747734129429, 0.395170629025, 0.514414668083, -0.760667204857, 0.411574691534, 0.852112650871, -0.322345644236, 0.382965296507, 0.849783360958, -0.361389815807, 0.389926254749, 0.828891575336, -0.400365054607, 0.423511058092, 0.834316968918, -0.35206463933, 0.423952966928, 0.715245008469, -0.555054306984, 0.47775170207, 0.707707345486, -0.519903004169, 0.452916204929, 0.550631701946, -0.700762331486, 0.513528883457, 0.52412968874, -0.678948938847, 0.451968461275, 0.488274514675, -0.746128618717, 0.512709140778, 0.455884248018, -0.727114439011, 0.530379831791, 0.827628970146, -0.181995987892, 0.463254064322, 0.84695315361, -0.259736567736, 0.476160168648, 0.826797246933, -0.298452854156, 0.550838649273, 0.801056027412, -0.23298561573, 0.544562578201, 0.685837805271, -0.482156336308, 0.636174857616, 0.641130328178, -0.42851960659, 0.587285637856, 0.482984125614, -0.649012982845, 0.670841395855, 0.431970536709, -0.602303087711, 0.585861027241, 0.410805940628, -0.698141098022, 0.660423517227, 0.362767457962, -0.656990528107, 0.669036924839, 0.742292761803, -0.0280482172966, 0.603380799294, 0.792015731335, -0.0896596908569, 0.633868575096, 0.756368517876, -0.159729748964, 0.705314993858, 0.701898992062, -0.0962560176849, 0.722243845463, 0.583811640739, -0.3700312078, 0.79896068573, 0.514526605606, -0.310355246067, 0.749690532684, 0.369934201241, -0.548187434673, 0.817431092262, 0.302401691675, -0.489648133516, 0.739011764526, 0.299234598875, -0.603088855743, 0.801775813103, 0.235062018037, -0.548906266689, 0.802903473377, 0.589578926563, 0.0844913721085, 0.733780384064, 0.678444087505, 0.0259812474251, 0.777630090714, 0.627020597458, -0.0391550958157, 0.838477730751, 0.544079661369, 0.0181021392345, 0.863697111607, 0.438491553068, -0.247282296419, 0.915030539036, 0.35789090395, -0.184470295906, 0.873131275177, 0.230263441801, -0.4289714396, 0.916859030724, 0.156493738294, -0.366436302662, 0.857741951942, 0.161404252052, -0.487467765808, 0.898174703121, 0.0941754430532, -0.428729474545, 0.895120620728, 0.401694685221, 0.191824048758, 0.85191565752, 0.505149483681, 0.135870963335, 0.887220025063, 0.454710662365, 0.0739928334951, 0.923438072205, 0.360462129116, 0.129325941205, 0.953910887241, 0.273789286613, -0.120371632278, 0.979490160942, 0.191844046116, -0.0564849376678, 0.948958396912, 0.0841677710414, -0.302969485521, 0.970740795135, 0.0122929960489, -0.238552942872, 0.930351018906, 0.0217655152082, -0.365198731422, 0.951778531075, -0.0418639481068, -0.302922517061, 0.933191120625, 0.198750972748, 0.298410892487, 0.92019110918, 0.305946588516, 0.242985591292, 0.945788323879, 0.265864670277, 0.184921145439, 0.955761253834, 0.167844310403, 0.240301415324, 0.993901789188, 0.1071806252, 0.00824449956417, 0.996480047703, 0.0298513807356, 0.0743864327669, 0.98334300518, -0.053820155561, -0.171861082315, 0.987316727638, -0.118479214609, -0.102787949145, 0.965149521828, -0.104351483285, -0.238731890917, 0.972053408623, -0.161718159914, -0.16838914156, 0.911251723766, -0.00346644222736, 0.411100804806, 0.930619955063, 0.0961176902056, 0.352283596992, 0.951092720032, 0.0751845911145, 0.298606812954, 0.933087170124, -0.0201112180948, 0.358246803284, 0.988095581532, -0.049993596971, 0.143398702145, 0.968796372414, -0.119219988585, 0.21590679884, 0.983848869801, -0.175081133842, -0.0280081406236, 0.971679508686, -0.228991836309, 0.052897118032, 0.972471356392, -0.208871901035, -0.100341700017, 0.965372443199, -0.259440660477, -0.0119717791677, 0.822197675705, -0.187939226627, 0.536717891693, 0.874916791916, -0.108332276344, 0.471361637115, 0.899537265301, -0.105202198029, 0.423275113106, 0.849276483059, -0.189932644367, 0.491986393929, 0.936050236225, -0.18888194859, 0.295854628086, 0.891509771347, -0.24546584487, 0.379939228296, 0.950885772705, -0.273147493601, 0.143536657095, 0.917592763901, -0.311926782131, 0.245196938515, 0.955534398556, -0.286240547895, 0.0664540231228, 0.925794422626, -0.328480809927, 0.185474008322, 0.657472372055, -0.330524206161, 0.676668643951, 0.741824924946, -0.2866294384, 0.605752050877, 0.781776845455, -0.259438663721, 0.566490888596, 0.692966639996, -0.321044027805, 0.645076155663, 0.827467083931, -0.297280192375, 0.47573029995, 0.749664545059, -0.332228630781, 0.571860194206, 0.87051910162, -0.337400078773, 0.357426047325, 0.802079737186, -0.35295343399, 0.481132686138, 0.902298510075, -0.326031535864, 0.280993133783, 0.828339755535, -0.354626893997, 0.432999193668, 0.546068072319, -0.337217092514, 0.766478419304, 0.554832398891, -0.376609236002, 0.741433143616, 0.609124004841, -0.339322537184, 0.716396570206, 0.554973304272, -0.300153374672, 0.775440812111, 0.666196763515, -0.336504340172, 0.665089130402, 0.620266675949, -0.315765619278, 0.717605233192, 0.733927309513, -0.332453608513, 0.591794252396, 0.681456208229, -0.266398489475, 0.681209266186, 0.793529331684, -0.295094847679, 0.531625449657, 0.721853971481, -0.294148147106, 0.625939965248, 0.816991209984, -0.307408124208, -0.487258762121, 0.800146341324, -0.308402866125, -0.513856768608, 0.84413599968, -0.311711847782, -0.43550747633, 0.855548620224, -0.318802714348, -0.407181024551, 0.793625354767, -0.290735185146, -0.533879756927, 0.823811173439, -0.298554837704, -0.481243610382, 0.91057497263, -0.349074572325, -0.219990521669, 0.919994115829, -0.354961782694, -0.164346367121, 0.92548251152, -0.353043377399, -0.135047197342, 0.914924621582, -0.381625711918, 0.129117980599, 0.916833102703, -0.368419706821, 0.151923105121, 0.920882880688, -0.380564063787, 0.0808770656586, 0.897177994251, -0.389956235886, 0.20591878891, 0.899078428745, -0.37683314085, 0.22147411108, 0.897401928902, -0.367372006178, 0.243112534285, 0.857514023781, -0.26357036829, -0.441131711006, 0.829949319363, -0.31093609333, -0.462492346764, 0.87036305666, -0.308904677629, -0.382677406073, 0.893391191959, -0.264093220234, -0.362633466721, 0.936710059643, -0.330487161875, -0.112908892334, 0.953050136566, -0.281982839108, -0.107597514987, 0.924988627434, -0.341283917427, 0.165282070637, 0.940288066864, -0.29589164257, 0.16644372046, 0.904192864895, -0.339455485344, 0.258071064949, 0.921474695206, -0.304146140814, 0.240365415812, 0.895309567451, -0.134031519294, -0.4240899086, 0.883363187313, -0.207803219557, -0.419384330511, 0.913259148598, -0.204592198133, -0.351419836283, 0.926220297813, -0.142679899931, -0.348073869944, 0.97004199028, -0.213155597448, -0.113931588829, 0.977899610996, -0.158163204789, -0.134509369731, 0.962085366249, -0.240738302469, 0.125831991434, 0.981098651886, -0.171046331525, 0.0870866924524, 0.940920829773, -0.268545866013, 0.204808115959, 0.968994319439, -0.178172186017, 0.169411823153, 0.886745214462, -0.0405240505934, -0.459823071957, 0.894633829594, -0.0630308687687, -0.441649585962, 0.923161149025, -0.0873780995607, -0.373544156551, 0.917021036148, -0.0428120791912, -0.39577242732, 0.982953131199, -0.0992483198643, -0.152801841497, 0.988949298859, -0.020699147135, -0.144728288054, 0.992052316666, -0.0878458619118, 0.086667329073, 0.994818508625, 0.0103412754834, 0.0981106609106, 0.984724581242, -0.0772112831473, 0.15411645174, 0.981737494469, 0.0331225991249, 0.185717895627, 0.910664916039, 0.00751630961895, -0.412345468998, 0.885508537292, -0.027523085475, -0.463156104088, 0.926616072655, 0.0050004273653, -0.375170648098, 0.937791764736, 0.0490774810314, -0.342833459377, 0.990444839001, 0.0537680648267, -0.124595373869, 0.988283514977, 0.130908459425, -0.0745355859399, 0.982934117317, 0.113886594772, 0.142361998558, 0.961597561836, 0.197132468224, 0.189379811287, 0.961013734341, 0.161445245147, 0.223125621676, 0.937704741955, 0.224349230528, 0.264145195484, 0.938208580017, 0.2052000314, -0.277587175369, 0.933307051659, 0.0395220518112, -0.356051445007, 0.954351663589, 0.121875181794, -0.271577954292, 0.950370013714, 0.2436594069, -0.191895037889, 0.975828230381, 0.216663554311, -0.0145484060049, 0.949762105942, 0.311028063297, 0.0247036367655, 0.936855018139, 0.269599556923, 0.221391111612, 0.901913583279, 0.352772414684, 0.247989058495, 0.906109273434, 0.300833135843, 0.296414464712, 0.881385743618, 0.360568106174, 0.304214119911, 0.854518830776, 0.485033512115, -0.184218361974, 0.912290394306, 0.345017790794, -0.219280779362, 0.913499116898, 0.375559568405, -0.154502347112, 0.857235074043, 0.499891042709, -0.121045425534, 0.902649343014, 0.425609469414, 0.0589722841978, 0.84430795908, 0.531624436378, 0.0625693202019, 0.863812088966, 0.439663171768, 0.244786024094, 0.807120144367, 0.541283488274, 0.234447196126, 0.844966769218, 0.439942121506, 0.30311447382, 0.794100165367, 0.536580920219, 0.284396111965, 0.715783834457, 0.686280667782, -0.126759707928, 0.790965080261, 0.591458380222, -0.154752269387, 0.785923600197, 0.60965681076, -0.100195735693, 0.713783383369, 0.695720791817, -0.0766876041889, 0.765826702118, 0.639389872551, 0.0639253854752, 0.698716938496, 0.712228894234, 0.0626199841499, 0.737008452415, 0.640519499779, 0.214360237122, 0.671713113785, 0.714677095413, 0.193481564522, 0.728597939014, 0.633190751076, 0.260019481182, 0.659450829029, 0.712573766708, 0.238241061568, 0.488884329796, 0.868227720261, -0.0810454189777, 0.63916093111, 0.761250078678, -0.106623768806, 0.636585712433, 0.768211960793, -0.063280493021, 0.488025575876, 0.871121883392, -0.0487146675587, 0.621988117695, 0.779977381229, 0.0645050406456, 0.480645805597, 0.875098645687, 0.0507758259773, 0.599461913109, 0.77902173996, 0.182117015123, 0.468376517296, 0.870145201683, 0.151218384504, 0.586664795876, 0.778080940247, 0.223183602095, 0.475302457809, 0.863047361374, 0.169212937355, 0.224672138691, 0.973769903183, -0.0262906849384, 0.345514625311, 0.936964988708, -0.0459670126438, 0.324770927429, 0.945142567158, -0.0250068306923, 0.217519298196, 0.97574532032, 0.00163632631302, 0.304494023323, 0.95189344883, 0.0240565538406, 0.210699364543, 0.977068901062, 0.0184095799923, 0.329426497221, 0.942016422749, 0.0589876770973, 0.222650751472, 0.974408745766, -0.0187290012836, 0.374176949263, 0.925422489643, 0.0546042323112, 0.240196466446, 0.969570159912, -0.0404452383518, -0.297389179468, 0.939925074577, -0.165818929672, 0.0517544671893, 0.996344029903, -0.0633700489998, 0.0458067655563, 0.997900605202, -0.0386282503605, -0.353172332048, 0.922928214073, -0.151224374771, 0.0492920093238, 0.998453378677, -0.00759235024452, -0.367773920298, 0.92665708065, -0.0737912356853, 0.0535450279713, 0.997396707535, -0.0415826737881, -0.377013146877, 0.923600077629, -0.0649555921555, 0.0807928964496, 0.992868065834, -0.0841515958309, -0.353122323751, 0.932096481323, -0.0767908394337, -0.788659751415, 0.603793621063, -0.113336786628, -0.650719404221, 0.732934594154, -0.196893513203, -0.695530951023, 0.700406432152, -0.158315181732, -0.793049454689, 0.605389118195, -0.0630294978619, -0.721894979477, 0.684194326401, -0.100708574057, -0.815726578236, 0.574928283691, -0.0586796700954, -0.737922132015, 0.671905040741, -0.0584034919739, -0.831016004086, 0.555471301079, -0.0161499083042, -0.753772318363, 0.654740214348, -0.0503830909729, -0.83523774147, 0.548579216003, -0.0288806855679, -0.437706798315, 0.575834095478, -0.690089643002, -0.436897039413, 0.532474160194, -0.724561214447, -0.383941024542, 0.584850311279, -0.714098334312, -0.397443950176, 0.615362167358, -0.680267572403, -0.472763180733, 0.451121747494, -0.756558477879, -0.403032273054, 0.533684849739, -0.743062615395, -0.162787824869, 0.733537375927, -0.659407794476, -0.193340614438, 0.743141591549, -0.640121638775, -0.233719408512, 0.741739034653, -0.628168225288, 0.0485160462558, 0.843481302261, -0.534397602081, -0.0376197360456, 0.831511974335, -0.553686738014, 0.11140935123, 0.853973031044, -0.507655620575, 0.204759165645, 0.870423138142, -0.447027027607, 0.145834952593, 0.855974435806, -0.495415329933, 0.0574838370085, 0.856038451195, -0.513118028641, -0.502643167973, 0.740433394909, -0.445538461208, -0.414751708508, 0.653488576412, -0.632715880871, -0.358775645494, 0.691301226616, -0.626720666885, -0.424705713987, 0.78174585104, -0.455954253674, -0.208497017622, 0.790527284145, -0.575318276882, -0.18340459466, 0.905255556107, -0.382455468178, -0.0234556142241, 0.8655346632, -0.499696046114, 0.0147969303653, 0.958122551441, -0.284917891026, 0.0566009096801, 0.888969421387, -0.453789919615, 0.0631344243884, 0.962204396725, -0.263767302036, -0.478457450867, 0.873120248318, -0.0901979207993, -0.509067237377, 0.823744237423, -0.248378932476, -0.435581415892, 0.875856459141, -0.206252753735, -0.386466264725, 0.919740200043, -0.0641753077507, -0.185974836349, 0.974373698235, -0.124117463827, -0.139124974608, 0.98983502388, 0.0163211524487, 0.0810056328773, 0.995678246021, -0.0382035374641, 0.0874472856522, 0.991972446442, 0.0879791080952, 0.186620637774, 0.981821477413, 0.0243985056877, 0.169848695397, 0.979459166527, 0.105864048004, -0.346500337124, 0.913754045963, 0.210684359074, -0.421560645103, 0.906220316887, 0.0211611092091, -0.334174066782, 0.939080357552, 0.0765037536621, -0.265125930309, 0.934497773647, 0.236256659031, -0.0730780288577, 0.984384655952, 0.158249229193, -0.0365337654948, 0.955784320831, 0.290753155947, 0.131521269679, 0.967887639999, 0.212819725275, 0.167759314179, 0.930510938168, 0.324655950069, 0.165825918317, 0.95541536808, 0.243063539267, 0.218659952283, 0.917840719223, 0.330381244421, -0.221246182919, 0.865903437138, 0.44794768095, -0.274095207453, 0.918032765388, 0.285454779863, -0.206846535206, 0.922917246819, 0.3237811625, -0.157765343785, 0.868212819099, 0.469801068306, -0.0013057856122, 0.927962720394, 0.371858656406, 0.0454732663929, 0.862323522568, 0.503711819649, 0.199383765459, 0.896952033043, 0.393851041794, 0.235475882888, 0.823109388351, 0.51617705822, 0.256712466478, 0.875894427299, 0.407802820206, 0.297828048468, 0.807873010635, 0.507972598076, -0.104998283088, 0.686839580536, 0.718764901161, -0.165718942881, 0.777638137341, 0.605980932713, -0.096837952733, 0.76318949461, 0.63840419054, -0.0369432419538, 0.682040035725, 0.729967534542, 0.0972551330924, 0.745333909988, 0.659101963043, 0.149403870106, 0.668888986111, 0.727779209614, 0.286169528961, 0.704845070839, 0.648611068726, 0.329263538122, 0.633374750614, 0.699870646, 0.343674212694, 0.674645185471, 0.652791857719, 0.374069988728, 0.618849098682, 0.690285503864, -0.0272497683764, 0.543329894543, 0.838716685772, -0.0579610913992, 0.636921584606, 0.768353879452, 0.00393875036389, 0.61951982975, 0.784586071968, 0.0344530902803, 0.530416786671, 0.846680223942, 0.183379605412, 0.611063480377, 0.76965546608, 0.204100355506, 0.533425867558, 0.820485174656, 0.341521859169, 0.598278284073, 0.724446177483, 0.352973401546, 0.527385652065, 0.772444665432, 0.392604410648, 0.592238128185, 0.703215539455, 0.396044373512, 0.529835939407, 0.749545693398, 0.0175904873759, 0.354474931955, 0.934577703476, 0.00441840523854, 0.463425040245, 0.885784506798, 0.0615901947021, 0.43472969532, 0.898116707802, 0.0769697502255, 0.330577105284, 0.94031393528, 0.220064520836, 0.435761392117, 0.872398436069, 0.236205652356, 0.345342725515, 0.907932758331, 0.361305862665, 0.443126171827, 0.820057272911, 0.366614252329, 0.354064106941, 0.860017299652, 0.400318086147, 0.447812736034, 0.79912763834, 0.401807636023, 0.359245508909, 0.841955661774, 0.00656062876806, 0.126942634583, 0.99158346653, 0.0456716045737, 0.274187207222, 0.960276961327, 0.0839894339442, 0.221996903419, 0.97111260891, 0.0558356307447, 0.0845946371555, 0.99454665184, 0.23944067955, 0.239819586277, 0.940505921841, 0.235747799277, 0.134264498949, 0.962181448936, 0.367663919926, 0.266957372427, 0.89047908783, 0.362243562937, 0.167570382357, 0.916567206383, 0.40009611845, 0.275127917528, 0.873856067657, 0.389587342739, 0.174756199121, 0.903923988342, -0.706366658211, -0.489973962307, 0.510261833668, -0.0997016876936, -0.0640790760517, 0.992648243904, -0.175870880485, -0.210108578205, 0.961415588856, -0.494182735682, -0.440919756889, 0.748845815659, 0.194641217589, -0.0046374797821, 0.980555832386, 0.0175768919289, -0.233152598143, 0.971970438957, 0.345941513777, 0.0626068413258, 0.93584227562, 0.312939465046, -0.0629553496838, 0.947365760803, 0.376225352287, 0.0786034464836, 0.922861278057, 0.338186860085, -0.0530061721802, 0.939263284206, -0.592913866043, -0.0554953217506, -0.802975475788, -0.487015902996, -0.154381394386, -0.85928940773, -0.865300655365, -0.495719313622, -0.0700978189707, -0.699599683285, -0.137165606022, -0.700815320015, -0.260138452053, -0.446931004524, 0.855556607246, -0.72266471386, -0.608585178852, 0.326766312122, 0.23840098083, -0.218298077583, 0.945995330811, 0.118585176766, -0.397014081478, 0.909788191319, 0.29804995656, -0.169468820095, 0.939065396786, 0.191061288118, -0.364607840776, 0.911017894745, -0.556780874729, 0.132584959269, -0.819641470909, -0.506403028965, 0.0823306143284, -0.8580057621, -0.671938061714, 0.00198635458946, -0.740196466446, -0.611908137798, 0.10865214467, -0.783044576645, -0.857027113438, -0.513884782791, -0.0287027209997, -0.742998600006, -0.624937236309, 0.238333001733, -0.110903508961, -0.586297869682, 0.80209171772, -0.152847841382, -0.614043474197, 0.773941159248, 0.101791255176, -0.44927623868, 0.887235045433, 0.0127302547917, -0.535040438175, 0.844372928143, -0.867954850197, 0.102432072163, -0.485344409943, -0.871709704399, 0.00946691632271, -0.489314198494, -0.883341193199, 0.133091777563, -0.448766440153, -0.852629423141, 0.187376394868, -0.487143874168, -0.900021135807, -0.196215733886, -0.388403654099, -0.911116838455, 0.114744365215, -0.395089685917, -0.782020807266, 0.501872420311, -0.368733644485, -0.814505040646, 0.405020654202, -0.414651751518, -0.766112565994, 0.403518140316, -0.499640107155, -0.674216389656, 0.627179563046, -0.389196455479, -0.613485693932, 0.622646868229, -0.485121428967, -0.681482195854, 0.640416562557, -0.353334307671, -0.648490130901, 0.67662268877, -0.347905933857, -0.632817864418, 0.684334337711, -0.361419856548, -0.565380215645, 0.682545900345, -0.462463378906, -0.919352352619, 0.114968270063, -0.375459581614, -0.886403262615, 0.117784425616, -0.447003960609, -0.860252141953, 0.180789381266, -0.476106196642, -0.898275673389, 0.189256846905, -0.395826458931, -0.766870379448, 0.400020182133, -0.501287579536, -0.812296688557, 0.411188840866, -0.412909328938, -0.607696413994, 0.60796135664, -0.510375797749, -0.657509386539, 0.626136898994, -0.418365627527, -0.526188075542, 0.680294513702, -0.50962805748, -0.578938186169, 0.692546784878, -0.429658234119, -0.971700489521, 0.140618517995, -0.188202157617, -0.95269626379, 0.127804398537, -0.274650037289, -0.93346709013, 0.210493415594, -0.289358586073, -0.9556453228, 0.225747823715, -0.187551349401, -0.851711809635, 0.438402563334, -0.285983592272, -0.869067490101, 0.468181580305, -0.157875329256, -0.699322760105, 0.664174437523, -0.263088524342, -0.703603506088, 0.700422406197, -0.117248624563, -0.635531008244, 0.721870958805, -0.272762656212, -0.62950783968, 0.769674539566, -0.103525698185, -0.985229372978, 0.162657871842, -0.047560531646, -0.981373608112, 0.152034088969, -0.114836320281, -0.96513646841, 0.24113316834, -0.0988026708364, -0.967455744743, 0.250593304634, -0.0250746235251, -0.872933328152, 0.484788537025, -0.0486122816801, -0.867807865143, 0.494115710258, 0.0464212745428, -0.697403371334, 0.716230630875, 0.00621336698532, -0.685993790627, 0.718028187752, 0.115081250668, -0.617300570011, 0.78588861227, 0.0267280936241, -0.606625795364, 0.783192455769, 0.134202420712, -0.98150652647, 0.177992239594, 0.0660328567028, -0.984995484352, 0.170761421323, 0.00447069108486, -0.964559733868, 0.258917808533, 0.0445261448622, -0.958227574825, 0.264043241739, 0.107130639255, -0.855969488621, 0.496990859509, 0.14040158689, -0.838887572289, 0.496875911951, 0.220855265856, -0.665311038494, 0.710577368736, 0.227680236101, -0.640694439411, 0.697400331497, 0.320219278336, -0.587279617786, 0.767247259617, 0.256575524807, -0.564783394337, 0.748844861984, 0.345900535583, -0.968188583851, 0.18668961525, 0.164784222841, -0.976522028446, 0.185868874192, 0.106082960963, -0.949526190758, 0.267765104771, 0.161548197269, -0.938927412033, 0.266683459282, 0.216082751751, -0.821721732616, 0.492749154568, 0.285248816013, -0.804480969906, 0.484758615494, 0.342367589474, -0.619477927685, 0.683623552322, 0.385099649429, -0.600726544857, 0.665837883949, 0.44179558754, -0.544414639473, 0.728012084961, 0.415942311287, -0.528825283051, 0.709036827087, 0.465839266777, -0.941480636597, 0.179682731628, 0.28412219882, -0.958693444729, 0.191071286798, 0.209271803498, -0.924690663815, 0.262191802263, 0.274952977896, -0.905244529247, 0.24861189723, 0.343686193228, -0.785748720169, 0.466711074114, 0.405186623335, -0.761447012424, 0.442089438438, 0.473445951939, -0.584019601345, 0.641114413738, 0.497281849384, -0.564698398113, 0.600618541241, 0.565482199192, -0.51382881403, 0.678530097008, 0.524378657341, -0.496783941984, 0.636435747147, 0.58953499794, -0.890027165413, 0.157171547413, 0.427252948284, -0.922534346581, 0.180881336331, 0.340012311935, -0.878916501999, 0.233132570982, 0.415392547846, -0.845336675644, 0.207935169339, 0.491492569447, -0.731579065323, 0.401109814644, 0.550726652145, -0.696072757244, 0.357842952013, 0.621954202652, -0.541398465633, 0.546889781952, 0.638119220734, -0.515562236309, 0.480200946331, 0.709223806858, -0.476313143969, 0.573976635933, 0.665637969971, -0.45411580801, 0.505376338959, 0.733327507973, -0.802072763443, 0.115901008248, 0.585357189178, -0.856693208218, 0.156402751803, 0.490927696228, -0.80283254385, 0.181597158313, 0.567343652248, -0.75056129694, 0.142902821302, 0.644695281982, -0.654300332069, 0.298412919044, 0.694432258606, -0.607625484467, 0.23978254199, 0.756764411926, -0.487072885036, 0.406317293644, 0.772697627544, -0.456660032272, 0.320189327002, 0.829660415649, -0.430523961782, 0.421225845814, 0.797881066799, -0.405762463808, 0.332760483027, 0.850895047188, -0.666580677032, 0.0491986572742, 0.743402481079, -0.747407257557, 0.111031472683, 0.654561281204, -0.688244104385, 0.10346776247, 0.717642307281, -0.615715026855, 0.0504517555237, 0.785967588425, -0.555088341236, 0.163755536079, 0.815142810345, -0.500065982342, 0.0933517217636, 0.860590040684, -0.424484759569, 0.230793327093, 0.875181674957, -0.391956627369, 0.131984174252, 0.910135090351, -0.380720019341, 0.232261806726, 0.894708752632, -0.355378687382, 0.132059127092, 0.925020694733, -0.486848950386, -0.0429489016533, 0.872083604336, -0.585771083832, 0.0398595631123, 0.809122562408, -0.535235345364, -0.000800758600235, 0.844344973564, -0.448824435472, -0.0644663274288, 0.890952944756, -0.441643565893, 0.00717088580132, 0.89682507515, -0.383518159389, -0.0671531260014, 0.92076086998, -0.359178513288, 0.0361711084843, 0.932244420052, -0.328133910894, -0.064513862133, 0.942105472088, -0.331450849771, 0.0256477892399, 0.942803263664, -0.308291912079, -0.0738497972488, 0.948102593422, -0.327068209648, -0.0812615156174, 0.94117975235, -0.385575532913, -0.0364238619804, 0.921629667282, -0.363517194986, -0.096824914217, 0.926216244698, -0.285677731037, -0.0905672609806, 0.953719973564, -0.330336213112, -0.130296617746, 0.934503793716, -0.299501538277, -0.1417581141, 0.943186163902, -0.301246017218, -0.131094396114, 0.944172799587, -0.281859844923, -0.151989102364, 0.947021961212, -0.292018800974, -0.143067806959, 0.945332407951, -0.285415768623, -0.155845880508, 0.945328474045, -0.760320365429, 0.391538739204, -0.517693638802, -0.789644479752, 0.329008638859, -0.517310798168, -0.752651751041, 0.401936590672, -0.520921647549, -0.714807033539, 0.451007783413, -0.533890724182, -0.831280887127, 0.28719624877, -0.475274473429, -0.790905117989, 0.352658480406, -0.499497145414, -0.602149069309, 0.568908214569, -0.559604048729, -0.587519586086, 0.582948923111, -0.560702681541, -0.552404165268, 0.609082996845, -0.568562209606, -0.386123359203, 0.711522996426, -0.586548864841, -0.37811678648, 0.72191298008, -0.57902109623, -0.394057959318, 0.712711691856, -0.579789876938, -0.327063202858, 0.741590976715, -0.585208296776, -0.330075323582, 0.738634884357, -0.587252557278, -0.335223734379, 0.739527642727, -0.583198845387, -0.748019039631, 0.524028718472, -0.406518220901, -0.73257869482, 0.440623909235, -0.518242478371, -0.689987540245, 0.507738649845, -0.515281379223, -0.695282042027, 0.586580872536, -0.414609789848, -0.535768151283, 0.657654345036, -0.528999269009, -0.526721894741, 0.738599896431, -0.420036077499, -0.37392103672, 0.753982305527, -0.539527058601, -0.364909797907, 0.835372686386, -0.410353094339, -0.337281137705, 0.76576769352, -0.547025799751, -0.32883566618, 0.842293679714, -0.426385223866, -0.773686349392, 0.627239584923, -0.0858874619007, -0.761284053326, 0.588767170906, -0.270547270775, -0.708925843239, 0.657247543335, -0.254650056362, -0.714110314846, 0.695631861687, -0.0744263231754, -0.51900523901, 0.818549752235, -0.244964003563, -0.506189107895, 0.860186159611, -0.0569912195206, -0.327478080988, 0.916918992996, -0.226747483015, -0.284524053335, 0.957533836365, -0.0396421253681, -0.293711274862, 0.929908156395, -0.220001548529, -0.235481873155, 0.970940768719, -0.0349064469337, -0.761817872524, 0.61505818367, 0.201825067401, -0.76925265789, 0.635324120522, 0.0633269846439, -0.709151804447, 0.698693990707, 0.0912509262562, -0.698277115822, 0.67899698019, 0.225317969918, -0.492965072393, 0.861476838589, 0.119331002235, -0.484598636627, 0.837218165398, 0.252241849899, -0.252747684717, 0.958644390106, 0.128514140844, -0.237528249621, 0.937692821026, 0.252406775951, -0.176485702395, 0.973743855953, 0.141678154469, -0.165714949369, 0.953653931618, 0.249959468842, -0.74226385355, 0.521911323071, 0.419582277536, -0.75129109621, 0.58165127039, 0.31086909771, -0.690072536469, 0.639061927795, 0.338815659285, -0.679979622364, 0.578657209873, 0.44964414835, -0.478661417961, 0.796390473843, 0.368838608265, -0.478913336992, 0.735018014908, 0.479362249374, -0.241174146533, 0.900542020798, 0.360907942057, -0.246807470918, 0.847321093082, 0.469605147839, -0.166248783469, 0.921891570091, 0.349105596542, -0.177905261517, 0.868435621262, 0.462130397558, -0.715564846992, 0.345192790031, 0.606798708439, -0.729072809219, 0.438883423805, 0.524624526501, -0.672127962112, 0.493956834078, 0.551041603088, -0.659770667553, 0.394511818886, 0.639107942581, -0.478162616491, 0.65468031168, 0.584936320782, -0.481645524502, 0.553594827652, 0.678929924965, -0.259751558304, 0.775741636753, 0.574586451054, -0.272068798542, 0.687351405621, 0.672995746136, -0.189101889729, 0.807547032833, 0.558125436306, -0.2100905478, 0.714534163475, 0.666857600212, -0.675228059292, 0.113525718451, 0.728406071663, -0.696385681629, 0.221949964762, 0.682042956352, -0.647161483765, 0.278217971325, 0.709346711636, -0.628992021084, 0.156050860882, 0.761192083359, -0.480276912451, 0.439338326454, 0.758756756783, -0.478402495384, 0.310814172029, 0.820927023888, -0.289099693298, 0.578597187996, 0.762261748314, -0.301854848862, 0.45592135191, 0.836908280849, -0.224413216114, 0.622116088867, 0.749670505524, -0.249217733741, 0.48595815897, 0.83733612299, -0.618885099888, -0.127154588699, 0.774731993675, -0.648212254047, -0.0226690471172, 0.760725140572, -0.607203602791, 0.0312452316284, 0.793551325798, -0.581371426582, -0.0939385592937, 0.807824015617, -0.470611870289, 0.17621576786, 0.864215970039, -0.457031965256, 0.0406359732151, 0.888181805611, -0.314265072346, 0.317124187946, 0.894464790821, -0.320458203554, 0.171171277761, 0.931344747543, -0.259753555059, 0.363678127527, 0.894238948822, -0.27898272872, 0.195480942726, 0.939868092537, -0.546344995499, -0.339938342571, 0.76507884264, -0.584031581879, -0.248839795589, 0.772257745266, -0.549263060093, -0.208777964115, 0.80877572298, -0.51451253891, -0.320809096098, 0.794829845428, -0.440807849169, -0.0983115434647, 0.891862571239, -0.415613472462, -0.224263310432, 0.881116867065, -0.320488214493, 0.0220991671085, 0.946676015854, -0.316398441792, -0.127961337566, 0.93963521719, -0.279859483242, 0.0577780306339, 0.957985639572, -0.284947931767, -0.114029526711, 0.951418638229, -0.455846309662, -0.511514484882, 0.727979123592, -0.504382669926, -0.434148907661, 0.745995640755, -0.472574263811, -0.416445195675, 0.776301443577, -0.427834779024, -0.507581710815, 0.747472286224, -0.389614313841, -0.350975006819, 0.851124882698, -0.355123728514, -0.455521404743, 0.815955460072, -0.303170412779, -0.265998631716, 0.914728760719, -0.288351923227, -0.399453341961, 0.869877278805, -0.275778710842, -0.244287192822, 0.929336249828, -0.265802711248, -0.392475426197, 0.880175173283, -0.34419503808, -0.644130468369, 0.682657837868, -0.406807124615, -0.577469587326, 0.707412362099, -0.376509308815, -0.582086205482, 0.720286369324, -0.321374922991, -0.652567863464, 0.685761809349, -0.318842709064, -0.558136463165, 0.765649676323, -0.278231948614, -0.636668682098, 0.718774914742, -0.266203582287, -0.51142847538, 0.816684365273, -0.243781372905, -0.615201175213, 0.749328672886, -0.250823229551, -0.498860299587, 0.829230487347, -0.232049912214, -0.612288117409, 0.755415916443, -0.260037481785, -0.696234703064, 0.668606042862, -0.293698310852, -0.672775804996, 0.678609073162, -0.27176591754, -0.691906034946, 0.668435037136, -0.23921276629, -0.701329171658, 0.671052277088, -0.244938030839, -0.697452306747, 0.673024773598, -0.234961032867, -0.708336055279, 0.66516906023, -0.229534670711, -0.679171860218, 0.696732461452, -0.235692799091, -0.705856800079, 0.667541384697, -0.229068800807, -0.667056500912, 0.708491027355, -0.229019835591, -0.694442331791, 0.681686103344, -0.516005158424, 0.417615890503, -0.747484207153, -0.48023596406, 0.49110263586, -0.726352632046, -0.483804881573, 0.537605583668, -0.690151512623, -0.50416469574, 0.466406106949, -0.726415514946, -0.46635016799, 0.462464272976, -0.753685295582, -0.461106747389, 0.510795712471, -0.725165963173, -0.396352291107, 0.717298269272, -0.572525024414, -0.426665127277, 0.701591074467, -0.570195734501, -0.445025593042, 0.605260133743, -0.659551739693, -0.340035289526, 0.818082928658, -0.46315407753, -0.359215527773, 0.741132080555, -0.566641867161, -0.267163306475, 0.894706726074, -0.35710015893, -0.234933033586, 0.920310020447, -0.311819821596, -0.287716090679, 0.849952220917, -0.440677881241, -0.345192760229, 0.764868974686, -0.543335914612, -0.602663993835, 0.278539836407, -0.747400224209, -0.545671164989, 0.299569547176, -0.782238781452, -0.53306800127, 0.35693320632, -0.766703367233, -0.620596528053, 0.312611609697, -0.718699932098, -0.510204851627, 0.500413835049, -0.69905179739, -0.621688187122, 0.460887789726, -0.632835865021, -0.440914839506, 0.654852151871, -0.613317728043, -0.592595994473, 0.604870319366, -0.531373500824, -0.383180260658, 0.693049669266, -0.610124707222, -0.563581764698, 0.653912425041, -0.504153728485, -0.717610239983, 0.298669785261, -0.628671169281, -0.662542879581, 0.284133195877, -0.692604780197, -0.690140545368, 0.313814222813, -0.651630163193, -0.72919678688, 0.338127881289, -0.594422459602, -0.709570646286, 0.43659311533, -0.55253213644, -0.743168532848, 0.463549017906, -0.481891453266, -0.691607058048, 0.577719449997, -0.432801246643, -0.737133324146, 0.576053023338, -0.352411538363, -0.682427883148, 0.614878296852, -0.394478827715, -0.72558683157, 0.616306841373, -0.305098831654, -0.783278405666, 0.345304727554, -0.516368091106, -0.72917675972, 0.355650633574, -0.584132611752, -0.757934033871, 0.376591235399, -0.532081246376, -0.795036911964, 0.384122937918, -0.468788415194, -0.761280059814, 0.501945376396, -0.409756243229, -0.786904275417, 0.516651034355, -0.336526364088, -0.740254402161, 0.61438536644, -0.27193787694, -0.750443339348, 0.633037805557, -0.188398078084, -0.74853092432, 0.627257525921, -0.2136464715, -0.7340092659, 0.665813922882, -0.131598234177, -0.893207252026, 0.255177944899, -0.369406431913, -0.822781503201, 0.340636134148, -0.454306781292, -0.84649336338, 0.361122906208, -0.390429019928, -0.907068967819, 0.295142889023, -0.299186646938, -0.826889276505, 0.505101382732, -0.246015667915, -0.879552304745, 0.452551305294, -0.144850254059, -0.770705223083, 0.631469249725, -0.0815906226635, -0.794705986977, 0.60609292984, 0.022117882967, -0.758188009262, 0.651541233063, -0.00643149018288, -0.768147945404, 0.63625985384, 0.0672098994255, -0.96383690834, 0.0512249171734, -0.260365337133, -0.946501076221, 0.138389185071, -0.290482223034, -0.954275727272, 0.187667325139, -0.231377109885, -0.972330331802, 0.109992772341, -0.204625189304, -0.924221813679, 0.374127030373, -0.0723794549704, -0.953841865063, 0.294280141592, -0.0546058118343, -0.84123390913, 0.535425305367, 0.0710031539202, -0.881319761276, 0.463586986065, 0.0880819112062, -0.796103537083, 0.595151245594, 0.106819733977, -0.851985692978, 0.508323431015, 0.12298284471, -0.974050819874, -0.0688640996814, -0.214192301035, -0.967731714249, -0.0202936753631, -0.249961495399, -0.980219960213, 0.0448802486062, -0.191181242466, -0.987581729889, -0.0415892377496, -0.149495869875, -0.977482736111, 0.206678569317, -0.0347601100802, -0.993321955204, 0.109713852406, 0.0258982740343, -0.921626627445, 0.372681438923, 0.105402156711, -0.956262171268, 0.23504601419, 0.172374948859, -0.893975973129, 0.426279217005, 0.135970920324, -0.934622704983, 0.26499992609, 0.235907718539, -0.973864853382, -0.225526869297, -0.0109717026353, -0.983000040054, -0.105996988714, -0.147888332605, -0.991857409477, -0.116082943976, -0.0462596341968, -0.966962873936, -0.237235337496, 0.0899869203568, -0.990446865559, -0.0252929627895, 0.133311733603, -0.944986641407, -0.161122336984, 0.283612310886, -0.949935138226, 0.0905131474137, 0.298040002584, -0.892833292484, -0.0904135853052, 0.440534949303, -0.926254272461, 0.0687184482813, 0.369767308235, -0.847035109997, -0.105270206928, 0.520428836346, -0.835405707359, -0.463468015194, 0.294432044029, -0.943606972694, -0.29892373085, 0.14016866684, -0.894430875778, -0.371131956577, 0.248294010758, -0.779845416546, -0.49292114377, 0.385052710772, -0.845368742943, -0.316135495901, 0.429891139269, -0.703216612339, -0.461334645748, 0.540419757366, -0.776410520077, -0.259397625923, 0.573842644691, -0.625654995441, -0.40974521637, 0.663370609283, -0.704334259033, -0.313978135586, 0.63618183136, -0.561099529266, -0.436691135168, 0.702754735947, -0.56921505928, -0.638837039471, 0.516988813877, -0.7428586483, -0.510208904743, 0.432717323303, -0.633336663246, -0.59984177351, 0.488333523273, -0.493532925844, -0.667450368404, 0.557074725628, -0.542271196842, -0.578080356121, 0.609229981899, -0.409844189882, -0.662581861019, 0.626425802708, -0.470535904169, -0.544694423676, 0.693758487701, -0.3481798172, -0.631601274014, 0.692276895046, -0.410139143467, -0.56582313776, 0.714861094952, -0.318031907082, -0.63642680645, 0.702290892601, -0.277159273624, -0.785480737686, 0.552811026573, -0.445478439331, -0.67685353756, 0.585504174232, -0.366014420986, -0.73249065876, 0.573485732079, -0.241397082806, -0.793604314327, 0.557956516743, -0.297722071409, -0.72740727663, 0.617767393589, -0.21800814569, -0.788570821285, 0.574478447437, -0.266442537308, -0.704098284245, 0.657761275768, -0.203084647655, -0.770778179169, 0.603368759155, -0.247846141458, -0.698697030544, 0.670664489269, -0.199525728822, -0.770947098732, 0.6043394804, -0.155550017953, -0.847671985626, 0.506608963013, -0.183598548174, -0.82939851284, 0.527053833008, -0.174078419805, -0.836458384991, 0.519066154957, -0.15394051373, -0.849730312824, 0.503642857075, -0.167546391487, -0.834258913994, 0.52472448349, -0.162542894483, -0.84468883276, 0.509389102459, -0.178434103727, -0.818345844746, 0.545772135258, -0.183137685061, -0.842029631138, 0.506796896458, -0.189452797174, -0.805204808712, 0.561381399632, -0.18346260488, -0.828496813774, 0.528517365456, -0.489415168762, 0.859413444996, -0.145866930485, -0.587240636349, 0.797502100468, -0.136145889759, -0.49902126193, 0.85383605957, -0.146075874567, -0.398510634899, 0.896430194378, -0.192348897457, -0.634778261185, 0.770940124989, -0.0458653569221, -0.588316321373, 0.805212795734, -0.0700981616974, -0.323969125748, 0.906437158585, -0.269837468863, -0.259947508574, 0.925656378269, -0.273831307888, -0.111122436821, 0.939818143845, -0.322164684534, 0.0169117935002, 0.896234273911, -0.442576289177, 0.138909056783, 0.901654601097, -0.408802479506, -0.0312660560012, 0.888527572155, -0.457096993923, 0.0749303624034, 0.843856096268, -0.530743718147, 0.108837127686, 0.870201170444, -0.479896008968, 0.206157743931, 0.873466193676, -0.440401017666, -0.27358135581, 0.95533144474, -0.109047085047, -0.397608906031, 0.893570065498, -0.206966489553, -0.265427827835, 0.940848827362, -0.209157794714, -0.139874756336, 0.974758625031, -0.172267913818, 0.0304301101714, 0.944537758827, -0.326065540314, 0.0607738420367, 0.946034312248, -0.31736817956, 0.224993035197, 0.880942940712, -0.415588468313, 0.237211361527, 0.870285153389, -0.430964827538, 0.294931918383, 0.855400562286, -0.4250895679, 0.299755454063, 0.838088870049, -0.455136537552, -0.197368398309, 0.973849833012, 0.109814822674, -0.191103279591, 0.981256604195, 0.00346487760544, -0.147038593888, 0.986449956894, -0.0685065686703, -0.117440529168, 0.99158847332, 0.0485359728336, 0.0787348151207, 0.963105082512, -0.256172627211, 0.169559791684, 0.977638661861, -0.121939122677, 0.310472220182, 0.866671204567, -0.389723300934, 0.407077044249, 0.867947816849, -0.283462375402, 0.382552444935, 0.822743475437, -0.419693171978, 0.45949819684, 0.824836850166, -0.328483819962, -0.0960848778486, 0.967133879662, 0.234128326178, -0.164616271853, 0.971944391727, 0.166195809841, -0.0673799514771, 0.987157940865, 0.14274290204, -0.0210574418306, 0.975895285606, 0.215827822685, 0.214372247458, 0.976334095001, -0.0146001577377, 0.232238844037, 0.969672083855, 0.0720961093903, 0.450232028961, 0.872123539448, -0.189968645573, 0.478911370039, 0.870390057564, -0.111633241177, 0.503828823566, 0.824127078056, -0.257618188858, 0.543054938316, 0.820288181305, -0.177801340818, 0.0287160277367, 0.896408259869, 0.441615641117, -0.0280675217509, 0.941695570946, 0.334390997887, 0.0283937249333, 0.951020777225, 0.306838333607, 0.0871780663729, 0.903026282787, 0.419927179813, 0.279694497585, 0.941623568535, 0.185775876045, 0.325620651245, 0.894295811653, 0.305944561958, 0.516206085682, 0.85611140728, -0.00100859999657, 0.567077696323, 0.812490522861, 0.132955849171, 0.573830664158, 0.812656521797, -0.0985079109669, 0.630897462368, 0.774421095848, 0.0404648780823, 0.108817130327, 0.810277223587, 0.57533121109, 0.0711047276855, 0.852895319462, 0.516633927822, 0.135855957866, 0.856350362301, 0.497596681118, 0.175988852978, 0.810674071312, 0.557881474495, 0.37530964613, 0.830782055855, 0.410293102264, 0.40842962265, 0.780074417591, 0.473356068134, 0.603920578957, 0.755814731121, 0.251831948757, 0.629356861115, 0.700137495995, 0.336323410273, 0.653334677219, 0.740471363068, 0.155730992556, 0.692034959793, 0.67327362299, 0.259203672409, 0.168113231659, 0.710195481777, 0.683195650578, 0.14012567699, 0.766690433025, 0.626056849957, 0.210068553686, 0.763785243034, 0.609834909439, 0.240208461881, 0.707639336586, 0.664035439491, 0.441494643688, 0.72562277317, 0.527209758759, 0.466250151396, 0.671259224415, 0.575689136982, 0.650148689747, 0.649620831013, 0.393313229084, 0.673142671585, 0.592638969421, 0.441650599241, 0.700290441513, 0.635905921459, 0.32343930006, 0.728997826576, 0.570955514908, 0.376787155867, 0.20875993371, 0.565534234047, 0.797488093376, 0.191273212433, 0.641422271729, 0.742555737495, 0.262365758419, 0.640244603157, 0.721559047699, 0.281600952148, 0.561814308167, 0.777471184731, 0.493598908186, 0.600213766098, 0.628888010979, 0.512198269367, 0.521075606346, 0.682296872139, 0.69523203373, 0.526683926582, 0.488520473242, 0.716527581215, 0.44662207365, 0.535270273685, 0.746122658253, 0.51489251852, 0.421405702829, 0.770550251007, 0.433142155409, 0.466942936182, 0.235177949071, 0.397223055363, 0.886736214161, 0.222681745887, 0.48381587863, 0.846009492874, 0.296159565449, 0.478938311338, 0.826016426086, 0.307530105114, 0.388856559992, 0.868108868599, 0.528251409531, 0.432405412197, 0.730323374271, 0.53589618206, 0.342058718204, 0.77149695158, 0.729639649391, 0.362149596214, 0.579542934895, 0.737408280373, 0.272386729717, 0.617600440979, 0.782650589943, 0.356716245413, 0.50951808691, 0.79382121563, 0.263525396585, 0.547537684441, 0.257802128792, 0.208823949099, 0.943041205406, 0.244408175349, 0.307756006718, 0.919210374355, 0.317616075277, 0.294514030218, 0.900986790657, 0.324541985989, 0.192918717861, 0.925662457943, 0.540022909641, 0.242183834314, 0.805678606033, 0.536012113094, 0.143626600504, 0.831539750099, 0.735170960426, 0.182487845421, 0.65239495039, 0.726330637932, 0.0871354937553, 0.68135625124, 0.791147053242, 0.184299364686, 0.582681059837, 0.783935248852, 0.0864835679531, 0.614298462868, 0.290415287018, 0.00162184238434, 0.95658403635, 0.268517911434, 0.115072250366, 0.956061244011, 0.334133088589, 0.0884921550751, 0.938040614128, 0.34168279171, -0.0234360098839, 0.93920135498, 0.527400672436, 0.0335831940174, 0.848596692085, 0.510861694813, -0.0676255524158, 0.856646299362, 0.704305291176, -0.00441178679466, 0.70945763588, 0.672010064125, -0.102042168379, 0.733066558838, 0.761709928513, 0.0105684101582, 0.647366523743, 0.727161347866, -0.0910322666168, 0.679959595203, 0.33438000083, -0.108063369989, 0.935899376869, 0.318148910999, -0.0627420544624, 0.945643365383, 0.360576063395, -0.105032265186, 0.926471173763, 0.389753311872, -0.141373336315, 0.909671247005, 0.493832826614, -0.157159537077, 0.854883790016, 0.479700088501, -0.170898377895, 0.860278189182, 0.627808332443, -0.163508623838, 0.760603308678, 0.578511297703, -0.180022627115, 0.795180797577, 0.67918586731, -0.134804278612, 0.72106218338, 0.643545627594, -0.176431685686, 0.744390130043, -0.562975943089, 0.731542050838, -0.383798062801, -0.614841282368, 0.699418783188, -0.363565206528, -0.5414904356, 0.757059276104, -0.364752829075, -0.502493262291, 0.768780708313, -0.394806742668, -0.628689110279, 0.715057015419, -0.304696917534, -0.550683617592, 0.767446279526, -0.327369123697, -0.268692851067, 0.880234122276, -0.390369057655, -0.275442779064, 0.863303303719, -0.422178506851, -0.219624653459, 0.866969168186, -0.446684062481, 0.0917806774378, 0.884989738464, -0.455813318491, 0.152960807085, 0.868574619293, -0.470720857382, 0.0558243393898, 0.901525735855, -0.428406596184, 0.197565317154, 0.877586960793, -0.436125278473, 0.223462507129, 0.868595659733, -0.441590607166, 0.279750496149, 0.835064768791, -0.473078131676, -0.462221413851, 0.877680957317, -0.124189555645, -0.507881581783, 0.801378965378, -0.315030843019, -0.440384954214, 0.840559005737, -0.314511030912, -0.385876446962, 0.911497652531, -0.140237629414, -0.137545451522, 0.922004461288, -0.361088961363, -0.0956811010838, 0.975594341755, -0.196106731892, 0.179926633835, 0.894655764103, -0.408182680607, 0.178824976087, 0.951440572739, -0.249356716871, 0.291511952877, 0.846295416355, -0.44519752264, 0.245242908597, 0.927756786346, -0.280214428902, -0.384829759598, 0.920954823494, 0.0560682713985, -0.420780926943, 0.905918359756, -0.0406400561333, -0.340124279261, 0.939405202866, -0.0350678861141, -0.297676086426, 0.953583955765, 0.0382422208786, -0.0807818025351, 0.994342684746, -0.064442306757, -0.0535345301032, 0.998220562935, -0.00923588871956, 0.187444373965, 0.973340034485, -0.129886746407, 0.204621195793, 0.976678967476, -0.0602109134197, 0.261793941259, 0.952584207058, -0.15311473608, 0.270675212145, 0.958542466164, -0.0855971574783, -0.320686131716, 0.891328811646, 0.319514542818, -0.360879987478, 0.909110426903, 0.20659160614, -0.284386098385, 0.941518545151, 0.179063916206, -0.253704369068, 0.915171563625, 0.312237679958, -0.0208497028798, 0.992928147316, 0.114256531, 0.00622477009892, 0.964016914368, 0.264630109072, 0.215687856078, 0.975103497505, 0.0452635288239, 0.229497686028, 0.952694177628, 0.197741240263, 0.265083909035, 0.963813900948, -0.0137777328491, 0.267239302397, 0.950581908226, 0.1561178267, -0.249314695597, 0.859228491783, 0.446055293083, -0.291219055653, 0.87420797348, 0.387747883797, -0.211675062776, 0.895689427853, 0.390295088291, -0.175148099661, 0.876577317715, 0.447584807873, 0.0298850722611, 0.929958105087, 0.365623563528, 0.0515090413392, 0.906896114349, 0.417470932007, 0.241657018661, 0.923788070679, 0.295995622873, 0.257982075214, 0.896246254444, 0.35997825861, 0.275819659233, 0.924216866493, 0.262950539589, 0.320949047804, 0.885109603405, 0.336107432842, -0.176685646176, 0.796439409256, 0.577808499336, -0.212116926908, 0.842947423458, 0.493802845478, -0.140340611339, 0.85413402319, 0.500155985355, -0.104556418955, 0.810776114464, 0.575418114662, 0.0790010392666, 0.881057858467, 0.465717345476, 0.112440042198, 0.839726388454, 0.530671775341, 0.292138755322, 0.865275621414, 0.406631112099, 0.325821578503, 0.827939867973, 0.455797314644, 0.357540994883, 0.849022567272, 0.388228714466, 0.38499674201, 0.817234158516, 0.428137660027, -0.103962600231, 0.661907076836, 0.741934895515, -0.140615537763, 0.738258957863, 0.659239888191, -0.0685818865895, 0.748443901539, 0.65918391943, -0.0325058810413, 0.671719193459, 0.739684581757, 0.146721690893, 0.77621358633, 0.61266797781, 0.179571777582, 0.700285434723, 0.690470457077, 0.352675497532, 0.772426724434, 0.527610659599, 0.382246553898, 0.698727965355, 0.604204535484, 0.413804024458, 0.766991257668, 0.489782065153, 0.442852258682, 0.695009112358, 0.565897107124, -0.0338805653155, 0.467889666557, 0.882795333862, -0.0681993961334, 0.57494032383, 0.814977884293, 0.00276660406962, 0.580965518951, 0.813552260399, 0.0372489504516, 0.473627954721, 0.879594326019, 0.212385848165, 0.608841121197, 0.763937294483, 0.243874341249, 0.503291964531, 0.828624725342, 0.411879569292, 0.612279057503, 0.67443728447, 0.440097093582, 0.511055707932, 0.737925052643, 0.471051722765, 0.610536515713, 0.636200845242, 0.499083250761, 0.510647714138, 0.699679553509, 0.0284252129495, 0.205999821424, 0.977830648422, -0.000640450569335, 0.346111416817, 0.937871694565, 0.0689718648791, 0.34929049015, 0.934149861336, 0.0981064587831, 0.208852946758, 0.972703158855, 0.272980570793, 0.380760014057, 0.883119285107, 0.296755373478, 0.242870658636, 0.923226118088, 0.464982539415, 0.395467549562, 0.79170191288, 0.4846585989, 0.264851003885, 0.833280324936, 0.523358941078, 0.397204995155, 0.753472447395, 0.540997624397, 0.268625825644, 0.7965914011, 0.0726066678762, -0.110633641481, 0.990900754929, 0.0540993586183, 0.0512562394142, 0.996915876865, 0.120676554739, 0.0544485449791, 0.990892708302, 0.137060597539, -0.107614457607, 0.984392702579, 0.314612001181, 0.0912904143333, 0.944500744343, 0.32091704011, -0.0687349140644, 0.944289803505, 0.494046777487, 0.121635198593, 0.860534071922, 0.493212014437, -0.0310682356358, 0.869006514549, 0.550345778465, 0.130427598953, 0.824320971966, 0.543452858925, -0.0219637751579, 0.838792622089, 0.0857091099024, -0.428809463978, 0.898984491825, 0.0835177823901, -0.276904404163, 0.956945955753, 0.142862856388, -0.270217359066, 0.951823532581, 0.138414189219, -0.424887627363, 0.894263863564, 0.315391749144, -0.232047915459, 0.919825196266, 0.29414716363, -0.387428015471, 0.873369216919, 0.474264740944, -0.18779528141, 0.859768390656, 0.439169347286, -0.342538535595, 0.830177247524, 0.525550246239, -0.167866319418, 0.833675146103, 0.479482203722, -0.328356862068, 0.813434362411, 0.0721525102854, -0.573166847229, 0.815885543823, 0.077876880765, -0.542240202427, 0.8362454772, 0.124430410564, -0.531205534935, 0.83769595623, 0.111415356398, -0.565253257751, 0.816989183426, 0.259350657463, -0.502232313156, 0.824557900429, 0.253565400839, -0.532013237476, 0.807504117489, 0.390832930803, -0.453996837139, 0.800332248211, 0.350665092468, -0.494209676981, 0.795101881027, 0.435832351446, -0.417806833982, 0.796796321869, 0.408741563559, -0.463668942451, 0.785708665848, -0.481030672789, 0.811998784542, -0.329641401768, -0.574921309948, 0.749239683151, -0.327873945236, -0.471965461969, 0.814170122147, -0.337300091982, -0.366424322128, 0.856505274773, -0.362667411566, -0.607831418514, 0.740740299225, -0.285028904676, -0.539739966393, 0.780282318592, -0.315017879009, -0.236350625753, 0.878464698792, -0.414529800415, -0.154424354434, 0.895153641701, -0.417430877686, 0.00402337452397, 0.903044223785, -0.428825497627, 0.229502677917, 0.854264974594, -0.465786337852, 0.346709281206, 0.819919347763, -0.454885601997, 0.0998643413186, 0.874467909336, -0.474056780338, 0.273926258087, 0.821385920048, -0.499686062336, 0.362331569195, 0.823860228062, -0.435162603855, 0.432911217213, 0.77469599247, -0.460249990225, -0.290972113609, 0.939762175083, -0.177705347538, -0.390772968531, 0.858301699162, -0.331678807735, -0.250913202763, 0.90729790926, -0.336524307728, -0.167217493057, 0.962759196758, -0.211021244526, 0.102162137628, 0.907519876957, -0.406653225422, 0.128117308021, 0.939325332642, -0.317254185677, 0.381917655468, 0.802306711674, -0.458082616329, 0.433026224375, 0.806098461151, -0.402603387833, 0.49033588171, 0.746752381325, -0.448695421219, 0.531406462193, 0.737268328667, -0.416459202766, -0.178488090634, 0.983290076256, 0.0260428190231, -0.239073783159, 0.969503223896, -0.0480002760887, -0.137554436922, 0.987597703934, -0.0716002881527, -0.0921708568931, 0.995373368263, 0.0115048885345, 0.168793022633, 0.96948415041, -0.17608577013, 0.193671494722, 0.977541744709, -0.0793671011925, 0.454029887915, 0.842925429344, -0.287629127502, 0.44225242734, 0.879668295383, -0.173181712627, 0.53284907341, 0.768399894238, -0.353596150875, 0.515324294567, 0.828381836414, -0.218221127987, -0.0869552344084, 0.965900301933, 0.24263265729, -0.128802090883, 0.986307024956, 0.100025743246, -0.0583120919764, 0.994365692139, 0.0850510597229, -0.0267610177398, 0.973547935486, 0.225574880838, 0.217600271106, 0.975556373596, -0.0183108150959, 0.210946276784, 0.971306622028, 0.107061684132, 0.448018670082, 0.884439885616, -0.128225266933, 0.454172819853, 0.89011913538, -0.0284889936447, 0.51234126091, 0.840810060501, -0.173034697771, 0.513714849949, 0.854289054871, -0.0753944814205, -0.0531443469226, 0.89703810215, 0.43805873394, -0.0614460408688, 0.928851485252, 0.364492893219, -0.0114321475849, 0.940452933311, 0.33884164691, 0.00712342886254, 0.907920777798, 0.418360650539, 0.22285169363, 0.942932248116, 0.246195703745, 0.238861858845, 0.909406304359, 0.33959043026, 0.453660994768, 0.883409142494, 0.11478933692, 0.448285579681, 0.863773107529, 0.22876393795, 0.495813220739, 0.867187023163, 0.0393845140934, 0.499825060368, 0.847020149231, 0.179242879152, -0.0163900498301, 0.828713774681, 0.558893203735, -0.0388389676809, 0.865409553051, 0.498952329159, 0.0320253260434, 0.874562859535, 0.4832290411, 0.0530099868774, 0.837752044201, 0.542915046215, 0.250231415033, 0.876168370247, 0.411229759455, 0.255680769682, 0.848901629448, 0.461941480637, 0.444551736116, 0.843726158142, 0.299825429916, 0.445040553808, 0.822603583336, 0.353070378304, 0.488600432873, 0.836138427258, 0.248067080975, 0.500389814377, 0.807822048664, 0.310531198978, 0.0184672214091, 0.691069245338, 0.722134828568, 0.00409287353978, 0.769468545914, 0.638198256493, 0.0668447092175, 0.782169699669, 0.618982076645, 0.0822755545378, 0.702898681164, 0.706088721752, 0.268632858992, 0.80312538147, 0.531246542931, 0.27890175581, 0.733570456505, 0.619261980057, 0.453590989113, 0.789811491966, 0.412127524614, 0.466583073139, 0.733647346497, 0.493414968252, 0.509452104568, 0.782819569111, 0.356438338757, 0.519965946674, 0.731875002384, 0.439762175083, 0.0448161624372, 0.481311678886, 0.87505877018, 0.0321898758411, 0.590582609177, 0.805960655212, 0.0950950682163, 0.606090903282, 0.789307594299, 0.108137339354, 0.492111325264, 0.863440155983, 0.291800886393, 0.642447948456, 0.708173155785, 0.30347931385, 0.533967733383, 0.78878068924, 0.478170573711, 0.654723167419, 0.584881305695, 0.490641832352, 0.554853439331, 0.671419143677, 0.530710697174, 0.664997160435, 0.524900496006, 0.546346008778, 0.562140166759, 0.620403587818, 0.0670962333679, 0.205259054899, 0.976096153259, 0.0556286945939, 0.346800237894, 0.935965299606, 0.119782820344, 0.359886318445, 0.924948692322, 0.130563572049, 0.212132960558, 0.968167662621, 0.315005868673, 0.405115693808, 0.857932925224, 0.324167102575, 0.25868088007, 0.909613311291, 0.501749455929, 0.435078620911, 0.747228264809, 0.508878290653, 0.294720053673, 0.808441877365, 0.557381629944, 0.449893057346, 0.697365343571, 0.565292298794, 0.30490192771, 0.766078591347, 0.0828423798084, -0.118140339851, 0.989230155945, 0.0747801065445, 0.0429584383965, 0.995971262455, 0.139327913523, 0.0516519546509, 0.988593459129, 0.143996506929, -0.114264547825, 0.982652246952, 0.329026639462, 0.0976818203926, 0.938933432102, 0.327307134867, -0.0699894726276, 0.942002534866, 0.509102225304, 0.139280974865, 0.849006533623, 0.499234199524, -0.0259875953197, 0.865728497505, 0.565159320831, 0.154362350702, 0.810039281845, 0.550337791443, -0.0159044265747, 0.834428966045, 0.084419503808, -0.43415787816, 0.896536231041, 0.0849583372474, -0.284702986479, 0.954527616501, 0.143960520625, -0.277887076139, 0.949447154999, 0.136332824826, -0.431081831455, 0.891615688801, 0.315078854561, -0.238310992718, 0.918329656124, 0.291564941406, -0.394438803196, 0.87109285593, 0.475407421589, -0.191170275211, 0.858392775059, 0.436615109444, -0.349785387516, 0.828500807285, 0.526417016983, -0.171741098166, 0.832337498665, 0.476806998253, -0.336649298668, 0.811614871025, 0.0711560025811, -0.575707137585, 0.814183056355, 0.0763697326183, -0.545018434525, 0.834576845169, 0.122514002025, -0.535305321217, 0.835364639759, 0.111154429615, -0.568285346031, 0.814918875694, 0.256939381361, -0.507662713528, 0.821983754635, 0.251811951399, -0.536589980125, 0.805020809174, 0.388174772263, -0.460468888283, 0.797925949097, 0.349488437176, -0.499802052975, 0.792118728161, 0.433177173138, -0.425225585699, 0.794315099716, 0.406658172607, -0.469692111015, 0.783208489418, 0.528791248798, 0.243836343288, -0.812600553036, 0.551779329777, 0.316167503595, -0.771345019341, 0.517614662647, 0.343761146069, -0.78313344717, 0.499739050865, 0.267937064171, -0.823326349258, 0.488321483135, 0.289603561163, -0.822841525078, 0.511326551437, 0.365722596645, -0.777296245098, 0.545606195927, 0.562623083591, -0.620616614819, 0.552821993828, 0.557106733322, -0.619205951691, 0.585849046707, 0.531735420227, -0.611093401909, 0.567086696625, 0.727061390877, -0.386251360178, 0.541792392731, 0.74427318573, -0.389762282372, 0.535107374191, 0.748681843281, -0.390553057194, 0.519703030586, 0.798182964325, -0.303660303354, 0.523849785328, 0.793083429337, -0.309833407402, 0.549772918224, 0.777255296707, -0.304990887642, 0.637908279896, 0.19395840168, -0.744882047176, 0.66116130352, 0.262061864138, -0.702556729317, 0.603159844875, 0.289288640022, -0.742904663086, 0.580953538418, 0.216935515404, -0.784110188484, 0.632396042347, 0.503999829292, -0.587754487991, 0.686729550362, 0.475358456373, -0.549394071102, 0.652572870255, 0.676993489265, -0.339446425438, 0.60458534956, 0.70503205061, -0.369867265224, 0.581188440323, 0.759098768234, -0.292207747698, 0.628800094128, 0.731289148331, -0.263102501631, 0.757739126682, 0.146054878831, -0.635528087616, 0.781570971012, 0.207373380661, -0.587826430798, 0.721848964691, 0.236372619867, -0.649967670441, 0.694878160954, 0.171713143587, -0.697893261909, 0.749337613583, 0.439496189356, -0.494704574347, 0.80549967289, 0.405243575573, -0.431675612926, 0.767132282257, 0.597019672394, -0.233392506838, 0.711184203625, 0.638951003551, -0.292156755924, 0.684867143631, 0.694369316101, -0.219553679228, 0.740378379822, 0.652088046074, -0.161295294762, 0.861307859421, 0.0970702767372, -0.498118519783, 0.882652401924, 0.151616200805, -0.444222807884, 0.834566950798, 0.181303232908, -0.51963698864, 0.807179152966, 0.126055940986, -0.57616597414, 0.857679963112, 0.367338001728, -0.358949542046, 0.899116456509, 0.333549231291, -0.282365709543, 0.853057324886, 0.512964010239, -0.0925023853779, 0.814090132713, 0.555857121944, -0.16636274755, 0.787269234657, 0.608573198318, -0.0961377620697, 0.823324263096, 0.566525876522, -0.0241039395332, 0.938777387142, 0.0449734181166, -0.340690076351, 0.954878628254, 0.0938416495919, -0.280707210302, 0.922337412834, 0.124557368457, -0.364930778742, 0.899111390114, 0.0779227614403, -0.430026113987, 0.934153854847, 0.295669674873, -0.198324084282, 0.957926690578, 0.262575685978, -0.113254792988, 0.899337351322, 0.431065797806, 0.0690724253654, 0.880820930004, 0.472618281841, -0.0135299116373, 0.851359844208, 0.521004617214, 0.0560055971146, 0.865329682827, 0.482304334641, 0.134098514915, 0.984898507595, -0.0106606781483, -0.171050339937, 0.993500947952, 0.0337884910405, -0.105878025293, 0.978390455246, 0.0654777362943, -0.194581240416, 0.963025152683, 0.0260355249047, -0.267023354769, 0.973662912846, 0.225433915854, -0.0236044675112, 0.978769421577, 0.192943736911, 0.0646511763334, 0.904422819614, 0.353605180979, 0.237441271544, 0.906433224678, 0.392896294594, 0.152993798256, 0.871347844601, 0.437163949013, 0.221443116665, 0.865120708942, 0.402714371681, 0.297966957092, 0.99726575613, -0.0695595890284, 0.00433270260692, 0.99660795927, -0.0287599172443, 0.0730909258127, 0.999548017979, 0.00408485578373, -0.0167994257063, 0.994776546955, -0.0294296108186, -0.0946054160595, 0.975176513195, 0.156259804964, 0.154949188232, 0.962196409702, 0.123463712633, 0.241518050432, 0.872819364071, 0.278983712196, 0.399687290192, 0.892611384392, 0.317193180323, 0.319420486689, 0.850488126278, 0.359026551247, 0.383623123169, 0.82905459404, 0.32660138607, 0.453206121922, 0.974312722683, -0.131418302655, 0.181219264865, 0.963038086891, -0.0946510061622, 0.250988185406, 0.984639585018, -0.0599654838443, 0.162125021219, 0.992474257946, -0.0878764539957, 0.0816642343998, 0.940253019333, 0.085544757545, 0.328636735678, 0.910676956177, 0.0505577474833, 0.409277379513, 0.812922477722, 0.201236218214, 0.545946121216, 0.846184372902, 0.241823971272, 0.474224805832, 0.799232542515, 0.283544361591, 0.52936309576, 0.768375873566, 0.247547224164, 0.589673876762, 0.91311019659, -0.195936813951, 0.356699287891, 0.89042109251, -0.165403038263, 0.423306137323, 0.932287454605, -0.127718418837, 0.337528049946, 0.95422577858, -0.148679092526, 0.258347958326, 0.871307790279, 0.00814002752304, 0.490052968264, 0.826945245266, -0.0318360030651, 0.560841560364, 0.734070241451, 0.109900772572, 0.669670701027, 0.77641248703, 0.158711060882, 0.609417915344, 0.731070160866, 0.202367872, 0.65113735199, 0.69515901804, 0.153480648994, 0.701849997044, 0.80830681324, -0.262273788452, 0.526543974876, 0.774609029293, -0.242669716477, 0.583514750004, 0.839477419853, -0.200645402074, 0.504395663738, 0.876236379147, -0.210960298777, 0.43255135417, 0.770418226719, -0.0837101340294, 0.631541252136, 0.713073611259, -0.132130086422, 0.688086152077, 0.643414676189, -0.0103818774223, 0.765052914619, 0.691902041435, 0.0552619099617, 0.71945476532, 0.658054292202, 0.101702272892, 0.745665788651, 0.618138313293, 0.026048630476, 0.785252809525, 0.653807520866, -0.328064918518, 0.681400179863, 0.611768245697, -0.327095210552, 0.719822585583, 0.702078938484, -0.279790520668, 0.654369354248, 0.752603709698, -0.272844582796, 0.59878218174, 0.638849079609, -0.199983596802, 0.742478728294, 0.570389688015, -0.260007470846, 0.778747797012, 0.542830109596, -0.179035902023, 0.820169270039, 0.597739458084, -0.085608124733, 0.796728312969, 0.587213695049, -0.0380806624889, 0.808162927628, 0.538827300072, -0.157607376575, 0.82717615366, 0.533183932304, -0.339769363403, 0.77438211441, 0.500446856022, -0.336689293385, 0.797239124775, 0.541158556938, -0.344475984573, 0.766733407974, 0.592837929726, -0.316896289587, 0.739943504333, 0.49990400672, -0.330121278763, 0.800320267677, 0.491041660309, -0.336262464523, 0.803245425224, 0.507204830647, -0.328742712736, 0.79628443718, 0.511944413185, -0.262171834707, 0.817664027214, 0.538361370564, -0.217577278614, 0.813771188259, 0.518020510674, -0.280921131372, 0.807548046112, 0.600239694118, 0.212951630354, -0.770558238029, 0.619217932224, 0.285488784313, -0.731069147587, 0.585496127605, 0.313852250576, -0.747052371502, 0.572721004486, 0.238682895899, -0.783848285675, 0.561083555222, 0.261687934399, -0.784920871258, 0.577459573746, 0.333197414875, -0.744926989079, 0.597916424274, 0.522926032543, -0.606992661953, 0.603869616985, 0.528496384621, -0.596178889275, 0.638469159603, 0.505193412304, -0.580114781857, 0.600690543652, 0.709093868732, -0.368445694447, 0.57627594471, 0.721633076668, -0.382815361023, 0.573011934757, 0.716230630875, -0.397576928139, 0.550790667534, 0.773820281029, -0.311814814806, 0.556226015091, 0.77171087265, -0.307363152504, 0.578202366829, 0.761658906937, -0.291468977928, 0.708211064339, 0.155688971281, -0.68818116188, 0.729862570763, 0.224205255508, -0.645313084126, 0.673406600952, 0.255328863859, -0.693344593048, 0.653454601765, 0.181971043348, -0.734356164932, 0.691682100296, 0.474372684956, -0.544005692005, 0.749237656593, 0.438954412937, -0.495336353779, 0.705047011375, 0.644450306892, -0.294936954975, 0.648622095585, 0.681930065155, -0.337129235268, 0.622226059437, 0.737757205963, -0.260663241148, 0.678579032421, 0.700185537338, -0.220606356859, 0.809730410576, 0.107114613056, -0.576418876648, 0.831544816494, 0.169153898954, -0.528504371643, 0.782426655293, 0.197203427553, -0.590182781219, 0.757769107819, 0.132126092911, -0.638534128666, 0.803869187832, 0.402006536722, -0.437699764967, 0.850275158882, 0.368756651878, -0.374762833118, 0.804776906967, 0.563740730286, -0.184190347791, 0.758114993572, 0.604652285576, -0.243009597063, 0.731005251408, 0.660017609596, -0.171477168798, 0.77628749609, 0.61948788166, -0.114055544138, 0.893134176731, 0.0620565265417, -0.444809615612, 0.912324368954, 0.117869406939, -0.391366809607, 0.874389886856, 0.144604310393, -0.462523281574, 0.849856257439, 0.088392496109, -0.518966257572, 0.891844630241, 0.33333131671, -0.304793983698, 0.924092888832, 0.302370667458, -0.232421800494, 0.872711420059, 0.485090494156, -0.0495710968971, 0.842466533184, 0.524794518948, -0.119318976998, 0.81470990181, 0.577196657658, -0.0498821735382, 0.841636776924, 0.539217114449, 0.0169956684113, 0.953781843185, 0.0170044749975, -0.299011707306, 0.968062579632, 0.0674992129207, -0.240197449923, 0.943231165409, 0.0939864143729, -0.317611068487, 0.922800242901, 0.0458342581987, -0.381751716137, 0.950460910797, 0.268579870462, -0.154551297426, 0.967613697052, 0.239380702376, -0.0762604624033, 0.905682384968, 0.411323785782, 0.0997375994921, 0.893112301826, 0.448535531759, 0.023717135191, 0.862548470497, 0.496899902821, 0.0921803712845, 0.870770990849, 0.463263094425, 0.16291578114, 0.988873362541, -0.0299530550838, -0.143624603748, 0.996357083321, 0.0161856114864, -0.0800462216139, 0.985653281212, 0.0432577356696, -0.161284267902, 0.972381293774, 0.00198121368885, -0.232090890408, 0.978033602238, 0.206912502646, 0.0058179795742, 0.979786098003, 0.178524076939, 0.086854070425, 0.904124975204, 0.342411577702, 0.254379212856, 0.90870654583, 0.377403974533, 0.176678642631, 0.872831344604, 0.422154486179, 0.243612408638, 0.864508867264, 0.392350524664, 0.313179403543, 0.996311068535, -0.0801552906632, 0.0183271635324, 0.995311379433, -0.0379101485014, 0.0855279713869, 0.999653041363, -0.00925995316356, 0.0020361954812, 0.995962202549, -0.0445517413318, -0.0739640593529, 0.974195718765, 0.146147847176, 0.170235574245, 0.96059691906, 0.116940669715, 0.25094717741, 0.8714427948, 0.274940937757, 0.405451506376, 0.891267776489, 0.309748411179, 0.330292224884, 0.849018573761, 0.352346539497, 0.392956316471, 0.827870965004, 0.323309332132, 0.457707732916, 0.973117113113, -0.13472430408, 0.185170069337, 0.96205842495, -0.0969781130552, 0.253841340542, 0.983092069626, -0.0654513314366, 0.169238895178, 0.99110263586, -0.0947314873338, 0.0902101621032, 0.938940405846, 0.0823150426149, 0.333182394505, 0.910257041454, 0.0499173402786, 0.410288095474, 0.813300311565, 0.202039971948, 0.54508638382, 0.845506608486, 0.240487396717, 0.476109206676, 0.798902750015, 0.282858550549, 0.530227839947, 0.769092738628, 0.248819828033, 0.588201344013, 0.914015889168, -0.194434255362, 0.355197697878, 0.89168971777, -0.163463652134, 0.421384751797, 0.932346343994, -0.127527475357, 0.337437063456, 0.953970789909, -0.149240925908, 0.258965790272, 0.872069597244, 0.00946901738644, 0.488673388958, 0.828786671162, -0.0291694700718, 0.558262348175, 0.736410558224, 0.113091826439, 0.66656267643, 0.777847111225, 0.161013364792, 0.60697966814, 0.732832610607, 0.20497007668, 0.648336172104, 0.697653234005, 0.156825631857, 0.698627948761, 0.811079025269, -0.258989810944, 0.52389973402, 0.777498185635, -0.239405691624, 0.58101350069, 0.841746747494, -0.197645291686, 0.501792430878, 0.87821573019, -0.208082139492, 0.42992413044, 0.773107469082, -0.0804274082184, 0.628674089909, 0.716078698635, -0.128765106201, 0.685599923134, 0.646407723427, -0.00697213411331, 0.762564599514, 0.6947671175, 0.0588172376156, 0.716404557228, 0.660929381847, 0.105248212814, 0.742624640465, 0.621058404446, 0.0294086039066, 0.782826542854, 0.65630376339, -0.325723618269, 0.680121541023, 0.614044487476, -0.324993818998, 0.718834877014, 0.704941093922, -0.276854395866, 0.652537882328, 0.755527794361, -0.269587576389, 0.596570789814, 0.641695141792, -0.197122484446, 0.740787267685, 0.57253408432, -0.257982105017, 0.77784705162, 0.544853448868, -0.177016586065, 0.819265604019, 0.600433707237, -0.082744538784, 0.795002937317, 0.589693903923, -0.0353395938873, 0.806478381157, 0.540695667267, -0.155726969242, 0.826313376427, 0.534502506256, -0.338597685099, 0.77398622036, 0.50164347887, -0.335563600063, 0.796961247921, 0.542655110359, -0.343130409718, 0.76627856493, 0.59451842308, -0.315268754959, 0.73928964138, 0.501317560673, -0.328864693642, 0.799953341484, 0.49216234684, -0.335229724646, 0.802990436554, 0.508317470551, -0.327684998512, 0.796010613441, 0.513288974762, -0.260882198811, 0.817234098911, 0.539590001106, -0.216324627399, 0.813291370869, 0.519128203392, -0.279802471399, 0.807225227356, -0.284541040659, 0.544141590595, -0.788886725903, -0.100448660553, 0.383777081966, -0.917616784573, -0.0103575717658, 0.411521732807, -0.911009848118, -0.177211478353, 0.572781085968, -0.799946427345, -0.0945987328887, 0.288046002388, -0.952615261078, 0.0164282377809, 0.347159147263, -0.937339901924, 0.330380231142, 0.459225296974, -0.82423210144, 0.231968939304, 0.505688309669, -0.830582141876, 0.0775223821402, 0.657469391823, -0.749079704285, 0.45575734973, 0.537050843239, -0.709406733513, 0.330006301403, 0.681583106518, -0.652638971806, 0.587528586388, 0.502725183964, -0.633619606495, 0.627897322178, 0.501248538494, -0.594887316227, 0.531558454037, 0.514861404896, -0.672131001949, 0.409504324198, 0.678492069244, -0.609385967255, -0.492215305567, 0.798795759678, -0.345029771328, -0.476417094469, 0.667763292789, -0.571415364742, -0.373803079128, 0.721259117126, -0.582625985146, -0.443326085806, 0.829763293266, -0.338158845901, -0.099632397294, 0.830845952034, -0.546959757805, -0.176882579923, 0.943921923637, -0.27770614624, 0.228499993682, 0.860398113728, -0.454862654209, 0.155287101865, 0.969049274921, -0.190328538418, 0.339141577482, 0.849303483963, -0.403810024261, 0.270010471344, 0.951759576797, -0.143684536219, -0.424693733454, 0.904258847237, -0.0366943180561, -0.426462203264, 0.888479590416, -0.167722314596, -0.391230821609, 0.912522375584, -0.116779744625, -0.362739443779, 0.931414723396, -0.0167960822582, -0.163233697414, 0.985714197159, -0.0334405601025, -0.137402504683, 0.988880336285, 0.051297724247, 0.100375682116, 0.99442666769, 0.0208945870399, 0.0854504927993, 0.989751040936, 0.111749231815, 0.181353226304, 0.982141375542, 0.0436580181122, 0.164500325918, 0.978144526482, 0.124776273966, -0.273248434067, 0.935818374157, 0.221304118633, -0.337179154158, 0.940755844116, 0.0261791050434, -0.28221976757, 0.954963564873, 0.0882716476917, -0.216640561819, 0.944638609886, 0.245194911957, -0.0781202018261, 0.983164966106, 0.163340628147, -0.0373465195298, 0.95565032959, 0.291091054678, 0.110739544034, 0.971599519253, 0.207673251629, 0.147572427988, 0.933771967888, 0.325098872185, 0.149809747934, 0.960803866386, 0.23196592927, 0.199168846011, 0.922410368919, 0.329981327057, -0.217408329248, 0.863777160645, 0.453892946243, -0.246724486351, 0.918692469597, 0.307452172041, -0.18669359386, 0.923006236553, 0.335560619831, -0.157817333937, 0.866362392902, 0.473188102245, 0.0019519404741, 0.92726290226, 0.373597145081, 0.0459519177675, 0.8610689044, 0.505811154842, 0.189547747374, 0.896986067295, 0.398603618145, 0.235253930092, 0.821881771088, 0.518229484558, 0.242623716593, 0.87640029192, 0.415273487568, 0.295317798853, 0.806671380997, 0.511336565018, -0.104998283088, 0.686839580536, 0.718764901161, -0.165718942881, 0.777638137341, 0.605980932713, -0.096837952733, 0.76318949461, 0.63840419054, -0.036943141371, 0.682040035725, 0.729967534542, 0.0972549319267, 0.745333909988, 0.659101963043, 0.149403870106, 0.668888986111, 0.727779209614, 0.286141574383, 0.704832077026, 0.648638010025, 0.329263538122, 0.633374750614, 0.699870646, 0.343682199717, 0.674560189247, 0.652876853943, 0.374069988728, 0.618849098682, 0.690285503864, -0.0272498708218, 0.543329894543, 0.838716685772, -0.0579610913992, 0.636921584606, 0.768353879452, 0.00393874011934, 0.61951982975, 0.784586071968, 0.0344528965652, 0.530416786671, 0.846680223942, 0.183379605412, 0.611064493656, 0.769655525684, 0.204100355506, 0.533425867558, 0.820485174656, 0.341521859169, 0.598278284073, 0.724445104599, 0.352973401546, 0.527385652065, 0.772444665432, 0.392604410648, 0.592238128185, 0.703215539455, 0.396044373512, 0.529835939407, 0.749545693398, 0.017590586096, 0.354474961758, 0.934576690197, 0.0044186655432, 0.463425040245, 0.885784506798, 0.0615900941193, 0.43472969532, 0.898116707802, 0.0769697502255, 0.330577105284, 0.94031393528, 0.220064520836, 0.435761392117, 0.872398436069, 0.236205652356, 0.345342725515, 0.907932758331, 0.361305862665, 0.443125128746, 0.820057272911, 0.366614252329, 0.354064106941, 0.860017299652, 0.400318086147, 0.447812736034, 0.79912763834, 0.401807636023, 0.359245508909, 0.841955661774, 0.00656084809452, 0.126942634583, 0.99158346653, 0.0456719063222, 0.274187207222, 0.960276961327, 0.0839896276593, 0.221996903419, 0.97111260891, 0.0558357350528, 0.0845946371555, 0.99454665184, 0.23944067955, 0.239818543196, 0.940505862236, 0.235747799277, 0.134264498949, 0.962181448936, 0.367663919926, 0.266957372427, 0.89047908783, 0.362243562937, 0.167570382357, 0.916567206383, 0.40009611845, 0.275126874447, 0.873856008053, 0.389587342739, 0.174756199121, 0.903923988342, -0.706366658211, -0.489973962307, 0.510261833668, -0.0997017845511, -0.064079195261, 0.992648243904, -0.175870880485, -0.210108578205, 0.961415588856, -0.494182735682, -0.440919756889, 0.748845815659, 0.194641217589, -0.0046374797821, 0.980555832386, 0.0175768919289, -0.233151555061, 0.971970438957, 0.345941513777, 0.0626067817211, 0.93584227562, 0.312939465046, -0.0629555583, 0.947365820408, 0.376225352287, 0.0786033570766, 0.922861218452, 0.338186860085, -0.0530061721802, 0.939263284206, -0.592913866043, -0.0554952025414, -0.802975475788, -0.487014889717, -0.154381394386, -0.85928940773, -0.865300655365, -0.495719283819, -0.0700975358486, -0.699599683285, -0.137165606022, -0.700815320015, -0.260138452053, -0.446931004524, 0.855556607246, -0.72266471386, -0.608585178852, 0.326766312122, 0.23840098083, -0.218298077583, 0.945995330811, 0.118585176766, -0.397014081478, 0.909788191319, 0.29804995656, -0.169468820095, 0.939065396786, 0.191061288118, -0.364607840776, 0.911017894745, -0.556780874729, 0.132584959269, -0.819641470909, -0.506403028965, 0.0823306143284, -0.8580057621, -0.671938061714, 0.00198635458946, -0.740196466446, -0.611908137798, 0.10865214467, -0.783044576645, -0.857027113438, -0.513884782791, -0.0287028253078, -0.742998600006, -0.624937236309, 0.238333001733, -0.110903508961, -0.586297869682, 0.80209171772, -0.152847841382, -0.614043474197, 0.773941159248, 0.101791255176, -0.44927623868, 0.887235045433, 0.012730455026, -0.535040438175, 0.844372928143, -0.454023867846, 0.68080329895, -0.574251532555, -0.369252473116, 0.668000221252, -0.645619034767, -0.404003947973, 0.700307548046, -0.588002383709, -0.462696254253, 0.719193816185, -0.5177526474, -0.378518640995, 0.560676634312, -0.736044704914, -0.383935034275, 0.585055351257, -0.713932394981, -0.378552645445, 0.769763410091, -0.513378918171, -0.395832449198, 0.825778484344, -0.401002854109, -0.434918642044, 0.836074471474, -0.333499312401, -0.341367900372, 0.920955836773, -0.186289727688, -0.37644726038, 0.916048288345, -0.136157870293, -0.34557762742, 0.89911544323, -0.267512172461, -0.312052726746, 0.93477666378, -0.167965292931, -0.32251060009, 0.940315961838, -0.105774044991, -0.353473216295, 0.930957794189, -0.0881505906582, -0.61131131649, 0.632021129131, -0.475651323795, -0.511212646961, 0.688549995422, -0.513767838478, -0.535836160183, 0.710072517395, -0.456149220467, -0.619226932526, 0.66685551405, -0.413832962513, -0.50549030304, 0.814976811409, -0.282289743423, -0.573912680149, 0.780732214451, -0.245923697948, -0.439067393541, 0.889355421066, -0.125155240297, -0.501582503319, 0.860361099243, -0.0871256291866, -0.415127635002, 0.904088973999, -0.0984274446964, -0.481819480658, 0.874183952808, -0.0552105307579, -0.739767551422, 0.471955448389, -0.478954344988, -0.691421210766, 0.542901039124, -0.476015210152, -0.690967261791, 0.588025391102, -0.41974619031, -0.746482551098, 0.515036404133, -0.420591950417, -0.638355195522, 0.731925964355, -0.237030431628, -0.702499806881, 0.665771901608, -0.250276446342, -0.551552414894, 0.83148086071, -0.0618482530117, -0.608757138252, 0.790093421936, -0.0675489008427, -0.51365685463, 0.857502996922, -0.0155575275421, -0.576315939426, 0.816603422165, -0.0203814208508, -0.843169331551, 0.284228146076, -0.455715358257, -0.793417334557, 0.380972921848, -0.474071860313, -0.800947070122, 0.427382916212, -0.418598622084, -0.862522482872, 0.314820885658, -0.395397543907, -0.770691215992, 0.585160255432, -0.251035183668, -0.843421220779, 0.480117976665, -0.239839553833, -0.685611844063, 0.721963942051, -0.0900039076805, -0.769636511803, 0.632739841938, -0.0818318724632, -0.633248746395, 0.771443009377, -0.0571681857109, -0.739291667938, 0.671952068806, -0.0364093184471, -0.927548885345, 0.0663040727377, -0.366951167583, -0.894912719727, 0.162064045668, -0.415045648813, -0.912116527557, 0.204633206129, -0.354351967573, -0.94623118639, 0.104012571275, -0.30532476306, -0.90786677599, 0.368093848228, -0.199201822281, -0.949315309525, 0.272748619318, -0.154285401106, -0.845357656479, 0.530954658985, -0.0534195452929, -0.90253341198, 0.429816186428, -0.00931452214718, -0.809416472912, 0.586268901825, -0.0230233371258, -0.880584001541, 0.471806526184, 0.0369559526443, -0.961544573307, -0.0717827156186, -0.263962268829, -0.947799742222, -0.0111535340548, -0.317723035812, -0.966677010059, 0.029086612165, -0.253149539232, -0.978624463081, -0.032976642251, -0.201504126191, -0.978212535381, 0.180976331234, -0.0987067818642, -0.992082357407, 0.116440825164, -0.0401370748878, -0.939415216446, 0.338823676109, 0.0457576662302, -0.961493551731, 0.251159131527, 0.108840115368, -0.919855117798, 0.38145878911, 0.0880447030067, -0.943214118481, 0.287856072187, 0.163957476616, -0.977916657925, -0.145019188523, -0.1484721452, -0.970907747746, -0.096768066287, -0.217648252845, -0.986790895462, -0.0740260481834, -0.1419891119, -0.989577054977, -0.12070055306, -0.0745965689421, -0.998156547546, 0.0493638888001, 0.0253496393561, -0.994358658791, -0.00285789370537, 0.103146843612, -0.966117203236, 0.180465489626, 0.182883769274, -0.959327280521, 0.106890723109, 0.260119438171, -0.94905936718, 0.200698375702, 0.241666018963, -0.937388896942, 0.133245766163, 0.320848077536, -0.970842778683, -0.237134367228, 0.0250610336661, -0.984640657902, -0.154183417559, -0.0781389996409, -0.985863268375, -0.165188103914, 0.0134971216321, -0.965208411217, -0.23455914855, 0.1129148826, -0.978992342949, -0.0711117163301, 0.189509779215, -0.946801006794, -0.146793678403, 0.285333812237, -0.938232600689, 0.0370043218136, 0.343143343925, -0.901498734951, -0.0529928952456, 0.428822517395, -0.912314414978, 0.0416980981827, 0.406620144844, -0.873403191566, -0.0406048297882, 0.484680593014, -0.867092072964, -0.428503572941, 0.252847611904, -0.949160337448, -0.284223169088, 0.133074790239, -0.918360590935, -0.32580858469, 0.223289549351, -0.832333564758, -0.442839235067, 0.332431584597, -0.887704908848, -0.25360840559, 0.383483171463, -0.798231899738, -0.378608614206, 0.467842668295, -0.845497667789, -0.16224899888, 0.508138537407, -0.760820150375, -0.296649456024, 0.576669812202, -0.812140703201, -0.161842122674, 0.560027837753, -0.730884253979, -0.298127949238, 0.613453686237, -0.575261235237, -0.68993461132, 0.438703536987, -0.764201164246, -0.530947625637, 0.365359634161, -0.701213181019, -0.57547712326, 0.420144081116, -0.529208123684, -0.700696349144, 0.47786962986, -0.663602590561, -0.526630938053, 0.530742704868, -0.503255009651, -0.66403144598, 0.552442133427, -0.645344078541, -0.452438294888, 0.615002214909, -0.490746766329, -0.614937186241, 0.616778731346, -0.616095900536, -0.452948182821, 0.643940508366, -0.462284356356, -0.623236715794, 0.630289614201, -0.206395670772, -0.861550807953, 0.463171124458, -0.398314684629, -0.781370997429, 0.479793101549, -0.348283797503, -0.79977440834, 0.488319516182, -0.182865768671, -0.863315284252, 0.469726145267, -0.323219358921, -0.78094214201, 0.533904731274, -0.172108024359, -0.853337228298, 0.491518557072, -0.325781613588, -0.746511518955, 0.579640924931, -0.16930885613, -0.841033995152, 0.513218939304, -0.306410431862, -0.749699532986, 0.586053907871, -0.15227599442, -0.844605922699, 0.512688159943, -0.0554763488472, -0.899286389351, 0.433132171631, -0.0965962335467, -0.88926243782, 0.446405172348, -0.080583460629, -0.893026292324, 0.442047536373, -0.0486662015319, -0.898568630219, 0.435433417559, -0.0714120268822, -0.89067697525, 0.448319554329, -0.0463638976216, -0.898579597473, 0.435662388802, -0.0744511112571, -0.884298920631, 0.460291981697, -0.0482392311096, -0.897830843925, 0.437000006437, -0.0728167071939, -0.883659124374, 0.461780548096, -0.0503645911813, -0.894620776176, 0.443298071623, -0.667849302292, 0.10244807601, -0.736802458763, -0.67013657093, 0.00945928692818, -0.741770863533, -0.694101333618, 0.133109807968, -0.707037448883, -0.652750849724, 0.187393426895, -0.733618378639, -0.729165732861, -0.196271687746, -0.655126094818, -0.737530231476, 0.114896297455, -0.665014147758, -0.623491704464, 0.502079308033, -0.59880810976, -0.63969874382, 0.40510264039, -0.652742862701, -0.566724836826, 0.403610110283, -0.717856168747, -0.514916479588, 0.627165555954, -0.58388364315, -0.426736116409, 0.62264996767, -0.655438125134, -0.533204972744, 0.640431642532, -0.552210211754, -0.503696858883, 0.676594614983, -0.536568880081, -0.484515666962, 0.68433123827, -0.544363558292, -0.38830268383, 0.682543814182, -0.618669092655, -0.751609027386, 0.114969283342, -0.649047017097, -0.697570323944, 0.117786407471, -0.706341683865, -0.663484632969, 0.180808395147, -0.725597858429, -0.725122928619, 0.189263820648, -0.661643147469, -0.566919744015, 0.40008816123, -0.719672560692, -0.638136267662, 0.411264747381, -0.650414466858, -0.413170218468, 0.608000338078, -0.677512347698, -0.489723086357, 0.626153886318, -0.606216967106, -0.33619043231, 0.680297553539, -0.650820434093, -0.411747634411, 0.692567825317, -0.591786265373, -0.860944926739, 0.140613541007, -0.488260507584, -0.815366744995, 0.127806410193, -0.564126610756, -0.792435646057, 0.210509389639, -0.571951270103, -0.845928490162, 0.225768834352, -0.482525259256, -0.715987741947, 0.438498556614, -0.542657077312, -0.77329146862, 0.468298584223, -0.426746100187, -0.578900098801, 0.664173364639, -0.472382307053, -0.629443883896, 0.700452387333, -0.335502684116, -0.515377283096, 0.721880972385, -0.461161673069, -0.563606798649, 0.769688546658, -0.298870742321, -0.918616533279, 0.162652879953, -0.359283477068, -0.893506109715, 0.152032077312, -0.421816587448, -0.883229255676, 0.24115717411, -0.401428759098, -0.908939480782, 0.250620305538, -0.332285642624, -0.811796844006, 0.484913557768, -0.324409037828, -0.83724707365, 0.494237720966, -0.232684731483, -0.662943720818, 0.716260671616, -0.216500610113, -0.686851501465, 0.718054175377, -0.109681874514, -0.5935947299, 0.785889625549, -0.171519190073, -0.617750406265, 0.78319144249, -0.0662630498409, -0.951311647892, 0.17799025774, -0.250442355871, -0.934983551502, 0.170762389898, -0.30990639329, -0.928391635418, 0.258945792913, -0.265389829874, -0.942354381084, 0.264076262712, -0.204031378031, -0.855992436409, 0.497114866972, -0.139822751284, -0.865454554558, 0.497000873089, -0.0581033378839, -0.703160643578, 0.710596323013, 0.00363793969154, -0.70934176445, 0.697417378426, 0.0991945266724, -0.638441205025, 0.767244338989, 0.0559011399746, -0.645601987839, 0.748847782612, 0.147721350193, -0.970182001591, 0.186692595482, -0.152605891228, -0.959357202053, 0.185874834657, -0.210904285312, -0.951460599899, 0.267801105976, -0.149672806263, -0.958804428577, 0.266720473766, -0.0946050435305, -0.869714319706, 0.492872178555, 0.00839759409428, -0.871584713459, 0.484877586365, 0.0680436640978, -0.709923565388, 0.683639526367, 0.16745442152, -0.710234463215, 0.665850877762, 0.227167367935, -0.648637056351, 0.728008031845, 0.220613360405, -0.649771749973, 0.709038853645, 0.272867560387, -0.982928097248, 0.179689720273, -0.0309854447842, -0.975367367268, 0.191088274121, -0.107425555587, -0.964083850384, 0.262229800224, -0.0342603549361, -0.967572748661, 0.24864590168, 0.0370809957385, -0.873862087727, 0.466825008392, 0.133549645543, -0.872599422932, 0.44218942523, 0.205997794867, -0.712094962597, 0.641126334667, 0.285086870193, -0.71553593874, 0.600623607635, 0.355888545513, -0.654229402542, 0.678525030613, 0.333141386509, -0.658854007721, 0.636435687542, 0.40032106638, -0.979811012745, 0.15717753768, 0.121087439358, -0.982794165611, 0.180905342102, 0.0280198380351, -0.965483427048, 0.233165577054, 0.113453730941, -0.957926690578, 0.207962155342, 0.196278691292, -0.868940532207, 0.401194810867, 0.288756787777, -0.858003854752, 0.357912868261, 0.367592960596, -0.71661657095, 0.546892821789, 0.432163476944, -0.714808046818, 0.480199962854, 0.507793664932, -0.663720488548, 0.573971688747, 0.478986352682, -0.664270341396, 0.505379319191, 0.550211787224, -0.94686794281, 0.115902014077, 0.29900470376, -0.968524456024, 0.156424760818, 0.192063987255, -0.941822588444, 0.18161714077, 0.281745880842, -0.916954040527, 0.142916828394, 0.37170574069, -0.841536819935, 0.298465847969, 0.449589192867, -0.817178189754, 0.239817529917, 0.523549795151, -0.708049118519, 0.406314313412, 0.577036738396, -0.697391331196, 0.320182293653, 0.640721440315, -0.662494897842, 0.421227782965, 0.618921995163, -0.655935883522, 0.332771450281, 0.677057504654, -0.86883354187, 0.0491821616888, 0.49204236269, -0.917127966881, 0.111038446426, 0.382025629282, -0.88114386797, 0.103467747569, 0.460733830929, -0.834205031395, 0.050456866622, 0.548591315746, -0.786017537117, 0.163780540228, 0.595608115196, -0.748371005058, 0.0933603346348, 0.656217813492, -0.681415200233, 0.230787292123, 0.694122374058, -0.661734163761, 0.131980121136, 0.737621247768, -0.646172821522, 0.232277855277, 0.726570546627, -0.631826221943, 0.132090091705, 0.76337647438, -0.739488661289, -0.0429978370667, 0.671344220638, -0.813215374947, 0.0398291647434, 0.580077767372, -0.776540398598, -0.000813990831375, 0.629587888718, -0.709516644478, -0.0644637048244, 0.701303243637, -0.704570174217, 0.00718301534653, 0.709172785282, -0.657129526138, -0.0671561956406, 0.75037831068, -0.637722432613, 0.0361696779728, 0.769023776054, -0.611443281174, -0.0645099282265, 0.788270890713, -0.614819288254, 0.0256922245026, 0.78786700964, -0.594566404819, -0.0737898349762, 0.800276279449, -0.610083699226, -0.0812772512436, 0.787774085999, -0.659354865551, -0.0364502370358, 0.75054526329, -0.639921724796, -0.0968284606934, 0.761919856071, -0.574911355972, -0.0905681550503, 0.812816500664, -0.611107409, -0.130292654037, 0.780363321304, -0.584647417068, -0.141732186079, 0.798432826996, -0.586625874043, -0.131094425917, 0.798798799515, -0.569156110287, -0.151988089085, 0.807686030865, -0.578250348568, -0.143034785986, 0.802847504616, -0.57198125124, -0.155839920044, 0.8049518466, 0.661027312279, -0.500781774521, -0.558261394501, 0.632305026054, -0.500868737698, -0.590522587299, 0.629932761192, -0.53104364872, -0.566192984581, 0.653086721897, -0.538844227791, -0.531527400017, 0.652657866478, -0.547642588615, -0.522992968559, 0.63212710619, -0.541283488274, -0.553916692734, 0.532827079296, -0.530150830746, -0.659113943577, 0.535278320312, -0.522534191608, -0.663197696209, 0.532141268253, -0.493695855141, -0.687376379967, 0.360631048679, -0.482530206442, -0.79781293869, 0.369028538465, -0.510038971901, -0.776578426361, 0.378639638424, -0.51773160696, -0.76680034399, 0.159516826272, -0.508559405804, -0.845764458179, 0.160801425576, -0.497572690248, -0.852032661438, 0.15612283349, -0.472694218159, -0.866938173771, -0.0615501068532, -0.465753346682, -0.882429480553, -0.0656640678644, -0.495068520308, -0.866020441055, -0.072601467371, -0.501482546329, -0.861765682697, -0.281453967094, -0.506239116192, -0.814801871777, -0.277686148882, -0.495954155922, -0.822384595871, -0.268218994141, -0.468487501144, -0.841411828995, -0.404012978077, -0.474722594023, -0.781541824341, -0.414431810379, -0.504950463772, -0.756747424603, -0.428565531969, -0.513982713223, -0.742663681507, -0.457770735025, -0.523030996323, -0.718526959419, -0.451919496059, -0.518754303455, -0.725298941135, -0.444270789623, -0.480182945728, -0.755938708782, 0.686649560928, -0.405156612396, -0.603121876717, 0.652426958084, -0.411874562502, -0.635684013367, 0.642242968082, -0.457132935524, -0.6147762537, 0.672196924686, -0.454216778278, -0.584153592587, 0.533554852009, -0.455243468285, -0.712367892265, 0.539067149162, -0.412342429161, -0.73401427269, 0.356325358152, -0.405385553837, -0.841480791569, 0.357456028461, -0.445499420166, -0.820458173752, 0.153717562556, -0.43432277441, -0.887203991413, 0.15230999887, -0.395503520966, -0.905413508415, -0.0578111410141, -0.387382000685, -0.919777154922, -0.0593757629395, -0.429122328758, -0.9009578228, -0.262194812298, -0.427718877792, -0.864699840546, -0.259868502617, -0.385286599398, -0.88510966301, -0.397363990545, -0.386182367802, -0.832082688808, -0.400022178888, -0.432041466236, -0.80790990591, -0.440017074347, -0.438651531935, -0.783176422119, -0.440004110336, -0.387719869614, -0.809608459473, 0.715460896492, -0.299034655094, -0.630943417549, 0.677668333054, -0.312393605709, -0.665261089802, 0.665506958961, -0.36283737421, -0.651802122593, 0.700567424297, -0.35097900033, -0.62081849575, 0.545024394989, -0.368654668331, -0.752620756626, 0.553360879421, -0.320047318935, -0.768607914448, 0.359235495329, -0.316999286413, -0.877414941788, 0.357458025217, -0.362505495548, -0.8603541255, 0.151649191976, -0.352465569973, -0.923129141331, 0.151245325804, -0.307104289532, -0.9392593503, -0.0577483549714, -0.29701128602, -0.952809214592, -0.0577796511352, -0.344352006912, -0.936739087105, -0.258383959532, -0.338933646679, -0.904299914837, -0.259359657764, -0.289782464504, -0.920953810215, -0.399080455303, -0.28490793705, -0.871181845665, -0.398224711418, -0.337164163589, -0.852721452713, -0.440409958363, -0.337259173393, -0.831679821014, -0.443319112062, -0.281935870647, -0.850515186787, 0.742167830467, -0.184035405517, -0.643982470036, 0.702727735043, -0.20261977613, -0.68155413866, 0.691025257111, -0.258133023977, -0.674720287323, 0.729209721088, -0.238988831639, -0.640728533268, 0.561038553715, -0.270606279373, -0.781923770905, 0.56970089674, -0.215854793787, -0.792618632317, 0.364852786064, -0.215616822243, -0.905421495438, 0.362078636885, -0.267588168383, -0.89257645607, 0.151201322675, -0.257998079062, -0.953923821449, 0.150940418243, -0.205243945122, -0.966688990593, -0.0598077364266, -0.192660808563, -0.979133248329, -0.0589351952076, -0.246860474348, -0.966944932938, -0.260142415762, -0.236922472715, -0.935729384422, -0.262468725443, -0.180464506149, -0.947596788406, -0.404030948877, -0.170142620802, -0.898446559906, -0.401973575354, -0.229177802801, -0.886166334152, -0.445527404547, -0.223311513662, -0.866622209549, -0.4489544034, -0.162829846144, -0.878249764442, 0.762596607208, -0.0625385046005, -0.643374681473, 0.723169565201, -0.0833648145199, -0.685180068016, 0.7140173316, -0.143493652344, -0.684825122356, 0.75351536274, -0.119927793741, -0.645932912827, 0.577059745789, -0.160152643919, -0.800468325615, 0.583915650845, -0.0989746153355, -0.805383682251, 0.370037198067, -0.0994782447815, -0.923348069191, 0.367713958025, -0.158871054649, -0.91593837738, 0.15082244575, -0.148829042912, -0.976984918118, 0.150122657418, -0.0878559052944, -0.984449625015, -0.0629610791802, -0.0725926160812, -0.995069384575, -0.0616222880781, -0.134615361691, -0.988674461842, -0.264007240534, -0.120344609022, -0.956668019295, -0.266127616167, -0.056271135807, -0.96198040247, -0.408144712448, -0.0417758822441, -0.911629676819, -0.406808137894, -0.107565522194, -0.906826138496, -0.450802862644, -0.0968362092972, -0.887015163898, -0.452669262886, -0.0311419069767, -0.890795946121, 0.773368418217, 0.0624999403954, -0.63038957119, 0.734909057617, 0.0438686609268, -0.676298737526, 0.730263411999, -0.0200833380222, -0.682428836823, 0.769694507122, 0.00360658764839, -0.637929320335, 0.589063107967, -0.0367524921894, -0.806876301765, 0.592043161392, 0.0307741761208, -0.804943859577, 0.371927648783, 0.0325678288937, -0.927364945412, 0.371463835239, -0.0347889065742, -0.927469849586, 0.149354889989, -0.0232284963131, -0.988205432892, 0.14776237309, 0.0463311672211, -0.987631678581, -0.0662243962288, 0.0639300644398, -0.995451331139, -0.0648448094726, -0.00621503591537, -0.997573673725, -0.267105311155, 0.0113421976566, -0.963287115097, -0.267513215542, 0.082639247179, -0.95968914032, -0.407596886158, 0.0989662110806, -0.907450914383, -0.408831506968, 0.0271986424923, -0.911873579025, -0.452196449041, 0.040952205658, -0.890639007092, -0.450564920902, 0.111069440842, -0.885466575623, 0.771812915802, 0.188065230846, -0.606904745102, 0.734116256237, 0.177062496543, -0.655071139336, 0.735858738422, 0.110321700573, -0.667636334896, 0.774729073048, 0.128519162536, -0.618607163429, 0.59297990799, 0.0993104875088, -0.798691749573, 0.590073764324, 0.172482937574, -0.788326859474, 0.367625951767, 0.180103600025, -0.912036478519, 0.370515078306, 0.105181217194, -0.922524333, 0.1458029598, 0.119262963533, -0.981791496277, 0.143005818129, 0.196628630161, -0.96968215704, -0.0683956369758, 0.21546292305, -0.973803877831, -0.0675208047032, 0.138185292482, -0.987796664238, -0.266574501991, 0.156997591257, -0.950623869896, -0.263739347458, 0.233910381794, -0.935480415821, -0.398626595736, 0.248900860548, -0.882350444794, -0.4042789042, 0.172992795706, -0.897790789604, -0.44589433074, 0.18723538518, -0.874937772751, -0.438993394375, 0.260060429573, -0.859680294991, 0.755803644657, 0.311773836613, -0.575286209583, 0.717222392559, 0.313971161842, -0.621619224548, 0.72718334198, 0.24556581676, -0.640545547009, 0.766340553761, 0.251869916916, -0.590491652489, 0.58464640379, 0.246354579926, -0.772589683533, 0.574105620384, 0.32343930006, -0.751787960529, 0.354499906301, 0.339711397886, -0.87081694603, 0.362118631601, 0.259302675724, -0.895001709461, 0.139446884394, 0.276367515326, -0.950563907623, 0.135470077395, 0.35873863101, -0.923228144646, -0.0678191184998, 0.376893132925, -0.923444032669, -0.0682739838958, 0.2955057621, -0.95258128643, -0.259388655424, 0.312757521868, -0.913398146629, -0.25183993578, 0.392008662224, -0.884478926659, -0.377780884504, 0.402493387461, -0.833473205566, -0.389556348324, 0.325497746468, -0.861215949059, -0.428459584713, 0.337380081415, -0.837849974632, -0.414804667234, 0.410362094641, -0.811748862267, 0.72339951992, 0.432496339083, -0.537620604038, 0.681026279926, 0.452272385359, -0.57536816597, 0.700913310051, 0.383351206779, -0.600964486599, 0.742719650269, 0.371613740921, -0.55647790432, 0.560258805752, 0.400510072708, -0.724637150764, 0.541140556335, 0.47826051712, -0.691252231598, 0.331331938505, 0.50347495079, -0.797576069832, 0.344226032495, 0.42203950882, -0.838323712349, 0.130407601595, 0.441377729177, -0.887454986572, 0.125997945666, 0.523349940777, -0.842392623425, -0.062208712101, 0.538527369499, -0.839949250221, -0.06521910429, 0.458390533924, -0.886014401913, -0.242525741458, 0.471263647079, -0.847636938095, -0.229102820158, 0.547927498817, -0.804167151451, -0.342522531748, 0.552027225494, -0.759829521179, -0.361638754606, 0.478034615517, -0.800060391426, -0.397263020277, 0.485154509544, -0.778590798378, -0.375853478909, 0.555192351341, -0.741547107697, 0.672513842583, 0.550668656826, -0.493846833706, 0.623389720917, 0.589219033718, -0.513421952724, 0.65432035923, 0.521167516708, -0.547398686409, 0.701927959919, 0.487187832594, -0.518981218338, 0.517830610275, 0.554825425148, -0.650704503059, 0.491206645966, 0.628185272217, -0.602905869484, 0.300519227982, 0.658737063408, -0.689311742783, 0.317085206509, 0.582980930805, -0.747653186321, 0.120619565248, 0.602454066277, -0.788603782654, 0.117727443576, 0.676763534546, -0.726310610771, -0.0487432777882, 0.687318384647, -0.724302232265, -0.0558725260198, 0.615176200867, -0.786023616791, -0.213581487536, 0.622121155262, -0.752824604511, -0.193789467216, 0.690580427647, -0.696376740932, -0.292012780905, 0.68870395422, -0.663182675838, -0.3187687397, 0.622173070908, -0.714621186256, -0.351009994745, 0.623510718346, -0.698157191277, -0.321557879448, 0.687371313572, -0.65078240633, 0.601949155331, 0.667723298073, -0.437262892723, 0.546283006668, 0.72005045414, -0.42719694972, 0.586801767349, 0.655469059944, -0.474784612656, 0.641282260418, 0.599804878235, -0.47789862752, 0.460438907146, 0.698802947998, -0.546869754791, 0.431452661753, 0.761285066605, -0.483415007591, 0.270862191916, 0.79069018364, -0.548487305641, 0.285767704248, 0.728010058403, -0.622683882713, 0.11487930268, 0.74492007494, -0.656729638577, 0.117157615721, 0.804845929146, -0.581285476685, -0.024172399193, 0.810846090317, -0.584243535995, -0.0372549444437, 0.752613663673, -0.656948566437, -0.171580180526, 0.754206180573, -0.63334774971, -0.145672991872, 0.809833407402, -0.567754507065, -0.227717220783, 0.804437994957, -0.548105478287, -0.261182099581, 0.749255657196, -0.608108282089, -0.290184348822, 0.745684742928, -0.599285960197, -0.253435432911, 0.800357222557, -0.542766094208, 0.546534895897, 0.735707759857, -0.399286389351, 0.478305548429, 0.785276830196, -0.392376482487, 0.510556817055, 0.766146540642, -0.389547348022, 0.561824321747, 0.702596783638, -0.43601334095, 0.405483543873, 0.807163238525, -0.428330659866, 0.387581914663, 0.821739792824, -0.417036056519, 0.246790453792, 0.846772253513, -0.470603883266, 0.26308453083, 0.831873714924, -0.488025605679, 0.119625866413, 0.845200777054, -0.520308852196, 0.111833229661, 0.857932925224, -0.50084066391, -0.0142246037722, 0.861659705639, -0.506690919399, -0.0107316588983, 0.849502325058, -0.526901841164, -0.123744629323, 0.848234713078, -0.514375627041, -0.122255064547, 0.859246492386, -0.496131151915, -0.188154160976, 0.853249251842, -0.485757291317, -0.199531719089, 0.841307878494, -0.501781463623, -0.225810796022, 0.834647893906, -0.501766443253, -0.214897081256, 0.847378075123, -0.484938561916], \"indices\": [0, 1, 2, 2, 1, 0, 2, 3, 0, 0, 3, 2, 4, 5, 2, 2, 5, 4, 2, 1, 4, 4, 1, 2, 6, 7, 2, 2, 7, 6, 2, 5, 6, 6, 5, 2, 8, 3, 2, 2, 3, 8, 2, 7, 8, 8, 7, 2, 8, 7, 9, 9, 7, 8, 9, 10, 8, 8, 10, 9, 6, 11, 9, 9, 11, 6, 9, 7, 6, 6, 7, 9, 12, 13, 9, 9, 13, 12, 9, 11, 12, 12, 11, 9, 14, 10, 9, 9, 10, 14, 9, 13, 14, 14, 13, 9, 15, 16, 17, 17, 16, 15, 17, 18, 15, 15, 18, 17, 0, 3, 17, 17, 3, 0, 17, 16, 0, 0, 16, 17, 8, 19, 17, 17, 19, 8, 17, 3, 8, 8, 3, 17, 20, 18, 17, 17, 18, 20, 17, 19, 20, 20, 19, 17, 20, 19, 21, 21, 19, 20, 21, 22, 20, 20, 22, 21, 8, 10, 21, 21, 10, 8, 21, 19, 8, 8, 19, 21, 14, 23, 21, 21, 23, 14, 21, 10, 14, 14, 10, 21, 24, 22, 21, 21, 22, 24, 21, 23, 24, 24, 23, 21, 25, 26, 27, 27, 26, 25, 27, 28, 25, 25, 28, 27, 15, 18, 27, 27, 18, 15, 27, 26, 15, 15, 26, 27, 20, 29, 27, 27, 29, 20, 27, 18, 20, 20, 18, 27, 30, 28, 27, 27, 28, 30, 27, 29, 30, 30, 29, 27, 30, 29, 31, 31, 29, 30, 31, 32, 30, 30, 32, 31, 20, 22, 31, 31, 22, 20, 31, 29, 20, 20, 29, 31, 24, 33, 31, 31, 33, 24, 31, 22, 24, 24, 22, 31, 34, 32, 31, 31, 32, 34, 31, 33, 34, 34, 33, 31, 35, 36, 37, 37, 36, 35, 37, 38, 35, 35, 38, 37, 25, 28, 37, 37, 28, 25, 37, 36, 25, 25, 36, 37, 30, 39, 37, 37, 39, 30, 37, 28, 30, 30, 28, 37, 40, 38, 37, 37, 38, 40, 37, 39, 40, 40, 39, 37, 40, 39, 41, 41, 39, 40, 41, 42, 40, 40, 42, 41, 30, 32, 41, 41, 32, 30, 41, 39, 30, 30, 39, 41, 34, 43, 41, 41, 43, 34, 41, 32, 34, 34, 32, 41, 44, 42, 41, 41, 42, 44, 41, 43, 44, 44, 43, 41, 45, 46, 47, 47, 46, 45, 47, 48, 45, 45, 48, 47, 35, 38, 47, 47, 38, 35, 47, 46, 35, 35, 46, 47, 40, 49, 47, 47, 49, 40, 47, 38, 40, 40, 38, 47, 50, 48, 47, 47, 48, 50, 47, 49, 50, 50, 49, 47, 50, 49, 51, 51, 49, 50, 51, 52, 50, 50, 52, 51, 40, 42, 51, 51, 42, 40, 51, 49, 40, 40, 49, 51, 44, 53, 51, 51, 53, 44, 51, 42, 44, 44, 42, 51, 54, 52, 51, 51, 52, 54, 51, 53, 54, 54, 53, 51, 55, 56, 57, 57, 56, 55, 57, 58, 55, 55, 58, 57, 45, 48, 57, 57, 48, 45, 57, 56, 45, 45, 56, 57, 50, 59, 57, 57, 59, 50, 57, 48, 50, 50, 48, 57, 60, 58, 57, 57, 58, 60, 57, 59, 60, 60, 59, 57, 60, 59, 61, 61, 59, 60, 61, 62, 60, 60, 62, 61, 50, 52, 61, 61, 52, 50, 61, 59, 50, 50, 59, 61, 54, 63, 61, 61, 63, 54, 61, 52, 54, 54, 52, 61, 64, 62, 61, 61, 62, 64, 61, 63, 64, 64, 63, 61, 65, 66, 67, 67, 66, 65, 67, 68, 65, 65, 68, 67, 55, 58, 67, 67, 58, 55, 67, 66, 55, 55, 66, 67, 60, 69, 67, 67, 69, 60, 67, 58, 60, 60, 58, 67, 70, 68, 67, 67, 68, 70, 67, 69, 70, 70, 69, 67, 70, 69, 71, 71, 69, 70, 71, 72, 70, 70, 72, 71, 60, 62, 71, 71, 62, 60, 71, 69, 60, 60, 69, 71, 64, 73, 71, 71, 73, 64, 71, 62, 64, 64, 62, 71, 74, 72, 71, 71, 72, 74, 71, 73, 74, 74, 73, 71, 75, 76, 77, 77, 76, 75, 77, 78, 75, 75, 78, 77, 65, 68, 77, 77, 68, 65, 77, 76, 65, 65, 76, 77, 70, 79, 77, 77, 79, 70, 77, 68, 70, 70, 68, 77, 80, 78, 77, 77, 78, 80, 77, 79, 80, 80, 79, 77, 80, 79, 81, 81, 79, 80, 81, 82, 80, 80, 82, 81, 70, 72, 81, 81, 72, 70, 81, 79, 70, 70, 79, 81, 74, 83, 81, 81, 83, 74, 81, 72, 74, 74, 72, 81, 84, 82, 81, 81, 82, 84, 81, 83, 84, 84, 83, 81, 85, 86, 87, 87, 86, 85, 87, 88, 85, 85, 88, 87, 75, 78, 87, 87, 78, 75, 87, 86, 75, 75, 86, 87, 80, 89, 87, 87, 89, 80, 87, 78, 80, 80, 78, 87, 90, 88, 87, 87, 88, 90, 87, 89, 90, 90, 89, 87, 90, 89, 91, 91, 89, 90, 91, 92, 90, 90, 92, 91, 80, 82, 91, 91, 82, 80, 91, 89, 80, 80, 89, 91, 84, 93, 91, 91, 93, 84, 91, 82, 84, 84, 82, 91, 94, 92, 91, 91, 92, 94, 91, 93, 94, 94, 93, 91, 95, 96, 97, 97, 96, 95, 97, 98, 95, 95, 98, 97, 85, 88, 97, 97, 88, 85, 97, 96, 85, 85, 96, 97, 90, 99, 97, 97, 99, 90, 97, 88, 90, 90, 88, 97, 100, 98, 97, 97, 98, 100, 97, 99, 100, 100, 99, 97, 100, 99, 101, 101, 99, 100, 101, 102, 100, 100, 102, 101, 90, 92, 101, 101, 92, 90, 101, 99, 90, 90, 99, 101, 94, 103, 101, 101, 103, 94, 101, 92, 94, 94, 92, 101, 104, 102, 101, 101, 102, 104, 101, 103, 104, 104, 103, 101, 105, 106, 107, 107, 106, 105, 107, 108, 105, 105, 108, 107, 95, 98, 107, 107, 98, 95, 107, 106, 95, 95, 106, 107, 100, 109, 107, 107, 109, 100, 107, 98, 100, 100, 98, 107, 110, 108, 107, 107, 108, 110, 107, 109, 110, 110, 109, 107, 110, 109, 111, 111, 109, 110, 111, 112, 110, 110, 112, 111, 100, 102, 111, 111, 102, 100, 111, 109, 100, 100, 109, 111, 104, 113, 111, 111, 113, 104, 111, 102, 104, 104, 102, 111, 114, 112, 111, 111, 112, 114, 111, 113, 114, 114, 113, 111, 115, 116, 117, 117, 116, 115, 117, 118, 115, 115, 118, 117, 105, 108, 117, 117, 108, 105, 117, 116, 105, 105, 116, 117, 110, 119, 117, 117, 119, 110, 117, 108, 110, 110, 108, 117, 120, 118, 117, 117, 118, 120, 117, 119, 120, 120, 119, 117, 120, 119, 121, 121, 119, 120, 121, 122, 120, 120, 122, 121, 110, 112, 121, 121, 112, 110, 121, 119, 110, 110, 119, 121, 114, 123, 121, 121, 123, 114, 121, 112, 114, 114, 112, 121, 124, 122, 121, 121, 122, 124, 121, 123, 124, 124, 123, 121, 125, 126, 127, 127, 126, 125, 127, 128, 125, 125, 128, 127, 129, 130, 127, 127, 130, 129, 127, 126, 129, 129, 126, 127, 131, 132, 127, 127, 132, 131, 127, 130, 131, 131, 130, 127, 133, 128, 127, 127, 128, 133, 127, 132, 133, 133, 132, 127, 133, 132, 134, 134, 132, 133, 134, 135, 133, 133, 135, 134, 131, 136, 134, 134, 136, 131, 134, 132, 131, 131, 132, 134, 137, 138, 134, 134, 138, 137, 134, 136, 137, 137, 136, 134, 139, 135, 134, 134, 135, 139, 134, 138, 139, 139, 138, 134, 140, 141, 142, 142, 141, 140, 142, 143, 140, 140, 143, 142, 125, 128, 142, 142, 128, 125, 142, 141, 125, 125, 141, 142, 133, 144, 142, 142, 144, 133, 142, 128, 133, 133, 128, 142, 145, 143, 142, 142, 143, 145, 142, 144, 145, 145, 144, 142, 145, 144, 146, 146, 144, 145, 146, 147, 145, 145, 147, 146, 133, 135, 146, 146, 135, 133, 146, 144, 133, 133, 144, 146, 139, 148, 146, 146, 148, 139, 146, 135, 139, 139, 135, 146, 149, 147, 146, 146, 147, 149, 146, 148, 149, 149, 148, 146, 150, 151, 152, 152, 151, 150, 152, 153, 150, 150, 153, 152, 140, 143, 152, 152, 143, 140, 152, 151, 140, 140, 151, 152, 145, 154, 152, 152, 154, 145, 152, 143, 145, 145, 143, 152, 155, 153, 152, 152, 153, 155, 152, 154, 155, 155, 154, 152, 155, 154, 156, 156, 154, 155, 156, 157, 155, 155, 157, 156, 145, 147, 156, 156, 147, 145, 156, 154, 145, 145, 154, 156, 149, 158, 156, 156, 158, 149, 156, 147, 149, 149, 147, 156, 159, 157, 156, 156, 157, 159, 156, 158, 159, 159, 158, 156, 160, 161, 162, 162, 161, 160, 162, 163, 160, 160, 163, 162, 150, 153, 162, 162, 153, 150, 162, 161, 150, 150, 161, 162, 155, 164, 162, 162, 164, 155, 162, 153, 155, 155, 153, 162, 165, 163, 162, 162, 163, 165, 162, 164, 165, 165, 164, 162, 165, 164, 166, 166, 164, 165, 166, 167, 165, 165, 167, 166, 155, 157, 166, 166, 157, 155, 166, 164, 155, 155, 164, 166, 159, 168, 166, 166, 168, 159, 166, 157, 159, 159, 157, 166, 169, 167, 166, 166, 167, 169, 166, 168, 169, 169, 168, 166, 170, 171, 172, 172, 171, 170, 172, 173, 170, 170, 173, 172, 160, 163, 172, 172, 163, 160, 172, 171, 160, 160, 171, 172, 165, 174, 172, 172, 174, 165, 172, 163, 165, 165, 163, 172, 175, 173, 172, 172, 173, 175, 172, 174, 175, 175, 174, 172, 175, 174, 176, 176, 174, 175, 176, 177, 175, 175, 177, 176, 165, 167, 176, 176, 167, 165, 176, 174, 165, 165, 174, 176, 169, 178, 176, 176, 178, 169, 176, 167, 169, 169, 167, 176, 179, 177, 176, 176, 177, 179, 176, 178, 179, 179, 178, 176, 180, 181, 182, 182, 181, 180, 182, 183, 180, 180, 183, 182, 170, 173, 182, 182, 173, 170, 182, 181, 170, 170, 181, 182, 175, 184, 182, 182, 184, 175, 182, 173, 175, 175, 173, 182, 185, 183, 182, 182, 183, 185, 182, 184, 185, 185, 184, 182, 185, 184, 186, 186, 184, 185, 186, 187, 185, 185, 187, 186, 175, 177, 186, 186, 177, 175, 186, 184, 175, 175, 184, 186, 179, 188, 186, 186, 188, 179, 186, 177, 179, 179, 177, 186, 189, 187, 186, 186, 187, 189, 186, 188, 189, 189, 188, 186, 190, 191, 192, 192, 191, 190, 192, 193, 190, 190, 193, 192, 180, 183, 192, 192, 183, 180, 192, 191, 180, 180, 191, 192, 185, 194, 192, 192, 194, 185, 192, 183, 185, 185, 183, 192, 195, 193, 192, 192, 193, 195, 192, 194, 195, 195, 194, 192, 195, 194, 196, 196, 194, 195, 196, 197, 195, 195, 197, 196, 185, 187, 196, 196, 187, 185, 196, 194, 185, 185, 194, 196, 189, 198, 196, 196, 198, 189, 196, 187, 189, 189, 187, 196, 199, 197, 196, 196, 197, 199, 196, 198, 199, 199, 198, 196, 200, 201, 202, 202, 201, 200, 202, 203, 200, 200, 203, 202, 190, 193, 202, 202, 193, 190, 202, 201, 190, 190, 201, 202, 195, 204, 202, 202, 204, 195, 202, 193, 195, 195, 193, 202, 205, 203, 202, 202, 203, 205, 202, 204, 205, 205, 204, 202, 205, 204, 206, 206, 204, 205, 206, 207, 205, 205, 207, 206, 195, 197, 206, 206, 197, 195, 206, 204, 195, 195, 204, 206, 199, 208, 206, 206, 208, 199, 206, 197, 199, 199, 197, 206, 209, 207, 206, 206, 207, 209, 206, 208, 209, 209, 208, 206, 210, 211, 212, 212, 211, 210, 212, 213, 210, 210, 213, 212, 200, 203, 212, 212, 203, 200, 212, 211, 200, 200, 211, 212, 205, 214, 212, 212, 214, 205, 212, 203, 205, 205, 203, 212, 215, 213, 212, 212, 213, 215, 212, 214, 215, 215, 214, 212, 215, 214, 216, 216, 214, 215, 216, 217, 215, 215, 217, 216, 205, 207, 216, 216, 207, 205, 216, 214, 205, 205, 214, 216, 209, 218, 216, 216, 218, 209, 216, 207, 209, 209, 207, 216, 219, 217, 216, 216, 217, 219, 216, 218, 219, 219, 218, 216, 220, 221, 222, 222, 221, 220, 222, 223, 220, 220, 223, 222, 210, 213, 222, 222, 213, 210, 222, 221, 210, 210, 221, 222, 215, 224, 222, 222, 224, 215, 222, 213, 215, 215, 213, 222, 225, 223, 222, 222, 223, 225, 222, 224, 225, 225, 224, 222, 225, 224, 226, 226, 224, 225, 226, 227, 225, 225, 227, 226, 215, 217, 226, 226, 217, 215, 226, 224, 215, 215, 224, 226, 219, 228, 226, 226, 228, 219, 226, 217, 219, 219, 217, 226, 229, 227, 226, 226, 227, 229, 226, 228, 229, 229, 228, 226, 230, 231, 232, 232, 231, 230, 232, 233, 230, 230, 233, 232, 220, 223, 232, 232, 223, 220, 232, 231, 220, 220, 231, 232, 225, 234, 232, 232, 234, 225, 232, 223, 225, 225, 223, 232, 235, 233, 232, 232, 233, 235, 232, 234, 235, 235, 234, 232, 235, 234, 236, 236, 234, 235, 236, 237, 235, 235, 237, 236, 225, 227, 236, 236, 227, 225, 236, 234, 225, 225, 234, 236, 229, 238, 236, 236, 238, 229, 236, 227, 229, 229, 227, 236, 239, 237, 236, 236, 237, 239, 236, 238, 239, 239, 238, 236, 240, 241, 242, 242, 241, 240, 242, 243, 240, 240, 243, 242, 230, 233, 242, 242, 233, 230, 242, 241, 230, 230, 241, 242, 235, 244, 242, 242, 244, 235, 242, 233, 235, 235, 233, 242, 245, 243, 242, 242, 243, 245, 242, 244, 245, 245, 244, 242, 245, 244, 246, 246, 244, 245, 246, 247, 245, 245, 247, 246, 235, 237, 246, 246, 237, 235, 246, 244, 235, 235, 244, 246, 239, 248, 246, 246, 248, 239, 246, 237, 239, 239, 237, 246, 249, 247, 246, 246, 247, 249, 246, 248, 249, 249, 248, 246, 250, 251, 252, 252, 251, 250, 252, 253, 250, 250, 253, 252, 254, 255, 252, 252, 255, 254, 252, 251, 254, 254, 251, 252, 256, 257, 252, 252, 257, 256, 252, 255, 256, 256, 255, 252, 258, 253, 252, 252, 253, 258, 252, 257, 258, 258, 257, 252, 258, 257, 259, 259, 257, 258, 259, 260, 258, 258, 260, 259, 256, 261, 259, 259, 261, 256, 259, 257, 256, 256, 257, 259, 262, 263, 259, 259, 263, 262, 259, 261, 262, 262, 261, 259, 264, 260, 259, 259, 260, 264, 259, 263, 264, 264, 263, 259, 265, 266, 267, 267, 266, 265, 267, 268, 265, 265, 268, 267, 250, 253, 267, 267, 253, 250, 267, 266, 250, 250, 266, 267, 258, 269, 267, 267, 269, 258, 267, 253, 258, 258, 253, 267, 270, 268, 267, 267, 268, 270, 267, 269, 270, 270, 269, 267, 270, 269, 271, 271, 269, 270, 271, 272, 270, 270, 272, 271, 258, 260, 271, 271, 260, 258, 271, 269, 258, 258, 269, 271, 264, 273, 271, 271, 273, 264, 271, 260, 264, 264, 260, 271, 274, 272, 271, 271, 272, 274, 271, 273, 274, 274, 273, 271, 275, 276, 277, 277, 276, 275, 277, 278, 275, 275, 278, 277, 265, 268, 277, 277, 268, 265, 277, 276, 265, 265, 276, 277, 270, 279, 277, 277, 279, 270, 277, 268, 270, 270, 268, 277, 280, 278, 277, 277, 278, 280, 277, 279, 280, 280, 279, 277, 280, 279, 281, 281, 279, 280, 281, 282, 280, 280, 282, 281, 270, 272, 281, 281, 272, 270, 281, 279, 270, 270, 279, 281, 274, 283, 281, 281, 283, 274, 281, 272, 274, 274, 272, 281, 284, 282, 281, 281, 282, 284, 281, 283, 284, 284, 283, 281, 285, 286, 287, 287, 286, 285, 287, 288, 285, 285, 288, 287, 275, 278, 287, 287, 278, 275, 287, 286, 275, 275, 286, 287, 280, 289, 287, 287, 289, 280, 287, 278, 280, 280, 278, 287, 290, 288, 287, 287, 288, 290, 287, 289, 290, 290, 289, 287, 290, 289, 291, 291, 289, 290, 291, 292, 290, 290, 292, 291, 280, 282, 291, 291, 282, 280, 291, 289, 280, 280, 289, 291, 284, 293, 291, 291, 293, 284, 291, 282, 284, 284, 282, 291, 294, 292, 291, 291, 292, 294, 291, 293, 294, 294, 293, 291, 295, 296, 297, 297, 296, 295, 297, 298, 295, 295, 298, 297, 285, 288, 297, 297, 288, 285, 297, 296, 285, 285, 296, 297, 290, 299, 297, 297, 299, 290, 297, 288, 290, 290, 288, 297, 300, 298, 297, 297, 298, 300, 297, 299, 300, 300, 299, 297, 300, 299, 301, 301, 299, 300, 301, 302, 300, 300, 302, 301, 290, 292, 301, 301, 292, 290, 301, 299, 290, 290, 299, 301, 294, 303, 301, 301, 303, 294, 301, 292, 294, 294, 292, 301, 304, 302, 301, 301, 302, 304, 301, 303, 304, 304, 303, 301, 305, 306, 307, 307, 306, 305, 307, 308, 305, 305, 308, 307, 295, 298, 307, 307, 298, 295, 307, 306, 295, 295, 306, 307, 300, 309, 307, 307, 309, 300, 307, 298, 300, 300, 298, 307, 310, 308, 307, 307, 308, 310, 307, 309, 310, 310, 309, 307, 310, 309, 311, 311, 309, 310, 311, 312, 310, 310, 312, 311, 300, 302, 311, 311, 302, 300, 311, 309, 300, 300, 309, 311, 304, 313, 311, 311, 313, 304, 311, 302, 304, 304, 302, 311, 314, 312, 311, 311, 312, 314, 311, 313, 314, 314, 313, 311, 315, 316, 317, 317, 316, 315, 317, 318, 315, 315, 318, 317, 305, 308, 317, 317, 308, 305, 317, 316, 305, 305, 316, 317, 310, 319, 317, 317, 319, 310, 317, 308, 310, 310, 308, 317, 320, 318, 317, 317, 318, 320, 317, 319, 320, 320, 319, 317, 320, 319, 321, 321, 319, 320, 321, 322, 320, 320, 322, 321, 310, 312, 321, 321, 312, 310, 321, 319, 310, 310, 319, 321, 314, 323, 321, 321, 323, 314, 321, 312, 314, 314, 312, 321, 324, 322, 321, 321, 322, 324, 321, 323, 324, 324, 323, 321, 325, 326, 327, 327, 326, 325, 327, 328, 325, 325, 328, 327, 315, 318, 327, 327, 318, 315, 327, 326, 315, 315, 326, 327, 320, 329, 327, 327, 329, 320, 327, 318, 320, 320, 318, 327, 330, 328, 327, 327, 328, 330, 327, 329, 330, 330, 329, 327, 330, 329, 331, 331, 329, 330, 331, 332, 330, 330, 332, 331, 320, 322, 331, 331, 322, 320, 331, 329, 320, 320, 329, 331, 324, 333, 331, 331, 333, 324, 331, 322, 324, 324, 322, 331, 334, 332, 331, 331, 332, 334, 331, 333, 334, 334, 333, 331, 335, 336, 337, 337, 336, 335, 337, 338, 335, 335, 338, 337, 325, 328, 337, 337, 328, 325, 337, 336, 325, 325, 336, 337, 330, 339, 337, 337, 339, 330, 337, 328, 330, 330, 328, 337, 340, 338, 337, 337, 338, 340, 337, 339, 340, 340, 339, 337, 340, 339, 341, 341, 339, 340, 341, 342, 340, 340, 342, 341, 330, 332, 341, 341, 332, 330, 341, 339, 330, 330, 339, 341, 334, 343, 341, 341, 343, 334, 341, 332, 334, 334, 332, 341, 344, 342, 341, 341, 342, 344, 341, 343, 344, 344, 343, 341, 345, 346, 347, 347, 346, 345, 347, 348, 345, 345, 348, 347, 335, 338, 347, 347, 338, 335, 347, 346, 335, 335, 346, 347, 340, 349, 347, 347, 349, 340, 347, 338, 340, 340, 338, 347, 350, 348, 347, 347, 348, 350, 347, 349, 350, 350, 349, 347, 350, 349, 351, 351, 349, 350, 351, 352, 350, 350, 352, 351, 340, 342, 351, 351, 342, 340, 351, 349, 340, 340, 349, 351, 344, 353, 351, 351, 353, 344, 351, 342, 344, 344, 342, 351, 354, 352, 351, 351, 352, 354, 351, 353, 354, 354, 353, 351, 355, 356, 357, 357, 356, 355, 357, 358, 355, 355, 358, 357, 345, 348, 357, 357, 348, 345, 357, 356, 345, 345, 356, 357, 350, 359, 357, 357, 359, 350, 357, 348, 350, 350, 348, 357, 360, 358, 357, 357, 358, 360, 357, 359, 360, 360, 359, 357, 360, 359, 361, 361, 359, 360, 361, 362, 360, 360, 362, 361, 350, 352, 361, 361, 352, 350, 361, 359, 350, 350, 359, 361, 354, 363, 361, 361, 363, 354, 361, 352, 354, 354, 352, 361, 364, 362, 361, 361, 362, 364, 361, 363, 364, 364, 363, 361, 365, 366, 367, 367, 366, 365, 367, 368, 365, 365, 368, 367, 355, 358, 367, 367, 358, 355, 367, 366, 355, 355, 366, 367, 360, 369, 367, 367, 369, 360, 367, 358, 360, 360, 358, 367, 370, 368, 367, 367, 368, 370, 367, 369, 370, 370, 369, 367, 370, 369, 371, 371, 369, 370, 371, 372, 370, 370, 372, 371, 360, 362, 371, 371, 362, 360, 371, 369, 360, 360, 369, 371, 364, 373, 371, 371, 373, 364, 371, 362, 364, 364, 362, 371, 374, 372, 371, 371, 372, 374, 371, 373, 374, 374, 373, 371, 375, 376, 377, 377, 376, 375, 377, 378, 375, 375, 378, 377, 379, 380, 377, 377, 380, 379, 377, 376, 379, 379, 376, 377, 381, 382, 377, 377, 382, 381, 377, 380, 381, 381, 380, 377, 383, 378, 377, 377, 378, 383, 377, 382, 383, 383, 382, 377, 383, 382, 384, 384, 382, 383, 384, 385, 383, 383, 385, 384, 381, 386, 384, 384, 386, 381, 384, 382, 381, 381, 382, 384, 387, 388, 384, 384, 388, 387, 384, 386, 387, 387, 386, 384, 389, 385, 384, 384, 385, 389, 384, 388, 389, 389, 388, 384, 390, 391, 392, 392, 391, 390, 392, 393, 390, 390, 393, 392, 375, 378, 392, 392, 378, 375, 392, 391, 375, 375, 391, 392, 383, 394, 392, 392, 394, 383, 392, 378, 383, 383, 378, 392, 395, 393, 392, 392, 393, 395, 392, 394, 395, 395, 394, 392, 395, 394, 396, 396, 394, 395, 396, 397, 395, 395, 397, 396, 383, 385, 396, 396, 385, 383, 396, 394, 383, 383, 394, 396, 389, 398, 396, 396, 398, 389, 396, 385, 389, 389, 385, 396, 399, 397, 396, 396, 397, 399, 396, 398, 399, 399, 398, 396, 400, 401, 402, 402, 401, 400, 402, 403, 400, 400, 403, 402, 390, 393, 402, 402, 393, 390, 402, 401, 390, 390, 401, 402, 395, 404, 402, 402, 404, 395, 402, 393, 395, 395, 393, 402, 405, 403, 402, 402, 403, 405, 402, 404, 405, 405, 404, 402, 405, 404, 406, 406, 404, 405, 406, 407, 405, 405, 407, 406, 395, 397, 406, 406, 397, 395, 406, 404, 395, 395, 404, 406, 399, 408, 406, 406, 408, 399, 406, 397, 399, 399, 397, 406, 409, 407, 406, 406, 407, 409, 406, 408, 409, 409, 408, 406, 410, 411, 412, 412, 411, 410, 412, 413, 410, 410, 413, 412, 400, 403, 412, 412, 403, 400, 412, 411, 400, 400, 411, 412, 405, 414, 412, 412, 414, 405, 412, 403, 405, 405, 403, 412, 415, 413, 412, 412, 413, 415, 412, 414, 415, 415, 414, 412, 415, 414, 416, 416, 414, 415, 416, 417, 415, 415, 417, 416, 405, 407, 416, 416, 407, 405, 416, 414, 405, 405, 414, 416, 409, 418, 416, 416, 418, 409, 416, 407, 409, 409, 407, 416, 419, 417, 416, 416, 417, 419, 416, 418, 419, 419, 418, 416, 420, 421, 422, 422, 421, 420, 422, 423, 420, 420, 423, 422, 410, 413, 422, 422, 413, 410, 422, 421, 410, 410, 421, 422, 415, 424, 422, 422, 424, 415, 422, 413, 415, 415, 413, 422, 425, 423, 422, 422, 423, 425, 422, 424, 425, 425, 424, 422, 425, 424, 426, 426, 424, 425, 426, 427, 425, 425, 427, 426, 415, 417, 426, 426, 417, 415, 426, 424, 415, 415, 424, 426, 419, 428, 426, 426, 428, 419, 426, 417, 419, 419, 417, 426, 429, 427, 426, 426, 427, 429, 426, 428, 429, 429, 428, 426, 430, 431, 432, 432, 431, 430, 432, 433, 430, 430, 433, 432, 420, 423, 432, 432, 423, 420, 432, 431, 420, 420, 431, 432, 425, 434, 432, 432, 434, 425, 432, 423, 425, 425, 423, 432, 435, 433, 432, 432, 433, 435, 432, 434, 435, 435, 434, 432, 435, 434, 436, 436, 434, 435, 436, 437, 435, 435, 437, 436, 425, 427, 436, 436, 427, 425, 436, 434, 425, 425, 434, 436, 429, 438, 436, 436, 438, 429, 436, 427, 429, 429, 427, 436, 439, 437, 436, 436, 437, 439, 436, 438, 439, 439, 438, 436, 440, 441, 442, 442, 441, 440, 442, 443, 440, 440, 443, 442, 430, 433, 442, 442, 433, 430, 442, 441, 430, 430, 441, 442, 435, 444, 442, 442, 444, 435, 442, 433, 435, 435, 433, 442, 445, 443, 442, 442, 443, 445, 442, 444, 445, 445, 444, 442, 445, 444, 446, 446, 444, 445, 446, 447, 445, 445, 447, 446, 435, 437, 446, 446, 437, 435, 446, 444, 435, 435, 444, 446, 439, 448, 446, 446, 448, 439, 446, 437, 439, 439, 437, 446, 449, 447, 446, 446, 447, 449, 446, 448, 449, 449, 448, 446, 450, 451, 452, 452, 451, 450, 452, 453, 450, 450, 453, 452, 440, 443, 452, 452, 443, 440, 452, 451, 440, 440, 451, 452, 445, 454, 452, 452, 454, 445, 452, 443, 445, 445, 443, 452, 455, 453, 452, 452, 453, 455, 452, 454, 455, 455, 454, 452, 455, 454, 456, 456, 454, 455, 456, 457, 455, 455, 457, 456, 445, 447, 456, 456, 447, 445, 456, 454, 445, 445, 454, 456, 449, 458, 456, 456, 458, 449, 456, 447, 449, 449, 447, 456, 459, 457, 456, 456, 457, 459, 456, 458, 459, 459, 458, 456, 460, 461, 462, 462, 461, 460, 462, 463, 460, 460, 463, 462, 450, 453, 462, 462, 453, 450, 462, 461, 450, 450, 461, 462, 455, 464, 462, 462, 464, 455, 462, 453, 455, 455, 453, 462, 465, 463, 462, 462, 463, 465, 462, 464, 465, 465, 464, 462, 465, 464, 466, 466, 464, 465, 466, 467, 465, 465, 467, 466, 455, 457, 466, 466, 457, 455, 466, 464, 455, 455, 464, 466, 459, 468, 466, 466, 468, 459, 466, 457, 459, 459, 457, 466, 469, 467, 466, 466, 467, 469, 466, 468, 469, 469, 468, 466, 470, 471, 472, 472, 471, 470, 472, 473, 470, 470, 473, 472, 460, 463, 472, 472, 463, 460, 472, 471, 460, 460, 471, 472, 465, 474, 472, 472, 474, 465, 472, 463, 465, 465, 463, 472, 475, 473, 472, 472, 473, 475, 472, 474, 475, 475, 474, 472, 475, 474, 476, 476, 474, 475, 476, 477, 475, 475, 477, 476, 465, 467, 476, 476, 467, 465, 476, 474, 465, 465, 474, 476, 469, 478, 476, 476, 478, 469, 476, 467, 469, 469, 467, 476, 479, 477, 476, 476, 477, 479, 476, 478, 479, 479, 478, 476, 480, 481, 482, 482, 481, 480, 482, 483, 480, 480, 483, 482, 470, 473, 482, 482, 473, 470, 482, 481, 470, 470, 481, 482, 475, 484, 482, 482, 484, 475, 482, 473, 475, 475, 473, 482, 485, 483, 482, 482, 483, 485, 482, 484, 485, 485, 484, 482, 485, 484, 486, 486, 484, 485, 486, 487, 485, 485, 487, 486, 475, 477, 486, 486, 477, 475, 486, 484, 475, 475, 484, 486, 479, 488, 486, 486, 488, 479, 486, 477, 479, 479, 477, 486, 489, 487, 486, 486, 487, 489, 486, 488, 489, 489, 488, 486, 490, 491, 492, 492, 491, 490, 492, 493, 490, 490, 493, 492, 480, 483, 492, 492, 483, 480, 492, 491, 480, 480, 491, 492, 485, 494, 492, 492, 494, 485, 492, 483, 485, 485, 483, 492, 495, 493, 492, 492, 493, 495, 492, 494, 495, 495, 494, 492, 495, 494, 496, 496, 494, 495, 496, 497, 495, 495, 497, 496, 485, 487, 496, 496, 487, 485, 496, 494, 485, 485, 494, 496, 489, 498, 496, 496, 498, 489, 496, 487, 489, 489, 487, 496, 499, 497, 496, 496, 497, 499, 496, 498, 499, 499, 498, 496, 500, 501, 502, 502, 501, 500, 502, 503, 500, 500, 503, 502, 504, 505, 502, 502, 505, 504, 502, 501, 504, 504, 501, 502, 506, 507, 502, 502, 507, 506, 502, 505, 506, 506, 505, 502, 508, 503, 502, 502, 503, 508, 502, 507, 508, 508, 507, 502, 508, 507, 509, 509, 507, 508, 509, 510, 508, 508, 510, 509, 506, 511, 509, 509, 511, 506, 509, 507, 506, 506, 507, 509, 512, 513, 509, 509, 513, 512, 509, 511, 512, 512, 511, 509, 514, 510, 509, 509, 510, 514, 509, 513, 514, 514, 513, 509, 515, 516, 517, 517, 516, 515, 517, 518, 515, 515, 518, 517, 500, 503, 517, 517, 503, 500, 517, 516, 500, 500, 516, 517, 508, 519, 517, 517, 519, 508, 517, 503, 508, 508, 503, 517, 520, 518, 517, 517, 518, 520, 517, 519, 520, 520, 519, 517, 520, 519, 521, 521, 519, 520, 521, 522, 520, 520, 522, 521, 508, 510, 521, 521, 510, 508, 521, 519, 508, 508, 519, 521, 514, 523, 521, 521, 523, 514, 521, 510, 514, 514, 510, 521, 524, 522, 521, 521, 522, 524, 521, 523, 524, 524, 523, 521, 525, 526, 527, 527, 526, 525, 527, 528, 525, 525, 528, 527, 515, 518, 527, 527, 518, 515, 527, 526, 515, 515, 526, 527, 520, 529, 527, 527, 529, 520, 527, 518, 520, 520, 518, 527, 530, 528, 527, 527, 528, 530, 527, 529, 530, 530, 529, 527, 530, 529, 531, 531, 529, 530, 531, 532, 530, 530, 532, 531, 520, 522, 531, 531, 522, 520, 531, 529, 520, 520, 529, 531, 524, 533, 531, 531, 533, 524, 531, 522, 524, 524, 522, 531, 534, 532, 531, 531, 532, 534, 531, 533, 534, 534, 533, 531, 535, 536, 537, 537, 536, 535, 537, 538, 535, 535, 538, 537, 525, 528, 537, 537, 528, 525, 537, 536, 525, 525, 536, 537, 530, 539, 537, 537, 539, 530, 537, 528, 530, 530, 528, 537, 540, 538, 537, 537, 538, 540, 537, 539, 540, 540, 539, 537, 540, 539, 541, 541, 539, 540, 541, 542, 540, 540, 542, 541, 530, 532, 541, 541, 532, 530, 541, 539, 530, 530, 539, 541, 534, 543, 541, 541, 543, 534, 541, 532, 534, 534, 532, 541, 544, 542, 541, 541, 542, 544, 541, 543, 544, 544, 543, 541, 545, 546, 547, 547, 546, 545, 547, 548, 545, 545, 548, 547, 535, 538, 547, 547, 538, 535, 547, 546, 535, 535, 546, 547, 540, 549, 547, 547, 549, 540, 547, 538, 540, 540, 538, 547, 550, 548, 547, 547, 548, 550, 547, 549, 550, 550, 549, 547, 550, 549, 551, 551, 549, 550, 551, 552, 550, 550, 552, 551, 540, 542, 551, 551, 542, 540, 551, 549, 540, 540, 549, 551, 544, 553, 551, 551, 553, 544, 551, 542, 544, 544, 542, 551, 554, 552, 551, 551, 552, 554, 551, 553, 554, 554, 553, 551, 555, 556, 557, 557, 556, 555, 557, 558, 555, 555, 558, 557, 545, 548, 557, 557, 548, 545, 557, 556, 545, 545, 556, 557, 550, 559, 557, 557, 559, 550, 557, 548, 550, 550, 548, 557, 560, 558, 557, 557, 558, 560, 557, 559, 560, 560, 559, 557, 560, 559, 561, 561, 559, 560, 561, 562, 560, 560, 562, 561, 550, 552, 561, 561, 552, 550, 561, 559, 550, 550, 559, 561, 554, 563, 561, 561, 563, 554, 561, 552, 554, 554, 552, 561, 564, 562, 561, 561, 562, 564, 561, 563, 564, 564, 563, 561, 565, 566, 567, 567, 566, 565, 567, 568, 565, 565, 568, 567, 555, 558, 567, 567, 558, 555, 567, 566, 555, 555, 566, 567, 560, 569, 567, 567, 569, 560, 567, 558, 560, 560, 558, 567, 570, 568, 567, 567, 568, 570, 567, 569, 570, 570, 569, 567, 570, 569, 571, 571, 569, 570, 571, 572, 570, 570, 572, 571, 560, 562, 571, 571, 562, 560, 571, 569, 560, 560, 569, 571, 564, 573, 571, 571, 573, 564, 571, 562, 564, 564, 562, 571, 574, 572, 571, 571, 572, 574, 571, 573, 574, 574, 573, 571, 575, 576, 577, 577, 576, 575, 577, 578, 575, 575, 578, 577, 565, 568, 577, 577, 568, 565, 577, 576, 565, 565, 576, 577, 570, 579, 577, 577, 579, 570, 577, 568, 570, 570, 568, 577, 580, 578, 577, 577, 578, 580, 577, 579, 580, 580, 579, 577, 580, 579, 581, 581, 579, 580, 581, 582, 580, 580, 582, 581, 570, 572, 581, 581, 572, 570, 581, 579, 570, 570, 579, 581, 574, 583, 581, 581, 583, 574, 581, 572, 574, 574, 572, 581, 584, 582, 581, 581, 582, 584, 581, 583, 584, 584, 583, 581, 585, 586, 587, 587, 586, 585, 587, 588, 585, 585, 588, 587, 575, 578, 587, 587, 578, 575, 587, 586, 575, 575, 586, 587, 580, 589, 587, 587, 589, 580, 587, 578, 580, 580, 578, 587, 590, 588, 587, 587, 588, 590, 587, 589, 590, 590, 589, 587, 590, 589, 591, 591, 589, 590, 591, 592, 590, 590, 592, 591, 580, 582, 591, 591, 582, 580, 591, 589, 580, 580, 589, 591, 584, 593, 591, 591, 593, 584, 591, 582, 584, 584, 582, 591, 594, 592, 591, 591, 592, 594, 591, 593, 594, 594, 593, 591, 595, 596, 597, 597, 596, 595, 597, 598, 595, 595, 598, 597, 585, 588, 597, 597, 588, 585, 597, 596, 585, 585, 596, 597, 590, 599, 597, 597, 599, 590, 597, 588, 590, 590, 588, 597, 600, 598, 597, 597, 598, 600, 597, 599, 600, 600, 599, 597, 600, 599, 601, 601, 599, 600, 601, 602, 600, 600, 602, 601, 590, 592, 601, 601, 592, 590, 601, 599, 590, 590, 599, 601, 594, 603, 601, 601, 603, 594, 601, 592, 594, 594, 592, 601, 604, 602, 601, 601, 602, 604, 601, 603, 604, 604, 603, 601, 605, 606, 607, 607, 606, 605, 607, 608, 605, 605, 608, 607, 595, 598, 607, 607, 598, 595, 607, 606, 595, 595, 606, 607, 600, 609, 607, 607, 609, 600, 607, 598, 600, 600, 598, 607, 610, 608, 607, 607, 608, 610, 607, 609, 610, 610, 609, 607, 610, 609, 611, 611, 609, 610, 611, 612, 610, 610, 612, 611, 600, 602, 611, 611, 602, 600, 611, 609, 600, 600, 609, 611, 604, 613, 611, 611, 613, 604, 611, 602, 604, 604, 602, 611, 614, 612, 611, 611, 612, 614, 611, 613, 614, 614, 613, 611, 615, 616, 617, 617, 616, 615, 617, 618, 615, 615, 618, 617, 605, 608, 617, 617, 608, 605, 617, 616, 605, 605, 616, 617, 610, 619, 617, 617, 619, 610, 617, 608, 610, 610, 608, 617, 620, 618, 617, 617, 618, 620, 617, 619, 620, 620, 619, 617, 620, 619, 621, 621, 619, 620, 621, 622, 620, 620, 622, 621, 610, 612, 621, 621, 612, 610, 621, 619, 610, 610, 619, 621, 614, 623, 621, 621, 623, 614, 621, 612, 614, 614, 612, 621, 624, 622, 621, 621, 622, 624, 621, 623, 624, 624, 623, 621, 625, 626, 627, 627, 626, 625, 627, 628, 625, 625, 628, 627, 629, 630, 627, 627, 630, 629, 627, 626, 629, 629, 626, 627, 631, 632, 627, 627, 632, 631, 627, 630, 631, 631, 630, 627, 633, 628, 627, 627, 628, 633, 627, 632, 633, 633, 632, 627, 633, 632, 634, 634, 632, 633, 634, 635, 633, 633, 635, 634, 631, 636, 634, 634, 636, 631, 634, 632, 631, 631, 632, 634, 637, 638, 634, 634, 638, 637, 634, 636, 637, 637, 636, 634, 639, 635, 634, 634, 635, 639, 634, 638, 639, 639, 638, 634, 640, 641, 642, 642, 641, 640, 642, 643, 640, 640, 643, 642, 625, 628, 642, 642, 628, 625, 642, 641, 625, 625, 641, 642, 633, 644, 642, 642, 644, 633, 642, 628, 633, 633, 628, 642, 645, 643, 642, 642, 643, 645, 642, 644, 645, 645, 644, 642, 645, 644, 646, 646, 644, 645, 646, 647, 645, 645, 647, 646, 633, 635, 646, 646, 635, 633, 646, 644, 633, 633, 644, 646, 639, 648, 646, 646, 648, 639, 646, 635, 639, 639, 635, 646, 649, 647, 646, 646, 647, 649, 646, 648, 649, 649, 648, 646, 650, 651, 652, 652, 651, 650, 652, 653, 650, 650, 653, 652, 640, 643, 652, 652, 643, 640, 652, 651, 640, 640, 651, 652, 645, 654, 652, 652, 654, 645, 652, 643, 645, 645, 643, 652, 655, 653, 652, 652, 653, 655, 652, 654, 655, 655, 654, 652, 655, 654, 656, 656, 654, 655, 656, 657, 655, 655, 657, 656, 645, 647, 656, 656, 647, 645, 656, 654, 645, 645, 654, 656, 649, 658, 656, 656, 658, 649, 656, 647, 649, 649, 647, 656, 659, 657, 656, 656, 657, 659, 656, 658, 659, 659, 658, 656, 660, 661, 662, 662, 661, 660, 662, 663, 660, 660, 663, 662, 650, 653, 662, 662, 653, 650, 662, 661, 650, 650, 661, 662, 655, 664, 662, 662, 664, 655, 662, 653, 655, 655, 653, 662, 665, 663, 662, 662, 663, 665, 662, 664, 665, 665, 664, 662, 665, 664, 666, 666, 664, 665, 666, 667, 665, 665, 667, 666, 655, 657, 666, 666, 657, 655, 666, 664, 655, 655, 664, 666, 659, 668, 666, 666, 668, 659, 666, 657, 659, 659, 657, 666, 669, 667, 666, 666, 667, 669, 666, 668, 669, 669, 668, 666, 670, 671, 672, 672, 671, 670, 672, 673, 670, 670, 673, 672, 660, 663, 672, 672, 663, 660, 672, 671, 660, 660, 671, 672, 665, 674, 672, 672, 674, 665, 672, 663, 665, 665, 663, 672, 675, 673, 672, 672, 673, 675, 672, 674, 675, 675, 674, 672, 675, 674, 676, 676, 674, 675, 676, 677, 675, 675, 677, 676, 665, 667, 676, 676, 667, 665, 676, 674, 665, 665, 674, 676, 669, 678, 676, 676, 678, 669, 676, 667, 669, 669, 667, 676, 679, 677, 676, 676, 677, 679, 676, 678, 679, 679, 678, 676, 680, 681, 682, 682, 681, 680, 682, 683, 680, 680, 683, 682, 670, 673, 682, 682, 673, 670, 682, 681, 670, 670, 681, 682, 675, 684, 682, 682, 684, 675, 682, 673, 675, 675, 673, 682, 685, 683, 682, 682, 683, 685, 682, 684, 685, 685, 684, 682, 685, 684, 686, 686, 684, 685, 686, 687, 685, 685, 687, 686, 675, 677, 686, 686, 677, 675, 686, 684, 675, 675, 684, 686, 679, 688, 686, 686, 688, 679, 686, 677, 679, 679, 677, 686, 689, 687, 686, 686, 687, 689, 686, 688, 689, 689, 688, 686, 690, 691, 692, 692, 691, 690, 692, 693, 690, 690, 693, 692, 680, 683, 692, 692, 683, 680, 692, 691, 680, 680, 691, 692, 685, 694, 692, 692, 694, 685, 692, 683, 685, 685, 683, 692, 695, 693, 692, 692, 693, 695, 692, 694, 695, 695, 694, 692, 695, 694, 696, 696, 694, 695, 696, 697, 695, 695, 697, 696, 685, 687, 696, 696, 687, 685, 696, 694, 685, 685, 694, 696, 689, 698, 696, 696, 698, 689, 696, 687, 689, 689, 687, 696, 699, 697, 696, 696, 697, 699, 696, 698, 699, 699, 698, 696, 700, 701, 702, 702, 701, 700, 702, 703, 700, 700, 703, 702, 690, 693, 702, 702, 693, 690, 702, 701, 690, 690, 701, 702, 695, 704, 702, 702, 704, 695, 702, 693, 695, 695, 693, 702, 705, 703, 702, 702, 703, 705, 702, 704, 705, 705, 704, 702, 705, 704, 706, 706, 704, 705, 706, 707, 705, 705, 707, 706, 695, 697, 706, 706, 697, 695, 706, 704, 695, 695, 704, 706, 699, 708, 706, 706, 708, 699, 706, 697, 699, 699, 697, 706, 709, 707, 706, 706, 707, 709, 706, 708, 709, 709, 708, 706, 710, 711, 712, 712, 711, 710, 712, 713, 710, 710, 713, 712, 700, 703, 712, 712, 703, 700, 712, 711, 700, 700, 711, 712, 705, 714, 712, 712, 714, 705, 712, 703, 705, 705, 703, 712, 715, 713, 712, 712, 713, 715, 712, 714, 715, 715, 714, 712, 715, 714, 716, 716, 714, 715, 716, 717, 715, 715, 717, 716, 705, 707, 716, 716, 707, 705, 716, 714, 705, 705, 714, 716, 709, 718, 716, 716, 718, 709, 716, 707, 709, 709, 707, 716, 719, 717, 716, 716, 717, 719, 716, 718, 719, 719, 718, 716, 720, 721, 722, 722, 721, 720, 722, 723, 720, 720, 723, 722, 710, 713, 722, 722, 713, 710, 722, 721, 710, 710, 721, 722, 715, 724, 722, 722, 724, 715, 722, 713, 715, 715, 713, 722, 725, 723, 722, 722, 723, 725, 722, 724, 725, 725, 724, 722, 725, 724, 726, 726, 724, 725, 726, 727, 725, 725, 727, 726, 715, 717, 726, 726, 717, 715, 726, 724, 715, 715, 724, 726, 719, 728, 726, 726, 728, 719, 726, 717, 719, 719, 717, 726, 729, 727, 726, 726, 727, 729, 726, 728, 729, 729, 728, 726, 730, 731, 732, 732, 731, 730, 732, 733, 730, 730, 733, 732, 720, 723, 732, 732, 723, 720, 732, 731, 720, 720, 731, 732, 725, 734, 732, 732, 734, 725, 732, 723, 725, 725, 723, 732, 735, 733, 732, 732, 733, 735, 732, 734, 735, 735, 734, 732, 735, 734, 736, 736, 734, 735, 736, 737, 735, 735, 737, 736, 725, 727, 736, 736, 727, 725, 736, 734, 725, 725, 734, 736, 729, 738, 736, 736, 738, 729, 736, 727, 729, 729, 727, 736, 739, 737, 736, 736, 737, 739, 736, 738, 739, 739, 738, 736, 740, 741, 742, 742, 741, 740, 742, 743, 740, 740, 743, 742, 730, 733, 742, 742, 733, 730, 742, 741, 730, 730, 741, 742, 735, 744, 742, 742, 744, 735, 742, 733, 735, 735, 733, 742, 745, 743, 742, 742, 743, 745, 742, 744, 745, 745, 744, 742, 745, 744, 746, 746, 744, 745, 746, 747, 745, 745, 747, 746, 735, 737, 746, 746, 737, 735, 746, 744, 735, 735, 744, 746, 739, 748, 746, 746, 748, 739, 746, 737, 739, 739, 737, 746, 749, 747, 746, 746, 747, 749, 746, 748, 749, 749, 748, 746, 750, 751, 752, 752, 751, 750, 752, 753, 750, 750, 753, 752, 754, 755, 752, 752, 755, 754, 752, 751, 754, 754, 751, 752, 756, 757, 752, 752, 757, 756, 752, 755, 756, 756, 755, 752, 758, 753, 752, 752, 753, 758, 752, 757, 758, 758, 757, 752, 758, 757, 759, 759, 757, 758, 759, 760, 758, 758, 760, 759, 756, 761, 759, 759, 761, 756, 759, 757, 756, 756, 757, 759, 762, 763, 759, 759, 763, 762, 759, 761, 762, 762, 761, 759, 764, 760, 759, 759, 760, 764, 759, 763, 764, 764, 763, 759, 765, 766, 767, 767, 766, 765, 767, 768, 765, 765, 768, 767, 750, 753, 767, 767, 753, 750, 767, 766, 750, 750, 766, 767, 758, 769, 767, 767, 769, 758, 767, 753, 758, 758, 753, 767, 770, 768, 767, 767, 768, 770, 767, 769, 770, 770, 769, 767, 770, 769, 771, 771, 769, 770, 771, 772, 770, 770, 772, 771, 758, 760, 771, 771, 760, 758, 771, 769, 758, 758, 769, 771, 764, 773, 771, 771, 773, 764, 771, 760, 764, 764, 760, 771, 774, 772, 771, 771, 772, 774, 771, 773, 774, 774, 773, 771, 775, 776, 777, 777, 776, 775, 777, 778, 775, 775, 778, 777, 765, 768, 777, 777, 768, 765, 777, 776, 765, 765, 776, 777, 770, 779, 777, 777, 779, 770, 777, 768, 770, 770, 768, 777, 780, 778, 777, 777, 778, 780, 777, 779, 780, 780, 779, 777, 780, 779, 781, 781, 779, 780, 781, 782, 780, 780, 782, 781, 770, 772, 781, 781, 772, 770, 781, 779, 770, 770, 779, 781, 774, 783, 781, 781, 783, 774, 781, 772, 774, 774, 772, 781, 784, 782, 781, 781, 782, 784, 781, 783, 784, 784, 783, 781, 785, 786, 787, 787, 786, 785, 787, 788, 785, 785, 788, 787, 775, 778, 787, 787, 778, 775, 787, 786, 775, 775, 786, 787, 780, 789, 787, 787, 789, 780, 787, 778, 780, 780, 778, 787, 790, 788, 787, 787, 788, 790, 787, 789, 790, 790, 789, 787, 790, 789, 791, 791, 789, 790, 791, 792, 790, 790, 792, 791, 780, 782, 791, 791, 782, 780, 791, 789, 780, 780, 789, 791, 784, 793, 791, 791, 793, 784, 791, 782, 784, 784, 782, 791, 794, 792, 791, 791, 792, 794, 791, 793, 794, 794, 793, 791, 795, 796, 797, 797, 796, 795, 797, 798, 795, 795, 798, 797, 785, 788, 797, 797, 788, 785, 797, 796, 785, 785, 796, 797, 790, 799, 797, 797, 799, 790, 797, 788, 790, 790, 788, 797, 800, 798, 797, 797, 798, 800, 797, 799, 800, 800, 799, 797, 800, 799, 801, 801, 799, 800, 801, 802, 800, 800, 802, 801, 790, 792, 801, 801, 792, 790, 801, 799, 790, 790, 799, 801, 794, 803, 801, 801, 803, 794, 801, 792, 794, 794, 792, 801, 804, 802, 801, 801, 802, 804, 801, 803, 804, 804, 803, 801, 805, 806, 807, 807, 806, 805, 807, 808, 805, 805, 808, 807, 795, 798, 807, 807, 798, 795, 807, 806, 795, 795, 806, 807, 800, 809, 807, 807, 809, 800, 807, 798, 800, 800, 798, 807, 810, 808, 807, 807, 808, 810, 807, 809, 810, 810, 809, 807, 810, 809, 811, 811, 809, 810, 811, 812, 810, 810, 812, 811, 800, 802, 811, 811, 802, 800, 811, 809, 800, 800, 809, 811, 804, 813, 811, 811, 813, 804, 811, 802, 804, 804, 802, 811, 814, 812, 811, 811, 812, 814, 811, 813, 814, 814, 813, 811, 815, 816, 817, 817, 816, 815, 817, 818, 815, 815, 818, 817, 805, 808, 817, 817, 808, 805, 817, 816, 805, 805, 816, 817, 810, 819, 817, 817, 819, 810, 817, 808, 810, 810, 808, 817, 820, 818, 817, 817, 818, 820, 817, 819, 820, 820, 819, 817, 820, 819, 821, 821, 819, 820, 821, 822, 820, 820, 822, 821, 810, 812, 821, 821, 812, 810, 821, 819, 810, 810, 819, 821, 814, 823, 821, 821, 823, 814, 821, 812, 814, 814, 812, 821, 824, 822, 821, 821, 822, 824, 821, 823, 824, 824, 823, 821, 825, 826, 827, 827, 826, 825, 827, 828, 825, 825, 828, 827, 815, 818, 827, 827, 818, 815, 827, 826, 815, 815, 826, 827, 820, 829, 827, 827, 829, 820, 827, 818, 820, 820, 818, 827, 830, 828, 827, 827, 828, 830, 827, 829, 830, 830, 829, 827, 830, 829, 831, 831, 829, 830, 831, 832, 830, 830, 832, 831, 820, 822, 831, 831, 822, 820, 831, 829, 820, 820, 829, 831, 824, 833, 831, 831, 833, 824, 831, 822, 824, 824, 822, 831, 834, 832, 831, 831, 832, 834, 831, 833, 834, 834, 833, 831, 835, 836, 837, 837, 836, 835, 837, 838, 835, 835, 838, 837, 825, 828, 837, 837, 828, 825, 837, 836, 825, 825, 836, 837, 830, 839, 837, 837, 839, 830, 837, 828, 830, 830, 828, 837, 840, 838, 837, 837, 838, 840, 837, 839, 840, 840, 839, 837, 840, 839, 841, 841, 839, 840, 841, 842, 840, 840, 842, 841, 830, 832, 841, 841, 832, 830, 841, 839, 830, 830, 839, 841, 834, 843, 841, 841, 843, 834, 841, 832, 834, 834, 832, 841, 844, 842, 841, 841, 842, 844, 841, 843, 844, 844, 843, 841, 845, 846, 847, 847, 846, 845, 847, 848, 845, 845, 848, 847, 835, 838, 847, 847, 838, 835, 847, 846, 835, 835, 846, 847, 840, 849, 847, 847, 849, 840, 847, 838, 840, 840, 838, 847, 850, 848, 847, 847, 848, 850, 847, 849, 850, 850, 849, 847, 850, 849, 851, 851, 849, 850, 851, 852, 850, 850, 852, 851, 840, 842, 851, 851, 842, 840, 851, 849, 840, 840, 849, 851, 844, 853, 851, 851, 853, 844, 851, 842, 844, 844, 842, 851, 854, 852, 851, 851, 852, 854, 851, 853, 854, 854, 853, 851, 855, 856, 857, 857, 856, 855, 857, 858, 855, 855, 858, 857, 845, 848, 857, 857, 848, 845, 857, 856, 845, 845, 856, 857, 850, 859, 857, 857, 859, 850, 857, 848, 850, 850, 848, 857, 860, 858, 857, 857, 858, 860, 857, 859, 860, 860, 859, 857, 860, 859, 861, 861, 859, 860, 861, 862, 860, 860, 862, 861, 850, 852, 861, 861, 852, 850, 861, 859, 850, 850, 859, 861, 854, 863, 861, 861, 863, 854, 861, 852, 854, 854, 852, 861, 864, 862, 861, 861, 862, 864, 861, 863, 864, 864, 863, 861, 865, 866, 867, 867, 866, 865, 867, 868, 865, 865, 868, 867, 855, 858, 867, 867, 858, 855, 867, 866, 855, 855, 866, 867, 860, 869, 867, 867, 869, 860, 867, 858, 860, 860, 858, 867, 870, 868, 867, 867, 868, 870, 867, 869, 870, 870, 869, 867, 870, 869, 871, 871, 869, 870, 871, 872, 870, 870, 872, 871, 860, 862, 871, 871, 862, 860, 871, 869, 860, 860, 869, 871, 864, 873, 871, 871, 873, 864, 871, 862, 864, 864, 862, 871, 874, 872, 871, 871, 872, 874, 871, 873, 874, 874, 873, 871, 875, 876, 877, 877, 876, 875, 877, 878, 875, 875, 878, 877, 879, 878, 877, 877, 878, 879, 877, 880, 879, 879, 880, 877, 881, 880, 877, 877, 880, 881, 877, 882, 881, 881, 882, 877, 883, 882, 877, 877, 882, 883, 877, 876, 883, 883, 876, 877, 883, 884, 885, 885, 884, 883, 885, 882, 883, 883, 882, 885, 881, 882, 885, 885, 882, 881, 885, 886, 881, 881, 886, 885, 887, 886, 885, 885, 886, 887, 885, 888, 887, 887, 888, 885, 889, 888, 885, 885, 888, 889, 885, 884, 889, 889, 884, 885, 890, 891, 892, 892, 891, 890, 892, 893, 890, 890, 893, 892, 875, 893, 892, 892, 893, 875, 892, 876, 875, 875, 876, 892, 883, 876, 892, 892, 876, 883, 892, 894, 883, 883, 894, 892, 895, 894, 892, 892, 894, 895, 892, 891, 895, 895, 891, 892, 895, 896, 897, 897, 896, 895, 897, 894, 895, 895, 894, 897, 883, 894, 897, 897, 894, 883, 897, 884, 883, 883, 884, 897, 889, 884, 897, 897, 884, 889, 897, 898, 889, 889, 898, 897, 899, 898, 897, 897, 898, 899, 897, 896, 899, 899, 896, 897, 900, 901, 902, 902, 901, 900, 902, 903, 900, 900, 903, 902, 890, 903, 902, 902, 903, 890, 902, 891, 890, 890, 891, 902, 895, 891, 902, 902, 891, 895, 902, 904, 895, 895, 904, 902, 905, 904, 902, 902, 904, 905, 902, 901, 905, 905, 901, 902, 905, 906, 907, 907, 906, 905, 907, 904, 905, 905, 904, 907, 895, 904, 907, 907, 904, 895, 907, 896, 895, 895, 896, 907, 899, 896, 907, 907, 896, 899, 907, 908, 899, 899, 908, 907, 909, 908, 907, 907, 908, 909, 907, 906, 909, 909, 906, 907, 910, 911, 912, 912, 911, 910, 912, 913, 910, 910, 913, 912, 900, 913, 912, 912, 913, 900, 912, 901, 900, 900, 901, 912, 905, 901, 912, 912, 901, 905, 912, 914, 905, 905, 914, 912, 915, 914, 912, 912, 914, 915, 912, 911, 915, 915, 911, 912, 915, 916, 917, 917, 916, 915, 917, 914, 915, 915, 914, 917, 905, 914, 917, 917, 914, 905, 917, 906, 905, 905, 906, 917, 909, 906, 917, 917, 906, 909, 917, 918, 909, 909, 918, 917, 919, 918, 917, 917, 918, 919, 917, 916, 919, 919, 916, 917, 920, 921, 922, 922, 921, 920, 922, 923, 920, 920, 923, 922, 910, 923, 922, 922, 923, 910, 922, 911, 910, 910, 911, 922, 915, 911, 922, 922, 911, 915, 922, 924, 915, 915, 924, 922, 925, 924, 922, 922, 924, 925, 922, 921, 925, 925, 921, 922, 925, 926, 927, 927, 926, 925, 927, 924, 925, 925, 924, 927, 915, 924, 927, 927, 924, 915, 927, 916, 915, 915, 916, 927, 919, 916, 927, 927, 916, 919, 927, 928, 919, 919, 928, 927, 929, 928, 927, 927, 928, 929, 927, 926, 929, 929, 926, 927, 930, 931, 932, 932, 931, 930, 932, 933, 930, 930, 933, 932, 920, 933, 932, 932, 933, 920, 932, 921, 920, 920, 921, 932, 925, 921, 932, 932, 921, 925, 932, 934, 925, 925, 934, 932, 935, 934, 932, 932, 934, 935, 932, 931, 935, 935, 931, 932, 935, 936, 937, 937, 936, 935, 937, 934, 935, 935, 934, 937, 925, 934, 937, 937, 934, 925, 937, 926, 925, 925, 926, 937, 929, 926, 937, 937, 926, 929, 937, 938, 929, 929, 938, 937, 939, 938, 937, 937, 938, 939, 937, 936, 939, 939, 936, 937, 940, 941, 942, 942, 941, 940, 942, 943, 940, 940, 943, 942, 930, 943, 942, 942, 943, 930, 942, 931, 930, 930, 931, 942, 935, 931, 942, 942, 931, 935, 942, 944, 935, 935, 944, 942, 945, 944, 942, 942, 944, 945, 942, 941, 945, 945, 941, 942, 945, 946, 947, 947, 946, 945, 947, 944, 945, 945, 944, 947, 935, 944, 947, 947, 944, 935, 947, 936, 935, 935, 936, 947, 939, 936, 947, 947, 936, 939, 947, 948, 939, 939, 948, 947, 949, 948, 947, 947, 948, 949, 947, 946, 949, 949, 946, 947, 950, 951, 952, 952, 951, 950, 952, 953, 950, 950, 953, 952, 940, 953, 952, 952, 953, 940, 952, 941, 940, 940, 941, 952, 945, 941, 952, 952, 941, 945, 952, 954, 945, 945, 954, 952, 955, 954, 952, 952, 954, 955, 952, 951, 955, 955, 951, 952, 955, 956, 957, 957, 956, 955, 957, 954, 955, 955, 954, 957, 945, 954, 957, 957, 954, 945, 957, 946, 945, 945, 946, 957, 949, 946, 957, 957, 946, 949, 957, 958, 949, 949, 958, 957, 959, 958, 957, 957, 958, 959, 957, 956, 959, 959, 956, 957, 960, 961, 962, 962, 961, 960, 962, 963, 960, 960, 963, 962, 950, 963, 962, 962, 963, 950, 962, 951, 950, 950, 951, 962, 955, 951, 962, 962, 951, 955, 962, 964, 955, 955, 964, 962, 965, 964, 962, 962, 964, 965, 962, 961, 965, 965, 961, 962, 965, 966, 967, 967, 966, 965, 967, 964, 965, 965, 964, 967, 955, 964, 967, 967, 964, 955, 967, 956, 955, 955, 956, 967, 959, 956, 967, 967, 956, 959, 967, 968, 959, 959, 968, 967, 969, 968, 967, 967, 968, 969, 967, 966, 969, 969, 966, 967, 970, 971, 972, 972, 971, 970, 972, 973, 970, 970, 973, 972, 960, 973, 972, 972, 973, 960, 972, 961, 960, 960, 961, 972, 965, 961, 972, 972, 961, 965, 972, 974, 965, 965, 974, 972, 975, 974, 972, 972, 974, 975, 972, 971, 975, 975, 971, 972, 975, 976, 977, 977, 976, 975, 977, 974, 975, 975, 974, 977, 965, 974, 977, 977, 974, 965, 977, 966, 965, 965, 966, 977, 969, 966, 977, 977, 966, 969, 977, 978, 969, 969, 978, 977, 979, 978, 977, 977, 978, 979, 977, 976, 979, 979, 976, 977, 980, 981, 982, 982, 981, 980, 982, 983, 980, 980, 983, 982, 970, 983, 982, 982, 983, 970, 982, 971, 970, 970, 971, 982, 975, 971, 982, 982, 971, 975, 982, 984, 975, 975, 984, 982, 985, 984, 982, 982, 984, 985, 982, 981, 985, 985, 981, 982, 985, 986, 987, 987, 986, 985, 987, 984, 985, 985, 984, 987, 975, 984, 987, 987, 984, 975, 987, 976, 975, 975, 976, 987, 979, 976, 987, 987, 976, 979, 987, 988, 979, 979, 988, 987, 989, 988, 987, 987, 988, 989, 987, 986, 989, 989, 986, 987, 990, 991, 992, 992, 991, 990, 992, 993, 990, 990, 993, 992, 980, 993, 992, 992, 993, 980, 992, 981, 980, 980, 981, 992, 985, 981, 992, 992, 981, 985, 992, 994, 985, 985, 994, 992, 995, 994, 992, 992, 994, 995, 992, 991, 995, 995, 991, 992, 995, 996, 997, 997, 996, 995, 997, 994, 995, 995, 994, 997, 985, 994, 997, 997, 994, 985, 997, 986, 985, 985, 986, 997, 989, 986, 997, 997, 986, 989, 997, 998, 989, 989, 998, 997, 999, 998, 997, 997, 998, 999, 997, 996, 999, 999, 996, 997, 1000, 1001, 1002, 1002, 1001, 1000, 1002, 1003, 1000, 1000, 1003, 1002, 1004, 1003, 1002, 1002, 1003, 1004, 1002, 1005, 1004, 1004, 1005, 1002, 1006, 1005, 1002, 1002, 1005, 1006, 1002, 1007, 1006, 1006, 1007, 1002, 1008, 1007, 1002, 1002, 1007, 1008, 1002, 1001, 1008, 1008, 1001, 1002, 1008, 1009, 1010, 1010, 1009, 1008, 1010, 1007, 1008, 1008, 1007, 1010, 1006, 1007, 1010, 1010, 1007, 1006, 1010, 1011, 1006, 1006, 1011, 1010, 1012, 1011, 1010, 1010, 1011, 1012, 1010, 1013, 1012, 1012, 1013, 1010, 1014, 1013, 1010, 1010, 1013, 1014, 1010, 1009, 1014, 1014, 1009, 1010, 1015, 1016, 1017, 1017, 1016, 1015, 1017, 1018, 1015, 1015, 1018, 1017, 1000, 1018, 1017, 1017, 1018, 1000, 1017, 1001, 1000, 1000, 1001, 1017, 1008, 1001, 1017, 1017, 1001, 1008, 1017, 1019, 1008, 1008, 1019, 1017, 1020, 1019, 1017, 1017, 1019, 1020, 1017, 1016, 1020, 1020, 1016, 1017, 1020, 1021, 1022, 1022, 1021, 1020, 1022, 1019, 1020, 1020, 1019, 1022, 1008, 1019, 1022, 1022, 1019, 1008, 1022, 1009, 1008, 1008, 1009, 1022, 1014, 1009, 1022, 1022, 1009, 1014, 1022, 1023, 1014, 1014, 1023, 1022, 1024, 1023, 1022, 1022, 1023, 1024, 1022, 1021, 1024, 1024, 1021, 1022, 1025, 1026, 1027, 1027, 1026, 1025, 1027, 1028, 1025, 1025, 1028, 1027, 1015, 1028, 1027, 1027, 1028, 1015, 1027, 1016, 1015, 1015, 1016, 1027, 1020, 1016, 1027, 1027, 1016, 1020, 1027, 1029, 1020, 1020, 1029, 1027, 1030, 1029, 1027, 1027, 1029, 1030, 1027, 1026, 1030, 1030, 1026, 1027, 1030, 1031, 1032, 1032, 1031, 1030, 1032, 1029, 1030, 1030, 1029, 1032, 1020, 1029, 1032, 1032, 1029, 1020, 1032, 1021, 1020, 1020, 1021, 1032, 1024, 1021, 1032, 1032, 1021, 1024, 1032, 1033, 1024, 1024, 1033, 1032, 1034, 1033, 1032, 1032, 1033, 1034, 1032, 1031, 1034, 1034, 1031, 1032, 1035, 1036, 1037, 1037, 1036, 1035, 1037, 1038, 1035, 1035, 1038, 1037, 1025, 1038, 1037, 1037, 1038, 1025, 1037, 1026, 1025, 1025, 1026, 1037, 1030, 1026, 1037, 1037, 1026, 1030, 1037, 1039, 1030, 1030, 1039, 1037, 1040, 1039, 1037, 1037, 1039, 1040, 1037, 1036, 1040, 1040, 1036, 1037, 1040, 1041, 1042, 1042, 1041, 1040, 1042, 1039, 1040, 1040, 1039, 1042, 1030, 1039, 1042, 1042, 1039, 1030, 1042, 1031, 1030, 1030, 1031, 1042, 1034, 1031, 1042, 1042, 1031, 1034, 1042, 1043, 1034, 1034, 1043, 1042, 1044, 1043, 1042, 1042, 1043, 1044, 1042, 1041, 1044, 1044, 1041, 1042, 1045, 1046, 1047, 1047, 1046, 1045, 1047, 1048, 1045, 1045, 1048, 1047, 1035, 1048, 1047, 1047, 1048, 1035, 1047, 1036, 1035, 1035, 1036, 1047, 1040, 1036, 1047, 1047, 1036, 1040, 1047, 1049, 1040, 1040, 1049, 1047, 1050, 1049, 1047, 1047, 1049, 1050, 1047, 1046, 1050, 1050, 1046, 1047, 1050, 1051, 1052, 1052, 1051, 1050, 1052, 1049, 1050, 1050, 1049, 1052, 1040, 1049, 1052, 1052, 1049, 1040, 1052, 1041, 1040, 1040, 1041, 1052, 1044, 1041, 1052, 1052, 1041, 1044, 1052, 1053, 1044, 1044, 1053, 1052, 1054, 1053, 1052, 1052, 1053, 1054, 1052, 1051, 1054, 1054, 1051, 1052, 1055, 1056, 1057, 1057, 1056, 1055, 1057, 1058, 1055, 1055, 1058, 1057, 1045, 1058, 1057, 1057, 1058, 1045, 1057, 1046, 1045, 1045, 1046, 1057, 1050, 1046, 1057, 1057, 1046, 1050, 1057, 1059, 1050, 1050, 1059, 1057, 1060, 1059, 1057, 1057, 1059, 1060, 1057, 1056, 1060, 1060, 1056, 1057, 1060, 1061, 1062, 1062, 1061, 1060, 1062, 1059, 1060, 1060, 1059, 1062, 1050, 1059, 1062, 1062, 1059, 1050, 1062, 1051, 1050, 1050, 1051, 1062, 1054, 1051, 1062, 1062, 1051, 1054, 1062, 1063, 1054, 1054, 1063, 1062, 1064, 1063, 1062, 1062, 1063, 1064, 1062, 1061, 1064, 1064, 1061, 1062, 1065, 1066, 1067, 1067, 1066, 1065, 1067, 1068, 1065, 1065, 1068, 1067, 1055, 1068, 1067, 1067, 1068, 1055, 1067, 1056, 1055, 1055, 1056, 1067, 1060, 1056, 1067, 1067, 1056, 1060, 1067, 1069, 1060, 1060, 1069, 1067, 1070, 1069, 1067, 1067, 1069, 1070, 1067, 1066, 1070, 1070, 1066, 1067, 1070, 1071, 1072, 1072, 1071, 1070, 1072, 1069, 1070, 1070, 1069, 1072, 1060, 1069, 1072, 1072, 1069, 1060, 1072, 1061, 1060, 1060, 1061, 1072, 1064, 1061, 1072, 1072, 1061, 1064, 1072, 1073, 1064, 1064, 1073, 1072, 1074, 1073, 1072, 1072, 1073, 1074, 1072, 1071, 1074, 1074, 1071, 1072, 1075, 1076, 1077, 1077, 1076, 1075, 1077, 1078, 1075, 1075, 1078, 1077, 1065, 1078, 1077, 1077, 1078, 1065, 1077, 1066, 1065, 1065, 1066, 1077, 1070, 1066, 1077, 1077, 1066, 1070, 1077, 1079, 1070, 1070, 1079, 1077, 1080, 1079, 1077, 1077, 1079, 1080, 1077, 1076, 1080, 1080, 1076, 1077, 1080, 1081, 1082, 1082, 1081, 1080, 1082, 1079, 1080, 1080, 1079, 1082, 1070, 1079, 1082, 1082, 1079, 1070, 1082, 1071, 1070, 1070, 1071, 1082, 1074, 1071, 1082, 1082, 1071, 1074, 1082, 1083, 1074, 1074, 1083, 1082, 1084, 1083, 1082, 1082, 1083, 1084, 1082, 1081, 1084, 1084, 1081, 1082, 1085, 1086, 1087, 1087, 1086, 1085, 1087, 1088, 1085, 1085, 1088, 1087, 1075, 1088, 1087, 1087, 1088, 1075, 1087, 1076, 1075, 1075, 1076, 1087, 1080, 1076, 1087, 1087, 1076, 1080, 1087, 1089, 1080, 1080, 1089, 1087, 1090, 1089, 1087, 1087, 1089, 1090, 1087, 1086, 1090, 1090, 1086, 1087, 1090, 1091, 1092, 1092, 1091, 1090, 1092, 1089, 1090, 1090, 1089, 1092, 1080, 1089, 1092, 1092, 1089, 1080, 1092, 1081, 1080, 1080, 1081, 1092, 1084, 1081, 1092, 1092, 1081, 1084, 1092, 1093, 1084, 1084, 1093, 1092, 1094, 1093, 1092, 1092, 1093, 1094, 1092, 1091, 1094, 1094, 1091, 1092, 1095, 1096, 1097, 1097, 1096, 1095, 1097, 1098, 1095, 1095, 1098, 1097, 1085, 1098, 1097, 1097, 1098, 1085, 1097, 1086, 1085, 1085, 1086, 1097, 1090, 1086, 1097, 1097, 1086, 1090, 1097, 1099, 1090, 1090, 1099, 1097, 1100, 1099, 1097, 1097, 1099, 1100, 1097, 1096, 1100, 1100, 1096, 1097, 1100, 1101, 1102, 1102, 1101, 1100, 1102, 1099, 1100, 1100, 1099, 1102, 1090, 1099, 1102, 1102, 1099, 1090, 1102, 1091, 1090, 1090, 1091, 1102, 1094, 1091, 1102, 1102, 1091, 1094, 1102, 1103, 1094, 1094, 1103, 1102, 1104, 1103, 1102, 1102, 1103, 1104, 1102, 1101, 1104, 1104, 1101, 1102, 1105, 1106, 1107, 1107, 1106, 1105, 1107, 1108, 1105, 1105, 1108, 1107, 1095, 1108, 1107, 1107, 1108, 1095, 1107, 1096, 1095, 1095, 1096, 1107, 1100, 1096, 1107, 1107, 1096, 1100, 1107, 1109, 1100, 1100, 1109, 1107, 1110, 1109, 1107, 1107, 1109, 1110, 1107, 1106, 1110, 1110, 1106, 1107, 1110, 1111, 1112, 1112, 1111, 1110, 1112, 1109, 1110, 1110, 1109, 1112, 1100, 1109, 1112, 1112, 1109, 1100, 1112, 1101, 1100, 1100, 1101, 1112, 1104, 1101, 1112, 1112, 1101, 1104, 1112, 1113, 1104, 1104, 1113, 1112, 1114, 1113, 1112, 1112, 1113, 1114, 1112, 1111, 1114, 1114, 1111, 1112, 1115, 1116, 1117, 1117, 1116, 1115, 1117, 1118, 1115, 1115, 1118, 1117, 1105, 1118, 1117, 1117, 1118, 1105, 1117, 1106, 1105, 1105, 1106, 1117, 1110, 1106, 1117, 1117, 1106, 1110, 1117, 1119, 1110, 1110, 1119, 1117, 1120, 1119, 1117, 1117, 1119, 1120, 1117, 1116, 1120, 1120, 1116, 1117, 1120, 1121, 1122, 1122, 1121, 1120, 1122, 1119, 1120, 1120, 1119, 1122, 1110, 1119, 1122, 1122, 1119, 1110, 1122, 1111, 1110, 1110, 1111, 1122, 1114, 1111, 1122, 1122, 1111, 1114, 1122, 1123, 1114, 1114, 1123, 1122, 1124, 1123, 1122, 1122, 1123, 1124, 1122, 1121, 1124, 1124, 1121, 1122, 1125, 1126, 1127, 1127, 1126, 1125, 1127, 1128, 1125, 1125, 1128, 1127, 1129, 1128, 1127, 1127, 1128, 1129, 1127, 1130, 1129, 1129, 1130, 1127, 1131, 1130, 1127, 1127, 1130, 1131, 1127, 1132, 1131, 1131, 1132, 1127, 1133, 1132, 1127, 1127, 1132, 1133, 1127, 1126, 1133, 1133, 1126, 1127, 1133, 1134, 1135, 1135, 1134, 1133, 1135, 1132, 1133, 1133, 1132, 1135, 1131, 1132, 1135, 1135, 1132, 1131, 1135, 1136, 1131, 1131, 1136, 1135, 1137, 1136, 1135, 1135, 1136, 1137, 1135, 1138, 1137, 1137, 1138, 1135, 1139, 1138, 1135, 1135, 1138, 1139, 1135, 1134, 1139, 1139, 1134, 1135, 1140, 1141, 1142, 1142, 1141, 1140, 1142, 1143, 1140, 1140, 1143, 1142, 1125, 1143, 1142, 1142, 1143, 1125, 1142, 1126, 1125, 1125, 1126, 1142, 1133, 1126, 1142, 1142, 1126, 1133, 1142, 1144, 1133, 1133, 1144, 1142, 1145, 1144, 1142, 1142, 1144, 1145, 1142, 1141, 1145, 1145, 1141, 1142, 1145, 1146, 1147, 1147, 1146, 1145, 1147, 1144, 1145, 1145, 1144, 1147, 1133, 1144, 1147, 1147, 1144, 1133, 1147, 1134, 1133, 1133, 1134, 1147, 1139, 1134, 1147, 1147, 1134, 1139, 1147, 1148, 1139, 1139, 1148, 1147, 1149, 1148, 1147, 1147, 1148, 1149, 1147, 1146, 1149, 1149, 1146, 1147, 1150, 1151, 1152, 1152, 1151, 1150, 1152, 1153, 1150, 1150, 1153, 1152, 1140, 1153, 1152, 1152, 1153, 1140, 1152, 1141, 1140, 1140, 1141, 1152, 1145, 1141, 1152, 1152, 1141, 1145, 1152, 1154, 1145, 1145, 1154, 1152, 1155, 1154, 1152, 1152, 1154, 1155, 1152, 1151, 1155, 1155, 1151, 1152, 1155, 1156, 1157, 1157, 1156, 1155, 1157, 1154, 1155, 1155, 1154, 1157, 1145, 1154, 1157, 1157, 1154, 1145, 1157, 1146, 1145, 1145, 1146, 1157, 1149, 1146, 1157, 1157, 1146, 1149, 1157, 1158, 1149, 1149, 1158, 1157, 1159, 1158, 1157, 1157, 1158, 1159, 1157, 1156, 1159, 1159, 1156, 1157, 1160, 1161, 1162, 1162, 1161, 1160, 1162, 1163, 1160, 1160, 1163, 1162, 1150, 1163, 1162, 1162, 1163, 1150, 1162, 1151, 1150, 1150, 1151, 1162, 1155, 1151, 1162, 1162, 1151, 1155, 1162, 1164, 1155, 1155, 1164, 1162, 1165, 1164, 1162, 1162, 1164, 1165, 1162, 1161, 1165, 1165, 1161, 1162, 1165, 1166, 1167, 1167, 1166, 1165, 1167, 1164, 1165, 1165, 1164, 1167, 1155, 1164, 1167, 1167, 1164, 1155, 1167, 1156, 1155, 1155, 1156, 1167, 1159, 1156, 1167, 1167, 1156, 1159, 1167, 1168, 1159, 1159, 1168, 1167, 1169, 1168, 1167, 1167, 1168, 1169, 1167, 1166, 1169, 1169, 1166, 1167, 1170, 1171, 1172, 1172, 1171, 1170, 1172, 1173, 1170, 1170, 1173, 1172, 1160, 1173, 1172, 1172, 1173, 1160, 1172, 1161, 1160, 1160, 1161, 1172, 1165, 1161, 1172, 1172, 1161, 1165, 1172, 1174, 1165, 1165, 1174, 1172, 1175, 1174, 1172, 1172, 1174, 1175, 1172, 1171, 1175, 1175, 1171, 1172, 1175, 1176, 1177, 1177, 1176, 1175, 1177, 1174, 1175, 1175, 1174, 1177, 1165, 1174, 1177, 1177, 1174, 1165, 1177, 1166, 1165, 1165, 1166, 1177, 1169, 1166, 1177, 1177, 1166, 1169, 1177, 1178, 1169, 1169, 1178, 1177, 1179, 1178, 1177, 1177, 1178, 1179, 1177, 1176, 1179, 1179, 1176, 1177, 1180, 1181, 1182, 1182, 1181, 1180, 1182, 1183, 1180, 1180, 1183, 1182, 1170, 1183, 1182, 1182, 1183, 1170, 1182, 1171, 1170, 1170, 1171, 1182, 1175, 1171, 1182, 1182, 1171, 1175, 1182, 1184, 1175, 1175, 1184, 1182, 1185, 1184, 1182, 1182, 1184, 1185, 1182, 1181, 1185, 1185, 1181, 1182, 1185, 1186, 1187, 1187, 1186, 1185, 1187, 1184, 1185, 1185, 1184, 1187, 1175, 1184, 1187, 1187, 1184, 1175, 1187, 1176, 1175, 1175, 1176, 1187, 1179, 1176, 1187, 1187, 1176, 1179, 1187, 1188, 1179, 1179, 1188, 1187, 1189, 1188, 1187, 1187, 1188, 1189, 1187, 1186, 1189, 1189, 1186, 1187, 1190, 1191, 1192, 1192, 1191, 1190, 1192, 1193, 1190, 1190, 1193, 1192, 1180, 1193, 1192, 1192, 1193, 1180, 1192, 1181, 1180, 1180, 1181, 1192, 1185, 1181, 1192, 1192, 1181, 1185, 1192, 1194, 1185, 1185, 1194, 1192, 1195, 1194, 1192, 1192, 1194, 1195, 1192, 1191, 1195, 1195, 1191, 1192, 1195, 1196, 1197, 1197, 1196, 1195, 1197, 1194, 1195, 1195, 1194, 1197, 1185, 1194, 1197, 1197, 1194, 1185, 1197, 1186, 1185, 1185, 1186, 1197, 1189, 1186, 1197, 1197, 1186, 1189, 1197, 1198, 1189, 1189, 1198, 1197, 1199, 1198, 1197, 1197, 1198, 1199, 1197, 1196, 1199, 1199, 1196, 1197, 1200, 1201, 1202, 1202, 1201, 1200, 1202, 1203, 1200, 1200, 1203, 1202, 1190, 1203, 1202, 1202, 1203, 1190, 1202, 1191, 1190, 1190, 1191, 1202, 1195, 1191, 1202, 1202, 1191, 1195, 1202, 1204, 1195, 1195, 1204, 1202, 1205, 1204, 1202, 1202, 1204, 1205, 1202, 1201, 1205, 1205, 1201, 1202, 1205, 1206, 1207, 1207, 1206, 1205, 1207, 1204, 1205, 1205, 1204, 1207, 1195, 1204, 1207, 1207, 1204, 1195, 1207, 1196, 1195, 1195, 1196, 1207, 1199, 1196, 1207, 1207, 1196, 1199, 1207, 1208, 1199, 1199, 1208, 1207, 1209, 1208, 1207, 1207, 1208, 1209, 1207, 1206, 1209, 1209, 1206, 1207, 1210, 1211, 1212, 1212, 1211, 1210, 1212, 1213, 1210, 1210, 1213, 1212, 1200, 1213, 1212, 1212, 1213, 1200, 1212, 1201, 1200, 1200, 1201, 1212, 1205, 1201, 1212, 1212, 1201, 1205, 1212, 1214, 1205, 1205, 1214, 1212, 1215, 1214, 1212, 1212, 1214, 1215, 1212, 1211, 1215, 1215, 1211, 1212, 1215, 1216, 1217, 1217, 1216, 1215, 1217, 1214, 1215, 1215, 1214, 1217, 1205, 1214, 1217, 1217, 1214, 1205, 1217, 1206, 1205, 1205, 1206, 1217, 1209, 1206, 1217, 1217, 1206, 1209, 1217, 1218, 1209, 1209, 1218, 1217, 1219, 1218, 1217, 1217, 1218, 1219, 1217, 1216, 1219, 1219, 1216, 1217, 1220, 1221, 1222, 1222, 1221, 1220, 1222, 1223, 1220, 1220, 1223, 1222, 1210, 1223, 1222, 1222, 1223, 1210, 1222, 1211, 1210, 1210, 1211, 1222, 1215, 1211, 1222, 1222, 1211, 1215, 1222, 1224, 1215, 1215, 1224, 1222, 1225, 1224, 1222, 1222, 1224, 1225, 1222, 1221, 1225, 1225, 1221, 1222, 1225, 1226, 1227, 1227, 1226, 1225, 1227, 1224, 1225, 1225, 1224, 1227, 1215, 1224, 1227, 1227, 1224, 1215, 1227, 1216, 1215, 1215, 1216, 1227, 1219, 1216, 1227, 1227, 1216, 1219, 1227, 1228, 1219, 1219, 1228, 1227, 1229, 1228, 1227, 1227, 1228, 1229, 1227, 1226, 1229, 1229, 1226, 1227, 1230, 1231, 1232, 1232, 1231, 1230, 1232, 1233, 1230, 1230, 1233, 1232, 1220, 1233, 1232, 1232, 1233, 1220, 1232, 1221, 1220, 1220, 1221, 1232, 1225, 1221, 1232, 1232, 1221, 1225, 1232, 1234, 1225, 1225, 1234, 1232, 1235, 1234, 1232, 1232, 1234, 1235, 1232, 1231, 1235, 1235, 1231, 1232, 1235, 1236, 1237, 1237, 1236, 1235, 1237, 1234, 1235, 1235, 1234, 1237, 1225, 1234, 1237, 1237, 1234, 1225, 1237, 1226, 1225, 1225, 1226, 1237, 1229, 1226, 1237, 1237, 1226, 1229, 1237, 1238, 1229, 1229, 1238, 1237, 1239, 1238, 1237, 1237, 1238, 1239, 1237, 1236, 1239, 1239, 1236, 1237, 1240, 1241, 1242, 1242, 1241, 1240, 1242, 1243, 1240, 1240, 1243, 1242, 1230, 1243, 1242, 1242, 1243, 1230, 1242, 1231, 1230, 1230, 1231, 1242, 1235, 1231, 1242, 1242, 1231, 1235, 1242, 1244, 1235, 1235, 1244, 1242, 1245, 1244, 1242, 1242, 1244, 1245, 1242, 1241, 1245, 1245, 1241, 1242, 1245, 1246, 1247, 1247, 1246, 1245, 1247, 1244, 1245, 1245, 1244, 1247, 1235, 1244, 1247, 1247, 1244, 1235, 1247, 1236, 1235, 1235, 1236, 1247, 1239, 1236, 1247, 1247, 1236, 1239, 1247, 1248, 1239, 1239, 1248, 1247, 1249, 1248, 1247, 1247, 1248, 1249, 1247, 1246, 1249, 1249, 1246, 1247, 1250, 1251, 1252, 1252, 1251, 1250, 1252, 1253, 1250, 1250, 1253, 1252, 1254, 1255, 1252, 1252, 1255, 1254, 1252, 1251, 1254, 1254, 1251, 1252, 1256, 1257, 1252, 1252, 1257, 1256, 1252, 1255, 1256, 1256, 1255, 1252, 1258, 1253, 1252, 1252, 1253, 1258, 1252, 1257, 1258, 1258, 1257, 1252, 1258, 1257, 1259, 1259, 1257, 1258, 1259, 1260, 1258, 1258, 1260, 1259, 1256, 1261, 1259, 1259, 1261, 1256, 1259, 1257, 1256, 1256, 1257, 1259, 1262, 1263, 1259, 1259, 1263, 1262, 1259, 1261, 1262, 1262, 1261, 1259, 1264, 1260, 1259, 1259, 1260, 1264, 1259, 1263, 1264, 1264, 1263, 1259, 1265, 1266, 1267, 1267, 1266, 1265, 1267, 1268, 1265, 1265, 1268, 1267, 1250, 1253, 1267, 1267, 1253, 1250, 1267, 1266, 1250, 1250, 1266, 1267, 1258, 1269, 1267, 1267, 1269, 1258, 1267, 1253, 1258, 1258, 1253, 1267, 1270, 1268, 1267, 1267, 1268, 1270, 1267, 1269, 1270, 1270, 1269, 1267, 1270, 1269, 1271, 1271, 1269, 1270, 1271, 1272, 1270, 1270, 1272, 1271, 1258, 1260, 1271, 1271, 1260, 1258, 1271, 1269, 1258, 1258, 1269, 1271, 1264, 1273, 1271, 1271, 1273, 1264, 1271, 1260, 1264, 1264, 1260, 1271, 1274, 1272, 1271, 1271, 1272, 1274, 1271, 1273, 1274, 1274, 1273, 1271, 1275, 1276, 1277, 1277, 1276, 1275, 1277, 1278, 1275, 1275, 1278, 1277, 1265, 1268, 1277, 1277, 1268, 1265, 1277, 1276, 1265, 1265, 1276, 1277, 1270, 1279, 1277, 1277, 1279, 1270, 1277, 1268, 1270, 1270, 1268, 1277, 1280, 1278, 1277, 1277, 1278, 1280, 1277, 1279, 1280, 1280, 1279, 1277, 1280, 1279, 1281, 1281, 1279, 1280, 1281, 1282, 1280, 1280, 1282, 1281, 1270, 1272, 1281, 1281, 1272, 1270, 1281, 1279, 1270, 1270, 1279, 1281, 1274, 1283, 1281, 1281, 1283, 1274, 1281, 1272, 1274, 1274, 1272, 1281, 1284, 1282, 1281, 1281, 1282, 1284, 1281, 1283, 1284, 1284, 1283, 1281, 1285, 1286, 1287, 1287, 1286, 1285, 1287, 1288, 1285, 1285, 1288, 1287, 1275, 1278, 1287, 1287, 1278, 1275, 1287, 1286, 1275, 1275, 1286, 1287, 1280, 1289, 1287, 1287, 1289, 1280, 1287, 1278, 1280, 1280, 1278, 1287, 1290, 1288, 1287, 1287, 1288, 1290, 1287, 1289, 1290, 1290, 1289, 1287, 1290, 1289, 1291, 1291, 1289, 1290, 1291, 1292, 1290, 1290, 1292, 1291, 1280, 1282, 1291, 1291, 1282, 1280, 1291, 1289, 1280, 1280, 1289, 1291, 1284, 1293, 1291, 1291, 1293, 1284, 1291, 1282, 1284, 1284, 1282, 1291, 1294, 1292, 1291, 1291, 1292, 1294, 1291, 1293, 1294, 1294, 1293, 1291, 1295, 1296, 1297, 1297, 1296, 1295, 1297, 1298, 1295, 1295, 1298, 1297, 1285, 1288, 1297, 1297, 1288, 1285, 1297, 1296, 1285, 1285, 1296, 1297, 1290, 1299, 1297, 1297, 1299, 1290, 1297, 1288, 1290, 1290, 1288, 1297, 1300, 1298, 1297, 1297, 1298, 1300, 1297, 1299, 1300, 1300, 1299, 1297, 1300, 1299, 1301, 1301, 1299, 1300, 1301, 1302, 1300, 1300, 1302, 1301, 1290, 1292, 1301, 1301, 1292, 1290, 1301, 1299, 1290, 1290, 1299, 1301, 1294, 1303, 1301, 1301, 1303, 1294, 1301, 1292, 1294, 1294, 1292, 1301, 1304, 1302, 1301, 1301, 1302, 1304, 1301, 1303, 1304, 1304, 1303, 1301, 1305, 1306, 1307, 1307, 1306, 1305, 1307, 1308, 1305, 1305, 1308, 1307, 1295, 1298, 1307, 1307, 1298, 1295, 1307, 1306, 1295, 1295, 1306, 1307, 1300, 1309, 1307, 1307, 1309, 1300, 1307, 1298, 1300, 1300, 1298, 1307, 1310, 1308, 1307, 1307, 1308, 1310, 1307, 1309, 1310, 1310, 1309, 1307, 1310, 1309, 1311, 1311, 1309, 1310, 1311, 1312, 1310, 1310, 1312, 1311, 1300, 1302, 1311, 1311, 1302, 1300, 1311, 1309, 1300, 1300, 1309, 1311, 1304, 1313, 1311, 1311, 1313, 1304, 1311, 1302, 1304, 1304, 1302, 1311, 1314, 1312, 1311, 1311, 1312, 1314, 1311, 1313, 1314, 1314, 1313, 1311, 1315, 1316, 1317, 1317, 1316, 1315, 1317, 1318, 1315, 1315, 1318, 1317, 1305, 1308, 1317, 1317, 1308, 1305, 1317, 1316, 1305, 1305, 1316, 1317, 1310, 1319, 1317, 1317, 1319, 1310, 1317, 1308, 1310, 1310, 1308, 1317, 1320, 1318, 1317, 1317, 1318, 1320, 1317, 1319, 1320, 1320, 1319, 1317, 1320, 1319, 1321, 1321, 1319, 1320, 1321, 1322, 1320, 1320, 1322, 1321, 1310, 1312, 1321, 1321, 1312, 1310, 1321, 1319, 1310, 1310, 1319, 1321, 1314, 1323, 1321, 1321, 1323, 1314, 1321, 1312, 1314, 1314, 1312, 1321, 1324, 1322, 1321, 1321, 1322, 1324, 1321, 1323, 1324, 1324, 1323, 1321, 1325, 1326, 1327, 1327, 1326, 1325, 1327, 1328, 1325, 1325, 1328, 1327, 1315, 1318, 1327, 1327, 1318, 1315, 1327, 1326, 1315, 1315, 1326, 1327, 1320, 1329, 1327, 1327, 1329, 1320, 1327, 1318, 1320, 1320, 1318, 1327, 1330, 1328, 1327, 1327, 1328, 1330, 1327, 1329, 1330, 1330, 1329, 1327, 1330, 1329, 1331, 1331, 1329, 1330, 1331, 1332, 1330, 1330, 1332, 1331, 1320, 1322, 1331, 1331, 1322, 1320, 1331, 1329, 1320, 1320, 1329, 1331, 1324, 1333, 1331, 1331, 1333, 1324, 1331, 1322, 1324, 1324, 1322, 1331, 1334, 1332, 1331, 1331, 1332, 1334, 1331, 1333, 1334, 1334, 1333, 1331, 1335, 1336, 1337, 1337, 1336, 1335, 1337, 1338, 1335, 1335, 1338, 1337, 1325, 1328, 1337, 1337, 1328, 1325, 1337, 1336, 1325, 1325, 1336, 1337, 1330, 1339, 1337, 1337, 1339, 1330, 1337, 1328, 1330, 1330, 1328, 1337, 1340, 1338, 1337, 1337, 1338, 1340, 1337, 1339, 1340, 1340, 1339, 1337, 1340, 1339, 1341, 1341, 1339, 1340, 1341, 1342, 1340, 1340, 1342, 1341, 1330, 1332, 1341, 1341, 1332, 1330, 1341, 1339, 1330, 1330, 1339, 1341, 1334, 1343, 1341, 1341, 1343, 1334, 1341, 1332, 1334, 1334, 1332, 1341, 1344, 1342, 1341, 1341, 1342, 1344, 1341, 1343, 1344, 1344, 1343, 1341, 1345, 1346, 1347, 1347, 1346, 1345, 1347, 1348, 1345, 1345, 1348, 1347, 1335, 1338, 1347, 1347, 1338, 1335, 1347, 1346, 1335, 1335, 1346, 1347, 1340, 1349, 1347, 1347, 1349, 1340, 1347, 1338, 1340, 1340, 1338, 1347, 1350, 1348, 1347, 1347, 1348, 1350, 1347, 1349, 1350, 1350, 1349, 1347, 1350, 1349, 1351, 1351, 1349, 1350, 1351, 1352, 1350, 1350, 1352, 1351, 1340, 1342, 1351, 1351, 1342, 1340, 1351, 1349, 1340, 1340, 1349, 1351, 1344, 1353, 1351, 1351, 1353, 1344, 1351, 1342, 1344, 1344, 1342, 1351, 1354, 1352, 1351, 1351, 1352, 1354, 1351, 1353, 1354, 1354, 1353, 1351, 1355, 1356, 1357, 1357, 1356, 1355, 1357, 1358, 1355, 1355, 1358, 1357, 1345, 1348, 1357, 1357, 1348, 1345, 1357, 1356, 1345, 1345, 1356, 1357, 1350, 1359, 1357, 1357, 1359, 1350, 1357, 1348, 1350, 1350, 1348, 1357, 1360, 1358, 1357, 1357, 1358, 1360, 1357, 1359, 1360, 1360, 1359, 1357, 1360, 1359, 1361, 1361, 1359, 1360, 1361, 1362, 1360, 1360, 1362, 1361, 1350, 1352, 1361, 1361, 1352, 1350, 1361, 1359, 1350, 1350, 1359, 1361, 1354, 1363, 1361, 1361, 1363, 1354, 1361, 1352, 1354, 1354, 1352, 1361, 1364, 1362, 1361, 1361, 1362, 1364, 1361, 1363, 1364, 1364, 1363, 1361, 1365, 1366, 1367, 1367, 1366, 1365, 1367, 1368, 1365, 1365, 1368, 1367, 1355, 1358, 1367, 1367, 1358, 1355, 1367, 1366, 1355, 1355, 1366, 1367, 1360, 1369, 1367, 1367, 1369, 1360, 1367, 1358, 1360, 1360, 1358, 1367, 1370, 1368, 1367, 1367, 1368, 1370, 1367, 1369, 1370, 1370, 1369, 1367, 1370, 1369, 1371, 1371, 1369, 1370, 1371, 1372, 1370, 1370, 1372, 1371, 1360, 1362, 1371, 1371, 1362, 1360, 1371, 1369, 1360, 1360, 1369, 1371, 1364, 1373, 1371, 1371, 1373, 1364, 1371, 1362, 1364, 1364, 1362, 1371, 1374, 1372, 1371, 1371, 1372, 1374, 1371, 1373, 1374, 1374, 1373, 1371, 1375, 1376, 1377, 1377, 1376, 1375, 1377, 1378, 1375, 1375, 1378, 1377, 1379, 1380, 1377, 1377, 1380, 1379, 1377, 1376, 1379, 1379, 1376, 1377, 1381, 1382, 1377, 1377, 1382, 1381, 1377, 1380, 1381, 1381, 1380, 1377, 1383, 1378, 1377, 1377, 1378, 1383, 1377, 1382, 1383, 1383, 1382, 1377, 1383, 1382, 1384, 1384, 1382, 1383, 1384, 1385, 1383, 1383, 1385, 1384, 1381, 1386, 1384, 1384, 1386, 1381, 1384, 1382, 1381, 1381, 1382, 1384, 1387, 1388, 1384, 1384, 1388, 1387, 1384, 1386, 1387, 1387, 1386, 1384, 1389, 1385, 1384, 1384, 1385, 1389, 1384, 1388, 1389, 1389, 1388, 1384, 1390, 1391, 1392, 1392, 1391, 1390, 1392, 1393, 1390, 1390, 1393, 1392, 1375, 1378, 1392, 1392, 1378, 1375, 1392, 1391, 1375, 1375, 1391, 1392, 1383, 1394, 1392, 1392, 1394, 1383, 1392, 1378, 1383, 1383, 1378, 1392, 1395, 1393, 1392, 1392, 1393, 1395, 1392, 1394, 1395, 1395, 1394, 1392, 1395, 1394, 1396, 1396, 1394, 1395, 1396, 1397, 1395, 1395, 1397, 1396, 1383, 1385, 1396, 1396, 1385, 1383, 1396, 1394, 1383, 1383, 1394, 1396, 1389, 1398, 1396, 1396, 1398, 1389, 1396, 1385, 1389, 1389, 1385, 1396, 1399, 1397, 1396, 1396, 1397, 1399, 1396, 1398, 1399, 1399, 1398, 1396, 1400, 1401, 1402, 1402, 1401, 1400, 1402, 1403, 1400, 1400, 1403, 1402, 1390, 1393, 1402, 1402, 1393, 1390, 1402, 1401, 1390, 1390, 1401, 1402, 1395, 1404, 1402, 1402, 1404, 1395, 1402, 1393, 1395, 1395, 1393, 1402, 1405, 1403, 1402, 1402, 1403, 1405, 1402, 1404, 1405, 1405, 1404, 1402, 1405, 1404, 1406, 1406, 1404, 1405, 1406, 1407, 1405, 1405, 1407, 1406, 1395, 1397, 1406, 1406, 1397, 1395, 1406, 1404, 1395, 1395, 1404, 1406, 1399, 1408, 1406, 1406, 1408, 1399, 1406, 1397, 1399, 1399, 1397, 1406, 1409, 1407, 1406, 1406, 1407, 1409, 1406, 1408, 1409, 1409, 1408, 1406, 1410, 1411, 1412, 1412, 1411, 1410, 1412, 1413, 1410, 1410, 1413, 1412, 1400, 1403, 1412, 1412, 1403, 1400, 1412, 1411, 1400, 1400, 1411, 1412, 1405, 1414, 1412, 1412, 1414, 1405, 1412, 1403, 1405, 1405, 1403, 1412, 1415, 1413, 1412, 1412, 1413, 1415, 1412, 1414, 1415, 1415, 1414, 1412, 1415, 1414, 1416, 1416, 1414, 1415, 1416, 1417, 1415, 1415, 1417, 1416, 1405, 1407, 1416, 1416, 1407, 1405, 1416, 1414, 1405, 1405, 1414, 1416, 1409, 1418, 1416, 1416, 1418, 1409, 1416, 1407, 1409, 1409, 1407, 1416, 1419, 1417, 1416, 1416, 1417, 1419, 1416, 1418, 1419, 1419, 1418, 1416, 1420, 1421, 1422, 1422, 1421, 1420, 1422, 1423, 1420, 1420, 1423, 1422, 1410, 1413, 1422, 1422, 1413, 1410, 1422, 1421, 1410, 1410, 1421, 1422, 1415, 1424, 1422, 1422, 1424, 1415, 1422, 1413, 1415, 1415, 1413, 1422, 1425, 1423, 1422, 1422, 1423, 1425, 1422, 1424, 1425, 1425, 1424, 1422, 1425, 1424, 1426, 1426, 1424, 1425, 1426, 1427, 1425, 1425, 1427, 1426, 1415, 1417, 1426, 1426, 1417, 1415, 1426, 1424, 1415, 1415, 1424, 1426, 1419, 1428, 1426, 1426, 1428, 1419, 1426, 1417, 1419, 1419, 1417, 1426, 1429, 1427, 1426, 1426, 1427, 1429, 1426, 1428, 1429, 1429, 1428, 1426, 1430, 1431, 1432, 1432, 1431, 1430, 1432, 1433, 1430, 1430, 1433, 1432, 1420, 1423, 1432, 1432, 1423, 1420, 1432, 1431, 1420, 1420, 1431, 1432, 1425, 1434, 1432, 1432, 1434, 1425, 1432, 1423, 1425, 1425, 1423, 1432, 1435, 1433, 1432, 1432, 1433, 1435, 1432, 1434, 1435, 1435, 1434, 1432, 1435, 1434, 1436, 1436, 1434, 1435, 1436, 1437, 1435, 1435, 1437, 1436, 1425, 1427, 1436, 1436, 1427, 1425, 1436, 1434, 1425, 1425, 1434, 1436, 1429, 1438, 1436, 1436, 1438, 1429, 1436, 1427, 1429, 1429, 1427, 1436, 1439, 1437, 1436, 1436, 1437, 1439, 1436, 1438, 1439, 1439, 1438, 1436, 1440, 1441, 1442, 1442, 1441, 1440, 1442, 1443, 1440, 1440, 1443, 1442, 1430, 1433, 1442, 1442, 1433, 1430, 1442, 1441, 1430, 1430, 1441, 1442, 1435, 1444, 1442, 1442, 1444, 1435, 1442, 1433, 1435, 1435, 1433, 1442, 1445, 1443, 1442, 1442, 1443, 1445, 1442, 1444, 1445, 1445, 1444, 1442, 1445, 1444, 1446, 1446, 1444, 1445, 1446, 1447, 1445, 1445, 1447, 1446, 1435, 1437, 1446, 1446, 1437, 1435, 1446, 1444, 1435, 1435, 1444, 1446, 1439, 1448, 1446, 1446, 1448, 1439, 1446, 1437, 1439, 1439, 1437, 1446, 1449, 1447, 1446, 1446, 1447, 1449, 1446, 1448, 1449, 1449, 1448, 1446, 1450, 1451, 1452, 1452, 1451, 1450, 1452, 1453, 1450, 1450, 1453, 1452, 1440, 1443, 1452, 1452, 1443, 1440, 1452, 1451, 1440, 1440, 1451, 1452, 1445, 1454, 1452, 1452, 1454, 1445, 1452, 1443, 1445, 1445, 1443, 1452, 1455, 1453, 1452, 1452, 1453, 1455, 1452, 1454, 1455, 1455, 1454, 1452, 1455, 1454, 1456, 1456, 1454, 1455, 1456, 1457, 1455, 1455, 1457, 1456, 1445, 1447, 1456, 1456, 1447, 1445, 1456, 1454, 1445, 1445, 1454, 1456, 1449, 1458, 1456, 1456, 1458, 1449, 1456, 1447, 1449, 1449, 1447, 1456, 1459, 1457, 1456, 1456, 1457, 1459, 1456, 1458, 1459, 1459, 1458, 1456, 1460, 1461, 1462, 1462, 1461, 1460, 1462, 1463, 1460, 1460, 1463, 1462, 1450, 1453, 1462, 1462, 1453, 1450, 1462, 1461, 1450, 1450, 1461, 1462, 1455, 1464, 1462, 1462, 1464, 1455, 1462, 1453, 1455, 1455, 1453, 1462, 1465, 1463, 1462, 1462, 1463, 1465, 1462, 1464, 1465, 1465, 1464, 1462, 1465, 1464, 1466, 1466, 1464, 1465, 1466, 1467, 1465, 1465, 1467, 1466, 1455, 1457, 1466, 1466, 1457, 1455, 1466, 1464, 1455, 1455, 1464, 1466, 1459, 1468, 1466, 1466, 1468, 1459, 1466, 1457, 1459, 1459, 1457, 1466, 1469, 1467, 1466, 1466, 1467, 1469, 1466, 1468, 1469, 1469, 1468, 1466, 1470, 1471, 1472, 1472, 1471, 1470, 1472, 1473, 1470, 1470, 1473, 1472, 1460, 1463, 1472, 1472, 1463, 1460, 1472, 1471, 1460, 1460, 1471, 1472, 1465, 1474, 1472, 1472, 1474, 1465, 1472, 1463, 1465, 1465, 1463, 1472, 1475, 1473, 1472, 1472, 1473, 1475, 1472, 1474, 1475, 1475, 1474, 1472, 1475, 1474, 1476, 1476, 1474, 1475, 1476, 1477, 1475, 1475, 1477, 1476, 1465, 1467, 1476, 1476, 1467, 1465, 1476, 1474, 1465, 1465, 1474, 1476, 1469, 1478, 1476, 1476, 1478, 1469, 1476, 1467, 1469, 1469, 1467, 1476, 1479, 1477, 1476, 1476, 1477, 1479, 1476, 1478, 1479, 1479, 1478, 1476, 1480, 1481, 1482, 1482, 1481, 1480, 1482, 1483, 1480, 1480, 1483, 1482, 1470, 1473, 1482, 1482, 1473, 1470, 1482, 1481, 1470, 1470, 1481, 1482, 1475, 1484, 1482, 1482, 1484, 1475, 1482, 1473, 1475, 1475, 1473, 1482, 1485, 1483, 1482, 1482, 1483, 1485, 1482, 1484, 1485, 1485, 1484, 1482, 1485, 1484, 1486, 1486, 1484, 1485, 1486, 1487, 1485, 1485, 1487, 1486, 1475, 1477, 1486, 1486, 1477, 1475, 1486, 1484, 1475, 1475, 1484, 1486, 1479, 1488, 1486, 1486, 1488, 1479, 1486, 1477, 1479, 1479, 1477, 1486, 1489, 1487, 1486, 1486, 1487, 1489, 1486, 1488, 1489, 1489, 1488, 1486, 1490, 1491, 1492, 1492, 1491, 1490, 1492, 1493, 1490, 1490, 1493, 1492, 1480, 1483, 1492, 1492, 1483, 1480, 1492, 1491, 1480, 1480, 1491, 1492, 1485, 1494, 1492, 1492, 1494, 1485, 1492, 1483, 1485, 1485, 1483, 1492, 1495, 1493, 1492, 1492, 1493, 1495, 1492, 1494, 1495, 1495, 1494, 1492, 1495, 1494, 1496, 1496, 1494, 1495, 1496, 1497, 1495, 1495, 1497, 1496, 1485, 1487, 1496, 1496, 1487, 1485, 1496, 1494, 1485, 1485, 1494, 1496, 1489, 1498, 1496, 1496, 1498, 1489, 1496, 1487, 1489, 1489, 1487, 1496, 1499, 1497, 1496, 1496, 1497, 1499, 1496, 1498, 1499, 1499, 1498, 1496, 1500, 1501, 1502, 1502, 1501, 1500, 1502, 1503, 1500, 1500, 1503, 1502, 1504, 1505, 1502, 1502, 1505, 1504, 1502, 1501, 1504, 1504, 1501, 1502, 1506, 1507, 1502, 1502, 1507, 1506, 1502, 1505, 1506, 1506, 1505, 1502, 1508, 1503, 1502, 1502, 1503, 1508, 1502, 1507, 1508, 1508, 1507, 1502, 1508, 1507, 1509, 1509, 1507, 1508, 1509, 1510, 1508, 1508, 1510, 1509, 1506, 1511, 1509, 1509, 1511, 1506, 1509, 1507, 1506, 1506, 1507, 1509, 1512, 1513, 1509, 1509, 1513, 1512, 1509, 1511, 1512, 1512, 1511, 1509, 1514, 1510, 1509, 1509, 1510, 1514, 1509, 1513, 1514, 1514, 1513, 1509, 1515, 1516, 1517, 1517, 1516, 1515, 1517, 1518, 1515, 1515, 1518, 1517, 1500, 1503, 1517, 1517, 1503, 1500, 1517, 1516, 1500, 1500, 1516, 1517, 1508, 1519, 1517, 1517, 1519, 1508, 1517, 1503, 1508, 1508, 1503, 1517, 1520, 1518, 1517, 1517, 1518, 1520, 1517, 1519, 1520, 1520, 1519, 1517, 1520, 1519, 1521, 1521, 1519, 1520, 1521, 1522, 1520, 1520, 1522, 1521, 1508, 1510, 1521, 1521, 1510, 1508, 1521, 1519, 1508, 1508, 1519, 1521, 1514, 1523, 1521, 1521, 1523, 1514, 1521, 1510, 1514, 1514, 1510, 1521, 1524, 1522, 1521, 1521, 1522, 1524, 1521, 1523, 1524, 1524, 1523, 1521, 1525, 1526, 1527, 1527, 1526, 1525, 1527, 1528, 1525, 1525, 1528, 1527, 1515, 1518, 1527, 1527, 1518, 1515, 1527, 1526, 1515, 1515, 1526, 1527, 1520, 1529, 1527, 1527, 1529, 1520, 1527, 1518, 1520, 1520, 1518, 1527, 1530, 1528, 1527, 1527, 1528, 1530, 1527, 1529, 1530, 1530, 1529, 1527, 1530, 1529, 1531, 1531, 1529, 1530, 1531, 1532, 1530, 1530, 1532, 1531, 1520, 1522, 1531, 1531, 1522, 1520, 1531, 1529, 1520, 1520, 1529, 1531, 1524, 1533, 1531, 1531, 1533, 1524, 1531, 1522, 1524, 1524, 1522, 1531, 1534, 1532, 1531, 1531, 1532, 1534, 1531, 1533, 1534, 1534, 1533, 1531, 1535, 1536, 1537, 1537, 1536, 1535, 1537, 1538, 1535, 1535, 1538, 1537, 1525, 1528, 1537, 1537, 1528, 1525, 1537, 1536, 1525, 1525, 1536, 1537, 1530, 1539, 1537, 1537, 1539, 1530, 1537, 1528, 1530, 1530, 1528, 1537, 1540, 1538, 1537, 1537, 1538, 1540, 1537, 1539, 1540, 1540, 1539, 1537, 1540, 1539, 1541, 1541, 1539, 1540, 1541, 1542, 1540, 1540, 1542, 1541, 1530, 1532, 1541, 1541, 1532, 1530, 1541, 1539, 1530, 1530, 1539, 1541, 1534, 1543, 1541, 1541, 1543, 1534, 1541, 1532, 1534, 1534, 1532, 1541, 1544, 1542, 1541, 1541, 1542, 1544, 1541, 1543, 1544, 1544, 1543, 1541, 1545, 1546, 1547, 1547, 1546, 1545, 1547, 1548, 1545, 1545, 1548, 1547, 1535, 1538, 1547, 1547, 1538, 1535, 1547, 1546, 1535, 1535, 1546, 1547, 1540, 1549, 1547, 1547, 1549, 1540, 1547, 1538, 1540, 1540, 1538, 1547, 1550, 1548, 1547, 1547, 1548, 1550, 1547, 1549, 1550, 1550, 1549, 1547, 1550, 1549, 1551, 1551, 1549, 1550, 1551, 1552, 1550, 1550, 1552, 1551, 1540, 1542, 1551, 1551, 1542, 1540, 1551, 1549, 1540, 1540, 1549, 1551, 1544, 1553, 1551, 1551, 1553, 1544, 1551, 1542, 1544, 1544, 1542, 1551, 1554, 1552, 1551, 1551, 1552, 1554, 1551, 1553, 1554, 1554, 1553, 1551, 1555, 1556, 1557, 1557, 1556, 1555, 1557, 1558, 1555, 1555, 1558, 1557, 1545, 1548, 1557, 1557, 1548, 1545, 1557, 1556, 1545, 1545, 1556, 1557, 1550, 1559, 1557, 1557, 1559, 1550, 1557, 1548, 1550, 1550, 1548, 1557, 1560, 1558, 1557, 1557, 1558, 1560, 1557, 1559, 1560, 1560, 1559, 1557, 1560, 1559, 1561, 1561, 1559, 1560, 1561, 1562, 1560, 1560, 1562, 1561, 1550, 1552, 1561, 1561, 1552, 1550, 1561, 1559, 1550, 1550, 1559, 1561, 1554, 1563, 1561, 1561, 1563, 1554, 1561, 1552, 1554, 1554, 1552, 1561, 1564, 1562, 1561, 1561, 1562, 1564, 1561, 1563, 1564, 1564, 1563, 1561, 1565, 1566, 1567, 1567, 1566, 1565, 1567, 1568, 1565, 1565, 1568, 1567, 1555, 1558, 1567, 1567, 1558, 1555, 1567, 1566, 1555, 1555, 1566, 1567, 1560, 1569, 1567, 1567, 1569, 1560, 1567, 1558, 1560, 1560, 1558, 1567, 1570, 1568, 1567, 1567, 1568, 1570, 1567, 1569, 1570, 1570, 1569, 1567, 1570, 1569, 1571, 1571, 1569, 1570, 1571, 1572, 1570, 1570, 1572, 1571, 1560, 1562, 1571, 1571, 1562, 1560, 1571, 1569, 1560, 1560, 1569, 1571, 1564, 1573, 1571, 1571, 1573, 1564, 1571, 1562, 1564, 1564, 1562, 1571, 1574, 1572, 1571, 1571, 1572, 1574, 1571, 1573, 1574, 1574, 1573, 1571, 1575, 1576, 1577, 1577, 1576, 1575, 1577, 1578, 1575, 1575, 1578, 1577, 1565, 1568, 1577, 1577, 1568, 1565, 1577, 1576, 1565, 1565, 1576, 1577, 1570, 1579, 1577, 1577, 1579, 1570, 1577, 1568, 1570, 1570, 1568, 1577, 1580, 1578, 1577, 1577, 1578, 1580, 1577, 1579, 1580, 1580, 1579, 1577, 1580, 1579, 1581, 1581, 1579, 1580, 1581, 1582, 1580, 1580, 1582, 1581, 1570, 1572, 1581, 1581, 1572, 1570, 1581, 1579, 1570, 1570, 1579, 1581, 1574, 1583, 1581, 1581, 1583, 1574, 1581, 1572, 1574, 1574, 1572, 1581, 1584, 1582, 1581, 1581, 1582, 1584, 1581, 1583, 1584, 1584, 1583, 1581, 1585, 1586, 1587, 1587, 1586, 1585, 1587, 1588, 1585, 1585, 1588, 1587, 1575, 1578, 1587, 1587, 1578, 1575, 1587, 1586, 1575, 1575, 1586, 1587, 1580, 1589, 1587, 1587, 1589, 1580, 1587, 1578, 1580, 1580, 1578, 1587, 1590, 1588, 1587, 1587, 1588, 1590, 1587, 1589, 1590, 1590, 1589, 1587, 1590, 1589, 1591, 1591, 1589, 1590, 1591, 1592, 1590, 1590, 1592, 1591, 1580, 1582, 1591, 1591, 1582, 1580, 1591, 1589, 1580, 1580, 1589, 1591, 1584, 1593, 1591, 1591, 1593, 1584, 1591, 1582, 1584, 1584, 1582, 1591, 1594, 1592, 1591, 1591, 1592, 1594, 1591, 1593, 1594, 1594, 1593, 1591, 1595, 1596, 1597, 1597, 1596, 1595, 1597, 1598, 1595, 1595, 1598, 1597, 1585, 1588, 1597, 1597, 1588, 1585, 1597, 1596, 1585, 1585, 1596, 1597, 1590, 1599, 1597, 1597, 1599, 1590, 1597, 1588, 1590, 1590, 1588, 1597, 1600, 1598, 1597, 1597, 1598, 1600, 1597, 1599, 1600, 1600, 1599, 1597, 1600, 1599, 1601, 1601, 1599, 1600, 1601, 1602, 1600, 1600, 1602, 1601, 1590, 1592, 1601, 1601, 1592, 1590, 1601, 1599, 1590, 1590, 1599, 1601, 1594, 1603, 1601, 1601, 1603, 1594, 1601, 1592, 1594, 1594, 1592, 1601, 1604, 1602, 1601, 1601, 1602, 1604, 1601, 1603, 1604, 1604, 1603, 1601, 1605, 1606, 1607, 1607, 1606, 1605, 1607, 1608, 1605, 1605, 1608, 1607, 1595, 1598, 1607, 1607, 1598, 1595, 1607, 1606, 1595, 1595, 1606, 1607, 1600, 1609, 1607, 1607, 1609, 1600, 1607, 1598, 1600, 1600, 1598, 1607, 1610, 1608, 1607, 1607, 1608, 1610, 1607, 1609, 1610, 1610, 1609, 1607, 1610, 1609, 1611, 1611, 1609, 1610, 1611, 1612, 1610, 1610, 1612, 1611, 1600, 1602, 1611, 1611, 1602, 1600, 1611, 1609, 1600, 1600, 1609, 1611, 1604, 1613, 1611, 1611, 1613, 1604, 1611, 1602, 1604, 1604, 1602, 1611, 1614, 1612, 1611, 1611, 1612, 1614, 1611, 1613, 1614, 1614, 1613, 1611, 1615, 1616, 1617, 1617, 1616, 1615, 1617, 1618, 1615, 1615, 1618, 1617, 1605, 1608, 1617, 1617, 1608, 1605, 1617, 1616, 1605, 1605, 1616, 1617, 1610, 1619, 1617, 1617, 1619, 1610, 1617, 1608, 1610, 1610, 1608, 1617, 1620, 1618, 1617, 1617, 1618, 1620, 1617, 1619, 1620, 1620, 1619, 1617, 1620, 1619, 1621, 1621, 1619, 1620, 1621, 1622, 1620, 1620, 1622, 1621, 1610, 1612, 1621, 1621, 1612, 1610, 1621, 1619, 1610, 1610, 1619, 1621, 1614, 1623, 1621, 1621, 1623, 1614, 1621, 1612, 1614, 1614, 1612, 1621, 1624, 1622, 1621, 1621, 1622, 1624, 1621, 1623, 1624, 1624, 1623, 1621, 1625, 1626, 1627, 1627, 1626, 1625, 1627, 1628, 1625, 1625, 1628, 1627, 1629, 1630, 1627, 1627, 1630, 1629, 1627, 1626, 1629, 1629, 1626, 1627, 1631, 1632, 1627, 1627, 1632, 1631, 1627, 1630, 1631, 1631, 1630, 1627, 1633, 1628, 1627, 1627, 1628, 1633, 1627, 1632, 1633, 1633, 1632, 1627, 1633, 1632, 1634, 1634, 1632, 1633, 1634, 1635, 1633, 1633, 1635, 1634, 1631, 1636, 1634, 1634, 1636, 1631, 1634, 1632, 1631, 1631, 1632, 1634, 1637, 1638, 1634, 1634, 1638, 1637, 1634, 1636, 1637, 1637, 1636, 1634, 1639, 1635, 1634, 1634, 1635, 1639, 1634, 1638, 1639, 1639, 1638, 1634, 1640, 1641, 1642, 1642, 1641, 1640, 1642, 1643, 1640, 1640, 1643, 1642, 1625, 1628, 1642, 1642, 1628, 1625, 1642, 1641, 1625, 1625, 1641, 1642, 1633, 1644, 1642, 1642, 1644, 1633, 1642, 1628, 1633, 1633, 1628, 1642, 1645, 1643, 1642, 1642, 1643, 1645, 1642, 1644, 1645, 1645, 1644, 1642, 1645, 1644, 1646, 1646, 1644, 1645, 1646, 1647, 1645, 1645, 1647, 1646, 1633, 1635, 1646, 1646, 1635, 1633, 1646, 1644, 1633, 1633, 1644, 1646, 1639, 1648, 1646, 1646, 1648, 1639, 1646, 1635, 1639, 1639, 1635, 1646, 1649, 1647, 1646, 1646, 1647, 1649, 1646, 1648, 1649, 1649, 1648, 1646, 1650, 1651, 1652, 1652, 1651, 1650, 1652, 1653, 1650, 1650, 1653, 1652, 1640, 1643, 1652, 1652, 1643, 1640, 1652, 1651, 1640, 1640, 1651, 1652, 1645, 1654, 1652, 1652, 1654, 1645, 1652, 1643, 1645, 1645, 1643, 1652, 1655, 1653, 1652, 1652, 1653, 1655, 1652, 1654, 1655, 1655, 1654, 1652, 1655, 1654, 1656, 1656, 1654, 1655, 1656, 1657, 1655, 1655, 1657, 1656, 1645, 1647, 1656, 1656, 1647, 1645, 1656, 1654, 1645, 1645, 1654, 1656, 1649, 1658, 1656, 1656, 1658, 1649, 1656, 1647, 1649, 1649, 1647, 1656, 1659, 1657, 1656, 1656, 1657, 1659, 1656, 1658, 1659, 1659, 1658, 1656, 1660, 1661, 1662, 1662, 1661, 1660, 1662, 1663, 1660, 1660, 1663, 1662, 1650, 1653, 1662, 1662, 1653, 1650, 1662, 1661, 1650, 1650, 1661, 1662, 1655, 1664, 1662, 1662, 1664, 1655, 1662, 1653, 1655, 1655, 1653, 1662, 1665, 1663, 1662, 1662, 1663, 1665, 1662, 1664, 1665, 1665, 1664, 1662, 1665, 1664, 1666, 1666, 1664, 1665, 1666, 1667, 1665, 1665, 1667, 1666, 1655, 1657, 1666, 1666, 1657, 1655, 1666, 1664, 1655, 1655, 1664, 1666, 1659, 1668, 1666, 1666, 1668, 1659, 1666, 1657, 1659, 1659, 1657, 1666, 1669, 1667, 1666, 1666, 1667, 1669, 1666, 1668, 1669, 1669, 1668, 1666, 1670, 1671, 1672, 1672, 1671, 1670, 1672, 1673, 1670, 1670, 1673, 1672, 1660, 1663, 1672, 1672, 1663, 1660, 1672, 1671, 1660, 1660, 1671, 1672, 1665, 1674, 1672, 1672, 1674, 1665, 1672, 1663, 1665, 1665, 1663, 1672, 1675, 1673, 1672, 1672, 1673, 1675, 1672, 1674, 1675, 1675, 1674, 1672, 1675, 1674, 1676, 1676, 1674, 1675, 1676, 1677, 1675, 1675, 1677, 1676, 1665, 1667, 1676, 1676, 1667, 1665, 1676, 1674, 1665, 1665, 1674, 1676, 1669, 1678, 1676, 1676, 1678, 1669, 1676, 1667, 1669, 1669, 1667, 1676, 1679, 1677, 1676, 1676, 1677, 1679, 1676, 1678, 1679, 1679, 1678, 1676, 1680, 1681, 1682, 1682, 1681, 1680, 1682, 1683, 1680, 1680, 1683, 1682, 1670, 1673, 1682, 1682, 1673, 1670, 1682, 1681, 1670, 1670, 1681, 1682, 1675, 1684, 1682, 1682, 1684, 1675, 1682, 1673, 1675, 1675, 1673, 1682, 1685, 1683, 1682, 1682, 1683, 1685, 1682, 1684, 1685, 1685, 1684, 1682, 1685, 1684, 1686, 1686, 1684, 1685, 1686, 1687, 1685, 1685, 1687, 1686, 1675, 1677, 1686, 1686, 1677, 1675, 1686, 1684, 1675, 1675, 1684, 1686, 1679, 1688, 1686, 1686, 1688, 1679, 1686, 1677, 1679, 1679, 1677, 1686, 1689, 1687, 1686, 1686, 1687, 1689, 1686, 1688, 1689, 1689, 1688, 1686, 1690, 1691, 1692, 1692, 1691, 1690, 1692, 1693, 1690, 1690, 1693, 1692, 1680, 1683, 1692, 1692, 1683, 1680, 1692, 1691, 1680, 1680, 1691, 1692, 1685, 1694, 1692, 1692, 1694, 1685, 1692, 1683, 1685, 1685, 1683, 1692, 1695, 1693, 1692, 1692, 1693, 1695, 1692, 1694, 1695, 1695, 1694, 1692, 1695, 1694, 1696, 1696, 1694, 1695, 1696, 1697, 1695, 1695, 1697, 1696, 1685, 1687, 1696, 1696, 1687, 1685, 1696, 1694, 1685, 1685, 1694, 1696, 1689, 1698, 1696, 1696, 1698, 1689, 1696, 1687, 1689, 1689, 1687, 1696, 1699, 1697, 1696, 1696, 1697, 1699, 1696, 1698, 1699, 1699, 1698, 1696, 1700, 1701, 1702, 1702, 1701, 1700, 1702, 1703, 1700, 1700, 1703, 1702, 1690, 1693, 1702, 1702, 1693, 1690, 1702, 1701, 1690, 1690, 1701, 1702, 1695, 1704, 1702, 1702, 1704, 1695, 1702, 1693, 1695, 1695, 1693, 1702, 1705, 1703, 1702, 1702, 1703, 1705, 1702, 1704, 1705, 1705, 1704, 1702, 1705, 1704, 1706, 1706, 1704, 1705, 1706, 1707, 1705, 1705, 1707, 1706, 1695, 1697, 1706, 1706, 1697, 1695, 1706, 1704, 1695, 1695, 1704, 1706, 1699, 1708, 1706, 1706, 1708, 1699, 1706, 1697, 1699, 1699, 1697, 1706, 1709, 1707, 1706, 1706, 1707, 1709, 1706, 1708, 1709, 1709, 1708, 1706, 1710, 1711, 1712, 1712, 1711, 1710, 1712, 1713, 1710, 1710, 1713, 1712, 1700, 1703, 1712, 1712, 1703, 1700, 1712, 1711, 1700, 1700, 1711, 1712, 1705, 1714, 1712, 1712, 1714, 1705, 1712, 1703, 1705, 1705, 1703, 1712, 1715, 1713, 1712, 1712, 1713, 1715, 1712, 1714, 1715, 1715, 1714, 1712, 1715, 1714, 1716, 1716, 1714, 1715, 1716, 1717, 1715, 1715, 1717, 1716, 1705, 1707, 1716, 1716, 1707, 1705, 1716, 1714, 1705, 1705, 1714, 1716, 1709, 1718, 1716, 1716, 1718, 1709, 1716, 1707, 1709, 1709, 1707, 1716, 1719, 1717, 1716, 1716, 1717, 1719, 1716, 1718, 1719, 1719, 1718, 1716, 1720, 1721, 1722, 1722, 1721, 1720, 1722, 1723, 1720, 1720, 1723, 1722, 1710, 1713, 1722, 1722, 1713, 1710, 1722, 1721, 1710, 1710, 1721, 1722, 1715, 1724, 1722, 1722, 1724, 1715, 1722, 1713, 1715, 1715, 1713, 1722, 1725, 1723, 1722, 1722, 1723, 1725, 1722, 1724, 1725, 1725, 1724, 1722, 1725, 1724, 1726, 1726, 1724, 1725, 1726, 1727, 1725, 1725, 1727, 1726, 1715, 1717, 1726, 1726, 1717, 1715, 1726, 1724, 1715, 1715, 1724, 1726, 1719, 1728, 1726, 1726, 1728, 1719, 1726, 1717, 1719, 1719, 1717, 1726, 1729, 1727, 1726, 1726, 1727, 1729, 1726, 1728, 1729, 1729, 1728, 1726, 1730, 1731, 1732, 1732, 1731, 1730, 1732, 1733, 1730, 1730, 1733, 1732, 1720, 1723, 1732, 1732, 1723, 1720, 1732, 1731, 1720, 1720, 1731, 1732, 1725, 1734, 1732, 1732, 1734, 1725, 1732, 1723, 1725, 1725, 1723, 1732, 1735, 1733, 1732, 1732, 1733, 1735, 1732, 1734, 1735, 1735, 1734, 1732, 1735, 1734, 1736, 1736, 1734, 1735, 1736, 1737, 1735, 1735, 1737, 1736, 1725, 1727, 1736, 1736, 1727, 1725, 1736, 1734, 1725, 1725, 1734, 1736, 1729, 1738, 1736, 1736, 1738, 1729, 1736, 1727, 1729, 1729, 1727, 1736, 1739, 1737, 1736, 1736, 1737, 1739, 1736, 1738, 1739, 1739, 1738, 1736, 1740, 1741, 1742, 1742, 1741, 1740, 1742, 1743, 1740, 1740, 1743, 1742, 1730, 1733, 1742, 1742, 1733, 1730, 1742, 1741, 1730, 1730, 1741, 1742, 1735, 1744, 1742, 1742, 1744, 1735, 1742, 1733, 1735, 1735, 1733, 1742, 1745, 1743, 1742, 1742, 1743, 1745, 1742, 1744, 1745, 1745, 1744, 1742, 1745, 1744, 1746, 1746, 1744, 1745, 1746, 1747, 1745, 1745, 1747, 1746, 1735, 1737, 1746, 1746, 1737, 1735, 1746, 1744, 1735, 1735, 1744, 1746, 1739, 1748, 1746, 1746, 1748, 1739, 1746, 1737, 1739, 1739, 1737, 1746, 1749, 1747, 1746, 1746, 1747, 1749, 1746, 1748, 1749, 1749, 1748, 1746, 1750, 1751, 1752, 1752, 1751, 1750, 1752, 1753, 1750, 1750, 1753, 1752, 1754, 1755, 1752, 1752, 1755, 1754, 1752, 1751, 1754, 1754, 1751, 1752, 1756, 1757, 1752, 1752, 1757, 1756, 1752, 1755, 1756, 1756, 1755, 1752, 1758, 1753, 1752, 1752, 1753, 1758, 1752, 1757, 1758, 1758, 1757, 1752, 1758, 1757, 1759, 1759, 1757, 1758, 1759, 1760, 1758, 1758, 1760, 1759, 1756, 1761, 1759, 1759, 1761, 1756, 1759, 1757, 1756, 1756, 1757, 1759, 1762, 1763, 1759, 1759, 1763, 1762, 1759, 1761, 1762, 1762, 1761, 1759, 1764, 1760, 1759, 1759, 1760, 1764, 1759, 1763, 1764, 1764, 1763, 1759, 1765, 1766, 1767, 1767, 1766, 1765, 1767, 1768, 1765, 1765, 1768, 1767, 1750, 1753, 1767, 1767, 1753, 1750, 1767, 1766, 1750, 1750, 1766, 1767, 1758, 1769, 1767, 1767, 1769, 1758, 1767, 1753, 1758, 1758, 1753, 1767, 1770, 1768, 1767, 1767, 1768, 1770, 1767, 1769, 1770, 1770, 1769, 1767, 1770, 1769, 1771, 1771, 1769, 1770, 1771, 1772, 1770, 1770, 1772, 1771, 1758, 1760, 1771, 1771, 1760, 1758, 1771, 1769, 1758, 1758, 1769, 1771, 1764, 1773, 1771, 1771, 1773, 1764, 1771, 1760, 1764, 1764, 1760, 1771, 1774, 1772, 1771, 1771, 1772, 1774, 1771, 1773, 1774, 1774, 1773, 1771, 1775, 1776, 1777, 1777, 1776, 1775, 1777, 1778, 1775, 1775, 1778, 1777, 1765, 1768, 1777, 1777, 1768, 1765, 1777, 1776, 1765, 1765, 1776, 1777, 1770, 1779, 1777, 1777, 1779, 1770, 1777, 1768, 1770, 1770, 1768, 1777, 1780, 1778, 1777, 1777, 1778, 1780, 1777, 1779, 1780, 1780, 1779, 1777, 1780, 1779, 1781, 1781, 1779, 1780, 1781, 1782, 1780, 1780, 1782, 1781, 1770, 1772, 1781, 1781, 1772, 1770, 1781, 1779, 1770, 1770, 1779, 1781, 1774, 1783, 1781, 1781, 1783, 1774, 1781, 1772, 1774, 1774, 1772, 1781, 1784, 1782, 1781, 1781, 1782, 1784, 1781, 1783, 1784, 1784, 1783, 1781, 1785, 1786, 1787, 1787, 1786, 1785, 1787, 1788, 1785, 1785, 1788, 1787, 1775, 1778, 1787, 1787, 1778, 1775, 1787, 1786, 1775, 1775, 1786, 1787, 1780, 1789, 1787, 1787, 1789, 1780, 1787, 1778, 1780, 1780, 1778, 1787, 1790, 1788, 1787, 1787, 1788, 1790, 1787, 1789, 1790, 1790, 1789, 1787, 1790, 1789, 1791, 1791, 1789, 1790, 1791, 1792, 1790, 1790, 1792, 1791, 1780, 1782, 1791, 1791, 1782, 1780, 1791, 1789, 1780, 1780, 1789, 1791, 1784, 1793, 1791, 1791, 1793, 1784, 1791, 1782, 1784, 1784, 1782, 1791, 1794, 1792, 1791, 1791, 1792, 1794, 1791, 1793, 1794, 1794, 1793, 1791, 1795, 1796, 1797, 1797, 1796, 1795, 1797, 1798, 1795, 1795, 1798, 1797, 1785, 1788, 1797, 1797, 1788, 1785, 1797, 1796, 1785, 1785, 1796, 1797, 1790, 1799, 1797, 1797, 1799, 1790, 1797, 1788, 1790, 1790, 1788, 1797, 1800, 1798, 1797, 1797, 1798, 1800, 1797, 1799, 1800, 1800, 1799, 1797, 1800, 1799, 1801, 1801, 1799, 1800, 1801, 1802, 1800, 1800, 1802, 1801, 1790, 1792, 1801, 1801, 1792, 1790, 1801, 1799, 1790, 1790, 1799, 1801, 1794, 1803, 1801, 1801, 1803, 1794, 1801, 1792, 1794, 1794, 1792, 1801, 1804, 1802, 1801, 1801, 1802, 1804, 1801, 1803, 1804, 1804, 1803, 1801, 1805, 1806, 1807, 1807, 1806, 1805, 1807, 1808, 1805, 1805, 1808, 1807, 1795, 1798, 1807, 1807, 1798, 1795, 1807, 1806, 1795, 1795, 1806, 1807, 1800, 1809, 1807, 1807, 1809, 1800, 1807, 1798, 1800, 1800, 1798, 1807, 1810, 1808, 1807, 1807, 1808, 1810, 1807, 1809, 1810, 1810, 1809, 1807, 1810, 1809, 1811, 1811, 1809, 1810, 1811, 1812, 1810, 1810, 1812, 1811, 1800, 1802, 1811, 1811, 1802, 1800, 1811, 1809, 1800, 1800, 1809, 1811, 1804, 1813, 1811, 1811, 1813, 1804, 1811, 1802, 1804, 1804, 1802, 1811, 1814, 1812, 1811, 1811, 1812, 1814, 1811, 1813, 1814, 1814, 1813, 1811, 1815, 1816, 1817, 1817, 1816, 1815, 1817, 1818, 1815, 1815, 1818, 1817, 1805, 1808, 1817, 1817, 1808, 1805, 1817, 1816, 1805, 1805, 1816, 1817, 1810, 1819, 1817, 1817, 1819, 1810, 1817, 1808, 1810, 1810, 1808, 1817, 1820, 1818, 1817, 1817, 1818, 1820, 1817, 1819, 1820, 1820, 1819, 1817, 1820, 1819, 1821, 1821, 1819, 1820, 1821, 1822, 1820, 1820, 1822, 1821, 1810, 1812, 1821, 1821, 1812, 1810, 1821, 1819, 1810, 1810, 1819, 1821, 1814, 1823, 1821, 1821, 1823, 1814, 1821, 1812, 1814, 1814, 1812, 1821, 1824, 1822, 1821, 1821, 1822, 1824, 1821, 1823, 1824, 1824, 1823, 1821, 1825, 1826, 1827, 1827, 1826, 1825, 1827, 1828, 1825, 1825, 1828, 1827, 1815, 1818, 1827, 1827, 1818, 1815, 1827, 1826, 1815, 1815, 1826, 1827, 1820, 1829, 1827, 1827, 1829, 1820, 1827, 1818, 1820, 1820, 1818, 1827, 1830, 1828, 1827, 1827, 1828, 1830, 1827, 1829, 1830, 1830, 1829, 1827, 1830, 1829, 1831, 1831, 1829, 1830, 1831, 1832, 1830, 1830, 1832, 1831, 1820, 1822, 1831, 1831, 1822, 1820, 1831, 1829, 1820, 1820, 1829, 1831, 1824, 1833, 1831, 1831, 1833, 1824, 1831, 1822, 1824, 1824, 1822, 1831, 1834, 1832, 1831, 1831, 1832, 1834, 1831, 1833, 1834, 1834, 1833, 1831, 1835, 1836, 1837, 1837, 1836, 1835, 1837, 1838, 1835, 1835, 1838, 1837, 1825, 1828, 1837, 1837, 1828, 1825, 1837, 1836, 1825, 1825, 1836, 1837, 1830, 1839, 1837, 1837, 1839, 1830, 1837, 1828, 1830, 1830, 1828, 1837, 1840, 1838, 1837, 1837, 1838, 1840, 1837, 1839, 1840, 1840, 1839, 1837, 1840, 1839, 1841, 1841, 1839, 1840, 1841, 1842, 1840, 1840, 1842, 1841, 1830, 1832, 1841, 1841, 1832, 1830, 1841, 1839, 1830, 1830, 1839, 1841, 1834, 1843, 1841, 1841, 1843, 1834, 1841, 1832, 1834, 1834, 1832, 1841, 1844, 1842, 1841, 1841, 1842, 1844, 1841, 1843, 1844, 1844, 1843, 1841, 1845, 1846, 1847, 1847, 1846, 1845, 1847, 1848, 1845, 1845, 1848, 1847, 1835, 1838, 1847, 1847, 1838, 1835, 1847, 1846, 1835, 1835, 1846, 1847, 1840, 1849, 1847, 1847, 1849, 1840, 1847, 1838, 1840, 1840, 1838, 1847, 1850, 1848, 1847, 1847, 1848, 1850, 1847, 1849, 1850, 1850, 1849, 1847, 1850, 1849, 1851, 1851, 1849, 1850, 1851, 1852, 1850, 1850, 1852, 1851, 1840, 1842, 1851, 1851, 1842, 1840, 1851, 1849, 1840, 1840, 1849, 1851, 1844, 1853, 1851, 1851, 1853, 1844, 1851, 1842, 1844, 1844, 1842, 1851, 1854, 1852, 1851, 1851, 1852, 1854, 1851, 1853, 1854, 1854, 1853, 1851, 1855, 1856, 1857, 1857, 1856, 1855, 1857, 1858, 1855, 1855, 1858, 1857, 1845, 1848, 1857, 1857, 1848, 1845, 1857, 1856, 1845, 1845, 1856, 1857, 1850, 1859, 1857, 1857, 1859, 1850, 1857, 1848, 1850, 1850, 1848, 1857, 1860, 1858, 1857, 1857, 1858, 1860, 1857, 1859, 1860, 1860, 1859, 1857, 1860, 1859, 1861, 1861, 1859, 1860, 1861, 1862, 1860, 1860, 1862, 1861, 1850, 1852, 1861, 1861, 1852, 1850, 1861, 1859, 1850, 1850, 1859, 1861, 1854, 1863, 1861, 1861, 1863, 1854, 1861, 1852, 1854, 1854, 1852, 1861, 1864, 1862, 1861, 1861, 1862, 1864, 1861, 1863, 1864, 1864, 1863, 1861, 1865, 1866, 1867, 1867, 1866, 1865, 1867, 1868, 1865, 1865, 1868, 1867, 1855, 1858, 1867, 1867, 1858, 1855, 1867, 1866, 1855, 1855, 1866, 1867, 1860, 1869, 1867, 1867, 1869, 1860, 1867, 1858, 1860, 1860, 1858, 1867, 1870, 1868, 1867, 1867, 1868, 1870, 1867, 1869, 1870, 1870, 1869, 1867, 1870, 1869, 1871, 1871, 1869, 1870, 1871, 1872, 1870, 1870, 1872, 1871, 1860, 1862, 1871, 1871, 1862, 1860, 1871, 1869, 1860, 1860, 1869, 1871, 1864, 1873, 1871, 1871, 1873, 1864, 1871, 1862, 1864, 1864, 1862, 1871, 1874, 1872, 1871, 1871, 1872, 1874, 1871, 1873, 1874, 1874, 1873, 1871, 1875, 1876, 1877, 1877, 1876, 1875, 1877, 1878, 1875, 1875, 1878, 1877, 1879, 1880, 1877, 1877, 1880, 1879, 1877, 1876, 1879, 1879, 1876, 1877, 1881, 1882, 1877, 1877, 1882, 1881, 1877, 1880, 1881, 1881, 1880, 1877, 1883, 1878, 1877, 1877, 1878, 1883, 1877, 1882, 1883, 1883, 1882, 1877, 1883, 1882, 1884, 1884, 1882, 1883, 1884, 1885, 1883, 1883, 1885, 1884, 1881, 1886, 1884, 1884, 1886, 1881, 1884, 1882, 1881, 1881, 1882, 1884, 1887, 1888, 1884, 1884, 1888, 1887, 1884, 1886, 1887, 1887, 1886, 1884, 1889, 1885, 1884, 1884, 1885, 1889, 1884, 1888, 1889, 1889, 1888, 1884, 1890, 1891, 1892, 1892, 1891, 1890, 1892, 1893, 1890, 1890, 1893, 1892, 1875, 1878, 1892, 1892, 1878, 1875, 1892, 1891, 1875, 1875, 1891, 1892, 1883, 1894, 1892, 1892, 1894, 1883, 1892, 1878, 1883, 1883, 1878, 1892, 1895, 1893, 1892, 1892, 1893, 1895, 1892, 1894, 1895, 1895, 1894, 1892, 1895, 1894, 1896, 1896, 1894, 1895, 1896, 1897, 1895, 1895, 1897, 1896, 1883, 1885, 1896, 1896, 1885, 1883, 1896, 1894, 1883, 1883, 1894, 1896, 1889, 1898, 1896, 1896, 1898, 1889, 1896, 1885, 1889, 1889, 1885, 1896, 1899, 1897, 1896, 1896, 1897, 1899, 1896, 1898, 1899, 1899, 1898, 1896, 1900, 1901, 1902, 1902, 1901, 1900, 1902, 1903, 1900, 1900, 1903, 1902, 1890, 1893, 1902, 1902, 1893, 1890, 1902, 1901, 1890, 1890, 1901, 1902, 1895, 1904, 1902, 1902, 1904, 1895, 1902, 1893, 1895, 1895, 1893, 1902, 1905, 1903, 1902, 1902, 1903, 1905, 1902, 1904, 1905, 1905, 1904, 1902, 1905, 1904, 1906, 1906, 1904, 1905, 1906, 1907, 1905, 1905, 1907, 1906, 1895, 1897, 1906, 1906, 1897, 1895, 1906, 1904, 1895, 1895, 1904, 1906, 1899, 1908, 1906, 1906, 1908, 1899, 1906, 1897, 1899, 1899, 1897, 1906, 1909, 1907, 1906, 1906, 1907, 1909, 1906, 1908, 1909, 1909, 1908, 1906, 1910, 1911, 1912, 1912, 1911, 1910, 1912, 1913, 1910, 1910, 1913, 1912, 1900, 1903, 1912, 1912, 1903, 1900, 1912, 1911, 1900, 1900, 1911, 1912, 1905, 1914, 1912, 1912, 1914, 1905, 1912, 1903, 1905, 1905, 1903, 1912, 1915, 1913, 1912, 1912, 1913, 1915, 1912, 1914, 1915, 1915, 1914, 1912, 1915, 1914, 1916, 1916, 1914, 1915, 1916, 1917, 1915, 1915, 1917, 1916, 1905, 1907, 1916, 1916, 1907, 1905, 1916, 1914, 1905, 1905, 1914, 1916, 1909, 1918, 1916, 1916, 1918, 1909, 1916, 1907, 1909, 1909, 1907, 1916, 1919, 1917, 1916, 1916, 1917, 1919, 1916, 1918, 1919, 1919, 1918, 1916, 1920, 1921, 1922, 1922, 1921, 1920, 1922, 1923, 1920, 1920, 1923, 1922, 1910, 1913, 1922, 1922, 1913, 1910, 1922, 1921, 1910, 1910, 1921, 1922, 1915, 1924, 1922, 1922, 1924, 1915, 1922, 1913, 1915, 1915, 1913, 1922, 1925, 1923, 1922, 1922, 1923, 1925, 1922, 1924, 1925, 1925, 1924, 1922, 1925, 1924, 1926, 1926, 1924, 1925, 1926, 1927, 1925, 1925, 1927, 1926, 1915, 1917, 1926, 1926, 1917, 1915, 1926, 1924, 1915, 1915, 1924, 1926, 1919, 1928, 1926, 1926, 1928, 1919, 1926, 1917, 1919, 1919, 1917, 1926, 1929, 1927, 1926, 1926, 1927, 1929, 1926, 1928, 1929, 1929, 1928, 1926, 1930, 1931, 1932, 1932, 1931, 1930, 1932, 1933, 1930, 1930, 1933, 1932, 1920, 1923, 1932, 1932, 1923, 1920, 1932, 1931, 1920, 1920, 1931, 1932, 1925, 1934, 1932, 1932, 1934, 1925, 1932, 1923, 1925, 1925, 1923, 1932, 1935, 1933, 1932, 1932, 1933, 1935, 1932, 1934, 1935, 1935, 1934, 1932, 1935, 1934, 1936, 1936, 1934, 1935, 1936, 1937, 1935, 1935, 1937, 1936, 1925, 1927, 1936, 1936, 1927, 1925, 1936, 1934, 1925, 1925, 1934, 1936, 1929, 1938, 1936, 1936, 1938, 1929, 1936, 1927, 1929, 1929, 1927, 1936, 1939, 1937, 1936, 1936, 1937, 1939, 1936, 1938, 1939, 1939, 1938, 1936, 1940, 1941, 1942, 1942, 1941, 1940, 1942, 1943, 1940, 1940, 1943, 1942, 1930, 1933, 1942, 1942, 1933, 1930, 1942, 1941, 1930, 1930, 1941, 1942, 1935, 1944, 1942, 1942, 1944, 1935, 1942, 1933, 1935, 1935, 1933, 1942, 1945, 1943, 1942, 1942, 1943, 1945, 1942, 1944, 1945, 1945, 1944, 1942, 1945, 1944, 1946, 1946, 1944, 1945, 1946, 1947, 1945, 1945, 1947, 1946, 1935, 1937, 1946, 1946, 1937, 1935, 1946, 1944, 1935, 1935, 1944, 1946, 1939, 1948, 1946, 1946, 1948, 1939, 1946, 1937, 1939, 1939, 1937, 1946, 1949, 1947, 1946, 1946, 1947, 1949, 1946, 1948, 1949, 1949, 1948, 1946, 1950, 1951, 1952, 1952, 1951, 1950, 1952, 1953, 1950, 1950, 1953, 1952, 1940, 1943, 1952, 1952, 1943, 1940, 1952, 1951, 1940, 1940, 1951, 1952, 1945, 1954, 1952, 1952, 1954, 1945, 1952, 1943, 1945, 1945, 1943, 1952, 1955, 1953, 1952, 1952, 1953, 1955, 1952, 1954, 1955, 1955, 1954, 1952, 1955, 1954, 1956, 1956, 1954, 1955, 1956, 1957, 1955, 1955, 1957, 1956, 1945, 1947, 1956, 1956, 1947, 1945, 1956, 1954, 1945, 1945, 1954, 1956, 1949, 1958, 1956, 1956, 1958, 1949, 1956, 1947, 1949, 1949, 1947, 1956, 1959, 1957, 1956, 1956, 1957, 1959, 1956, 1958, 1959, 1959, 1958, 1956, 1960, 1961, 1962, 1962, 1961, 1960, 1962, 1963, 1960, 1960, 1963, 1962, 1950, 1953, 1962, 1962, 1953, 1950, 1962, 1961, 1950, 1950, 1961, 1962, 1955, 1964, 1962, 1962, 1964, 1955, 1962, 1953, 1955, 1955, 1953, 1962, 1965, 1963, 1962, 1962, 1963, 1965, 1962, 1964, 1965, 1965, 1964, 1962, 1965, 1964, 1966, 1966, 1964, 1965, 1966, 1967, 1965, 1965, 1967, 1966, 1955, 1957, 1966, 1966, 1957, 1955, 1966, 1964, 1955, 1955, 1964, 1966, 1959, 1968, 1966, 1966, 1968, 1959, 1966, 1957, 1959, 1959, 1957, 1966, 1969, 1967, 1966, 1966, 1967, 1969, 1966, 1968, 1969, 1969, 1968, 1966, 1970, 1971, 1972, 1972, 1971, 1970, 1972, 1973, 1970, 1970, 1973, 1972, 1960, 1963, 1972, 1972, 1963, 1960, 1972, 1971, 1960, 1960, 1971, 1972, 1965, 1974, 1972, 1972, 1974, 1965, 1972, 1963, 1965, 1965, 1963, 1972, 1975, 1973, 1972, 1972, 1973, 1975, 1972, 1974, 1975, 1975, 1974, 1972, 1975, 1974, 1976, 1976, 1974, 1975, 1976, 1977, 1975, 1975, 1977, 1976, 1965, 1967, 1976, 1976, 1967, 1965, 1976, 1974, 1965, 1965, 1974, 1976, 1969, 1978, 1976, 1976, 1978, 1969, 1976, 1967, 1969, 1969, 1967, 1976, 1979, 1977, 1976, 1976, 1977, 1979, 1976, 1978, 1979, 1979, 1978, 1976, 1980, 1981, 1982, 1982, 1981, 1980, 1982, 1983, 1980, 1980, 1983, 1982, 1970, 1973, 1982, 1982, 1973, 1970, 1982, 1981, 1970, 1970, 1981, 1982, 1975, 1984, 1982, 1982, 1984, 1975, 1982, 1973, 1975, 1975, 1973, 1982, 1985, 1983, 1982, 1982, 1983, 1985, 1982, 1984, 1985, 1985, 1984, 1982, 1985, 1984, 1986, 1986, 1984, 1985, 1986, 1987, 1985, 1985, 1987, 1986, 1975, 1977, 1986, 1986, 1977, 1975, 1986, 1984, 1975, 1975, 1984, 1986, 1979, 1988, 1986, 1986, 1988, 1979, 1986, 1977, 1979, 1979, 1977, 1986, 1989, 1987, 1986, 1986, 1987, 1989, 1986, 1988, 1989, 1989, 1988, 1986, 1990, 1991, 1992, 1992, 1991, 1990, 1992, 1993, 1990, 1990, 1993, 1992, 1980, 1983, 1992, 1992, 1983, 1980, 1992, 1991, 1980, 1980, 1991, 1992, 1985, 1994, 1992, 1992, 1994, 1985, 1992, 1983, 1985, 1985, 1983, 1992, 1995, 1993, 1992, 1992, 1993, 1995, 1992, 1994, 1995, 1995, 1994, 1992, 1995, 1994, 1996, 1996, 1994, 1995, 1996, 1997, 1995, 1995, 1997, 1996, 1985, 1987, 1996, 1996, 1987, 1985, 1996, 1994, 1985, 1985, 1994, 1996, 1989, 1998, 1996, 1996, 1998, 1989, 1996, 1987, 1989, 1989, 1987, 1996, 1999, 1997, 1996, 1996, 1997, 1999, 1996, 1998, 1999, 1999, 1998, 1996, 2000, 2001, 2002, 2002, 2001, 2000, 2002, 2003, 2000, 2000, 2003, 2002, 2004, 2005, 2002, 2002, 2005, 2004, 2002, 2001, 2004, 2004, 2001, 2002, 2006, 2007, 2002, 2002, 2007, 2006, 2002, 2005, 2006, 2006, 2005, 2002, 2008, 2003, 2002, 2002, 2003, 2008, 2002, 2007, 2008, 2008, 2007, 2002, 2008, 2007, 2009, 2009, 2007, 2008, 2009, 2010, 2008, 2008, 2010, 2009, 2006, 2011, 2009, 2009, 2011, 2006, 2009, 2007, 2006, 2006, 2007, 2009, 2012, 2013, 2009, 2009, 2013, 2012, 2009, 2011, 2012, 2012, 2011, 2009, 2014, 2010, 2009, 2009, 2010, 2014, 2009, 2013, 2014, 2014, 2013, 2009, 2015, 2016, 2017, 2017, 2016, 2015, 2017, 2018, 2015, 2015, 2018, 2017, 2000, 2003, 2017, 2017, 2003, 2000, 2017, 2016, 2000, 2000, 2016, 2017, 2008, 2019, 2017, 2017, 2019, 2008, 2017, 2003, 2008, 2008, 2003, 2017, 2020, 2018, 2017, 2017, 2018, 2020, 2017, 2019, 2020, 2020, 2019, 2017, 2020, 2019, 2021, 2021, 2019, 2020, 2021, 2022, 2020, 2020, 2022, 2021, 2008, 2010, 2021, 2021, 2010, 2008, 2021, 2019, 2008, 2008, 2019, 2021, 2014, 2023, 2021, 2021, 2023, 2014, 2021, 2010, 2014, 2014, 2010, 2021, 2024, 2022, 2021, 2021, 2022, 2024, 2021, 2023, 2024, 2024, 2023, 2021, 2025, 2026, 2027, 2027, 2026, 2025, 2027, 2028, 2025, 2025, 2028, 2027, 2015, 2018, 2027, 2027, 2018, 2015, 2027, 2026, 2015, 2015, 2026, 2027, 2020, 2029, 2027, 2027, 2029, 2020, 2027, 2018, 2020, 2020, 2018, 2027, 2030, 2028, 2027, 2027, 2028, 2030, 2027, 2029, 2030, 2030, 2029, 2027, 2030, 2029, 2031, 2031, 2029, 2030, 2031, 2032, 2030, 2030, 2032, 2031, 2020, 2022, 2031, 2031, 2022, 2020, 2031, 2029, 2020, 2020, 2029, 2031, 2024, 2033, 2031, 2031, 2033, 2024, 2031, 2022, 2024, 2024, 2022, 2031, 2034, 2032, 2031, 2031, 2032, 2034, 2031, 2033, 2034, 2034, 2033, 2031, 2035, 2036, 2037, 2037, 2036, 2035, 2037, 2038, 2035, 2035, 2038, 2037, 2025, 2028, 2037, 2037, 2028, 2025, 2037, 2036, 2025, 2025, 2036, 2037, 2030, 2039, 2037, 2037, 2039, 2030, 2037, 2028, 2030, 2030, 2028, 2037, 2040, 2038, 2037, 2037, 2038, 2040, 2037, 2039, 2040, 2040, 2039, 2037, 2040, 2039, 2041, 2041, 2039, 2040, 2041, 2042, 2040, 2040, 2042, 2041, 2030, 2032, 2041, 2041, 2032, 2030, 2041, 2039, 2030, 2030, 2039, 2041, 2034, 2043, 2041, 2041, 2043, 2034, 2041, 2032, 2034, 2034, 2032, 2041, 2044, 2042, 2041, 2041, 2042, 2044, 2041, 2043, 2044, 2044, 2043, 2041, 2045, 2046, 2047, 2047, 2046, 2045, 2047, 2048, 2045, 2045, 2048, 2047, 2035, 2038, 2047, 2047, 2038, 2035, 2047, 2046, 2035, 2035, 2046, 2047, 2040, 2049, 2047, 2047, 2049, 2040, 2047, 2038, 2040, 2040, 2038, 2047, 2050, 2048, 2047, 2047, 2048, 2050, 2047, 2049, 2050, 2050, 2049, 2047, 2050, 2049, 2051, 2051, 2049, 2050, 2051, 2052, 2050, 2050, 2052, 2051, 2040, 2042, 2051, 2051, 2042, 2040, 2051, 2049, 2040, 2040, 2049, 2051, 2044, 2053, 2051, 2051, 2053, 2044, 2051, 2042, 2044, 2044, 2042, 2051, 2054, 2052, 2051, 2051, 2052, 2054, 2051, 2053, 2054, 2054, 2053, 2051, 2055, 2056, 2057, 2057, 2056, 2055, 2057, 2058, 2055, 2055, 2058, 2057, 2045, 2048, 2057, 2057, 2048, 2045, 2057, 2056, 2045, 2045, 2056, 2057, 2050, 2059, 2057, 2057, 2059, 2050, 2057, 2048, 2050, 2050, 2048, 2057, 2060, 2058, 2057, 2057, 2058, 2060, 2057, 2059, 2060, 2060, 2059, 2057, 2060, 2059, 2061, 2061, 2059, 2060, 2061, 2062, 2060, 2060, 2062, 2061, 2050, 2052, 2061, 2061, 2052, 2050, 2061, 2059, 2050, 2050, 2059, 2061, 2054, 2063, 2061, 2061, 2063, 2054, 2061, 2052, 2054, 2054, 2052, 2061, 2064, 2062, 2061, 2061, 2062, 2064, 2061, 2063, 2064, 2064, 2063, 2061, 2065, 2066, 2067, 2067, 2066, 2065, 2067, 2068, 2065, 2065, 2068, 2067, 2055, 2058, 2067, 2067, 2058, 2055, 2067, 2066, 2055, 2055, 2066, 2067, 2060, 2069, 2067, 2067, 2069, 2060, 2067, 2058, 2060, 2060, 2058, 2067, 2070, 2068, 2067, 2067, 2068, 2070, 2067, 2069, 2070, 2070, 2069, 2067, 2070, 2069, 2071, 2071, 2069, 2070, 2071, 2072, 2070, 2070, 2072, 2071, 2060, 2062, 2071, 2071, 2062, 2060, 2071, 2069, 2060, 2060, 2069, 2071, 2064, 2073, 2071, 2071, 2073, 2064, 2071, 2062, 2064, 2064, 2062, 2071, 2074, 2072, 2071, 2071, 2072, 2074, 2071, 2073, 2074, 2074, 2073, 2071, 2075, 2076, 2077, 2077, 2076, 2075, 2077, 2078, 2075, 2075, 2078, 2077, 2065, 2068, 2077, 2077, 2068, 2065, 2077, 2076, 2065, 2065, 2076, 2077, 2070, 2079, 2077, 2077, 2079, 2070, 2077, 2068, 2070, 2070, 2068, 2077, 2080, 2078, 2077, 2077, 2078, 2080, 2077, 2079, 2080, 2080, 2079, 2077, 2080, 2079, 2081, 2081, 2079, 2080, 2081, 2082, 2080, 2080, 2082, 2081, 2070, 2072, 2081, 2081, 2072, 2070, 2081, 2079, 2070, 2070, 2079, 2081, 2074, 2083, 2081, 2081, 2083, 2074, 2081, 2072, 2074, 2074, 2072, 2081, 2084, 2082, 2081, 2081, 2082, 2084, 2081, 2083, 2084, 2084, 2083, 2081, 2085, 2086, 2087, 2087, 2086, 2085, 2087, 2088, 2085, 2085, 2088, 2087, 2075, 2078, 2087, 2087, 2078, 2075, 2087, 2086, 2075, 2075, 2086, 2087, 2080, 2089, 2087, 2087, 2089, 2080, 2087, 2078, 2080, 2080, 2078, 2087, 2090, 2088, 2087, 2087, 2088, 2090, 2087, 2089, 2090, 2090, 2089, 2087, 2090, 2089, 2091, 2091, 2089, 2090, 2091, 2092, 2090, 2090, 2092, 2091, 2080, 2082, 2091, 2091, 2082, 2080, 2091, 2089, 2080, 2080, 2089, 2091, 2084, 2093, 2091, 2091, 2093, 2084, 2091, 2082, 2084, 2084, 2082, 2091, 2094, 2092, 2091, 2091, 2092, 2094, 2091, 2093, 2094, 2094, 2093, 2091, 2095, 2096, 2097, 2097, 2096, 2095, 2097, 2098, 2095, 2095, 2098, 2097, 2085, 2088, 2097, 2097, 2088, 2085, 2097, 2096, 2085, 2085, 2096, 2097, 2090, 2099, 2097, 2097, 2099, 2090, 2097, 2088, 2090, 2090, 2088, 2097, 2100, 2098, 2097, 2097, 2098, 2100, 2097, 2099, 2100, 2100, 2099, 2097, 2100, 2099, 2101, 2101, 2099, 2100, 2101, 2102, 2100, 2100, 2102, 2101, 2090, 2092, 2101, 2101, 2092, 2090, 2101, 2099, 2090, 2090, 2099, 2101, 2094, 2103, 2101, 2101, 2103, 2094, 2101, 2092, 2094, 2094, 2092, 2101, 2104, 2102, 2101, 2101, 2102, 2104, 2101, 2103, 2104, 2104, 2103, 2101, 2105, 2106, 2107, 2107, 2106, 2105, 2107, 2108, 2105, 2105, 2108, 2107, 2095, 2098, 2107, 2107, 2098, 2095, 2107, 2106, 2095, 2095, 2106, 2107, 2100, 2109, 2107, 2107, 2109, 2100, 2107, 2098, 2100, 2100, 2098, 2107, 2110, 2108, 2107, 2107, 2108, 2110, 2107, 2109, 2110, 2110, 2109, 2107, 2110, 2109, 2111, 2111, 2109, 2110, 2111, 2112, 2110, 2110, 2112, 2111, 2100, 2102, 2111, 2111, 2102, 2100, 2111, 2109, 2100, 2100, 2109, 2111, 2104, 2113, 2111, 2111, 2113, 2104, 2111, 2102, 2104, 2104, 2102, 2111, 2114, 2112, 2111, 2111, 2112, 2114, 2111, 2113, 2114, 2114, 2113, 2111, 2115, 2116, 2117, 2117, 2116, 2115, 2117, 2118, 2115, 2115, 2118, 2117, 2105, 2108, 2117, 2117, 2108, 2105, 2117, 2116, 2105, 2105, 2116, 2117, 2110, 2119, 2117, 2117, 2119, 2110, 2117, 2108, 2110, 2110, 2108, 2117, 2120, 2118, 2117, 2117, 2118, 2120, 2117, 2119, 2120, 2120, 2119, 2117, 2120, 2119, 2121, 2121, 2119, 2120, 2121, 2122, 2120, 2120, 2122, 2121, 2110, 2112, 2121, 2121, 2112, 2110, 2121, 2119, 2110, 2110, 2119, 2121, 2114, 2123, 2121, 2121, 2123, 2114, 2121, 2112, 2114, 2114, 2112, 2121, 2124, 2122, 2121, 2121, 2122, 2124, 2121, 2123, 2124, 2124, 2123, 2121, 2125, 2126, 2127, 2127, 2126, 2125, 2127, 2128, 2125, 2125, 2128, 2127, 2129, 2130, 2127, 2127, 2130, 2129, 2127, 2126, 2129, 2129, 2126, 2127, 2131, 2132, 2127, 2127, 2132, 2131, 2127, 2130, 2131, 2131, 2130, 2127, 2133, 2128, 2127, 2127, 2128, 2133, 2127, 2132, 2133, 2133, 2132, 2127, 2133, 2132, 2134, 2134, 2132, 2133, 2134, 2135, 2133, 2133, 2135, 2134, 2131, 2136, 2134, 2134, 2136, 2131, 2134, 2132, 2131, 2131, 2132, 2134, 2137, 2138, 2134, 2134, 2138, 2137, 2134, 2136, 2137, 2137, 2136, 2134, 2139, 2135, 2134, 2134, 2135, 2139, 2134, 2138, 2139, 2139, 2138, 2134, 2140, 2141, 2142, 2142, 2141, 2140, 2142, 2143, 2140, 2140, 2143, 2142, 2125, 2128, 2142, 2142, 2128, 2125, 2142, 2141, 2125, 2125, 2141, 2142, 2133, 2144, 2142, 2142, 2144, 2133, 2142, 2128, 2133, 2133, 2128, 2142, 2145, 2143, 2142, 2142, 2143, 2145, 2142, 2144, 2145, 2145, 2144, 2142, 2145, 2144, 2146, 2146, 2144, 2145, 2146, 2147, 2145, 2145, 2147, 2146, 2133, 2135, 2146, 2146, 2135, 2133, 2146, 2144, 2133, 2133, 2144, 2146, 2139, 2148, 2146, 2146, 2148, 2139, 2146, 2135, 2139, 2139, 2135, 2146, 2149, 2147, 2146, 2146, 2147, 2149, 2146, 2148, 2149, 2149, 2148, 2146, 2150, 2151, 2152, 2152, 2151, 2150, 2152, 2153, 2150, 2150, 2153, 2152, 2140, 2143, 2152, 2152, 2143, 2140, 2152, 2151, 2140, 2140, 2151, 2152, 2145, 2154, 2152, 2152, 2154, 2145, 2152, 2143, 2145, 2145, 2143, 2152, 2155, 2153, 2152, 2152, 2153, 2155, 2152, 2154, 2155, 2155, 2154, 2152, 2155, 2154, 2156, 2156, 2154, 2155, 2156, 2157, 2155, 2155, 2157, 2156, 2145, 2147, 2156, 2156, 2147, 2145, 2156, 2154, 2145, 2145, 2154, 2156, 2149, 2158, 2156, 2156, 2158, 2149, 2156, 2147, 2149, 2149, 2147, 2156, 2159, 2157, 2156, 2156, 2157, 2159, 2156, 2158, 2159, 2159, 2158, 2156, 2160, 2161, 2162, 2162, 2161, 2160, 2162, 2163, 2160, 2160, 2163, 2162, 2150, 2153, 2162, 2162, 2153, 2150, 2162, 2161, 2150, 2150, 2161, 2162, 2155, 2164, 2162, 2162, 2164, 2155, 2162, 2153, 2155, 2155, 2153, 2162, 2165, 2163, 2162, 2162, 2163, 2165, 2162, 2164, 2165, 2165, 2164, 2162, 2165, 2164, 2166, 2166, 2164, 2165, 2166, 2167, 2165, 2165, 2167, 2166, 2155, 2157, 2166, 2166, 2157, 2155, 2166, 2164, 2155, 2155, 2164, 2166, 2159, 2168, 2166, 2166, 2168, 2159, 2166, 2157, 2159, 2159, 2157, 2166, 2169, 2167, 2166, 2166, 2167, 2169, 2166, 2168, 2169, 2169, 2168, 2166, 2170, 2171, 2172, 2172, 2171, 2170, 2172, 2173, 2170, 2170, 2173, 2172, 2160, 2163, 2172, 2172, 2163, 2160, 2172, 2171, 2160, 2160, 2171, 2172, 2165, 2174, 2172, 2172, 2174, 2165, 2172, 2163, 2165, 2165, 2163, 2172, 2175, 2173, 2172, 2172, 2173, 2175, 2172, 2174, 2175, 2175, 2174, 2172, 2175, 2174, 2176, 2176, 2174, 2175, 2176, 2177, 2175, 2175, 2177, 2176, 2165, 2167, 2176, 2176, 2167, 2165, 2176, 2174, 2165, 2165, 2174, 2176, 2169, 2178, 2176, 2176, 2178, 2169, 2176, 2167, 2169, 2169, 2167, 2176, 2179, 2177, 2176, 2176, 2177, 2179, 2176, 2178, 2179, 2179, 2178, 2176, 2180, 2181, 2182, 2182, 2181, 2180, 2182, 2183, 2180, 2180, 2183, 2182, 2170, 2173, 2182, 2182, 2173, 2170, 2182, 2181, 2170, 2170, 2181, 2182, 2175, 2184, 2182, 2182, 2184, 2175, 2182, 2173, 2175, 2175, 2173, 2182, 2185, 2183, 2182, 2182, 2183, 2185, 2182, 2184, 2185, 2185, 2184, 2182, 2185, 2184, 2186, 2186, 2184, 2185, 2186, 2187, 2185, 2185, 2187, 2186, 2175, 2177, 2186, 2186, 2177, 2175, 2186, 2184, 2175, 2175, 2184, 2186, 2179, 2188, 2186, 2186, 2188, 2179, 2186, 2177, 2179, 2179, 2177, 2186, 2189, 2187, 2186, 2186, 2187, 2189, 2186, 2188, 2189, 2189, 2188, 2186, 2190, 2191, 2192, 2192, 2191, 2190, 2192, 2193, 2190, 2190, 2193, 2192, 2180, 2183, 2192, 2192, 2183, 2180, 2192, 2191, 2180, 2180, 2191, 2192, 2185, 2194, 2192, 2192, 2194, 2185, 2192, 2183, 2185, 2185, 2183, 2192, 2195, 2193, 2192, 2192, 2193, 2195, 2192, 2194, 2195, 2195, 2194, 2192, 2195, 2194, 2196, 2196, 2194, 2195, 2196, 2197, 2195, 2195, 2197, 2196, 2185, 2187, 2196, 2196, 2187, 2185, 2196, 2194, 2185, 2185, 2194, 2196, 2189, 2198, 2196, 2196, 2198, 2189, 2196, 2187, 2189, 2189, 2187, 2196, 2199, 2197, 2196, 2196, 2197, 2199, 2196, 2198, 2199, 2199, 2198, 2196, 2200, 2201, 2202, 2202, 2201, 2200, 2202, 2203, 2200, 2200, 2203, 2202, 2190, 2193, 2202, 2202, 2193, 2190, 2202, 2201, 2190, 2190, 2201, 2202, 2195, 2204, 2202, 2202, 2204, 2195, 2202, 2193, 2195, 2195, 2193, 2202, 2205, 2203, 2202, 2202, 2203, 2205, 2202, 2204, 2205, 2205, 2204, 2202, 2205, 2204, 2206, 2206, 2204, 2205, 2206, 2207, 2205, 2205, 2207, 2206, 2195, 2197, 2206, 2206, 2197, 2195, 2206, 2204, 2195, 2195, 2204, 2206, 2199, 2208, 2206, 2206, 2208, 2199, 2206, 2197, 2199, 2199, 2197, 2206, 2209, 2207, 2206, 2206, 2207, 2209, 2206, 2208, 2209, 2209, 2208, 2206, 2210, 2211, 2212, 2212, 2211, 2210, 2212, 2213, 2210, 2210, 2213, 2212, 2200, 2203, 2212, 2212, 2203, 2200, 2212, 2211, 2200, 2200, 2211, 2212, 2205, 2214, 2212, 2212, 2214, 2205, 2212, 2203, 2205, 2205, 2203, 2212, 2215, 2213, 2212, 2212, 2213, 2215, 2212, 2214, 2215, 2215, 2214, 2212, 2215, 2214, 2216, 2216, 2214, 2215, 2216, 2217, 2215, 2215, 2217, 2216, 2205, 2207, 2216, 2216, 2207, 2205, 2216, 2214, 2205, 2205, 2214, 2216, 2209, 2218, 2216, 2216, 2218, 2209, 2216, 2207, 2209, 2209, 2207, 2216, 2219, 2217, 2216, 2216, 2217, 2219, 2216, 2218, 2219, 2219, 2218, 2216, 2220, 2221, 2222, 2222, 2221, 2220, 2222, 2223, 2220, 2220, 2223, 2222, 2210, 2213, 2222, 2222, 2213, 2210, 2222, 2221, 2210, 2210, 2221, 2222, 2215, 2224, 2222, 2222, 2224, 2215, 2222, 2213, 2215, 2215, 2213, 2222, 2225, 2223, 2222, 2222, 2223, 2225, 2222, 2224, 2225, 2225, 2224, 2222, 2225, 2224, 2226, 2226, 2224, 2225, 2226, 2227, 2225, 2225, 2227, 2226, 2215, 2217, 2226, 2226, 2217, 2215, 2226, 2224, 2215, 2215, 2224, 2226, 2219, 2228, 2226, 2226, 2228, 2219, 2226, 2217, 2219, 2219, 2217, 2226, 2229, 2227, 2226, 2226, 2227, 2229, 2226, 2228, 2229, 2229, 2228, 2226, 2230, 2231, 2232, 2232, 2231, 2230, 2232, 2233, 2230, 2230, 2233, 2232, 2220, 2223, 2232, 2232, 2223, 2220, 2232, 2231, 2220, 2220, 2231, 2232, 2225, 2234, 2232, 2232, 2234, 2225, 2232, 2223, 2225, 2225, 2223, 2232, 2235, 2233, 2232, 2232, 2233, 2235, 2232, 2234, 2235, 2235, 2234, 2232, 2235, 2234, 2236, 2236, 2234, 2235, 2236, 2237, 2235, 2235, 2237, 2236, 2225, 2227, 2236, 2236, 2227, 2225, 2236, 2234, 2225, 2225, 2234, 2236, 2229, 2238, 2236, 2236, 2238, 2229, 2236, 2227, 2229, 2229, 2227, 2236, 2239, 2237, 2236, 2236, 2237, 2239, 2236, 2238, 2239, 2239, 2238, 2236, 2240, 2241, 2242, 2242, 2241, 2240, 2242, 2243, 2240, 2240, 2243, 2242, 2230, 2233, 2242, 2242, 2233, 2230, 2242, 2241, 2230, 2230, 2241, 2242, 2235, 2244, 2242, 2242, 2244, 2235, 2242, 2233, 2235, 2235, 2233, 2242, 2245, 2243, 2242, 2242, 2243, 2245, 2242, 2244, 2245, 2245, 2244, 2242, 2245, 2244, 2246, 2246, 2244, 2245, 2246, 2247, 2245, 2245, 2247, 2246, 2235, 2237, 2246, 2246, 2237, 2235, 2246, 2244, 2235, 2235, 2244, 2246, 2239, 2248, 2246, 2246, 2248, 2239, 2246, 2237, 2239, 2239, 2237, 2246, 2249, 2247, 2246, 2246, 2247, 2249, 2246, 2248, 2249, 2249, 2248, 2246, 2250, 2251, 2252, 2252, 2251, 2250, 2252, 2253, 2250, 2250, 2253, 2252, 2254, 2255, 2252, 2252, 2255, 2254, 2252, 2251, 2254, 2254, 2251, 2252, 2256, 2257, 2252, 2252, 2257, 2256, 2252, 2255, 2256, 2256, 2255, 2252, 2258, 2253, 2252, 2252, 2253, 2258, 2252, 2257, 2258, 2258, 2257, 2252, 2258, 2257, 2259, 2259, 2257, 2258, 2259, 2260, 2258, 2258, 2260, 2259, 2256, 2261, 2259, 2259, 2261, 2256, 2259, 2257, 2256, 2256, 2257, 2259, 2262, 2263, 2259, 2259, 2263, 2262, 2259, 2261, 2262, 2262, 2261, 2259, 2264, 2260, 2259, 2259, 2260, 2264, 2259, 2263, 2264, 2264, 2263, 2259, 2265, 2266, 2267, 2267, 2266, 2265, 2267, 2268, 2265, 2265, 2268, 2267, 2250, 2253, 2267, 2267, 2253, 2250, 2267, 2266, 2250, 2250, 2266, 2267, 2258, 2269, 2267, 2267, 2269, 2258, 2267, 2253, 2258, 2258, 2253, 2267, 2270, 2268, 2267, 2267, 2268, 2270, 2267, 2269, 2270, 2270, 2269, 2267, 2270, 2269, 2271, 2271, 2269, 2270, 2271, 2272, 2270, 2270, 2272, 2271, 2258, 2260, 2271, 2271, 2260, 2258, 2271, 2269, 2258, 2258, 2269, 2271, 2264, 2273, 2271, 2271, 2273, 2264, 2271, 2260, 2264, 2264, 2260, 2271, 2274, 2272, 2271, 2271, 2272, 2274, 2271, 2273, 2274, 2274, 2273, 2271, 2275, 2276, 2277, 2277, 2276, 2275, 2277, 2278, 2275, 2275, 2278, 2277, 2265, 2268, 2277, 2277, 2268, 2265, 2277, 2276, 2265, 2265, 2276, 2277, 2270, 2279, 2277, 2277, 2279, 2270, 2277, 2268, 2270, 2270, 2268, 2277, 2280, 2278, 2277, 2277, 2278, 2280, 2277, 2279, 2280, 2280, 2279, 2277, 2280, 2279, 2281, 2281, 2279, 2280, 2281, 2282, 2280, 2280, 2282, 2281, 2270, 2272, 2281, 2281, 2272, 2270, 2281, 2279, 2270, 2270, 2279, 2281, 2274, 2283, 2281, 2281, 2283, 2274, 2281, 2272, 2274, 2274, 2272, 2281, 2284, 2282, 2281, 2281, 2282, 2284, 2281, 2283, 2284, 2284, 2283, 2281, 2285, 2286, 2287, 2287, 2286, 2285, 2287, 2288, 2285, 2285, 2288, 2287, 2275, 2278, 2287, 2287, 2278, 2275, 2287, 2286, 2275, 2275, 2286, 2287, 2280, 2289, 2287, 2287, 2289, 2280, 2287, 2278, 2280, 2280, 2278, 2287, 2290, 2288, 2287, 2287, 2288, 2290, 2287, 2289, 2290, 2290, 2289, 2287, 2290, 2289, 2291, 2291, 2289, 2290, 2291, 2292, 2290, 2290, 2292, 2291, 2280, 2282, 2291, 2291, 2282, 2280, 2291, 2289, 2280, 2280, 2289, 2291, 2284, 2293, 2291, 2291, 2293, 2284, 2291, 2282, 2284, 2284, 2282, 2291, 2294, 2292, 2291, 2291, 2292, 2294, 2291, 2293, 2294, 2294, 2293, 2291, 2295, 2296, 2297, 2297, 2296, 2295, 2297, 2298, 2295, 2295, 2298, 2297, 2285, 2288, 2297, 2297, 2288, 2285, 2297, 2296, 2285, 2285, 2296, 2297, 2290, 2299, 2297, 2297, 2299, 2290, 2297, 2288, 2290, 2290, 2288, 2297, 2300, 2298, 2297, 2297, 2298, 2300, 2297, 2299, 2300, 2300, 2299, 2297, 2300, 2299, 2301, 2301, 2299, 2300, 2301, 2302, 2300, 2300, 2302, 2301, 2290, 2292, 2301, 2301, 2292, 2290, 2301, 2299, 2290, 2290, 2299, 2301, 2294, 2303, 2301, 2301, 2303, 2294, 2301, 2292, 2294, 2294, 2292, 2301, 2304, 2302, 2301, 2301, 2302, 2304, 2301, 2303, 2304, 2304, 2303, 2301, 2305, 2306, 2307, 2307, 2306, 2305, 2307, 2308, 2305, 2305, 2308, 2307, 2295, 2298, 2307, 2307, 2298, 2295, 2307, 2306, 2295, 2295, 2306, 2307, 2300, 2309, 2307, 2307, 2309, 2300, 2307, 2298, 2300, 2300, 2298, 2307, 2310, 2308, 2307, 2307, 2308, 2310, 2307, 2309, 2310, 2310, 2309, 2307, 2310, 2309, 2311, 2311, 2309, 2310, 2311, 2312, 2310, 2310, 2312, 2311, 2300, 2302, 2311, 2311, 2302, 2300, 2311, 2309, 2300, 2300, 2309, 2311, 2304, 2313, 2311, 2311, 2313, 2304, 2311, 2302, 2304, 2304, 2302, 2311, 2314, 2312, 2311, 2311, 2312, 2314, 2311, 2313, 2314, 2314, 2313, 2311, 2315, 2316, 2317, 2317, 2316, 2315, 2317, 2318, 2315, 2315, 2318, 2317, 2305, 2308, 2317, 2317, 2308, 2305, 2317, 2316, 2305, 2305, 2316, 2317, 2310, 2319, 2317, 2317, 2319, 2310, 2317, 2308, 2310, 2310, 2308, 2317, 2320, 2318, 2317, 2317, 2318, 2320, 2317, 2319, 2320, 2320, 2319, 2317, 2320, 2319, 2321, 2321, 2319, 2320, 2321, 2322, 2320, 2320, 2322, 2321, 2310, 2312, 2321, 2321, 2312, 2310, 2321, 2319, 2310, 2310, 2319, 2321, 2314, 2323, 2321, 2321, 2323, 2314, 2321, 2312, 2314, 2314, 2312, 2321, 2324, 2322, 2321, 2321, 2322, 2324, 2321, 2323, 2324, 2324, 2323, 2321, 2325, 2326, 2327, 2327, 2326, 2325, 2327, 2328, 2325, 2325, 2328, 2327, 2315, 2318, 2327, 2327, 2318, 2315, 2327, 2326, 2315, 2315, 2326, 2327, 2320, 2329, 2327, 2327, 2329, 2320, 2327, 2318, 2320, 2320, 2318, 2327, 2330, 2328, 2327, 2327, 2328, 2330, 2327, 2329, 2330, 2330, 2329, 2327, 2330, 2329, 2331, 2331, 2329, 2330, 2331, 2332, 2330, 2330, 2332, 2331, 2320, 2322, 2331, 2331, 2322, 2320, 2331, 2329, 2320, 2320, 2329, 2331, 2324, 2333, 2331, 2331, 2333, 2324, 2331, 2322, 2324, 2324, 2322, 2331, 2334, 2332, 2331, 2331, 2332, 2334, 2331, 2333, 2334, 2334, 2333, 2331, 2335, 2336, 2337, 2337, 2336, 2335, 2337, 2338, 2335, 2335, 2338, 2337, 2325, 2328, 2337, 2337, 2328, 2325, 2337, 2336, 2325, 2325, 2336, 2337, 2330, 2339, 2337, 2337, 2339, 2330, 2337, 2328, 2330, 2330, 2328, 2337, 2340, 2338, 2337, 2337, 2338, 2340, 2337, 2339, 2340, 2340, 2339, 2337, 2340, 2339, 2341, 2341, 2339, 2340, 2341, 2342, 2340, 2340, 2342, 2341, 2330, 2332, 2341, 2341, 2332, 2330, 2341, 2339, 2330, 2330, 2339, 2341, 2334, 2343, 2341, 2341, 2343, 2334, 2341, 2332, 2334, 2334, 2332, 2341, 2344, 2342, 2341, 2341, 2342, 2344, 2341, 2343, 2344, 2344, 2343, 2341, 2345, 2346, 2347, 2347, 2346, 2345, 2347, 2348, 2345, 2345, 2348, 2347, 2335, 2338, 2347, 2347, 2338, 2335, 2347, 2346, 2335, 2335, 2346, 2347, 2340, 2349, 2347, 2347, 2349, 2340, 2347, 2338, 2340, 2340, 2338, 2347, 2350, 2348, 2347, 2347, 2348, 2350, 2347, 2349, 2350, 2350, 2349, 2347, 2350, 2349, 2351, 2351, 2349, 2350, 2351, 2352, 2350, 2350, 2352, 2351, 2340, 2342, 2351, 2351, 2342, 2340, 2351, 2349, 2340, 2340, 2349, 2351, 2344, 2353, 2351, 2351, 2353, 2344, 2351, 2342, 2344, 2344, 2342, 2351, 2354, 2352, 2351, 2351, 2352, 2354, 2351, 2353, 2354, 2354, 2353, 2351, 2355, 2356, 2357, 2357, 2356, 2355, 2357, 2358, 2355, 2355, 2358, 2357, 2345, 2348, 2357, 2357, 2348, 2345, 2357, 2356, 2345, 2345, 2356, 2357, 2350, 2359, 2357, 2357, 2359, 2350, 2357, 2348, 2350, 2350, 2348, 2357, 2360, 2358, 2357, 2357, 2358, 2360, 2357, 2359, 2360, 2360, 2359, 2357, 2360, 2359, 2361, 2361, 2359, 2360, 2361, 2362, 2360, 2360, 2362, 2361, 2350, 2352, 2361, 2361, 2352, 2350, 2361, 2359, 2350, 2350, 2359, 2361, 2354, 2363, 2361, 2361, 2363, 2354, 2361, 2352, 2354, 2354, 2352, 2361, 2364, 2362, 2361, 2361, 2362, 2364, 2361, 2363, 2364, 2364, 2363, 2361, 2365, 2366, 2367, 2367, 2366, 2365, 2367, 2368, 2365, 2365, 2368, 2367, 2355, 2358, 2367, 2367, 2358, 2355, 2367, 2366, 2355, 2355, 2366, 2367, 2360, 2369, 2367, 2367, 2369, 2360, 2367, 2358, 2360, 2360, 2358, 2367, 2370, 2368, 2367, 2367, 2368, 2370, 2367, 2369, 2370, 2370, 2369, 2367, 2370, 2369, 2371, 2371, 2369, 2370, 2371, 2372, 2370, 2370, 2372, 2371, 2360, 2362, 2371, 2371, 2362, 2360, 2371, 2369, 2360, 2360, 2369, 2371, 2364, 2373, 2371, 2371, 2373, 2364, 2371, 2362, 2364, 2364, 2362, 2371, 2374, 2372, 2371, 2371, 2372, 2374, 2371, 2373, 2374, 2374, 2373, 2371, 2375, 2376, 2377, 2377, 2376, 2375, 2377, 2378, 2375, 2375, 2378, 2377, 2379, 2380, 2377, 2377, 2380, 2379, 2377, 2376, 2379, 2379, 2376, 2377, 2381, 2382, 2377, 2377, 2382, 2381, 2377, 2380, 2381, 2381, 2380, 2377, 2383, 2378, 2377, 2377, 2378, 2383, 2377, 2382, 2383, 2383, 2382, 2377, 2383, 2382, 2384, 2384, 2382, 2383, 2384, 2385, 2383, 2383, 2385, 2384, 2381, 2386, 2384, 2384, 2386, 2381, 2384, 2382, 2381, 2381, 2382, 2384, 2387, 2388, 2384, 2384, 2388, 2387, 2384, 2386, 2387, 2387, 2386, 2384, 2389, 2385, 2384, 2384, 2385, 2389, 2384, 2388, 2389, 2389, 2388, 2384, 2390, 2391, 2392, 2392, 2391, 2390, 2392, 2393, 2390, 2390, 2393, 2392, 2375, 2378, 2392, 2392, 2378, 2375, 2392, 2391, 2375, 2375, 2391, 2392, 2383, 2394, 2392, 2392, 2394, 2383, 2392, 2378, 2383, 2383, 2378, 2392, 2395, 2393, 2392, 2392, 2393, 2395, 2392, 2394, 2395, 2395, 2394, 2392, 2395, 2394, 2396, 2396, 2394, 2395, 2396, 2397, 2395, 2395, 2397, 2396, 2383, 2385, 2396, 2396, 2385, 2383, 2396, 2394, 2383, 2383, 2394, 2396, 2389, 2398, 2396, 2396, 2398, 2389, 2396, 2385, 2389, 2389, 2385, 2396, 2399, 2397, 2396, 2396, 2397, 2399, 2396, 2398, 2399, 2399, 2398, 2396, 2400, 2401, 2402, 2402, 2401, 2400, 2402, 2403, 2400, 2400, 2403, 2402, 2390, 2393, 2402, 2402, 2393, 2390, 2402, 2401, 2390, 2390, 2401, 2402, 2395, 2404, 2402, 2402, 2404, 2395, 2402, 2393, 2395, 2395, 2393, 2402, 2405, 2403, 2402, 2402, 2403, 2405, 2402, 2404, 2405, 2405, 2404, 2402, 2405, 2404, 2406, 2406, 2404, 2405, 2406, 2407, 2405, 2405, 2407, 2406, 2395, 2397, 2406, 2406, 2397, 2395, 2406, 2404, 2395, 2395, 2404, 2406, 2399, 2408, 2406, 2406, 2408, 2399, 2406, 2397, 2399, 2399, 2397, 2406, 2409, 2407, 2406, 2406, 2407, 2409, 2406, 2408, 2409, 2409, 2408, 2406, 2410, 2411, 2412, 2412, 2411, 2410, 2412, 2413, 2410, 2410, 2413, 2412, 2400, 2403, 2412, 2412, 2403, 2400, 2412, 2411, 2400, 2400, 2411, 2412, 2405, 2414, 2412, 2412, 2414, 2405, 2412, 2403, 2405, 2405, 2403, 2412, 2415, 2413, 2412, 2412, 2413, 2415, 2412, 2414, 2415, 2415, 2414, 2412, 2415, 2414, 2416, 2416, 2414, 2415, 2416, 2417, 2415, 2415, 2417, 2416, 2405, 2407, 2416, 2416, 2407, 2405, 2416, 2414, 2405, 2405, 2414, 2416, 2409, 2418, 2416, 2416, 2418, 2409, 2416, 2407, 2409, 2409, 2407, 2416, 2419, 2417, 2416, 2416, 2417, 2419, 2416, 2418, 2419, 2419, 2418, 2416, 2420, 2421, 2422, 2422, 2421, 2420, 2422, 2423, 2420, 2420, 2423, 2422, 2410, 2413, 2422, 2422, 2413, 2410, 2422, 2421, 2410, 2410, 2421, 2422, 2415, 2424, 2422, 2422, 2424, 2415, 2422, 2413, 2415, 2415, 2413, 2422, 2425, 2423, 2422, 2422, 2423, 2425, 2422, 2424, 2425, 2425, 2424, 2422, 2425, 2424, 2426, 2426, 2424, 2425, 2426, 2427, 2425, 2425, 2427, 2426, 2415, 2417, 2426, 2426, 2417, 2415, 2426, 2424, 2415, 2415, 2424, 2426, 2419, 2428, 2426, 2426, 2428, 2419, 2426, 2417, 2419, 2419, 2417, 2426, 2429, 2427, 2426, 2426, 2427, 2429, 2426, 2428, 2429, 2429, 2428, 2426, 2430, 2431, 2432, 2432, 2431, 2430, 2432, 2433, 2430, 2430, 2433, 2432, 2420, 2423, 2432, 2432, 2423, 2420, 2432, 2431, 2420, 2420, 2431, 2432, 2425, 2434, 2432, 2432, 2434, 2425, 2432, 2423, 2425, 2425, 2423, 2432, 2435, 2433, 2432, 2432, 2433, 2435, 2432, 2434, 2435, 2435, 2434, 2432, 2435, 2434, 2436, 2436, 2434, 2435, 2436, 2437, 2435, 2435, 2437, 2436, 2425, 2427, 2436, 2436, 2427, 2425, 2436, 2434, 2425, 2425, 2434, 2436, 2429, 2438, 2436, 2436, 2438, 2429, 2436, 2427, 2429, 2429, 2427, 2436, 2439, 2437, 2436, 2436, 2437, 2439, 2436, 2438, 2439, 2439, 2438, 2436, 2440, 2441, 2442, 2442, 2441, 2440, 2442, 2443, 2440, 2440, 2443, 2442, 2430, 2433, 2442, 2442, 2433, 2430, 2442, 2441, 2430, 2430, 2441, 2442, 2435, 2444, 2442, 2442, 2444, 2435, 2442, 2433, 2435, 2435, 2433, 2442, 2445, 2443, 2442, 2442, 2443, 2445, 2442, 2444, 2445, 2445, 2444, 2442, 2445, 2444, 2446, 2446, 2444, 2445, 2446, 2447, 2445, 2445, 2447, 2446, 2435, 2437, 2446, 2446, 2437, 2435, 2446, 2444, 2435, 2435, 2444, 2446, 2439, 2448, 2446, 2446, 2448, 2439, 2446, 2437, 2439, 2439, 2437, 2446, 2449, 2447, 2446, 2446, 2447, 2449, 2446, 2448, 2449, 2449, 2448, 2446, 2450, 2451, 2452, 2452, 2451, 2450, 2452, 2453, 2450, 2450, 2453, 2452, 2440, 2443, 2452, 2452, 2443, 2440, 2452, 2451, 2440, 2440, 2451, 2452, 2445, 2454, 2452, 2452, 2454, 2445, 2452, 2443, 2445, 2445, 2443, 2452, 2455, 2453, 2452, 2452, 2453, 2455, 2452, 2454, 2455, 2455, 2454, 2452, 2455, 2454, 2456, 2456, 2454, 2455, 2456, 2457, 2455, 2455, 2457, 2456, 2445, 2447, 2456, 2456, 2447, 2445, 2456, 2454, 2445, 2445, 2454, 2456, 2449, 2458, 2456, 2456, 2458, 2449, 2456, 2447, 2449, 2449, 2447, 2456, 2459, 2457, 2456, 2456, 2457, 2459, 2456, 2458, 2459, 2459, 2458, 2456, 2460, 2461, 2462, 2462, 2461, 2460, 2462, 2463, 2460, 2460, 2463, 2462, 2450, 2453, 2462, 2462, 2453, 2450, 2462, 2461, 2450, 2450, 2461, 2462, 2455, 2464, 2462, 2462, 2464, 2455, 2462, 2453, 2455, 2455, 2453, 2462, 2465, 2463, 2462, 2462, 2463, 2465, 2462, 2464, 2465, 2465, 2464, 2462, 2465, 2464, 2466, 2466, 2464, 2465, 2466, 2467, 2465, 2465, 2467, 2466, 2455, 2457, 2466, 2466, 2457, 2455, 2466, 2464, 2455, 2455, 2464, 2466, 2459, 2468, 2466, 2466, 2468, 2459, 2466, 2457, 2459, 2459, 2457, 2466, 2469, 2467, 2466, 2466, 2467, 2469, 2466, 2468, 2469, 2469, 2468, 2466, 2470, 2471, 2472, 2472, 2471, 2470, 2472, 2473, 2470, 2470, 2473, 2472, 2460, 2463, 2472, 2472, 2463, 2460, 2472, 2471, 2460, 2460, 2471, 2472, 2465, 2474, 2472, 2472, 2474, 2465, 2472, 2463, 2465, 2465, 2463, 2472, 2475, 2473, 2472, 2472, 2473, 2475, 2472, 2474, 2475, 2475, 2474, 2472, 2475, 2474, 2476, 2476, 2474, 2475, 2476, 2477, 2475, 2475, 2477, 2476, 2465, 2467, 2476, 2476, 2467, 2465, 2476, 2474, 2465, 2465, 2474, 2476, 2469, 2478, 2476, 2476, 2478, 2469, 2476, 2467, 2469, 2469, 2467, 2476, 2479, 2477, 2476, 2476, 2477, 2479, 2476, 2478, 2479, 2479, 2478, 2476, 2480, 2481, 2482, 2482, 2481, 2480, 2482, 2483, 2480, 2480, 2483, 2482, 2470, 2473, 2482, 2482, 2473, 2470, 2482, 2481, 2470, 2470, 2481, 2482, 2475, 2484, 2482, 2482, 2484, 2475, 2482, 2473, 2475, 2475, 2473, 2482, 2485, 2483, 2482, 2482, 2483, 2485, 2482, 2484, 2485, 2485, 2484, 2482, 2485, 2484, 2486, 2486, 2484, 2485, 2486, 2487, 2485, 2485, 2487, 2486, 2475, 2477, 2486, 2486, 2477, 2475, 2486, 2484, 2475, 2475, 2484, 2486, 2479, 2488, 2486, 2486, 2488, 2479, 2486, 2477, 2479, 2479, 2477, 2486, 2489, 2487, 2486, 2486, 2487, 2489, 2486, 2488, 2489, 2489, 2488, 2486, 2490, 2491, 2492, 2492, 2491, 2490, 2492, 2493, 2490, 2490, 2493, 2492, 2480, 2483, 2492, 2492, 2483, 2480, 2492, 2491, 2480, 2480, 2491, 2492, 2485, 2494, 2492, 2492, 2494, 2485, 2492, 2483, 2485, 2485, 2483, 2492, 2495, 2493, 2492, 2492, 2493, 2495, 2492, 2494, 2495, 2495, 2494, 2492, 2495, 2494, 2496, 2496, 2494, 2495, 2496, 2497, 2495, 2495, 2497, 2496, 2485, 2487, 2496, 2496, 2487, 2485, 2496, 2494, 2485, 2485, 2494, 2496, 2489, 2498, 2496, 2496, 2498, 2489, 2496, 2487, 2489, 2489, 2487, 2496, 2499, 2497, 2496, 2496, 2497, 2499, 2496, 2498, 2499, 2499, 2498, 2496, 2500, 2501, 2502, 2502, 2501, 2500, 2502, 2503, 2500, 2500, 2503, 2502, 2504, 2505, 2502, 2502, 2505, 2504, 2502, 2501, 2504, 2504, 2501, 2502, 2506, 2507, 2502, 2502, 2507, 2506, 2502, 2505, 2506, 2506, 2505, 2502, 2508, 2503, 2502, 2502, 2503, 2508, 2502, 2507, 2508, 2508, 2507, 2502, 2508, 2507, 2509, 2509, 2507, 2508, 2509, 2510, 2508, 2508, 2510, 2509, 2506, 2511, 2509, 2509, 2511, 2506, 2509, 2507, 2506, 2506, 2507, 2509, 2512, 2513, 2509, 2509, 2513, 2512, 2509, 2511, 2512, 2512, 2511, 2509, 2514, 2510, 2509, 2509, 2510, 2514, 2509, 2513, 2514, 2514, 2513, 2509, 2515, 2516, 2517, 2517, 2516, 2515, 2517, 2518, 2515, 2515, 2518, 2517, 2500, 2503, 2517, 2517, 2503, 2500, 2517, 2516, 2500, 2500, 2516, 2517, 2508, 2519, 2517, 2517, 2519, 2508, 2517, 2503, 2508, 2508, 2503, 2517, 2520, 2518, 2517, 2517, 2518, 2520, 2517, 2519, 2520, 2520, 2519, 2517, 2520, 2519, 2521, 2521, 2519, 2520, 2521, 2522, 2520, 2520, 2522, 2521, 2508, 2510, 2521, 2521, 2510, 2508, 2521, 2519, 2508, 2508, 2519, 2521, 2514, 2523, 2521, 2521, 2523, 2514, 2521, 2510, 2514, 2514, 2510, 2521, 2524, 2522, 2521, 2521, 2522, 2524, 2521, 2523, 2524, 2524, 2523, 2521, 2525, 2526, 2527, 2527, 2526, 2525, 2527, 2528, 2525, 2525, 2528, 2527, 2515, 2518, 2527, 2527, 2518, 2515, 2527, 2526, 2515, 2515, 2526, 2527, 2520, 2529, 2527, 2527, 2529, 2520, 2527, 2518, 2520, 2520, 2518, 2527, 2530, 2528, 2527, 2527, 2528, 2530, 2527, 2529, 2530, 2530, 2529, 2527, 2530, 2529, 2531, 2531, 2529, 2530, 2531, 2532, 2530, 2530, 2532, 2531, 2520, 2522, 2531, 2531, 2522, 2520, 2531, 2529, 2520, 2520, 2529, 2531, 2524, 2533, 2531, 2531, 2533, 2524, 2531, 2522, 2524, 2524, 2522, 2531, 2534, 2532, 2531, 2531, 2532, 2534, 2531, 2533, 2534, 2534, 2533, 2531, 2535, 2536, 2537, 2537, 2536, 2535, 2537, 2538, 2535, 2535, 2538, 2537, 2525, 2528, 2537, 2537, 2528, 2525, 2537, 2536, 2525, 2525, 2536, 2537, 2530, 2539, 2537, 2537, 2539, 2530, 2537, 2528, 2530, 2530, 2528, 2537, 2540, 2538, 2537, 2537, 2538, 2540, 2537, 2539, 2540, 2540, 2539, 2537, 2540, 2539, 2541, 2541, 2539, 2540, 2541, 2542, 2540, 2540, 2542, 2541, 2530, 2532, 2541, 2541, 2532, 2530, 2541, 2539, 2530, 2530, 2539, 2541, 2534, 2543, 2541, 2541, 2543, 2534, 2541, 2532, 2534, 2534, 2532, 2541, 2544, 2542, 2541, 2541, 2542, 2544, 2541, 2543, 2544, 2544, 2543, 2541, 2545, 2546, 2547, 2547, 2546, 2545, 2547, 2548, 2545, 2545, 2548, 2547, 2535, 2538, 2547, 2547, 2538, 2535, 2547, 2546, 2535, 2535, 2546, 2547, 2540, 2549, 2547, 2547, 2549, 2540, 2547, 2538, 2540, 2540, 2538, 2547, 2550, 2548, 2547, 2547, 2548, 2550, 2547, 2549, 2550, 2550, 2549, 2547, 2550, 2549, 2551, 2551, 2549, 2550, 2551, 2552, 2550, 2550, 2552, 2551, 2540, 2542, 2551, 2551, 2542, 2540, 2551, 2549, 2540, 2540, 2549, 2551, 2544, 2553, 2551, 2551, 2553, 2544, 2551, 2542, 2544, 2544, 2542, 2551, 2554, 2552, 2551, 2551, 2552, 2554, 2551, 2553, 2554, 2554, 2553, 2551, 2555, 2556, 2557, 2557, 2556, 2555, 2557, 2558, 2555, 2555, 2558, 2557, 2545, 2548, 2557, 2557, 2548, 2545, 2557, 2556, 2545, 2545, 2556, 2557, 2550, 2559, 2557, 2557, 2559, 2550, 2557, 2548, 2550, 2550, 2548, 2557, 2560, 2558, 2557, 2557, 2558, 2560, 2557, 2559, 2560, 2560, 2559, 2557, 2560, 2559, 2561, 2561, 2559, 2560, 2561, 2562, 2560, 2560, 2562, 2561, 2550, 2552, 2561, 2561, 2552, 2550, 2561, 2559, 2550, 2550, 2559, 2561, 2554, 2563, 2561, 2561, 2563, 2554, 2561, 2552, 2554, 2554, 2552, 2561, 2564, 2562, 2561, 2561, 2562, 2564, 2561, 2563, 2564, 2564, 2563, 2561, 2565, 2566, 2567, 2567, 2566, 2565, 2567, 2568, 2565, 2565, 2568, 2567, 2555, 2558, 2567, 2567, 2558, 2555, 2567, 2566, 2555, 2555, 2566, 2567, 2560, 2569, 2567, 2567, 2569, 2560, 2567, 2558, 2560, 2560, 2558, 2567, 2570, 2568, 2567, 2567, 2568, 2570, 2567, 2569, 2570, 2570, 2569, 2567, 2570, 2569, 2571, 2571, 2569, 2570, 2571, 2572, 2570, 2570, 2572, 2571, 2560, 2562, 2571, 2571, 2562, 2560, 2571, 2569, 2560, 2560, 2569, 2571, 2564, 2573, 2571, 2571, 2573, 2564, 2571, 2562, 2564, 2564, 2562, 2571, 2574, 2572, 2571, 2571, 2572, 2574, 2571, 2573, 2574, 2574, 2573, 2571, 2575, 2576, 2577, 2577, 2576, 2575, 2577, 2578, 2575, 2575, 2578, 2577, 2565, 2568, 2577, 2577, 2568, 2565, 2577, 2576, 2565, 2565, 2576, 2577, 2570, 2579, 2577, 2577, 2579, 2570, 2577, 2568, 2570, 2570, 2568, 2577, 2580, 2578, 2577, 2577, 2578, 2580, 2577, 2579, 2580, 2580, 2579, 2577, 2580, 2579, 2581, 2581, 2579, 2580, 2581, 2582, 2580, 2580, 2582, 2581, 2570, 2572, 2581, 2581, 2572, 2570, 2581, 2579, 2570, 2570, 2579, 2581, 2574, 2583, 2581, 2581, 2583, 2574, 2581, 2572, 2574, 2574, 2572, 2581, 2584, 2582, 2581, 2581, 2582, 2584, 2581, 2583, 2584, 2584, 2583, 2581, 2585, 2586, 2587, 2587, 2586, 2585, 2587, 2588, 2585, 2585, 2588, 2587, 2575, 2578, 2587, 2587, 2578, 2575, 2587, 2586, 2575, 2575, 2586, 2587, 2580, 2589, 2587, 2587, 2589, 2580, 2587, 2578, 2580, 2580, 2578, 2587, 2590, 2588, 2587, 2587, 2588, 2590, 2587, 2589, 2590, 2590, 2589, 2587, 2590, 2589, 2591, 2591, 2589, 2590, 2591, 2592, 2590, 2590, 2592, 2591, 2580, 2582, 2591, 2591, 2582, 2580, 2591, 2589, 2580, 2580, 2589, 2591, 2584, 2593, 2591, 2591, 2593, 2584, 2591, 2582, 2584, 2584, 2582, 2591, 2594, 2592, 2591, 2591, 2592, 2594, 2591, 2593, 2594, 2594, 2593, 2591, 2595, 2596, 2597, 2597, 2596, 2595, 2597, 2598, 2595, 2595, 2598, 2597, 2585, 2588, 2597, 2597, 2588, 2585, 2597, 2596, 2585, 2585, 2596, 2597, 2590, 2599, 2597, 2597, 2599, 2590, 2597, 2588, 2590, 2590, 2588, 2597, 2600, 2598, 2597, 2597, 2598, 2600, 2597, 2599, 2600, 2600, 2599, 2597, 2600, 2599, 2601, 2601, 2599, 2600, 2601, 2602, 2600, 2600, 2602, 2601, 2590, 2592, 2601, 2601, 2592, 2590, 2601, 2599, 2590, 2590, 2599, 2601, 2594, 2603, 2601, 2601, 2603, 2594, 2601, 2592, 2594, 2594, 2592, 2601, 2604, 2602, 2601, 2601, 2602, 2604, 2601, 2603, 2604, 2604, 2603, 2601, 2605, 2606, 2607, 2607, 2606, 2605, 2607, 2608, 2605, 2605, 2608, 2607, 2595, 2598, 2607, 2607, 2598, 2595, 2607, 2606, 2595, 2595, 2606, 2607, 2600, 2609, 2607, 2607, 2609, 2600, 2607, 2598, 2600, 2600, 2598, 2607, 2610, 2608, 2607, 2607, 2608, 2610, 2607, 2609, 2610, 2610, 2609, 2607, 2610, 2609, 2611, 2611, 2609, 2610, 2611, 2612, 2610, 2610, 2612, 2611, 2600, 2602, 2611, 2611, 2602, 2600, 2611, 2609, 2600, 2600, 2609, 2611, 2604, 2613, 2611, 2611, 2613, 2604, 2611, 2602, 2604, 2604, 2602, 2611, 2614, 2612, 2611, 2611, 2612, 2614, 2611, 2613, 2614, 2614, 2613, 2611, 2615, 2616, 2617, 2617, 2616, 2615, 2617, 2618, 2615, 2615, 2618, 2617, 2605, 2608, 2617, 2617, 2608, 2605, 2617, 2616, 2605, 2605, 2616, 2617, 2610, 2619, 2617, 2617, 2619, 2610, 2617, 2608, 2610, 2610, 2608, 2617, 2620, 2618, 2617, 2617, 2618, 2620, 2617, 2619, 2620, 2620, 2619, 2617, 2620, 2619, 2621, 2621, 2619, 2620, 2621, 2622, 2620, 2620, 2622, 2621, 2610, 2612, 2621, 2621, 2612, 2610, 2621, 2619, 2610, 2610, 2619, 2621, 2614, 2623, 2621, 2621, 2623, 2614, 2621, 2612, 2614, 2614, 2612, 2621, 2624, 2622, 2621, 2621, 2622, 2624, 2621, 2623, 2624, 2624, 2623, 2621, 2625, 2626, 2627, 2627, 2626, 2625, 2627, 2628, 2625, 2625, 2628, 2627, 2629, 2630, 2627, 2627, 2630, 2629, 2627, 2626, 2629, 2629, 2626, 2627, 2631, 2632, 2627, 2627, 2632, 2631, 2627, 2630, 2631, 2631, 2630, 2627, 2633, 2628, 2627, 2627, 2628, 2633, 2627, 2632, 2633, 2633, 2632, 2627, 2633, 2632, 2634, 2634, 2632, 2633, 2634, 2635, 2633, 2633, 2635, 2634, 2631, 2636, 2634, 2634, 2636, 2631, 2634, 2632, 2631, 2631, 2632, 2634, 2637, 2638, 2634, 2634, 2638, 2637, 2634, 2636, 2637, 2637, 2636, 2634, 2639, 2635, 2634, 2634, 2635, 2639, 2634, 2638, 2639, 2639, 2638, 2634, 2640, 2641, 2642, 2642, 2641, 2640, 2642, 2643, 2640, 2640, 2643, 2642, 2625, 2628, 2642, 2642, 2628, 2625, 2642, 2641, 2625, 2625, 2641, 2642, 2633, 2644, 2642, 2642, 2644, 2633, 2642, 2628, 2633, 2633, 2628, 2642, 2645, 2643, 2642, 2642, 2643, 2645, 2642, 2644, 2645, 2645, 2644, 2642, 2645, 2644, 2646, 2646, 2644, 2645, 2646, 2647, 2645, 2645, 2647, 2646, 2633, 2635, 2646, 2646, 2635, 2633, 2646, 2644, 2633, 2633, 2644, 2646, 2639, 2648, 2646, 2646, 2648, 2639, 2646, 2635, 2639, 2639, 2635, 2646, 2649, 2647, 2646, 2646, 2647, 2649, 2646, 2648, 2649, 2649, 2648, 2646, 2650, 2651, 2652, 2652, 2651, 2650, 2652, 2653, 2650, 2650, 2653, 2652, 2640, 2643, 2652, 2652, 2643, 2640, 2652, 2651, 2640, 2640, 2651, 2652, 2645, 2654, 2652, 2652, 2654, 2645, 2652, 2643, 2645, 2645, 2643, 2652, 2655, 2653, 2652, 2652, 2653, 2655, 2652, 2654, 2655, 2655, 2654, 2652, 2655, 2654, 2656, 2656, 2654, 2655, 2656, 2657, 2655, 2655, 2657, 2656, 2645, 2647, 2656, 2656, 2647, 2645, 2656, 2654, 2645, 2645, 2654, 2656, 2649, 2658, 2656, 2656, 2658, 2649, 2656, 2647, 2649, 2649, 2647, 2656, 2659, 2657, 2656, 2656, 2657, 2659, 2656, 2658, 2659, 2659, 2658, 2656, 2660, 2661, 2662, 2662, 2661, 2660, 2662, 2663, 2660, 2660, 2663, 2662, 2650, 2653, 2662, 2662, 2653, 2650, 2662, 2661, 2650, 2650, 2661, 2662, 2655, 2664, 2662, 2662, 2664, 2655, 2662, 2653, 2655, 2655, 2653, 2662, 2665, 2663, 2662, 2662, 2663, 2665, 2662, 2664, 2665, 2665, 2664, 2662, 2665, 2664, 2666, 2666, 2664, 2665, 2666, 2667, 2665, 2665, 2667, 2666, 2655, 2657, 2666, 2666, 2657, 2655, 2666, 2664, 2655, 2655, 2664, 2666, 2659, 2668, 2666, 2666, 2668, 2659, 2666, 2657, 2659, 2659, 2657, 2666, 2669, 2667, 2666, 2666, 2667, 2669, 2666, 2668, 2669, 2669, 2668, 2666, 2670, 2671, 2672, 2672, 2671, 2670, 2672, 2673, 2670, 2670, 2673, 2672, 2660, 2663, 2672, 2672, 2663, 2660, 2672, 2671, 2660, 2660, 2671, 2672, 2665, 2674, 2672, 2672, 2674, 2665, 2672, 2663, 2665, 2665, 2663, 2672, 2675, 2673, 2672, 2672, 2673, 2675, 2672, 2674, 2675, 2675, 2674, 2672, 2675, 2674, 2676, 2676, 2674, 2675, 2676, 2677, 2675, 2675, 2677, 2676, 2665, 2667, 2676, 2676, 2667, 2665, 2676, 2674, 2665, 2665, 2674, 2676, 2669, 2678, 2676, 2676, 2678, 2669, 2676, 2667, 2669, 2669, 2667, 2676, 2679, 2677, 2676, 2676, 2677, 2679, 2676, 2678, 2679, 2679, 2678, 2676, 2680, 2681, 2682, 2682, 2681, 2680, 2682, 2683, 2680, 2680, 2683, 2682, 2670, 2673, 2682, 2682, 2673, 2670, 2682, 2681, 2670, 2670, 2681, 2682, 2675, 2684, 2682, 2682, 2684, 2675, 2682, 2673, 2675, 2675, 2673, 2682, 2685, 2683, 2682, 2682, 2683, 2685, 2682, 2684, 2685, 2685, 2684, 2682, 2685, 2684, 2686, 2686, 2684, 2685, 2686, 2687, 2685, 2685, 2687, 2686, 2675, 2677, 2686, 2686, 2677, 2675, 2686, 2684, 2675, 2675, 2684, 2686, 2679, 2688, 2686, 2686, 2688, 2679, 2686, 2677, 2679, 2679, 2677, 2686, 2689, 2687, 2686, 2686, 2687, 2689, 2686, 2688, 2689, 2689, 2688, 2686, 2690, 2691, 2692, 2692, 2691, 2690, 2692, 2693, 2690, 2690, 2693, 2692, 2680, 2683, 2692, 2692, 2683, 2680, 2692, 2691, 2680, 2680, 2691, 2692, 2685, 2694, 2692, 2692, 2694, 2685, 2692, 2683, 2685, 2685, 2683, 2692, 2695, 2693, 2692, 2692, 2693, 2695, 2692, 2694, 2695, 2695, 2694, 2692, 2695, 2694, 2696, 2696, 2694, 2695, 2696, 2697, 2695, 2695, 2697, 2696, 2685, 2687, 2696, 2696, 2687, 2685, 2696, 2694, 2685, 2685, 2694, 2696, 2689, 2698, 2696, 2696, 2698, 2689, 2696, 2687, 2689, 2689, 2687, 2696, 2699, 2697, 2696, 2696, 2697, 2699, 2696, 2698, 2699, 2699, 2698, 2696, 2700, 2701, 2702, 2702, 2701, 2700, 2702, 2703, 2700, 2700, 2703, 2702, 2690, 2693, 2702, 2702, 2693, 2690, 2702, 2701, 2690, 2690, 2701, 2702, 2695, 2704, 2702, 2702, 2704, 2695, 2702, 2693, 2695, 2695, 2693, 2702, 2705, 2703, 2702, 2702, 2703, 2705, 2702, 2704, 2705, 2705, 2704, 2702, 2705, 2704, 2706, 2706, 2704, 2705, 2706, 2707, 2705, 2705, 2707, 2706, 2695, 2697, 2706, 2706, 2697, 2695, 2706, 2704, 2695, 2695, 2704, 2706, 2699, 2708, 2706, 2706, 2708, 2699, 2706, 2697, 2699, 2699, 2697, 2706, 2709, 2707, 2706, 2706, 2707, 2709, 2706, 2708, 2709, 2709, 2708, 2706, 2710, 2711, 2712, 2712, 2711, 2710, 2712, 2713, 2710, 2710, 2713, 2712, 2700, 2703, 2712, 2712, 2703, 2700, 2712, 2711, 2700, 2700, 2711, 2712, 2705, 2714, 2712, 2712, 2714, 2705, 2712, 2703, 2705, 2705, 2703, 2712, 2715, 2713, 2712, 2712, 2713, 2715, 2712, 2714, 2715, 2715, 2714, 2712, 2715, 2714, 2716, 2716, 2714, 2715, 2716, 2717, 2715, 2715, 2717, 2716, 2705, 2707, 2716, 2716, 2707, 2705, 2716, 2714, 2705, 2705, 2714, 2716, 2709, 2718, 2716, 2716, 2718, 2709, 2716, 2707, 2709, 2709, 2707, 2716, 2719, 2717, 2716, 2716, 2717, 2719, 2716, 2718, 2719, 2719, 2718, 2716, 2720, 2721, 2722, 2722, 2721, 2720, 2722, 2723, 2720, 2720, 2723, 2722, 2710, 2713, 2722, 2722, 2713, 2710, 2722, 2721, 2710, 2710, 2721, 2722, 2715, 2724, 2722, 2722, 2724, 2715, 2722, 2713, 2715, 2715, 2713, 2722, 2725, 2723, 2722, 2722, 2723, 2725, 2722, 2724, 2725, 2725, 2724, 2722, 2725, 2724, 2726, 2726, 2724, 2725, 2726, 2727, 2725, 2725, 2727, 2726, 2715, 2717, 2726, 2726, 2717, 2715, 2726, 2724, 2715, 2715, 2724, 2726, 2719, 2728, 2726, 2726, 2728, 2719, 2726, 2717, 2719, 2719, 2717, 2726, 2729, 2727, 2726, 2726, 2727, 2729, 2726, 2728, 2729, 2729, 2728, 2726, 2730, 2731, 2732, 2732, 2731, 2730, 2732, 2733, 2730, 2730, 2733, 2732, 2720, 2723, 2732, 2732, 2723, 2720, 2732, 2731, 2720, 2720, 2731, 2732, 2725, 2734, 2732, 2732, 2734, 2725, 2732, 2723, 2725, 2725, 2723, 2732, 2735, 2733, 2732, 2732, 2733, 2735, 2732, 2734, 2735, 2735, 2734, 2732, 2735, 2734, 2736, 2736, 2734, 2735, 2736, 2737, 2735, 2735, 2737, 2736, 2725, 2727, 2736, 2736, 2727, 2725, 2736, 2734, 2725, 2725, 2734, 2736, 2729, 2738, 2736, 2736, 2738, 2729, 2736, 2727, 2729, 2729, 2727, 2736, 2739, 2737, 2736, 2736, 2737, 2739, 2736, 2738, 2739, 2739, 2738, 2736, 2740, 2741, 2742, 2742, 2741, 2740, 2742, 2743, 2740, 2740, 2743, 2742, 2730, 2733, 2742, 2742, 2733, 2730, 2742, 2741, 2730, 2730, 2741, 2742, 2735, 2744, 2742, 2742, 2744, 2735, 2742, 2733, 2735, 2735, 2733, 2742, 2745, 2743, 2742, 2742, 2743, 2745, 2742, 2744, 2745, 2745, 2744, 2742, 2745, 2744, 2746, 2746, 2744, 2745, 2746, 2747, 2745, 2745, 2747, 2746, 2735, 2737, 2746, 2746, 2737, 2735, 2746, 2744, 2735, 2735, 2744, 2746, 2739, 2748, 2746, 2746, 2748, 2739, 2746, 2737, 2739, 2739, 2737, 2746, 2749, 2747, 2746, 2746, 2747, 2749, 2746, 2748, 2749, 2749, 2748, 2746, 2750, 2751, 2752, 2752, 2751, 2750, 2752, 2753, 2750, 2750, 2753, 2752, 2754, 2753, 2752, 2752, 2753, 2754, 2752, 2755, 2754, 2754, 2755, 2752, 2756, 2755, 2752, 2752, 2755, 2756, 2752, 2757, 2756, 2756, 2757, 2752, 2758, 2757, 2752, 2752, 2757, 2758, 2752, 2751, 2758, 2758, 2751, 2752, 2758, 2759, 2760, 2760, 2759, 2758, 2760, 2757, 2758, 2758, 2757, 2760, 2756, 2757, 2760, 2760, 2757, 2756, 2760, 2761, 2756, 2756, 2761, 2760, 2762, 2761, 2760, 2760, 2761, 2762, 2760, 2763, 2762, 2762, 2763, 2760, 2764, 2763, 2760, 2760, 2763, 2764, 2760, 2759, 2764, 2764, 2759, 2760, 2765, 2766, 2767, 2767, 2766, 2765, 2767, 2768, 2765, 2765, 2768, 2767, 2750, 2768, 2767, 2767, 2768, 2750, 2767, 2751, 2750, 2750, 2751, 2767, 2758, 2751, 2767, 2767, 2751, 2758, 2767, 2769, 2758, 2758, 2769, 2767, 2770, 2769, 2767, 2767, 2769, 2770, 2767, 2766, 2770, 2770, 2766, 2767, 2770, 2771, 2772, 2772, 2771, 2770, 2772, 2769, 2770, 2770, 2769, 2772, 2758, 2769, 2772, 2772, 2769, 2758, 2772, 2759, 2758, 2758, 2759, 2772, 2764, 2759, 2772, 2772, 2759, 2764, 2772, 2773, 2764, 2764, 2773, 2772, 2774, 2773, 2772, 2772, 2773, 2774, 2772, 2771, 2774, 2774, 2771, 2772, 2775, 2776, 2777, 2777, 2776, 2775, 2777, 2778, 2775, 2775, 2778, 2777, 2765, 2778, 2777, 2777, 2778, 2765, 2777, 2766, 2765, 2765, 2766, 2777, 2770, 2766, 2777, 2777, 2766, 2770, 2777, 2779, 2770, 2770, 2779, 2777, 2780, 2779, 2777, 2777, 2779, 2780, 2777, 2776, 2780, 2780, 2776, 2777, 2780, 2781, 2782, 2782, 2781, 2780, 2782, 2779, 2780, 2780, 2779, 2782, 2770, 2779, 2782, 2782, 2779, 2770, 2782, 2771, 2770, 2770, 2771, 2782, 2774, 2771, 2782, 2782, 2771, 2774, 2782, 2783, 2774, 2774, 2783, 2782, 2784, 2783, 2782, 2782, 2783, 2784, 2782, 2781, 2784, 2784, 2781, 2782, 2785, 2786, 2787, 2787, 2786, 2785, 2787, 2788, 2785, 2785, 2788, 2787, 2775, 2788, 2787, 2787, 2788, 2775, 2787, 2776, 2775, 2775, 2776, 2787, 2780, 2776, 2787, 2787, 2776, 2780, 2787, 2789, 2780, 2780, 2789, 2787, 2790, 2789, 2787, 2787, 2789, 2790, 2787, 2786, 2790, 2790, 2786, 2787, 2790, 2791, 2792, 2792, 2791, 2790, 2792, 2789, 2790, 2790, 2789, 2792, 2780, 2789, 2792, 2792, 2789, 2780, 2792, 2781, 2780, 2780, 2781, 2792, 2784, 2781, 2792, 2792, 2781, 2784, 2792, 2793, 2784, 2784, 2793, 2792, 2794, 2793, 2792, 2792, 2793, 2794, 2792, 2791, 2794, 2794, 2791, 2792, 2795, 2796, 2797, 2797, 2796, 2795, 2797, 2798, 2795, 2795, 2798, 2797, 2785, 2798, 2797, 2797, 2798, 2785, 2797, 2786, 2785, 2785, 2786, 2797, 2790, 2786, 2797, 2797, 2786, 2790, 2797, 2799, 2790, 2790, 2799, 2797, 2800, 2799, 2797, 2797, 2799, 2800, 2797, 2796, 2800, 2800, 2796, 2797, 2800, 2801, 2802, 2802, 2801, 2800, 2802, 2799, 2800, 2800, 2799, 2802, 2790, 2799, 2802, 2802, 2799, 2790, 2802, 2791, 2790, 2790, 2791, 2802, 2794, 2791, 2802, 2802, 2791, 2794, 2802, 2803, 2794, 2794, 2803, 2802, 2804, 2803, 2802, 2802, 2803, 2804, 2802, 2801, 2804, 2804, 2801, 2802, 2805, 2806, 2807, 2807, 2806, 2805, 2807, 2808, 2805, 2805, 2808, 2807, 2795, 2808, 2807, 2807, 2808, 2795, 2807, 2796, 2795, 2795, 2796, 2807, 2800, 2796, 2807, 2807, 2796, 2800, 2807, 2809, 2800, 2800, 2809, 2807, 2810, 2809, 2807, 2807, 2809, 2810, 2807, 2806, 2810, 2810, 2806, 2807, 2810, 2811, 2812, 2812, 2811, 2810, 2812, 2809, 2810, 2810, 2809, 2812, 2800, 2809, 2812, 2812, 2809, 2800, 2812, 2801, 2800, 2800, 2801, 2812, 2804, 2801, 2812, 2812, 2801, 2804, 2812, 2813, 2804, 2804, 2813, 2812, 2814, 2813, 2812, 2812, 2813, 2814, 2812, 2811, 2814, 2814, 2811, 2812, 2815, 2816, 2817, 2817, 2816, 2815, 2817, 2818, 2815, 2815, 2818, 2817, 2805, 2818, 2817, 2817, 2818, 2805, 2817, 2806, 2805, 2805, 2806, 2817, 2810, 2806, 2817, 2817, 2806, 2810, 2817, 2819, 2810, 2810, 2819, 2817, 2820, 2819, 2817, 2817, 2819, 2820, 2817, 2816, 2820, 2820, 2816, 2817, 2820, 2821, 2822, 2822, 2821, 2820, 2822, 2819, 2820, 2820, 2819, 2822, 2810, 2819, 2822, 2822, 2819, 2810, 2822, 2811, 2810, 2810, 2811, 2822, 2814, 2811, 2822, 2822, 2811, 2814, 2822, 2823, 2814, 2814, 2823, 2822, 2824, 2823, 2822, 2822, 2823, 2824, 2822, 2821, 2824, 2824, 2821, 2822, 2825, 2826, 2827, 2827, 2826, 2825, 2827, 2828, 2825, 2825, 2828, 2827, 2815, 2828, 2827, 2827, 2828, 2815, 2827, 2816, 2815, 2815, 2816, 2827, 2820, 2816, 2827, 2827, 2816, 2820, 2827, 2829, 2820, 2820, 2829, 2827, 2830, 2829, 2827, 2827, 2829, 2830, 2827, 2826, 2830, 2830, 2826, 2827, 2830, 2831, 2832, 2832, 2831, 2830, 2832, 2829, 2830, 2830, 2829, 2832, 2820, 2829, 2832, 2832, 2829, 2820, 2832, 2821, 2820, 2820, 2821, 2832, 2824, 2821, 2832, 2832, 2821, 2824, 2832, 2833, 2824, 2824, 2833, 2832, 2834, 2833, 2832, 2832, 2833, 2834, 2832, 2831, 2834, 2834, 2831, 2832, 2835, 2836, 2837, 2837, 2836, 2835, 2837, 2838, 2835, 2835, 2838, 2837, 2825, 2838, 2837, 2837, 2838, 2825, 2837, 2826, 2825, 2825, 2826, 2837, 2830, 2826, 2837, 2837, 2826, 2830, 2837, 2839, 2830, 2830, 2839, 2837, 2840, 2839, 2837, 2837, 2839, 2840, 2837, 2836, 2840, 2840, 2836, 2837, 2840, 2841, 2842, 2842, 2841, 2840, 2842, 2839, 2840, 2840, 2839, 2842, 2830, 2839, 2842, 2842, 2839, 2830, 2842, 2831, 2830, 2830, 2831, 2842, 2834, 2831, 2842, 2842, 2831, 2834, 2842, 2843, 2834, 2834, 2843, 2842, 2844, 2843, 2842, 2842, 2843, 2844, 2842, 2841, 2844, 2844, 2841, 2842, 2845, 2846, 2847, 2847, 2846, 2845, 2847, 2848, 2845, 2845, 2848, 2847, 2835, 2848, 2847, 2847, 2848, 2835, 2847, 2836, 2835, 2835, 2836, 2847, 2840, 2836, 2847, 2847, 2836, 2840, 2847, 2849, 2840, 2840, 2849, 2847, 2850, 2849, 2847, 2847, 2849, 2850, 2847, 2846, 2850, 2850, 2846, 2847, 2850, 2851, 2852, 2852, 2851, 2850, 2852, 2849, 2850, 2850, 2849, 2852, 2840, 2849, 2852, 2852, 2849, 2840, 2852, 2841, 2840, 2840, 2841, 2852, 2844, 2841, 2852, 2852, 2841, 2844, 2852, 2853, 2844, 2844, 2853, 2852, 2854, 2853, 2852, 2852, 2853, 2854, 2852, 2851, 2854, 2854, 2851, 2852, 2855, 2856, 2857, 2857, 2856, 2855, 2857, 2858, 2855, 2855, 2858, 2857, 2845, 2858, 2857, 2857, 2858, 2845, 2857, 2846, 2845, 2845, 2846, 2857, 2850, 2846, 2857, 2857, 2846, 2850, 2857, 2859, 2850, 2850, 2859, 2857, 2860, 2859, 2857, 2857, 2859, 2860, 2857, 2856, 2860, 2860, 2856, 2857, 2860, 2861, 2862, 2862, 2861, 2860, 2862, 2859, 2860, 2860, 2859, 2862, 2850, 2859, 2862, 2862, 2859, 2850, 2862, 2851, 2850, 2850, 2851, 2862, 2854, 2851, 2862, 2862, 2851, 2854, 2862, 2863, 2854, 2854, 2863, 2862, 2864, 2863, 2862, 2862, 2863, 2864, 2862, 2861, 2864, 2864, 2861, 2862, 2865, 2866, 2867, 2867, 2866, 2865, 2867, 2868, 2865, 2865, 2868, 2867, 2855, 2868, 2867, 2867, 2868, 2855, 2867, 2856, 2855, 2855, 2856, 2867, 2860, 2856, 2867, 2867, 2856, 2860, 2867, 2869, 2860, 2860, 2869, 2867, 2870, 2869, 2867, 2867, 2869, 2870, 2867, 2866, 2870, 2870, 2866, 2867, 2870, 2871, 2872, 2872, 2871, 2870, 2872, 2869, 2870, 2870, 2869, 2872, 2860, 2869, 2872, 2872, 2869, 2860, 2872, 2861, 2860, 2860, 2861, 2872, 2864, 2861, 2872, 2872, 2861, 2864, 2872, 2873, 2864, 2864, 2873, 2872, 2874, 2873, 2872, 2872, 2873, 2874, 2872, 2871, 2874, 2874, 2871, 2872, 2875, 2876, 2877, 2877, 2876, 2875, 2877, 2878, 2875, 2875, 2878, 2877, 2879, 2878, 2877, 2877, 2878, 2879, 2877, 2880, 2879, 2879, 2880, 2877, 2881, 2880, 2877, 2877, 2880, 2881, 2877, 2882, 2881, 2881, 2882, 2877, 2883, 2882, 2877, 2877, 2882, 2883, 2877, 2876, 2883, 2883, 2876, 2877, 2883, 2884, 2885, 2885, 2884, 2883, 2885, 2882, 2883, 2883, 2882, 2885, 2881, 2882, 2885, 2885, 2882, 2881, 2885, 2886, 2881, 2881, 2886, 2885, 2887, 2886, 2885, 2885, 2886, 2887, 2885, 2888, 2887, 2887, 2888, 2885, 2889, 2888, 2885, 2885, 2888, 2889, 2885, 2884, 2889, 2889, 2884, 2885, 2890, 2891, 2892, 2892, 2891, 2890, 2892, 2893, 2890, 2890, 2893, 2892, 2875, 2893, 2892, 2892, 2893, 2875, 2892, 2876, 2875, 2875, 2876, 2892, 2883, 2876, 2892, 2892, 2876, 2883, 2892, 2894, 2883, 2883, 2894, 2892, 2895, 2894, 2892, 2892, 2894, 2895, 2892, 2891, 2895, 2895, 2891, 2892, 2895, 2896, 2897, 2897, 2896, 2895, 2897, 2894, 2895, 2895, 2894, 2897, 2883, 2894, 2897, 2897, 2894, 2883, 2897, 2884, 2883, 2883, 2884, 2897, 2889, 2884, 2897, 2897, 2884, 2889, 2897, 2898, 2889, 2889, 2898, 2897, 2899, 2898, 2897, 2897, 2898, 2899, 2897, 2896, 2899, 2899, 2896, 2897, 2900, 2901, 2902, 2902, 2901, 2900, 2902, 2903, 2900, 2900, 2903, 2902, 2890, 2903, 2902, 2902, 2903, 2890, 2902, 2891, 2890, 2890, 2891, 2902, 2895, 2891, 2902, 2902, 2891, 2895, 2902, 2904, 2895, 2895, 2904, 2902, 2905, 2904, 2902, 2902, 2904, 2905, 2902, 2901, 2905, 2905, 2901, 2902, 2905, 2906, 2907, 2907, 2906, 2905, 2907, 2904, 2905, 2905, 2904, 2907, 2895, 2904, 2907, 2907, 2904, 2895, 2907, 2896, 2895, 2895, 2896, 2907, 2899, 2896, 2907, 2907, 2896, 2899, 2907, 2908, 2899, 2899, 2908, 2907, 2909, 2908, 2907, 2907, 2908, 2909, 2907, 2906, 2909, 2909, 2906, 2907, 2910, 2911, 2912, 2912, 2911, 2910, 2912, 2913, 2910, 2910, 2913, 2912, 2900, 2913, 2912, 2912, 2913, 2900, 2912, 2901, 2900, 2900, 2901, 2912, 2905, 2901, 2912, 2912, 2901, 2905, 2912, 2914, 2905, 2905, 2914, 2912, 2915, 2914, 2912, 2912, 2914, 2915, 2912, 2911, 2915, 2915, 2911, 2912, 2915, 2916, 2917, 2917, 2916, 2915, 2917, 2914, 2915, 2915, 2914, 2917, 2905, 2914, 2917, 2917, 2914, 2905, 2917, 2906, 2905, 2905, 2906, 2917, 2909, 2906, 2917, 2917, 2906, 2909, 2917, 2918, 2909, 2909, 2918, 2917, 2919, 2918, 2917, 2917, 2918, 2919, 2917, 2916, 2919, 2919, 2916, 2917, 2920, 2921, 2922, 2922, 2921, 2920, 2922, 2923, 2920, 2920, 2923, 2922, 2910, 2923, 2922, 2922, 2923, 2910, 2922, 2911, 2910, 2910, 2911, 2922, 2915, 2911, 2922, 2922, 2911, 2915, 2922, 2924, 2915, 2915, 2924, 2922, 2925, 2924, 2922, 2922, 2924, 2925, 2922, 2921, 2925, 2925, 2921, 2922, 2925, 2926, 2927, 2927, 2926, 2925, 2927, 2924, 2925, 2925, 2924, 2927, 2915, 2924, 2927, 2927, 2924, 2915, 2927, 2916, 2915, 2915, 2916, 2927, 2919, 2916, 2927, 2927, 2916, 2919, 2927, 2928, 2919, 2919, 2928, 2927, 2929, 2928, 2927, 2927, 2928, 2929, 2927, 2926, 2929, 2929, 2926, 2927, 2930, 2931, 2932, 2932, 2931, 2930, 2932, 2933, 2930, 2930, 2933, 2932, 2920, 2933, 2932, 2932, 2933, 2920, 2932, 2921, 2920, 2920, 2921, 2932, 2925, 2921, 2932, 2932, 2921, 2925, 2932, 2934, 2925, 2925, 2934, 2932, 2935, 2934, 2932, 2932, 2934, 2935, 2932, 2931, 2935, 2935, 2931, 2932, 2935, 2936, 2937, 2937, 2936, 2935, 2937, 2934, 2935, 2935, 2934, 2937, 2925, 2934, 2937, 2937, 2934, 2925, 2937, 2926, 2925, 2925, 2926, 2937, 2929, 2926, 2937, 2937, 2926, 2929, 2937, 2938, 2929, 2929, 2938, 2937, 2939, 2938, 2937, 2937, 2938, 2939, 2937, 2936, 2939, 2939, 2936, 2937, 2940, 2941, 2942, 2942, 2941, 2940, 2942, 2943, 2940, 2940, 2943, 2942, 2930, 2943, 2942, 2942, 2943, 2930, 2942, 2931, 2930, 2930, 2931, 2942, 2935, 2931, 2942, 2942, 2931, 2935, 2942, 2944, 2935, 2935, 2944, 2942, 2945, 2944, 2942, 2942, 2944, 2945, 2942, 2941, 2945, 2945, 2941, 2942, 2945, 2946, 2947, 2947, 2946, 2945, 2947, 2944, 2945, 2945, 2944, 2947, 2935, 2944, 2947, 2947, 2944, 2935, 2947, 2936, 2935, 2935, 2936, 2947, 2939, 2936, 2947, 2947, 2936, 2939, 2947, 2948, 2939, 2939, 2948, 2947, 2949, 2948, 2947, 2947, 2948, 2949, 2947, 2946, 2949, 2949, 2946, 2947, 2950, 2951, 2952, 2952, 2951, 2950, 2952, 2953, 2950, 2950, 2953, 2952, 2940, 2953, 2952, 2952, 2953, 2940, 2952, 2941, 2940, 2940, 2941, 2952, 2945, 2941, 2952, 2952, 2941, 2945, 2952, 2954, 2945, 2945, 2954, 2952, 2955, 2954, 2952, 2952, 2954, 2955, 2952, 2951, 2955, 2955, 2951, 2952, 2955, 2956, 2957, 2957, 2956, 2955, 2957, 2954, 2955, 2955, 2954, 2957, 2945, 2954, 2957, 2957, 2954, 2945, 2957, 2946, 2945, 2945, 2946, 2957, 2949, 2946, 2957, 2957, 2946, 2949, 2957, 2958, 2949, 2949, 2958, 2957, 2959, 2958, 2957, 2957, 2958, 2959, 2957, 2956, 2959, 2959, 2956, 2957, 2960, 2961, 2962, 2962, 2961, 2960, 2962, 2963, 2960, 2960, 2963, 2962, 2950, 2963, 2962, 2962, 2963, 2950, 2962, 2951, 2950, 2950, 2951, 2962, 2955, 2951, 2962, 2962, 2951, 2955, 2962, 2964, 2955, 2955, 2964, 2962, 2965, 2964, 2962, 2962, 2964, 2965, 2962, 2961, 2965, 2965, 2961, 2962, 2965, 2966, 2967, 2967, 2966, 2965, 2967, 2964, 2965, 2965, 2964, 2967, 2955, 2964, 2967, 2967, 2964, 2955, 2967, 2956, 2955, 2955, 2956, 2967, 2959, 2956, 2967, 2967, 2956, 2959, 2967, 2968, 2959, 2959, 2968, 2967, 2969, 2968, 2967, 2967, 2968, 2969, 2967, 2966, 2969, 2969, 2966, 2967, 2970, 2971, 2972, 2972, 2971, 2970, 2972, 2973, 2970, 2970, 2973, 2972, 2960, 2973, 2972, 2972, 2973, 2960, 2972, 2961, 2960, 2960, 2961, 2972, 2965, 2961, 2972, 2972, 2961, 2965, 2972, 2974, 2965, 2965, 2974, 2972, 2975, 2974, 2972, 2972, 2974, 2975, 2972, 2971, 2975, 2975, 2971, 2972, 2975, 2976, 2977, 2977, 2976, 2975, 2977, 2974, 2975, 2975, 2974, 2977, 2965, 2974, 2977, 2977, 2974, 2965, 2977, 2966, 2965, 2965, 2966, 2977, 2969, 2966, 2977, 2977, 2966, 2969, 2977, 2978, 2969, 2969, 2978, 2977, 2979, 2978, 2977, 2977, 2978, 2979, 2977, 2976, 2979, 2979, 2976, 2977, 2980, 2981, 2982, 2982, 2981, 2980, 2982, 2983, 2980, 2980, 2983, 2982, 2970, 2983, 2982, 2982, 2983, 2970, 2982, 2971, 2970, 2970, 2971, 2982, 2975, 2971, 2982, 2982, 2971, 2975, 2982, 2984, 2975, 2975, 2984, 2982, 2985, 2984, 2982, 2982, 2984, 2985, 2982, 2981, 2985, 2985, 2981, 2982, 2985, 2986, 2987, 2987, 2986, 2985, 2987, 2984, 2985, 2985, 2984, 2987, 2975, 2984, 2987, 2987, 2984, 2975, 2987, 2976, 2975, 2975, 2976, 2987, 2979, 2976, 2987, 2987, 2976, 2979, 2987, 2988, 2979, 2979, 2988, 2987, 2989, 2988, 2987, 2987, 2988, 2989, 2987, 2986, 2989, 2989, 2986, 2987, 2990, 2991, 2992, 2992, 2991, 2990, 2992, 2993, 2990, 2990, 2993, 2992, 2980, 2993, 2992, 2992, 2993, 2980, 2992, 2981, 2980, 2980, 2981, 2992, 2985, 2981, 2992, 2992, 2981, 2985, 2992, 2994, 2985, 2985, 2994, 2992, 2995, 2994, 2992, 2992, 2994, 2995, 2992, 2991, 2995, 2995, 2991, 2992, 2995, 2996, 2997, 2997, 2996, 2995, 2997, 2994, 2995, 2995, 2994, 2997, 2985, 2994, 2997, 2997, 2994, 2985, 2997, 2986, 2985, 2985, 2986, 2997, 2989, 2986, 2997, 2997, 2986, 2989, 2997, 2998, 2989, 2989, 2998, 2997, 2999, 2998, 2997, 2997, 2998, 2999, 2997, 2996, 2999, 2999, 2996, 2997, 3000, 3001, 3002, 3002, 3001, 3000, 3002, 3003, 3000, 3000, 3003, 3002, 3004, 3005, 3002, 3002, 3005, 3004, 3002, 3001, 3004, 3004, 3001, 3002, 3006, 3007, 3002, 3002, 3007, 3006, 3002, 3005, 3006, 3006, 3005, 3002, 3008, 3003, 3002, 3002, 3003, 3008, 3002, 3007, 3008, 3008, 3007, 3002, 3008, 3007, 3009, 3009, 3007, 3008, 3009, 3010, 3008, 3008, 3010, 3009, 3006, 3011, 3009, 3009, 3011, 3006, 3009, 3007, 3006, 3006, 3007, 3009, 3012, 3013, 3009, 3009, 3013, 3012, 3009, 3011, 3012, 3012, 3011, 3009, 3014, 3010, 3009, 3009, 3010, 3014, 3009, 3013, 3014, 3014, 3013, 3009, 3015, 3016, 3017, 3017, 3016, 3015, 3017, 3018, 3015, 3015, 3018, 3017, 3000, 3003, 3017, 3017, 3003, 3000, 3017, 3016, 3000, 3000, 3016, 3017, 3008, 3019, 3017, 3017, 3019, 3008, 3017, 3003, 3008, 3008, 3003, 3017, 3020, 3018, 3017, 3017, 3018, 3020, 3017, 3019, 3020, 3020, 3019, 3017, 3020, 3019, 3021, 3021, 3019, 3020, 3021, 3022, 3020, 3020, 3022, 3021, 3008, 3010, 3021, 3021, 3010, 3008, 3021, 3019, 3008, 3008, 3019, 3021, 3014, 3023, 3021, 3021, 3023, 3014, 3021, 3010, 3014, 3014, 3010, 3021, 3024, 3022, 3021, 3021, 3022, 3024, 3021, 3023, 3024, 3024, 3023, 3021, 3025, 3026, 3027, 3027, 3026, 3025, 3027, 3028, 3025, 3025, 3028, 3027, 3015, 3018, 3027, 3027, 3018, 3015, 3027, 3026, 3015, 3015, 3026, 3027, 3020, 3029, 3027, 3027, 3029, 3020, 3027, 3018, 3020, 3020, 3018, 3027, 3030, 3028, 3027, 3027, 3028, 3030, 3027, 3029, 3030, 3030, 3029, 3027, 3030, 3029, 3031, 3031, 3029, 3030, 3031, 3032, 3030, 3030, 3032, 3031, 3020, 3022, 3031, 3031, 3022, 3020, 3031, 3029, 3020, 3020, 3029, 3031, 3024, 3033, 3031, 3031, 3033, 3024, 3031, 3022, 3024, 3024, 3022, 3031, 3034, 3032, 3031, 3031, 3032, 3034, 3031, 3033, 3034, 3034, 3033, 3031, 3035, 3036, 3037, 3037, 3036, 3035, 3037, 3038, 3035, 3035, 3038, 3037, 3025, 3028, 3037, 3037, 3028, 3025, 3037, 3036, 3025, 3025, 3036, 3037, 3030, 3039, 3037, 3037, 3039, 3030, 3037, 3028, 3030, 3030, 3028, 3037, 3040, 3038, 3037, 3037, 3038, 3040, 3037, 3039, 3040, 3040, 3039, 3037, 3040, 3039, 3041, 3041, 3039, 3040, 3041, 3042, 3040, 3040, 3042, 3041, 3030, 3032, 3041, 3041, 3032, 3030, 3041, 3039, 3030, 3030, 3039, 3041, 3034, 3043, 3041, 3041, 3043, 3034, 3041, 3032, 3034, 3034, 3032, 3041, 3044, 3042, 3041, 3041, 3042, 3044, 3041, 3043, 3044, 3044, 3043, 3041, 3045, 3046, 3047, 3047, 3046, 3045, 3047, 3048, 3045, 3045, 3048, 3047, 3035, 3038, 3047, 3047, 3038, 3035, 3047, 3046, 3035, 3035, 3046, 3047, 3040, 3049, 3047, 3047, 3049, 3040, 3047, 3038, 3040, 3040, 3038, 3047, 3050, 3048, 3047, 3047, 3048, 3050, 3047, 3049, 3050, 3050, 3049, 3047, 3050, 3049, 3051, 3051, 3049, 3050, 3051, 3052, 3050, 3050, 3052, 3051, 3040, 3042, 3051, 3051, 3042, 3040, 3051, 3049, 3040, 3040, 3049, 3051, 3044, 3053, 3051, 3051, 3053, 3044, 3051, 3042, 3044, 3044, 3042, 3051, 3054, 3052, 3051, 3051, 3052, 3054, 3051, 3053, 3054, 3054, 3053, 3051, 3055, 3056, 3057, 3057, 3056, 3055, 3057, 3058, 3055, 3055, 3058, 3057, 3045, 3048, 3057, 3057, 3048, 3045, 3057, 3056, 3045, 3045, 3056, 3057, 3050, 3059, 3057, 3057, 3059, 3050, 3057, 3048, 3050, 3050, 3048, 3057, 3060, 3058, 3057, 3057, 3058, 3060, 3057, 3059, 3060, 3060, 3059, 3057, 3060, 3059, 3061, 3061, 3059, 3060, 3061, 3062, 3060, 3060, 3062, 3061, 3050, 3052, 3061, 3061, 3052, 3050, 3061, 3059, 3050, 3050, 3059, 3061, 3054, 3063, 3061, 3061, 3063, 3054, 3061, 3052, 3054, 3054, 3052, 3061, 3064, 3062, 3061, 3061, 3062, 3064, 3061, 3063, 3064, 3064, 3063, 3061, 3065, 3066, 3067, 3067, 3066, 3065, 3067, 3068, 3065, 3065, 3068, 3067, 3055, 3058, 3067, 3067, 3058, 3055, 3067, 3066, 3055, 3055, 3066, 3067, 3060, 3069, 3067, 3067, 3069, 3060, 3067, 3058, 3060, 3060, 3058, 3067, 3070, 3068, 3067, 3067, 3068, 3070, 3067, 3069, 3070, 3070, 3069, 3067, 3070, 3069, 3071, 3071, 3069, 3070, 3071, 3072, 3070, 3070, 3072, 3071, 3060, 3062, 3071, 3071, 3062, 3060, 3071, 3069, 3060, 3060, 3069, 3071, 3064, 3073, 3071, 3071, 3073, 3064, 3071, 3062, 3064, 3064, 3062, 3071, 3074, 3072, 3071, 3071, 3072, 3074, 3071, 3073, 3074, 3074, 3073, 3071, 3075, 3076, 3077, 3077, 3076, 3075, 3077, 3078, 3075, 3075, 3078, 3077, 3065, 3068, 3077, 3077, 3068, 3065, 3077, 3076, 3065, 3065, 3076, 3077, 3070, 3079, 3077, 3077, 3079, 3070, 3077, 3068, 3070, 3070, 3068, 3077, 3080, 3078, 3077, 3077, 3078, 3080, 3077, 3079, 3080, 3080, 3079, 3077, 3080, 3079, 3081, 3081, 3079, 3080, 3081, 3082, 3080, 3080, 3082, 3081, 3070, 3072, 3081, 3081, 3072, 3070, 3081, 3079, 3070, 3070, 3079, 3081, 3074, 3083, 3081, 3081, 3083, 3074, 3081, 3072, 3074, 3074, 3072, 3081, 3084, 3082, 3081, 3081, 3082, 3084, 3081, 3083, 3084, 3084, 3083, 3081, 3085, 3086, 3087, 3087, 3086, 3085, 3087, 3088, 3085, 3085, 3088, 3087, 3075, 3078, 3087, 3087, 3078, 3075, 3087, 3086, 3075, 3075, 3086, 3087, 3080, 3089, 3087, 3087, 3089, 3080, 3087, 3078, 3080, 3080, 3078, 3087, 3090, 3088, 3087, 3087, 3088, 3090, 3087, 3089, 3090, 3090, 3089, 3087, 3090, 3089, 3091, 3091, 3089, 3090, 3091, 3092, 3090, 3090, 3092, 3091, 3080, 3082, 3091, 3091, 3082, 3080, 3091, 3089, 3080, 3080, 3089, 3091, 3084, 3093, 3091, 3091, 3093, 3084, 3091, 3082, 3084, 3084, 3082, 3091, 3094, 3092, 3091, 3091, 3092, 3094, 3091, 3093, 3094, 3094, 3093, 3091, 3095, 3096, 3097, 3097, 3096, 3095, 3097, 3098, 3095, 3095, 3098, 3097, 3085, 3088, 3097, 3097, 3088, 3085, 3097, 3096, 3085, 3085, 3096, 3097, 3090, 3099, 3097, 3097, 3099, 3090, 3097, 3088, 3090, 3090, 3088, 3097, 3100, 3098, 3097, 3097, 3098, 3100, 3097, 3099, 3100, 3100, 3099, 3097, 3100, 3099, 3101, 3101, 3099, 3100, 3101, 3102, 3100, 3100, 3102, 3101, 3090, 3092, 3101, 3101, 3092, 3090, 3101, 3099, 3090, 3090, 3099, 3101, 3094, 3103, 3101, 3101, 3103, 3094, 3101, 3092, 3094, 3094, 3092, 3101, 3104, 3102, 3101, 3101, 3102, 3104, 3101, 3103, 3104, 3104, 3103, 3101, 3105, 3106, 3107, 3107, 3106, 3105, 3107, 3108, 3105, 3105, 3108, 3107, 3095, 3098, 3107, 3107, 3098, 3095, 3107, 3106, 3095, 3095, 3106, 3107, 3100, 3109, 3107, 3107, 3109, 3100, 3107, 3098, 3100, 3100, 3098, 3107, 3110, 3108, 3107, 3107, 3108, 3110, 3107, 3109, 3110, 3110, 3109, 3107, 3110, 3109, 3111, 3111, 3109, 3110, 3111, 3112, 3110, 3110, 3112, 3111, 3100, 3102, 3111, 3111, 3102, 3100, 3111, 3109, 3100, 3100, 3109, 3111, 3104, 3113, 3111, 3111, 3113, 3104, 3111, 3102, 3104, 3104, 3102, 3111, 3114, 3112, 3111, 3111, 3112, 3114, 3111, 3113, 3114, 3114, 3113, 3111, 3115, 3116, 3117, 3117, 3116, 3115, 3117, 3118, 3115, 3115, 3118, 3117, 3105, 3108, 3117, 3117, 3108, 3105, 3117, 3116, 3105, 3105, 3116, 3117, 3110, 3119, 3117, 3117, 3119, 3110, 3117, 3108, 3110, 3110, 3108, 3117, 3120, 3118, 3117, 3117, 3118, 3120, 3117, 3119, 3120, 3120, 3119, 3117, 3120, 3119, 3121, 3121, 3119, 3120, 3121, 3122, 3120, 3120, 3122, 3121, 3110, 3112, 3121, 3121, 3112, 3110, 3121, 3119, 3110, 3110, 3119, 3121, 3114, 3123, 3121, 3121, 3123, 3114, 3121, 3112, 3114, 3114, 3112, 3121, 3124, 3122, 3121, 3121, 3122, 3124, 3121, 3123, 3124, 3124, 3123, 3121, 3125, 3126, 3127, 3127, 3126, 3125, 3127, 3128, 3125, 3125, 3128, 3127, 3129, 3130, 3127, 3127, 3130, 3129, 3127, 3126, 3129, 3129, 3126, 3127, 3131, 3132, 3127, 3127, 3132, 3131, 3127, 3130, 3131, 3131, 3130, 3127, 3133, 3128, 3127, 3127, 3128, 3133, 3127, 3132, 3133, 3133, 3132, 3127, 3133, 3132, 3134, 3134, 3132, 3133, 3134, 3135, 3133, 3133, 3135, 3134, 3131, 3136, 3134, 3134, 3136, 3131, 3134, 3132, 3131, 3131, 3132, 3134, 3137, 3138, 3134, 3134, 3138, 3137, 3134, 3136, 3137, 3137, 3136, 3134, 3139, 3135, 3134, 3134, 3135, 3139, 3134, 3138, 3139, 3139, 3138, 3134, 3140, 3141, 3142, 3142, 3141, 3140, 3142, 3143, 3140, 3140, 3143, 3142, 3125, 3128, 3142, 3142, 3128, 3125, 3142, 3141, 3125, 3125, 3141, 3142, 3133, 3144, 3142, 3142, 3144, 3133, 3142, 3128, 3133, 3133, 3128, 3142, 3145, 3143, 3142, 3142, 3143, 3145, 3142, 3144, 3145, 3145, 3144, 3142, 3145, 3144, 3146, 3146, 3144, 3145, 3146, 3147, 3145, 3145, 3147, 3146, 3133, 3135, 3146, 3146, 3135, 3133, 3146, 3144, 3133, 3133, 3144, 3146, 3139, 3148, 3146, 3146, 3148, 3139, 3146, 3135, 3139, 3139, 3135, 3146, 3149, 3147, 3146, 3146, 3147, 3149, 3146, 3148, 3149, 3149, 3148, 3146, 3150, 3151, 3152, 3152, 3151, 3150, 3152, 3153, 3150, 3150, 3153, 3152, 3140, 3143, 3152, 3152, 3143, 3140, 3152, 3151, 3140, 3140, 3151, 3152, 3145, 3154, 3152, 3152, 3154, 3145, 3152, 3143, 3145, 3145, 3143, 3152, 3155, 3153, 3152, 3152, 3153, 3155, 3152, 3154, 3155, 3155, 3154, 3152, 3155, 3154, 3156, 3156, 3154, 3155, 3156, 3157, 3155, 3155, 3157, 3156, 3145, 3147, 3156, 3156, 3147, 3145, 3156, 3154, 3145, 3145, 3154, 3156, 3149, 3158, 3156, 3156, 3158, 3149, 3156, 3147, 3149, 3149, 3147, 3156, 3159, 3157, 3156, 3156, 3157, 3159, 3156, 3158, 3159, 3159, 3158, 3156, 3160, 3161, 3162, 3162, 3161, 3160, 3162, 3163, 3160, 3160, 3163, 3162, 3150, 3153, 3162, 3162, 3153, 3150, 3162, 3161, 3150, 3150, 3161, 3162, 3155, 3164, 3162, 3162, 3164, 3155, 3162, 3153, 3155, 3155, 3153, 3162, 3165, 3163, 3162, 3162, 3163, 3165, 3162, 3164, 3165, 3165, 3164, 3162, 3165, 3164, 3166, 3166, 3164, 3165, 3166, 3167, 3165, 3165, 3167, 3166, 3155, 3157, 3166, 3166, 3157, 3155, 3166, 3164, 3155, 3155, 3164, 3166, 3159, 3168, 3166, 3166, 3168, 3159, 3166, 3157, 3159, 3159, 3157, 3166, 3169, 3167, 3166, 3166, 3167, 3169, 3166, 3168, 3169, 3169, 3168, 3166, 3170, 3171, 3172, 3172, 3171, 3170, 3172, 3173, 3170, 3170, 3173, 3172, 3160, 3163, 3172, 3172, 3163, 3160, 3172, 3171, 3160, 3160, 3171, 3172, 3165, 3174, 3172, 3172, 3174, 3165, 3172, 3163, 3165, 3165, 3163, 3172, 3175, 3173, 3172, 3172, 3173, 3175, 3172, 3174, 3175, 3175, 3174, 3172, 3175, 3174, 3176, 3176, 3174, 3175, 3176, 3177, 3175, 3175, 3177, 3176, 3165, 3167, 3176, 3176, 3167, 3165, 3176, 3174, 3165, 3165, 3174, 3176, 3169, 3178, 3176, 3176, 3178, 3169, 3176, 3167, 3169, 3169, 3167, 3176, 3179, 3177, 3176, 3176, 3177, 3179, 3176, 3178, 3179, 3179, 3178, 3176, 3180, 3181, 3182, 3182, 3181, 3180, 3182, 3183, 3180, 3180, 3183, 3182, 3170, 3173, 3182, 3182, 3173, 3170, 3182, 3181, 3170, 3170, 3181, 3182, 3175, 3184, 3182, 3182, 3184, 3175, 3182, 3173, 3175, 3175, 3173, 3182, 3185, 3183, 3182, 3182, 3183, 3185, 3182, 3184, 3185, 3185, 3184, 3182, 3185, 3184, 3186, 3186, 3184, 3185, 3186, 3187, 3185, 3185, 3187, 3186, 3175, 3177, 3186, 3186, 3177, 3175, 3186, 3184, 3175, 3175, 3184, 3186, 3179, 3188, 3186, 3186, 3188, 3179, 3186, 3177, 3179, 3179, 3177, 3186, 3189, 3187, 3186, 3186, 3187, 3189, 3186, 3188, 3189, 3189, 3188, 3186, 3190, 3191, 3192, 3192, 3191, 3190, 3192, 3193, 3190, 3190, 3193, 3192, 3180, 3183, 3192, 3192, 3183, 3180, 3192, 3191, 3180, 3180, 3191, 3192, 3185, 3194, 3192, 3192, 3194, 3185, 3192, 3183, 3185, 3185, 3183, 3192, 3195, 3193, 3192, 3192, 3193, 3195, 3192, 3194, 3195, 3195, 3194, 3192, 3195, 3194, 3196, 3196, 3194, 3195, 3196, 3197, 3195, 3195, 3197, 3196, 3185, 3187, 3196, 3196, 3187, 3185, 3196, 3194, 3185, 3185, 3194, 3196, 3189, 3198, 3196, 3196, 3198, 3189, 3196, 3187, 3189, 3189, 3187, 3196, 3199, 3197, 3196, 3196, 3197, 3199, 3196, 3198, 3199, 3199, 3198, 3196, 3200, 3201, 3202, 3202, 3201, 3200, 3202, 3203, 3200, 3200, 3203, 3202, 3190, 3193, 3202, 3202, 3193, 3190, 3202, 3201, 3190, 3190, 3201, 3202, 3195, 3204, 3202, 3202, 3204, 3195, 3202, 3193, 3195, 3195, 3193, 3202, 3205, 3203, 3202, 3202, 3203, 3205, 3202, 3204, 3205, 3205, 3204, 3202, 3205, 3204, 3206, 3206, 3204, 3205, 3206, 3207, 3205, 3205, 3207, 3206, 3195, 3197, 3206, 3206, 3197, 3195, 3206, 3204, 3195, 3195, 3204, 3206, 3199, 3208, 3206, 3206, 3208, 3199, 3206, 3197, 3199, 3199, 3197, 3206, 3209, 3207, 3206, 3206, 3207, 3209, 3206, 3208, 3209, 3209, 3208, 3206, 3210, 3211, 3212, 3212, 3211, 3210, 3212, 3213, 3210, 3210, 3213, 3212, 3200, 3203, 3212, 3212, 3203, 3200, 3212, 3211, 3200, 3200, 3211, 3212, 3205, 3214, 3212, 3212, 3214, 3205, 3212, 3203, 3205, 3205, 3203, 3212, 3215, 3213, 3212, 3212, 3213, 3215, 3212, 3214, 3215, 3215, 3214, 3212, 3215, 3214, 3216, 3216, 3214, 3215, 3216, 3217, 3215, 3215, 3217, 3216, 3205, 3207, 3216, 3216, 3207, 3205, 3216, 3214, 3205, 3205, 3214, 3216, 3209, 3218, 3216, 3216, 3218, 3209, 3216, 3207, 3209, 3209, 3207, 3216, 3219, 3217, 3216, 3216, 3217, 3219, 3216, 3218, 3219, 3219, 3218, 3216, 3220, 3221, 3222, 3222, 3221, 3220, 3222, 3223, 3220, 3220, 3223, 3222, 3210, 3213, 3222, 3222, 3213, 3210, 3222, 3221, 3210, 3210, 3221, 3222, 3215, 3224, 3222, 3222, 3224, 3215, 3222, 3213, 3215, 3215, 3213, 3222, 3225, 3223, 3222, 3222, 3223, 3225, 3222, 3224, 3225, 3225, 3224, 3222, 3225, 3224, 3226, 3226, 3224, 3225, 3226, 3227, 3225, 3225, 3227, 3226, 3215, 3217, 3226, 3226, 3217, 3215, 3226, 3224, 3215, 3215, 3224, 3226, 3219, 3228, 3226, 3226, 3228, 3219, 3226, 3217, 3219, 3219, 3217, 3226, 3229, 3227, 3226, 3226, 3227, 3229, 3226, 3228, 3229, 3229, 3228, 3226, 3230, 3231, 3232, 3232, 3231, 3230, 3232, 3233, 3230, 3230, 3233, 3232, 3220, 3223, 3232, 3232, 3223, 3220, 3232, 3231, 3220, 3220, 3231, 3232, 3225, 3234, 3232, 3232, 3234, 3225, 3232, 3223, 3225, 3225, 3223, 3232, 3235, 3233, 3232, 3232, 3233, 3235, 3232, 3234, 3235, 3235, 3234, 3232, 3235, 3234, 3236, 3236, 3234, 3235, 3236, 3237, 3235, 3235, 3237, 3236, 3225, 3227, 3236, 3236, 3227, 3225, 3236, 3234, 3225, 3225, 3234, 3236, 3229, 3238, 3236, 3236, 3238, 3229, 3236, 3227, 3229, 3229, 3227, 3236, 3239, 3237, 3236, 3236, 3237, 3239, 3236, 3238, 3239, 3239, 3238, 3236, 3240, 3241, 3242, 3242, 3241, 3240, 3242, 3243, 3240, 3240, 3243, 3242, 3230, 3233, 3242, 3242, 3233, 3230, 3242, 3241, 3230, 3230, 3241, 3242, 3235, 3244, 3242, 3242, 3244, 3235, 3242, 3233, 3235, 3235, 3233, 3242, 3245, 3243, 3242, 3242, 3243, 3245, 3242, 3244, 3245, 3245, 3244, 3242, 3245, 3244, 3246, 3246, 3244, 3245, 3246, 3247, 3245, 3245, 3247, 3246, 3235, 3237, 3246, 3246, 3237, 3235, 3246, 3244, 3235, 3235, 3244, 3246, 3239, 3248, 3246, 3246, 3248, 3239, 3246, 3237, 3239, 3239, 3237, 3246, 3249, 3247, 3246, 3246, 3247, 3249, 3246, 3248, 3249, 3249, 3248, 3246, 3250, 3251, 3252, 3252, 3251, 3250, 3252, 3253, 3250, 3250, 3253, 3252, 3254, 3255, 3252, 3252, 3255, 3254, 3252, 3251, 3254, 3254, 3251, 3252, 3256, 3257, 3252, 3252, 3257, 3256, 3252, 3255, 3256, 3256, 3255, 3252, 3258, 3253, 3252, 3252, 3253, 3258, 3252, 3257, 3258, 3258, 3257, 3252, 3258, 3257, 3259, 3259, 3257, 3258, 3259, 3260, 3258, 3258, 3260, 3259, 3256, 3261, 3259, 3259, 3261, 3256, 3259, 3257, 3256, 3256, 3257, 3259, 3262, 3263, 3259, 3259, 3263, 3262, 3259, 3261, 3262, 3262, 3261, 3259, 3264, 3260, 3259, 3259, 3260, 3264, 3259, 3263, 3264, 3264, 3263, 3259, 3265, 3266, 3267, 3267, 3266, 3265, 3267, 3268, 3265, 3265, 3268, 3267, 3250, 3253, 3267, 3267, 3253, 3250, 3267, 3266, 3250, 3250, 3266, 3267, 3258, 3269, 3267, 3267, 3269, 3258, 3267, 3253, 3258, 3258, 3253, 3267, 3270, 3268, 3267, 3267, 3268, 3270, 3267, 3269, 3270, 3270, 3269, 3267, 3270, 3269, 3271, 3271, 3269, 3270, 3271, 3272, 3270, 3270, 3272, 3271, 3258, 3260, 3271, 3271, 3260, 3258, 3271, 3269, 3258, 3258, 3269, 3271, 3264, 3273, 3271, 3271, 3273, 3264, 3271, 3260, 3264, 3264, 3260, 3271, 3274, 3272, 3271, 3271, 3272, 3274, 3271, 3273, 3274, 3274, 3273, 3271, 3275, 3276, 3277, 3277, 3276, 3275, 3277, 3278, 3275, 3275, 3278, 3277, 3265, 3268, 3277, 3277, 3268, 3265, 3277, 3276, 3265, 3265, 3276, 3277, 3270, 3279, 3277, 3277, 3279, 3270, 3277, 3268, 3270, 3270, 3268, 3277, 3280, 3278, 3277, 3277, 3278, 3280, 3277, 3279, 3280, 3280, 3279, 3277, 3280, 3279, 3281, 3281, 3279, 3280, 3281, 3282, 3280, 3280, 3282, 3281, 3270, 3272, 3281, 3281, 3272, 3270, 3281, 3279, 3270, 3270, 3279, 3281, 3274, 3283, 3281, 3281, 3283, 3274, 3281, 3272, 3274, 3274, 3272, 3281, 3284, 3282, 3281, 3281, 3282, 3284, 3281, 3283, 3284, 3284, 3283, 3281, 3285, 3286, 3287, 3287, 3286, 3285, 3287, 3288, 3285, 3285, 3288, 3287, 3275, 3278, 3287, 3287, 3278, 3275, 3287, 3286, 3275, 3275, 3286, 3287, 3280, 3289, 3287, 3287, 3289, 3280, 3287, 3278, 3280, 3280, 3278, 3287, 3290, 3288, 3287, 3287, 3288, 3290, 3287, 3289, 3290, 3290, 3289, 3287, 3290, 3289, 3291, 3291, 3289, 3290, 3291, 3292, 3290, 3290, 3292, 3291, 3280, 3282, 3291, 3291, 3282, 3280, 3291, 3289, 3280, 3280, 3289, 3291, 3284, 3293, 3291, 3291, 3293, 3284, 3291, 3282, 3284, 3284, 3282, 3291, 3294, 3292, 3291, 3291, 3292, 3294, 3291, 3293, 3294, 3294, 3293, 3291, 3295, 3296, 3297, 3297, 3296, 3295, 3297, 3298, 3295, 3295, 3298, 3297, 3285, 3288, 3297, 3297, 3288, 3285, 3297, 3296, 3285, 3285, 3296, 3297, 3290, 3299, 3297, 3297, 3299, 3290, 3297, 3288, 3290, 3290, 3288, 3297, 3300, 3298, 3297, 3297, 3298, 3300, 3297, 3299, 3300, 3300, 3299, 3297, 3300, 3299, 3301, 3301, 3299, 3300, 3301, 3302, 3300, 3300, 3302, 3301, 3290, 3292, 3301, 3301, 3292, 3290, 3301, 3299, 3290, 3290, 3299, 3301, 3294, 3303, 3301, 3301, 3303, 3294, 3301, 3292, 3294, 3294, 3292, 3301, 3304, 3302, 3301, 3301, 3302, 3304, 3301, 3303, 3304, 3304, 3303, 3301, 3305, 3306, 3307, 3307, 3306, 3305, 3307, 3308, 3305, 3305, 3308, 3307, 3295, 3298, 3307, 3307, 3298, 3295, 3307, 3306, 3295, 3295, 3306, 3307, 3300, 3309, 3307, 3307, 3309, 3300, 3307, 3298, 3300, 3300, 3298, 3307, 3310, 3308, 3307, 3307, 3308, 3310, 3307, 3309, 3310, 3310, 3309, 3307, 3310, 3309, 3311, 3311, 3309, 3310, 3311, 3312, 3310, 3310, 3312, 3311, 3300, 3302, 3311, 3311, 3302, 3300, 3311, 3309, 3300, 3300, 3309, 3311, 3304, 3313, 3311, 3311, 3313, 3304, 3311, 3302, 3304, 3304, 3302, 3311, 3314, 3312, 3311, 3311, 3312, 3314, 3311, 3313, 3314, 3314, 3313, 3311, 3315, 3316, 3317, 3317, 3316, 3315, 3317, 3318, 3315, 3315, 3318, 3317, 3305, 3308, 3317, 3317, 3308, 3305, 3317, 3316, 3305, 3305, 3316, 3317, 3310, 3319, 3317, 3317, 3319, 3310, 3317, 3308, 3310, 3310, 3308, 3317, 3320, 3318, 3317, 3317, 3318, 3320, 3317, 3319, 3320, 3320, 3319, 3317, 3320, 3319, 3321, 3321, 3319, 3320, 3321, 3322, 3320, 3320, 3322, 3321, 3310, 3312, 3321, 3321, 3312, 3310, 3321, 3319, 3310, 3310, 3319, 3321, 3314, 3323, 3321, 3321, 3323, 3314, 3321, 3312, 3314, 3314, 3312, 3321, 3324, 3322, 3321, 3321, 3322, 3324, 3321, 3323, 3324, 3324, 3323, 3321, 3325, 3326, 3327, 3327, 3326, 3325, 3327, 3328, 3325, 3325, 3328, 3327, 3315, 3318, 3327, 3327, 3318, 3315, 3327, 3326, 3315, 3315, 3326, 3327, 3320, 3329, 3327, 3327, 3329, 3320, 3327, 3318, 3320, 3320, 3318, 3327, 3330, 3328, 3327, 3327, 3328, 3330, 3327, 3329, 3330, 3330, 3329, 3327, 3330, 3329, 3331, 3331, 3329, 3330, 3331, 3332, 3330, 3330, 3332, 3331, 3320, 3322, 3331, 3331, 3322, 3320, 3331, 3329, 3320, 3320, 3329, 3331, 3324, 3333, 3331, 3331, 3333, 3324, 3331, 3322, 3324, 3324, 3322, 3331, 3334, 3332, 3331, 3331, 3332, 3334, 3331, 3333, 3334, 3334, 3333, 3331, 3335, 3336, 3337, 3337, 3336, 3335, 3337, 3338, 3335, 3335, 3338, 3337, 3325, 3328, 3337, 3337, 3328, 3325, 3337, 3336, 3325, 3325, 3336, 3337, 3330, 3339, 3337, 3337, 3339, 3330, 3337, 3328, 3330, 3330, 3328, 3337, 3340, 3338, 3337, 3337, 3338, 3340, 3337, 3339, 3340, 3340, 3339, 3337, 3340, 3339, 3341, 3341, 3339, 3340, 3341, 3342, 3340, 3340, 3342, 3341, 3330, 3332, 3341, 3341, 3332, 3330, 3341, 3339, 3330, 3330, 3339, 3341, 3334, 3343, 3341, 3341, 3343, 3334, 3341, 3332, 3334, 3334, 3332, 3341, 3344, 3342, 3341, 3341, 3342, 3344, 3341, 3343, 3344, 3344, 3343, 3341, 3345, 3346, 3347, 3347, 3346, 3345, 3347, 3348, 3345, 3345, 3348, 3347, 3335, 3338, 3347, 3347, 3338, 3335, 3347, 3346, 3335, 3335, 3346, 3347, 3340, 3349, 3347, 3347, 3349, 3340, 3347, 3338, 3340, 3340, 3338, 3347, 3350, 3348, 3347, 3347, 3348, 3350, 3347, 3349, 3350, 3350, 3349, 3347, 3350, 3349, 3351, 3351, 3349, 3350, 3351, 3352, 3350, 3350, 3352, 3351, 3340, 3342, 3351, 3351, 3342, 3340, 3351, 3349, 3340, 3340, 3349, 3351, 3344, 3353, 3351, 3351, 3353, 3344, 3351, 3342, 3344, 3344, 3342, 3351, 3354, 3352, 3351, 3351, 3352, 3354, 3351, 3353, 3354, 3354, 3353, 3351, 3355, 3356, 3357, 3357, 3356, 3355, 3357, 3358, 3355, 3355, 3358, 3357, 3345, 3348, 3357, 3357, 3348, 3345, 3357, 3356, 3345, 3345, 3356, 3357, 3350, 3359, 3357, 3357, 3359, 3350, 3357, 3348, 3350, 3350, 3348, 3357, 3360, 3358, 3357, 3357, 3358, 3360, 3357, 3359, 3360, 3360, 3359, 3357, 3360, 3359, 3361, 3361, 3359, 3360, 3361, 3362, 3360, 3360, 3362, 3361, 3350, 3352, 3361, 3361, 3352, 3350, 3361, 3359, 3350, 3350, 3359, 3361, 3354, 3363, 3361, 3361, 3363, 3354, 3361, 3352, 3354, 3354, 3352, 3361, 3364, 3362, 3361, 3361, 3362, 3364, 3361, 3363, 3364, 3364, 3363, 3361, 3365, 3366, 3367, 3367, 3366, 3365, 3367, 3368, 3365, 3365, 3368, 3367, 3355, 3358, 3367, 3367, 3358, 3355, 3367, 3366, 3355, 3355, 3366, 3367, 3360, 3369, 3367, 3367, 3369, 3360, 3367, 3358, 3360, 3360, 3358, 3367, 3370, 3368, 3367, 3367, 3368, 3370, 3367, 3369, 3370, 3370, 3369, 3367, 3370, 3369, 3371, 3371, 3369, 3370, 3371, 3372, 3370, 3370, 3372, 3371, 3360, 3362, 3371, 3371, 3362, 3360, 3371, 3369, 3360, 3360, 3369, 3371, 3364, 3373, 3371, 3371, 3373, 3364, 3371, 3362, 3364, 3364, 3362, 3371, 3374, 3372, 3371, 3371, 3372, 3374, 3371, 3373, 3374, 3374, 3373, 3371, 3375, 3376, 3377, 3377, 3376, 3375, 3377, 3378, 3375, 3375, 3378, 3377, 3379, 3378, 3377, 3377, 3378, 3379, 3377, 3380, 3379, 3379, 3380, 3377, 3381, 3380, 3377, 3377, 3380, 3381, 3377, 3382, 3381, 3381, 3382, 3377, 3383, 3382, 3377, 3377, 3382, 3383, 3377, 3376, 3383, 3383, 3376, 3377, 3383, 3384, 3385, 3385, 3384, 3383, 3385, 3382, 3383, 3383, 3382, 3385, 3381, 3382, 3385, 3385, 3382, 3381, 3385, 3386, 3381, 3381, 3386, 3385, 3387, 3386, 3385, 3385, 3386, 3387, 3385, 3388, 3387, 3387, 3388, 3385, 3389, 3388, 3385, 3385, 3388, 3389, 3385, 3384, 3389, 3389, 3384, 3385, 3389, 3390, 3391, 3391, 3390, 3389, 3391, 3388, 3389, 3389, 3388, 3391, 3387, 3388, 3391, 3391, 3388, 3387, 3391, 3392, 3387, 3387, 3392, 3391, 3393, 3392, 3391, 3391, 3392, 3393, 3391, 3394, 3393, 3393, 3394, 3391, 3395, 3394, 3391, 3391, 3394, 3395, 3391, 3390, 3395, 3395, 3390, 3391, 3395, 3396, 3397, 3397, 3396, 3395, 3397, 3394, 3395, 3395, 3394, 3397, 3393, 3394, 3397, 3397, 3394, 3393, 3397, 3398, 3393, 3393, 3398, 3397, 3399, 3398, 3397, 3397, 3398, 3399, 3397, 3400, 3399, 3399, 3400, 3397, 3401, 3400, 3397, 3397, 3400, 3401, 3397, 3396, 3401, 3401, 3396, 3397, 3402, 3403, 3404, 3404, 3403, 3402, 3404, 3405, 3402, 3402, 3405, 3404, 3375, 3405, 3404, 3404, 3405, 3375, 3404, 3376, 3375, 3375, 3376, 3404, 3383, 3376, 3404, 3404, 3376, 3383, 3404, 3406, 3383, 3383, 3406, 3404, 3407, 3406, 3404, 3404, 3406, 3407, 3404, 3403, 3407, 3407, 3403, 3404, 3407, 3408, 3409, 3409, 3408, 3407, 3409, 3406, 3407, 3407, 3406, 3409, 3383, 3406, 3409, 3409, 3406, 3383, 3409, 3384, 3383, 3383, 3384, 3409, 3389, 3384, 3409, 3409, 3384, 3389, 3409, 3410, 3389, 3389, 3410, 3409, 3411, 3410, 3409, 3409, 3410, 3411, 3409, 3408, 3411, 3411, 3408, 3409, 3411, 3412, 3413, 3413, 3412, 3411, 3413, 3410, 3411, 3411, 3410, 3413, 3389, 3410, 3413, 3413, 3410, 3389, 3413, 3390, 3389, 3389, 3390, 3413, 3395, 3390, 3413, 3413, 3390, 3395, 3413, 3414, 3395, 3395, 3414, 3413, 3415, 3414, 3413, 3413, 3414, 3415, 3413, 3412, 3415, 3415, 3412, 3413, 3415, 3416, 3417, 3417, 3416, 3415, 3417, 3414, 3415, 3415, 3414, 3417, 3395, 3414, 3417, 3417, 3414, 3395, 3417, 3396, 3395, 3395, 3396, 3417, 3401, 3396, 3417, 3417, 3396, 3401, 3417, 3418, 3401, 3401, 3418, 3417, 3419, 3418, 3417, 3417, 3418, 3419, 3417, 3416, 3419, 3419, 3416, 3417, 3420, 3421, 3422, 3422, 3421, 3420, 3422, 3423, 3420, 3420, 3423, 3422, 3402, 3423, 3422, 3422, 3423, 3402, 3422, 3403, 3402, 3402, 3403, 3422, 3407, 3403, 3422, 3422, 3403, 3407, 3422, 3424, 3407, 3407, 3424, 3422, 3425, 3424, 3422, 3422, 3424, 3425, 3422, 3421, 3425, 3425, 3421, 3422, 3425, 3426, 3427, 3427, 3426, 3425, 3427, 3424, 3425, 3425, 3424, 3427, 3407, 3424, 3427, 3427, 3424, 3407, 3427, 3408, 3407, 3407, 3408, 3427, 3411, 3408, 3427, 3427, 3408, 3411, 3427, 3428, 3411, 3411, 3428, 3427, 3429, 3428, 3427, 3427, 3428, 3429, 3427, 3426, 3429, 3429, 3426, 3427, 3429, 3430, 3431, 3431, 3430, 3429, 3431, 3428, 3429, 3429, 3428, 3431, 3411, 3428, 3431, 3431, 3428, 3411, 3431, 3412, 3411, 3411, 3412, 3431, 3415, 3412, 3431, 3431, 3412, 3415, 3431, 3432, 3415, 3415, 3432, 3431, 3433, 3432, 3431, 3431, 3432, 3433, 3431, 3430, 3433, 3433, 3430, 3431, 3433, 3434, 3435, 3435, 3434, 3433, 3435, 3432, 3433, 3433, 3432, 3435, 3415, 3432, 3435, 3435, 3432, 3415, 3435, 3416, 3415, 3415, 3416, 3435, 3419, 3416, 3435, 3435, 3416, 3419, 3435, 3436, 3419, 3419, 3436, 3435, 3437, 3436, 3435, 3435, 3436, 3437, 3435, 3434, 3437, 3437, 3434, 3435, 3438, 3439, 3440, 3440, 3439, 3438, 3440, 3441, 3438, 3438, 3441, 3440, 3420, 3441, 3440, 3440, 3441, 3420, 3440, 3421, 3420, 3420, 3421, 3440, 3425, 3421, 3440, 3440, 3421, 3425, 3440, 3442, 3425, 3425, 3442, 3440, 3443, 3442, 3440, 3440, 3442, 3443, 3440, 3439, 3443, 3443, 3439, 3440, 3443, 3444, 3445, 3445, 3444, 3443, 3445, 3442, 3443, 3443, 3442, 3445, 3425, 3442, 3445, 3445, 3442, 3425, 3445, 3426, 3425, 3425, 3426, 3445, 3429, 3426, 3445, 3445, 3426, 3429, 3445, 3446, 3429, 3429, 3446, 3445, 3447, 3446, 3445, 3445, 3446, 3447, 3445, 3444, 3447, 3447, 3444, 3445, 3447, 3448, 3449, 3449, 3448, 3447, 3449, 3446, 3447, 3447, 3446, 3449, 3429, 3446, 3449, 3449, 3446, 3429, 3449, 3430, 3429, 3429, 3430, 3449, 3433, 3430, 3449, 3449, 3430, 3433, 3449, 3450, 3433, 3433, 3450, 3449, 3451, 3450, 3449, 3449, 3450, 3451, 3449, 3448, 3451, 3451, 3448, 3449, 3451, 3452, 3453, 3453, 3452, 3451, 3453, 3450, 3451, 3451, 3450, 3453, 3433, 3450, 3453, 3453, 3450, 3433, 3453, 3434, 3433, 3433, 3434, 3453, 3437, 3434, 3453, 3453, 3434, 3437, 3453, 3454, 3437, 3437, 3454, 3453, 3455, 3454, 3453, 3453, 3454, 3455, 3453, 3452, 3455, 3455, 3452, 3453, 3456, 3457, 3458, 3458, 3457, 3456, 3458, 3459, 3456, 3456, 3459, 3458, 3438, 3459, 3458, 3458, 3459, 3438, 3458, 3439, 3438, 3438, 3439, 3458, 3443, 3439, 3458, 3458, 3439, 3443, 3458, 3460, 3443, 3443, 3460, 3458, 3461, 3460, 3458, 3458, 3460, 3461, 3458, 3457, 3461, 3461, 3457, 3458, 3461, 3462, 3463, 3463, 3462, 3461, 3463, 3460, 3461, 3461, 3460, 3463, 3443, 3460, 3463, 3463, 3460, 3443, 3463, 3444, 3443, 3443, 3444, 3463, 3447, 3444, 3463, 3463, 3444, 3447, 3463, 3464, 3447, 3447, 3464, 3463, 3465, 3464, 3463, 3463, 3464, 3465, 3463, 3462, 3465, 3465, 3462, 3463, 3465, 3466, 3467, 3467, 3466, 3465, 3467, 3464, 3465, 3465, 3464, 3467, 3447, 3464, 3467, 3467, 3464, 3447, 3467, 3448, 3447, 3447, 3448, 3467, 3451, 3448, 3467, 3467, 3448, 3451, 3467, 3468, 3451, 3451, 3468, 3467, 3469, 3468, 3467, 3467, 3468, 3469, 3467, 3466, 3469, 3469, 3466, 3467, 3469, 3470, 3471, 3471, 3470, 3469, 3471, 3468, 3469, 3469, 3468, 3471, 3451, 3468, 3471, 3471, 3468, 3451, 3471, 3452, 3451, 3451, 3452, 3471, 3455, 3452, 3471, 3471, 3452, 3455, 3471, 3472, 3455, 3455, 3472, 3471, 3473, 3472, 3471, 3471, 3472, 3473, 3471, 3470, 3473, 3473, 3470, 3471, 3474, 3475, 3476, 3476, 3475, 3474, 3476, 3477, 3474, 3474, 3477, 3476, 3456, 3477, 3476, 3476, 3477, 3456, 3476, 3457, 3456, 3456, 3457, 3476, 3461, 3457, 3476, 3476, 3457, 3461, 3476, 3478, 3461, 3461, 3478, 3476, 3479, 3478, 3476, 3476, 3478, 3479, 3476, 3475, 3479, 3479, 3475, 3476, 3479, 3480, 3481, 3481, 3480, 3479, 3481, 3478, 3479, 3479, 3478, 3481, 3461, 3478, 3481, 3481, 3478, 3461, 3481, 3462, 3461, 3461, 3462, 3481, 3465, 3462, 3481, 3481, 3462, 3465, 3481, 3482, 3465, 3465, 3482, 3481, 3483, 3482, 3481, 3481, 3482, 3483, 3481, 3480, 3483, 3483, 3480, 3481, 3483, 3484, 3485, 3485, 3484, 3483, 3485, 3482, 3483, 3483, 3482, 3485, 3465, 3482, 3485, 3485, 3482, 3465, 3485, 3466, 3465, 3465, 3466, 3485, 3469, 3466, 3485, 3485, 3466, 3469, 3485, 3486, 3469, 3469, 3486, 3485, 3487, 3486, 3485, 3485, 3486, 3487, 3485, 3484, 3487, 3487, 3484, 3485, 3487, 3488, 3489, 3489, 3488, 3487, 3489, 3486, 3487, 3487, 3486, 3489, 3469, 3486, 3489, 3489, 3486, 3469, 3489, 3470, 3469, 3469, 3470, 3489, 3473, 3470, 3489, 3489, 3470, 3473, 3489, 3490, 3473, 3473, 3490, 3489, 3491, 3490, 3489, 3489, 3490, 3491, 3489, 3488, 3491, 3491, 3488, 3489, 3492, 3493, 3494, 3494, 3493, 3492, 3494, 3495, 3492, 3492, 3495, 3494, 3474, 3495, 3494, 3494, 3495, 3474, 3494, 3475, 3474, 3474, 3475, 3494, 3479, 3475, 3494, 3494, 3475, 3479, 3494, 3496, 3479, 3479, 3496, 3494, 3497, 3496, 3494, 3494, 3496, 3497, 3494, 3493, 3497, 3497, 3493, 3494, 3497, 3498, 3499, 3499, 3498, 3497, 3499, 3496, 3497, 3497, 3496, 3499, 3479, 3496, 3499, 3499, 3496, 3479, 3499, 3480, 3479, 3479, 3480, 3499, 3483, 3480, 3499, 3499, 3480, 3483, 3499, 3500, 3483, 3483, 3500, 3499, 3501, 3500, 3499, 3499, 3500, 3501, 3499, 3498, 3501, 3501, 3498, 3499, 3501, 3502, 3503, 3503, 3502, 3501, 3503, 3500, 3501, 3501, 3500, 3503, 3483, 3500, 3503, 3503, 3500, 3483, 3503, 3484, 3483, 3483, 3484, 3503, 3487, 3484, 3503, 3503, 3484, 3487, 3503, 3504, 3487, 3487, 3504, 3503, 3505, 3504, 3503, 3503, 3504, 3505, 3503, 3502, 3505, 3505, 3502, 3503, 3505, 3506, 3507, 3507, 3506, 3505, 3507, 3504, 3505, 3505, 3504, 3507, 3487, 3504, 3507, 3507, 3504, 3487, 3507, 3488, 3487, 3487, 3488, 3507, 3491, 3488, 3507, 3507, 3488, 3491, 3507, 3508, 3491, 3491, 3508, 3507, 3509, 3508, 3507, 3507, 3508, 3509, 3507, 3506, 3509, 3509, 3506, 3507, 3510, 3511, 3512, 3512, 3511, 3510, 3512, 3513, 3510, 3510, 3513, 3512, 3492, 3513, 3512, 3512, 3513, 3492, 3512, 3493, 3492, 3492, 3493, 3512, 3497, 3493, 3512, 3512, 3493, 3497, 3512, 3514, 3497, 3497, 3514, 3512, 3515, 3514, 3512, 3512, 3514, 3515, 3512, 3511, 3515, 3515, 3511, 3512, 3515, 3516, 3517, 3517, 3516, 3515, 3517, 3514, 3515, 3515, 3514, 3517, 3497, 3514, 3517, 3517, 3514, 3497, 3517, 3498, 3497, 3497, 3498, 3517, 3501, 3498, 3517, 3517, 3498, 3501, 3517, 3518, 3501, 3501, 3518, 3517, 3519, 3518, 3517, 3517, 3518, 3519, 3517, 3516, 3519, 3519, 3516, 3517, 3519, 3520, 3521, 3521, 3520, 3519, 3521, 3518, 3519, 3519, 3518, 3521, 3501, 3518, 3521, 3521, 3518, 3501, 3521, 3502, 3501, 3501, 3502, 3521, 3505, 3502, 3521, 3521, 3502, 3505, 3521, 3522, 3505, 3505, 3522, 3521, 3523, 3522, 3521, 3521, 3522, 3523, 3521, 3520, 3523, 3523, 3520, 3521, 3523, 3524, 3525, 3525, 3524, 3523, 3525, 3522, 3523, 3523, 3522, 3525, 3505, 3522, 3525, 3525, 3522, 3505, 3525, 3506, 3505, 3505, 3506, 3525, 3509, 3506, 3525, 3525, 3506, 3509, 3525, 3526, 3509, 3509, 3526, 3525, 3527, 3526, 3525, 3525, 3526, 3527, 3525, 3524, 3527, 3527, 3524, 3525, 3528, 3529, 3530, 3530, 3529, 3528, 3530, 3531, 3528, 3528, 3531, 3530, 3510, 3531, 3530, 3530, 3531, 3510, 3530, 3511, 3510, 3510, 3511, 3530, 3515, 3511, 3530, 3530, 3511, 3515, 3530, 3532, 3515, 3515, 3532, 3530, 3533, 3532, 3530, 3530, 3532, 3533, 3530, 3529, 3533, 3533, 3529, 3530, 3533, 3534, 3535, 3535, 3534, 3533, 3535, 3532, 3533, 3533, 3532, 3535, 3515, 3532, 3535, 3535, 3532, 3515, 3535, 3516, 3515, 3515, 3516, 3535, 3519, 3516, 3535, 3535, 3516, 3519, 3535, 3536, 3519, 3519, 3536, 3535, 3537, 3536, 3535, 3535, 3536, 3537, 3535, 3534, 3537, 3537, 3534, 3535, 3537, 3538, 3539, 3539, 3538, 3537, 3539, 3536, 3537, 3537, 3536, 3539, 3519, 3536, 3539, 3539, 3536, 3519, 3539, 3520, 3519, 3519, 3520, 3539, 3523, 3520, 3539, 3539, 3520, 3523, 3539, 3540, 3523, 3523, 3540, 3539, 3541, 3540, 3539, 3539, 3540, 3541, 3539, 3538, 3541, 3541, 3538, 3539, 3541, 3542, 3543, 3543, 3542, 3541, 3543, 3540, 3541, 3541, 3540, 3543, 3523, 3540, 3543, 3543, 3540, 3523, 3543, 3524, 3523, 3523, 3524, 3543, 3527, 3524, 3543, 3543, 3524, 3527, 3543, 3544, 3527, 3527, 3544, 3543, 3545, 3544, 3543, 3543, 3544, 3545, 3543, 3542, 3545, 3545, 3542, 3543, 3546, 3547, 3548, 3548, 3547, 3546, 3548, 3549, 3546, 3546, 3549, 3548, 3528, 3549, 3548, 3548, 3549, 3528, 3548, 3529, 3528, 3528, 3529, 3548, 3533, 3529, 3548, 3548, 3529, 3533, 3548, 3550, 3533, 3533, 3550, 3548, 3551, 3550, 3548, 3548, 3550, 3551, 3548, 3547, 3551, 3551, 3547, 3548, 3551, 3552, 3553, 3553, 3552, 3551, 3553, 3550, 3551, 3551, 3550, 3553, 3533, 3550, 3553, 3553, 3550, 3533, 3553, 3534, 3533, 3533, 3534, 3553, 3537, 3534, 3553, 3553, 3534, 3537, 3553, 3554, 3537, 3537, 3554, 3553, 3555, 3554, 3553, 3553, 3554, 3555, 3553, 3552, 3555, 3555, 3552, 3553, 3555, 3556, 3557, 3557, 3556, 3555, 3557, 3554, 3555, 3555, 3554, 3557, 3537, 3554, 3557, 3557, 3554, 3537, 3557, 3538, 3537, 3537, 3538, 3557, 3541, 3538, 3557, 3557, 3538, 3541, 3557, 3558, 3541, 3541, 3558, 3557, 3559, 3558, 3557, 3557, 3558, 3559, 3557, 3556, 3559, 3559, 3556, 3557, 3559, 3560, 3561, 3561, 3560, 3559, 3561, 3558, 3559, 3559, 3558, 3561, 3541, 3558, 3561, 3561, 3558, 3541, 3561, 3542, 3541, 3541, 3542, 3561, 3545, 3542, 3561, 3561, 3542, 3545, 3561, 3562, 3545, 3545, 3562, 3561, 3563, 3562, 3561, 3561, 3562, 3563, 3561, 3560, 3563, 3563, 3560, 3561, 3564, 3565, 3566, 3566, 3565, 3564, 3566, 3567, 3564, 3564, 3567, 3566, 3546, 3567, 3566, 3566, 3567, 3546, 3566, 3547, 3546, 3546, 3547, 3566, 3551, 3547, 3566, 3566, 3547, 3551, 3566, 3568, 3551, 3551, 3568, 3566, 3569, 3568, 3566, 3566, 3568, 3569, 3566, 3565, 3569, 3569, 3565, 3566, 3569, 3570, 3571, 3571, 3570, 3569, 3571, 3568, 3569, 3569, 3568, 3571, 3551, 3568, 3571, 3571, 3568, 3551, 3571, 3552, 3551, 3551, 3552, 3571, 3555, 3552, 3571, 3571, 3552, 3555, 3571, 3572, 3555, 3555, 3572, 3571, 3573, 3572, 3571, 3571, 3572, 3573, 3571, 3570, 3573, 3573, 3570, 3571, 3573, 3574, 3575, 3575, 3574, 3573, 3575, 3572, 3573, 3573, 3572, 3575, 3555, 3572, 3575, 3575, 3572, 3555, 3575, 3556, 3555, 3555, 3556, 3575, 3559, 3556, 3575, 3575, 3556, 3559, 3575, 3576, 3559, 3559, 3576, 3575, 3577, 3576, 3575, 3575, 3576, 3577, 3575, 3574, 3577, 3577, 3574, 3575, 3577, 3578, 3579, 3579, 3578, 3577, 3579, 3576, 3577, 3577, 3576, 3579, 3559, 3576, 3579, 3579, 3576, 3559, 3579, 3560, 3559, 3559, 3560, 3579, 3563, 3560, 3579, 3579, 3560, 3563, 3579, 3580, 3563, 3563, 3580, 3579, 3581, 3580, 3579, 3579, 3580, 3581, 3579, 3578, 3581, 3581, 3578, 3579, 3582, 3583, 3584, 3584, 3583, 3582, 3584, 3585, 3582, 3582, 3585, 3584, 3564, 3585, 3584, 3584, 3585, 3564, 3584, 3565, 3564, 3564, 3565, 3584, 3569, 3565, 3584, 3584, 3565, 3569, 3584, 3586, 3569, 3569, 3586, 3584, 3587, 3586, 3584, 3584, 3586, 3587, 3584, 3583, 3587, 3587, 3583, 3584, 3587, 3588, 3589, 3589, 3588, 3587, 3589, 3586, 3587, 3587, 3586, 3589, 3569, 3586, 3589, 3589, 3586, 3569, 3589, 3570, 3569, 3569, 3570, 3589, 3573, 3570, 3589, 3589, 3570, 3573, 3589, 3590, 3573, 3573, 3590, 3589, 3591, 3590, 3589, 3589, 3590, 3591, 3589, 3588, 3591, 3591, 3588, 3589, 3591, 3592, 3593, 3593, 3592, 3591, 3593, 3590, 3591, 3591, 3590, 3593, 3573, 3590, 3593, 3593, 3590, 3573, 3593, 3574, 3573, 3573, 3574, 3593, 3577, 3574, 3593, 3593, 3574, 3577, 3593, 3594, 3577, 3577, 3594, 3593, 3595, 3594, 3593, 3593, 3594, 3595, 3593, 3592, 3595, 3595, 3592, 3593, 3595, 3596, 3597, 3597, 3596, 3595, 3597, 3594, 3595, 3595, 3594, 3597, 3577, 3594, 3597, 3597, 3594, 3577, 3597, 3578, 3577, 3577, 3578, 3597, 3581, 3578, 3597, 3597, 3578, 3581, 3597, 3598, 3581, 3581, 3598, 3597, 3599, 3598, 3597, 3597, 3598, 3599, 3597, 3596, 3599, 3599, 3596, 3597]}"
  },
  {
    "path": "testdata/mesh.pretty.json",
    "content": "{\n    \"batches\": [\n        {\n            \"indexRange\": [\n                0, \n                33408\n            ], \n            \"usedBones\": [\n                22\n            ], \n            \"vertexRange\": [\n                0, \n                3600\n            ]\n        }\n    ], \n    \"colors\": [\n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080, \n        4278190080\n    ], \n    \"indices\": [\n        0, \n        1, \n        2, \n        2, \n        1, \n        0, \n        2, \n        3, \n        0, \n        0, \n        3, \n        2, \n        4, \n        5, \n        2, \n        2, \n        5, \n        4, \n        2, \n        1, \n        4, \n        4, \n        1, \n        2, \n        6, \n        7, \n        2, \n        2, \n        7, \n        6, \n        2, \n        5, \n        6, \n        6, \n        5, \n        2, \n        8, \n        3, \n        2, \n        2, \n        3, \n        8, \n        2, \n        7, \n        8, \n        8, \n        7, \n        2, \n        8, \n        7, \n        9, \n        9, \n        7, \n        8, \n        9, \n        10, \n        8, \n        8, \n        10, \n        9, \n        6, \n        11, \n        9, \n        9, \n        11, \n        6, \n        9, \n        7, \n        6, \n        6, \n        7, \n        9, \n        12, \n        13, \n        9, \n        9, \n        13, \n        12, \n        9, \n        11, \n        12, \n        12, \n        11, \n        9, \n        14, \n        10, \n        9, \n        9, \n        10, \n        14, \n        9, \n        13, \n        14, \n        14, \n        13, \n        9, \n        15, \n        16, \n        17, \n        17, \n        16, \n        15, \n        17, \n        18, \n        15, \n        15, \n        18, \n        17, \n        0, \n        3, \n        17, \n        17, \n        3, \n        0, \n        17, \n        16, \n        0, \n        0, \n        16, \n        17, \n        8, \n        19, \n        17, \n        17, \n        19, \n        8, \n        17, \n        3, \n        8, \n        8, \n        3, \n        17, \n        20, \n        18, \n        17, \n        17, \n        18, \n        20, \n        17, \n        19, \n        20, \n        20, \n        19, \n        17, \n        20, \n        19, \n        21, \n        21, \n        19, \n        20, \n        21, \n        22, \n        20, \n        20, \n        22, \n        21, \n        8, \n        10, \n        21, \n        21, \n        10, \n        8, \n        21, \n        19, \n        8, \n        8, \n        19, \n        21, \n        14, \n        23, \n        21, \n        21, \n        23, \n        14, \n        21, \n        10, \n        14, \n        14, \n        10, \n        21, \n        24, \n        22, \n        21, \n        21, \n        22, \n        24, \n        21, \n        23, \n        24, \n        24, \n        23, \n        21, \n        25, \n        26, \n        27, \n        27, \n        26, \n        25, \n        27, \n        28, \n        25, \n        25, \n        28, \n        27, \n        15, \n        18, \n        27, \n        27, \n        18, \n        15, \n        27, \n        26, \n        15, \n        15, \n        26, \n        27, \n        20, \n        29, \n        27, \n        27, \n        29, \n        20, \n        27, \n        18, \n        20, \n        20, \n        18, \n        27, \n        30, \n        28, \n        27, \n        27, \n        28, \n        30, \n        27, \n        29, \n        30, \n        30, \n        29, \n        27, \n        30, \n        29, \n        31, \n        31, \n        29, \n        30, \n        31, \n        32, \n        30, \n        30, \n        32, \n        31, \n        20, \n        22, \n        31, \n        31, \n        22, \n        20, \n        31, \n        29, \n        20, \n        20, \n        29, \n        31, \n        24, \n        33, \n        31, \n        31, \n        33, \n        24, \n        31, \n        22, \n        24, \n        24, \n        22, \n        31, \n        34, \n        32, \n        31, \n        31, \n        32, \n        34, \n        31, \n        33, \n        34, \n        34, \n        33, \n        31, \n        35, \n        36, \n        37, \n        37, \n        36, \n        35, \n        37, \n        38, \n        35, \n        35, \n        38, \n        37, \n        25, \n        28, \n        37, \n        37, \n        28, \n        25, \n        37, \n        36, \n        25, \n        25, \n        36, \n        37, \n        30, \n        39, \n        37, \n        37, \n        39, \n        30, \n        37, \n        28, \n        30, \n        30, \n        28, \n        37, \n        40, \n        38, \n        37, \n        37, \n        38, \n        40, \n        37, \n        39, \n        40, \n        40, \n        39, \n        37, \n        40, \n        39, \n        41, \n        41, \n        39, \n        40, \n        41, \n        42, \n        40, \n        40, \n        42, \n        41, \n        30, \n        32, \n        41, \n        41, \n        32, \n        30, \n        41, \n        39, \n        30, \n        30, \n        39, \n        41, \n        34, \n        43, \n        41, \n        41, \n        43, \n        34, \n        41, \n        32, \n        34, \n        34, \n        32, \n        41, \n        44, \n        42, \n        41, \n        41, \n        42, \n        44, \n        41, \n        43, \n        44, \n        44, \n        43, \n        41, \n        45, \n        46, \n        47, \n        47, \n        46, \n        45, \n        47, \n        48, \n        45, \n        45, \n        48, \n        47, \n        35, \n        38, \n        47, \n        47, \n        38, \n        35, \n        47, \n        46, \n        35, \n        35, \n        46, \n        47, \n        40, \n        49, \n        47, \n        47, \n        49, \n        40, \n        47, \n        38, \n        40, \n        40, \n        38, \n        47, \n        50, \n        48, \n        47, \n        47, \n        48, \n        50, \n        47, \n        49, \n        50, \n        50, \n        49, \n        47, \n        50, \n        49, \n        51, \n        51, \n        49, \n        50, \n        51, \n        52, \n        50, \n        50, \n        52, \n        51, \n        40, \n        42, \n        51, \n        51, \n        42, \n        40, \n        51, \n        49, \n        40, \n        40, \n        49, \n        51, \n        44, \n        53, \n        51, \n        51, \n        53, \n        44, \n        51, \n        42, \n        44, \n        44, \n        42, \n        51, \n        54, \n        52, \n        51, \n        51, \n        52, \n        54, \n        51, \n        53, \n        54, \n        54, \n        53, \n        51, \n        55, \n        56, \n        57, \n        57, \n        56, \n        55, \n        57, \n        58, \n        55, \n        55, \n        58, \n        57, \n        45, \n        48, \n        57, \n        57, \n        48, \n        45, \n        57, \n        56, \n        45, \n        45, \n        56, \n        57, \n        50, \n        59, \n        57, \n        57, \n        59, \n        50, \n        57, \n        48, \n        50, \n        50, \n        48, \n        57, \n        60, \n        58, \n        57, \n        57, \n        58, \n        60, \n        57, \n        59, \n        60, \n        60, \n        59, \n        57, \n        60, \n        59, \n        61, \n        61, \n        59, \n        60, \n        61, \n        62, \n        60, \n        60, \n        62, \n        61, \n        50, \n        52, \n        61, \n        61, \n        52, \n        50, \n        61, \n        59, \n        50, \n        50, \n        59, \n        61, \n        54, \n        63, \n        61, \n        61, \n        63, \n        54, \n        61, \n        52, \n        54, \n        54, \n        52, \n        61, \n        64, \n        62, \n        61, \n        61, \n        62, \n        64, \n        61, \n        63, \n        64, \n        64, \n        63, \n        61, \n        65, \n        66, \n        67, \n        67, \n        66, \n        65, \n        67, \n        68, \n        65, \n        65, \n        68, \n        67, \n        55, \n        58, \n        67, \n        67, \n        58, \n        55, \n        67, \n        66, \n        55, \n        55, \n        66, \n        67, \n        60, \n        69, \n        67, \n        67, \n        69, \n        60, \n        67, \n        58, \n        60, \n        60, \n        58, \n        67, \n        70, \n        68, \n        67, \n        67, \n        68, \n        70, \n        67, \n        69, \n        70, \n        70, \n        69, \n        67, \n        70, \n        69, \n        71, \n        71, \n        69, \n        70, \n        71, \n        72, \n        70, \n        70, \n        72, \n        71, \n        60, \n        62, \n        71, \n        71, \n        62, \n        60, \n        71, \n        69, \n        60, \n        60, \n        69, \n        71, \n        64, \n        73, \n        71, \n        71, \n        73, \n        64, \n        71, \n        62, \n        64, \n        64, \n        62, \n        71, \n        74, \n        72, \n        71, \n        71, \n        72, \n        74, \n        71, \n        73, \n        74, \n        74, \n        73, \n        71, \n        75, \n        76, \n        77, \n        77, \n        76, \n        75, \n        77, \n        78, \n        75, \n        75, \n        78, \n        77, \n        65, \n        68, \n        77, \n        77, \n        68, \n        65, \n        77, \n        76, \n        65, \n        65, \n        76, \n        77, \n        70, \n        79, \n        77, \n        77, \n        79, \n        70, \n        77, \n        68, \n        70, \n        70, \n        68, \n        77, \n        80, \n        78, \n        77, \n        77, \n        78, \n        80, \n        77, \n        79, \n        80, \n        80, \n        79, \n        77, \n        80, \n        79, \n        81, \n        81, \n        79, \n        80, \n        81, \n        82, \n        80, \n        80, \n        82, \n        81, \n        70, \n        72, \n        81, \n        81, \n        72, \n        70, \n        81, \n        79, \n        70, \n        70, \n        79, \n        81, \n        74, \n        83, \n        81, \n        81, \n        83, \n        74, \n        81, \n        72, \n        74, \n        74, \n        72, \n        81, \n        84, \n        82, \n        81, \n        81, \n        82, \n        84, \n        81, \n        83, \n        84, \n        84, \n        83, \n        81, \n        85, \n        86, \n        87, \n        87, \n        86, \n        85, \n        87, \n        88, \n        85, \n        85, \n        88, \n        87, \n        75, \n        78, \n        87, \n        87, \n        78, \n        75, \n        87, \n        86, \n        75, \n        75, \n        86, \n        87, \n        80, \n        89, \n        87, \n        87, \n        89, \n        80, \n        87, \n        78, \n        80, \n        80, \n        78, \n        87, \n        90, \n        88, \n        87, \n        87, \n        88, \n        90, \n        87, \n        89, \n        90, \n        90, \n        89, \n        87, \n        90, \n        89, \n        91, \n        91, \n        89, \n        90, \n        91, \n        92, \n        90, \n        90, \n        92, \n        91, \n        80, \n        82, \n        91, \n        91, \n        82, \n        80, \n        91, \n        89, \n        80, \n        80, \n        89, \n        91, \n        84, \n        93, \n        91, \n        91, \n        93, \n        84, \n        91, \n        82, \n        84, \n        84, \n        82, \n        91, \n        94, \n        92, \n        91, \n        91, \n        92, \n        94, \n        91, \n        93, \n        94, \n        94, \n        93, \n        91, \n        95, \n        96, \n        97, \n        97, \n        96, \n        95, \n        97, \n        98, \n        95, \n        95, \n        98, \n        97, \n        85, \n        88, \n        97, \n        97, \n        88, \n        85, \n        97, \n        96, \n        85, \n        85, \n        96, \n        97, \n        90, \n        99, \n        97, \n        97, \n        99, \n        90, \n        97, \n        88, \n        90, \n        90, \n        88, \n        97, \n        100, \n        98, \n        97, \n        97, \n        98, \n        100, \n        97, \n        99, \n        100, \n        100, \n        99, \n        97, \n        100, \n        99, \n        101, \n        101, \n        99, \n        100, \n        101, \n        102, \n        100, \n        100, \n        102, \n        101, \n        90, \n        92, \n        101, \n        101, \n        92, \n        90, \n        101, \n        99, \n        90, \n        90, \n        99, \n        101, \n        94, \n        103, \n        101, \n        101, \n        103, \n        94, \n        101, \n        92, \n        94, \n        94, \n        92, \n        101, \n        104, \n        102, \n        101, \n        101, \n        102, \n        104, \n        101, \n        103, \n        104, \n        104, \n        103, \n        101, \n        105, \n        106, \n        107, \n        107, \n        106, \n        105, \n        107, \n        108, \n        105, \n        105, \n        108, \n        107, \n        95, \n        98, \n        107, \n        107, \n        98, \n        95, \n        107, \n        106, \n        95, \n        95, \n        106, \n        107, \n        100, \n        109, \n        107, \n        107, \n        109, \n        100, \n        107, \n        98, \n        100, \n        100, \n        98, \n        107, \n        110, \n        108, \n        107, \n        107, \n        108, \n        110, \n        107, \n        109, \n        110, \n        110, \n        109, \n        107, \n        110, \n        109, \n        111, \n        111, \n        109, \n        110, \n        111, \n        112, \n        110, \n        110, \n        112, \n        111, \n        100, \n        102, \n        111, \n        111, \n        102, \n        100, \n        111, \n        109, \n        100, \n        100, \n        109, \n        111, \n        104, \n        113, \n        111, \n        111, \n        113, \n        104, \n        111, \n        102, \n        104, \n        104, \n        102, \n        111, \n        114, \n        112, \n        111, \n        111, \n        112, \n        114, \n        111, \n        113, \n        114, \n        114, \n        113, \n        111, \n        115, \n        116, \n        117, \n        117, \n        116, \n        115, \n        117, \n        118, \n        115, \n        115, \n        118, \n        117, \n        105, \n        108, \n        117, \n        117, \n        108, \n        105, \n        117, \n        116, \n        105, \n        105, \n        116, \n        117, \n        110, \n        119, \n        117, \n        117, \n        119, \n        110, \n        117, \n        108, \n        110, \n        110, \n        108, \n        117, \n        120, \n        118, \n        117, \n        117, \n        118, \n        120, \n        117, \n        119, \n        120, \n        120, \n        119, \n        117, \n        120, \n        119, \n        121, \n        121, \n        119, \n        120, \n        121, \n        122, \n        120, \n        120, \n        122, \n        121, \n        110, \n        112, \n        121, \n        121, \n        112, \n        110, \n        121, \n        119, \n        110, \n        110, \n        119, \n        121, \n        114, \n        123, \n        121, \n        121, \n        123, \n        114, \n        121, \n        112, \n        114, \n        114, \n        112, \n        121, \n        124, \n        122, \n        121, \n        121, \n        122, \n        124, \n        121, \n        123, \n        124, \n        124, \n        123, \n        121, \n        125, \n        126, \n        127, \n        127, \n        126, \n        125, \n        127, \n        128, \n        125, \n        125, \n        128, \n        127, \n        129, \n        130, \n        127, \n        127, \n        130, \n        129, \n        127, \n        126, \n        129, \n        129, \n        126, \n        127, \n        131, \n        132, \n        127, \n        127, \n        132, \n        131, \n        127, \n        130, \n        131, \n        131, \n        130, \n        127, \n        133, \n        128, \n        127, \n        127, \n        128, \n        133, \n        127, \n        132, \n        133, \n        133, \n        132, \n        127, \n        133, \n        132, \n        134, \n        134, \n        132, \n        133, \n        134, \n        135, \n        133, \n        133, \n        135, \n        134, \n        131, \n        136, \n        134, \n        134, \n        136, \n        131, \n        134, \n        132, \n        131, \n        131, \n        132, \n        134, \n        137, \n        138, \n        134, \n        134, \n        138, \n        137, \n        134, \n        136, \n        137, \n        137, \n        136, \n        134, \n        139, \n        135, \n        134, \n        134, \n        135, \n        139, \n        134, \n        138, \n        139, \n        139, \n        138, \n        134, \n        140, \n        141, \n        142, \n        142, \n        141, \n        140, \n        142, \n        143, \n        140, \n        140, \n        143, \n        142, \n        125, \n        128, \n        142, \n        142, \n        128, \n        125, \n        142, \n        141, \n        125, \n        125, \n        141, \n        142, \n        133, \n        144, \n        142, \n        142, \n        144, \n        133, \n        142, \n        128, \n        133, \n        133, \n        128, \n        142, \n        145, \n        143, \n        142, \n        142, \n        143, \n        145, \n        142, \n        144, \n        145, \n        145, \n        144, \n        142, \n        145, \n        144, \n        146, \n        146, \n        144, \n        145, \n        146, \n        147, \n        145, \n        145, \n        147, \n        146, \n        133, \n        135, \n        146, \n        146, \n        135, \n        133, \n        146, \n        144, \n        133, \n        133, \n        144, \n        146, \n        139, \n        148, \n        146, \n        146, \n        148, \n        139, \n        146, \n        135, \n        139, \n        139, \n        135, \n        146, \n        149, \n        147, \n        146, \n        146, \n        147, \n        149, \n        146, \n        148, \n        149, \n        149, \n        148, \n        146, \n        150, \n        151, \n        152, \n        152, \n        151, \n        150, \n        152, \n        153, \n        150, \n        150, \n        153, \n        152, \n        140, \n        143, \n        152, \n        152, \n        143, \n        140, \n        152, \n        151, \n        140, \n        140, \n        151, \n        152, \n        145, \n        154, \n        152, \n        152, \n        154, \n        145, \n        152, \n        143, \n        145, \n        145, \n        143, \n        152, \n        155, \n        153, \n        152, \n        152, \n        153, \n        155, \n        152, \n        154, \n        155, \n        155, \n        154, \n        152, \n        155, \n        154, \n        156, \n        156, \n        154, \n        155, \n        156, \n        157, \n        155, \n        155, \n        157, \n        156, \n        145, \n        147, \n        156, \n        156, \n        147, \n        145, \n        156, \n        154, \n        145, \n        145, \n        154, \n        156, \n        149, \n        158, \n        156, \n        156, \n        158, \n        149, \n        156, \n        147, \n        149, \n        149, \n        147, \n        156, \n        159, \n        157, \n        156, \n        156, \n        157, \n        159, \n        156, \n        158, \n        159, \n        159, \n        158, \n        156, \n        160, \n        161, \n        162, \n        162, \n        161, \n        160, \n        162, \n        163, \n        160, \n        160, \n        163, \n        162, \n        150, \n        153, \n        162, \n        162, \n        153, \n        150, \n        162, \n        161, \n        150, \n        150, \n        161, \n        162, \n        155, \n        164, \n        162, \n        162, \n        164, \n        155, \n        162, \n        153, \n        155, \n        155, \n        153, \n        162, \n        165, \n        163, \n        162, \n        162, \n        163, \n        165, \n        162, \n        164, \n        165, \n        165, \n        164, \n        162, \n        165, \n        164, \n        166, \n        166, \n        164, \n        165, \n        166, \n        167, \n        165, \n        165, \n        167, \n        166, \n        155, \n        157, \n        166, \n        166, \n        157, \n        155, \n        166, \n        164, \n        155, \n        155, \n        164, \n        166, \n        159, \n        168, \n        166, \n        166, \n        168, \n        159, \n        166, \n        157, \n        159, \n        159, \n        157, \n        166, \n        169, \n        167, \n        166, \n        166, \n        167, \n        169, \n        166, \n        168, \n        169, \n        169, \n        168, \n        166, \n        170, \n        171, \n        172, \n        172, \n        171, \n        170, \n        172, \n        173, \n        170, \n        170, \n        173, \n        172, \n        160, \n        163, \n        172, \n        172, \n        163, \n        160, \n        172, \n        171, \n        160, \n        160, \n        171, \n        172, \n        165, \n        174, \n        172, \n        172, \n        174, \n        165, \n        172, \n        163, \n        165, \n        165, \n        163, \n        172, \n        175, \n        173, \n        172, \n        172, \n        173, \n        175, \n        172, \n        174, \n        175, \n        175, \n        174, \n        172, \n        175, \n        174, \n        176, \n        176, \n        174, \n        175, \n        176, \n        177, \n        175, \n        175, \n        177, \n        176, \n        165, \n        167, \n        176, \n        176, \n        167, \n        165, \n        176, \n        174, \n        165, \n        165, \n        174, \n        176, \n        169, \n        178, \n        176, \n        176, \n        178, \n        169, \n        176, \n        167, \n        169, \n        169, \n        167, \n        176, \n        179, \n        177, \n        176, \n        176, \n        177, \n        179, \n        176, \n        178, \n        179, \n        179, \n        178, \n        176, \n        180, \n        181, \n        182, \n        182, \n        181, \n        180, \n        182, \n        183, \n        180, \n        180, \n        183, \n        182, \n        170, \n        173, \n        182, \n        182, \n        173, \n        170, \n        182, \n        181, \n        170, \n        170, \n        181, \n        182, \n        175, \n        184, \n        182, \n        182, \n        184, \n        175, \n        182, \n        173, \n        175, \n        175, \n        173, \n        182, \n        185, \n        183, \n        182, \n        182, \n        183, \n        185, \n        182, \n        184, \n        185, \n        185, \n        184, \n        182, \n        185, \n        184, \n        186, \n        186, \n        184, \n        185, \n        186, \n        187, \n        185, \n        185, \n        187, \n        186, \n        175, \n        177, \n        186, \n        186, \n        177, \n        175, \n        186, \n        184, \n        175, \n        175, \n        184, \n        186, \n        179, \n        188, \n        186, \n        186, \n        188, \n        179, \n        186, \n        177, \n        179, \n        179, \n        177, \n        186, \n        189, \n        187, \n        186, \n        186, \n        187, \n        189, \n        186, \n        188, \n        189, \n        189, \n        188, \n        186, \n        190, \n        191, \n        192, \n        192, \n        191, \n        190, \n        192, \n        193, \n        190, \n        190, \n        193, \n        192, \n        180, \n        183, \n        192, \n        192, \n        183, \n        180, \n        192, \n        191, \n        180, \n        180, \n        191, \n        192, \n        185, \n        194, \n        192, \n        192, \n        194, \n        185, \n        192, \n        183, \n        185, \n        185, \n        183, \n        192, \n        195, \n        193, \n        192, \n        192, \n        193, \n        195, \n        192, \n        194, \n        195, \n        195, \n        194, \n        192, \n        195, \n        194, \n        196, \n        196, \n        194, \n        195, \n        196, \n        197, \n        195, \n        195, \n        197, \n        196, \n        185, \n        187, \n        196, \n        196, \n        187, \n        185, \n        196, \n        194, \n        185, \n        185, \n        194, \n        196, \n        189, \n        198, \n        196, \n        196, \n        198, \n        189, \n        196, \n        187, \n        189, \n        189, \n        187, \n        196, \n        199, \n        197, \n        196, \n        196, \n        197, \n        199, \n        196, \n        198, \n        199, \n        199, \n        198, \n        196, \n        200, \n        201, \n        202, \n        202, \n        201, \n        200, \n        202, \n        203, \n        200, \n        200, \n        203, \n        202, \n        190, \n        193, \n        202, \n        202, \n        193, \n        190, \n        202, \n        201, \n        190, \n        190, \n        201, \n        202, \n        195, \n        204, \n        202, \n        202, \n        204, \n        195, \n        202, \n        193, \n        195, \n        195, \n        193, \n        202, \n        205, \n        203, \n        202, \n        202, \n        203, \n        205, \n        202, \n        204, \n        205, \n        205, \n        204, \n        202, \n        205, \n        204, \n        206, \n        206, \n        204, \n        205, \n        206, \n        207, \n        205, \n        205, \n        207, \n        206, \n        195, \n        197, \n        206, \n        206, \n        197, \n        195, \n        206, \n        204, \n        195, \n        195, \n        204, \n        206, \n        199, \n        208, \n        206, \n        206, \n        208, \n        199, \n        206, \n        197, \n        199, \n        199, \n        197, \n        206, \n        209, \n        207, \n        206, \n        206, \n        207, \n        209, \n        206, \n        208, \n        209, \n        209, \n        208, \n        206, \n        210, \n        211, \n        212, \n        212, \n        211, \n        210, \n        212, \n        213, \n        210, \n        210, \n        213, \n        212, \n        200, \n        203, \n        212, \n        212, \n        203, \n        200, \n        212, \n        211, \n        200, \n        200, \n        211, \n        212, \n        205, \n        214, \n        212, \n        212, \n        214, \n        205, \n        212, \n        203, \n        205, \n        205, \n        203, \n        212, \n        215, \n        213, \n        212, \n        212, \n        213, \n        215, \n        212, \n        214, \n        215, \n        215, \n        214, \n        212, \n        215, \n        214, \n        216, \n        216, \n        214, \n        215, \n        216, \n        217, \n        215, \n        215, \n        217, \n        216, \n        205, \n        207, \n        216, \n        216, \n        207, \n        205, \n        216, \n        214, \n        205, \n        205, \n        214, \n        216, \n        209, \n        218, \n        216, \n        216, \n        218, \n        209, \n        216, \n        207, \n        209, \n        209, \n        207, \n        216, \n        219, \n        217, \n        216, \n        216, \n        217, \n        219, \n        216, \n        218, \n        219, \n        219, \n        218, \n        216, \n        220, \n        221, \n        222, \n        222, \n        221, \n        220, \n        222, \n        223, \n        220, \n        220, \n        223, \n        222, \n        210, \n        213, \n        222, \n        222, \n        213, \n        210, \n        222, \n        221, \n        210, \n        210, \n        221, \n        222, \n        215, \n        224, \n        222, \n        222, \n        224, \n        215, \n        222, \n        213, \n        215, \n        215, \n        213, \n        222, \n        225, \n        223, \n        222, \n        222, \n        223, \n        225, \n        222, \n        224, \n        225, \n        225, \n        224, \n        222, \n        225, \n        224, \n        226, \n        226, \n        224, \n        225, \n        226, \n        227, \n        225, \n        225, \n        227, \n        226, \n        215, \n        217, \n        226, \n        226, \n        217, \n        215, \n        226, \n        224, \n        215, \n        215, \n        224, \n        226, \n        219, \n        228, \n        226, \n        226, \n        228, \n        219, \n        226, \n        217, \n        219, \n        219, \n        217, \n        226, \n        229, \n        227, \n        226, \n        226, \n        227, \n        229, \n        226, \n        228, \n        229, \n        229, \n        228, \n        226, \n        230, \n        231, \n        232, \n        232, \n        231, \n        230, \n        232, \n        233, \n        230, \n        230, \n        233, \n        232, \n        220, \n        223, \n        232, \n        232, \n        223, \n        220, \n        232, \n        231, \n        220, \n        220, \n        231, \n        232, \n        225, \n        234, \n        232, \n        232, \n        234, \n        225, \n        232, \n        223, \n        225, \n        225, \n        223, \n        232, \n        235, \n        233, \n        232, \n        232, \n        233, \n        235, \n        232, \n        234, \n        235, \n        235, \n        234, \n        232, \n        235, \n        234, \n        236, \n        236, \n        234, \n        235, \n        236, \n        237, \n        235, \n        235, \n        237, \n        236, \n        225, \n        227, \n        236, \n        236, \n        227, \n        225, \n        236, \n        234, \n        225, \n        225, \n        234, \n        236, \n        229, \n        238, \n        236, \n        236, \n        238, \n        229, \n        236, \n        227, \n        229, \n        229, \n        227, \n        236, \n        239, \n        237, \n        236, \n        236, \n        237, \n        239, \n        236, \n        238, \n        239, \n        239, \n        238, \n        236, \n        240, \n        241, \n        242, \n        242, \n        241, \n        240, \n        242, \n        243, \n        240, \n        240, \n        243, \n        242, \n        230, \n        233, \n        242, \n        242, \n        233, \n        230, \n        242, \n        241, \n        230, \n        230, \n        241, \n        242, \n        235, \n        244, \n        242, \n        242, \n        244, \n        235, \n        242, \n        233, \n        235, \n        235, \n        233, \n        242, \n        245, \n        243, \n        242, \n        242, \n        243, \n        245, \n        242, \n        244, \n        245, \n        245, \n        244, \n        242, \n        245, \n        244, \n        246, \n        246, \n        244, \n        245, \n        246, \n        247, \n        245, \n        245, \n        247, \n        246, \n        235, \n        237, \n        246, \n        246, \n        237, \n        235, \n        246, \n        244, \n        235, \n        235, \n        244, \n        246, \n        239, \n        248, \n        246, \n        246, \n        248, \n        239, \n        246, \n        237, \n        239, \n        239, \n        237, \n        246, \n        249, \n        247, \n        246, \n        246, \n        247, \n        249, \n        246, \n        248, \n        249, \n        249, \n        248, \n        246, \n        250, \n        251, \n        252, \n        252, \n        251, \n        250, \n        252, \n        253, \n        250, \n        250, \n        253, \n        252, \n        254, \n        255, \n        252, \n        252, \n        255, \n        254, \n        252, \n        251, \n        254, \n        254, \n        251, \n        252, \n        256, \n        257, \n        252, \n        252, \n        257, \n        256, \n        252, \n        255, \n        256, \n        256, \n        255, \n        252, \n        258, \n        253, \n        252, \n        252, \n        253, \n        258, \n        252, \n        257, \n        258, \n        258, \n        257, \n        252, \n        258, \n        257, \n        259, \n        259, \n        257, \n        258, \n        259, \n        260, \n        258, \n        258, \n        260, \n        259, \n        256, \n        261, \n        259, \n        259, \n        261, \n        256, \n        259, \n        257, \n        256, \n        256, \n        257, \n        259, \n        262, \n        263, \n        259, \n        259, \n        263, \n        262, \n        259, \n        261, \n        262, \n        262, \n        261, \n        259, \n        264, \n        260, \n        259, \n        259, \n        260, \n        264, \n        259, \n        263, \n        264, \n        264, \n        263, \n        259, \n        265, \n        266, \n        267, \n        267, \n        266, \n        265, \n        267, \n        268, \n        265, \n        265, \n        268, \n        267, \n        250, \n        253, \n        267, \n        267, \n        253, \n        250, \n        267, \n        266, \n        250, \n        250, \n        266, \n        267, \n        258, \n        269, \n        267, \n        267, \n        269, \n        258, \n        267, \n        253, \n        258, \n        258, \n        253, \n        267, \n        270, \n        268, \n        267, \n        267, \n        268, \n        270, \n        267, \n        269, \n        270, \n        270, \n        269, \n        267, \n        270, \n        269, \n        271, \n        271, \n        269, \n        270, \n        271, \n        272, \n        270, \n        270, \n        272, \n        271, \n        258, \n        260, \n        271, \n        271, \n        260, \n        258, \n        271, \n        269, \n        258, \n        258, \n        269, \n        271, \n        264, \n        273, \n        271, \n        271, \n        273, \n        264, \n        271, \n        260, \n        264, \n        264, \n        260, \n        271, \n        274, \n        272, \n        271, \n        271, \n        272, \n        274, \n        271, \n        273, \n        274, \n        274, \n        273, \n        271, \n        275, \n        276, \n        277, \n        277, \n        276, \n        275, \n        277, \n        278, \n        275, \n        275, \n        278, \n        277, \n        265, \n        268, \n        277, \n        277, \n        268, \n        265, \n        277, \n        276, \n        265, \n        265, \n        276, \n        277, \n        270, \n        279, \n        277, \n        277, \n        279, \n        270, \n        277, \n        268, \n        270, \n        270, \n        268, \n        277, \n        280, \n        278, \n        277, \n        277, \n        278, \n        280, \n        277, \n        279, \n        280, \n        280, \n        279, \n        277, \n        280, \n        279, \n        281, \n        281, \n        279, \n        280, \n        281, \n        282, \n        280, \n        280, \n        282, \n        281, \n        270, \n        272, \n        281, \n        281, \n        272, \n        270, \n        281, \n        279, \n        270, \n        270, \n        279, \n        281, \n        274, \n        283, \n        281, \n        281, \n        283, \n        274, \n        281, \n        272, \n        274, \n        274, \n        272, \n        281, \n        284, \n        282, \n        281, \n        281, \n        282, \n        284, \n        281, \n        283, \n        284, \n        284, \n        283, \n        281, \n        285, \n        286, \n        287, \n        287, \n        286, \n        285, \n        287, \n        288, \n        285, \n        285, \n        288, \n        287, \n        275, \n        278, \n        287, \n        287, \n        278, \n        275, \n        287, \n        286, \n        275, \n        275, \n        286, \n        287, \n        280, \n        289, \n        287, \n        287, \n        289, \n        280, \n        287, \n        278, \n        280, \n        280, \n        278, \n        287, \n        290, \n        288, \n        287, \n        287, \n        288, \n        290, \n        287, \n        289, \n        290, \n        290, \n        289, \n        287, \n        290, \n        289, \n        291, \n        291, \n        289, \n        290, \n        291, \n        292, \n        290, \n        290, \n        292, \n        291, \n        280, \n        282, \n        291, \n        291, \n        282, \n        280, \n        291, \n        289, \n        280, \n        280, \n        289, \n        291, \n        284, \n        293, \n        291, \n        291, \n        293, \n        284, \n        291, \n        282, \n        284, \n        284, \n        282, \n        291, \n        294, \n        292, \n        291, \n        291, \n        292, \n        294, \n        291, \n        293, \n        294, \n        294, \n        293, \n        291, \n        295, \n        296, \n        297, \n        297, \n        296, \n        295, \n        297, \n        298, \n        295, \n        295, \n        298, \n        297, \n        285, \n        288, \n        297, \n        297, \n        288, \n        285, \n        297, \n        296, \n        285, \n        285, \n        296, \n        297, \n        290, \n        299, \n        297, \n        297, \n        299, \n        290, \n        297, \n        288, \n        290, \n        290, \n        288, \n        297, \n        300, \n        298, \n        297, \n        297, \n        298, \n        300, \n        297, \n        299, \n        300, \n        300, \n        299, \n        297, \n        300, \n        299, \n        301, \n        301, \n        299, \n        300, \n        301, \n        302, \n        300, \n        300, \n        302, \n        301, \n        290, \n        292, \n        301, \n        301, \n        292, \n        290, \n        301, \n        299, \n        290, \n        290, \n        299, \n        301, \n        294, \n        303, \n        301, \n        301, \n        303, \n        294, \n        301, \n        292, \n        294, \n        294, \n        292, \n        301, \n        304, \n        302, \n        301, \n        301, \n        302, \n        304, \n        301, \n        303, \n        304, \n        304, \n        303, \n        301, \n        305, \n        306, \n        307, \n        307, \n        306, \n        305, \n        307, \n        308, \n        305, \n        305, \n        308, \n        307, \n        295, \n        298, \n        307, \n        307, \n        298, \n        295, \n        307, \n        306, \n        295, \n        295, \n        306, \n        307, \n        300, \n        309, \n        307, \n        307, \n        309, \n        300, \n        307, \n        298, \n        300, \n        300, \n        298, \n        307, \n        310, \n        308, \n        307, \n        307, \n        308, \n        310, \n        307, \n        309, \n        310, \n        310, \n        309, \n        307, \n        310, \n        309, \n        311, \n        311, \n        309, \n        310, \n        311, \n        312, \n        310, \n        310, \n        312, \n        311, \n        300, \n        302, \n        311, \n        311, \n        302, \n        300, \n        311, \n        309, \n        300, \n        300, \n        309, \n        311, \n        304, \n        313, \n        311, \n        311, \n        313, \n        304, \n        311, \n        302, \n        304, \n        304, \n        302, \n        311, \n        314, \n        312, \n        311, \n        311, \n        312, \n        314, \n        311, \n        313, \n        314, \n        314, \n        313, \n        311, \n        315, \n        316, \n        317, \n        317, \n        316, \n        315, \n        317, \n        318, \n        315, \n        315, \n        318, \n        317, \n        305, \n        308, \n        317, \n        317, \n        308, \n        305, \n        317, \n        316, \n        305, \n        305, \n        316, \n        317, \n        310, \n        319, \n        317, \n        317, \n        319, \n        310, \n        317, \n        308, \n        310, \n        310, \n        308, \n        317, \n        320, \n        318, \n        317, \n        317, \n        318, \n        320, \n        317, \n        319, \n        320, \n        320, \n        319, \n        317, \n        320, \n        319, \n        321, \n        321, \n        319, \n        320, \n        321, \n        322, \n        320, \n        320, \n        322, \n        321, \n        310, \n        312, \n        321, \n        321, \n        312, \n        310, \n        321, \n        319, \n        310, \n        310, \n        319, \n        321, \n        314, \n        323, \n        321, \n        321, \n        323, \n        314, \n        321, \n        312, \n        314, \n        314, \n        312, \n        321, \n        324, \n        322, \n        321, \n        321, \n        322, \n        324, \n        321, \n        323, \n        324, \n        324, \n        323, \n        321, \n        325, \n        326, \n        327, \n        327, \n        326, \n        325, \n        327, \n        328, \n        325, \n        325, \n        328, \n        327, \n        315, \n        318, \n        327, \n        327, \n        318, \n        315, \n        327, \n        326, \n        315, \n        315, \n        326, \n        327, \n        320, \n        329, \n        327, \n        327, \n        329, \n        320, \n        327, \n        318, \n        320, \n        320, \n        318, \n        327, \n        330, \n        328, \n        327, \n        327, \n        328, \n        330, \n        327, \n        329, \n        330, \n        330, \n        329, \n        327, \n        330, \n        329, \n        331, \n        331, \n        329, \n        330, \n        331, \n        332, \n        330, \n        330, \n        332, \n        331, \n        320, \n        322, \n        331, \n        331, \n        322, \n        320, \n        331, \n        329, \n        320, \n        320, \n        329, \n        331, \n        324, \n        333, \n        331, \n        331, \n        333, \n        324, \n        331, \n        322, \n        324, \n        324, \n        322, \n        331, \n        334, \n        332, \n        331, \n        331, \n        332, \n        334, \n        331, \n        333, \n        334, \n        334, \n        333, \n        331, \n        335, \n        336, \n        337, \n        337, \n        336, \n        335, \n        337, \n        338, \n        335, \n        335, \n        338, \n        337, \n        325, \n        328, \n        337, \n        337, \n        328, \n        325, \n        337, \n        336, \n        325, \n        325, \n        336, \n        337, \n        330, \n        339, \n        337, \n        337, \n        339, \n        330, \n        337, \n        328, \n        330, \n        330, \n        328, \n        337, \n        340, \n        338, \n        337, \n        337, \n        338, \n        340, \n        337, \n        339, \n        340, \n        340, \n        339, \n        337, \n        340, \n        339, \n        341, \n        341, \n        339, \n        340, \n        341, \n        342, \n        340, \n        340, \n        342, \n        341, \n        330, \n        332, \n        341, \n        341, \n        332, \n        330, \n        341, \n        339, \n        330, \n        330, \n        339, \n        341, \n        334, \n        343, \n        341, \n        341, \n        343, \n        334, \n        341, \n        332, \n        334, \n        334, \n        332, \n        341, \n        344, \n        342, \n        341, \n        341, \n        342, \n        344, \n        341, \n        343, \n        344, \n        344, \n        343, \n        341, \n        345, \n        346, \n        347, \n        347, \n        346, \n        345, \n        347, \n        348, \n        345, \n        345, \n        348, \n        347, \n        335, \n        338, \n        347, \n        347, \n        338, \n        335, \n        347, \n        346, \n        335, \n        335, \n        346, \n        347, \n        340, \n        349, \n        347, \n        347, \n        349, \n        340, \n        347, \n        338, \n        340, \n        340, \n        338, \n        347, \n        350, \n        348, \n        347, \n        347, \n        348, \n        350, \n        347, \n        349, \n        350, \n        350, \n        349, \n        347, \n        350, \n        349, \n        351, \n        351, \n        349, \n        350, \n        351, \n        352, \n        350, \n        350, \n        352, \n        351, \n        340, \n        342, \n        351, \n        351, \n        342, \n        340, \n        351, \n        349, \n        340, \n        340, \n        349, \n        351, \n        344, \n        353, \n        351, \n        351, \n        353, \n        344, \n        351, \n        342, \n        344, \n        344, \n        342, \n        351, \n        354, \n        352, \n        351, \n        351, \n        352, \n        354, \n        351, \n        353, \n        354, \n        354, \n        353, \n        351, \n        355, \n        356, \n        357, \n        357, \n        356, \n        355, \n        357, \n        358, \n        355, \n        355, \n        358, \n        357, \n        345, \n        348, \n        357, \n        357, \n        348, \n        345, \n        357, \n        356, \n        345, \n        345, \n        356, \n        357, \n        350, \n        359, \n        357, \n        357, \n        359, \n        350, \n        357, \n        348, \n        350, \n        350, \n        348, \n        357, \n        360, \n        358, \n        357, \n        357, \n        358, \n        360, \n        357, \n        359, \n        360, \n        360, \n        359, \n        357, \n        360, \n        359, \n        361, \n        361, \n        359, \n        360, \n        361, \n        362, \n        360, \n        360, \n        362, \n        361, \n        350, \n        352, \n        361, \n        361, \n        352, \n        350, \n        361, \n        359, \n        350, \n        350, \n        359, \n        361, \n        354, \n        363, \n        361, \n        361, \n        363, \n        354, \n        361, \n        352, \n        354, \n        354, \n        352, \n        361, \n        364, \n        362, \n        361, \n        361, \n        362, \n        364, \n        361, \n        363, \n        364, \n        364, \n        363, \n        361, \n        365, \n        366, \n        367, \n        367, \n        366, \n        365, \n        367, \n        368, \n        365, \n        365, \n        368, \n        367, \n        355, \n        358, \n        367, \n        367, \n        358, \n        355, \n        367, \n        366, \n        355, \n        355, \n        366, \n        367, \n        360, \n        369, \n        367, \n        367, \n        369, \n        360, \n        367, \n        358, \n        360, \n        360, \n        358, \n        367, \n        370, \n        368, \n        367, \n        367, \n        368, \n        370, \n        367, \n        369, \n        370, \n        370, \n        369, \n        367, \n        370, \n        369, \n        371, \n        371, \n        369, \n        370, \n        371, \n        372, \n        370, \n        370, \n        372, \n        371, \n        360, \n        362, \n        371, \n        371, \n        362, \n        360, \n        371, \n        369, \n        360, \n        360, \n        369, \n        371, \n        364, \n        373, \n        371, \n        371, \n        373, \n        364, \n        371, \n        362, \n        364, \n        364, \n        362, \n        371, \n        374, \n        372, \n        371, \n        371, \n        372, \n        374, \n        371, \n        373, \n        374, \n        374, \n        373, \n        371, \n        375, \n        376, \n        377, \n        377, \n        376, \n        375, \n        377, \n        378, \n        375, \n        375, \n        378, \n        377, \n        379, \n        380, \n        377, \n        377, \n        380, \n        379, \n        377, \n        376, \n        379, \n        379, \n        376, \n        377, \n        381, \n        382, \n        377, \n        377, \n        382, \n        381, \n        377, \n        380, \n        381, \n        381, \n        380, \n        377, \n        383, \n        378, \n        377, \n        377, \n        378, \n        383, \n        377, \n        382, \n        383, \n        383, \n        382, \n        377, \n        383, \n        382, \n        384, \n        384, \n        382, \n        383, \n        384, \n        385, \n        383, \n        383, \n        385, \n        384, \n        381, \n        386, \n        384, \n        384, \n        386, \n        381, \n        384, \n        382, \n        381, \n        381, \n        382, \n        384, \n        387, \n        388, \n        384, \n        384, \n        388, \n        387, \n        384, \n        386, \n        387, \n        387, \n        386, \n        384, \n        389, \n        385, \n        384, \n        384, \n        385, \n        389, \n        384, \n        388, \n        389, \n        389, \n        388, \n        384, \n        390, \n        391, \n        392, \n        392, \n        391, \n        390, \n        392, \n        393, \n        390, \n        390, \n        393, \n        392, \n        375, \n        378, \n        392, \n        392, \n        378, \n        375, \n        392, \n        391, \n        375, \n        375, \n        391, \n        392, \n        383, \n        394, \n        392, \n        392, \n        394, \n        383, \n        392, \n        378, \n        383, \n        383, \n        378, \n        392, \n        395, \n        393, \n        392, \n        392, \n        393, \n        395, \n        392, \n        394, \n        395, \n        395, \n        394, \n        392, \n        395, \n        394, \n        396, \n        396, \n        394, \n        395, \n        396, \n        397, \n        395, \n        395, \n        397, \n        396, \n        383, \n        385, \n        396, \n        396, \n        385, \n        383, \n        396, \n        394, \n        383, \n        383, \n        394, \n        396, \n        389, \n        398, \n        396, \n        396, \n        398, \n        389, \n        396, \n        385, \n        389, \n        389, \n        385, \n        396, \n        399, \n        397, \n        396, \n        396, \n        397, \n        399, \n        396, \n        398, \n        399, \n        399, \n        398, \n        396, \n        400, \n        401, \n        402, \n        402, \n        401, \n        400, \n        402, \n        403, \n        400, \n        400, \n        403, \n        402, \n        390, \n        393, \n        402, \n        402, \n        393, \n        390, \n        402, \n        401, \n        390, \n        390, \n        401, \n        402, \n        395, \n        404, \n        402, \n        402, \n        404, \n        395, \n        402, \n        393, \n        395, \n        395, \n        393, \n        402, \n        405, \n        403, \n        402, \n        402, \n        403, \n        405, \n        402, \n        404, \n        405, \n        405, \n        404, \n        402, \n        405, \n        404, \n        406, \n        406, \n        404, \n        405, \n        406, \n        407, \n        405, \n        405, \n        407, \n        406, \n        395, \n        397, \n        406, \n        406, \n        397, \n        395, \n        406, \n        404, \n        395, \n        395, \n        404, \n        406, \n        399, \n        408, \n        406, \n        406, \n        408, \n        399, \n        406, \n        397, \n        399, \n        399, \n        397, \n        406, \n        409, \n        407, \n        406, \n        406, \n        407, \n        409, \n        406, \n        408, \n        409, \n        409, \n        408, \n        406, \n        410, \n        411, \n        412, \n        412, \n        411, \n        410, \n        412, \n        413, \n        410, \n        410, \n        413, \n        412, \n        400, \n        403, \n        412, \n        412, \n        403, \n        400, \n        412, \n        411, \n        400, \n        400, \n        411, \n        412, \n        405, \n        414, \n        412, \n        412, \n        414, \n        405, \n        412, \n        403, \n        405, \n        405, \n        403, \n        412, \n        415, \n        413, \n        412, \n        412, \n        413, \n        415, \n        412, \n        414, \n        415, \n        415, \n        414, \n        412, \n        415, \n        414, \n        416, \n        416, \n        414, \n        415, \n        416, \n        417, \n        415, \n        415, \n        417, \n        416, \n        405, \n        407, \n        416, \n        416, \n        407, \n        405, \n        416, \n        414, \n        405, \n        405, \n        414, \n        416, \n        409, \n        418, \n        416, \n        416, \n        418, \n        409, \n        416, \n        407, \n        409, \n        409, \n        407, \n        416, \n        419, \n        417, \n        416, \n        416, \n        417, \n        419, \n        416, \n        418, \n        419, \n        419, \n        418, \n        416, \n        420, \n        421, \n        422, \n        422, \n        421, \n        420, \n        422, \n        423, \n        420, \n        420, \n        423, \n        422, \n        410, \n        413, \n        422, \n        422, \n        413, \n        410, \n        422, \n        421, \n        410, \n        410, \n        421, \n        422, \n        415, \n        424, \n        422, \n        422, \n        424, \n        415, \n        422, \n        413, \n        415, \n        415, \n        413, \n        422, \n        425, \n        423, \n        422, \n        422, \n        423, \n        425, \n        422, \n        424, \n        425, \n        425, \n        424, \n        422, \n        425, \n        424, \n        426, \n        426, \n        424, \n        425, \n        426, \n        427, \n        425, \n        425, \n        427, \n        426, \n        415, \n        417, \n        426, \n        426, \n        417, \n        415, \n        426, \n        424, \n        415, \n        415, \n        424, \n        426, \n        419, \n        428, \n        426, \n        426, \n        428, \n        419, \n        426, \n        417, \n        419, \n        419, \n        417, \n        426, \n        429, \n        427, \n        426, \n        426, \n        427, \n        429, \n        426, \n        428, \n        429, \n        429, \n        428, \n        426, \n        430, \n        431, \n        432, \n        432, \n        431, \n        430, \n        432, \n        433, \n        430, \n        430, \n        433, \n        432, \n        420, \n        423, \n        432, \n        432, \n        423, \n        420, \n        432, \n        431, \n        420, \n        420, \n        431, \n        432, \n        425, \n        434, \n        432, \n        432, \n        434, \n        425, \n        432, \n        423, \n        425, \n        425, \n        423, \n        432, \n        435, \n        433, \n        432, \n        432, \n        433, \n        435, \n        432, \n        434, \n        435, \n        435, \n        434, \n        432, \n        435, \n        434, \n        436, \n        436, \n        434, \n        435, \n        436, \n        437, \n        435, \n        435, \n        437, \n        436, \n        425, \n        427, \n        436, \n        436, \n        427, \n        425, \n        436, \n        434, \n        425, \n        425, \n        434, \n        436, \n        429, \n        438, \n        436, \n        436, \n        438, \n        429, \n        436, \n        427, \n        429, \n        429, \n        427, \n        436, \n        439, \n        437, \n        436, \n        436, \n        437, \n        439, \n        436, \n        438, \n        439, \n        439, \n        438, \n        436, \n        440, \n        441, \n        442, \n        442, \n        441, \n        440, \n        442, \n        443, \n        440, \n        440, \n        443, \n        442, \n        430, \n        433, \n        442, \n        442, \n        433, \n        430, \n        442, \n        441, \n        430, \n        430, \n        441, \n        442, \n        435, \n        444, \n        442, \n        442, \n        444, \n        435, \n        442, \n        433, \n        435, \n        435, \n        433, \n        442, \n        445, \n        443, \n        442, \n        442, \n        443, \n        445, \n        442, \n        444, \n        445, \n        445, \n        444, \n        442, \n        445, \n        444, \n        446, \n        446, \n        444, \n        445, \n        446, \n        447, \n        445, \n        445, \n        447, \n        446, \n        435, \n        437, \n        446, \n        446, \n        437, \n        435, \n        446, \n        444, \n        435, \n        435, \n        444, \n        446, \n        439, \n        448, \n        446, \n        446, \n        448, \n        439, \n        446, \n        437, \n        439, \n        439, \n        437, \n        446, \n        449, \n        447, \n        446, \n        446, \n        447, \n        449, \n        446, \n        448, \n        449, \n        449, \n        448, \n        446, \n        450, \n        451, \n        452, \n        452, \n        451, \n        450, \n        452, \n        453, \n        450, \n        450, \n        453, \n        452, \n        440, \n        443, \n        452, \n        452, \n        443, \n        440, \n        452, \n        451, \n        440, \n        440, \n        451, \n        452, \n        445, \n        454, \n        452, \n        452, \n        454, \n        445, \n        452, \n        443, \n        445, \n        445, \n        443, \n        452, \n        455, \n        453, \n        452, \n        452, \n        453, \n        455, \n        452, \n        454, \n        455, \n        455, \n        454, \n        452, \n        455, \n        454, \n        456, \n        456, \n        454, \n        455, \n        456, \n        457, \n        455, \n        455, \n        457, \n        456, \n        445, \n        447, \n        456, \n        456, \n        447, \n        445, \n        456, \n        454, \n        445, \n        445, \n        454, \n        456, \n        449, \n        458, \n        456, \n        456, \n        458, \n        449, \n        456, \n        447, \n        449, \n        449, \n        447, \n        456, \n        459, \n        457, \n        456, \n        456, \n        457, \n        459, \n        456, \n        458, \n        459, \n        459, \n        458, \n        456, \n        460, \n        461, \n        462, \n        462, \n        461, \n        460, \n        462, \n        463, \n        460, \n        460, \n        463, \n        462, \n        450, \n        453, \n        462, \n        462, \n        453, \n        450, \n        462, \n        461, \n        450, \n        450, \n        461, \n        462, \n        455, \n        464, \n        462, \n        462, \n        464, \n        455, \n        462, \n        453, \n        455, \n        455, \n        453, \n        462, \n        465, \n        463, \n        462, \n        462, \n        463, \n        465, \n        462, \n        464, \n        465, \n        465, \n        464, \n        462, \n        465, \n        464, \n        466, \n        466, \n        464, \n        465, \n        466, \n        467, \n        465, \n        465, \n        467, \n        466, \n        455, \n        457, \n        466, \n        466, \n        457, \n        455, \n        466, \n        464, \n        455, \n        455, \n        464, \n        466, \n        459, \n        468, \n        466, \n        466, \n        468, \n        459, \n        466, \n        457, \n        459, \n        459, \n        457, \n        466, \n        469, \n        467, \n        466, \n        466, \n        467, \n        469, \n        466, \n        468, \n        469, \n        469, \n        468, \n        466, \n        470, \n        471, \n        472, \n        472, \n        471, \n        470, \n        472, \n        473, \n        470, \n        470, \n        473, \n        472, \n        460, \n        463, \n        472, \n        472, \n        463, \n        460, \n        472, \n        471, \n        460, \n        460, \n        471, \n        472, \n        465, \n        474, \n        472, \n        472, \n        474, \n        465, \n        472, \n        463, \n        465, \n        465, \n        463, \n        472, \n        475, \n        473, \n        472, \n        472, \n        473, \n        475, \n        472, \n        474, \n        475, \n        475, \n        474, \n        472, \n        475, \n        474, \n        476, \n        476, \n        474, \n        475, \n        476, \n        477, \n        475, \n        475, \n        477, \n        476, \n        465, \n        467, \n        476, \n        476, \n        467, \n        465, \n        476, \n        474, \n        465, \n        465, \n        474, \n        476, \n        469, \n        478, \n        476, \n        476, \n        478, \n        469, \n        476, \n        467, \n        469, \n        469, \n        467, \n        476, \n        479, \n        477, \n        476, \n        476, \n        477, \n        479, \n        476, \n        478, \n        479, \n        479, \n        478, \n        476, \n        480, \n        481, \n        482, \n        482, \n        481, \n        480, \n        482, \n        483, \n        480, \n        480, \n        483, \n        482, \n        470, \n        473, \n        482, \n        482, \n        473, \n        470, \n        482, \n        481, \n        470, \n        470, \n        481, \n        482, \n        475, \n        484, \n        482, \n        482, \n        484, \n        475, \n        482, \n        473, \n        475, \n        475, \n        473, \n        482, \n        485, \n        483, \n        482, \n        482, \n        483, \n        485, \n        482, \n        484, \n        485, \n        485, \n        484, \n        482, \n        485, \n        484, \n        486, \n        486, \n        484, \n        485, \n        486, \n        487, \n        485, \n        485, \n        487, \n        486, \n        475, \n        477, \n        486, \n        486, \n        477, \n        475, \n        486, \n        484, \n        475, \n        475, \n        484, \n        486, \n        479, \n        488, \n        486, \n        486, \n        488, \n        479, \n        486, \n        477, \n        479, \n        479, \n        477, \n        486, \n        489, \n        487, \n        486, \n        486, \n        487, \n        489, \n        486, \n        488, \n        489, \n        489, \n        488, \n        486, \n        490, \n        491, \n        492, \n        492, \n        491, \n        490, \n        492, \n        493, \n        490, \n        490, \n        493, \n        492, \n        480, \n        483, \n        492, \n        492, \n        483, \n        480, \n        492, \n        491, \n        480, \n        480, \n        491, \n        492, \n        485, \n        494, \n        492, \n        492, \n        494, \n        485, \n        492, \n        483, \n        485, \n        485, \n        483, \n        492, \n        495, \n        493, \n        492, \n        492, \n        493, \n        495, \n        492, \n        494, \n        495, \n        495, \n        494, \n        492, \n        495, \n        494, \n        496, \n        496, \n        494, \n        495, \n        496, \n        497, \n        495, \n        495, \n        497, \n        496, \n        485, \n        487, \n        496, \n        496, \n        487, \n        485, \n        496, \n        494, \n        485, \n        485, \n        494, \n        496, \n        489, \n        498, \n        496, \n        496, \n        498, \n        489, \n        496, \n        487, \n        489, \n        489, \n        487, \n        496, \n        499, \n        497, \n        496, \n        496, \n        497, \n        499, \n        496, \n        498, \n        499, \n        499, \n        498, \n        496, \n        500, \n        501, \n        502, \n        502, \n        501, \n        500, \n        502, \n        503, \n        500, \n        500, \n        503, \n        502, \n        504, \n        505, \n        502, \n        502, \n        505, \n        504, \n        502, \n        501, \n        504, \n        504, \n        501, \n        502, \n        506, \n        507, \n        502, \n        502, \n        507, \n        506, \n        502, \n        505, \n        506, \n        506, \n        505, \n        502, \n        508, \n        503, \n        502, \n        502, \n        503, \n        508, \n        502, \n        507, \n        508, \n        508, \n        507, \n        502, \n        508, \n        507, \n        509, \n        509, \n        507, \n        508, \n        509, \n        510, \n        508, \n        508, \n        510, \n        509, \n        506, \n        511, \n        509, \n        509, \n        511, \n        506, \n        509, \n        507, \n        506, \n        506, \n        507, \n        509, \n        512, \n        513, \n        509, \n        509, \n        513, \n        512, \n        509, \n        511, \n        512, \n        512, \n        511, \n        509, \n        514, \n        510, \n        509, \n        509, \n        510, \n        514, \n        509, \n        513, \n        514, \n        514, \n        513, \n        509, \n        515, \n        516, \n        517, \n        517, \n        516, \n        515, \n        517, \n        518, \n        515, \n        515, \n        518, \n        517, \n        500, \n        503, \n        517, \n        517, \n        503, \n        500, \n        517, \n        516, \n        500, \n        500, \n        516, \n        517, \n        508, \n        519, \n        517, \n        517, \n        519, \n        508, \n        517, \n        503, \n        508, \n        508, \n        503, \n        517, \n        520, \n        518, \n        517, \n        517, \n        518, \n        520, \n        517, \n        519, \n        520, \n        520, \n        519, \n        517, \n        520, \n        519, \n        521, \n        521, \n        519, \n        520, \n        521, \n        522, \n        520, \n        520, \n        522, \n        521, \n        508, \n        510, \n        521, \n        521, \n        510, \n        508, \n        521, \n        519, \n        508, \n        508, \n        519, \n        521, \n        514, \n        523, \n        521, \n        521, \n        523, \n        514, \n        521, \n        510, \n        514, \n        514, \n        510, \n        521, \n        524, \n        522, \n        521, \n        521, \n        522, \n        524, \n        521, \n        523, \n        524, \n        524, \n        523, \n        521, \n        525, \n        526, \n        527, \n        527, \n        526, \n        525, \n        527, \n        528, \n        525, \n        525, \n        528, \n        527, \n        515, \n        518, \n        527, \n        527, \n        518, \n        515, \n        527, \n        526, \n        515, \n        515, \n        526, \n        527, \n        520, \n        529, \n        527, \n        527, \n        529, \n        520, \n        527, \n        518, \n        520, \n        520, \n        518, \n        527, \n        530, \n        528, \n        527, \n        527, \n        528, \n        530, \n        527, \n        529, \n        530, \n        530, \n        529, \n        527, \n        530, \n        529, \n        531, \n        531, \n        529, \n        530, \n        531, \n        532, \n        530, \n        530, \n        532, \n        531, \n        520, \n        522, \n        531, \n        531, \n        522, \n        520, \n        531, \n        529, \n        520, \n        520, \n        529, \n        531, \n        524, \n        533, \n        531, \n        531, \n        533, \n        524, \n        531, \n        522, \n        524, \n        524, \n        522, \n        531, \n        534, \n        532, \n        531, \n        531, \n        532, \n        534, \n        531, \n        533, \n        534, \n        534, \n        533, \n        531, \n        535, \n        536, \n        537, \n        537, \n        536, \n        535, \n        537, \n        538, \n        535, \n        535, \n        538, \n        537, \n        525, \n        528, \n        537, \n        537, \n        528, \n        525, \n        537, \n        536, \n        525, \n        525, \n        536, \n        537, \n        530, \n        539, \n        537, \n        537, \n        539, \n        530, \n        537, \n        528, \n        530, \n        530, \n        528, \n        537, \n        540, \n        538, \n        537, \n        537, \n        538, \n        540, \n        537, \n        539, \n        540, \n        540, \n        539, \n        537, \n        540, \n        539, \n        541, \n        541, \n        539, \n        540, \n        541, \n        542, \n        540, \n        540, \n        542, \n        541, \n        530, \n        532, \n        541, \n        541, \n        532, \n        530, \n        541, \n        539, \n        530, \n        530, \n        539, \n        541, \n        534, \n        543, \n        541, \n        541, \n        543, \n        534, \n        541, \n        532, \n        534, \n        534, \n        532, \n        541, \n        544, \n        542, \n        541, \n        541, \n        542, \n        544, \n        541, \n        543, \n        544, \n        544, \n        543, \n        541, \n        545, \n        546, \n        547, \n        547, \n        546, \n        545, \n        547, \n        548, \n        545, \n        545, \n        548, \n        547, \n        535, \n        538, \n        547, \n        547, \n        538, \n        535, \n        547, \n        546, \n        535, \n        535, \n        546, \n        547, \n        540, \n        549, \n        547, \n        547, \n        549, \n        540, \n        547, \n        538, \n        540, \n        540, \n        538, \n        547, \n        550, \n        548, \n        547, \n        547, \n        548, \n        550, \n        547, \n        549, \n        550, \n        550, \n        549, \n        547, \n        550, \n        549, \n        551, \n        551, \n        549, \n        550, \n        551, \n        552, \n        550, \n        550, \n        552, \n        551, \n        540, \n        542, \n        551, \n        551, \n        542, \n        540, \n        551, \n        549, \n        540, \n        540, \n        549, \n        551, \n        544, \n        553, \n        551, \n        551, \n        553, \n        544, \n        551, \n        542, \n        544, \n        544, \n        542, \n        551, \n        554, \n        552, \n        551, \n        551, \n        552, \n        554, \n        551, \n        553, \n        554, \n        554, \n        553, \n        551, \n        555, \n        556, \n        557, \n        557, \n        556, \n        555, \n        557, \n        558, \n        555, \n        555, \n        558, \n        557, \n        545, \n        548, \n        557, \n        557, \n        548, \n        545, \n        557, \n        556, \n        545, \n        545, \n        556, \n        557, \n        550, \n        559, \n        557, \n        557, \n        559, \n        550, \n        557, \n        548, \n        550, \n        550, \n        548, \n        557, \n        560, \n        558, \n        557, \n        557, \n        558, \n        560, \n        557, \n        559, \n        560, \n        560, \n        559, \n        557, \n        560, \n        559, \n        561, \n        561, \n        559, \n        560, \n        561, \n        562, \n        560, \n        560, \n        562, \n        561, \n        550, \n        552, \n        561, \n        561, \n        552, \n        550, \n        561, \n        559, \n        550, \n        550, \n        559, \n        561, \n        554, \n        563, \n        561, \n        561, \n        563, \n        554, \n        561, \n        552, \n        554, \n        554, \n        552, \n        561, \n        564, \n        562, \n        561, \n        561, \n        562, \n        564, \n        561, \n        563, \n        564, \n        564, \n        563, \n        561, \n        565, \n        566, \n        567, \n        567, \n        566, \n        565, \n        567, \n        568, \n        565, \n        565, \n        568, \n        567, \n        555, \n        558, \n        567, \n        567, \n        558, \n        555, \n        567, \n        566, \n        555, \n        555, \n        566, \n        567, \n        560, \n        569, \n        567, \n        567, \n        569, \n        560, \n        567, \n        558, \n        560, \n        560, \n        558, \n        567, \n        570, \n        568, \n        567, \n        567, \n        568, \n        570, \n        567, \n        569, \n        570, \n        570, \n        569, \n        567, \n        570, \n        569, \n        571, \n        571, \n        569, \n        570, \n        571, \n        572, \n        570, \n        570, \n        572, \n        571, \n        560, \n        562, \n        571, \n        571, \n        562, \n        560, \n        571, \n        569, \n        560, \n        560, \n        569, \n        571, \n        564, \n        573, \n        571, \n        571, \n        573, \n        564, \n        571, \n        562, \n        564, \n        564, \n        562, \n        571, \n        574, \n        572, \n        571, \n        571, \n        572, \n        574, \n        571, \n        573, \n        574, \n        574, \n        573, \n        571, \n        575, \n        576, \n        577, \n        577, \n        576, \n        575, \n        577, \n        578, \n        575, \n        575, \n        578, \n        577, \n        565, \n        568, \n        577, \n        577, \n        568, \n        565, \n        577, \n        576, \n        565, \n        565, \n        576, \n        577, \n        570, \n        579, \n        577, \n        577, \n        579, \n        570, \n        577, \n        568, \n        570, \n        570, \n        568, \n        577, \n        580, \n        578, \n        577, \n        577, \n        578, \n        580, \n        577, \n        579, \n        580, \n        580, \n        579, \n        577, \n        580, \n        579, \n        581, \n        581, \n        579, \n        580, \n        581, \n        582, \n        580, \n        580, \n        582, \n        581, \n        570, \n        572, \n        581, \n        581, \n        572, \n        570, \n        581, \n        579, \n        570, \n        570, \n        579, \n        581, \n        574, \n        583, \n        581, \n        581, \n        583, \n        574, \n        581, \n        572, \n        574, \n        574, \n        572, \n        581, \n        584, \n        582, \n        581, \n        581, \n        582, \n        584, \n        581, \n        583, \n        584, \n        584, \n        583, \n        581, \n        585, \n        586, \n        587, \n        587, \n        586, \n        585, \n        587, \n        588, \n        585, \n        585, \n        588, \n        587, \n        575, \n        578, \n        587, \n        587, \n        578, \n        575, \n        587, \n        586, \n        575, \n        575, \n        586, \n        587, \n        580, \n        589, \n        587, \n        587, \n        589, \n        580, \n        587, \n        578, \n        580, \n        580, \n        578, \n        587, \n        590, \n        588, \n        587, \n        587, \n        588, \n        590, \n        587, \n        589, \n        590, \n        590, \n        589, \n        587, \n        590, \n        589, \n        591, \n        591, \n        589, \n        590, \n        591, \n        592, \n        590, \n        590, \n        592, \n        591, \n        580, \n        582, \n        591, \n        591, \n        582, \n        580, \n        591, \n        589, \n        580, \n        580, \n        589, \n        591, \n        584, \n        593, \n        591, \n        591, \n        593, \n        584, \n        591, \n        582, \n        584, \n        584, \n        582, \n        591, \n        594, \n        592, \n        591, \n        591, \n        592, \n        594, \n        591, \n        593, \n        594, \n        594, \n        593, \n        591, \n        595, \n        596, \n        597, \n        597, \n        596, \n        595, \n        597, \n        598, \n        595, \n        595, \n        598, \n        597, \n        585, \n        588, \n        597, \n        597, \n        588, \n        585, \n        597, \n        596, \n        585, \n        585, \n        596, \n        597, \n        590, \n        599, \n        597, \n        597, \n        599, \n        590, \n        597, \n        588, \n        590, \n        590, \n        588, \n        597, \n        600, \n        598, \n        597, \n        597, \n        598, \n        600, \n        597, \n        599, \n        600, \n        600, \n        599, \n        597, \n        600, \n        599, \n        601, \n        601, \n        599, \n        600, \n        601, \n        602, \n        600, \n        600, \n        602, \n        601, \n        590, \n        592, \n        601, \n        601, \n        592, \n        590, \n        601, \n        599, \n        590, \n        590, \n        599, \n        601, \n        594, \n        603, \n        601, \n        601, \n        603, \n        594, \n        601, \n        592, \n        594, \n        594, \n        592, \n        601, \n        604, \n        602, \n        601, \n        601, \n        602, \n        604, \n        601, \n        603, \n        604, \n        604, \n        603, \n        601, \n        605, \n        606, \n        607, \n        607, \n        606, \n        605, \n        607, \n        608, \n        605, \n        605, \n        608, \n        607, \n        595, \n        598, \n        607, \n        607, \n        598, \n        595, \n        607, \n        606, \n        595, \n        595, \n        606, \n        607, \n        600, \n        609, \n        607, \n        607, \n        609, \n        600, \n        607, \n        598, \n        600, \n        600, \n        598, \n        607, \n        610, \n        608, \n        607, \n        607, \n        608, \n        610, \n        607, \n        609, \n        610, \n        610, \n        609, \n        607, \n        610, \n        609, \n        611, \n        611, \n        609, \n        610, \n        611, \n        612, \n        610, \n        610, \n        612, \n        611, \n        600, \n        602, \n        611, \n        611, \n        602, \n        600, \n        611, \n        609, \n        600, \n        600, \n        609, \n        611, \n        604, \n        613, \n        611, \n        611, \n        613, \n        604, \n        611, \n        602, \n        604, \n        604, \n        602, \n        611, \n        614, \n        612, \n        611, \n        611, \n        612, \n        614, \n        611, \n        613, \n        614, \n        614, \n        613, \n        611, \n        615, \n        616, \n        617, \n        617, \n        616, \n        615, \n        617, \n        618, \n        615, \n        615, \n        618, \n        617, \n        605, \n        608, \n        617, \n        617, \n        608, \n        605, \n        617, \n        616, \n        605, \n        605, \n        616, \n        617, \n        610, \n        619, \n        617, \n        617, \n        619, \n        610, \n        617, \n        608, \n        610, \n        610, \n        608, \n        617, \n        620, \n        618, \n        617, \n        617, \n        618, \n        620, \n        617, \n        619, \n        620, \n        620, \n        619, \n        617, \n        620, \n        619, \n        621, \n        621, \n        619, \n        620, \n        621, \n        622, \n        620, \n        620, \n        622, \n        621, \n        610, \n        612, \n        621, \n        621, \n        612, \n        610, \n        621, \n        619, \n        610, \n        610, \n        619, \n        621, \n        614, \n        623, \n        621, \n        621, \n        623, \n        614, \n        621, \n        612, \n        614, \n        614, \n        612, \n        621, \n        624, \n        622, \n        621, \n        621, \n        622, \n        624, \n        621, \n        623, \n        624, \n        624, \n        623, \n        621, \n        625, \n        626, \n        627, \n        627, \n        626, \n        625, \n        627, \n        628, \n        625, \n        625, \n        628, \n        627, \n        629, \n        630, \n        627, \n        627, \n        630, \n        629, \n        627, \n        626, \n        629, \n        629, \n        626, \n        627, \n        631, \n        632, \n        627, \n        627, \n        632, \n        631, \n        627, \n        630, \n        631, \n        631, \n        630, \n        627, \n        633, \n        628, \n        627, \n        627, \n        628, \n        633, \n        627, \n        632, \n        633, \n        633, \n        632, \n        627, \n        633, \n        632, \n        634, \n        634, \n        632, \n        633, \n        634, \n        635, \n        633, \n        633, \n        635, \n        634, \n        631, \n        636, \n        634, \n        634, \n        636, \n        631, \n        634, \n        632, \n        631, \n        631, \n        632, \n        634, \n        637, \n        638, \n        634, \n        634, \n        638, \n        637, \n        634, \n        636, \n        637, \n        637, \n        636, \n        634, \n        639, \n        635, \n        634, \n        634, \n        635, \n        639, \n        634, \n        638, \n        639, \n        639, \n        638, \n        634, \n        640, \n        641, \n        642, \n        642, \n        641, \n        640, \n        642, \n        643, \n        640, \n        640, \n        643, \n        642, \n        625, \n        628, \n        642, \n        642, \n        628, \n        625, \n        642, \n        641, \n        625, \n        625, \n        641, \n        642, \n        633, \n        644, \n        642, \n        642, \n        644, \n        633, \n        642, \n        628, \n        633, \n        633, \n        628, \n        642, \n        645, \n        643, \n        642, \n        642, \n        643, \n        645, \n        642, \n        644, \n        645, \n        645, \n        644, \n        642, \n        645, \n        644, \n        646, \n        646, \n        644, \n        645, \n        646, \n        647, \n        645, \n        645, \n        647, \n        646, \n        633, \n        635, \n        646, \n        646, \n        635, \n        633, \n        646, \n        644, \n        633, \n        633, \n        644, \n        646, \n        639, \n        648, \n        646, \n        646, \n        648, \n        639, \n        646, \n        635, \n        639, \n        639, \n        635, \n        646, \n        649, \n        647, \n        646, \n        646, \n        647, \n        649, \n        646, \n        648, \n        649, \n        649, \n        648, \n        646, \n        650, \n        651, \n        652, \n        652, \n        651, \n        650, \n        652, \n        653, \n        650, \n        650, \n        653, \n        652, \n        640, \n        643, \n        652, \n        652, \n        643, \n        640, \n        652, \n        651, \n        640, \n        640, \n        651, \n        652, \n        645, \n        654, \n        652, \n        652, \n        654, \n        645, \n        652, \n        643, \n        645, \n        645, \n        643, \n        652, \n        655, \n        653, \n        652, \n        652, \n        653, \n        655, \n        652, \n        654, \n        655, \n        655, \n        654, \n        652, \n        655, \n        654, \n        656, \n        656, \n        654, \n        655, \n        656, \n        657, \n        655, \n        655, \n        657, \n        656, \n        645, \n        647, \n        656, \n        656, \n        647, \n        645, \n        656, \n        654, \n        645, \n        645, \n        654, \n        656, \n        649, \n        658, \n        656, \n        656, \n        658, \n        649, \n        656, \n        647, \n        649, \n        649, \n        647, \n        656, \n        659, \n        657, \n        656, \n        656, \n        657, \n        659, \n        656, \n        658, \n        659, \n        659, \n        658, \n        656, \n        660, \n        661, \n        662, \n        662, \n        661, \n        660, \n        662, \n        663, \n        660, \n        660, \n        663, \n        662, \n        650, \n        653, \n        662, \n        662, \n        653, \n        650, \n        662, \n        661, \n        650, \n        650, \n        661, \n        662, \n        655, \n        664, \n        662, \n        662, \n        664, \n        655, \n        662, \n        653, \n        655, \n        655, \n        653, \n        662, \n        665, \n        663, \n        662, \n        662, \n        663, \n        665, \n        662, \n        664, \n        665, \n        665, \n        664, \n        662, \n        665, \n        664, \n        666, \n        666, \n        664, \n        665, \n        666, \n        667, \n        665, \n        665, \n        667, \n        666, \n        655, \n        657, \n        666, \n        666, \n        657, \n        655, \n        666, \n        664, \n        655, \n        655, \n        664, \n        666, \n        659, \n        668, \n        666, \n        666, \n        668, \n        659, \n        666, \n        657, \n        659, \n        659, \n        657, \n        666, \n        669, \n        667, \n        666, \n        666, \n        667, \n        669, \n        666, \n        668, \n        669, \n        669, \n        668, \n        666, \n        670, \n        671, \n        672, \n        672, \n        671, \n        670, \n        672, \n        673, \n        670, \n        670, \n        673, \n        672, \n        660, \n        663, \n        672, \n        672, \n        663, \n        660, \n        672, \n        671, \n        660, \n        660, \n        671, \n        672, \n        665, \n        674, \n        672, \n        672, \n        674, \n        665, \n        672, \n        663, \n        665, \n        665, \n        663, \n        672, \n        675, \n        673, \n        672, \n        672, \n        673, \n        675, \n        672, \n        674, \n        675, \n        675, \n        674, \n        672, \n        675, \n        674, \n        676, \n        676, \n        674, \n        675, \n        676, \n        677, \n        675, \n        675, \n        677, \n        676, \n        665, \n        667, \n        676, \n        676, \n        667, \n        665, \n        676, \n        674, \n        665, \n        665, \n        674, \n        676, \n        669, \n        678, \n        676, \n        676, \n        678, \n        669, \n        676, \n        667, \n        669, \n        669, \n        667, \n        676, \n        679, \n        677, \n        676, \n        676, \n        677, \n        679, \n        676, \n        678, \n        679, \n        679, \n        678, \n        676, \n        680, \n        681, \n        682, \n        682, \n        681, \n        680, \n        682, \n        683, \n        680, \n        680, \n        683, \n        682, \n        670, \n        673, \n        682, \n        682, \n        673, \n        670, \n        682, \n        681, \n        670, \n        670, \n        681, \n        682, \n        675, \n        684, \n        682, \n        682, \n        684, \n        675, \n        682, \n        673, \n        675, \n        675, \n        673, \n        682, \n        685, \n        683, \n        682, \n        682, \n        683, \n        685, \n        682, \n        684, \n        685, \n        685, \n        684, \n        682, \n        685, \n        684, \n        686, \n        686, \n        684, \n        685, \n        686, \n        687, \n        685, \n        685, \n        687, \n        686, \n        675, \n        677, \n        686, \n        686, \n        677, \n        675, \n        686, \n        684, \n        675, \n        675, \n        684, \n        686, \n        679, \n        688, \n        686, \n        686, \n        688, \n        679, \n        686, \n        677, \n        679, \n        679, \n        677, \n        686, \n        689, \n        687, \n        686, \n        686, \n        687, \n        689, \n        686, \n        688, \n        689, \n        689, \n        688, \n        686, \n        690, \n        691, \n        692, \n        692, \n        691, \n        690, \n        692, \n        693, \n        690, \n        690, \n        693, \n        692, \n        680, \n        683, \n        692, \n        692, \n        683, \n        680, \n        692, \n        691, \n        680, \n        680, \n        691, \n        692, \n        685, \n        694, \n        692, \n        692, \n        694, \n        685, \n        692, \n        683, \n        685, \n        685, \n        683, \n        692, \n        695, \n        693, \n        692, \n        692, \n        693, \n        695, \n        692, \n        694, \n        695, \n        695, \n        694, \n        692, \n        695, \n        694, \n        696, \n        696, \n        694, \n        695, \n        696, \n        697, \n        695, \n        695, \n        697, \n        696, \n        685, \n        687, \n        696, \n        696, \n        687, \n        685, \n        696, \n        694, \n        685, \n        685, \n        694, \n        696, \n        689, \n        698, \n        696, \n        696, \n        698, \n        689, \n        696, \n        687, \n        689, \n        689, \n        687, \n        696, \n        699, \n        697, \n        696, \n        696, \n        697, \n        699, \n        696, \n        698, \n        699, \n        699, \n        698, \n        696, \n        700, \n        701, \n        702, \n        702, \n        701, \n        700, \n        702, \n        703, \n        700, \n        700, \n        703, \n        702, \n        690, \n        693, \n        702, \n        702, \n        693, \n        690, \n        702, \n        701, \n        690, \n        690, \n        701, \n        702, \n        695, \n        704, \n        702, \n        702, \n        704, \n        695, \n        702, \n        693, \n        695, \n        695, \n        693, \n        702, \n        705, \n        703, \n        702, \n        702, \n        703, \n        705, \n        702, \n        704, \n        705, \n        705, \n        704, \n        702, \n        705, \n        704, \n        706, \n        706, \n        704, \n        705, \n        706, \n        707, \n        705, \n        705, \n        707, \n        706, \n        695, \n        697, \n        706, \n        706, \n        697, \n        695, \n        706, \n        704, \n        695, \n        695, \n        704, \n        706, \n        699, \n        708, \n        706, \n        706, \n        708, \n        699, \n        706, \n        697, \n        699, \n        699, \n        697, \n        706, \n        709, \n        707, \n        706, \n        706, \n        707, \n        709, \n        706, \n        708, \n        709, \n        709, \n        708, \n        706, \n        710, \n        711, \n        712, \n        712, \n        711, \n        710, \n        712, \n        713, \n        710, \n        710, \n        713, \n        712, \n        700, \n        703, \n        712, \n        712, \n        703, \n        700, \n        712, \n        711, \n        700, \n        700, \n        711, \n        712, \n        705, \n        714, \n        712, \n        712, \n        714, \n        705, \n        712, \n        703, \n        705, \n        705, \n        703, \n        712, \n        715, \n        713, \n        712, \n        712, \n        713, \n        715, \n        712, \n        714, \n        715, \n        715, \n        714, \n        712, \n        715, \n        714, \n        716, \n        716, \n        714, \n        715, \n        716, \n        717, \n        715, \n        715, \n        717, \n        716, \n        705, \n        707, \n        716, \n        716, \n        707, \n        705, \n        716, \n        714, \n        705, \n        705, \n        714, \n        716, \n        709, \n        718, \n        716, \n        716, \n        718, \n        709, \n        716, \n        707, \n        709, \n        709, \n        707, \n        716, \n        719, \n        717, \n        716, \n        716, \n        717, \n        719, \n        716, \n        718, \n        719, \n        719, \n        718, \n        716, \n        720, \n        721, \n        722, \n        722, \n        721, \n        720, \n        722, \n        723, \n        720, \n        720, \n        723, \n        722, \n        710, \n        713, \n        722, \n        722, \n        713, \n        710, \n        722, \n        721, \n        710, \n        710, \n        721, \n        722, \n        715, \n        724, \n        722, \n        722, \n        724, \n        715, \n        722, \n        713, \n        715, \n        715, \n        713, \n        722, \n        725, \n        723, \n        722, \n        722, \n        723, \n        725, \n        722, \n        724, \n        725, \n        725, \n        724, \n        722, \n        725, \n        724, \n        726, \n        726, \n        724, \n        725, \n        726, \n        727, \n        725, \n        725, \n        727, \n        726, \n        715, \n        717, \n        726, \n        726, \n        717, \n        715, \n        726, \n        724, \n        715, \n        715, \n        724, \n        726, \n        719, \n        728, \n        726, \n        726, \n        728, \n        719, \n        726, \n        717, \n        719, \n        719, \n        717, \n        726, \n        729, \n        727, \n        726, \n        726, \n        727, \n        729, \n        726, \n        728, \n        729, \n        729, \n        728, \n        726, \n        730, \n        731, \n        732, \n        732, \n        731, \n        730, \n        732, \n        733, \n        730, \n        730, \n        733, \n        732, \n        720, \n        723, \n        732, \n        732, \n        723, \n        720, \n        732, \n        731, \n        720, \n        720, \n        731, \n        732, \n        725, \n        734, \n        732, \n        732, \n        734, \n        725, \n        732, \n        723, \n        725, \n        725, \n        723, \n        732, \n        735, \n        733, \n        732, \n        732, \n        733, \n        735, \n        732, \n        734, \n        735, \n        735, \n        734, \n        732, \n        735, \n        734, \n        736, \n        736, \n        734, \n        735, \n        736, \n        737, \n        735, \n        735, \n        737, \n        736, \n        725, \n        727, \n        736, \n        736, \n        727, \n        725, \n        736, \n        734, \n        725, \n        725, \n        734, \n        736, \n        729, \n        738, \n        736, \n        736, \n        738, \n        729, \n        736, \n        727, \n        729, \n        729, \n        727, \n        736, \n        739, \n        737, \n        736, \n        736, \n        737, \n        739, \n        736, \n        738, \n        739, \n        739, \n        738, \n        736, \n        740, \n        741, \n        742, \n        742, \n        741, \n        740, \n        742, \n        743, \n        740, \n        740, \n        743, \n        742, \n        730, \n        733, \n        742, \n        742, \n        733, \n        730, \n        742, \n        741, \n        730, \n        730, \n        741, \n        742, \n        735, \n        744, \n        742, \n        742, \n        744, \n        735, \n        742, \n        733, \n        735, \n        735, \n        733, \n        742, \n        745, \n        743, \n        742, \n        742, \n        743, \n        745, \n        742, \n        744, \n        745, \n        745, \n        744, \n        742, \n        745, \n        744, \n        746, \n        746, \n        744, \n        745, \n        746, \n        747, \n        745, \n        745, \n        747, \n        746, \n        735, \n        737, \n        746, \n        746, \n        737, \n        735, \n        746, \n        744, \n        735, \n        735, \n        744, \n        746, \n        739, \n        748, \n        746, \n        746, \n        748, \n        739, \n        746, \n        737, \n        739, \n        739, \n        737, \n        746, \n        749, \n        747, \n        746, \n        746, \n        747, \n        749, \n        746, \n        748, \n        749, \n        749, \n        748, \n        746, \n        750, \n        751, \n        752, \n        752, \n        751, \n        750, \n        752, \n        753, \n        750, \n        750, \n        753, \n        752, \n        754, \n        755, \n        752, \n        752, \n        755, \n        754, \n        752, \n        751, \n        754, \n        754, \n        751, \n        752, \n        756, \n        757, \n        752, \n        752, \n        757, \n        756, \n        752, \n        755, \n        756, \n        756, \n        755, \n        752, \n        758, \n        753, \n        752, \n        752, \n        753, \n        758, \n        752, \n        757, \n        758, \n        758, \n        757, \n        752, \n        758, \n        757, \n        759, \n        759, \n        757, \n        758, \n        759, \n        760, \n        758, \n        758, \n        760, \n        759, \n        756, \n        761, \n        759, \n        759, \n        761, \n        756, \n        759, \n        757, \n        756, \n        756, \n        757, \n        759, \n        762, \n        763, \n        759, \n        759, \n        763, \n        762, \n        759, \n        761, \n        762, \n        762, \n        761, \n        759, \n        764, \n        760, \n        759, \n        759, \n        760, \n        764, \n        759, \n        763, \n        764, \n        764, \n        763, \n        759, \n        765, \n        766, \n        767, \n        767, \n        766, \n        765, \n        767, \n        768, \n        765, \n        765, \n        768, \n        767, \n        750, \n        753, \n        767, \n        767, \n        753, \n        750, \n        767, \n        766, \n        750, \n        750, \n        766, \n        767, \n        758, \n        769, \n        767, \n        767, \n        769, \n        758, \n        767, \n        753, \n        758, \n        758, \n        753, \n        767, \n        770, \n        768, \n        767, \n        767, \n        768, \n        770, \n        767, \n        769, \n        770, \n        770, \n        769, \n        767, \n        770, \n        769, \n        771, \n        771, \n        769, \n        770, \n        771, \n        772, \n        770, \n        770, \n        772, \n        771, \n        758, \n        760, \n        771, \n        771, \n        760, \n        758, \n        771, \n        769, \n        758, \n        758, \n        769, \n        771, \n        764, \n        773, \n        771, \n        771, \n        773, \n        764, \n        771, \n        760, \n        764, \n        764, \n        760, \n        771, \n        774, \n        772, \n        771, \n        771, \n        772, \n        774, \n        771, \n        773, \n        774, \n        774, \n        773, \n        771, \n        775, \n        776, \n        777, \n        777, \n        776, \n        775, \n        777, \n        778, \n        775, \n        775, \n        778, \n        777, \n        765, \n        768, \n        777, \n        777, \n        768, \n        765, \n        777, \n        776, \n        765, \n        765, \n        776, \n        777, \n        770, \n        779, \n        777, \n        777, \n        779, \n        770, \n        777, \n        768, \n        770, \n        770, \n        768, \n        777, \n        780, \n        778, \n        777, \n        777, \n        778, \n        780, \n        777, \n        779, \n        780, \n        780, \n        779, \n        777, \n        780, \n        779, \n        781, \n        781, \n        779, \n        780, \n        781, \n        782, \n        780, \n        780, \n        782, \n        781, \n        770, \n        772, \n        781, \n        781, \n        772, \n        770, \n        781, \n        779, \n        770, \n        770, \n        779, \n        781, \n        774, \n        783, \n        781, \n        781, \n        783, \n        774, \n        781, \n        772, \n        774, \n        774, \n        772, \n        781, \n        784, \n        782, \n        781, \n        781, \n        782, \n        784, \n        781, \n        783, \n        784, \n        784, \n        783, \n        781, \n        785, \n        786, \n        787, \n        787, \n        786, \n        785, \n        787, \n        788, \n        785, \n        785, \n        788, \n        787, \n        775, \n        778, \n        787, \n        787, \n        778, \n        775, \n        787, \n        786, \n        775, \n        775, \n        786, \n        787, \n        780, \n        789, \n        787, \n        787, \n        789, \n        780, \n        787, \n        778, \n        780, \n        780, \n        778, \n        787, \n        790, \n        788, \n        787, \n        787, \n        788, \n        790, \n        787, \n        789, \n        790, \n        790, \n        789, \n        787, \n        790, \n        789, \n        791, \n        791, \n        789, \n        790, \n        791, \n        792, \n        790, \n        790, \n        792, \n        791, \n        780, \n        782, \n        791, \n        791, \n        782, \n        780, \n        791, \n        789, \n        780, \n        780, \n        789, \n        791, \n        784, \n        793, \n        791, \n        791, \n        793, \n        784, \n        791, \n        782, \n        784, \n        784, \n        782, \n        791, \n        794, \n        792, \n        791, \n        791, \n        792, \n        794, \n        791, \n        793, \n        794, \n        794, \n        793, \n        791, \n        795, \n        796, \n        797, \n        797, \n        796, \n        795, \n        797, \n        798, \n        795, \n        795, \n        798, \n        797, \n        785, \n        788, \n        797, \n        797, \n        788, \n        785, \n        797, \n        796, \n        785, \n        785, \n        796, \n        797, \n        790, \n        799, \n        797, \n        797, \n        799, \n        790, \n        797, \n        788, \n        790, \n        790, \n        788, \n        797, \n        800, \n        798, \n        797, \n        797, \n        798, \n        800, \n        797, \n        799, \n        800, \n        800, \n        799, \n        797, \n        800, \n        799, \n        801, \n        801, \n        799, \n        800, \n        801, \n        802, \n        800, \n        800, \n        802, \n        801, \n        790, \n        792, \n        801, \n        801, \n        792, \n        790, \n        801, \n        799, \n        790, \n        790, \n        799, \n        801, \n        794, \n        803, \n        801, \n        801, \n        803, \n        794, \n        801, \n        792, \n        794, \n        794, \n        792, \n        801, \n        804, \n        802, \n        801, \n        801, \n        802, \n        804, \n        801, \n        803, \n        804, \n        804, \n        803, \n        801, \n        805, \n        806, \n        807, \n        807, \n        806, \n        805, \n        807, \n        808, \n        805, \n        805, \n        808, \n        807, \n        795, \n        798, \n        807, \n        807, \n        798, \n        795, \n        807, \n        806, \n        795, \n        795, \n        806, \n        807, \n        800, \n        809, \n        807, \n        807, \n        809, \n        800, \n        807, \n        798, \n        800, \n        800, \n        798, \n        807, \n        810, \n        808, \n        807, \n        807, \n        808, \n        810, \n        807, \n        809, \n        810, \n        810, \n        809, \n        807, \n        810, \n        809, \n        811, \n        811, \n        809, \n        810, \n        811, \n        812, \n        810, \n        810, \n        812, \n        811, \n        800, \n        802, \n        811, \n        811, \n        802, \n        800, \n        811, \n        809, \n        800, \n        800, \n        809, \n        811, \n        804, \n        813, \n        811, \n        811, \n        813, \n        804, \n        811, \n        802, \n        804, \n        804, \n        802, \n        811, \n        814, \n        812, \n        811, \n        811, \n        812, \n        814, \n        811, \n        813, \n        814, \n        814, \n        813, \n        811, \n        815, \n        816, \n        817, \n        817, \n        816, \n        815, \n        817, \n        818, \n        815, \n        815, \n        818, \n        817, \n        805, \n        808, \n        817, \n        817, \n        808, \n        805, \n        817, \n        816, \n        805, \n        805, \n        816, \n        817, \n        810, \n        819, \n        817, \n        817, \n        819, \n        810, \n        817, \n        808, \n        810, \n        810, \n        808, \n        817, \n        820, \n        818, \n        817, \n        817, \n        818, \n        820, \n        817, \n        819, \n        820, \n        820, \n        819, \n        817, \n        820, \n        819, \n        821, \n        821, \n        819, \n        820, \n        821, \n        822, \n        820, \n        820, \n        822, \n        821, \n        810, \n        812, \n        821, \n        821, \n        812, \n        810, \n        821, \n        819, \n        810, \n        810, \n        819, \n        821, \n        814, \n        823, \n        821, \n        821, \n        823, \n        814, \n        821, \n        812, \n        814, \n        814, \n        812, \n        821, \n        824, \n        822, \n        821, \n        821, \n        822, \n        824, \n        821, \n        823, \n        824, \n        824, \n        823, \n        821, \n        825, \n        826, \n        827, \n        827, \n        826, \n        825, \n        827, \n        828, \n        825, \n        825, \n        828, \n        827, \n        815, \n        818, \n        827, \n        827, \n        818, \n        815, \n        827, \n        826, \n        815, \n        815, \n        826, \n        827, \n        820, \n        829, \n        827, \n        827, \n        829, \n        820, \n        827, \n        818, \n        820, \n        820, \n        818, \n        827, \n        830, \n        828, \n        827, \n        827, \n        828, \n        830, \n        827, \n        829, \n        830, \n        830, \n        829, \n        827, \n        830, \n        829, \n        831, \n        831, \n        829, \n        830, \n        831, \n        832, \n        830, \n        830, \n        832, \n        831, \n        820, \n        822, \n        831, \n        831, \n        822, \n        820, \n        831, \n        829, \n        820, \n        820, \n        829, \n        831, \n        824, \n        833, \n        831, \n        831, \n        833, \n        824, \n        831, \n        822, \n        824, \n        824, \n        822, \n        831, \n        834, \n        832, \n        831, \n        831, \n        832, \n        834, \n        831, \n        833, \n        834, \n        834, \n        833, \n        831, \n        835, \n        836, \n        837, \n        837, \n        836, \n        835, \n        837, \n        838, \n        835, \n        835, \n        838, \n        837, \n        825, \n        828, \n        837, \n        837, \n        828, \n        825, \n        837, \n        836, \n        825, \n        825, \n        836, \n        837, \n        830, \n        839, \n        837, \n        837, \n        839, \n        830, \n        837, \n        828, \n        830, \n        830, \n        828, \n        837, \n        840, \n        838, \n        837, \n        837, \n        838, \n        840, \n        837, \n        839, \n        840, \n        840, \n        839, \n        837, \n        840, \n        839, \n        841, \n        841, \n        839, \n        840, \n        841, \n        842, \n        840, \n        840, \n        842, \n        841, \n        830, \n        832, \n        841, \n        841, \n        832, \n        830, \n        841, \n        839, \n        830, \n        830, \n        839, \n        841, \n        834, \n        843, \n        841, \n        841, \n        843, \n        834, \n        841, \n        832, \n        834, \n        834, \n        832, \n        841, \n        844, \n        842, \n        841, \n        841, \n        842, \n        844, \n        841, \n        843, \n        844, \n        844, \n        843, \n        841, \n        845, \n        846, \n        847, \n        847, \n        846, \n        845, \n        847, \n        848, \n        845, \n        845, \n        848, \n        847, \n        835, \n        838, \n        847, \n        847, \n        838, \n        835, \n        847, \n        846, \n        835, \n        835, \n        846, \n        847, \n        840, \n        849, \n        847, \n        847, \n        849, \n        840, \n        847, \n        838, \n        840, \n        840, \n        838, \n        847, \n        850, \n        848, \n        847, \n        847, \n        848, \n        850, \n        847, \n        849, \n        850, \n        850, \n        849, \n        847, \n        850, \n        849, \n        851, \n        851, \n        849, \n        850, \n        851, \n        852, \n        850, \n        850, \n        852, \n        851, \n        840, \n        842, \n        851, \n        851, \n        842, \n        840, \n        851, \n        849, \n        840, \n        840, \n        849, \n        851, \n        844, \n        853, \n        851, \n        851, \n        853, \n        844, \n        851, \n        842, \n        844, \n        844, \n        842, \n        851, \n        854, \n        852, \n        851, \n        851, \n        852, \n        854, \n        851, \n        853, \n        854, \n        854, \n        853, \n        851, \n        855, \n        856, \n        857, \n        857, \n        856, \n        855, \n        857, \n        858, \n        855, \n        855, \n        858, \n        857, \n        845, \n        848, \n        857, \n        857, \n        848, \n        845, \n        857, \n        856, \n        845, \n        845, \n        856, \n        857, \n        850, \n        859, \n        857, \n        857, \n        859, \n        850, \n        857, \n        848, \n        850, \n        850, \n        848, \n        857, \n        860, \n        858, \n        857, \n        857, \n        858, \n        860, \n        857, \n        859, \n        860, \n        860, \n        859, \n        857, \n        860, \n        859, \n        861, \n        861, \n        859, \n        860, \n        861, \n        862, \n        860, \n        860, \n        862, \n        861, \n        850, \n        852, \n        861, \n        861, \n        852, \n        850, \n        861, \n        859, \n        850, \n        850, \n        859, \n        861, \n        854, \n        863, \n        861, \n        861, \n        863, \n        854, \n        861, \n        852, \n        854, \n        854, \n        852, \n        861, \n        864, \n        862, \n        861, \n        861, \n        862, \n        864, \n        861, \n        863, \n        864, \n        864, \n        863, \n        861, \n        865, \n        866, \n        867, \n        867, \n        866, \n        865, \n        867, \n        868, \n        865, \n        865, \n        868, \n        867, \n        855, \n        858, \n        867, \n        867, \n        858, \n        855, \n        867, \n        866, \n        855, \n        855, \n        866, \n        867, \n        860, \n        869, \n        867, \n        867, \n        869, \n        860, \n        867, \n        858, \n        860, \n        860, \n        858, \n        867, \n        870, \n        868, \n        867, \n        867, \n        868, \n        870, \n        867, \n        869, \n        870, \n        870, \n        869, \n        867, \n        870, \n        869, \n        871, \n        871, \n        869, \n        870, \n        871, \n        872, \n        870, \n        870, \n        872, \n        871, \n        860, \n        862, \n        871, \n        871, \n        862, \n        860, \n        871, \n        869, \n        860, \n        860, \n        869, \n        871, \n        864, \n        873, \n        871, \n        871, \n        873, \n        864, \n        871, \n        862, \n        864, \n        864, \n        862, \n        871, \n        874, \n        872, \n        871, \n        871, \n        872, \n        874, \n        871, \n        873, \n        874, \n        874, \n        873, \n        871, \n        875, \n        876, \n        877, \n        877, \n        876, \n        875, \n        877, \n        878, \n        875, \n        875, \n        878, \n        877, \n        879, \n        878, \n        877, \n        877, \n        878, \n        879, \n        877, \n        880, \n        879, \n        879, \n        880, \n        877, \n        881, \n        880, \n        877, \n        877, \n        880, \n        881, \n        877, \n        882, \n        881, \n        881, \n        882, \n        877, \n        883, \n        882, \n        877, \n        877, \n        882, \n        883, \n        877, \n        876, \n        883, \n        883, \n        876, \n        877, \n        883, \n        884, \n        885, \n        885, \n        884, \n        883, \n        885, \n        882, \n        883, \n        883, \n        882, \n        885, \n        881, \n        882, \n        885, \n        885, \n        882, \n        881, \n        885, \n        886, \n        881, \n        881, \n        886, \n        885, \n        887, \n        886, \n        885, \n        885, \n        886, \n        887, \n        885, \n        888, \n        887, \n        887, \n        888, \n        885, \n        889, \n        888, \n        885, \n        885, \n        888, \n        889, \n        885, \n        884, \n        889, \n        889, \n        884, \n        885, \n        890, \n        891, \n        892, \n        892, \n        891, \n        890, \n        892, \n        893, \n        890, \n        890, \n        893, \n        892, \n        875, \n        893, \n        892, \n        892, \n        893, \n        875, \n        892, \n        876, \n        875, \n        875, \n        876, \n        892, \n        883, \n        876, \n        892, \n        892, \n        876, \n        883, \n        892, \n        894, \n        883, \n        883, \n        894, \n        892, \n        895, \n        894, \n        892, \n        892, \n        894, \n        895, \n        892, \n        891, \n        895, \n        895, \n        891, \n        892, \n        895, \n        896, \n        897, \n        897, \n        896, \n        895, \n        897, \n        894, \n        895, \n        895, \n        894, \n        897, \n        883, \n        894, \n        897, \n        897, \n        894, \n        883, \n        897, \n        884, \n        883, \n        883, \n        884, \n        897, \n        889, \n        884, \n        897, \n        897, \n        884, \n        889, \n        897, \n        898, \n        889, \n        889, \n        898, \n        897, \n        899, \n        898, \n        897, \n        897, \n        898, \n        899, \n        897, \n        896, \n        899, \n        899, \n        896, \n        897, \n        900, \n        901, \n        902, \n        902, \n        901, \n        900, \n        902, \n        903, \n        900, \n        900, \n        903, \n        902, \n        890, \n        903, \n        902, \n        902, \n        903, \n        890, \n        902, \n        891, \n        890, \n        890, \n        891, \n        902, \n        895, \n        891, \n        902, \n        902, \n        891, \n        895, \n        902, \n        904, \n        895, \n        895, \n        904, \n        902, \n        905, \n        904, \n        902, \n        902, \n        904, \n        905, \n        902, \n        901, \n        905, \n        905, \n        901, \n        902, \n        905, \n        906, \n        907, \n        907, \n        906, \n        905, \n        907, \n        904, \n        905, \n        905, \n        904, \n        907, \n        895, \n        904, \n        907, \n        907, \n        904, \n        895, \n        907, \n        896, \n        895, \n        895, \n        896, \n        907, \n        899, \n        896, \n        907, \n        907, \n        896, \n        899, \n        907, \n        908, \n        899, \n        899, \n        908, \n        907, \n        909, \n        908, \n        907, \n        907, \n        908, \n        909, \n        907, \n        906, \n        909, \n        909, \n        906, \n        907, \n        910, \n        911, \n        912, \n        912, \n        911, \n        910, \n        912, \n        913, \n        910, \n        910, \n        913, \n        912, \n        900, \n        913, \n        912, \n        912, \n        913, \n        900, \n        912, \n        901, \n        900, \n        900, \n        901, \n        912, \n        905, \n        901, \n        912, \n        912, \n        901, \n        905, \n        912, \n        914, \n        905, \n        905, \n        914, \n        912, \n        915, \n        914, \n        912, \n        912, \n        914, \n        915, \n        912, \n        911, \n        915, \n        915, \n        911, \n        912, \n        915, \n        916, \n        917, \n        917, \n        916, \n        915, \n        917, \n        914, \n        915, \n        915, \n        914, \n        917, \n        905, \n        914, \n        917, \n        917, \n        914, \n        905, \n        917, \n        906, \n        905, \n        905, \n        906, \n        917, \n        909, \n        906, \n        917, \n        917, \n        906, \n        909, \n        917, \n        918, \n        909, \n        909, \n        918, \n        917, \n        919, \n        918, \n        917, \n        917, \n        918, \n        919, \n        917, \n        916, \n        919, \n        919, \n        916, \n        917, \n        920, \n        921, \n        922, \n        922, \n        921, \n        920, \n        922, \n        923, \n        920, \n        920, \n        923, \n        922, \n        910, \n        923, \n        922, \n        922, \n        923, \n        910, \n        922, \n        911, \n        910, \n        910, \n        911, \n        922, \n        915, \n        911, \n        922, \n        922, \n        911, \n        915, \n        922, \n        924, \n        915, \n        915, \n        924, \n        922, \n        925, \n        924, \n        922, \n        922, \n        924, \n        925, \n        922, \n        921, \n        925, \n        925, \n        921, \n        922, \n        925, \n        926, \n        927, \n        927, \n        926, \n        925, \n        927, \n        924, \n        925, \n        925, \n        924, \n        927, \n        915, \n        924, \n        927, \n        927, \n        924, \n        915, \n        927, \n        916, \n        915, \n        915, \n        916, \n        927, \n        919, \n        916, \n        927, \n        927, \n        916, \n        919, \n        927, \n        928, \n        919, \n        919, \n        928, \n        927, \n        929, \n        928, \n        927, \n        927, \n        928, \n        929, \n        927, \n        926, \n        929, \n        929, \n        926, \n        927, \n        930, \n        931, \n        932, \n        932, \n        931, \n        930, \n        932, \n        933, \n        930, \n        930, \n        933, \n        932, \n        920, \n        933, \n        932, \n        932, \n        933, \n        920, \n        932, \n        921, \n        920, \n        920, \n        921, \n        932, \n        925, \n        921, \n        932, \n        932, \n        921, \n        925, \n        932, \n        934, \n        925, \n        925, \n        934, \n        932, \n        935, \n        934, \n        932, \n        932, \n        934, \n        935, \n        932, \n        931, \n        935, \n        935, \n        931, \n        932, \n        935, \n        936, \n        937, \n        937, \n        936, \n        935, \n        937, \n        934, \n        935, \n        935, \n        934, \n        937, \n        925, \n        934, \n        937, \n        937, \n        934, \n        925, \n        937, \n        926, \n        925, \n        925, \n        926, \n        937, \n        929, \n        926, \n        937, \n        937, \n        926, \n        929, \n        937, \n        938, \n        929, \n        929, \n        938, \n        937, \n        939, \n        938, \n        937, \n        937, \n        938, \n        939, \n        937, \n        936, \n        939, \n        939, \n        936, \n        937, \n        940, \n        941, \n        942, \n        942, \n        941, \n        940, \n        942, \n        943, \n        940, \n        940, \n        943, \n        942, \n        930, \n        943, \n        942, \n        942, \n        943, \n        930, \n        942, \n        931, \n        930, \n        930, \n        931, \n        942, \n        935, \n        931, \n        942, \n        942, \n        931, \n        935, \n        942, \n        944, \n        935, \n        935, \n        944, \n        942, \n        945, \n        944, \n        942, \n        942, \n        944, \n        945, \n        942, \n        941, \n        945, \n        945, \n        941, \n        942, \n        945, \n        946, \n        947, \n        947, \n        946, \n        945, \n        947, \n        944, \n        945, \n        945, \n        944, \n        947, \n        935, \n        944, \n        947, \n        947, \n        944, \n        935, \n        947, \n        936, \n        935, \n        935, \n        936, \n        947, \n        939, \n        936, \n        947, \n        947, \n        936, \n        939, \n        947, \n        948, \n        939, \n        939, \n        948, \n        947, \n        949, \n        948, \n        947, \n        947, \n        948, \n        949, \n        947, \n        946, \n        949, \n        949, \n        946, \n        947, \n        950, \n        951, \n        952, \n        952, \n        951, \n        950, \n        952, \n        953, \n        950, \n        950, \n        953, \n        952, \n        940, \n        953, \n        952, \n        952, \n        953, \n        940, \n        952, \n        941, \n        940, \n        940, \n        941, \n        952, \n        945, \n        941, \n        952, \n        952, \n        941, \n        945, \n        952, \n        954, \n        945, \n        945, \n        954, \n        952, \n        955, \n        954, \n        952, \n        952, \n        954, \n        955, \n        952, \n        951, \n        955, \n        955, \n        951, \n        952, \n        955, \n        956, \n        957, \n        957, \n        956, \n        955, \n        957, \n        954, \n        955, \n        955, \n        954, \n        957, \n        945, \n        954, \n        957, \n        957, \n        954, \n        945, \n        957, \n        946, \n        945, \n        945, \n        946, \n        957, \n        949, \n        946, \n        957, \n        957, \n        946, \n        949, \n        957, \n        958, \n        949, \n        949, \n        958, \n        957, \n        959, \n        958, \n        957, \n        957, \n        958, \n        959, \n        957, \n        956, \n        959, \n        959, \n        956, \n        957, \n        960, \n        961, \n        962, \n        962, \n        961, \n        960, \n        962, \n        963, \n        960, \n        960, \n        963, \n        962, \n        950, \n        963, \n        962, \n        962, \n        963, \n        950, \n        962, \n        951, \n        950, \n        950, \n        951, \n        962, \n        955, \n        951, \n        962, \n        962, \n        951, \n        955, \n        962, \n        964, \n        955, \n        955, \n        964, \n        962, \n        965, \n        964, \n        962, \n        962, \n        964, \n        965, \n        962, \n        961, \n        965, \n        965, \n        961, \n        962, \n        965, \n        966, \n        967, \n        967, \n        966, \n        965, \n        967, \n        964, \n        965, \n        965, \n        964, \n        967, \n        955, \n        964, \n        967, \n        967, \n        964, \n        955, \n        967, \n        956, \n        955, \n        955, \n        956, \n        967, \n        959, \n        956, \n        967, \n        967, \n        956, \n        959, \n        967, \n        968, \n        959, \n        959, \n        968, \n        967, \n        969, \n        968, \n        967, \n        967, \n        968, \n        969, \n        967, \n        966, \n        969, \n        969, \n        966, \n        967, \n        970, \n        971, \n        972, \n        972, \n        971, \n        970, \n        972, \n        973, \n        970, \n        970, \n        973, \n        972, \n        960, \n        973, \n        972, \n        972, \n        973, \n        960, \n        972, \n        961, \n        960, \n        960, \n        961, \n        972, \n        965, \n        961, \n        972, \n        972, \n        961, \n        965, \n        972, \n        974, \n        965, \n        965, \n        974, \n        972, \n        975, \n        974, \n        972, \n        972, \n        974, \n        975, \n        972, \n        971, \n        975, \n        975, \n        971, \n        972, \n        975, \n        976, \n        977, \n        977, \n        976, \n        975, \n        977, \n        974, \n        975, \n        975, \n        974, \n        977, \n        965, \n        974, \n        977, \n        977, \n        974, \n        965, \n        977, \n        966, \n        965, \n        965, \n        966, \n        977, \n        969, \n        966, \n        977, \n        977, \n        966, \n        969, \n        977, \n        978, \n        969, \n        969, \n        978, \n        977, \n        979, \n        978, \n        977, \n        977, \n        978, \n        979, \n        977, \n        976, \n        979, \n        979, \n        976, \n        977, \n        980, \n        981, \n        982, \n        982, \n        981, \n        980, \n        982, \n        983, \n        980, \n        980, \n        983, \n        982, \n        970, \n        983, \n        982, \n        982, \n        983, \n        970, \n        982, \n        971, \n        970, \n        970, \n        971, \n        982, \n        975, \n        971, \n        982, \n        982, \n        971, \n        975, \n        982, \n        984, \n        975, \n        975, \n        984, \n        982, \n        985, \n        984, \n        982, \n        982, \n        984, \n        985, \n        982, \n        981, \n        985, \n        985, \n        981, \n        982, \n        985, \n        986, \n        987, \n        987, \n        986, \n        985, \n        987, \n        984, \n        985, \n        985, \n        984, \n        987, \n        975, \n        984, \n        987, \n        987, \n        984, \n        975, \n        987, \n        976, \n        975, \n        975, \n        976, \n        987, \n        979, \n        976, \n        987, \n        987, \n        976, \n        979, \n        987, \n        988, \n        979, \n        979, \n        988, \n        987, \n        989, \n        988, \n        987, \n        987, \n        988, \n        989, \n        987, \n        986, \n        989, \n        989, \n        986, \n        987, \n        990, \n        991, \n        992, \n        992, \n        991, \n        990, \n        992, \n        993, \n        990, \n        990, \n        993, \n        992, \n        980, \n        993, \n        992, \n        992, \n        993, \n        980, \n        992, \n        981, \n        980, \n        980, \n        981, \n        992, \n        985, \n        981, \n        992, \n        992, \n        981, \n        985, \n        992, \n        994, \n        985, \n        985, \n        994, \n        992, \n        995, \n        994, \n        992, \n        992, \n        994, \n        995, \n        992, \n        991, \n        995, \n        995, \n        991, \n        992, \n        995, \n        996, \n        997, \n        997, \n        996, \n        995, \n        997, \n        994, \n        995, \n        995, \n        994, \n        997, \n        985, \n        994, \n        997, \n        997, \n        994, \n        985, \n        997, \n        986, \n        985, \n        985, \n        986, \n        997, \n        989, \n        986, \n        997, \n        997, \n        986, \n        989, \n        997, \n        998, \n        989, \n        989, \n        998, \n        997, \n        999, \n        998, \n        997, \n        997, \n        998, \n        999, \n        997, \n        996, \n        999, \n        999, \n        996, \n        997, \n        1000, \n        1001, \n        1002, \n        1002, \n        1001, \n        1000, \n        1002, \n        1003, \n        1000, \n        1000, \n        1003, \n        1002, \n        1004, \n        1003, \n        1002, \n        1002, \n        1003, \n        1004, \n        1002, \n        1005, \n        1004, \n        1004, \n        1005, \n        1002, \n        1006, \n        1005, \n        1002, \n        1002, \n        1005, \n        1006, \n        1002, \n        1007, \n        1006, \n        1006, \n        1007, \n        1002, \n        1008, \n        1007, \n        1002, \n        1002, \n        1007, \n        1008, \n        1002, \n        1001, \n        1008, \n        1008, \n        1001, \n        1002, \n        1008, \n        1009, \n        1010, \n        1010, \n        1009, \n        1008, \n        1010, \n        1007, \n        1008, \n        1008, \n        1007, \n        1010, \n        1006, \n        1007, \n        1010, \n        1010, \n        1007, \n        1006, \n        1010, \n        1011, \n        1006, \n        1006, \n        1011, \n        1010, \n        1012, \n        1011, \n        1010, \n        1010, \n        1011, \n        1012, \n        1010, \n        1013, \n        1012, \n        1012, \n        1013, \n        1010, \n        1014, \n        1013, \n        1010, \n        1010, \n        1013, \n        1014, \n        1010, \n        1009, \n        1014, \n        1014, \n        1009, \n        1010, \n        1015, \n        1016, \n        1017, \n        1017, \n        1016, \n        1015, \n        1017, \n        1018, \n        1015, \n        1015, \n        1018, \n        1017, \n        1000, \n        1018, \n        1017, \n        1017, \n        1018, \n        1000, \n        1017, \n        1001, \n        1000, \n        1000, \n        1001, \n        1017, \n        1008, \n        1001, \n        1017, \n        1017, \n        1001, \n        1008, \n        1017, \n        1019, \n        1008, \n        1008, \n        1019, \n        1017, \n        1020, \n        1019, \n        1017, \n        1017, \n        1019, \n        1020, \n        1017, \n        1016, \n        1020, \n        1020, \n        1016, \n        1017, \n        1020, \n        1021, \n        1022, \n        1022, \n        1021, \n        1020, \n        1022, \n        1019, \n        1020, \n        1020, \n        1019, \n        1022, \n        1008, \n        1019, \n        1022, \n        1022, \n        1019, \n        1008, \n        1022, \n        1009, \n        1008, \n        1008, \n        1009, \n        1022, \n        1014, \n        1009, \n        1022, \n        1022, \n        1009, \n        1014, \n        1022, \n        1023, \n        1014, \n        1014, \n        1023, \n        1022, \n        1024, \n        1023, \n        1022, \n        1022, \n        1023, \n        1024, \n        1022, \n        1021, \n        1024, \n        1024, \n        1021, \n        1022, \n        1025, \n        1026, \n        1027, \n        1027, \n        1026, \n        1025, \n        1027, \n        1028, \n        1025, \n        1025, \n        1028, \n        1027, \n        1015, \n        1028, \n        1027, \n        1027, \n        1028, \n        1015, \n        1027, \n        1016, \n        1015, \n        1015, \n        1016, \n        1027, \n        1020, \n        1016, \n        1027, \n        1027, \n        1016, \n        1020, \n        1027, \n        1029, \n        1020, \n        1020, \n        1029, \n        1027, \n        1030, \n        1029, \n        1027, \n        1027, \n        1029, \n        1030, \n        1027, \n        1026, \n        1030, \n        1030, \n        1026, \n        1027, \n        1030, \n        1031, \n        1032, \n        1032, \n        1031, \n        1030, \n        1032, \n        1029, \n        1030, \n        1030, \n        1029, \n        1032, \n        1020, \n        1029, \n        1032, \n        1032, \n        1029, \n        1020, \n        1032, \n        1021, \n        1020, \n        1020, \n        1021, \n        1032, \n        1024, \n        1021, \n        1032, \n        1032, \n        1021, \n        1024, \n        1032, \n        1033, \n        1024, \n        1024, \n        1033, \n        1032, \n        1034, \n        1033, \n        1032, \n        1032, \n        1033, \n        1034, \n        1032, \n        1031, \n        1034, \n        1034, \n        1031, \n        1032, \n        1035, \n        1036, \n        1037, \n        1037, \n        1036, \n        1035, \n        1037, \n        1038, \n        1035, \n        1035, \n        1038, \n        1037, \n        1025, \n        1038, \n        1037, \n        1037, \n        1038, \n        1025, \n        1037, \n        1026, \n        1025, \n        1025, \n        1026, \n        1037, \n        1030, \n        1026, \n        1037, \n        1037, \n        1026, \n        1030, \n        1037, \n        1039, \n        1030, \n        1030, \n        1039, \n        1037, \n        1040, \n        1039, \n        1037, \n        1037, \n        1039, \n        1040, \n        1037, \n        1036, \n        1040, \n        1040, \n        1036, \n        1037, \n        1040, \n        1041, \n        1042, \n        1042, \n        1041, \n        1040, \n        1042, \n        1039, \n        1040, \n        1040, \n        1039, \n        1042, \n        1030, \n        1039, \n        1042, \n        1042, \n        1039, \n        1030, \n        1042, \n        1031, \n        1030, \n        1030, \n        1031, \n        1042, \n        1034, \n        1031, \n        1042, \n        1042, \n        1031, \n        1034, \n        1042, \n        1043, \n        1034, \n        1034, \n        1043, \n        1042, \n        1044, \n        1043, \n        1042, \n        1042, \n        1043, \n        1044, \n        1042, \n        1041, \n        1044, \n        1044, \n        1041, \n        1042, \n        1045, \n        1046, \n        1047, \n        1047, \n        1046, \n        1045, \n        1047, \n        1048, \n        1045, \n        1045, \n        1048, \n        1047, \n        1035, \n        1048, \n        1047, \n        1047, \n        1048, \n        1035, \n        1047, \n        1036, \n        1035, \n        1035, \n        1036, \n        1047, \n        1040, \n        1036, \n        1047, \n        1047, \n        1036, \n        1040, \n        1047, \n        1049, \n        1040, \n        1040, \n        1049, \n        1047, \n        1050, \n        1049, \n        1047, \n        1047, \n        1049, \n        1050, \n        1047, \n        1046, \n        1050, \n        1050, \n        1046, \n        1047, \n        1050, \n        1051, \n        1052, \n        1052, \n        1051, \n        1050, \n        1052, \n        1049, \n        1050, \n        1050, \n        1049, \n        1052, \n        1040, \n        1049, \n        1052, \n        1052, \n        1049, \n        1040, \n        1052, \n        1041, \n        1040, \n        1040, \n        1041, \n        1052, \n        1044, \n        1041, \n        1052, \n        1052, \n        1041, \n        1044, \n        1052, \n        1053, \n        1044, \n        1044, \n        1053, \n        1052, \n        1054, \n        1053, \n        1052, \n        1052, \n        1053, \n        1054, \n        1052, \n        1051, \n        1054, \n        1054, \n        1051, \n        1052, \n        1055, \n        1056, \n        1057, \n        1057, \n        1056, \n        1055, \n        1057, \n        1058, \n        1055, \n        1055, \n        1058, \n        1057, \n        1045, \n        1058, \n        1057, \n        1057, \n        1058, \n        1045, \n        1057, \n        1046, \n        1045, \n        1045, \n        1046, \n        1057, \n        1050, \n        1046, \n        1057, \n        1057, \n        1046, \n        1050, \n        1057, \n        1059, \n        1050, \n        1050, \n        1059, \n        1057, \n        1060, \n        1059, \n        1057, \n        1057, \n        1059, \n        1060, \n        1057, \n        1056, \n        1060, \n        1060, \n        1056, \n        1057, \n        1060, \n        1061, \n        1062, \n        1062, \n        1061, \n        1060, \n        1062, \n        1059, \n        1060, \n        1060, \n        1059, \n        1062, \n        1050, \n        1059, \n        1062, \n        1062, \n        1059, \n        1050, \n        1062, \n        1051, \n        1050, \n        1050, \n        1051, \n        1062, \n        1054, \n        1051, \n        1062, \n        1062, \n        1051, \n        1054, \n        1062, \n        1063, \n        1054, \n        1054, \n        1063, \n        1062, \n        1064, \n        1063, \n        1062, \n        1062, \n        1063, \n        1064, \n        1062, \n        1061, \n        1064, \n        1064, \n        1061, \n        1062, \n        1065, \n        1066, \n        1067, \n        1067, \n        1066, \n        1065, \n        1067, \n        1068, \n        1065, \n        1065, \n        1068, \n        1067, \n        1055, \n        1068, \n        1067, \n        1067, \n        1068, \n        1055, \n        1067, \n        1056, \n        1055, \n        1055, \n        1056, \n        1067, \n        1060, \n        1056, \n        1067, \n        1067, \n        1056, \n        1060, \n        1067, \n        1069, \n        1060, \n        1060, \n        1069, \n        1067, \n        1070, \n        1069, \n        1067, \n        1067, \n        1069, \n        1070, \n        1067, \n        1066, \n        1070, \n        1070, \n        1066, \n        1067, \n        1070, \n        1071, \n        1072, \n        1072, \n        1071, \n        1070, \n        1072, \n        1069, \n        1070, \n        1070, \n        1069, \n        1072, \n        1060, \n        1069, \n        1072, \n        1072, \n        1069, \n        1060, \n        1072, \n        1061, \n        1060, \n        1060, \n        1061, \n        1072, \n        1064, \n        1061, \n        1072, \n        1072, \n        1061, \n        1064, \n        1072, \n        1073, \n        1064, \n        1064, \n        1073, \n        1072, \n        1074, \n        1073, \n        1072, \n        1072, \n        1073, \n        1074, \n        1072, \n        1071, \n        1074, \n        1074, \n        1071, \n        1072, \n        1075, \n        1076, \n        1077, \n        1077, \n        1076, \n        1075, \n        1077, \n        1078, \n        1075, \n        1075, \n        1078, \n        1077, \n        1065, \n        1078, \n        1077, \n        1077, \n        1078, \n        1065, \n        1077, \n        1066, \n        1065, \n        1065, \n        1066, \n        1077, \n        1070, \n        1066, \n        1077, \n        1077, \n        1066, \n        1070, \n        1077, \n        1079, \n        1070, \n        1070, \n        1079, \n        1077, \n        1080, \n        1079, \n        1077, \n        1077, \n        1079, \n        1080, \n        1077, \n        1076, \n        1080, \n        1080, \n        1076, \n        1077, \n        1080, \n        1081, \n        1082, \n        1082, \n        1081, \n        1080, \n        1082, \n        1079, \n        1080, \n        1080, \n        1079, \n        1082, \n        1070, \n        1079, \n        1082, \n        1082, \n        1079, \n        1070, \n        1082, \n        1071, \n        1070, \n        1070, \n        1071, \n        1082, \n        1074, \n        1071, \n        1082, \n        1082, \n        1071, \n        1074, \n        1082, \n        1083, \n        1074, \n        1074, \n        1083, \n        1082, \n        1084, \n        1083, \n        1082, \n        1082, \n        1083, \n        1084, \n        1082, \n        1081, \n        1084, \n        1084, \n        1081, \n        1082, \n        1085, \n        1086, \n        1087, \n        1087, \n        1086, \n        1085, \n        1087, \n        1088, \n        1085, \n        1085, \n        1088, \n        1087, \n        1075, \n        1088, \n        1087, \n        1087, \n        1088, \n        1075, \n        1087, \n        1076, \n        1075, \n        1075, \n        1076, \n        1087, \n        1080, \n        1076, \n        1087, \n        1087, \n        1076, \n        1080, \n        1087, \n        1089, \n        1080, \n        1080, \n        1089, \n        1087, \n        1090, \n        1089, \n        1087, \n        1087, \n        1089, \n        1090, \n        1087, \n        1086, \n        1090, \n        1090, \n        1086, \n        1087, \n        1090, \n        1091, \n        1092, \n        1092, \n        1091, \n        1090, \n        1092, \n        1089, \n        1090, \n        1090, \n        1089, \n        1092, \n        1080, \n        1089, \n        1092, \n        1092, \n        1089, \n        1080, \n        1092, \n        1081, \n        1080, \n        1080, \n        1081, \n        1092, \n        1084, \n        1081, \n        1092, \n        1092, \n        1081, \n        1084, \n        1092, \n        1093, \n        1084, \n        1084, \n        1093, \n        1092, \n        1094, \n        1093, \n        1092, \n        1092, \n        1093, \n        1094, \n        1092, \n        1091, \n        1094, \n        1094, \n        1091, \n        1092, \n        1095, \n        1096, \n        1097, \n        1097, \n        1096, \n        1095, \n        1097, \n        1098, \n        1095, \n        1095, \n        1098, \n        1097, \n        1085, \n        1098, \n        1097, \n        1097, \n        1098, \n        1085, \n        1097, \n        1086, \n        1085, \n        1085, \n        1086, \n        1097, \n        1090, \n        1086, \n        1097, \n        1097, \n        1086, \n        1090, \n        1097, \n        1099, \n        1090, \n        1090, \n        1099, \n        1097, \n        1100, \n        1099, \n        1097, \n        1097, \n        1099, \n        1100, \n        1097, \n        1096, \n        1100, \n        1100, \n        1096, \n        1097, \n        1100, \n        1101, \n        1102, \n        1102, \n        1101, \n        1100, \n        1102, \n        1099, \n        1100, \n        1100, \n        1099, \n        1102, \n        1090, \n        1099, \n        1102, \n        1102, \n        1099, \n        1090, \n        1102, \n        1091, \n        1090, \n        1090, \n        1091, \n        1102, \n        1094, \n        1091, \n        1102, \n        1102, \n        1091, \n        1094, \n        1102, \n        1103, \n        1094, \n        1094, \n        1103, \n        1102, \n        1104, \n        1103, \n        1102, \n        1102, \n        1103, \n        1104, \n        1102, \n        1101, \n        1104, \n        1104, \n        1101, \n        1102, \n        1105, \n        1106, \n        1107, \n        1107, \n        1106, \n        1105, \n        1107, \n        1108, \n        1105, \n        1105, \n        1108, \n        1107, \n        1095, \n        1108, \n        1107, \n        1107, \n        1108, \n        1095, \n        1107, \n        1096, \n        1095, \n        1095, \n        1096, \n        1107, \n        1100, \n        1096, \n        1107, \n        1107, \n        1096, \n        1100, \n        1107, \n        1109, \n        1100, \n        1100, \n        1109, \n        1107, \n        1110, \n        1109, \n        1107, \n        1107, \n        1109, \n        1110, \n        1107, \n        1106, \n        1110, \n        1110, \n        1106, \n        1107, \n        1110, \n        1111, \n        1112, \n        1112, \n        1111, \n        1110, \n        1112, \n        1109, \n        1110, \n        1110, \n        1109, \n        1112, \n        1100, \n        1109, \n        1112, \n        1112, \n        1109, \n        1100, \n        1112, \n        1101, \n        1100, \n        1100, \n        1101, \n        1112, \n        1104, \n        1101, \n        1112, \n        1112, \n        1101, \n        1104, \n        1112, \n        1113, \n        1104, \n        1104, \n        1113, \n        1112, \n        1114, \n        1113, \n        1112, \n        1112, \n        1113, \n        1114, \n        1112, \n        1111, \n        1114, \n        1114, \n        1111, \n        1112, \n        1115, \n        1116, \n        1117, \n        1117, \n        1116, \n        1115, \n        1117, \n        1118, \n        1115, \n        1115, \n        1118, \n        1117, \n        1105, \n        1118, \n        1117, \n        1117, \n        1118, \n        1105, \n        1117, \n        1106, \n        1105, \n        1105, \n        1106, \n        1117, \n        1110, \n        1106, \n        1117, \n        1117, \n        1106, \n        1110, \n        1117, \n        1119, \n        1110, \n        1110, \n        1119, \n        1117, \n        1120, \n        1119, \n        1117, \n        1117, \n        1119, \n        1120, \n        1117, \n        1116, \n        1120, \n        1120, \n        1116, \n        1117, \n        1120, \n        1121, \n        1122, \n        1122, \n        1121, \n        1120, \n        1122, \n        1119, \n        1120, \n        1120, \n        1119, \n        1122, \n        1110, \n        1119, \n        1122, \n        1122, \n        1119, \n        1110, \n        1122, \n        1111, \n        1110, \n        1110, \n        1111, \n        1122, \n        1114, \n        1111, \n        1122, \n        1122, \n        1111, \n        1114, \n        1122, \n        1123, \n        1114, \n        1114, \n        1123, \n        1122, \n        1124, \n        1123, \n        1122, \n        1122, \n        1123, \n        1124, \n        1122, \n        1121, \n        1124, \n        1124, \n        1121, \n        1122, \n        1125, \n        1126, \n        1127, \n        1127, \n        1126, \n        1125, \n        1127, \n        1128, \n        1125, \n        1125, \n        1128, \n        1127, \n        1129, \n        1128, \n        1127, \n        1127, \n        1128, \n        1129, \n        1127, \n        1130, \n        1129, \n        1129, \n        1130, \n        1127, \n        1131, \n        1130, \n        1127, \n        1127, \n        1130, \n        1131, \n        1127, \n        1132, \n        1131, \n        1131, \n        1132, \n        1127, \n        1133, \n        1132, \n        1127, \n        1127, \n        1132, \n        1133, \n        1127, \n        1126, \n        1133, \n        1133, \n        1126, \n        1127, \n        1133, \n        1134, \n        1135, \n        1135, \n        1134, \n        1133, \n        1135, \n        1132, \n        1133, \n        1133, \n        1132, \n        1135, \n        1131, \n        1132, \n        1135, \n        1135, \n        1132, \n        1131, \n        1135, \n        1136, \n        1131, \n        1131, \n        1136, \n        1135, \n        1137, \n        1136, \n        1135, \n        1135, \n        1136, \n        1137, \n        1135, \n        1138, \n        1137, \n        1137, \n        1138, \n        1135, \n        1139, \n        1138, \n        1135, \n        1135, \n        1138, \n        1139, \n        1135, \n        1134, \n        1139, \n        1139, \n        1134, \n        1135, \n        1140, \n        1141, \n        1142, \n        1142, \n        1141, \n        1140, \n        1142, \n        1143, \n        1140, \n        1140, \n        1143, \n        1142, \n        1125, \n        1143, \n        1142, \n        1142, \n        1143, \n        1125, \n        1142, \n        1126, \n        1125, \n        1125, \n        1126, \n        1142, \n        1133, \n        1126, \n        1142, \n        1142, \n        1126, \n        1133, \n        1142, \n        1144, \n        1133, \n        1133, \n        1144, \n        1142, \n        1145, \n        1144, \n        1142, \n        1142, \n        1144, \n        1145, \n        1142, \n        1141, \n        1145, \n        1145, \n        1141, \n        1142, \n        1145, \n        1146, \n        1147, \n        1147, \n        1146, \n        1145, \n        1147, \n        1144, \n        1145, \n        1145, \n        1144, \n        1147, \n        1133, \n        1144, \n        1147, \n        1147, \n        1144, \n        1133, \n        1147, \n        1134, \n        1133, \n        1133, \n        1134, \n        1147, \n        1139, \n        1134, \n        1147, \n        1147, \n        1134, \n        1139, \n        1147, \n        1148, \n        1139, \n        1139, \n        1148, \n        1147, \n        1149, \n        1148, \n        1147, \n        1147, \n        1148, \n        1149, \n        1147, \n        1146, \n        1149, \n        1149, \n        1146, \n        1147, \n        1150, \n        1151, \n        1152, \n        1152, \n        1151, \n        1150, \n        1152, \n        1153, \n        1150, \n        1150, \n        1153, \n        1152, \n        1140, \n        1153, \n        1152, \n        1152, \n        1153, \n        1140, \n        1152, \n        1141, \n        1140, \n        1140, \n        1141, \n        1152, \n        1145, \n        1141, \n        1152, \n        1152, \n        1141, \n        1145, \n        1152, \n        1154, \n        1145, \n        1145, \n        1154, \n        1152, \n        1155, \n        1154, \n        1152, \n        1152, \n        1154, \n        1155, \n        1152, \n        1151, \n        1155, \n        1155, \n        1151, \n        1152, \n        1155, \n        1156, \n        1157, \n        1157, \n        1156, \n        1155, \n        1157, \n        1154, \n        1155, \n        1155, \n        1154, \n        1157, \n        1145, \n        1154, \n        1157, \n        1157, \n        1154, \n        1145, \n        1157, \n        1146, \n        1145, \n        1145, \n        1146, \n        1157, \n        1149, \n        1146, \n        1157, \n        1157, \n        1146, \n        1149, \n        1157, \n        1158, \n        1149, \n        1149, \n        1158, \n        1157, \n        1159, \n        1158, \n        1157, \n        1157, \n        1158, \n        1159, \n        1157, \n        1156, \n        1159, \n        1159, \n        1156, \n        1157, \n        1160, \n        1161, \n        1162, \n        1162, \n        1161, \n        1160, \n        1162, \n        1163, \n        1160, \n        1160, \n        1163, \n        1162, \n        1150, \n        1163, \n        1162, \n        1162, \n        1163, \n        1150, \n        1162, \n        1151, \n        1150, \n        1150, \n        1151, \n        1162, \n        1155, \n        1151, \n        1162, \n        1162, \n        1151, \n        1155, \n        1162, \n        1164, \n        1155, \n        1155, \n        1164, \n        1162, \n        1165, \n        1164, \n        1162, \n        1162, \n        1164, \n        1165, \n        1162, \n        1161, \n        1165, \n        1165, \n        1161, \n        1162, \n        1165, \n        1166, \n        1167, \n        1167, \n        1166, \n        1165, \n        1167, \n        1164, \n        1165, \n        1165, \n        1164, \n        1167, \n        1155, \n        1164, \n        1167, \n        1167, \n        1164, \n        1155, \n        1167, \n        1156, \n        1155, \n        1155, \n        1156, \n        1167, \n        1159, \n        1156, \n        1167, \n        1167, \n        1156, \n        1159, \n        1167, \n        1168, \n        1159, \n        1159, \n        1168, \n        1167, \n        1169, \n        1168, \n        1167, \n        1167, \n        1168, \n        1169, \n        1167, \n        1166, \n        1169, \n        1169, \n        1166, \n        1167, \n        1170, \n        1171, \n        1172, \n        1172, \n        1171, \n        1170, \n        1172, \n        1173, \n        1170, \n        1170, \n        1173, \n        1172, \n        1160, \n        1173, \n        1172, \n        1172, \n        1173, \n        1160, \n        1172, \n        1161, \n        1160, \n        1160, \n        1161, \n        1172, \n        1165, \n        1161, \n        1172, \n        1172, \n        1161, \n        1165, \n        1172, \n        1174, \n        1165, \n        1165, \n        1174, \n        1172, \n        1175, \n        1174, \n        1172, \n        1172, \n        1174, \n        1175, \n        1172, \n        1171, \n        1175, \n        1175, \n        1171, \n        1172, \n        1175, \n        1176, \n        1177, \n        1177, \n        1176, \n        1175, \n        1177, \n        1174, \n        1175, \n        1175, \n        1174, \n        1177, \n        1165, \n        1174, \n        1177, \n        1177, \n        1174, \n        1165, \n        1177, \n        1166, \n        1165, \n        1165, \n        1166, \n        1177, \n        1169, \n        1166, \n        1177, \n        1177, \n        1166, \n        1169, \n        1177, \n        1178, \n        1169, \n        1169, \n        1178, \n        1177, \n        1179, \n        1178, \n        1177, \n        1177, \n        1178, \n        1179, \n        1177, \n        1176, \n        1179, \n        1179, \n        1176, \n        1177, \n        1180, \n        1181, \n        1182, \n        1182, \n        1181, \n        1180, \n        1182, \n        1183, \n        1180, \n        1180, \n        1183, \n        1182, \n        1170, \n        1183, \n        1182, \n        1182, \n        1183, \n        1170, \n        1182, \n        1171, \n        1170, \n        1170, \n        1171, \n        1182, \n        1175, \n        1171, \n        1182, \n        1182, \n        1171, \n        1175, \n        1182, \n        1184, \n        1175, \n        1175, \n        1184, \n        1182, \n        1185, \n        1184, \n        1182, \n        1182, \n        1184, \n        1185, \n        1182, \n        1181, \n        1185, \n        1185, \n        1181, \n        1182, \n        1185, \n        1186, \n        1187, \n        1187, \n        1186, \n        1185, \n        1187, \n        1184, \n        1185, \n        1185, \n        1184, \n        1187, \n        1175, \n        1184, \n        1187, \n        1187, \n        1184, \n        1175, \n        1187, \n        1176, \n        1175, \n        1175, \n        1176, \n        1187, \n        1179, \n        1176, \n        1187, \n        1187, \n        1176, \n        1179, \n        1187, \n        1188, \n        1179, \n        1179, \n        1188, \n        1187, \n        1189, \n        1188, \n        1187, \n        1187, \n        1188, \n        1189, \n        1187, \n        1186, \n        1189, \n        1189, \n        1186, \n        1187, \n        1190, \n        1191, \n        1192, \n        1192, \n        1191, \n        1190, \n        1192, \n        1193, \n        1190, \n        1190, \n        1193, \n        1192, \n        1180, \n        1193, \n        1192, \n        1192, \n        1193, \n        1180, \n        1192, \n        1181, \n        1180, \n        1180, \n        1181, \n        1192, \n        1185, \n        1181, \n        1192, \n        1192, \n        1181, \n        1185, \n        1192, \n        1194, \n        1185, \n        1185, \n        1194, \n        1192, \n        1195, \n        1194, \n        1192, \n        1192, \n        1194, \n        1195, \n        1192, \n        1191, \n        1195, \n        1195, \n        1191, \n        1192, \n        1195, \n        1196, \n        1197, \n        1197, \n        1196, \n        1195, \n        1197, \n        1194, \n        1195, \n        1195, \n        1194, \n        1197, \n        1185, \n        1194, \n        1197, \n        1197, \n        1194, \n        1185, \n        1197, \n        1186, \n        1185, \n        1185, \n        1186, \n        1197, \n        1189, \n        1186, \n        1197, \n        1197, \n        1186, \n        1189, \n        1197, \n        1198, \n        1189, \n        1189, \n        1198, \n        1197, \n        1199, \n        1198, \n        1197, \n        1197, \n        1198, \n        1199, \n        1197, \n        1196, \n        1199, \n        1199, \n        1196, \n        1197, \n        1200, \n        1201, \n        1202, \n        1202, \n        1201, \n        1200, \n        1202, \n        1203, \n        1200, \n        1200, \n        1203, \n        1202, \n        1190, \n        1203, \n        1202, \n        1202, \n        1203, \n        1190, \n        1202, \n        1191, \n        1190, \n        1190, \n        1191, \n        1202, \n        1195, \n        1191, \n        1202, \n        1202, \n        1191, \n        1195, \n        1202, \n        1204, \n        1195, \n        1195, \n        1204, \n        1202, \n        1205, \n        1204, \n        1202, \n        1202, \n        1204, \n        1205, \n        1202, \n        1201, \n        1205, \n        1205, \n        1201, \n        1202, \n        1205, \n        1206, \n        1207, \n        1207, \n        1206, \n        1205, \n        1207, \n        1204, \n        1205, \n        1205, \n        1204, \n        1207, \n        1195, \n        1204, \n        1207, \n        1207, \n        1204, \n        1195, \n        1207, \n        1196, \n        1195, \n        1195, \n        1196, \n        1207, \n        1199, \n        1196, \n        1207, \n        1207, \n        1196, \n        1199, \n        1207, \n        1208, \n        1199, \n        1199, \n        1208, \n        1207, \n        1209, \n        1208, \n        1207, \n        1207, \n        1208, \n        1209, \n        1207, \n        1206, \n        1209, \n        1209, \n        1206, \n        1207, \n        1210, \n        1211, \n        1212, \n        1212, \n        1211, \n        1210, \n        1212, \n        1213, \n        1210, \n        1210, \n        1213, \n        1212, \n        1200, \n        1213, \n        1212, \n        1212, \n        1213, \n        1200, \n        1212, \n        1201, \n        1200, \n        1200, \n        1201, \n        1212, \n        1205, \n        1201, \n        1212, \n        1212, \n        1201, \n        1205, \n        1212, \n        1214, \n        1205, \n        1205, \n        1214, \n        1212, \n        1215, \n        1214, \n        1212, \n        1212, \n        1214, \n        1215, \n        1212, \n        1211, \n        1215, \n        1215, \n        1211, \n        1212, \n        1215, \n        1216, \n        1217, \n        1217, \n        1216, \n        1215, \n        1217, \n        1214, \n        1215, \n        1215, \n        1214, \n        1217, \n        1205, \n        1214, \n        1217, \n        1217, \n        1214, \n        1205, \n        1217, \n        1206, \n        1205, \n        1205, \n        1206, \n        1217, \n        1209, \n        1206, \n        1217, \n        1217, \n        1206, \n        1209, \n        1217, \n        1218, \n        1209, \n        1209, \n        1218, \n        1217, \n        1219, \n        1218, \n        1217, \n        1217, \n        1218, \n        1219, \n        1217, \n        1216, \n        1219, \n        1219, \n        1216, \n        1217, \n        1220, \n        1221, \n        1222, \n        1222, \n        1221, \n        1220, \n        1222, \n        1223, \n        1220, \n        1220, \n        1223, \n        1222, \n        1210, \n        1223, \n        1222, \n        1222, \n        1223, \n        1210, \n        1222, \n        1211, \n        1210, \n        1210, \n        1211, \n        1222, \n        1215, \n        1211, \n        1222, \n        1222, \n        1211, \n        1215, \n        1222, \n        1224, \n        1215, \n        1215, \n        1224, \n        1222, \n        1225, \n        1224, \n        1222, \n        1222, \n        1224, \n        1225, \n        1222, \n        1221, \n        1225, \n        1225, \n        1221, \n        1222, \n        1225, \n        1226, \n        1227, \n        1227, \n        1226, \n        1225, \n        1227, \n        1224, \n        1225, \n        1225, \n        1224, \n        1227, \n        1215, \n        1224, \n        1227, \n        1227, \n        1224, \n        1215, \n        1227, \n        1216, \n        1215, \n        1215, \n        1216, \n        1227, \n        1219, \n        1216, \n        1227, \n        1227, \n        1216, \n        1219, \n        1227, \n        1228, \n        1219, \n        1219, \n        1228, \n        1227, \n        1229, \n        1228, \n        1227, \n        1227, \n        1228, \n        1229, \n        1227, \n        1226, \n        1229, \n        1229, \n        1226, \n        1227, \n        1230, \n        1231, \n        1232, \n        1232, \n        1231, \n        1230, \n        1232, \n        1233, \n        1230, \n        1230, \n        1233, \n        1232, \n        1220, \n        1233, \n        1232, \n        1232, \n        1233, \n        1220, \n        1232, \n        1221, \n        1220, \n        1220, \n        1221, \n        1232, \n        1225, \n        1221, \n        1232, \n        1232, \n        1221, \n        1225, \n        1232, \n        1234, \n        1225, \n        1225, \n        1234, \n        1232, \n        1235, \n        1234, \n        1232, \n        1232, \n        1234, \n        1235, \n        1232, \n        1231, \n        1235, \n        1235, \n        1231, \n        1232, \n        1235, \n        1236, \n        1237, \n        1237, \n        1236, \n        1235, \n        1237, \n        1234, \n        1235, \n        1235, \n        1234, \n        1237, \n        1225, \n        1234, \n        1237, \n        1237, \n        1234, \n        1225, \n        1237, \n        1226, \n        1225, \n        1225, \n        1226, \n        1237, \n        1229, \n        1226, \n        1237, \n        1237, \n        1226, \n        1229, \n        1237, \n        1238, \n        1229, \n        1229, \n        1238, \n        1237, \n        1239, \n        1238, \n        1237, \n        1237, \n        1238, \n        1239, \n        1237, \n        1236, \n        1239, \n        1239, \n        1236, \n        1237, \n        1240, \n        1241, \n        1242, \n        1242, \n        1241, \n        1240, \n        1242, \n        1243, \n        1240, \n        1240, \n        1243, \n        1242, \n        1230, \n        1243, \n        1242, \n        1242, \n        1243, \n        1230, \n        1242, \n        1231, \n        1230, \n        1230, \n        1231, \n        1242, \n        1235, \n        1231, \n        1242, \n        1242, \n        1231, \n        1235, \n        1242, \n        1244, \n        1235, \n        1235, \n        1244, \n        1242, \n        1245, \n        1244, \n        1242, \n        1242, \n        1244, \n        1245, \n        1242, \n        1241, \n        1245, \n        1245, \n        1241, \n        1242, \n        1245, \n        1246, \n        1247, \n        1247, \n        1246, \n        1245, \n        1247, \n        1244, \n        1245, \n        1245, \n        1244, \n        1247, \n        1235, \n        1244, \n        1247, \n        1247, \n        1244, \n        1235, \n        1247, \n        1236, \n        1235, \n        1235, \n        1236, \n        1247, \n        1239, \n        1236, \n        1247, \n        1247, \n        1236, \n        1239, \n        1247, \n        1248, \n        1239, \n        1239, \n        1248, \n        1247, \n        1249, \n        1248, \n        1247, \n        1247, \n        1248, \n        1249, \n        1247, \n        1246, \n        1249, \n        1249, \n        1246, \n        1247, \n        1250, \n        1251, \n        1252, \n        1252, \n        1251, \n        1250, \n        1252, \n        1253, \n        1250, \n        1250, \n        1253, \n        1252, \n        1254, \n        1255, \n        1252, \n        1252, \n        1255, \n        1254, \n        1252, \n        1251, \n        1254, \n        1254, \n        1251, \n        1252, \n        1256, \n        1257, \n        1252, \n        1252, \n        1257, \n        1256, \n        1252, \n        1255, \n        1256, \n        1256, \n        1255, \n        1252, \n        1258, \n        1253, \n        1252, \n        1252, \n        1253, \n        1258, \n        1252, \n        1257, \n        1258, \n        1258, \n        1257, \n        1252, \n        1258, \n        1257, \n        1259, \n        1259, \n        1257, \n        1258, \n        1259, \n        1260, \n        1258, \n        1258, \n        1260, \n        1259, \n        1256, \n        1261, \n        1259, \n        1259, \n        1261, \n        1256, \n        1259, \n        1257, \n        1256, \n        1256, \n        1257, \n        1259, \n        1262, \n        1263, \n        1259, \n        1259, \n        1263, \n        1262, \n        1259, \n        1261, \n        1262, \n        1262, \n        1261, \n        1259, \n        1264, \n        1260, \n        1259, \n        1259, \n        1260, \n        1264, \n        1259, \n        1263, \n        1264, \n        1264, \n        1263, \n        1259, \n        1265, \n        1266, \n        1267, \n        1267, \n        1266, \n        1265, \n        1267, \n        1268, \n        1265, \n        1265, \n        1268, \n        1267, \n        1250, \n        1253, \n        1267, \n        1267, \n        1253, \n        1250, \n        1267, \n        1266, \n        1250, \n        1250, \n        1266, \n        1267, \n        1258, \n        1269, \n        1267, \n        1267, \n        1269, \n        1258, \n        1267, \n        1253, \n        1258, \n        1258, \n        1253, \n        1267, \n        1270, \n        1268, \n        1267, \n        1267, \n        1268, \n        1270, \n        1267, \n        1269, \n        1270, \n        1270, \n        1269, \n        1267, \n        1270, \n        1269, \n        1271, \n        1271, \n        1269, \n        1270, \n        1271, \n        1272, \n        1270, \n        1270, \n        1272, \n        1271, \n        1258, \n        1260, \n        1271, \n        1271, \n        1260, \n        1258, \n        1271, \n        1269, \n        1258, \n        1258, \n        1269, \n        1271, \n        1264, \n        1273, \n        1271, \n        1271, \n        1273, \n        1264, \n        1271, \n        1260, \n        1264, \n        1264, \n        1260, \n        1271, \n        1274, \n        1272, \n        1271, \n        1271, \n        1272, \n        1274, \n        1271, \n        1273, \n        1274, \n        1274, \n        1273, \n        1271, \n        1275, \n        1276, \n        1277, \n        1277, \n        1276, \n        1275, \n        1277, \n        1278, \n        1275, \n        1275, \n        1278, \n        1277, \n        1265, \n        1268, \n        1277, \n        1277, \n        1268, \n        1265, \n        1277, \n        1276, \n        1265, \n        1265, \n        1276, \n        1277, \n        1270, \n        1279, \n        1277, \n        1277, \n        1279, \n        1270, \n        1277, \n        1268, \n        1270, \n        1270, \n        1268, \n        1277, \n        1280, \n        1278, \n        1277, \n        1277, \n        1278, \n        1280, \n        1277, \n        1279, \n        1280, \n        1280, \n        1279, \n        1277, \n        1280, \n        1279, \n        1281, \n        1281, \n        1279, \n        1280, \n        1281, \n        1282, \n        1280, \n        1280, \n        1282, \n        1281, \n        1270, \n        1272, \n        1281, \n        1281, \n        1272, \n        1270, \n        1281, \n        1279, \n        1270, \n        1270, \n        1279, \n        1281, \n        1274, \n        1283, \n        1281, \n        1281, \n        1283, \n        1274, \n        1281, \n        1272, \n        1274, \n        1274, \n        1272, \n        1281, \n        1284, \n        1282, \n        1281, \n        1281, \n        1282, \n        1284, \n        1281, \n        1283, \n        1284, \n        1284, \n        1283, \n        1281, \n        1285, \n        1286, \n        1287, \n        1287, \n        1286, \n        1285, \n        1287, \n        1288, \n        1285, \n        1285, \n        1288, \n        1287, \n        1275, \n        1278, \n        1287, \n        1287, \n        1278, \n        1275, \n        1287, \n        1286, \n        1275, \n        1275, \n        1286, \n        1287, \n        1280, \n        1289, \n        1287, \n        1287, \n        1289, \n        1280, \n        1287, \n        1278, \n        1280, \n        1280, \n        1278, \n        1287, \n        1290, \n        1288, \n        1287, \n        1287, \n        1288, \n        1290, \n        1287, \n        1289, \n        1290, \n        1290, \n        1289, \n        1287, \n        1290, \n        1289, \n        1291, \n        1291, \n        1289, \n        1290, \n        1291, \n        1292, \n        1290, \n        1290, \n        1292, \n        1291, \n        1280, \n        1282, \n        1291, \n        1291, \n        1282, \n        1280, \n        1291, \n        1289, \n        1280, \n        1280, \n        1289, \n        1291, \n        1284, \n        1293, \n        1291, \n        1291, \n        1293, \n        1284, \n        1291, \n        1282, \n        1284, \n        1284, \n        1282, \n        1291, \n        1294, \n        1292, \n        1291, \n        1291, \n        1292, \n        1294, \n        1291, \n        1293, \n        1294, \n        1294, \n        1293, \n        1291, \n        1295, \n        1296, \n        1297, \n        1297, \n        1296, \n        1295, \n        1297, \n        1298, \n        1295, \n        1295, \n        1298, \n        1297, \n        1285, \n        1288, \n        1297, \n        1297, \n        1288, \n        1285, \n        1297, \n        1296, \n        1285, \n        1285, \n        1296, \n        1297, \n        1290, \n        1299, \n        1297, \n        1297, \n        1299, \n        1290, \n        1297, \n        1288, \n        1290, \n        1290, \n        1288, \n        1297, \n        1300, \n        1298, \n        1297, \n        1297, \n        1298, \n        1300, \n        1297, \n        1299, \n        1300, \n        1300, \n        1299, \n        1297, \n        1300, \n        1299, \n        1301, \n        1301, \n        1299, \n        1300, \n        1301, \n        1302, \n        1300, \n        1300, \n        1302, \n        1301, \n        1290, \n        1292, \n        1301, \n        1301, \n        1292, \n        1290, \n        1301, \n        1299, \n        1290, \n        1290, \n        1299, \n        1301, \n        1294, \n        1303, \n        1301, \n        1301, \n        1303, \n        1294, \n        1301, \n        1292, \n        1294, \n        1294, \n        1292, \n        1301, \n        1304, \n        1302, \n        1301, \n        1301, \n        1302, \n        1304, \n        1301, \n        1303, \n        1304, \n        1304, \n        1303, \n        1301, \n        1305, \n        1306, \n        1307, \n        1307, \n        1306, \n        1305, \n        1307, \n        1308, \n        1305, \n        1305, \n        1308, \n        1307, \n        1295, \n        1298, \n        1307, \n        1307, \n        1298, \n        1295, \n        1307, \n        1306, \n        1295, \n        1295, \n        1306, \n        1307, \n        1300, \n        1309, \n        1307, \n        1307, \n        1309, \n        1300, \n        1307, \n        1298, \n        1300, \n        1300, \n        1298, \n        1307, \n        1310, \n        1308, \n        1307, \n        1307, \n        1308, \n        1310, \n        1307, \n        1309, \n        1310, \n        1310, \n        1309, \n        1307, \n        1310, \n        1309, \n        1311, \n        1311, \n        1309, \n        1310, \n        1311, \n        1312, \n        1310, \n        1310, \n        1312, \n        1311, \n        1300, \n        1302, \n        1311, \n        1311, \n        1302, \n        1300, \n        1311, \n        1309, \n        1300, \n        1300, \n        1309, \n        1311, \n        1304, \n        1313, \n        1311, \n        1311, \n        1313, \n        1304, \n        1311, \n        1302, \n        1304, \n        1304, \n        1302, \n        1311, \n        1314, \n        1312, \n        1311, \n        1311, \n        1312, \n        1314, \n        1311, \n        1313, \n        1314, \n        1314, \n        1313, \n        1311, \n        1315, \n        1316, \n        1317, \n        1317, \n        1316, \n        1315, \n        1317, \n        1318, \n        1315, \n        1315, \n        1318, \n        1317, \n        1305, \n        1308, \n        1317, \n        1317, \n        1308, \n        1305, \n        1317, \n        1316, \n        1305, \n        1305, \n        1316, \n        1317, \n        1310, \n        1319, \n        1317, \n        1317, \n        1319, \n        1310, \n        1317, \n        1308, \n        1310, \n        1310, \n        1308, \n        1317, \n        1320, \n        1318, \n        1317, \n        1317, \n        1318, \n        1320, \n        1317, \n        1319, \n        1320, \n        1320, \n        1319, \n        1317, \n        1320, \n        1319, \n        1321, \n        1321, \n        1319, \n        1320, \n        1321, \n        1322, \n        1320, \n        1320, \n        1322, \n        1321, \n        1310, \n        1312, \n        1321, \n        1321, \n        1312, \n        1310, \n        1321, \n        1319, \n        1310, \n        1310, \n        1319, \n        1321, \n        1314, \n        1323, \n        1321, \n        1321, \n        1323, \n        1314, \n        1321, \n        1312, \n        1314, \n        1314, \n        1312, \n        1321, \n        1324, \n        1322, \n        1321, \n        1321, \n        1322, \n        1324, \n        1321, \n        1323, \n        1324, \n        1324, \n        1323, \n        1321, \n        1325, \n        1326, \n        1327, \n        1327, \n        1326, \n        1325, \n        1327, \n        1328, \n        1325, \n        1325, \n        1328, \n        1327, \n        1315, \n        1318, \n        1327, \n        1327, \n        1318, \n        1315, \n        1327, \n        1326, \n        1315, \n        1315, \n        1326, \n        1327, \n        1320, \n        1329, \n        1327, \n        1327, \n        1329, \n        1320, \n        1327, \n        1318, \n        1320, \n        1320, \n        1318, \n        1327, \n        1330, \n        1328, \n        1327, \n        1327, \n        1328, \n        1330, \n        1327, \n        1329, \n        1330, \n        1330, \n        1329, \n        1327, \n        1330, \n        1329, \n        1331, \n        1331, \n        1329, \n        1330, \n        1331, \n        1332, \n        1330, \n        1330, \n        1332, \n        1331, \n        1320, \n        1322, \n        1331, \n        1331, \n        1322, \n        1320, \n        1331, \n        1329, \n        1320, \n        1320, \n        1329, \n        1331, \n        1324, \n        1333, \n        1331, \n        1331, \n        1333, \n        1324, \n        1331, \n        1322, \n        1324, \n        1324, \n        1322, \n        1331, \n        1334, \n        1332, \n        1331, \n        1331, \n        1332, \n        1334, \n        1331, \n        1333, \n        1334, \n        1334, \n        1333, \n        1331, \n        1335, \n        1336, \n        1337, \n        1337, \n        1336, \n        1335, \n        1337, \n        1338, \n        1335, \n        1335, \n        1338, \n        1337, \n        1325, \n        1328, \n        1337, \n        1337, \n        1328, \n        1325, \n        1337, \n        1336, \n        1325, \n        1325, \n        1336, \n        1337, \n        1330, \n        1339, \n        1337, \n        1337, \n        1339, \n        1330, \n        1337, \n        1328, \n        1330, \n        1330, \n        1328, \n        1337, \n        1340, \n        1338, \n        1337, \n        1337, \n        1338, \n        1340, \n        1337, \n        1339, \n        1340, \n        1340, \n        1339, \n        1337, \n        1340, \n        1339, \n        1341, \n        1341, \n        1339, \n        1340, \n        1341, \n        1342, \n        1340, \n        1340, \n        1342, \n        1341, \n        1330, \n        1332, \n        1341, \n        1341, \n        1332, \n        1330, \n        1341, \n        1339, \n        1330, \n        1330, \n        1339, \n        1341, \n        1334, \n        1343, \n        1341, \n        1341, \n        1343, \n        1334, \n        1341, \n        1332, \n        1334, \n        1334, \n        1332, \n        1341, \n        1344, \n        1342, \n        1341, \n        1341, \n        1342, \n        1344, \n        1341, \n        1343, \n        1344, \n        1344, \n        1343, \n        1341, \n        1345, \n        1346, \n        1347, \n        1347, \n        1346, \n        1345, \n        1347, \n        1348, \n        1345, \n        1345, \n        1348, \n        1347, \n        1335, \n        1338, \n        1347, \n        1347, \n        1338, \n        1335, \n        1347, \n        1346, \n        1335, \n        1335, \n        1346, \n        1347, \n        1340, \n        1349, \n        1347, \n        1347, \n        1349, \n        1340, \n        1347, \n        1338, \n        1340, \n        1340, \n        1338, \n        1347, \n        1350, \n        1348, \n        1347, \n        1347, \n        1348, \n        1350, \n        1347, \n        1349, \n        1350, \n        1350, \n        1349, \n        1347, \n        1350, \n        1349, \n        1351, \n        1351, \n        1349, \n        1350, \n        1351, \n        1352, \n        1350, \n        1350, \n        1352, \n        1351, \n        1340, \n        1342, \n        1351, \n        1351, \n        1342, \n        1340, \n        1351, \n        1349, \n        1340, \n        1340, \n        1349, \n        1351, \n        1344, \n        1353, \n        1351, \n        1351, \n        1353, \n        1344, \n        1351, \n        1342, \n        1344, \n        1344, \n        1342, \n        1351, \n        1354, \n        1352, \n        1351, \n        1351, \n        1352, \n        1354, \n        1351, \n        1353, \n        1354, \n        1354, \n        1353, \n        1351, \n        1355, \n        1356, \n        1357, \n        1357, \n        1356, \n        1355, \n        1357, \n        1358, \n        1355, \n        1355, \n        1358, \n        1357, \n        1345, \n        1348, \n        1357, \n        1357, \n        1348, \n        1345, \n        1357, \n        1356, \n        1345, \n        1345, \n        1356, \n        1357, \n        1350, \n        1359, \n        1357, \n        1357, \n        1359, \n        1350, \n        1357, \n        1348, \n        1350, \n        1350, \n        1348, \n        1357, \n        1360, \n        1358, \n        1357, \n        1357, \n        1358, \n        1360, \n        1357, \n        1359, \n        1360, \n        1360, \n        1359, \n        1357, \n        1360, \n        1359, \n        1361, \n        1361, \n        1359, \n        1360, \n        1361, \n        1362, \n        1360, \n        1360, \n        1362, \n        1361, \n        1350, \n        1352, \n        1361, \n        1361, \n        1352, \n        1350, \n        1361, \n        1359, \n        1350, \n        1350, \n        1359, \n        1361, \n        1354, \n        1363, \n        1361, \n        1361, \n        1363, \n        1354, \n        1361, \n        1352, \n        1354, \n        1354, \n        1352, \n        1361, \n        1364, \n        1362, \n        1361, \n        1361, \n        1362, \n        1364, \n        1361, \n        1363, \n        1364, \n        1364, \n        1363, \n        1361, \n        1365, \n        1366, \n        1367, \n        1367, \n        1366, \n        1365, \n        1367, \n        1368, \n        1365, \n        1365, \n        1368, \n        1367, \n        1355, \n        1358, \n        1367, \n        1367, \n        1358, \n        1355, \n        1367, \n        1366, \n        1355, \n        1355, \n        1366, \n        1367, \n        1360, \n        1369, \n        1367, \n        1367, \n        1369, \n        1360, \n        1367, \n        1358, \n        1360, \n        1360, \n        1358, \n        1367, \n        1370, \n        1368, \n        1367, \n        1367, \n        1368, \n        1370, \n        1367, \n        1369, \n        1370, \n        1370, \n        1369, \n        1367, \n        1370, \n        1369, \n        1371, \n        1371, \n        1369, \n        1370, \n        1371, \n        1372, \n        1370, \n        1370, \n        1372, \n        1371, \n        1360, \n        1362, \n        1371, \n        1371, \n        1362, \n        1360, \n        1371, \n        1369, \n        1360, \n        1360, \n        1369, \n        1371, \n        1364, \n        1373, \n        1371, \n        1371, \n        1373, \n        1364, \n        1371, \n        1362, \n        1364, \n        1364, \n        1362, \n        1371, \n        1374, \n        1372, \n        1371, \n        1371, \n        1372, \n        1374, \n        1371, \n        1373, \n        1374, \n        1374, \n        1373, \n        1371, \n        1375, \n        1376, \n        1377, \n        1377, \n        1376, \n        1375, \n        1377, \n        1378, \n        1375, \n        1375, \n        1378, \n        1377, \n        1379, \n        1380, \n        1377, \n        1377, \n        1380, \n        1379, \n        1377, \n        1376, \n        1379, \n        1379, \n        1376, \n        1377, \n        1381, \n        1382, \n        1377, \n        1377, \n        1382, \n        1381, \n        1377, \n        1380, \n        1381, \n        1381, \n        1380, \n        1377, \n        1383, \n        1378, \n        1377, \n        1377, \n        1378, \n        1383, \n        1377, \n        1382, \n        1383, \n        1383, \n        1382, \n        1377, \n        1383, \n        1382, \n        1384, \n        1384, \n        1382, \n        1383, \n        1384, \n        1385, \n        1383, \n        1383, \n        1385, \n        1384, \n        1381, \n        1386, \n        1384, \n        1384, \n        1386, \n        1381, \n        1384, \n        1382, \n        1381, \n        1381, \n        1382, \n        1384, \n        1387, \n        1388, \n        1384, \n        1384, \n        1388, \n        1387, \n        1384, \n        1386, \n        1387, \n        1387, \n        1386, \n        1384, \n        1389, \n        1385, \n        1384, \n        1384, \n        1385, \n        1389, \n        1384, \n        1388, \n        1389, \n        1389, \n        1388, \n        1384, \n        1390, \n        1391, \n        1392, \n        1392, \n        1391, \n        1390, \n        1392, \n        1393, \n        1390, \n        1390, \n        1393, \n        1392, \n        1375, \n        1378, \n        1392, \n        1392, \n        1378, \n        1375, \n        1392, \n        1391, \n        1375, \n        1375, \n        1391, \n        1392, \n        1383, \n        1394, \n        1392, \n        1392, \n        1394, \n        1383, \n        1392, \n        1378, \n        1383, \n        1383, \n        1378, \n        1392, \n        1395, \n        1393, \n        1392, \n        1392, \n        1393, \n        1395, \n        1392, \n        1394, \n        1395, \n        1395, \n        1394, \n        1392, \n        1395, \n        1394, \n        1396, \n        1396, \n        1394, \n        1395, \n        1396, \n        1397, \n        1395, \n        1395, \n        1397, \n        1396, \n        1383, \n        1385, \n        1396, \n        1396, \n        1385, \n        1383, \n        1396, \n        1394, \n        1383, \n        1383, \n        1394, \n        1396, \n        1389, \n        1398, \n        1396, \n        1396, \n        1398, \n        1389, \n        1396, \n        1385, \n        1389, \n        1389, \n        1385, \n        1396, \n        1399, \n        1397, \n        1396, \n        1396, \n        1397, \n        1399, \n        1396, \n        1398, \n        1399, \n        1399, \n        1398, \n        1396, \n        1400, \n        1401, \n        1402, \n        1402, \n        1401, \n        1400, \n        1402, \n        1403, \n        1400, \n        1400, \n        1403, \n        1402, \n        1390, \n        1393, \n        1402, \n        1402, \n        1393, \n        1390, \n        1402, \n        1401, \n        1390, \n        1390, \n        1401, \n        1402, \n        1395, \n        1404, \n        1402, \n        1402, \n        1404, \n        1395, \n        1402, \n        1393, \n        1395, \n        1395, \n        1393, \n        1402, \n        1405, \n        1403, \n        1402, \n        1402, \n        1403, \n        1405, \n        1402, \n        1404, \n        1405, \n        1405, \n        1404, \n        1402, \n        1405, \n        1404, \n        1406, \n        1406, \n        1404, \n        1405, \n        1406, \n        1407, \n        1405, \n        1405, \n        1407, \n        1406, \n        1395, \n        1397, \n        1406, \n        1406, \n        1397, \n        1395, \n        1406, \n        1404, \n        1395, \n        1395, \n        1404, \n        1406, \n        1399, \n        1408, \n        1406, \n        1406, \n        1408, \n        1399, \n        1406, \n        1397, \n        1399, \n        1399, \n        1397, \n        1406, \n        1409, \n        1407, \n        1406, \n        1406, \n        1407, \n        1409, \n        1406, \n        1408, \n        1409, \n        1409, \n        1408, \n        1406, \n        1410, \n        1411, \n        1412, \n        1412, \n        1411, \n        1410, \n        1412, \n        1413, \n        1410, \n        1410, \n        1413, \n        1412, \n        1400, \n        1403, \n        1412, \n        1412, \n        1403, \n        1400, \n        1412, \n        1411, \n        1400, \n        1400, \n        1411, \n        1412, \n        1405, \n        1414, \n        1412, \n        1412, \n        1414, \n        1405, \n        1412, \n        1403, \n        1405, \n        1405, \n        1403, \n        1412, \n        1415, \n        1413, \n        1412, \n        1412, \n        1413, \n        1415, \n        1412, \n        1414, \n        1415, \n        1415, \n        1414, \n        1412, \n        1415, \n        1414, \n        1416, \n        1416, \n        1414, \n        1415, \n        1416, \n        1417, \n        1415, \n        1415, \n        1417, \n        1416, \n        1405, \n        1407, \n        1416, \n        1416, \n        1407, \n        1405, \n        1416, \n        1414, \n        1405, \n        1405, \n        1414, \n        1416, \n        1409, \n        1418, \n        1416, \n        1416, \n        1418, \n        1409, \n        1416, \n        1407, \n        1409, \n        1409, \n        1407, \n        1416, \n        1419, \n        1417, \n        1416, \n        1416, \n        1417, \n        1419, \n        1416, \n        1418, \n        1419, \n        1419, \n        1418, \n        1416, \n        1420, \n        1421, \n        1422, \n        1422, \n        1421, \n        1420, \n        1422, \n        1423, \n        1420, \n        1420, \n        1423, \n        1422, \n        1410, \n        1413, \n        1422, \n        1422, \n        1413, \n        1410, \n        1422, \n        1421, \n        1410, \n        1410, \n        1421, \n        1422, \n        1415, \n        1424, \n        1422, \n        1422, \n        1424, \n        1415, \n        1422, \n        1413, \n        1415, \n        1415, \n        1413, \n        1422, \n        1425, \n        1423, \n        1422, \n        1422, \n        1423, \n        1425, \n        1422, \n        1424, \n        1425, \n        1425, \n        1424, \n        1422, \n        1425, \n        1424, \n        1426, \n        1426, \n        1424, \n        1425, \n        1426, \n        1427, \n        1425, \n        1425, \n        1427, \n        1426, \n        1415, \n        1417, \n        1426, \n        1426, \n        1417, \n        1415, \n        1426, \n        1424, \n        1415, \n        1415, \n        1424, \n        1426, \n        1419, \n        1428, \n        1426, \n        1426, \n        1428, \n        1419, \n        1426, \n        1417, \n        1419, \n        1419, \n        1417, \n        1426, \n        1429, \n        1427, \n        1426, \n        1426, \n        1427, \n        1429, \n        1426, \n        1428, \n        1429, \n        1429, \n        1428, \n        1426, \n        1430, \n        1431, \n        1432, \n        1432, \n        1431, \n        1430, \n        1432, \n        1433, \n        1430, \n        1430, \n        1433, \n        1432, \n        1420, \n        1423, \n        1432, \n        1432, \n        1423, \n        1420, \n        1432, \n        1431, \n        1420, \n        1420, \n        1431, \n        1432, \n        1425, \n        1434, \n        1432, \n        1432, \n        1434, \n        1425, \n        1432, \n        1423, \n        1425, \n        1425, \n        1423, \n        1432, \n        1435, \n        1433, \n        1432, \n        1432, \n        1433, \n        1435, \n        1432, \n        1434, \n        1435, \n        1435, \n        1434, \n        1432, \n        1435, \n        1434, \n        1436, \n        1436, \n        1434, \n        1435, \n        1436, \n        1437, \n        1435, \n        1435, \n        1437, \n        1436, \n        1425, \n        1427, \n        1436, \n        1436, \n        1427, \n        1425, \n        1436, \n        1434, \n        1425, \n        1425, \n        1434, \n        1436, \n        1429, \n        1438, \n        1436, \n        1436, \n        1438, \n        1429, \n        1436, \n        1427, \n        1429, \n        1429, \n        1427, \n        1436, \n        1439, \n        1437, \n        1436, \n        1436, \n        1437, \n        1439, \n        1436, \n        1438, \n        1439, \n        1439, \n        1438, \n        1436, \n        1440, \n        1441, \n        1442, \n        1442, \n        1441, \n        1440, \n        1442, \n        1443, \n        1440, \n        1440, \n        1443, \n        1442, \n        1430, \n        1433, \n        1442, \n        1442, \n        1433, \n        1430, \n        1442, \n        1441, \n        1430, \n        1430, \n        1441, \n        1442, \n        1435, \n        1444, \n        1442, \n        1442, \n        1444, \n        1435, \n        1442, \n        1433, \n        1435, \n        1435, \n        1433, \n        1442, \n        1445, \n        1443, \n        1442, \n        1442, \n        1443, \n        1445, \n        1442, \n        1444, \n        1445, \n        1445, \n        1444, \n        1442, \n        1445, \n        1444, \n        1446, \n        1446, \n        1444, \n        1445, \n        1446, \n        1447, \n        1445, \n        1445, \n        1447, \n        1446, \n        1435, \n        1437, \n        1446, \n        1446, \n        1437, \n        1435, \n        1446, \n        1444, \n        1435, \n        1435, \n        1444, \n        1446, \n        1439, \n        1448, \n        1446, \n        1446, \n        1448, \n        1439, \n        1446, \n        1437, \n        1439, \n        1439, \n        1437, \n        1446, \n        1449, \n        1447, \n        1446, \n        1446, \n        1447, \n        1449, \n        1446, \n        1448, \n        1449, \n        1449, \n        1448, \n        1446, \n        1450, \n        1451, \n        1452, \n        1452, \n        1451, \n        1450, \n        1452, \n        1453, \n        1450, \n        1450, \n        1453, \n        1452, \n        1440, \n        1443, \n        1452, \n        1452, \n        1443, \n        1440, \n        1452, \n        1451, \n        1440, \n        1440, \n        1451, \n        1452, \n        1445, \n        1454, \n        1452, \n        1452, \n        1454, \n        1445, \n        1452, \n        1443, \n        1445, \n        1445, \n        1443, \n        1452, \n        1455, \n        1453, \n        1452, \n        1452, \n        1453, \n        1455, \n        1452, \n        1454, \n        1455, \n        1455, \n        1454, \n        1452, \n        1455, \n        1454, \n        1456, \n        1456, \n        1454, \n        1455, \n        1456, \n        1457, \n        1455, \n        1455, \n        1457, \n        1456, \n        1445, \n        1447, \n        1456, \n        1456, \n        1447, \n        1445, \n        1456, \n        1454, \n        1445, \n        1445, \n        1454, \n        1456, \n        1449, \n        1458, \n        1456, \n        1456, \n        1458, \n        1449, \n        1456, \n        1447, \n        1449, \n        1449, \n        1447, \n        1456, \n        1459, \n        1457, \n        1456, \n        1456, \n        1457, \n        1459, \n        1456, \n        1458, \n        1459, \n        1459, \n        1458, \n        1456, \n        1460, \n        1461, \n        1462, \n        1462, \n        1461, \n        1460, \n        1462, \n        1463, \n        1460, \n        1460, \n        1463, \n        1462, \n        1450, \n        1453, \n        1462, \n        1462, \n        1453, \n        1450, \n        1462, \n        1461, \n        1450, \n        1450, \n        1461, \n        1462, \n        1455, \n        1464, \n        1462, \n        1462, \n        1464, \n        1455, \n        1462, \n        1453, \n        1455, \n        1455, \n        1453, \n        1462, \n        1465, \n        1463, \n        1462, \n        1462, \n        1463, \n        1465, \n        1462, \n        1464, \n        1465, \n        1465, \n        1464, \n        1462, \n        1465, \n        1464, \n        1466, \n        1466, \n        1464, \n        1465, \n        1466, \n        1467, \n        1465, \n        1465, \n        1467, \n        1466, \n        1455, \n        1457, \n        1466, \n        1466, \n        1457, \n        1455, \n        1466, \n        1464, \n        1455, \n        1455, \n        1464, \n        1466, \n        1459, \n        1468, \n        1466, \n        1466, \n        1468, \n        1459, \n        1466, \n        1457, \n        1459, \n        1459, \n        1457, \n        1466, \n        1469, \n        1467, \n        1466, \n        1466, \n        1467, \n        1469, \n        1466, \n        1468, \n        1469, \n        1469, \n        1468, \n        1466, \n        1470, \n        1471, \n        1472, \n        1472, \n        1471, \n        1470, \n        1472, \n        1473, \n        1470, \n        1470, \n        1473, \n        1472, \n        1460, \n        1463, \n        1472, \n        1472, \n        1463, \n        1460, \n        1472, \n        1471, \n        1460, \n        1460, \n        1471, \n        1472, \n        1465, \n        1474, \n        1472, \n        1472, \n        1474, \n        1465, \n        1472, \n        1463, \n        1465, \n        1465, \n        1463, \n        1472, \n        1475, \n        1473, \n        1472, \n        1472, \n        1473, \n        1475, \n        1472, \n        1474, \n        1475, \n        1475, \n        1474, \n        1472, \n        1475, \n        1474, \n        1476, \n        1476, \n        1474, \n        1475, \n        1476, \n        1477, \n        1475, \n        1475, \n        1477, \n        1476, \n        1465, \n        1467, \n        1476, \n        1476, \n        1467, \n        1465, \n        1476, \n        1474, \n        1465, \n        1465, \n        1474, \n        1476, \n        1469, \n        1478, \n        1476, \n        1476, \n        1478, \n        1469, \n        1476, \n        1467, \n        1469, \n        1469, \n        1467, \n        1476, \n        1479, \n        1477, \n        1476, \n        1476, \n        1477, \n        1479, \n        1476, \n        1478, \n        1479, \n        1479, \n        1478, \n        1476, \n        1480, \n        1481, \n        1482, \n        1482, \n        1481, \n        1480, \n        1482, \n        1483, \n        1480, \n        1480, \n        1483, \n        1482, \n        1470, \n        1473, \n        1482, \n        1482, \n        1473, \n        1470, \n        1482, \n        1481, \n        1470, \n        1470, \n        1481, \n        1482, \n        1475, \n        1484, \n        1482, \n        1482, \n        1484, \n        1475, \n        1482, \n        1473, \n        1475, \n        1475, \n        1473, \n        1482, \n        1485, \n        1483, \n        1482, \n        1482, \n        1483, \n        1485, \n        1482, \n        1484, \n        1485, \n        1485, \n        1484, \n        1482, \n        1485, \n        1484, \n        1486, \n        1486, \n        1484, \n        1485, \n        1486, \n        1487, \n        1485, \n        1485, \n        1487, \n        1486, \n        1475, \n        1477, \n        1486, \n        1486, \n        1477, \n        1475, \n        1486, \n        1484, \n        1475, \n        1475, \n        1484, \n        1486, \n        1479, \n        1488, \n        1486, \n        1486, \n        1488, \n        1479, \n        1486, \n        1477, \n        1479, \n        1479, \n        1477, \n        1486, \n        1489, \n        1487, \n        1486, \n        1486, \n        1487, \n        1489, \n        1486, \n        1488, \n        1489, \n        1489, \n        1488, \n        1486, \n        1490, \n        1491, \n        1492, \n        1492, \n        1491, \n        1490, \n        1492, \n        1493, \n        1490, \n        1490, \n        1493, \n        1492, \n        1480, \n        1483, \n        1492, \n        1492, \n        1483, \n        1480, \n        1492, \n        1491, \n        1480, \n        1480, \n        1491, \n        1492, \n        1485, \n        1494, \n        1492, \n        1492, \n        1494, \n        1485, \n        1492, \n        1483, \n        1485, \n        1485, \n        1483, \n        1492, \n        1495, \n        1493, \n        1492, \n        1492, \n        1493, \n        1495, \n        1492, \n        1494, \n        1495, \n        1495, \n        1494, \n        1492, \n        1495, \n        1494, \n        1496, \n        1496, \n        1494, \n        1495, \n        1496, \n        1497, \n        1495, \n        1495, \n        1497, \n        1496, \n        1485, \n        1487, \n        1496, \n        1496, \n        1487, \n        1485, \n        1496, \n        1494, \n        1485, \n        1485, \n        1494, \n        1496, \n        1489, \n        1498, \n        1496, \n        1496, \n        1498, \n        1489, \n        1496, \n        1487, \n        1489, \n        1489, \n        1487, \n        1496, \n        1499, \n        1497, \n        1496, \n        1496, \n        1497, \n        1499, \n        1496, \n        1498, \n        1499, \n        1499, \n        1498, \n        1496, \n        1500, \n        1501, \n        1502, \n        1502, \n        1501, \n        1500, \n        1502, \n        1503, \n        1500, \n        1500, \n        1503, \n        1502, \n        1504, \n        1505, \n        1502, \n        1502, \n        1505, \n        1504, \n        1502, \n        1501, \n        1504, \n        1504, \n        1501, \n        1502, \n        1506, \n        1507, \n        1502, \n        1502, \n        1507, \n        1506, \n        1502, \n        1505, \n        1506, \n        1506, \n        1505, \n        1502, \n        1508, \n        1503, \n        1502, \n        1502, \n        1503, \n        1508, \n        1502, \n        1507, \n        1508, \n        1508, \n        1507, \n        1502, \n        1508, \n        1507, \n        1509, \n        1509, \n        1507, \n        1508, \n        1509, \n        1510, \n        1508, \n        1508, \n        1510, \n        1509, \n        1506, \n        1511, \n        1509, \n        1509, \n        1511, \n        1506, \n        1509, \n        1507, \n        1506, \n        1506, \n        1507, \n        1509, \n        1512, \n        1513, \n        1509, \n        1509, \n        1513, \n        1512, \n        1509, \n        1511, \n        1512, \n        1512, \n        1511, \n        1509, \n        1514, \n        1510, \n        1509, \n        1509, \n        1510, \n        1514, \n        1509, \n        1513, \n        1514, \n        1514, \n        1513, \n        1509, \n        1515, \n        1516, \n        1517, \n        1517, \n        1516, \n        1515, \n        1517, \n        1518, \n        1515, \n        1515, \n        1518, \n        1517, \n        1500, \n        1503, \n        1517, \n        1517, \n        1503, \n        1500, \n        1517, \n        1516, \n        1500, \n        1500, \n        1516, \n        1517, \n        1508, \n        1519, \n        1517, \n        1517, \n        1519, \n        1508, \n        1517, \n        1503, \n        1508, \n        1508, \n        1503, \n        1517, \n        1520, \n        1518, \n        1517, \n        1517, \n        1518, \n        1520, \n        1517, \n        1519, \n        1520, \n        1520, \n        1519, \n        1517, \n        1520, \n        1519, \n        1521, \n        1521, \n        1519, \n        1520, \n        1521, \n        1522, \n        1520, \n        1520, \n        1522, \n        1521, \n        1508, \n        1510, \n        1521, \n        1521, \n        1510, \n        1508, \n        1521, \n        1519, \n        1508, \n        1508, \n        1519, \n        1521, \n        1514, \n        1523, \n        1521, \n        1521, \n        1523, \n        1514, \n        1521, \n        1510, \n        1514, \n        1514, \n        1510, \n        1521, \n        1524, \n        1522, \n        1521, \n        1521, \n        1522, \n        1524, \n        1521, \n        1523, \n        1524, \n        1524, \n        1523, \n        1521, \n        1525, \n        1526, \n        1527, \n        1527, \n        1526, \n        1525, \n        1527, \n        1528, \n        1525, \n        1525, \n        1528, \n        1527, \n        1515, \n        1518, \n        1527, \n        1527, \n        1518, \n        1515, \n        1527, \n        1526, \n        1515, \n        1515, \n        1526, \n        1527, \n        1520, \n        1529, \n        1527, \n        1527, \n        1529, \n        1520, \n        1527, \n        1518, \n        1520, \n        1520, \n        1518, \n        1527, \n        1530, \n        1528, \n        1527, \n        1527, \n        1528, \n        1530, \n        1527, \n        1529, \n        1530, \n        1530, \n        1529, \n        1527, \n        1530, \n        1529, \n        1531, \n        1531, \n        1529, \n        1530, \n        1531, \n        1532, \n        1530, \n        1530, \n        1532, \n        1531, \n        1520, \n        1522, \n        1531, \n        1531, \n        1522, \n        1520, \n        1531, \n        1529, \n        1520, \n        1520, \n        1529, \n        1531, \n        1524, \n        1533, \n        1531, \n        1531, \n        1533, \n        1524, \n        1531, \n        1522, \n        1524, \n        1524, \n        1522, \n        1531, \n        1534, \n        1532, \n        1531, \n        1531, \n        1532, \n        1534, \n        1531, \n        1533, \n        1534, \n        1534, \n        1533, \n        1531, \n        1535, \n        1536, \n        1537, \n        1537, \n        1536, \n        1535, \n        1537, \n        1538, \n        1535, \n        1535, \n        1538, \n        1537, \n        1525, \n        1528, \n        1537, \n        1537, \n        1528, \n        1525, \n        1537, \n        1536, \n        1525, \n        1525, \n        1536, \n        1537, \n        1530, \n        1539, \n        1537, \n        1537, \n        1539, \n        1530, \n        1537, \n        1528, \n        1530, \n        1530, \n        1528, \n        1537, \n        1540, \n        1538, \n        1537, \n        1537, \n        1538, \n        1540, \n        1537, \n        1539, \n        1540, \n        1540, \n        1539, \n        1537, \n        1540, \n        1539, \n        1541, \n        1541, \n        1539, \n        1540, \n        1541, \n        1542, \n        1540, \n        1540, \n        1542, \n        1541, \n        1530, \n        1532, \n        1541, \n        1541, \n        1532, \n        1530, \n        1541, \n        1539, \n        1530, \n        1530, \n        1539, \n        1541, \n        1534, \n        1543, \n        1541, \n        1541, \n        1543, \n        1534, \n        1541, \n        1532, \n        1534, \n        1534, \n        1532, \n        1541, \n        1544, \n        1542, \n        1541, \n        1541, \n        1542, \n        1544, \n        1541, \n        1543, \n        1544, \n        1544, \n        1543, \n        1541, \n        1545, \n        1546, \n        1547, \n        1547, \n        1546, \n        1545, \n        1547, \n        1548, \n        1545, \n        1545, \n        1548, \n        1547, \n        1535, \n        1538, \n        1547, \n        1547, \n        1538, \n        1535, \n        1547, \n        1546, \n        1535, \n        1535, \n        1546, \n        1547, \n        1540, \n        1549, \n        1547, \n        1547, \n        1549, \n        1540, \n        1547, \n        1538, \n        1540, \n        1540, \n        1538, \n        1547, \n        1550, \n        1548, \n        1547, \n        1547, \n        1548, \n        1550, \n        1547, \n        1549, \n        1550, \n        1550, \n        1549, \n        1547, \n        1550, \n        1549, \n        1551, \n        1551, \n        1549, \n        1550, \n        1551, \n        1552, \n        1550, \n        1550, \n        1552, \n        1551, \n        1540, \n        1542, \n        1551, \n        1551, \n        1542, \n        1540, \n        1551, \n        1549, \n        1540, \n        1540, \n        1549, \n        1551, \n        1544, \n        1553, \n        1551, \n        1551, \n        1553, \n        1544, \n        1551, \n        1542, \n        1544, \n        1544, \n        1542, \n        1551, \n        1554, \n        1552, \n        1551, \n        1551, \n        1552, \n        1554, \n        1551, \n        1553, \n        1554, \n        1554, \n        1553, \n        1551, \n        1555, \n        1556, \n        1557, \n        1557, \n        1556, \n        1555, \n        1557, \n        1558, \n        1555, \n        1555, \n        1558, \n        1557, \n        1545, \n        1548, \n        1557, \n        1557, \n        1548, \n        1545, \n        1557, \n        1556, \n        1545, \n        1545, \n        1556, \n        1557, \n        1550, \n        1559, \n        1557, \n        1557, \n        1559, \n        1550, \n        1557, \n        1548, \n        1550, \n        1550, \n        1548, \n        1557, \n        1560, \n        1558, \n        1557, \n        1557, \n        1558, \n        1560, \n        1557, \n        1559, \n        1560, \n        1560, \n        1559, \n        1557, \n        1560, \n        1559, \n        1561, \n        1561, \n        1559, \n        1560, \n        1561, \n        1562, \n        1560, \n        1560, \n        1562, \n        1561, \n        1550, \n        1552, \n        1561, \n        1561, \n        1552, \n        1550, \n        1561, \n        1559, \n        1550, \n        1550, \n        1559, \n        1561, \n        1554, \n        1563, \n        1561, \n        1561, \n        1563, \n        1554, \n        1561, \n        1552, \n        1554, \n        1554, \n        1552, \n        1561, \n        1564, \n        1562, \n        1561, \n        1561, \n        1562, \n        1564, \n        1561, \n        1563, \n        1564, \n        1564, \n        1563, \n        1561, \n        1565, \n        1566, \n        1567, \n        1567, \n        1566, \n        1565, \n        1567, \n        1568, \n        1565, \n        1565, \n        1568, \n        1567, \n        1555, \n        1558, \n        1567, \n        1567, \n        1558, \n        1555, \n        1567, \n        1566, \n        1555, \n        1555, \n        1566, \n        1567, \n        1560, \n        1569, \n        1567, \n        1567, \n        1569, \n        1560, \n        1567, \n        1558, \n        1560, \n        1560, \n        1558, \n        1567, \n        1570, \n        1568, \n        1567, \n        1567, \n        1568, \n        1570, \n        1567, \n        1569, \n        1570, \n        1570, \n        1569, \n        1567, \n        1570, \n        1569, \n        1571, \n        1571, \n        1569, \n        1570, \n        1571, \n        1572, \n        1570, \n        1570, \n        1572, \n        1571, \n        1560, \n        1562, \n        1571, \n        1571, \n        1562, \n        1560, \n        1571, \n        1569, \n        1560, \n        1560, \n        1569, \n        1571, \n        1564, \n        1573, \n        1571, \n        1571, \n        1573, \n        1564, \n        1571, \n        1562, \n        1564, \n        1564, \n        1562, \n        1571, \n        1574, \n        1572, \n        1571, \n        1571, \n        1572, \n        1574, \n        1571, \n        1573, \n        1574, \n        1574, \n        1573, \n        1571, \n        1575, \n        1576, \n        1577, \n        1577, \n        1576, \n        1575, \n        1577, \n        1578, \n        1575, \n        1575, \n        1578, \n        1577, \n        1565, \n        1568, \n        1577, \n        1577, \n        1568, \n        1565, \n        1577, \n        1576, \n        1565, \n        1565, \n        1576, \n        1577, \n        1570, \n        1579, \n        1577, \n        1577, \n        1579, \n        1570, \n        1577, \n        1568, \n        1570, \n        1570, \n        1568, \n        1577, \n        1580, \n        1578, \n        1577, \n        1577, \n        1578, \n        1580, \n        1577, \n        1579, \n        1580, \n        1580, \n        1579, \n        1577, \n        1580, \n        1579, \n        1581, \n        1581, \n        1579, \n        1580, \n        1581, \n        1582, \n        1580, \n        1580, \n        1582, \n        1581, \n        1570, \n        1572, \n        1581, \n        1581, \n        1572, \n        1570, \n        1581, \n        1579, \n        1570, \n        1570, \n        1579, \n        1581, \n        1574, \n        1583, \n        1581, \n        1581, \n        1583, \n        1574, \n        1581, \n        1572, \n        1574, \n        1574, \n        1572, \n        1581, \n        1584, \n        1582, \n        1581, \n        1581, \n        1582, \n        1584, \n        1581, \n        1583, \n        1584, \n        1584, \n        1583, \n        1581, \n        1585, \n        1586, \n        1587, \n        1587, \n        1586, \n        1585, \n        1587, \n        1588, \n        1585, \n        1585, \n        1588, \n        1587, \n        1575, \n        1578, \n        1587, \n        1587, \n        1578, \n        1575, \n        1587, \n        1586, \n        1575, \n        1575, \n        1586, \n        1587, \n        1580, \n        1589, \n        1587, \n        1587, \n        1589, \n        1580, \n        1587, \n        1578, \n        1580, \n        1580, \n        1578, \n        1587, \n        1590, \n        1588, \n        1587, \n        1587, \n        1588, \n        1590, \n        1587, \n        1589, \n        1590, \n        1590, \n        1589, \n        1587, \n        1590, \n        1589, \n        1591, \n        1591, \n        1589, \n        1590, \n        1591, \n        1592, \n        1590, \n        1590, \n        1592, \n        1591, \n        1580, \n        1582, \n        1591, \n        1591, \n        1582, \n        1580, \n        1591, \n        1589, \n        1580, \n        1580, \n        1589, \n        1591, \n        1584, \n        1593, \n        1591, \n        1591, \n        1593, \n        1584, \n        1591, \n        1582, \n        1584, \n        1584, \n        1582, \n        1591, \n        1594, \n        1592, \n        1591, \n        1591, \n        1592, \n        1594, \n        1591, \n        1593, \n        1594, \n        1594, \n        1593, \n        1591, \n        1595, \n        1596, \n        1597, \n        1597, \n        1596, \n        1595, \n        1597, \n        1598, \n        1595, \n        1595, \n        1598, \n        1597, \n        1585, \n        1588, \n        1597, \n        1597, \n        1588, \n        1585, \n        1597, \n        1596, \n        1585, \n        1585, \n        1596, \n        1597, \n        1590, \n        1599, \n        1597, \n        1597, \n        1599, \n        1590, \n        1597, \n        1588, \n        1590, \n        1590, \n        1588, \n        1597, \n        1600, \n        1598, \n        1597, \n        1597, \n        1598, \n        1600, \n        1597, \n        1599, \n        1600, \n        1600, \n        1599, \n        1597, \n        1600, \n        1599, \n        1601, \n        1601, \n        1599, \n        1600, \n        1601, \n        1602, \n        1600, \n        1600, \n        1602, \n        1601, \n        1590, \n        1592, \n        1601, \n        1601, \n        1592, \n        1590, \n        1601, \n        1599, \n        1590, \n        1590, \n        1599, \n        1601, \n        1594, \n        1603, \n        1601, \n        1601, \n        1603, \n        1594, \n        1601, \n        1592, \n        1594, \n        1594, \n        1592, \n        1601, \n        1604, \n        1602, \n        1601, \n        1601, \n        1602, \n        1604, \n        1601, \n        1603, \n        1604, \n        1604, \n        1603, \n        1601, \n        1605, \n        1606, \n        1607, \n        1607, \n        1606, \n        1605, \n        1607, \n        1608, \n        1605, \n        1605, \n        1608, \n        1607, \n        1595, \n        1598, \n        1607, \n        1607, \n        1598, \n        1595, \n        1607, \n        1606, \n        1595, \n        1595, \n        1606, \n        1607, \n        1600, \n        1609, \n        1607, \n        1607, \n        1609, \n        1600, \n        1607, \n        1598, \n        1600, \n        1600, \n        1598, \n        1607, \n        1610, \n        1608, \n        1607, \n        1607, \n        1608, \n        1610, \n        1607, \n        1609, \n        1610, \n        1610, \n        1609, \n        1607, \n        1610, \n        1609, \n        1611, \n        1611, \n        1609, \n        1610, \n        1611, \n        1612, \n        1610, \n        1610, \n        1612, \n        1611, \n        1600, \n        1602, \n        1611, \n        1611, \n        1602, \n        1600, \n        1611, \n        1609, \n        1600, \n        1600, \n        1609, \n        1611, \n        1604, \n        1613, \n        1611, \n        1611, \n        1613, \n        1604, \n        1611, \n        1602, \n        1604, \n        1604, \n        1602, \n        1611, \n        1614, \n        1612, \n        1611, \n        1611, \n        1612, \n        1614, \n        1611, \n        1613, \n        1614, \n        1614, \n        1613, \n        1611, \n        1615, \n        1616, \n        1617, \n        1617, \n        1616, \n        1615, \n        1617, \n        1618, \n        1615, \n        1615, \n        1618, \n        1617, \n        1605, \n        1608, \n        1617, \n        1617, \n        1608, \n        1605, \n        1617, \n        1616, \n        1605, \n        1605, \n        1616, \n        1617, \n        1610, \n        1619, \n        1617, \n        1617, \n        1619, \n        1610, \n        1617, \n        1608, \n        1610, \n        1610, \n        1608, \n        1617, \n        1620, \n        1618, \n        1617, \n        1617, \n        1618, \n        1620, \n        1617, \n        1619, \n        1620, \n        1620, \n        1619, \n        1617, \n        1620, \n        1619, \n        1621, \n        1621, \n        1619, \n        1620, \n        1621, \n        1622, \n        1620, \n        1620, \n        1622, \n        1621, \n        1610, \n        1612, \n        1621, \n        1621, \n        1612, \n        1610, \n        1621, \n        1619, \n        1610, \n        1610, \n        1619, \n        1621, \n        1614, \n        1623, \n        1621, \n        1621, \n        1623, \n        1614, \n        1621, \n        1612, \n        1614, \n        1614, \n        1612, \n        1621, \n        1624, \n        1622, \n        1621, \n        1621, \n        1622, \n        1624, \n        1621, \n        1623, \n        1624, \n        1624, \n        1623, \n        1621, \n        1625, \n        1626, \n        1627, \n        1627, \n        1626, \n        1625, \n        1627, \n        1628, \n        1625, \n        1625, \n        1628, \n        1627, \n        1629, \n        1630, \n        1627, \n        1627, \n        1630, \n        1629, \n        1627, \n        1626, \n        1629, \n        1629, \n        1626, \n        1627, \n        1631, \n        1632, \n        1627, \n        1627, \n        1632, \n        1631, \n        1627, \n        1630, \n        1631, \n        1631, \n        1630, \n        1627, \n        1633, \n        1628, \n        1627, \n        1627, \n        1628, \n        1633, \n        1627, \n        1632, \n        1633, \n        1633, \n        1632, \n        1627, \n        1633, \n        1632, \n        1634, \n        1634, \n        1632, \n        1633, \n        1634, \n        1635, \n        1633, \n        1633, \n        1635, \n        1634, \n        1631, \n        1636, \n        1634, \n        1634, \n        1636, \n        1631, \n        1634, \n        1632, \n        1631, \n        1631, \n        1632, \n        1634, \n        1637, \n        1638, \n        1634, \n        1634, \n        1638, \n        1637, \n        1634, \n        1636, \n        1637, \n        1637, \n        1636, \n        1634, \n        1639, \n        1635, \n        1634, \n        1634, \n        1635, \n        1639, \n        1634, \n        1638, \n        1639, \n        1639, \n        1638, \n        1634, \n        1640, \n        1641, \n        1642, \n        1642, \n        1641, \n        1640, \n        1642, \n        1643, \n        1640, \n        1640, \n        1643, \n        1642, \n        1625, \n        1628, \n        1642, \n        1642, \n        1628, \n        1625, \n        1642, \n        1641, \n        1625, \n        1625, \n        1641, \n        1642, \n        1633, \n        1644, \n        1642, \n        1642, \n        1644, \n        1633, \n        1642, \n        1628, \n        1633, \n        1633, \n        1628, \n        1642, \n        1645, \n        1643, \n        1642, \n        1642, \n        1643, \n        1645, \n        1642, \n        1644, \n        1645, \n        1645, \n        1644, \n        1642, \n        1645, \n        1644, \n        1646, \n        1646, \n        1644, \n        1645, \n        1646, \n        1647, \n        1645, \n        1645, \n        1647, \n        1646, \n        1633, \n        1635, \n        1646, \n        1646, \n        1635, \n        1633, \n        1646, \n        1644, \n        1633, \n        1633, \n        1644, \n        1646, \n        1639, \n        1648, \n        1646, \n        1646, \n        1648, \n        1639, \n        1646, \n        1635, \n        1639, \n        1639, \n        1635, \n        1646, \n        1649, \n        1647, \n        1646, \n        1646, \n        1647, \n        1649, \n        1646, \n        1648, \n        1649, \n        1649, \n        1648, \n        1646, \n        1650, \n        1651, \n        1652, \n        1652, \n        1651, \n        1650, \n        1652, \n        1653, \n        1650, \n        1650, \n        1653, \n        1652, \n        1640, \n        1643, \n        1652, \n        1652, \n        1643, \n        1640, \n        1652, \n        1651, \n        1640, \n        1640, \n        1651, \n        1652, \n        1645, \n        1654, \n        1652, \n        1652, \n        1654, \n        1645, \n        1652, \n        1643, \n        1645, \n        1645, \n        1643, \n        1652, \n        1655, \n        1653, \n        1652, \n        1652, \n        1653, \n        1655, \n        1652, \n        1654, \n        1655, \n        1655, \n        1654, \n        1652, \n        1655, \n        1654, \n        1656, \n        1656, \n        1654, \n        1655, \n        1656, \n        1657, \n        1655, \n        1655, \n        1657, \n        1656, \n        1645, \n        1647, \n        1656, \n        1656, \n        1647, \n        1645, \n        1656, \n        1654, \n        1645, \n        1645, \n        1654, \n        1656, \n        1649, \n        1658, \n        1656, \n        1656, \n        1658, \n        1649, \n        1656, \n        1647, \n        1649, \n        1649, \n        1647, \n        1656, \n        1659, \n        1657, \n        1656, \n        1656, \n        1657, \n        1659, \n        1656, \n        1658, \n        1659, \n        1659, \n        1658, \n        1656, \n        1660, \n        1661, \n        1662, \n        1662, \n        1661, \n        1660, \n        1662, \n        1663, \n        1660, \n        1660, \n        1663, \n        1662, \n        1650, \n        1653, \n        1662, \n        1662, \n        1653, \n        1650, \n        1662, \n        1661, \n        1650, \n        1650, \n        1661, \n        1662, \n        1655, \n        1664, \n        1662, \n        1662, \n        1664, \n        1655, \n        1662, \n        1653, \n        1655, \n        1655, \n        1653, \n        1662, \n        1665, \n        1663, \n        1662, \n        1662, \n        1663, \n        1665, \n        1662, \n        1664, \n        1665, \n        1665, \n        1664, \n        1662, \n        1665, \n        1664, \n        1666, \n        1666, \n        1664, \n        1665, \n        1666, \n        1667, \n        1665, \n        1665, \n        1667, \n        1666, \n        1655, \n        1657, \n        1666, \n        1666, \n        1657, \n        1655, \n        1666, \n        1664, \n        1655, \n        1655, \n        1664, \n        1666, \n        1659, \n        1668, \n        1666, \n        1666, \n        1668, \n        1659, \n        1666, \n        1657, \n        1659, \n        1659, \n        1657, \n        1666, \n        1669, \n        1667, \n        1666, \n        1666, \n        1667, \n        1669, \n        1666, \n        1668, \n        1669, \n        1669, \n        1668, \n        1666, \n        1670, \n        1671, \n        1672, \n        1672, \n        1671, \n        1670, \n        1672, \n        1673, \n        1670, \n        1670, \n        1673, \n        1672, \n        1660, \n        1663, \n        1672, \n        1672, \n        1663, \n        1660, \n        1672, \n        1671, \n        1660, \n        1660, \n        1671, \n        1672, \n        1665, \n        1674, \n        1672, \n        1672, \n        1674, \n        1665, \n        1672, \n        1663, \n        1665, \n        1665, \n        1663, \n        1672, \n        1675, \n        1673, \n        1672, \n        1672, \n        1673, \n        1675, \n        1672, \n        1674, \n        1675, \n        1675, \n        1674, \n        1672, \n        1675, \n        1674, \n        1676, \n        1676, \n        1674, \n        1675, \n        1676, \n        1677, \n        1675, \n        1675, \n        1677, \n        1676, \n        1665, \n        1667, \n        1676, \n        1676, \n        1667, \n        1665, \n        1676, \n        1674, \n        1665, \n        1665, \n        1674, \n        1676, \n        1669, \n        1678, \n        1676, \n        1676, \n        1678, \n        1669, \n        1676, \n        1667, \n        1669, \n        1669, \n        1667, \n        1676, \n        1679, \n        1677, \n        1676, \n        1676, \n        1677, \n        1679, \n        1676, \n        1678, \n        1679, \n        1679, \n        1678, \n        1676, \n        1680, \n        1681, \n        1682, \n        1682, \n        1681, \n        1680, \n        1682, \n        1683, \n        1680, \n        1680, \n        1683, \n        1682, \n        1670, \n        1673, \n        1682, \n        1682, \n        1673, \n        1670, \n        1682, \n        1681, \n        1670, \n        1670, \n        1681, \n        1682, \n        1675, \n        1684, \n        1682, \n        1682, \n        1684, \n        1675, \n        1682, \n        1673, \n        1675, \n        1675, \n        1673, \n        1682, \n        1685, \n        1683, \n        1682, \n        1682, \n        1683, \n        1685, \n        1682, \n        1684, \n        1685, \n        1685, \n        1684, \n        1682, \n        1685, \n        1684, \n        1686, \n        1686, \n        1684, \n        1685, \n        1686, \n        1687, \n        1685, \n        1685, \n        1687, \n        1686, \n        1675, \n        1677, \n        1686, \n        1686, \n        1677, \n        1675, \n        1686, \n        1684, \n        1675, \n        1675, \n        1684, \n        1686, \n        1679, \n        1688, \n        1686, \n        1686, \n        1688, \n        1679, \n        1686, \n        1677, \n        1679, \n        1679, \n        1677, \n        1686, \n        1689, \n        1687, \n        1686, \n        1686, \n        1687, \n        1689, \n        1686, \n        1688, \n        1689, \n        1689, \n        1688, \n        1686, \n        1690, \n        1691, \n        1692, \n        1692, \n        1691, \n        1690, \n        1692, \n        1693, \n        1690, \n        1690, \n        1693, \n        1692, \n        1680, \n        1683, \n        1692, \n        1692, \n        1683, \n        1680, \n        1692, \n        1691, \n        1680, \n        1680, \n        1691, \n        1692, \n        1685, \n        1694, \n        1692, \n        1692, \n        1694, \n        1685, \n        1692, \n        1683, \n        1685, \n        1685, \n        1683, \n        1692, \n        1695, \n        1693, \n        1692, \n        1692, \n        1693, \n        1695, \n        1692, \n        1694, \n        1695, \n        1695, \n        1694, \n        1692, \n        1695, \n        1694, \n        1696, \n        1696, \n        1694, \n        1695, \n        1696, \n        1697, \n        1695, \n        1695, \n        1697, \n        1696, \n        1685, \n        1687, \n        1696, \n        1696, \n        1687, \n        1685, \n        1696, \n        1694, \n        1685, \n        1685, \n        1694, \n        1696, \n        1689, \n        1698, \n        1696, \n        1696, \n        1698, \n        1689, \n        1696, \n        1687, \n        1689, \n        1689, \n        1687, \n        1696, \n        1699, \n        1697, \n        1696, \n        1696, \n        1697, \n        1699, \n        1696, \n        1698, \n        1699, \n        1699, \n        1698, \n        1696, \n        1700, \n        1701, \n        1702, \n        1702, \n        1701, \n        1700, \n        1702, \n        1703, \n        1700, \n        1700, \n        1703, \n        1702, \n        1690, \n        1693, \n        1702, \n        1702, \n        1693, \n        1690, \n        1702, \n        1701, \n        1690, \n        1690, \n        1701, \n        1702, \n        1695, \n        1704, \n        1702, \n        1702, \n        1704, \n        1695, \n        1702, \n        1693, \n        1695, \n        1695, \n        1693, \n        1702, \n        1705, \n        1703, \n        1702, \n        1702, \n        1703, \n        1705, \n        1702, \n        1704, \n        1705, \n        1705, \n        1704, \n        1702, \n        1705, \n        1704, \n        1706, \n        1706, \n        1704, \n        1705, \n        1706, \n        1707, \n        1705, \n        1705, \n        1707, \n        1706, \n        1695, \n        1697, \n        1706, \n        1706, \n        1697, \n        1695, \n        1706, \n        1704, \n        1695, \n        1695, \n        1704, \n        1706, \n        1699, \n        1708, \n        1706, \n        1706, \n        1708, \n        1699, \n        1706, \n        1697, \n        1699, \n        1699, \n        1697, \n        1706, \n        1709, \n        1707, \n        1706, \n        1706, \n        1707, \n        1709, \n        1706, \n        1708, \n        1709, \n        1709, \n        1708, \n        1706, \n        1710, \n        1711, \n        1712, \n        1712, \n        1711, \n        1710, \n        1712, \n        1713, \n        1710, \n        1710, \n        1713, \n        1712, \n        1700, \n        1703, \n        1712, \n        1712, \n        1703, \n        1700, \n        1712, \n        1711, \n        1700, \n        1700, \n        1711, \n        1712, \n        1705, \n        1714, \n        1712, \n        1712, \n        1714, \n        1705, \n        1712, \n        1703, \n        1705, \n        1705, \n        1703, \n        1712, \n        1715, \n        1713, \n        1712, \n        1712, \n        1713, \n        1715, \n        1712, \n        1714, \n        1715, \n        1715, \n        1714, \n        1712, \n        1715, \n        1714, \n        1716, \n        1716, \n        1714, \n        1715, \n        1716, \n        1717, \n        1715, \n        1715, \n        1717, \n        1716, \n        1705, \n        1707, \n        1716, \n        1716, \n        1707, \n        1705, \n        1716, \n        1714, \n        1705, \n        1705, \n        1714, \n        1716, \n        1709, \n        1718, \n        1716, \n        1716, \n        1718, \n        1709, \n        1716, \n        1707, \n        1709, \n        1709, \n        1707, \n        1716, \n        1719, \n        1717, \n        1716, \n        1716, \n        1717, \n        1719, \n        1716, \n        1718, \n        1719, \n        1719, \n        1718, \n        1716, \n        1720, \n        1721, \n        1722, \n        1722, \n        1721, \n        1720, \n        1722, \n        1723, \n        1720, \n        1720, \n        1723, \n        1722, \n        1710, \n        1713, \n        1722, \n        1722, \n        1713, \n        1710, \n        1722, \n        1721, \n        1710, \n        1710, \n        1721, \n        1722, \n        1715, \n        1724, \n        1722, \n        1722, \n        1724, \n        1715, \n        1722, \n        1713, \n        1715, \n        1715, \n        1713, \n        1722, \n        1725, \n        1723, \n        1722, \n        1722, \n        1723, \n        1725, \n        1722, \n        1724, \n        1725, \n        1725, \n        1724, \n        1722, \n        1725, \n        1724, \n        1726, \n        1726, \n        1724, \n        1725, \n        1726, \n        1727, \n        1725, \n        1725, \n        1727, \n        1726, \n        1715, \n        1717, \n        1726, \n        1726, \n        1717, \n        1715, \n        1726, \n        1724, \n        1715, \n        1715, \n        1724, \n        1726, \n        1719, \n        1728, \n        1726, \n        1726, \n        1728, \n        1719, \n        1726, \n        1717, \n        1719, \n        1719, \n        1717, \n        1726, \n        1729, \n        1727, \n        1726, \n        1726, \n        1727, \n        1729, \n        1726, \n        1728, \n        1729, \n        1729, \n        1728, \n        1726, \n        1730, \n        1731, \n        1732, \n        1732, \n        1731, \n        1730, \n        1732, \n        1733, \n        1730, \n        1730, \n        1733, \n        1732, \n        1720, \n        1723, \n        1732, \n        1732, \n        1723, \n        1720, \n        1732, \n        1731, \n        1720, \n        1720, \n        1731, \n        1732, \n        1725, \n        1734, \n        1732, \n        1732, \n        1734, \n        1725, \n        1732, \n        1723, \n        1725, \n        1725, \n        1723, \n        1732, \n        1735, \n        1733, \n        1732, \n        1732, \n        1733, \n        1735, \n        1732, \n        1734, \n        1735, \n        1735, \n        1734, \n        1732, \n        1735, \n        1734, \n        1736, \n        1736, \n        1734, \n        1735, \n        1736, \n        1737, \n        1735, \n        1735, \n        1737, \n        1736, \n        1725, \n        1727, \n        1736, \n        1736, \n        1727, \n        1725, \n        1736, \n        1734, \n        1725, \n        1725, \n        1734, \n        1736, \n        1729, \n        1738, \n        1736, \n        1736, \n        1738, \n        1729, \n        1736, \n        1727, \n        1729, \n        1729, \n        1727, \n        1736, \n        1739, \n        1737, \n        1736, \n        1736, \n        1737, \n        1739, \n        1736, \n        1738, \n        1739, \n        1739, \n        1738, \n        1736, \n        1740, \n        1741, \n        1742, \n        1742, \n        1741, \n        1740, \n        1742, \n        1743, \n        1740, \n        1740, \n        1743, \n        1742, \n        1730, \n        1733, \n        1742, \n        1742, \n        1733, \n        1730, \n        1742, \n        1741, \n        1730, \n        1730, \n        1741, \n        1742, \n        1735, \n        1744, \n        1742, \n        1742, \n        1744, \n        1735, \n        1742, \n        1733, \n        1735, \n        1735, \n        1733, \n        1742, \n        1745, \n        1743, \n        1742, \n        1742, \n        1743, \n        1745, \n        1742, \n        1744, \n        1745, \n        1745, \n        1744, \n        1742, \n        1745, \n        1744, \n        1746, \n        1746, \n        1744, \n        1745, \n        1746, \n        1747, \n        1745, \n        1745, \n        1747, \n        1746, \n        1735, \n        1737, \n        1746, \n        1746, \n        1737, \n        1735, \n        1746, \n        1744, \n        1735, \n        1735, \n        1744, \n        1746, \n        1739, \n        1748, \n        1746, \n        1746, \n        1748, \n        1739, \n        1746, \n        1737, \n        1739, \n        1739, \n        1737, \n        1746, \n        1749, \n        1747, \n        1746, \n        1746, \n        1747, \n        1749, \n        1746, \n        1748, \n        1749, \n        1749, \n        1748, \n        1746, \n        1750, \n        1751, \n        1752, \n        1752, \n        1751, \n        1750, \n        1752, \n        1753, \n        1750, \n        1750, \n        1753, \n        1752, \n        1754, \n        1755, \n        1752, \n        1752, \n        1755, \n        1754, \n        1752, \n        1751, \n        1754, \n        1754, \n        1751, \n        1752, \n        1756, \n        1757, \n        1752, \n        1752, \n        1757, \n        1756, \n        1752, \n        1755, \n        1756, \n        1756, \n        1755, \n        1752, \n        1758, \n        1753, \n        1752, \n        1752, \n        1753, \n        1758, \n        1752, \n        1757, \n        1758, \n        1758, \n        1757, \n        1752, \n        1758, \n        1757, \n        1759, \n        1759, \n        1757, \n        1758, \n        1759, \n        1760, \n        1758, \n        1758, \n        1760, \n        1759, \n        1756, \n        1761, \n        1759, \n        1759, \n        1761, \n        1756, \n        1759, \n        1757, \n        1756, \n        1756, \n        1757, \n        1759, \n        1762, \n        1763, \n        1759, \n        1759, \n        1763, \n        1762, \n        1759, \n        1761, \n        1762, \n        1762, \n        1761, \n        1759, \n        1764, \n        1760, \n        1759, \n        1759, \n        1760, \n        1764, \n        1759, \n        1763, \n        1764, \n        1764, \n        1763, \n        1759, \n        1765, \n        1766, \n        1767, \n        1767, \n        1766, \n        1765, \n        1767, \n        1768, \n        1765, \n        1765, \n        1768, \n        1767, \n        1750, \n        1753, \n        1767, \n        1767, \n        1753, \n        1750, \n        1767, \n        1766, \n        1750, \n        1750, \n        1766, \n        1767, \n        1758, \n        1769, \n        1767, \n        1767, \n        1769, \n        1758, \n        1767, \n        1753, \n        1758, \n        1758, \n        1753, \n        1767, \n        1770, \n        1768, \n        1767, \n        1767, \n        1768, \n        1770, \n        1767, \n        1769, \n        1770, \n        1770, \n        1769, \n        1767, \n        1770, \n        1769, \n        1771, \n        1771, \n        1769, \n        1770, \n        1771, \n        1772, \n        1770, \n        1770, \n        1772, \n        1771, \n        1758, \n        1760, \n        1771, \n        1771, \n        1760, \n        1758, \n        1771, \n        1769, \n        1758, \n        1758, \n        1769, \n        1771, \n        1764, \n        1773, \n        1771, \n        1771, \n        1773, \n        1764, \n        1771, \n        1760, \n        1764, \n        1764, \n        1760, \n        1771, \n        1774, \n        1772, \n        1771, \n        1771, \n        1772, \n        1774, \n        1771, \n        1773, \n        1774, \n        1774, \n        1773, \n        1771, \n        1775, \n        1776, \n        1777, \n        1777, \n        1776, \n        1775, \n        1777, \n        1778, \n        1775, \n        1775, \n        1778, \n        1777, \n        1765, \n        1768, \n        1777, \n        1777, \n        1768, \n        1765, \n        1777, \n        1776, \n        1765, \n        1765, \n        1776, \n        1777, \n        1770, \n        1779, \n        1777, \n        1777, \n        1779, \n        1770, \n        1777, \n        1768, \n        1770, \n        1770, \n        1768, \n        1777, \n        1780, \n        1778, \n        1777, \n        1777, \n        1778, \n        1780, \n        1777, \n        1779, \n        1780, \n        1780, \n        1779, \n        1777, \n        1780, \n        1779, \n        1781, \n        1781, \n        1779, \n        1780, \n        1781, \n        1782, \n        1780, \n        1780, \n        1782, \n        1781, \n        1770, \n        1772, \n        1781, \n        1781, \n        1772, \n        1770, \n        1781, \n        1779, \n        1770, \n        1770, \n        1779, \n        1781, \n        1774, \n        1783, \n        1781, \n        1781, \n        1783, \n        1774, \n        1781, \n        1772, \n        1774, \n        1774, \n        1772, \n        1781, \n        1784, \n        1782, \n        1781, \n        1781, \n        1782, \n        1784, \n        1781, \n        1783, \n        1784, \n        1784, \n        1783, \n        1781, \n        1785, \n        1786, \n        1787, \n        1787, \n        1786, \n        1785, \n        1787, \n        1788, \n        1785, \n        1785, \n        1788, \n        1787, \n        1775, \n        1778, \n        1787, \n        1787, \n        1778, \n        1775, \n        1787, \n        1786, \n        1775, \n        1775, \n        1786, \n        1787, \n        1780, \n        1789, \n        1787, \n        1787, \n        1789, \n        1780, \n        1787, \n        1778, \n        1780, \n        1780, \n        1778, \n        1787, \n        1790, \n        1788, \n        1787, \n        1787, \n        1788, \n        1790, \n        1787, \n        1789, \n        1790, \n        1790, \n        1789, \n        1787, \n        1790, \n        1789, \n        1791, \n        1791, \n        1789, \n        1790, \n        1791, \n        1792, \n        1790, \n        1790, \n        1792, \n        1791, \n        1780, \n        1782, \n        1791, \n        1791, \n        1782, \n        1780, \n        1791, \n        1789, \n        1780, \n        1780, \n        1789, \n        1791, \n        1784, \n        1793, \n        1791, \n        1791, \n        1793, \n        1784, \n        1791, \n        1782, \n        1784, \n        1784, \n        1782, \n        1791, \n        1794, \n        1792, \n        1791, \n        1791, \n        1792, \n        1794, \n        1791, \n        1793, \n        1794, \n        1794, \n        1793, \n        1791, \n        1795, \n        1796, \n        1797, \n        1797, \n        1796, \n        1795, \n        1797, \n        1798, \n        1795, \n        1795, \n        1798, \n        1797, \n        1785, \n        1788, \n        1797, \n        1797, \n        1788, \n        1785, \n        1797, \n        1796, \n        1785, \n        1785, \n        1796, \n        1797, \n        1790, \n        1799, \n        1797, \n        1797, \n        1799, \n        1790, \n        1797, \n        1788, \n        1790, \n        1790, \n        1788, \n        1797, \n        1800, \n        1798, \n        1797, \n        1797, \n        1798, \n        1800, \n        1797, \n        1799, \n        1800, \n        1800, \n        1799, \n        1797, \n        1800, \n        1799, \n        1801, \n        1801, \n        1799, \n        1800, \n        1801, \n        1802, \n        1800, \n        1800, \n        1802, \n        1801, \n        1790, \n        1792, \n        1801, \n        1801, \n        1792, \n        1790, \n        1801, \n        1799, \n        1790, \n        1790, \n        1799, \n        1801, \n        1794, \n        1803, \n        1801, \n        1801, \n        1803, \n        1794, \n        1801, \n        1792, \n        1794, \n        1794, \n        1792, \n        1801, \n        1804, \n        1802, \n        1801, \n        1801, \n        1802, \n        1804, \n        1801, \n        1803, \n        1804, \n        1804, \n        1803, \n        1801, \n        1805, \n        1806, \n        1807, \n        1807, \n        1806, \n        1805, \n        1807, \n        1808, \n        1805, \n        1805, \n        1808, \n        1807, \n        1795, \n        1798, \n        1807, \n        1807, \n        1798, \n        1795, \n        1807, \n        1806, \n        1795, \n        1795, \n        1806, \n        1807, \n        1800, \n        1809, \n        1807, \n        1807, \n        1809, \n        1800, \n        1807, \n        1798, \n        1800, \n        1800, \n        1798, \n        1807, \n        1810, \n        1808, \n        1807, \n        1807, \n        1808, \n        1810, \n        1807, \n        1809, \n        1810, \n        1810, \n        1809, \n        1807, \n        1810, \n        1809, \n        1811, \n        1811, \n        1809, \n        1810, \n        1811, \n        1812, \n        1810, \n        1810, \n        1812, \n        1811, \n        1800, \n        1802, \n        1811, \n        1811, \n        1802, \n        1800, \n        1811, \n        1809, \n        1800, \n        1800, \n        1809, \n        1811, \n        1804, \n        1813, \n        1811, \n        1811, \n        1813, \n        1804, \n        1811, \n        1802, \n        1804, \n        1804, \n        1802, \n        1811, \n        1814, \n        1812, \n        1811, \n        1811, \n        1812, \n        1814, \n        1811, \n        1813, \n        1814, \n        1814, \n        1813, \n        1811, \n        1815, \n        1816, \n        1817, \n        1817, \n        1816, \n        1815, \n        1817, \n        1818, \n        1815, \n        1815, \n        1818, \n        1817, \n        1805, \n        1808, \n        1817, \n        1817, \n        1808, \n        1805, \n        1817, \n        1816, \n        1805, \n        1805, \n        1816, \n        1817, \n        1810, \n        1819, \n        1817, \n        1817, \n        1819, \n        1810, \n        1817, \n        1808, \n        1810, \n        1810, \n        1808, \n        1817, \n        1820, \n        1818, \n        1817, \n        1817, \n        1818, \n        1820, \n        1817, \n        1819, \n        1820, \n        1820, \n        1819, \n        1817, \n        1820, \n        1819, \n        1821, \n        1821, \n        1819, \n        1820, \n        1821, \n        1822, \n        1820, \n        1820, \n        1822, \n        1821, \n        1810, \n        1812, \n        1821, \n        1821, \n        1812, \n        1810, \n        1821, \n        1819, \n        1810, \n        1810, \n        1819, \n        1821, \n        1814, \n        1823, \n        1821, \n        1821, \n        1823, \n        1814, \n        1821, \n        1812, \n        1814, \n        1814, \n        1812, \n        1821, \n        1824, \n        1822, \n        1821, \n        1821, \n        1822, \n        1824, \n        1821, \n        1823, \n        1824, \n        1824, \n        1823, \n        1821, \n        1825, \n        1826, \n        1827, \n        1827, \n        1826, \n        1825, \n        1827, \n        1828, \n        1825, \n        1825, \n        1828, \n        1827, \n        1815, \n        1818, \n        1827, \n        1827, \n        1818, \n        1815, \n        1827, \n        1826, \n        1815, \n        1815, \n        1826, \n        1827, \n        1820, \n        1829, \n        1827, \n        1827, \n        1829, \n        1820, \n        1827, \n        1818, \n        1820, \n        1820, \n        1818, \n        1827, \n        1830, \n        1828, \n        1827, \n        1827, \n        1828, \n        1830, \n        1827, \n        1829, \n        1830, \n        1830, \n        1829, \n        1827, \n        1830, \n        1829, \n        1831, \n        1831, \n        1829, \n        1830, \n        1831, \n        1832, \n        1830, \n        1830, \n        1832, \n        1831, \n        1820, \n        1822, \n        1831, \n        1831, \n        1822, \n        1820, \n        1831, \n        1829, \n        1820, \n        1820, \n        1829, \n        1831, \n        1824, \n        1833, \n        1831, \n        1831, \n        1833, \n        1824, \n        1831, \n        1822, \n        1824, \n        1824, \n        1822, \n        1831, \n        1834, \n        1832, \n        1831, \n        1831, \n        1832, \n        1834, \n        1831, \n        1833, \n        1834, \n        1834, \n        1833, \n        1831, \n        1835, \n        1836, \n        1837, \n        1837, \n        1836, \n        1835, \n        1837, \n        1838, \n        1835, \n        1835, \n        1838, \n        1837, \n        1825, \n        1828, \n        1837, \n        1837, \n        1828, \n        1825, \n        1837, \n        1836, \n        1825, \n        1825, \n        1836, \n        1837, \n        1830, \n        1839, \n        1837, \n        1837, \n        1839, \n        1830, \n        1837, \n        1828, \n        1830, \n        1830, \n        1828, \n        1837, \n        1840, \n        1838, \n        1837, \n        1837, \n        1838, \n        1840, \n        1837, \n        1839, \n        1840, \n        1840, \n        1839, \n        1837, \n        1840, \n        1839, \n        1841, \n        1841, \n        1839, \n        1840, \n        1841, \n        1842, \n        1840, \n        1840, \n        1842, \n        1841, \n        1830, \n        1832, \n        1841, \n        1841, \n        1832, \n        1830, \n        1841, \n        1839, \n        1830, \n        1830, \n        1839, \n        1841, \n        1834, \n        1843, \n        1841, \n        1841, \n        1843, \n        1834, \n        1841, \n        1832, \n        1834, \n        1834, \n        1832, \n        1841, \n        1844, \n        1842, \n        1841, \n        1841, \n        1842, \n        1844, \n        1841, \n        1843, \n        1844, \n        1844, \n        1843, \n        1841, \n        1845, \n        1846, \n        1847, \n        1847, \n        1846, \n        1845, \n        1847, \n        1848, \n        1845, \n        1845, \n        1848, \n        1847, \n        1835, \n        1838, \n        1847, \n        1847, \n        1838, \n        1835, \n        1847, \n        1846, \n        1835, \n        1835, \n        1846, \n        1847, \n        1840, \n        1849, \n        1847, \n        1847, \n        1849, \n        1840, \n        1847, \n        1838, \n        1840, \n        1840, \n        1838, \n        1847, \n        1850, \n        1848, \n        1847, \n        1847, \n        1848, \n        1850, \n        1847, \n        1849, \n        1850, \n        1850, \n        1849, \n        1847, \n        1850, \n        1849, \n        1851, \n        1851, \n        1849, \n        1850, \n        1851, \n        1852, \n        1850, \n        1850, \n        1852, \n        1851, \n        1840, \n        1842, \n        1851, \n        1851, \n        1842, \n        1840, \n        1851, \n        1849, \n        1840, \n        1840, \n        1849, \n        1851, \n        1844, \n        1853, \n        1851, \n        1851, \n        1853, \n        1844, \n        1851, \n        1842, \n        1844, \n        1844, \n        1842, \n        1851, \n        1854, \n        1852, \n        1851, \n        1851, \n        1852, \n        1854, \n        1851, \n        1853, \n        1854, \n        1854, \n        1853, \n        1851, \n        1855, \n        1856, \n        1857, \n        1857, \n        1856, \n        1855, \n        1857, \n        1858, \n        1855, \n        1855, \n        1858, \n        1857, \n        1845, \n        1848, \n        1857, \n        1857, \n        1848, \n        1845, \n        1857, \n        1856, \n        1845, \n        1845, \n        1856, \n        1857, \n        1850, \n        1859, \n        1857, \n        1857, \n        1859, \n        1850, \n        1857, \n        1848, \n        1850, \n        1850, \n        1848, \n        1857, \n        1860, \n        1858, \n        1857, \n        1857, \n        1858, \n        1860, \n        1857, \n        1859, \n        1860, \n        1860, \n        1859, \n        1857, \n        1860, \n        1859, \n        1861, \n        1861, \n        1859, \n        1860, \n        1861, \n        1862, \n        1860, \n        1860, \n        1862, \n        1861, \n        1850, \n        1852, \n        1861, \n        1861, \n        1852, \n        1850, \n        1861, \n        1859, \n        1850, \n        1850, \n        1859, \n        1861, \n        1854, \n        1863, \n        1861, \n        1861, \n        1863, \n        1854, \n        1861, \n        1852, \n        1854, \n        1854, \n        1852, \n        1861, \n        1864, \n        1862, \n        1861, \n        1861, \n        1862, \n        1864, \n        1861, \n        1863, \n        1864, \n        1864, \n        1863, \n        1861, \n        1865, \n        1866, \n        1867, \n        1867, \n        1866, \n        1865, \n        1867, \n        1868, \n        1865, \n        1865, \n        1868, \n        1867, \n        1855, \n        1858, \n        1867, \n        1867, \n        1858, \n        1855, \n        1867, \n        1866, \n        1855, \n        1855, \n        1866, \n        1867, \n        1860, \n        1869, \n        1867, \n        1867, \n        1869, \n        1860, \n        1867, \n        1858, \n        1860, \n        1860, \n        1858, \n        1867, \n        1870, \n        1868, \n        1867, \n        1867, \n        1868, \n        1870, \n        1867, \n        1869, \n        1870, \n        1870, \n        1869, \n        1867, \n        1870, \n        1869, \n        1871, \n        1871, \n        1869, \n        1870, \n        1871, \n        1872, \n        1870, \n        1870, \n        1872, \n        1871, \n        1860, \n        1862, \n        1871, \n        1871, \n        1862, \n        1860, \n        1871, \n        1869, \n        1860, \n        1860, \n        1869, \n        1871, \n        1864, \n        1873, \n        1871, \n        1871, \n        1873, \n        1864, \n        1871, \n        1862, \n        1864, \n        1864, \n        1862, \n        1871, \n        1874, \n        1872, \n        1871, \n        1871, \n        1872, \n        1874, \n        1871, \n        1873, \n        1874, \n        1874, \n        1873, \n        1871, \n        1875, \n        1876, \n        1877, \n        1877, \n        1876, \n        1875, \n        1877, \n        1878, \n        1875, \n        1875, \n        1878, \n        1877, \n        1879, \n        1880, \n        1877, \n        1877, \n        1880, \n        1879, \n        1877, \n        1876, \n        1879, \n        1879, \n        1876, \n        1877, \n        1881, \n        1882, \n        1877, \n        1877, \n        1882, \n        1881, \n        1877, \n        1880, \n        1881, \n        1881, \n        1880, \n        1877, \n        1883, \n        1878, \n        1877, \n        1877, \n        1878, \n        1883, \n        1877, \n        1882, \n        1883, \n        1883, \n        1882, \n        1877, \n        1883, \n        1882, \n        1884, \n        1884, \n        1882, \n        1883, \n        1884, \n        1885, \n        1883, \n        1883, \n        1885, \n        1884, \n        1881, \n        1886, \n        1884, \n        1884, \n        1886, \n        1881, \n        1884, \n        1882, \n        1881, \n        1881, \n        1882, \n        1884, \n        1887, \n        1888, \n        1884, \n        1884, \n        1888, \n        1887, \n        1884, \n        1886, \n        1887, \n        1887, \n        1886, \n        1884, \n        1889, \n        1885, \n        1884, \n        1884, \n        1885, \n        1889, \n        1884, \n        1888, \n        1889, \n        1889, \n        1888, \n        1884, \n        1890, \n        1891, \n        1892, \n        1892, \n        1891, \n        1890, \n        1892, \n        1893, \n        1890, \n        1890, \n        1893, \n        1892, \n        1875, \n        1878, \n        1892, \n        1892, \n        1878, \n        1875, \n        1892, \n        1891, \n        1875, \n        1875, \n        1891, \n        1892, \n        1883, \n        1894, \n        1892, \n        1892, \n        1894, \n        1883, \n        1892, \n        1878, \n        1883, \n        1883, \n        1878, \n        1892, \n        1895, \n        1893, \n        1892, \n        1892, \n        1893, \n        1895, \n        1892, \n        1894, \n        1895, \n        1895, \n        1894, \n        1892, \n        1895, \n        1894, \n        1896, \n        1896, \n        1894, \n        1895, \n        1896, \n        1897, \n        1895, \n        1895, \n        1897, \n        1896, \n        1883, \n        1885, \n        1896, \n        1896, \n        1885, \n        1883, \n        1896, \n        1894, \n        1883, \n        1883, \n        1894, \n        1896, \n        1889, \n        1898, \n        1896, \n        1896, \n        1898, \n        1889, \n        1896, \n        1885, \n        1889, \n        1889, \n        1885, \n        1896, \n        1899, \n        1897, \n        1896, \n        1896, \n        1897, \n        1899, \n        1896, \n        1898, \n        1899, \n        1899, \n        1898, \n        1896, \n        1900, \n        1901, \n        1902, \n        1902, \n        1901, \n        1900, \n        1902, \n        1903, \n        1900, \n        1900, \n        1903, \n        1902, \n        1890, \n        1893, \n        1902, \n        1902, \n        1893, \n        1890, \n        1902, \n        1901, \n        1890, \n        1890, \n        1901, \n        1902, \n        1895, \n        1904, \n        1902, \n        1902, \n        1904, \n        1895, \n        1902, \n        1893, \n        1895, \n        1895, \n        1893, \n        1902, \n        1905, \n        1903, \n        1902, \n        1902, \n        1903, \n        1905, \n        1902, \n        1904, \n        1905, \n        1905, \n        1904, \n        1902, \n        1905, \n        1904, \n        1906, \n        1906, \n        1904, \n        1905, \n        1906, \n        1907, \n        1905, \n        1905, \n        1907, \n        1906, \n        1895, \n        1897, \n        1906, \n        1906, \n        1897, \n        1895, \n        1906, \n        1904, \n        1895, \n        1895, \n        1904, \n        1906, \n        1899, \n        1908, \n        1906, \n        1906, \n        1908, \n        1899, \n        1906, \n        1897, \n        1899, \n        1899, \n        1897, \n        1906, \n        1909, \n        1907, \n        1906, \n        1906, \n        1907, \n        1909, \n        1906, \n        1908, \n        1909, \n        1909, \n        1908, \n        1906, \n        1910, \n        1911, \n        1912, \n        1912, \n        1911, \n        1910, \n        1912, \n        1913, \n        1910, \n        1910, \n        1913, \n        1912, \n        1900, \n        1903, \n        1912, \n        1912, \n        1903, \n        1900, \n        1912, \n        1911, \n        1900, \n        1900, \n        1911, \n        1912, \n        1905, \n        1914, \n        1912, \n        1912, \n        1914, \n        1905, \n        1912, \n        1903, \n        1905, \n        1905, \n        1903, \n        1912, \n        1915, \n        1913, \n        1912, \n        1912, \n        1913, \n        1915, \n        1912, \n        1914, \n        1915, \n        1915, \n        1914, \n        1912, \n        1915, \n        1914, \n        1916, \n        1916, \n        1914, \n        1915, \n        1916, \n        1917, \n        1915, \n        1915, \n        1917, \n        1916, \n        1905, \n        1907, \n        1916, \n        1916, \n        1907, \n        1905, \n        1916, \n        1914, \n        1905, \n        1905, \n        1914, \n        1916, \n        1909, \n        1918, \n        1916, \n        1916, \n        1918, \n        1909, \n        1916, \n        1907, \n        1909, \n        1909, \n        1907, \n        1916, \n        1919, \n        1917, \n        1916, \n        1916, \n        1917, \n        1919, \n        1916, \n        1918, \n        1919, \n        1919, \n        1918, \n        1916, \n        1920, \n        1921, \n        1922, \n        1922, \n        1921, \n        1920, \n        1922, \n        1923, \n        1920, \n        1920, \n        1923, \n        1922, \n        1910, \n        1913, \n        1922, \n        1922, \n        1913, \n        1910, \n        1922, \n        1921, \n        1910, \n        1910, \n        1921, \n        1922, \n        1915, \n        1924, \n        1922, \n        1922, \n        1924, \n        1915, \n        1922, \n        1913, \n        1915, \n        1915, \n        1913, \n        1922, \n        1925, \n        1923, \n        1922, \n        1922, \n        1923, \n        1925, \n        1922, \n        1924, \n        1925, \n        1925, \n        1924, \n        1922, \n        1925, \n        1924, \n        1926, \n        1926, \n        1924, \n        1925, \n        1926, \n        1927, \n        1925, \n        1925, \n        1927, \n        1926, \n        1915, \n        1917, \n        1926, \n        1926, \n        1917, \n        1915, \n        1926, \n        1924, \n        1915, \n        1915, \n        1924, \n        1926, \n        1919, \n        1928, \n        1926, \n        1926, \n        1928, \n        1919, \n        1926, \n        1917, \n        1919, \n        1919, \n        1917, \n        1926, \n        1929, \n        1927, \n        1926, \n        1926, \n        1927, \n        1929, \n        1926, \n        1928, \n        1929, \n        1929, \n        1928, \n        1926, \n        1930, \n        1931, \n        1932, \n        1932, \n        1931, \n        1930, \n        1932, \n        1933, \n        1930, \n        1930, \n        1933, \n        1932, \n        1920, \n        1923, \n        1932, \n        1932, \n        1923, \n        1920, \n        1932, \n        1931, \n        1920, \n        1920, \n        1931, \n        1932, \n        1925, \n        1934, \n        1932, \n        1932, \n        1934, \n        1925, \n        1932, \n        1923, \n        1925, \n        1925, \n        1923, \n        1932, \n        1935, \n        1933, \n        1932, \n        1932, \n        1933, \n        1935, \n        1932, \n        1934, \n        1935, \n        1935, \n        1934, \n        1932, \n        1935, \n        1934, \n        1936, \n        1936, \n        1934, \n        1935, \n        1936, \n        1937, \n        1935, \n        1935, \n        1937, \n        1936, \n        1925, \n        1927, \n        1936, \n        1936, \n        1927, \n        1925, \n        1936, \n        1934, \n        1925, \n        1925, \n        1934, \n        1936, \n        1929, \n        1938, \n        1936, \n        1936, \n        1938, \n        1929, \n        1936, \n        1927, \n        1929, \n        1929, \n        1927, \n        1936, \n        1939, \n        1937, \n        1936, \n        1936, \n        1937, \n        1939, \n        1936, \n        1938, \n        1939, \n        1939, \n        1938, \n        1936, \n        1940, \n        1941, \n        1942, \n        1942, \n        1941, \n        1940, \n        1942, \n        1943, \n        1940, \n        1940, \n        1943, \n        1942, \n        1930, \n        1933, \n        1942, \n        1942, \n        1933, \n        1930, \n        1942, \n        1941, \n        1930, \n        1930, \n        1941, \n        1942, \n        1935, \n        1944, \n        1942, \n        1942, \n        1944, \n        1935, \n        1942, \n        1933, \n        1935, \n        1935, \n        1933, \n        1942, \n        1945, \n        1943, \n        1942, \n        1942, \n        1943, \n        1945, \n        1942, \n        1944, \n        1945, \n        1945, \n        1944, \n        1942, \n        1945, \n        1944, \n        1946, \n        1946, \n        1944, \n        1945, \n        1946, \n        1947, \n        1945, \n        1945, \n        1947, \n        1946, \n        1935, \n        1937, \n        1946, \n        1946, \n        1937, \n        1935, \n        1946, \n        1944, \n        1935, \n        1935, \n        1944, \n        1946, \n        1939, \n        1948, \n        1946, \n        1946, \n        1948, \n        1939, \n        1946, \n        1937, \n        1939, \n        1939, \n        1937, \n        1946, \n        1949, \n        1947, \n        1946, \n        1946, \n        1947, \n        1949, \n        1946, \n        1948, \n        1949, \n        1949, \n        1948, \n        1946, \n        1950, \n        1951, \n        1952, \n        1952, \n        1951, \n        1950, \n        1952, \n        1953, \n        1950, \n        1950, \n        1953, \n        1952, \n        1940, \n        1943, \n        1952, \n        1952, \n        1943, \n        1940, \n        1952, \n        1951, \n        1940, \n        1940, \n        1951, \n        1952, \n        1945, \n        1954, \n        1952, \n        1952, \n        1954, \n        1945, \n        1952, \n        1943, \n        1945, \n        1945, \n        1943, \n        1952, \n        1955, \n        1953, \n        1952, \n        1952, \n        1953, \n        1955, \n        1952, \n        1954, \n        1955, \n        1955, \n        1954, \n        1952, \n        1955, \n        1954, \n        1956, \n        1956, \n        1954, \n        1955, \n        1956, \n        1957, \n        1955, \n        1955, \n        1957, \n        1956, \n        1945, \n        1947, \n        1956, \n        1956, \n        1947, \n        1945, \n        1956, \n        1954, \n        1945, \n        1945, \n        1954, \n        1956, \n        1949, \n        1958, \n        1956, \n        1956, \n        1958, \n        1949, \n        1956, \n        1947, \n        1949, \n        1949, \n        1947, \n        1956, \n        1959, \n        1957, \n        1956, \n        1956, \n        1957, \n        1959, \n        1956, \n        1958, \n        1959, \n        1959, \n        1958, \n        1956, \n        1960, \n        1961, \n        1962, \n        1962, \n        1961, \n        1960, \n        1962, \n        1963, \n        1960, \n        1960, \n        1963, \n        1962, \n        1950, \n        1953, \n        1962, \n        1962, \n        1953, \n        1950, \n        1962, \n        1961, \n        1950, \n        1950, \n        1961, \n        1962, \n        1955, \n        1964, \n        1962, \n        1962, \n        1964, \n        1955, \n        1962, \n        1953, \n        1955, \n        1955, \n        1953, \n        1962, \n        1965, \n        1963, \n        1962, \n        1962, \n        1963, \n        1965, \n        1962, \n        1964, \n        1965, \n        1965, \n        1964, \n        1962, \n        1965, \n        1964, \n        1966, \n        1966, \n        1964, \n        1965, \n        1966, \n        1967, \n        1965, \n        1965, \n        1967, \n        1966, \n        1955, \n        1957, \n        1966, \n        1966, \n        1957, \n        1955, \n        1966, \n        1964, \n        1955, \n        1955, \n        1964, \n        1966, \n        1959, \n        1968, \n        1966, \n        1966, \n        1968, \n        1959, \n        1966, \n        1957, \n        1959, \n        1959, \n        1957, \n        1966, \n        1969, \n        1967, \n        1966, \n        1966, \n        1967, \n        1969, \n        1966, \n        1968, \n        1969, \n        1969, \n        1968, \n        1966, \n        1970, \n        1971, \n        1972, \n        1972, \n        1971, \n        1970, \n        1972, \n        1973, \n        1970, \n        1970, \n        1973, \n        1972, \n        1960, \n        1963, \n        1972, \n        1972, \n        1963, \n        1960, \n        1972, \n        1971, \n        1960, \n        1960, \n        1971, \n        1972, \n        1965, \n        1974, \n        1972, \n        1972, \n        1974, \n        1965, \n        1972, \n        1963, \n        1965, \n        1965, \n        1963, \n        1972, \n        1975, \n        1973, \n        1972, \n        1972, \n        1973, \n        1975, \n        1972, \n        1974, \n        1975, \n        1975, \n        1974, \n        1972, \n        1975, \n        1974, \n        1976, \n        1976, \n        1974, \n        1975, \n        1976, \n        1977, \n        1975, \n        1975, \n        1977, \n        1976, \n        1965, \n        1967, \n        1976, \n        1976, \n        1967, \n        1965, \n        1976, \n        1974, \n        1965, \n        1965, \n        1974, \n        1976, \n        1969, \n        1978, \n        1976, \n        1976, \n        1978, \n        1969, \n        1976, \n        1967, \n        1969, \n        1969, \n        1967, \n        1976, \n        1979, \n        1977, \n        1976, \n        1976, \n        1977, \n        1979, \n        1976, \n        1978, \n        1979, \n        1979, \n        1978, \n        1976, \n        1980, \n        1981, \n        1982, \n        1982, \n        1981, \n        1980, \n        1982, \n        1983, \n        1980, \n        1980, \n        1983, \n        1982, \n        1970, \n        1973, \n        1982, \n        1982, \n        1973, \n        1970, \n        1982, \n        1981, \n        1970, \n        1970, \n        1981, \n        1982, \n        1975, \n        1984, \n        1982, \n        1982, \n        1984, \n        1975, \n        1982, \n        1973, \n        1975, \n        1975, \n        1973, \n        1982, \n        1985, \n        1983, \n        1982, \n        1982, \n        1983, \n        1985, \n        1982, \n        1984, \n        1985, \n        1985, \n        1984, \n        1982, \n        1985, \n        1984, \n        1986, \n        1986, \n        1984, \n        1985, \n        1986, \n        1987, \n        1985, \n        1985, \n        1987, \n        1986, \n        1975, \n        1977, \n        1986, \n        1986, \n        1977, \n        1975, \n        1986, \n        1984, \n        1975, \n        1975, \n        1984, \n        1986, \n        1979, \n        1988, \n        1986, \n        1986, \n        1988, \n        1979, \n        1986, \n        1977, \n        1979, \n        1979, \n        1977, \n        1986, \n        1989, \n        1987, \n        1986, \n        1986, \n        1987, \n        1989, \n        1986, \n        1988, \n        1989, \n        1989, \n        1988, \n        1986, \n        1990, \n        1991, \n        1992, \n        1992, \n        1991, \n        1990, \n        1992, \n        1993, \n        1990, \n        1990, \n        1993, \n        1992, \n        1980, \n        1983, \n        1992, \n        1992, \n        1983, \n        1980, \n        1992, \n        1991, \n        1980, \n        1980, \n        1991, \n        1992, \n        1985, \n        1994, \n        1992, \n        1992, \n        1994, \n        1985, \n        1992, \n        1983, \n        1985, \n        1985, \n        1983, \n        1992, \n        1995, \n        1993, \n        1992, \n        1992, \n        1993, \n        1995, \n        1992, \n        1994, \n        1995, \n        1995, \n        1994, \n        1992, \n        1995, \n        1994, \n        1996, \n        1996, \n        1994, \n        1995, \n        1996, \n        1997, \n        1995, \n        1995, \n        1997, \n        1996, \n        1985, \n        1987, \n        1996, \n        1996, \n        1987, \n        1985, \n        1996, \n        1994, \n        1985, \n        1985, \n        1994, \n        1996, \n        1989, \n        1998, \n        1996, \n        1996, \n        1998, \n        1989, \n        1996, \n        1987, \n        1989, \n        1989, \n        1987, \n        1996, \n        1999, \n        1997, \n        1996, \n        1996, \n        1997, \n        1999, \n        1996, \n        1998, \n        1999, \n        1999, \n        1998, \n        1996, \n        2000, \n        2001, \n        2002, \n        2002, \n        2001, \n        2000, \n        2002, \n        2003, \n        2000, \n        2000, \n        2003, \n        2002, \n        2004, \n        2005, \n        2002, \n        2002, \n        2005, \n        2004, \n        2002, \n        2001, \n        2004, \n        2004, \n        2001, \n        2002, \n        2006, \n        2007, \n        2002, \n        2002, \n        2007, \n        2006, \n        2002, \n        2005, \n        2006, \n        2006, \n        2005, \n        2002, \n        2008, \n        2003, \n        2002, \n        2002, \n        2003, \n        2008, \n        2002, \n        2007, \n        2008, \n        2008, \n        2007, \n        2002, \n        2008, \n        2007, \n        2009, \n        2009, \n        2007, \n        2008, \n        2009, \n        2010, \n        2008, \n        2008, \n        2010, \n        2009, \n        2006, \n        2011, \n        2009, \n        2009, \n        2011, \n        2006, \n        2009, \n        2007, \n        2006, \n        2006, \n        2007, \n        2009, \n        2012, \n        2013, \n        2009, \n        2009, \n        2013, \n        2012, \n        2009, \n        2011, \n        2012, \n        2012, \n        2011, \n        2009, \n        2014, \n        2010, \n        2009, \n        2009, \n        2010, \n        2014, \n        2009, \n        2013, \n        2014, \n        2014, \n        2013, \n        2009, \n        2015, \n        2016, \n        2017, \n        2017, \n        2016, \n        2015, \n        2017, \n        2018, \n        2015, \n        2015, \n        2018, \n        2017, \n        2000, \n        2003, \n        2017, \n        2017, \n        2003, \n        2000, \n        2017, \n        2016, \n        2000, \n        2000, \n        2016, \n        2017, \n        2008, \n        2019, \n        2017, \n        2017, \n        2019, \n        2008, \n        2017, \n        2003, \n        2008, \n        2008, \n        2003, \n        2017, \n        2020, \n        2018, \n        2017, \n        2017, \n        2018, \n        2020, \n        2017, \n        2019, \n        2020, \n        2020, \n        2019, \n        2017, \n        2020, \n        2019, \n        2021, \n        2021, \n        2019, \n        2020, \n        2021, \n        2022, \n        2020, \n        2020, \n        2022, \n        2021, \n        2008, \n        2010, \n        2021, \n        2021, \n        2010, \n        2008, \n        2021, \n        2019, \n        2008, \n        2008, \n        2019, \n        2021, \n        2014, \n        2023, \n        2021, \n        2021, \n        2023, \n        2014, \n        2021, \n        2010, \n        2014, \n        2014, \n        2010, \n        2021, \n        2024, \n        2022, \n        2021, \n        2021, \n        2022, \n        2024, \n        2021, \n        2023, \n        2024, \n        2024, \n        2023, \n        2021, \n        2025, \n        2026, \n        2027, \n        2027, \n        2026, \n        2025, \n        2027, \n        2028, \n        2025, \n        2025, \n        2028, \n        2027, \n        2015, \n        2018, \n        2027, \n        2027, \n        2018, \n        2015, \n        2027, \n        2026, \n        2015, \n        2015, \n        2026, \n        2027, \n        2020, \n        2029, \n        2027, \n        2027, \n        2029, \n        2020, \n        2027, \n        2018, \n        2020, \n        2020, \n        2018, \n        2027, \n        2030, \n        2028, \n        2027, \n        2027, \n        2028, \n        2030, \n        2027, \n        2029, \n        2030, \n        2030, \n        2029, \n        2027, \n        2030, \n        2029, \n        2031, \n        2031, \n        2029, \n        2030, \n        2031, \n        2032, \n        2030, \n        2030, \n        2032, \n        2031, \n        2020, \n        2022, \n        2031, \n        2031, \n        2022, \n        2020, \n        2031, \n        2029, \n        2020, \n        2020, \n        2029, \n        2031, \n        2024, \n        2033, \n        2031, \n        2031, \n        2033, \n        2024, \n        2031, \n        2022, \n        2024, \n        2024, \n        2022, \n        2031, \n        2034, \n        2032, \n        2031, \n        2031, \n        2032, \n        2034, \n        2031, \n        2033, \n        2034, \n        2034, \n        2033, \n        2031, \n        2035, \n        2036, \n        2037, \n        2037, \n        2036, \n        2035, \n        2037, \n        2038, \n        2035, \n        2035, \n        2038, \n        2037, \n        2025, \n        2028, \n        2037, \n        2037, \n        2028, \n        2025, \n        2037, \n        2036, \n        2025, \n        2025, \n        2036, \n        2037, \n        2030, \n        2039, \n        2037, \n        2037, \n        2039, \n        2030, \n        2037, \n        2028, \n        2030, \n        2030, \n        2028, \n        2037, \n        2040, \n        2038, \n        2037, \n        2037, \n        2038, \n        2040, \n        2037, \n        2039, \n        2040, \n        2040, \n        2039, \n        2037, \n        2040, \n        2039, \n        2041, \n        2041, \n        2039, \n        2040, \n        2041, \n        2042, \n        2040, \n        2040, \n        2042, \n        2041, \n        2030, \n        2032, \n        2041, \n        2041, \n        2032, \n        2030, \n        2041, \n        2039, \n        2030, \n        2030, \n        2039, \n        2041, \n        2034, \n        2043, \n        2041, \n        2041, \n        2043, \n        2034, \n        2041, \n        2032, \n        2034, \n        2034, \n        2032, \n        2041, \n        2044, \n        2042, \n        2041, \n        2041, \n        2042, \n        2044, \n        2041, \n        2043, \n        2044, \n        2044, \n        2043, \n        2041, \n        2045, \n        2046, \n        2047, \n        2047, \n        2046, \n        2045, \n        2047, \n        2048, \n        2045, \n        2045, \n        2048, \n        2047, \n        2035, \n        2038, \n        2047, \n        2047, \n        2038, \n        2035, \n        2047, \n        2046, \n        2035, \n        2035, \n        2046, \n        2047, \n        2040, \n        2049, \n        2047, \n        2047, \n        2049, \n        2040, \n        2047, \n        2038, \n        2040, \n        2040, \n        2038, \n        2047, \n        2050, \n        2048, \n        2047, \n        2047, \n        2048, \n        2050, \n        2047, \n        2049, \n        2050, \n        2050, \n        2049, \n        2047, \n        2050, \n        2049, \n        2051, \n        2051, \n        2049, \n        2050, \n        2051, \n        2052, \n        2050, \n        2050, \n        2052, \n        2051, \n        2040, \n        2042, \n        2051, \n        2051, \n        2042, \n        2040, \n        2051, \n        2049, \n        2040, \n        2040, \n        2049, \n        2051, \n        2044, \n        2053, \n        2051, \n        2051, \n        2053, \n        2044, \n        2051, \n        2042, \n        2044, \n        2044, \n        2042, \n        2051, \n        2054, \n        2052, \n        2051, \n        2051, \n        2052, \n        2054, \n        2051, \n        2053, \n        2054, \n        2054, \n        2053, \n        2051, \n        2055, \n        2056, \n        2057, \n        2057, \n        2056, \n        2055, \n        2057, \n        2058, \n        2055, \n        2055, \n        2058, \n        2057, \n        2045, \n        2048, \n        2057, \n        2057, \n        2048, \n        2045, \n        2057, \n        2056, \n        2045, \n        2045, \n        2056, \n        2057, \n        2050, \n        2059, \n        2057, \n        2057, \n        2059, \n        2050, \n        2057, \n        2048, \n        2050, \n        2050, \n        2048, \n        2057, \n        2060, \n        2058, \n        2057, \n        2057, \n        2058, \n        2060, \n        2057, \n        2059, \n        2060, \n        2060, \n        2059, \n        2057, \n        2060, \n        2059, \n        2061, \n        2061, \n        2059, \n        2060, \n        2061, \n        2062, \n        2060, \n        2060, \n        2062, \n        2061, \n        2050, \n        2052, \n        2061, \n        2061, \n        2052, \n        2050, \n        2061, \n        2059, \n        2050, \n        2050, \n        2059, \n        2061, \n        2054, \n        2063, \n        2061, \n        2061, \n        2063, \n        2054, \n        2061, \n        2052, \n        2054, \n        2054, \n        2052, \n        2061, \n        2064, \n        2062, \n        2061, \n        2061, \n        2062, \n        2064, \n        2061, \n        2063, \n        2064, \n        2064, \n        2063, \n        2061, \n        2065, \n        2066, \n        2067, \n        2067, \n        2066, \n        2065, \n        2067, \n        2068, \n        2065, \n        2065, \n        2068, \n        2067, \n        2055, \n        2058, \n        2067, \n        2067, \n        2058, \n        2055, \n        2067, \n        2066, \n        2055, \n        2055, \n        2066, \n        2067, \n        2060, \n        2069, \n        2067, \n        2067, \n        2069, \n        2060, \n        2067, \n        2058, \n        2060, \n        2060, \n        2058, \n        2067, \n        2070, \n        2068, \n        2067, \n        2067, \n        2068, \n        2070, \n        2067, \n        2069, \n        2070, \n        2070, \n        2069, \n        2067, \n        2070, \n        2069, \n        2071, \n        2071, \n        2069, \n        2070, \n        2071, \n        2072, \n        2070, \n        2070, \n        2072, \n        2071, \n        2060, \n        2062, \n        2071, \n        2071, \n        2062, \n        2060, \n        2071, \n        2069, \n        2060, \n        2060, \n        2069, \n        2071, \n        2064, \n        2073, \n        2071, \n        2071, \n        2073, \n        2064, \n        2071, \n        2062, \n        2064, \n        2064, \n        2062, \n        2071, \n        2074, \n        2072, \n        2071, \n        2071, \n        2072, \n        2074, \n        2071, \n        2073, \n        2074, \n        2074, \n        2073, \n        2071, \n        2075, \n        2076, \n        2077, \n        2077, \n        2076, \n        2075, \n        2077, \n        2078, \n        2075, \n        2075, \n        2078, \n        2077, \n        2065, \n        2068, \n        2077, \n        2077, \n        2068, \n        2065, \n        2077, \n        2076, \n        2065, \n        2065, \n        2076, \n        2077, \n        2070, \n        2079, \n        2077, \n        2077, \n        2079, \n        2070, \n        2077, \n        2068, \n        2070, \n        2070, \n        2068, \n        2077, \n        2080, \n        2078, \n        2077, \n        2077, \n        2078, \n        2080, \n        2077, \n        2079, \n        2080, \n        2080, \n        2079, \n        2077, \n        2080, \n        2079, \n        2081, \n        2081, \n        2079, \n        2080, \n        2081, \n        2082, \n        2080, \n        2080, \n        2082, \n        2081, \n        2070, \n        2072, \n        2081, \n        2081, \n        2072, \n        2070, \n        2081, \n        2079, \n        2070, \n        2070, \n        2079, \n        2081, \n        2074, \n        2083, \n        2081, \n        2081, \n        2083, \n        2074, \n        2081, \n        2072, \n        2074, \n        2074, \n        2072, \n        2081, \n        2084, \n        2082, \n        2081, \n        2081, \n        2082, \n        2084, \n        2081, \n        2083, \n        2084, \n        2084, \n        2083, \n        2081, \n        2085, \n        2086, \n        2087, \n        2087, \n        2086, \n        2085, \n        2087, \n        2088, \n        2085, \n        2085, \n        2088, \n        2087, \n        2075, \n        2078, \n        2087, \n        2087, \n        2078, \n        2075, \n        2087, \n        2086, \n        2075, \n        2075, \n        2086, \n        2087, \n        2080, \n        2089, \n        2087, \n        2087, \n        2089, \n        2080, \n        2087, \n        2078, \n        2080, \n        2080, \n        2078, \n        2087, \n        2090, \n        2088, \n        2087, \n        2087, \n        2088, \n        2090, \n        2087, \n        2089, \n        2090, \n        2090, \n        2089, \n        2087, \n        2090, \n        2089, \n        2091, \n        2091, \n        2089, \n        2090, \n        2091, \n        2092, \n        2090, \n        2090, \n        2092, \n        2091, \n        2080, \n        2082, \n        2091, \n        2091, \n        2082, \n        2080, \n        2091, \n        2089, \n        2080, \n        2080, \n        2089, \n        2091, \n        2084, \n        2093, \n        2091, \n        2091, \n        2093, \n        2084, \n        2091, \n        2082, \n        2084, \n        2084, \n        2082, \n        2091, \n        2094, \n        2092, \n        2091, \n        2091, \n        2092, \n        2094, \n        2091, \n        2093, \n        2094, \n        2094, \n        2093, \n        2091, \n        2095, \n        2096, \n        2097, \n        2097, \n        2096, \n        2095, \n        2097, \n        2098, \n        2095, \n        2095, \n        2098, \n        2097, \n        2085, \n        2088, \n        2097, \n        2097, \n        2088, \n        2085, \n        2097, \n        2096, \n        2085, \n        2085, \n        2096, \n        2097, \n        2090, \n        2099, \n        2097, \n        2097, \n        2099, \n        2090, \n        2097, \n        2088, \n        2090, \n        2090, \n        2088, \n        2097, \n        2100, \n        2098, \n        2097, \n        2097, \n        2098, \n        2100, \n        2097, \n        2099, \n        2100, \n        2100, \n        2099, \n        2097, \n        2100, \n        2099, \n        2101, \n        2101, \n        2099, \n        2100, \n        2101, \n        2102, \n        2100, \n        2100, \n        2102, \n        2101, \n        2090, \n        2092, \n        2101, \n        2101, \n        2092, \n        2090, \n        2101, \n        2099, \n        2090, \n        2090, \n        2099, \n        2101, \n        2094, \n        2103, \n        2101, \n        2101, \n        2103, \n        2094, \n        2101, \n        2092, \n        2094, \n        2094, \n        2092, \n        2101, \n        2104, \n        2102, \n        2101, \n        2101, \n        2102, \n        2104, \n        2101, \n        2103, \n        2104, \n        2104, \n        2103, \n        2101, \n        2105, \n        2106, \n        2107, \n        2107, \n        2106, \n        2105, \n        2107, \n        2108, \n        2105, \n        2105, \n        2108, \n        2107, \n        2095, \n        2098, \n        2107, \n        2107, \n        2098, \n        2095, \n        2107, \n        2106, \n        2095, \n        2095, \n        2106, \n        2107, \n        2100, \n        2109, \n        2107, \n        2107, \n        2109, \n        2100, \n        2107, \n        2098, \n        2100, \n        2100, \n        2098, \n        2107, \n        2110, \n        2108, \n        2107, \n        2107, \n        2108, \n        2110, \n        2107, \n        2109, \n        2110, \n        2110, \n        2109, \n        2107, \n        2110, \n        2109, \n        2111, \n        2111, \n        2109, \n        2110, \n        2111, \n        2112, \n        2110, \n        2110, \n        2112, \n        2111, \n        2100, \n        2102, \n        2111, \n        2111, \n        2102, \n        2100, \n        2111, \n        2109, \n        2100, \n        2100, \n        2109, \n        2111, \n        2104, \n        2113, \n        2111, \n        2111, \n        2113, \n        2104, \n        2111, \n        2102, \n        2104, \n        2104, \n        2102, \n        2111, \n        2114, \n        2112, \n        2111, \n        2111, \n        2112, \n        2114, \n        2111, \n        2113, \n        2114, \n        2114, \n        2113, \n        2111, \n        2115, \n        2116, \n        2117, \n        2117, \n        2116, \n        2115, \n        2117, \n        2118, \n        2115, \n        2115, \n        2118, \n        2117, \n        2105, \n        2108, \n        2117, \n        2117, \n        2108, \n        2105, \n        2117, \n        2116, \n        2105, \n        2105, \n        2116, \n        2117, \n        2110, \n        2119, \n        2117, \n        2117, \n        2119, \n        2110, \n        2117, \n        2108, \n        2110, \n        2110, \n        2108, \n        2117, \n        2120, \n        2118, \n        2117, \n        2117, \n        2118, \n        2120, \n        2117, \n        2119, \n        2120, \n        2120, \n        2119, \n        2117, \n        2120, \n        2119, \n        2121, \n        2121, \n        2119, \n        2120, \n        2121, \n        2122, \n        2120, \n        2120, \n        2122, \n        2121, \n        2110, \n        2112, \n        2121, \n        2121, \n        2112, \n        2110, \n        2121, \n        2119, \n        2110, \n        2110, \n        2119, \n        2121, \n        2114, \n        2123, \n        2121, \n        2121, \n        2123, \n        2114, \n        2121, \n        2112, \n        2114, \n        2114, \n        2112, \n        2121, \n        2124, \n        2122, \n        2121, \n        2121, \n        2122, \n        2124, \n        2121, \n        2123, \n        2124, \n        2124, \n        2123, \n        2121, \n        2125, \n        2126, \n        2127, \n        2127, \n        2126, \n        2125, \n        2127, \n        2128, \n        2125, \n        2125, \n        2128, \n        2127, \n        2129, \n        2130, \n        2127, \n        2127, \n        2130, \n        2129, \n        2127, \n        2126, \n        2129, \n        2129, \n        2126, \n        2127, \n        2131, \n        2132, \n        2127, \n        2127, \n        2132, \n        2131, \n        2127, \n        2130, \n        2131, \n        2131, \n        2130, \n        2127, \n        2133, \n        2128, \n        2127, \n        2127, \n        2128, \n        2133, \n        2127, \n        2132, \n        2133, \n        2133, \n        2132, \n        2127, \n        2133, \n        2132, \n        2134, \n        2134, \n        2132, \n        2133, \n        2134, \n        2135, \n        2133, \n        2133, \n        2135, \n        2134, \n        2131, \n        2136, \n        2134, \n        2134, \n        2136, \n        2131, \n        2134, \n        2132, \n        2131, \n        2131, \n        2132, \n        2134, \n        2137, \n        2138, \n        2134, \n        2134, \n        2138, \n        2137, \n        2134, \n        2136, \n        2137, \n        2137, \n        2136, \n        2134, \n        2139, \n        2135, \n        2134, \n        2134, \n        2135, \n        2139, \n        2134, \n        2138, \n        2139, \n        2139, \n        2138, \n        2134, \n        2140, \n        2141, \n        2142, \n        2142, \n        2141, \n        2140, \n        2142, \n        2143, \n        2140, \n        2140, \n        2143, \n        2142, \n        2125, \n        2128, \n        2142, \n        2142, \n        2128, \n        2125, \n        2142, \n        2141, \n        2125, \n        2125, \n        2141, \n        2142, \n        2133, \n        2144, \n        2142, \n        2142, \n        2144, \n        2133, \n        2142, \n        2128, \n        2133, \n        2133, \n        2128, \n        2142, \n        2145, \n        2143, \n        2142, \n        2142, \n        2143, \n        2145, \n        2142, \n        2144, \n        2145, \n        2145, \n        2144, \n        2142, \n        2145, \n        2144, \n        2146, \n        2146, \n        2144, \n        2145, \n        2146, \n        2147, \n        2145, \n        2145, \n        2147, \n        2146, \n        2133, \n        2135, \n        2146, \n        2146, \n        2135, \n        2133, \n        2146, \n        2144, \n        2133, \n        2133, \n        2144, \n        2146, \n        2139, \n        2148, \n        2146, \n        2146, \n        2148, \n        2139, \n        2146, \n        2135, \n        2139, \n        2139, \n        2135, \n        2146, \n        2149, \n        2147, \n        2146, \n        2146, \n        2147, \n        2149, \n        2146, \n        2148, \n        2149, \n        2149, \n        2148, \n        2146, \n        2150, \n        2151, \n        2152, \n        2152, \n        2151, \n        2150, \n        2152, \n        2153, \n        2150, \n        2150, \n        2153, \n        2152, \n        2140, \n        2143, \n        2152, \n        2152, \n        2143, \n        2140, \n        2152, \n        2151, \n        2140, \n        2140, \n        2151, \n        2152, \n        2145, \n        2154, \n        2152, \n        2152, \n        2154, \n        2145, \n        2152, \n        2143, \n        2145, \n        2145, \n        2143, \n        2152, \n        2155, \n        2153, \n        2152, \n        2152, \n        2153, \n        2155, \n        2152, \n        2154, \n        2155, \n        2155, \n        2154, \n        2152, \n        2155, \n        2154, \n        2156, \n        2156, \n        2154, \n        2155, \n        2156, \n        2157, \n        2155, \n        2155, \n        2157, \n        2156, \n        2145, \n        2147, \n        2156, \n        2156, \n        2147, \n        2145, \n        2156, \n        2154, \n        2145, \n        2145, \n        2154, \n        2156, \n        2149, \n        2158, \n        2156, \n        2156, \n        2158, \n        2149, \n        2156, \n        2147, \n        2149, \n        2149, \n        2147, \n        2156, \n        2159, \n        2157, \n        2156, \n        2156, \n        2157, \n        2159, \n        2156, \n        2158, \n        2159, \n        2159, \n        2158, \n        2156, \n        2160, \n        2161, \n        2162, \n        2162, \n        2161, \n        2160, \n        2162, \n        2163, \n        2160, \n        2160, \n        2163, \n        2162, \n        2150, \n        2153, \n        2162, \n        2162, \n        2153, \n        2150, \n        2162, \n        2161, \n        2150, \n        2150, \n        2161, \n        2162, \n        2155, \n        2164, \n        2162, \n        2162, \n        2164, \n        2155, \n        2162, \n        2153, \n        2155, \n        2155, \n        2153, \n        2162, \n        2165, \n        2163, \n        2162, \n        2162, \n        2163, \n        2165, \n        2162, \n        2164, \n        2165, \n        2165, \n        2164, \n        2162, \n        2165, \n        2164, \n        2166, \n        2166, \n        2164, \n        2165, \n        2166, \n        2167, \n        2165, \n        2165, \n        2167, \n        2166, \n        2155, \n        2157, \n        2166, \n        2166, \n        2157, \n        2155, \n        2166, \n        2164, \n        2155, \n        2155, \n        2164, \n        2166, \n        2159, \n        2168, \n        2166, \n        2166, \n        2168, \n        2159, \n        2166, \n        2157, \n        2159, \n        2159, \n        2157, \n        2166, \n        2169, \n        2167, \n        2166, \n        2166, \n        2167, \n        2169, \n        2166, \n        2168, \n        2169, \n        2169, \n        2168, \n        2166, \n        2170, \n        2171, \n        2172, \n        2172, \n        2171, \n        2170, \n        2172, \n        2173, \n        2170, \n        2170, \n        2173, \n        2172, \n        2160, \n        2163, \n        2172, \n        2172, \n        2163, \n        2160, \n        2172, \n        2171, \n        2160, \n        2160, \n        2171, \n        2172, \n        2165, \n        2174, \n        2172, \n        2172, \n        2174, \n        2165, \n        2172, \n        2163, \n        2165, \n        2165, \n        2163, \n        2172, \n        2175, \n        2173, \n        2172, \n        2172, \n        2173, \n        2175, \n        2172, \n        2174, \n        2175, \n        2175, \n        2174, \n        2172, \n        2175, \n        2174, \n        2176, \n        2176, \n        2174, \n        2175, \n        2176, \n        2177, \n        2175, \n        2175, \n        2177, \n        2176, \n        2165, \n        2167, \n        2176, \n        2176, \n        2167, \n        2165, \n        2176, \n        2174, \n        2165, \n        2165, \n        2174, \n        2176, \n        2169, \n        2178, \n        2176, \n        2176, \n        2178, \n        2169, \n        2176, \n        2167, \n        2169, \n        2169, \n        2167, \n        2176, \n        2179, \n        2177, \n        2176, \n        2176, \n        2177, \n        2179, \n        2176, \n        2178, \n        2179, \n        2179, \n        2178, \n        2176, \n        2180, \n        2181, \n        2182, \n        2182, \n        2181, \n        2180, \n        2182, \n        2183, \n        2180, \n        2180, \n        2183, \n        2182, \n        2170, \n        2173, \n        2182, \n        2182, \n        2173, \n        2170, \n        2182, \n        2181, \n        2170, \n        2170, \n        2181, \n        2182, \n        2175, \n        2184, \n        2182, \n        2182, \n        2184, \n        2175, \n        2182, \n        2173, \n        2175, \n        2175, \n        2173, \n        2182, \n        2185, \n        2183, \n        2182, \n        2182, \n        2183, \n        2185, \n        2182, \n        2184, \n        2185, \n        2185, \n        2184, \n        2182, \n        2185, \n        2184, \n        2186, \n        2186, \n        2184, \n        2185, \n        2186, \n        2187, \n        2185, \n        2185, \n        2187, \n        2186, \n        2175, \n        2177, \n        2186, \n        2186, \n        2177, \n        2175, \n        2186, \n        2184, \n        2175, \n        2175, \n        2184, \n        2186, \n        2179, \n        2188, \n        2186, \n        2186, \n        2188, \n        2179, \n        2186, \n        2177, \n        2179, \n        2179, \n        2177, \n        2186, \n        2189, \n        2187, \n        2186, \n        2186, \n        2187, \n        2189, \n        2186, \n        2188, \n        2189, \n        2189, \n        2188, \n        2186, \n        2190, \n        2191, \n        2192, \n        2192, \n        2191, \n        2190, \n        2192, \n        2193, \n        2190, \n        2190, \n        2193, \n        2192, \n        2180, \n        2183, \n        2192, \n        2192, \n        2183, \n        2180, \n        2192, \n        2191, \n        2180, \n        2180, \n        2191, \n        2192, \n        2185, \n        2194, \n        2192, \n        2192, \n        2194, \n        2185, \n        2192, \n        2183, \n        2185, \n        2185, \n        2183, \n        2192, \n        2195, \n        2193, \n        2192, \n        2192, \n        2193, \n        2195, \n        2192, \n        2194, \n        2195, \n        2195, \n        2194, \n        2192, \n        2195, \n        2194, \n        2196, \n        2196, \n        2194, \n        2195, \n        2196, \n        2197, \n        2195, \n        2195, \n        2197, \n        2196, \n        2185, \n        2187, \n        2196, \n        2196, \n        2187, \n        2185, \n        2196, \n        2194, \n        2185, \n        2185, \n        2194, \n        2196, \n        2189, \n        2198, \n        2196, \n        2196, \n        2198, \n        2189, \n        2196, \n        2187, \n        2189, \n        2189, \n        2187, \n        2196, \n        2199, \n        2197, \n        2196, \n        2196, \n        2197, \n        2199, \n        2196, \n        2198, \n        2199, \n        2199, \n        2198, \n        2196, \n        2200, \n        2201, \n        2202, \n        2202, \n        2201, \n        2200, \n        2202, \n        2203, \n        2200, \n        2200, \n        2203, \n        2202, \n        2190, \n        2193, \n        2202, \n        2202, \n        2193, \n        2190, \n        2202, \n        2201, \n        2190, \n        2190, \n        2201, \n        2202, \n        2195, \n        2204, \n        2202, \n        2202, \n        2204, \n        2195, \n        2202, \n        2193, \n        2195, \n        2195, \n        2193, \n        2202, \n        2205, \n        2203, \n        2202, \n        2202, \n        2203, \n        2205, \n        2202, \n        2204, \n        2205, \n        2205, \n        2204, \n        2202, \n        2205, \n        2204, \n        2206, \n        2206, \n        2204, \n        2205, \n        2206, \n        2207, \n        2205, \n        2205, \n        2207, \n        2206, \n        2195, \n        2197, \n        2206, \n        2206, \n        2197, \n        2195, \n        2206, \n        2204, \n        2195, \n        2195, \n        2204, \n        2206, \n        2199, \n        2208, \n        2206, \n        2206, \n        2208, \n        2199, \n        2206, \n        2197, \n        2199, \n        2199, \n        2197, \n        2206, \n        2209, \n        2207, \n        2206, \n        2206, \n        2207, \n        2209, \n        2206, \n        2208, \n        2209, \n        2209, \n        2208, \n        2206, \n        2210, \n        2211, \n        2212, \n        2212, \n        2211, \n        2210, \n        2212, \n        2213, \n        2210, \n        2210, \n        2213, \n        2212, \n        2200, \n        2203, \n        2212, \n        2212, \n        2203, \n        2200, \n        2212, \n        2211, \n        2200, \n        2200, \n        2211, \n        2212, \n        2205, \n        2214, \n        2212, \n        2212, \n        2214, \n        2205, \n        2212, \n        2203, \n        2205, \n        2205, \n        2203, \n        2212, \n        2215, \n        2213, \n        2212, \n        2212, \n        2213, \n        2215, \n        2212, \n        2214, \n        2215, \n        2215, \n        2214, \n        2212, \n        2215, \n        2214, \n        2216, \n        2216, \n        2214, \n        2215, \n        2216, \n        2217, \n        2215, \n        2215, \n        2217, \n        2216, \n        2205, \n        2207, \n        2216, \n        2216, \n        2207, \n        2205, \n        2216, \n        2214, \n        2205, \n        2205, \n        2214, \n        2216, \n        2209, \n        2218, \n        2216, \n        2216, \n        2218, \n        2209, \n        2216, \n        2207, \n        2209, \n        2209, \n        2207, \n        2216, \n        2219, \n        2217, \n        2216, \n        2216, \n        2217, \n        2219, \n        2216, \n        2218, \n        2219, \n        2219, \n        2218, \n        2216, \n        2220, \n        2221, \n        2222, \n        2222, \n        2221, \n        2220, \n        2222, \n        2223, \n        2220, \n        2220, \n        2223, \n        2222, \n        2210, \n        2213, \n        2222, \n        2222, \n        2213, \n        2210, \n        2222, \n        2221, \n        2210, \n        2210, \n        2221, \n        2222, \n        2215, \n        2224, \n        2222, \n        2222, \n        2224, \n        2215, \n        2222, \n        2213, \n        2215, \n        2215, \n        2213, \n        2222, \n        2225, \n        2223, \n        2222, \n        2222, \n        2223, \n        2225, \n        2222, \n        2224, \n        2225, \n        2225, \n        2224, \n        2222, \n        2225, \n        2224, \n        2226, \n        2226, \n        2224, \n        2225, \n        2226, \n        2227, \n        2225, \n        2225, \n        2227, \n        2226, \n        2215, \n        2217, \n        2226, \n        2226, \n        2217, \n        2215, \n        2226, \n        2224, \n        2215, \n        2215, \n        2224, \n        2226, \n        2219, \n        2228, \n        2226, \n        2226, \n        2228, \n        2219, \n        2226, \n        2217, \n        2219, \n        2219, \n        2217, \n        2226, \n        2229, \n        2227, \n        2226, \n        2226, \n        2227, \n        2229, \n        2226, \n        2228, \n        2229, \n        2229, \n        2228, \n        2226, \n        2230, \n        2231, \n        2232, \n        2232, \n        2231, \n        2230, \n        2232, \n        2233, \n        2230, \n        2230, \n        2233, \n        2232, \n        2220, \n        2223, \n        2232, \n        2232, \n        2223, \n        2220, \n        2232, \n        2231, \n        2220, \n        2220, \n        2231, \n        2232, \n        2225, \n        2234, \n        2232, \n        2232, \n        2234, \n        2225, \n        2232, \n        2223, \n        2225, \n        2225, \n        2223, \n        2232, \n        2235, \n        2233, \n        2232, \n        2232, \n        2233, \n        2235, \n        2232, \n        2234, \n        2235, \n        2235, \n        2234, \n        2232, \n        2235, \n        2234, \n        2236, \n        2236, \n        2234, \n        2235, \n        2236, \n        2237, \n        2235, \n        2235, \n        2237, \n        2236, \n        2225, \n        2227, \n        2236, \n        2236, \n        2227, \n        2225, \n        2236, \n        2234, \n        2225, \n        2225, \n        2234, \n        2236, \n        2229, \n        2238, \n        2236, \n        2236, \n        2238, \n        2229, \n        2236, \n        2227, \n        2229, \n        2229, \n        2227, \n        2236, \n        2239, \n        2237, \n        2236, \n        2236, \n        2237, \n        2239, \n        2236, \n        2238, \n        2239, \n        2239, \n        2238, \n        2236, \n        2240, \n        2241, \n        2242, \n        2242, \n        2241, \n        2240, \n        2242, \n        2243, \n        2240, \n        2240, \n        2243, \n        2242, \n        2230, \n        2233, \n        2242, \n        2242, \n        2233, \n        2230, \n        2242, \n        2241, \n        2230, \n        2230, \n        2241, \n        2242, \n        2235, \n        2244, \n        2242, \n        2242, \n        2244, \n        2235, \n        2242, \n        2233, \n        2235, \n        2235, \n        2233, \n        2242, \n        2245, \n        2243, \n        2242, \n        2242, \n        2243, \n        2245, \n        2242, \n        2244, \n        2245, \n        2245, \n        2244, \n        2242, \n        2245, \n        2244, \n        2246, \n        2246, \n        2244, \n        2245, \n        2246, \n        2247, \n        2245, \n        2245, \n        2247, \n        2246, \n        2235, \n        2237, \n        2246, \n        2246, \n        2237, \n        2235, \n        2246, \n        2244, \n        2235, \n        2235, \n        2244, \n        2246, \n        2239, \n        2248, \n        2246, \n        2246, \n        2248, \n        2239, \n        2246, \n        2237, \n        2239, \n        2239, \n        2237, \n        2246, \n        2249, \n        2247, \n        2246, \n        2246, \n        2247, \n        2249, \n        2246, \n        2248, \n        2249, \n        2249, \n        2248, \n        2246, \n        2250, \n        2251, \n        2252, \n        2252, \n        2251, \n        2250, \n        2252, \n        2253, \n        2250, \n        2250, \n        2253, \n        2252, \n        2254, \n        2255, \n        2252, \n        2252, \n        2255, \n        2254, \n        2252, \n        2251, \n        2254, \n        2254, \n        2251, \n        2252, \n        2256, \n        2257, \n        2252, \n        2252, \n        2257, \n        2256, \n        2252, \n        2255, \n        2256, \n        2256, \n        2255, \n        2252, \n        2258, \n        2253, \n        2252, \n        2252, \n        2253, \n        2258, \n        2252, \n        2257, \n        2258, \n        2258, \n        2257, \n        2252, \n        2258, \n        2257, \n        2259, \n        2259, \n        2257, \n        2258, \n        2259, \n        2260, \n        2258, \n        2258, \n        2260, \n        2259, \n        2256, \n        2261, \n        2259, \n        2259, \n        2261, \n        2256, \n        2259, \n        2257, \n        2256, \n        2256, \n        2257, \n        2259, \n        2262, \n        2263, \n        2259, \n        2259, \n        2263, \n        2262, \n        2259, \n        2261, \n        2262, \n        2262, \n        2261, \n        2259, \n        2264, \n        2260, \n        2259, \n        2259, \n        2260, \n        2264, \n        2259, \n        2263, \n        2264, \n        2264, \n        2263, \n        2259, \n        2265, \n        2266, \n        2267, \n        2267, \n        2266, \n        2265, \n        2267, \n        2268, \n        2265, \n        2265, \n        2268, \n        2267, \n        2250, \n        2253, \n        2267, \n        2267, \n        2253, \n        2250, \n        2267, \n        2266, \n        2250, \n        2250, \n        2266, \n        2267, \n        2258, \n        2269, \n        2267, \n        2267, \n        2269, \n        2258, \n        2267, \n        2253, \n        2258, \n        2258, \n        2253, \n        2267, \n        2270, \n        2268, \n        2267, \n        2267, \n        2268, \n        2270, \n        2267, \n        2269, \n        2270, \n        2270, \n        2269, \n        2267, \n        2270, \n        2269, \n        2271, \n        2271, \n        2269, \n        2270, \n        2271, \n        2272, \n        2270, \n        2270, \n        2272, \n        2271, \n        2258, \n        2260, \n        2271, \n        2271, \n        2260, \n        2258, \n        2271, \n        2269, \n        2258, \n        2258, \n        2269, \n        2271, \n        2264, \n        2273, \n        2271, \n        2271, \n        2273, \n        2264, \n        2271, \n        2260, \n        2264, \n        2264, \n        2260, \n        2271, \n        2274, \n        2272, \n        2271, \n        2271, \n        2272, \n        2274, \n        2271, \n        2273, \n        2274, \n        2274, \n        2273, \n        2271, \n        2275, \n        2276, \n        2277, \n        2277, \n        2276, \n        2275, \n        2277, \n        2278, \n        2275, \n        2275, \n        2278, \n        2277, \n        2265, \n        2268, \n        2277, \n        2277, \n        2268, \n        2265, \n        2277, \n        2276, \n        2265, \n        2265, \n        2276, \n        2277, \n        2270, \n        2279, \n        2277, \n        2277, \n        2279, \n        2270, \n        2277, \n        2268, \n        2270, \n        2270, \n        2268, \n        2277, \n        2280, \n        2278, \n        2277, \n        2277, \n        2278, \n        2280, \n        2277, \n        2279, \n        2280, \n        2280, \n        2279, \n        2277, \n        2280, \n        2279, \n        2281, \n        2281, \n        2279, \n        2280, \n        2281, \n        2282, \n        2280, \n        2280, \n        2282, \n        2281, \n        2270, \n        2272, \n        2281, \n        2281, \n        2272, \n        2270, \n        2281, \n        2279, \n        2270, \n        2270, \n        2279, \n        2281, \n        2274, \n        2283, \n        2281, \n        2281, \n        2283, \n        2274, \n        2281, \n        2272, \n        2274, \n        2274, \n        2272, \n        2281, \n        2284, \n        2282, \n        2281, \n        2281, \n        2282, \n        2284, \n        2281, \n        2283, \n        2284, \n        2284, \n        2283, \n        2281, \n        2285, \n        2286, \n        2287, \n        2287, \n        2286, \n        2285, \n        2287, \n        2288, \n        2285, \n        2285, \n        2288, \n        2287, \n        2275, \n        2278, \n        2287, \n        2287, \n        2278, \n        2275, \n        2287, \n        2286, \n        2275, \n        2275, \n        2286, \n        2287, \n        2280, \n        2289, \n        2287, \n        2287, \n        2289, \n        2280, \n        2287, \n        2278, \n        2280, \n        2280, \n        2278, \n        2287, \n        2290, \n        2288, \n        2287, \n        2287, \n        2288, \n        2290, \n        2287, \n        2289, \n        2290, \n        2290, \n        2289, \n        2287, \n        2290, \n        2289, \n        2291, \n        2291, \n        2289, \n        2290, \n        2291, \n        2292, \n        2290, \n        2290, \n        2292, \n        2291, \n        2280, \n        2282, \n        2291, \n        2291, \n        2282, \n        2280, \n        2291, \n        2289, \n        2280, \n        2280, \n        2289, \n        2291, \n        2284, \n        2293, \n        2291, \n        2291, \n        2293, \n        2284, \n        2291, \n        2282, \n        2284, \n        2284, \n        2282, \n        2291, \n        2294, \n        2292, \n        2291, \n        2291, \n        2292, \n        2294, \n        2291, \n        2293, \n        2294, \n        2294, \n        2293, \n        2291, \n        2295, \n        2296, \n        2297, \n        2297, \n        2296, \n        2295, \n        2297, \n        2298, \n        2295, \n        2295, \n        2298, \n        2297, \n        2285, \n        2288, \n        2297, \n        2297, \n        2288, \n        2285, \n        2297, \n        2296, \n        2285, \n        2285, \n        2296, \n        2297, \n        2290, \n        2299, \n        2297, \n        2297, \n        2299, \n        2290, \n        2297, \n        2288, \n        2290, \n        2290, \n        2288, \n        2297, \n        2300, \n        2298, \n        2297, \n        2297, \n        2298, \n        2300, \n        2297, \n        2299, \n        2300, \n        2300, \n        2299, \n        2297, \n        2300, \n        2299, \n        2301, \n        2301, \n        2299, \n        2300, \n        2301, \n        2302, \n        2300, \n        2300, \n        2302, \n        2301, \n        2290, \n        2292, \n        2301, \n        2301, \n        2292, \n        2290, \n        2301, \n        2299, \n        2290, \n        2290, \n        2299, \n        2301, \n        2294, \n        2303, \n        2301, \n        2301, \n        2303, \n        2294, \n        2301, \n        2292, \n        2294, \n        2294, \n        2292, \n        2301, \n        2304, \n        2302, \n        2301, \n        2301, \n        2302, \n        2304, \n        2301, \n        2303, \n        2304, \n        2304, \n        2303, \n        2301, \n        2305, \n        2306, \n        2307, \n        2307, \n        2306, \n        2305, \n        2307, \n        2308, \n        2305, \n        2305, \n        2308, \n        2307, \n        2295, \n        2298, \n        2307, \n        2307, \n        2298, \n        2295, \n        2307, \n        2306, \n        2295, \n        2295, \n        2306, \n        2307, \n        2300, \n        2309, \n        2307, \n        2307, \n        2309, \n        2300, \n        2307, \n        2298, \n        2300, \n        2300, \n        2298, \n        2307, \n        2310, \n        2308, \n        2307, \n        2307, \n        2308, \n        2310, \n        2307, \n        2309, \n        2310, \n        2310, \n        2309, \n        2307, \n        2310, \n        2309, \n        2311, \n        2311, \n        2309, \n        2310, \n        2311, \n        2312, \n        2310, \n        2310, \n        2312, \n        2311, \n        2300, \n        2302, \n        2311, \n        2311, \n        2302, \n        2300, \n        2311, \n        2309, \n        2300, \n        2300, \n        2309, \n        2311, \n        2304, \n        2313, \n        2311, \n        2311, \n        2313, \n        2304, \n        2311, \n        2302, \n        2304, \n        2304, \n        2302, \n        2311, \n        2314, \n        2312, \n        2311, \n        2311, \n        2312, \n        2314, \n        2311, \n        2313, \n        2314, \n        2314, \n        2313, \n        2311, \n        2315, \n        2316, \n        2317, \n        2317, \n        2316, \n        2315, \n        2317, \n        2318, \n        2315, \n        2315, \n        2318, \n        2317, \n        2305, \n        2308, \n        2317, \n        2317, \n        2308, \n        2305, \n        2317, \n        2316, \n        2305, \n        2305, \n        2316, \n        2317, \n        2310, \n        2319, \n        2317, \n        2317, \n        2319, \n        2310, \n        2317, \n        2308, \n        2310, \n        2310, \n        2308, \n        2317, \n        2320, \n        2318, \n        2317, \n        2317, \n        2318, \n        2320, \n        2317, \n        2319, \n        2320, \n        2320, \n        2319, \n        2317, \n        2320, \n        2319, \n        2321, \n        2321, \n        2319, \n        2320, \n        2321, \n        2322, \n        2320, \n        2320, \n        2322, \n        2321, \n        2310, \n        2312, \n        2321, \n        2321, \n        2312, \n        2310, \n        2321, \n        2319, \n        2310, \n        2310, \n        2319, \n        2321, \n        2314, \n        2323, \n        2321, \n        2321, \n        2323, \n        2314, \n        2321, \n        2312, \n        2314, \n        2314, \n        2312, \n        2321, \n        2324, \n        2322, \n        2321, \n        2321, \n        2322, \n        2324, \n        2321, \n        2323, \n        2324, \n        2324, \n        2323, \n        2321, \n        2325, \n        2326, \n        2327, \n        2327, \n        2326, \n        2325, \n        2327, \n        2328, \n        2325, \n        2325, \n        2328, \n        2327, \n        2315, \n        2318, \n        2327, \n        2327, \n        2318, \n        2315, \n        2327, \n        2326, \n        2315, \n        2315, \n        2326, \n        2327, \n        2320, \n        2329, \n        2327, \n        2327, \n        2329, \n        2320, \n        2327, \n        2318, \n        2320, \n        2320, \n        2318, \n        2327, \n        2330, \n        2328, \n        2327, \n        2327, \n        2328, \n        2330, \n        2327, \n        2329, \n        2330, \n        2330, \n        2329, \n        2327, \n        2330, \n        2329, \n        2331, \n        2331, \n        2329, \n        2330, \n        2331, \n        2332, \n        2330, \n        2330, \n        2332, \n        2331, \n        2320, \n        2322, \n        2331, \n        2331, \n        2322, \n        2320, \n        2331, \n        2329, \n        2320, \n        2320, \n        2329, \n        2331, \n        2324, \n        2333, \n        2331, \n        2331, \n        2333, \n        2324, \n        2331, \n        2322, \n        2324, \n        2324, \n        2322, \n        2331, \n        2334, \n        2332, \n        2331, \n        2331, \n        2332, \n        2334, \n        2331, \n        2333, \n        2334, \n        2334, \n        2333, \n        2331, \n        2335, \n        2336, \n        2337, \n        2337, \n        2336, \n        2335, \n        2337, \n        2338, \n        2335, \n        2335, \n        2338, \n        2337, \n        2325, \n        2328, \n        2337, \n        2337, \n        2328, \n        2325, \n        2337, \n        2336, \n        2325, \n        2325, \n        2336, \n        2337, \n        2330, \n        2339, \n        2337, \n        2337, \n        2339, \n        2330, \n        2337, \n        2328, \n        2330, \n        2330, \n        2328, \n        2337, \n        2340, \n        2338, \n        2337, \n        2337, \n        2338, \n        2340, \n        2337, \n        2339, \n        2340, \n        2340, \n        2339, \n        2337, \n        2340, \n        2339, \n        2341, \n        2341, \n        2339, \n        2340, \n        2341, \n        2342, \n        2340, \n        2340, \n        2342, \n        2341, \n        2330, \n        2332, \n        2341, \n        2341, \n        2332, \n        2330, \n        2341, \n        2339, \n        2330, \n        2330, \n        2339, \n        2341, \n        2334, \n        2343, \n        2341, \n        2341, \n        2343, \n        2334, \n        2341, \n        2332, \n        2334, \n        2334, \n        2332, \n        2341, \n        2344, \n        2342, \n        2341, \n        2341, \n        2342, \n        2344, \n        2341, \n        2343, \n        2344, \n        2344, \n        2343, \n        2341, \n        2345, \n        2346, \n        2347, \n        2347, \n        2346, \n        2345, \n        2347, \n        2348, \n        2345, \n        2345, \n        2348, \n        2347, \n        2335, \n        2338, \n        2347, \n        2347, \n        2338, \n        2335, \n        2347, \n        2346, \n        2335, \n        2335, \n        2346, \n        2347, \n        2340, \n        2349, \n        2347, \n        2347, \n        2349, \n        2340, \n        2347, \n        2338, \n        2340, \n        2340, \n        2338, \n        2347, \n        2350, \n        2348, \n        2347, \n        2347, \n        2348, \n        2350, \n        2347, \n        2349, \n        2350, \n        2350, \n        2349, \n        2347, \n        2350, \n        2349, \n        2351, \n        2351, \n        2349, \n        2350, \n        2351, \n        2352, \n        2350, \n        2350, \n        2352, \n        2351, \n        2340, \n        2342, \n        2351, \n        2351, \n        2342, \n        2340, \n        2351, \n        2349, \n        2340, \n        2340, \n        2349, \n        2351, \n        2344, \n        2353, \n        2351, \n        2351, \n        2353, \n        2344, \n        2351, \n        2342, \n        2344, \n        2344, \n        2342, \n        2351, \n        2354, \n        2352, \n        2351, \n        2351, \n        2352, \n        2354, \n        2351, \n        2353, \n        2354, \n        2354, \n        2353, \n        2351, \n        2355, \n        2356, \n        2357, \n        2357, \n        2356, \n        2355, \n        2357, \n        2358, \n        2355, \n        2355, \n        2358, \n        2357, \n        2345, \n        2348, \n        2357, \n        2357, \n        2348, \n        2345, \n        2357, \n        2356, \n        2345, \n        2345, \n        2356, \n        2357, \n        2350, \n        2359, \n        2357, \n        2357, \n        2359, \n        2350, \n        2357, \n        2348, \n        2350, \n        2350, \n        2348, \n        2357, \n        2360, \n        2358, \n        2357, \n        2357, \n        2358, \n        2360, \n        2357, \n        2359, \n        2360, \n        2360, \n        2359, \n        2357, \n        2360, \n        2359, \n        2361, \n        2361, \n        2359, \n        2360, \n        2361, \n        2362, \n        2360, \n        2360, \n        2362, \n        2361, \n        2350, \n        2352, \n        2361, \n        2361, \n        2352, \n        2350, \n        2361, \n        2359, \n        2350, \n        2350, \n        2359, \n        2361, \n        2354, \n        2363, \n        2361, \n        2361, \n        2363, \n        2354, \n        2361, \n        2352, \n        2354, \n        2354, \n        2352, \n        2361, \n        2364, \n        2362, \n        2361, \n        2361, \n        2362, \n        2364, \n        2361, \n        2363, \n        2364, \n        2364, \n        2363, \n        2361, \n        2365, \n        2366, \n        2367, \n        2367, \n        2366, \n        2365, \n        2367, \n        2368, \n        2365, \n        2365, \n        2368, \n        2367, \n        2355, \n        2358, \n        2367, \n        2367, \n        2358, \n        2355, \n        2367, \n        2366, \n        2355, \n        2355, \n        2366, \n        2367, \n        2360, \n        2369, \n        2367, \n        2367, \n        2369, \n        2360, \n        2367, \n        2358, \n        2360, \n        2360, \n        2358, \n        2367, \n        2370, \n        2368, \n        2367, \n        2367, \n        2368, \n        2370, \n        2367, \n        2369, \n        2370, \n        2370, \n        2369, \n        2367, \n        2370, \n        2369, \n        2371, \n        2371, \n        2369, \n        2370, \n        2371, \n        2372, \n        2370, \n        2370, \n        2372, \n        2371, \n        2360, \n        2362, \n        2371, \n        2371, \n        2362, \n        2360, \n        2371, \n        2369, \n        2360, \n        2360, \n        2369, \n        2371, \n        2364, \n        2373, \n        2371, \n        2371, \n        2373, \n        2364, \n        2371, \n        2362, \n        2364, \n        2364, \n        2362, \n        2371, \n        2374, \n        2372, \n        2371, \n        2371, \n        2372, \n        2374, \n        2371, \n        2373, \n        2374, \n        2374, \n        2373, \n        2371, \n        2375, \n        2376, \n        2377, \n        2377, \n        2376, \n        2375, \n        2377, \n        2378, \n        2375, \n        2375, \n        2378, \n        2377, \n        2379, \n        2380, \n        2377, \n        2377, \n        2380, \n        2379, \n        2377, \n        2376, \n        2379, \n        2379, \n        2376, \n        2377, \n        2381, \n        2382, \n        2377, \n        2377, \n        2382, \n        2381, \n        2377, \n        2380, \n        2381, \n        2381, \n        2380, \n        2377, \n        2383, \n        2378, \n        2377, \n        2377, \n        2378, \n        2383, \n        2377, \n        2382, \n        2383, \n        2383, \n        2382, \n        2377, \n        2383, \n        2382, \n        2384, \n        2384, \n        2382, \n        2383, \n        2384, \n        2385, \n        2383, \n        2383, \n        2385, \n        2384, \n        2381, \n        2386, \n        2384, \n        2384, \n        2386, \n        2381, \n        2384, \n        2382, \n        2381, \n        2381, \n        2382, \n        2384, \n        2387, \n        2388, \n        2384, \n        2384, \n        2388, \n        2387, \n        2384, \n        2386, \n        2387, \n        2387, \n        2386, \n        2384, \n        2389, \n        2385, \n        2384, \n        2384, \n        2385, \n        2389, \n        2384, \n        2388, \n        2389, \n        2389, \n        2388, \n        2384, \n        2390, \n        2391, \n        2392, \n        2392, \n        2391, \n        2390, \n        2392, \n        2393, \n        2390, \n        2390, \n        2393, \n        2392, \n        2375, \n        2378, \n        2392, \n        2392, \n        2378, \n        2375, \n        2392, \n        2391, \n        2375, \n        2375, \n        2391, \n        2392, \n        2383, \n        2394, \n        2392, \n        2392, \n        2394, \n        2383, \n        2392, \n        2378, \n        2383, \n        2383, \n        2378, \n        2392, \n        2395, \n        2393, \n        2392, \n        2392, \n        2393, \n        2395, \n        2392, \n        2394, \n        2395, \n        2395, \n        2394, \n        2392, \n        2395, \n        2394, \n        2396, \n        2396, \n        2394, \n        2395, \n        2396, \n        2397, \n        2395, \n        2395, \n        2397, \n        2396, \n        2383, \n        2385, \n        2396, \n        2396, \n        2385, \n        2383, \n        2396, \n        2394, \n        2383, \n        2383, \n        2394, \n        2396, \n        2389, \n        2398, \n        2396, \n        2396, \n        2398, \n        2389, \n        2396, \n        2385, \n        2389, \n        2389, \n        2385, \n        2396, \n        2399, \n        2397, \n        2396, \n        2396, \n        2397, \n        2399, \n        2396, \n        2398, \n        2399, \n        2399, \n        2398, \n        2396, \n        2400, \n        2401, \n        2402, \n        2402, \n        2401, \n        2400, \n        2402, \n        2403, \n        2400, \n        2400, \n        2403, \n        2402, \n        2390, \n        2393, \n        2402, \n        2402, \n        2393, \n        2390, \n        2402, \n        2401, \n        2390, \n        2390, \n        2401, \n        2402, \n        2395, \n        2404, \n        2402, \n        2402, \n        2404, \n        2395, \n        2402, \n        2393, \n        2395, \n        2395, \n        2393, \n        2402, \n        2405, \n        2403, \n        2402, \n        2402, \n        2403, \n        2405, \n        2402, \n        2404, \n        2405, \n        2405, \n        2404, \n        2402, \n        2405, \n        2404, \n        2406, \n        2406, \n        2404, \n        2405, \n        2406, \n        2407, \n        2405, \n        2405, \n        2407, \n        2406, \n        2395, \n        2397, \n        2406, \n        2406, \n        2397, \n        2395, \n        2406, \n        2404, \n        2395, \n        2395, \n        2404, \n        2406, \n        2399, \n        2408, \n        2406, \n        2406, \n        2408, \n        2399, \n        2406, \n        2397, \n        2399, \n        2399, \n        2397, \n        2406, \n        2409, \n        2407, \n        2406, \n        2406, \n        2407, \n        2409, \n        2406, \n        2408, \n        2409, \n        2409, \n        2408, \n        2406, \n        2410, \n        2411, \n        2412, \n        2412, \n        2411, \n        2410, \n        2412, \n        2413, \n        2410, \n        2410, \n        2413, \n        2412, \n        2400, \n        2403, \n        2412, \n        2412, \n        2403, \n        2400, \n        2412, \n        2411, \n        2400, \n        2400, \n        2411, \n        2412, \n        2405, \n        2414, \n        2412, \n        2412, \n        2414, \n        2405, \n        2412, \n        2403, \n        2405, \n        2405, \n        2403, \n        2412, \n        2415, \n        2413, \n        2412, \n        2412, \n        2413, \n        2415, \n        2412, \n        2414, \n        2415, \n        2415, \n        2414, \n        2412, \n        2415, \n        2414, \n        2416, \n        2416, \n        2414, \n        2415, \n        2416, \n        2417, \n        2415, \n        2415, \n        2417, \n        2416, \n        2405, \n        2407, \n        2416, \n        2416, \n        2407, \n        2405, \n        2416, \n        2414, \n        2405, \n        2405, \n        2414, \n        2416, \n        2409, \n        2418, \n        2416, \n        2416, \n        2418, \n        2409, \n        2416, \n        2407, \n        2409, \n        2409, \n        2407, \n        2416, \n        2419, \n        2417, \n        2416, \n        2416, \n        2417, \n        2419, \n        2416, \n        2418, \n        2419, \n        2419, \n        2418, \n        2416, \n        2420, \n        2421, \n        2422, \n        2422, \n        2421, \n        2420, \n        2422, \n        2423, \n        2420, \n        2420, \n        2423, \n        2422, \n        2410, \n        2413, \n        2422, \n        2422, \n        2413, \n        2410, \n        2422, \n        2421, \n        2410, \n        2410, \n        2421, \n        2422, \n        2415, \n        2424, \n        2422, \n        2422, \n        2424, \n        2415, \n        2422, \n        2413, \n        2415, \n        2415, \n        2413, \n        2422, \n        2425, \n        2423, \n        2422, \n        2422, \n        2423, \n        2425, \n        2422, \n        2424, \n        2425, \n        2425, \n        2424, \n        2422, \n        2425, \n        2424, \n        2426, \n        2426, \n        2424, \n        2425, \n        2426, \n        2427, \n        2425, \n        2425, \n        2427, \n        2426, \n        2415, \n        2417, \n        2426, \n        2426, \n        2417, \n        2415, \n        2426, \n        2424, \n        2415, \n        2415, \n        2424, \n        2426, \n        2419, \n        2428, \n        2426, \n        2426, \n        2428, \n        2419, \n        2426, \n        2417, \n        2419, \n        2419, \n        2417, \n        2426, \n        2429, \n        2427, \n        2426, \n        2426, \n        2427, \n        2429, \n        2426, \n        2428, \n        2429, \n        2429, \n        2428, \n        2426, \n        2430, \n        2431, \n        2432, \n        2432, \n        2431, \n        2430, \n        2432, \n        2433, \n        2430, \n        2430, \n        2433, \n        2432, \n        2420, \n        2423, \n        2432, \n        2432, \n        2423, \n        2420, \n        2432, \n        2431, \n        2420, \n        2420, \n        2431, \n        2432, \n        2425, \n        2434, \n        2432, \n        2432, \n        2434, \n        2425, \n        2432, \n        2423, \n        2425, \n        2425, \n        2423, \n        2432, \n        2435, \n        2433, \n        2432, \n        2432, \n        2433, \n        2435, \n        2432, \n        2434, \n        2435, \n        2435, \n        2434, \n        2432, \n        2435, \n        2434, \n        2436, \n        2436, \n        2434, \n        2435, \n        2436, \n        2437, \n        2435, \n        2435, \n        2437, \n        2436, \n        2425, \n        2427, \n        2436, \n        2436, \n        2427, \n        2425, \n        2436, \n        2434, \n        2425, \n        2425, \n        2434, \n        2436, \n        2429, \n        2438, \n        2436, \n        2436, \n        2438, \n        2429, \n        2436, \n        2427, \n        2429, \n        2429, \n        2427, \n        2436, \n        2439, \n        2437, \n        2436, \n        2436, \n        2437, \n        2439, \n        2436, \n        2438, \n        2439, \n        2439, \n        2438, \n        2436, \n        2440, \n        2441, \n        2442, \n        2442, \n        2441, \n        2440, \n        2442, \n        2443, \n        2440, \n        2440, \n        2443, \n        2442, \n        2430, \n        2433, \n        2442, \n        2442, \n        2433, \n        2430, \n        2442, \n        2441, \n        2430, \n        2430, \n        2441, \n        2442, \n        2435, \n        2444, \n        2442, \n        2442, \n        2444, \n        2435, \n        2442, \n        2433, \n        2435, \n        2435, \n        2433, \n        2442, \n        2445, \n        2443, \n        2442, \n        2442, \n        2443, \n        2445, \n        2442, \n        2444, \n        2445, \n        2445, \n        2444, \n        2442, \n        2445, \n        2444, \n        2446, \n        2446, \n        2444, \n        2445, \n        2446, \n        2447, \n        2445, \n        2445, \n        2447, \n        2446, \n        2435, \n        2437, \n        2446, \n        2446, \n        2437, \n        2435, \n        2446, \n        2444, \n        2435, \n        2435, \n        2444, \n        2446, \n        2439, \n        2448, \n        2446, \n        2446, \n        2448, \n        2439, \n        2446, \n        2437, \n        2439, \n        2439, \n        2437, \n        2446, \n        2449, \n        2447, \n        2446, \n        2446, \n        2447, \n        2449, \n        2446, \n        2448, \n        2449, \n        2449, \n        2448, \n        2446, \n        2450, \n        2451, \n        2452, \n        2452, \n        2451, \n        2450, \n        2452, \n        2453, \n        2450, \n        2450, \n        2453, \n        2452, \n        2440, \n        2443, \n        2452, \n        2452, \n        2443, \n        2440, \n        2452, \n        2451, \n        2440, \n        2440, \n        2451, \n        2452, \n        2445, \n        2454, \n        2452, \n        2452, \n        2454, \n        2445, \n        2452, \n        2443, \n        2445, \n        2445, \n        2443, \n        2452, \n        2455, \n        2453, \n        2452, \n        2452, \n        2453, \n        2455, \n        2452, \n        2454, \n        2455, \n        2455, \n        2454, \n        2452, \n        2455, \n        2454, \n        2456, \n        2456, \n        2454, \n        2455, \n        2456, \n        2457, \n        2455, \n        2455, \n        2457, \n        2456, \n        2445, \n        2447, \n        2456, \n        2456, \n        2447, \n        2445, \n        2456, \n        2454, \n        2445, \n        2445, \n        2454, \n        2456, \n        2449, \n        2458, \n        2456, \n        2456, \n        2458, \n        2449, \n        2456, \n        2447, \n        2449, \n        2449, \n        2447, \n        2456, \n        2459, \n        2457, \n        2456, \n        2456, \n        2457, \n        2459, \n        2456, \n        2458, \n        2459, \n        2459, \n        2458, \n        2456, \n        2460, \n        2461, \n        2462, \n        2462, \n        2461, \n        2460, \n        2462, \n        2463, \n        2460, \n        2460, \n        2463, \n        2462, \n        2450, \n        2453, \n        2462, \n        2462, \n        2453, \n        2450, \n        2462, \n        2461, \n        2450, \n        2450, \n        2461, \n        2462, \n        2455, \n        2464, \n        2462, \n        2462, \n        2464, \n        2455, \n        2462, \n        2453, \n        2455, \n        2455, \n        2453, \n        2462, \n        2465, \n        2463, \n        2462, \n        2462, \n        2463, \n        2465, \n        2462, \n        2464, \n        2465, \n        2465, \n        2464, \n        2462, \n        2465, \n        2464, \n        2466, \n        2466, \n        2464, \n        2465, \n        2466, \n        2467, \n        2465, \n        2465, \n        2467, \n        2466, \n        2455, \n        2457, \n        2466, \n        2466, \n        2457, \n        2455, \n        2466, \n        2464, \n        2455, \n        2455, \n        2464, \n        2466, \n        2459, \n        2468, \n        2466, \n        2466, \n        2468, \n        2459, \n        2466, \n        2457, \n        2459, \n        2459, \n        2457, \n        2466, \n        2469, \n        2467, \n        2466, \n        2466, \n        2467, \n        2469, \n        2466, \n        2468, \n        2469, \n        2469, \n        2468, \n        2466, \n        2470, \n        2471, \n        2472, \n        2472, \n        2471, \n        2470, \n        2472, \n        2473, \n        2470, \n        2470, \n        2473, \n        2472, \n        2460, \n        2463, \n        2472, \n        2472, \n        2463, \n        2460, \n        2472, \n        2471, \n        2460, \n        2460, \n        2471, \n        2472, \n        2465, \n        2474, \n        2472, \n        2472, \n        2474, \n        2465, \n        2472, \n        2463, \n        2465, \n        2465, \n        2463, \n        2472, \n        2475, \n        2473, \n        2472, \n        2472, \n        2473, \n        2475, \n        2472, \n        2474, \n        2475, \n        2475, \n        2474, \n        2472, \n        2475, \n        2474, \n        2476, \n        2476, \n        2474, \n        2475, \n        2476, \n        2477, \n        2475, \n        2475, \n        2477, \n        2476, \n        2465, \n        2467, \n        2476, \n        2476, \n        2467, \n        2465, \n        2476, \n        2474, \n        2465, \n        2465, \n        2474, \n        2476, \n        2469, \n        2478, \n        2476, \n        2476, \n        2478, \n        2469, \n        2476, \n        2467, \n        2469, \n        2469, \n        2467, \n        2476, \n        2479, \n        2477, \n        2476, \n        2476, \n        2477, \n        2479, \n        2476, \n        2478, \n        2479, \n        2479, \n        2478, \n        2476, \n        2480, \n        2481, \n        2482, \n        2482, \n        2481, \n        2480, \n        2482, \n        2483, \n        2480, \n        2480, \n        2483, \n        2482, \n        2470, \n        2473, \n        2482, \n        2482, \n        2473, \n        2470, \n        2482, \n        2481, \n        2470, \n        2470, \n        2481, \n        2482, \n        2475, \n        2484, \n        2482, \n        2482, \n        2484, \n        2475, \n        2482, \n        2473, \n        2475, \n        2475, \n        2473, \n        2482, \n        2485, \n        2483, \n        2482, \n        2482, \n        2483, \n        2485, \n        2482, \n        2484, \n        2485, \n        2485, \n        2484, \n        2482, \n        2485, \n        2484, \n        2486, \n        2486, \n        2484, \n        2485, \n        2486, \n        2487, \n        2485, \n        2485, \n        2487, \n        2486, \n        2475, \n        2477, \n        2486, \n        2486, \n        2477, \n        2475, \n        2486, \n        2484, \n        2475, \n        2475, \n        2484, \n        2486, \n        2479, \n        2488, \n        2486, \n        2486, \n        2488, \n        2479, \n        2486, \n        2477, \n        2479, \n        2479, \n        2477, \n        2486, \n        2489, \n        2487, \n        2486, \n        2486, \n        2487, \n        2489, \n        2486, \n        2488, \n        2489, \n        2489, \n        2488, \n        2486, \n        2490, \n        2491, \n        2492, \n        2492, \n        2491, \n        2490, \n        2492, \n        2493, \n        2490, \n        2490, \n        2493, \n        2492, \n        2480, \n        2483, \n        2492, \n        2492, \n        2483, \n        2480, \n        2492, \n        2491, \n        2480, \n        2480, \n        2491, \n        2492, \n        2485, \n        2494, \n        2492, \n        2492, \n        2494, \n        2485, \n        2492, \n        2483, \n        2485, \n        2485, \n        2483, \n        2492, \n        2495, \n        2493, \n        2492, \n        2492, \n        2493, \n        2495, \n        2492, \n        2494, \n        2495, \n        2495, \n        2494, \n        2492, \n        2495, \n        2494, \n        2496, \n        2496, \n        2494, \n        2495, \n        2496, \n        2497, \n        2495, \n        2495, \n        2497, \n        2496, \n        2485, \n        2487, \n        2496, \n        2496, \n        2487, \n        2485, \n        2496, \n        2494, \n        2485, \n        2485, \n        2494, \n        2496, \n        2489, \n        2498, \n        2496, \n        2496, \n        2498, \n        2489, \n        2496, \n        2487, \n        2489, \n        2489, \n        2487, \n        2496, \n        2499, \n        2497, \n        2496, \n        2496, \n        2497, \n        2499, \n        2496, \n        2498, \n        2499, \n        2499, \n        2498, \n        2496, \n        2500, \n        2501, \n        2502, \n        2502, \n        2501, \n        2500, \n        2502, \n        2503, \n        2500, \n        2500, \n        2503, \n        2502, \n        2504, \n        2505, \n        2502, \n        2502, \n        2505, \n        2504, \n        2502, \n        2501, \n        2504, \n        2504, \n        2501, \n        2502, \n        2506, \n        2507, \n        2502, \n        2502, \n        2507, \n        2506, \n        2502, \n        2505, \n        2506, \n        2506, \n        2505, \n        2502, \n        2508, \n        2503, \n        2502, \n        2502, \n        2503, \n        2508, \n        2502, \n        2507, \n        2508, \n        2508, \n        2507, \n        2502, \n        2508, \n        2507, \n        2509, \n        2509, \n        2507, \n        2508, \n        2509, \n        2510, \n        2508, \n        2508, \n        2510, \n        2509, \n        2506, \n        2511, \n        2509, \n        2509, \n        2511, \n        2506, \n        2509, \n        2507, \n        2506, \n        2506, \n        2507, \n        2509, \n        2512, \n        2513, \n        2509, \n        2509, \n        2513, \n        2512, \n        2509, \n        2511, \n        2512, \n        2512, \n        2511, \n        2509, \n        2514, \n        2510, \n        2509, \n        2509, \n        2510, \n        2514, \n        2509, \n        2513, \n        2514, \n        2514, \n        2513, \n        2509, \n        2515, \n        2516, \n        2517, \n        2517, \n        2516, \n        2515, \n        2517, \n        2518, \n        2515, \n        2515, \n        2518, \n        2517, \n        2500, \n        2503, \n        2517, \n        2517, \n        2503, \n        2500, \n        2517, \n        2516, \n        2500, \n        2500, \n        2516, \n        2517, \n        2508, \n        2519, \n        2517, \n        2517, \n        2519, \n        2508, \n        2517, \n        2503, \n        2508, \n        2508, \n        2503, \n        2517, \n        2520, \n        2518, \n        2517, \n        2517, \n        2518, \n        2520, \n        2517, \n        2519, \n        2520, \n        2520, \n        2519, \n        2517, \n        2520, \n        2519, \n        2521, \n        2521, \n        2519, \n        2520, \n        2521, \n        2522, \n        2520, \n        2520, \n        2522, \n        2521, \n        2508, \n        2510, \n        2521, \n        2521, \n        2510, \n        2508, \n        2521, \n        2519, \n        2508, \n        2508, \n        2519, \n        2521, \n        2514, \n        2523, \n        2521, \n        2521, \n        2523, \n        2514, \n        2521, \n        2510, \n        2514, \n        2514, \n        2510, \n        2521, \n        2524, \n        2522, \n        2521, \n        2521, \n        2522, \n        2524, \n        2521, \n        2523, \n        2524, \n        2524, \n        2523, \n        2521, \n        2525, \n        2526, \n        2527, \n        2527, \n        2526, \n        2525, \n        2527, \n        2528, \n        2525, \n        2525, \n        2528, \n        2527, \n        2515, \n        2518, \n        2527, \n        2527, \n        2518, \n        2515, \n        2527, \n        2526, \n        2515, \n        2515, \n        2526, \n        2527, \n        2520, \n        2529, \n        2527, \n        2527, \n        2529, \n        2520, \n        2527, \n        2518, \n        2520, \n        2520, \n        2518, \n        2527, \n        2530, \n        2528, \n        2527, \n        2527, \n        2528, \n        2530, \n        2527, \n        2529, \n        2530, \n        2530, \n        2529, \n        2527, \n        2530, \n        2529, \n        2531, \n        2531, \n        2529, \n        2530, \n        2531, \n        2532, \n        2530, \n        2530, \n        2532, \n        2531, \n        2520, \n        2522, \n        2531, \n        2531, \n        2522, \n        2520, \n        2531, \n        2529, \n        2520, \n        2520, \n        2529, \n        2531, \n        2524, \n        2533, \n        2531, \n        2531, \n        2533, \n        2524, \n        2531, \n        2522, \n        2524, \n        2524, \n        2522, \n        2531, \n        2534, \n        2532, \n        2531, \n        2531, \n        2532, \n        2534, \n        2531, \n        2533, \n        2534, \n        2534, \n        2533, \n        2531, \n        2535, \n        2536, \n        2537, \n        2537, \n        2536, \n        2535, \n        2537, \n        2538, \n        2535, \n        2535, \n        2538, \n        2537, \n        2525, \n        2528, \n        2537, \n        2537, \n        2528, \n        2525, \n        2537, \n        2536, \n        2525, \n        2525, \n        2536, \n        2537, \n        2530, \n        2539, \n        2537, \n        2537, \n        2539, \n        2530, \n        2537, \n        2528, \n        2530, \n        2530, \n        2528, \n        2537, \n        2540, \n        2538, \n        2537, \n        2537, \n        2538, \n        2540, \n        2537, \n        2539, \n        2540, \n        2540, \n        2539, \n        2537, \n        2540, \n        2539, \n        2541, \n        2541, \n        2539, \n        2540, \n        2541, \n        2542, \n        2540, \n        2540, \n        2542, \n        2541, \n        2530, \n        2532, \n        2541, \n        2541, \n        2532, \n        2530, \n        2541, \n        2539, \n        2530, \n        2530, \n        2539, \n        2541, \n        2534, \n        2543, \n        2541, \n        2541, \n        2543, \n        2534, \n        2541, \n        2532, \n        2534, \n        2534, \n        2532, \n        2541, \n        2544, \n        2542, \n        2541, \n        2541, \n        2542, \n        2544, \n        2541, \n        2543, \n        2544, \n        2544, \n        2543, \n        2541, \n        2545, \n        2546, \n        2547, \n        2547, \n        2546, \n        2545, \n        2547, \n        2548, \n        2545, \n        2545, \n        2548, \n        2547, \n        2535, \n        2538, \n        2547, \n        2547, \n        2538, \n        2535, \n        2547, \n        2546, \n        2535, \n        2535, \n        2546, \n        2547, \n        2540, \n        2549, \n        2547, \n        2547, \n        2549, \n        2540, \n        2547, \n        2538, \n        2540, \n        2540, \n        2538, \n        2547, \n        2550, \n        2548, \n        2547, \n        2547, \n        2548, \n        2550, \n        2547, \n        2549, \n        2550, \n        2550, \n        2549, \n        2547, \n        2550, \n        2549, \n        2551, \n        2551, \n        2549, \n        2550, \n        2551, \n        2552, \n        2550, \n        2550, \n        2552, \n        2551, \n        2540, \n        2542, \n        2551, \n        2551, \n        2542, \n        2540, \n        2551, \n        2549, \n        2540, \n        2540, \n        2549, \n        2551, \n        2544, \n        2553, \n        2551, \n        2551, \n        2553, \n        2544, \n        2551, \n        2542, \n        2544, \n        2544, \n        2542, \n        2551, \n        2554, \n        2552, \n        2551, \n        2551, \n        2552, \n        2554, \n        2551, \n        2553, \n        2554, \n        2554, \n        2553, \n        2551, \n        2555, \n        2556, \n        2557, \n        2557, \n        2556, \n        2555, \n        2557, \n        2558, \n        2555, \n        2555, \n        2558, \n        2557, \n        2545, \n        2548, \n        2557, \n        2557, \n        2548, \n        2545, \n        2557, \n        2556, \n        2545, \n        2545, \n        2556, \n        2557, \n        2550, \n        2559, \n        2557, \n        2557, \n        2559, \n        2550, \n        2557, \n        2548, \n        2550, \n        2550, \n        2548, \n        2557, \n        2560, \n        2558, \n        2557, \n        2557, \n        2558, \n        2560, \n        2557, \n        2559, \n        2560, \n        2560, \n        2559, \n        2557, \n        2560, \n        2559, \n        2561, \n        2561, \n        2559, \n        2560, \n        2561, \n        2562, \n        2560, \n        2560, \n        2562, \n        2561, \n        2550, \n        2552, \n        2561, \n        2561, \n        2552, \n        2550, \n        2561, \n        2559, \n        2550, \n        2550, \n        2559, \n        2561, \n        2554, \n        2563, \n        2561, \n        2561, \n        2563, \n        2554, \n        2561, \n        2552, \n        2554, \n        2554, \n        2552, \n        2561, \n        2564, \n        2562, \n        2561, \n        2561, \n        2562, \n        2564, \n        2561, \n        2563, \n        2564, \n        2564, \n        2563, \n        2561, \n        2565, \n        2566, \n        2567, \n        2567, \n        2566, \n        2565, \n        2567, \n        2568, \n        2565, \n        2565, \n        2568, \n        2567, \n        2555, \n        2558, \n        2567, \n        2567, \n        2558, \n        2555, \n        2567, \n        2566, \n        2555, \n        2555, \n        2566, \n        2567, \n        2560, \n        2569, \n        2567, \n        2567, \n        2569, \n        2560, \n        2567, \n        2558, \n        2560, \n        2560, \n        2558, \n        2567, \n        2570, \n        2568, \n        2567, \n        2567, \n        2568, \n        2570, \n        2567, \n        2569, \n        2570, \n        2570, \n        2569, \n        2567, \n        2570, \n        2569, \n        2571, \n        2571, \n        2569, \n        2570, \n        2571, \n        2572, \n        2570, \n        2570, \n        2572, \n        2571, \n        2560, \n        2562, \n        2571, \n        2571, \n        2562, \n        2560, \n        2571, \n        2569, \n        2560, \n        2560, \n        2569, \n        2571, \n        2564, \n        2573, \n        2571, \n        2571, \n        2573, \n        2564, \n        2571, \n        2562, \n        2564, \n        2564, \n        2562, \n        2571, \n        2574, \n        2572, \n        2571, \n        2571, \n        2572, \n        2574, \n        2571, \n        2573, \n        2574, \n        2574, \n        2573, \n        2571, \n        2575, \n        2576, \n        2577, \n        2577, \n        2576, \n        2575, \n        2577, \n        2578, \n        2575, \n        2575, \n        2578, \n        2577, \n        2565, \n        2568, \n        2577, \n        2577, \n        2568, \n        2565, \n        2577, \n        2576, \n        2565, \n        2565, \n        2576, \n        2577, \n        2570, \n        2579, \n        2577, \n        2577, \n        2579, \n        2570, \n        2577, \n        2568, \n        2570, \n        2570, \n        2568, \n        2577, \n        2580, \n        2578, \n        2577, \n        2577, \n        2578, \n        2580, \n        2577, \n        2579, \n        2580, \n        2580, \n        2579, \n        2577, \n        2580, \n        2579, \n        2581, \n        2581, \n        2579, \n        2580, \n        2581, \n        2582, \n        2580, \n        2580, \n        2582, \n        2581, \n        2570, \n        2572, \n        2581, \n        2581, \n        2572, \n        2570, \n        2581, \n        2579, \n        2570, \n        2570, \n        2579, \n        2581, \n        2574, \n        2583, \n        2581, \n        2581, \n        2583, \n        2574, \n        2581, \n        2572, \n        2574, \n        2574, \n        2572, \n        2581, \n        2584, \n        2582, \n        2581, \n        2581, \n        2582, \n        2584, \n        2581, \n        2583, \n        2584, \n        2584, \n        2583, \n        2581, \n        2585, \n        2586, \n        2587, \n        2587, \n        2586, \n        2585, \n        2587, \n        2588, \n        2585, \n        2585, \n        2588, \n        2587, \n        2575, \n        2578, \n        2587, \n        2587, \n        2578, \n        2575, \n        2587, \n        2586, \n        2575, \n        2575, \n        2586, \n        2587, \n        2580, \n        2589, \n        2587, \n        2587, \n        2589, \n        2580, \n        2587, \n        2578, \n        2580, \n        2580, \n        2578, \n        2587, \n        2590, \n        2588, \n        2587, \n        2587, \n        2588, \n        2590, \n        2587, \n        2589, \n        2590, \n        2590, \n        2589, \n        2587, \n        2590, \n        2589, \n        2591, \n        2591, \n        2589, \n        2590, \n        2591, \n        2592, \n        2590, \n        2590, \n        2592, \n        2591, \n        2580, \n        2582, \n        2591, \n        2591, \n        2582, \n        2580, \n        2591, \n        2589, \n        2580, \n        2580, \n        2589, \n        2591, \n        2584, \n        2593, \n        2591, \n        2591, \n        2593, \n        2584, \n        2591, \n        2582, \n        2584, \n        2584, \n        2582, \n        2591, \n        2594, \n        2592, \n        2591, \n        2591, \n        2592, \n        2594, \n        2591, \n        2593, \n        2594, \n        2594, \n        2593, \n        2591, \n        2595, \n        2596, \n        2597, \n        2597, \n        2596, \n        2595, \n        2597, \n        2598, \n        2595, \n        2595, \n        2598, \n        2597, \n        2585, \n        2588, \n        2597, \n        2597, \n        2588, \n        2585, \n        2597, \n        2596, \n        2585, \n        2585, \n        2596, \n        2597, \n        2590, \n        2599, \n        2597, \n        2597, \n        2599, \n        2590, \n        2597, \n        2588, \n        2590, \n        2590, \n        2588, \n        2597, \n        2600, \n        2598, \n        2597, \n        2597, \n        2598, \n        2600, \n        2597, \n        2599, \n        2600, \n        2600, \n        2599, \n        2597, \n        2600, \n        2599, \n        2601, \n        2601, \n        2599, \n        2600, \n        2601, \n        2602, \n        2600, \n        2600, \n        2602, \n        2601, \n        2590, \n        2592, \n        2601, \n        2601, \n        2592, \n        2590, \n        2601, \n        2599, \n        2590, \n        2590, \n        2599, \n        2601, \n        2594, \n        2603, \n        2601, \n        2601, \n        2603, \n        2594, \n        2601, \n        2592, \n        2594, \n        2594, \n        2592, \n        2601, \n        2604, \n        2602, \n        2601, \n        2601, \n        2602, \n        2604, \n        2601, \n        2603, \n        2604, \n        2604, \n        2603, \n        2601, \n        2605, \n        2606, \n        2607, \n        2607, \n        2606, \n        2605, \n        2607, \n        2608, \n        2605, \n        2605, \n        2608, \n        2607, \n        2595, \n        2598, \n        2607, \n        2607, \n        2598, \n        2595, \n        2607, \n        2606, \n        2595, \n        2595, \n        2606, \n        2607, \n        2600, \n        2609, \n        2607, \n        2607, \n        2609, \n        2600, \n        2607, \n        2598, \n        2600, \n        2600, \n        2598, \n        2607, \n        2610, \n        2608, \n        2607, \n        2607, \n        2608, \n        2610, \n        2607, \n        2609, \n        2610, \n        2610, \n        2609, \n        2607, \n        2610, \n        2609, \n        2611, \n        2611, \n        2609, \n        2610, \n        2611, \n        2612, \n        2610, \n        2610, \n        2612, \n        2611, \n        2600, \n        2602, \n        2611, \n        2611, \n        2602, \n        2600, \n        2611, \n        2609, \n        2600, \n        2600, \n        2609, \n        2611, \n        2604, \n        2613, \n        2611, \n        2611, \n        2613, \n        2604, \n        2611, \n        2602, \n        2604, \n        2604, \n        2602, \n        2611, \n        2614, \n        2612, \n        2611, \n        2611, \n        2612, \n        2614, \n        2611, \n        2613, \n        2614, \n        2614, \n        2613, \n        2611, \n        2615, \n        2616, \n        2617, \n        2617, \n        2616, \n        2615, \n        2617, \n        2618, \n        2615, \n        2615, \n        2618, \n        2617, \n        2605, \n        2608, \n        2617, \n        2617, \n        2608, \n        2605, \n        2617, \n        2616, \n        2605, \n        2605, \n        2616, \n        2617, \n        2610, \n        2619, \n        2617, \n        2617, \n        2619, \n        2610, \n        2617, \n        2608, \n        2610, \n        2610, \n        2608, \n        2617, \n        2620, \n        2618, \n        2617, \n        2617, \n        2618, \n        2620, \n        2617, \n        2619, \n        2620, \n        2620, \n        2619, \n        2617, \n        2620, \n        2619, \n        2621, \n        2621, \n        2619, \n        2620, \n        2621, \n        2622, \n        2620, \n        2620, \n        2622, \n        2621, \n        2610, \n        2612, \n        2621, \n        2621, \n        2612, \n        2610, \n        2621, \n        2619, \n        2610, \n        2610, \n        2619, \n        2621, \n        2614, \n        2623, \n        2621, \n        2621, \n        2623, \n        2614, \n        2621, \n        2612, \n        2614, \n        2614, \n        2612, \n        2621, \n        2624, \n        2622, \n        2621, \n        2621, \n        2622, \n        2624, \n        2621, \n        2623, \n        2624, \n        2624, \n        2623, \n        2621, \n        2625, \n        2626, \n        2627, \n        2627, \n        2626, \n        2625, \n        2627, \n        2628, \n        2625, \n        2625, \n        2628, \n        2627, \n        2629, \n        2630, \n        2627, \n        2627, \n        2630, \n        2629, \n        2627, \n        2626, \n        2629, \n        2629, \n        2626, \n        2627, \n        2631, \n        2632, \n        2627, \n        2627, \n        2632, \n        2631, \n        2627, \n        2630, \n        2631, \n        2631, \n        2630, \n        2627, \n        2633, \n        2628, \n        2627, \n        2627, \n        2628, \n        2633, \n        2627, \n        2632, \n        2633, \n        2633, \n        2632, \n        2627, \n        2633, \n        2632, \n        2634, \n        2634, \n        2632, \n        2633, \n        2634, \n        2635, \n        2633, \n        2633, \n        2635, \n        2634, \n        2631, \n        2636, \n        2634, \n        2634, \n        2636, \n        2631, \n        2634, \n        2632, \n        2631, \n        2631, \n        2632, \n        2634, \n        2637, \n        2638, \n        2634, \n        2634, \n        2638, \n        2637, \n        2634, \n        2636, \n        2637, \n        2637, \n        2636, \n        2634, \n        2639, \n        2635, \n        2634, \n        2634, \n        2635, \n        2639, \n        2634, \n        2638, \n        2639, \n        2639, \n        2638, \n        2634, \n        2640, \n        2641, \n        2642, \n        2642, \n        2641, \n        2640, \n        2642, \n        2643, \n        2640, \n        2640, \n        2643, \n        2642, \n        2625, \n        2628, \n        2642, \n        2642, \n        2628, \n        2625, \n        2642, \n        2641, \n        2625, \n        2625, \n        2641, \n        2642, \n        2633, \n        2644, \n        2642, \n        2642, \n        2644, \n        2633, \n        2642, \n        2628, \n        2633, \n        2633, \n        2628, \n        2642, \n        2645, \n        2643, \n        2642, \n        2642, \n        2643, \n        2645, \n        2642, \n        2644, \n        2645, \n        2645, \n        2644, \n        2642, \n        2645, \n        2644, \n        2646, \n        2646, \n        2644, \n        2645, \n        2646, \n        2647, \n        2645, \n        2645, \n        2647, \n        2646, \n        2633, \n        2635, \n        2646, \n        2646, \n        2635, \n        2633, \n        2646, \n        2644, \n        2633, \n        2633, \n        2644, \n        2646, \n        2639, \n        2648, \n        2646, \n        2646, \n        2648, \n        2639, \n        2646, \n        2635, \n        2639, \n        2639, \n        2635, \n        2646, \n        2649, \n        2647, \n        2646, \n        2646, \n        2647, \n        2649, \n        2646, \n        2648, \n        2649, \n        2649, \n        2648, \n        2646, \n        2650, \n        2651, \n        2652, \n        2652, \n        2651, \n        2650, \n        2652, \n        2653, \n        2650, \n        2650, \n        2653, \n        2652, \n        2640, \n        2643, \n        2652, \n        2652, \n        2643, \n        2640, \n        2652, \n        2651, \n        2640, \n        2640, \n        2651, \n        2652, \n        2645, \n        2654, \n        2652, \n        2652, \n        2654, \n        2645, \n        2652, \n        2643, \n        2645, \n        2645, \n        2643, \n        2652, \n        2655, \n        2653, \n        2652, \n        2652, \n        2653, \n        2655, \n        2652, \n        2654, \n        2655, \n        2655, \n        2654, \n        2652, \n        2655, \n        2654, \n        2656, \n        2656, \n        2654, \n        2655, \n        2656, \n        2657, \n        2655, \n        2655, \n        2657, \n        2656, \n        2645, \n        2647, \n        2656, \n        2656, \n        2647, \n        2645, \n        2656, \n        2654, \n        2645, \n        2645, \n        2654, \n        2656, \n        2649, \n        2658, \n        2656, \n        2656, \n        2658, \n        2649, \n        2656, \n        2647, \n        2649, \n        2649, \n        2647, \n        2656, \n        2659, \n        2657, \n        2656, \n        2656, \n        2657, \n        2659, \n        2656, \n        2658, \n        2659, \n        2659, \n        2658, \n        2656, \n        2660, \n        2661, \n        2662, \n        2662, \n        2661, \n        2660, \n        2662, \n        2663, \n        2660, \n        2660, \n        2663, \n        2662, \n        2650, \n        2653, \n        2662, \n        2662, \n        2653, \n        2650, \n        2662, \n        2661, \n        2650, \n        2650, \n        2661, \n        2662, \n        2655, \n        2664, \n        2662, \n        2662, \n        2664, \n        2655, \n        2662, \n        2653, \n        2655, \n        2655, \n        2653, \n        2662, \n        2665, \n        2663, \n        2662, \n        2662, \n        2663, \n        2665, \n        2662, \n        2664, \n        2665, \n        2665, \n        2664, \n        2662, \n        2665, \n        2664, \n        2666, \n        2666, \n        2664, \n        2665, \n        2666, \n        2667, \n        2665, \n        2665, \n        2667, \n        2666, \n        2655, \n        2657, \n        2666, \n        2666, \n        2657, \n        2655, \n        2666, \n        2664, \n        2655, \n        2655, \n        2664, \n        2666, \n        2659, \n        2668, \n        2666, \n        2666, \n        2668, \n        2659, \n        2666, \n        2657, \n        2659, \n        2659, \n        2657, \n        2666, \n        2669, \n        2667, \n        2666, \n        2666, \n        2667, \n        2669, \n        2666, \n        2668, \n        2669, \n        2669, \n        2668, \n        2666, \n        2670, \n        2671, \n        2672, \n        2672, \n        2671, \n        2670, \n        2672, \n        2673, \n        2670, \n        2670, \n        2673, \n        2672, \n        2660, \n        2663, \n        2672, \n        2672, \n        2663, \n        2660, \n        2672, \n        2671, \n        2660, \n        2660, \n        2671, \n        2672, \n        2665, \n        2674, \n        2672, \n        2672, \n        2674, \n        2665, \n        2672, \n        2663, \n        2665, \n        2665, \n        2663, \n        2672, \n        2675, \n        2673, \n        2672, \n        2672, \n        2673, \n        2675, \n        2672, \n        2674, \n        2675, \n        2675, \n        2674, \n        2672, \n        2675, \n        2674, \n        2676, \n        2676, \n        2674, \n        2675, \n        2676, \n        2677, \n        2675, \n        2675, \n        2677, \n        2676, \n        2665, \n        2667, \n        2676, \n        2676, \n        2667, \n        2665, \n        2676, \n        2674, \n        2665, \n        2665, \n        2674, \n        2676, \n        2669, \n        2678, \n        2676, \n        2676, \n        2678, \n        2669, \n        2676, \n        2667, \n        2669, \n        2669, \n        2667, \n        2676, \n        2679, \n        2677, \n        2676, \n        2676, \n        2677, \n        2679, \n        2676, \n        2678, \n        2679, \n        2679, \n        2678, \n        2676, \n        2680, \n        2681, \n        2682, \n        2682, \n        2681, \n        2680, \n        2682, \n        2683, \n        2680, \n        2680, \n        2683, \n        2682, \n        2670, \n        2673, \n        2682, \n        2682, \n        2673, \n        2670, \n        2682, \n        2681, \n        2670, \n        2670, \n        2681, \n        2682, \n        2675, \n        2684, \n        2682, \n        2682, \n        2684, \n        2675, \n        2682, \n        2673, \n        2675, \n        2675, \n        2673, \n        2682, \n        2685, \n        2683, \n        2682, \n        2682, \n        2683, \n        2685, \n        2682, \n        2684, \n        2685, \n        2685, \n        2684, \n        2682, \n        2685, \n        2684, \n        2686, \n        2686, \n        2684, \n        2685, \n        2686, \n        2687, \n        2685, \n        2685, \n        2687, \n        2686, \n        2675, \n        2677, \n        2686, \n        2686, \n        2677, \n        2675, \n        2686, \n        2684, \n        2675, \n        2675, \n        2684, \n        2686, \n        2679, \n        2688, \n        2686, \n        2686, \n        2688, \n        2679, \n        2686, \n        2677, \n        2679, \n        2679, \n        2677, \n        2686, \n        2689, \n        2687, \n        2686, \n        2686, \n        2687, \n        2689, \n        2686, \n        2688, \n        2689, \n        2689, \n        2688, \n        2686, \n        2690, \n        2691, \n        2692, \n        2692, \n        2691, \n        2690, \n        2692, \n        2693, \n        2690, \n        2690, \n        2693, \n        2692, \n        2680, \n        2683, \n        2692, \n        2692, \n        2683, \n        2680, \n        2692, \n        2691, \n        2680, \n        2680, \n        2691, \n        2692, \n        2685, \n        2694, \n        2692, \n        2692, \n        2694, \n        2685, \n        2692, \n        2683, \n        2685, \n        2685, \n        2683, \n        2692, \n        2695, \n        2693, \n        2692, \n        2692, \n        2693, \n        2695, \n        2692, \n        2694, \n        2695, \n        2695, \n        2694, \n        2692, \n        2695, \n        2694, \n        2696, \n        2696, \n        2694, \n        2695, \n        2696, \n        2697, \n        2695, \n        2695, \n        2697, \n        2696, \n        2685, \n        2687, \n        2696, \n        2696, \n        2687, \n        2685, \n        2696, \n        2694, \n        2685, \n        2685, \n        2694, \n        2696, \n        2689, \n        2698, \n        2696, \n        2696, \n        2698, \n        2689, \n        2696, \n        2687, \n        2689, \n        2689, \n        2687, \n        2696, \n        2699, \n        2697, \n        2696, \n        2696, \n        2697, \n        2699, \n        2696, \n        2698, \n        2699, \n        2699, \n        2698, \n        2696, \n        2700, \n        2701, \n        2702, \n        2702, \n        2701, \n        2700, \n        2702, \n        2703, \n        2700, \n        2700, \n        2703, \n        2702, \n        2690, \n        2693, \n        2702, \n        2702, \n        2693, \n        2690, \n        2702, \n        2701, \n        2690, \n        2690, \n        2701, \n        2702, \n        2695, \n        2704, \n        2702, \n        2702, \n        2704, \n        2695, \n        2702, \n        2693, \n        2695, \n        2695, \n        2693, \n        2702, \n        2705, \n        2703, \n        2702, \n        2702, \n        2703, \n        2705, \n        2702, \n        2704, \n        2705, \n        2705, \n        2704, \n        2702, \n        2705, \n        2704, \n        2706, \n        2706, \n        2704, \n        2705, \n        2706, \n        2707, \n        2705, \n        2705, \n        2707, \n        2706, \n        2695, \n        2697, \n        2706, \n        2706, \n        2697, \n        2695, \n        2706, \n        2704, \n        2695, \n        2695, \n        2704, \n        2706, \n        2699, \n        2708, \n        2706, \n        2706, \n        2708, \n        2699, \n        2706, \n        2697, \n        2699, \n        2699, \n        2697, \n        2706, \n        2709, \n        2707, \n        2706, \n        2706, \n        2707, \n        2709, \n        2706, \n        2708, \n        2709, \n        2709, \n        2708, \n        2706, \n        2710, \n        2711, \n        2712, \n        2712, \n        2711, \n        2710, \n        2712, \n        2713, \n        2710, \n        2710, \n        2713, \n        2712, \n        2700, \n        2703, \n        2712, \n        2712, \n        2703, \n        2700, \n        2712, \n        2711, \n        2700, \n        2700, \n        2711, \n        2712, \n        2705, \n        2714, \n        2712, \n        2712, \n        2714, \n        2705, \n        2712, \n        2703, \n        2705, \n        2705, \n        2703, \n        2712, \n        2715, \n        2713, \n        2712, \n        2712, \n        2713, \n        2715, \n        2712, \n        2714, \n        2715, \n        2715, \n        2714, \n        2712, \n        2715, \n        2714, \n        2716, \n        2716, \n        2714, \n        2715, \n        2716, \n        2717, \n        2715, \n        2715, \n        2717, \n        2716, \n        2705, \n        2707, \n        2716, \n        2716, \n        2707, \n        2705, \n        2716, \n        2714, \n        2705, \n        2705, \n        2714, \n        2716, \n        2709, \n        2718, \n        2716, \n        2716, \n        2718, \n        2709, \n        2716, \n        2707, \n        2709, \n        2709, \n        2707, \n        2716, \n        2719, \n        2717, \n        2716, \n        2716, \n        2717, \n        2719, \n        2716, \n        2718, \n        2719, \n        2719, \n        2718, \n        2716, \n        2720, \n        2721, \n        2722, \n        2722, \n        2721, \n        2720, \n        2722, \n        2723, \n        2720, \n        2720, \n        2723, \n        2722, \n        2710, \n        2713, \n        2722, \n        2722, \n        2713, \n        2710, \n        2722, \n        2721, \n        2710, \n        2710, \n        2721, \n        2722, \n        2715, \n        2724, \n        2722, \n        2722, \n        2724, \n        2715, \n        2722, \n        2713, \n        2715, \n        2715, \n        2713, \n        2722, \n        2725, \n        2723, \n        2722, \n        2722, \n        2723, \n        2725, \n        2722, \n        2724, \n        2725, \n        2725, \n        2724, \n        2722, \n        2725, \n        2724, \n        2726, \n        2726, \n        2724, \n        2725, \n        2726, \n        2727, \n        2725, \n        2725, \n        2727, \n        2726, \n        2715, \n        2717, \n        2726, \n        2726, \n        2717, \n        2715, \n        2726, \n        2724, \n        2715, \n        2715, \n        2724, \n        2726, \n        2719, \n        2728, \n        2726, \n        2726, \n        2728, \n        2719, \n        2726, \n        2717, \n        2719, \n        2719, \n        2717, \n        2726, \n        2729, \n        2727, \n        2726, \n        2726, \n        2727, \n        2729, \n        2726, \n        2728, \n        2729, \n        2729, \n        2728, \n        2726, \n        2730, \n        2731, \n        2732, \n        2732, \n        2731, \n        2730, \n        2732, \n        2733, \n        2730, \n        2730, \n        2733, \n        2732, \n        2720, \n        2723, \n        2732, \n        2732, \n        2723, \n        2720, \n        2732, \n        2731, \n        2720, \n        2720, \n        2731, \n        2732, \n        2725, \n        2734, \n        2732, \n        2732, \n        2734, \n        2725, \n        2732, \n        2723, \n        2725, \n        2725, \n        2723, \n        2732, \n        2735, \n        2733, \n        2732, \n        2732, \n        2733, \n        2735, \n        2732, \n        2734, \n        2735, \n        2735, \n        2734, \n        2732, \n        2735, \n        2734, \n        2736, \n        2736, \n        2734, \n        2735, \n        2736, \n        2737, \n        2735, \n        2735, \n        2737, \n        2736, \n        2725, \n        2727, \n        2736, \n        2736, \n        2727, \n        2725, \n        2736, \n        2734, \n        2725, \n        2725, \n        2734, \n        2736, \n        2729, \n        2738, \n        2736, \n        2736, \n        2738, \n        2729, \n        2736, \n        2727, \n        2729, \n        2729, \n        2727, \n        2736, \n        2739, \n        2737, \n        2736, \n        2736, \n        2737, \n        2739, \n        2736, \n        2738, \n        2739, \n        2739, \n        2738, \n        2736, \n        2740, \n        2741, \n        2742, \n        2742, \n        2741, \n        2740, \n        2742, \n        2743, \n        2740, \n        2740, \n        2743, \n        2742, \n        2730, \n        2733, \n        2742, \n        2742, \n        2733, \n        2730, \n        2742, \n        2741, \n        2730, \n        2730, \n        2741, \n        2742, \n        2735, \n        2744, \n        2742, \n        2742, \n        2744, \n        2735, \n        2742, \n        2733, \n        2735, \n        2735, \n        2733, \n        2742, \n        2745, \n        2743, \n        2742, \n        2742, \n        2743, \n        2745, \n        2742, \n        2744, \n        2745, \n        2745, \n        2744, \n        2742, \n        2745, \n        2744, \n        2746, \n        2746, \n        2744, \n        2745, \n        2746, \n        2747, \n        2745, \n        2745, \n        2747, \n        2746, \n        2735, \n        2737, \n        2746, \n        2746, \n        2737, \n        2735, \n        2746, \n        2744, \n        2735, \n        2735, \n        2744, \n        2746, \n        2739, \n        2748, \n        2746, \n        2746, \n        2748, \n        2739, \n        2746, \n        2737, \n        2739, \n        2739, \n        2737, \n        2746, \n        2749, \n        2747, \n        2746, \n        2746, \n        2747, \n        2749, \n        2746, \n        2748, \n        2749, \n        2749, \n        2748, \n        2746, \n        2750, \n        2751, \n        2752, \n        2752, \n        2751, \n        2750, \n        2752, \n        2753, \n        2750, \n        2750, \n        2753, \n        2752, \n        2754, \n        2753, \n        2752, \n        2752, \n        2753, \n        2754, \n        2752, \n        2755, \n        2754, \n        2754, \n        2755, \n        2752, \n        2756, \n        2755, \n        2752, \n        2752, \n        2755, \n        2756, \n        2752, \n        2757, \n        2756, \n        2756, \n        2757, \n        2752, \n        2758, \n        2757, \n        2752, \n        2752, \n        2757, \n        2758, \n        2752, \n        2751, \n        2758, \n        2758, \n        2751, \n        2752, \n        2758, \n        2759, \n        2760, \n        2760, \n        2759, \n        2758, \n        2760, \n        2757, \n        2758, \n        2758, \n        2757, \n        2760, \n        2756, \n        2757, \n        2760, \n        2760, \n        2757, \n        2756, \n        2760, \n        2761, \n        2756, \n        2756, \n        2761, \n        2760, \n        2762, \n        2761, \n        2760, \n        2760, \n        2761, \n        2762, \n        2760, \n        2763, \n        2762, \n        2762, \n        2763, \n        2760, \n        2764, \n        2763, \n        2760, \n        2760, \n        2763, \n        2764, \n        2760, \n        2759, \n        2764, \n        2764, \n        2759, \n        2760, \n        2765, \n        2766, \n        2767, \n        2767, \n        2766, \n        2765, \n        2767, \n        2768, \n        2765, \n        2765, \n        2768, \n        2767, \n        2750, \n        2768, \n        2767, \n        2767, \n        2768, \n        2750, \n        2767, \n        2751, \n        2750, \n        2750, \n        2751, \n        2767, \n        2758, \n        2751, \n        2767, \n        2767, \n        2751, \n        2758, \n        2767, \n        2769, \n        2758, \n        2758, \n        2769, \n        2767, \n        2770, \n        2769, \n        2767, \n        2767, \n        2769, \n        2770, \n        2767, \n        2766, \n        2770, \n        2770, \n        2766, \n        2767, \n        2770, \n        2771, \n        2772, \n        2772, \n        2771, \n        2770, \n        2772, \n        2769, \n        2770, \n        2770, \n        2769, \n        2772, \n        2758, \n        2769, \n        2772, \n        2772, \n        2769, \n        2758, \n        2772, \n        2759, \n        2758, \n        2758, \n        2759, \n        2772, \n        2764, \n        2759, \n        2772, \n        2772, \n        2759, \n        2764, \n        2772, \n        2773, \n        2764, \n        2764, \n        2773, \n        2772, \n        2774, \n        2773, \n        2772, \n        2772, \n        2773, \n        2774, \n        2772, \n        2771, \n        2774, \n        2774, \n        2771, \n        2772, \n        2775, \n        2776, \n        2777, \n        2777, \n        2776, \n        2775, \n        2777, \n        2778, \n        2775, \n        2775, \n        2778, \n        2777, \n        2765, \n        2778, \n        2777, \n        2777, \n        2778, \n        2765, \n        2777, \n        2766, \n        2765, \n        2765, \n        2766, \n        2777, \n        2770, \n        2766, \n        2777, \n        2777, \n        2766, \n        2770, \n        2777, \n        2779, \n        2770, \n        2770, \n        2779, \n        2777, \n        2780, \n        2779, \n        2777, \n        2777, \n        2779, \n        2780, \n        2777, \n        2776, \n        2780, \n        2780, \n        2776, \n        2777, \n        2780, \n        2781, \n        2782, \n        2782, \n        2781, \n        2780, \n        2782, \n        2779, \n        2780, \n        2780, \n        2779, \n        2782, \n        2770, \n        2779, \n        2782, \n        2782, \n        2779, \n        2770, \n        2782, \n        2771, \n        2770, \n        2770, \n        2771, \n        2782, \n        2774, \n        2771, \n        2782, \n        2782, \n        2771, \n        2774, \n        2782, \n        2783, \n        2774, \n        2774, \n        2783, \n        2782, \n        2784, \n        2783, \n        2782, \n        2782, \n        2783, \n        2784, \n        2782, \n        2781, \n        2784, \n        2784, \n        2781, \n        2782, \n        2785, \n        2786, \n        2787, \n        2787, \n        2786, \n        2785, \n        2787, \n        2788, \n        2785, \n        2785, \n        2788, \n        2787, \n        2775, \n        2788, \n        2787, \n        2787, \n        2788, \n        2775, \n        2787, \n        2776, \n        2775, \n        2775, \n        2776, \n        2787, \n        2780, \n        2776, \n        2787, \n        2787, \n        2776, \n        2780, \n        2787, \n        2789, \n        2780, \n        2780, \n        2789, \n        2787, \n        2790, \n        2789, \n        2787, \n        2787, \n        2789, \n        2790, \n        2787, \n        2786, \n        2790, \n        2790, \n        2786, \n        2787, \n        2790, \n        2791, \n        2792, \n        2792, \n        2791, \n        2790, \n        2792, \n        2789, \n        2790, \n        2790, \n        2789, \n        2792, \n        2780, \n        2789, \n        2792, \n        2792, \n        2789, \n        2780, \n        2792, \n        2781, \n        2780, \n        2780, \n        2781, \n        2792, \n        2784, \n        2781, \n        2792, \n        2792, \n        2781, \n        2784, \n        2792, \n        2793, \n        2784, \n        2784, \n        2793, \n        2792, \n        2794, \n        2793, \n        2792, \n        2792, \n        2793, \n        2794, \n        2792, \n        2791, \n        2794, \n        2794, \n        2791, \n        2792, \n        2795, \n        2796, \n        2797, \n        2797, \n        2796, \n        2795, \n        2797, \n        2798, \n        2795, \n        2795, \n        2798, \n        2797, \n        2785, \n        2798, \n        2797, \n        2797, \n        2798, \n        2785, \n        2797, \n        2786, \n        2785, \n        2785, \n        2786, \n        2797, \n        2790, \n        2786, \n        2797, \n        2797, \n        2786, \n        2790, \n        2797, \n        2799, \n        2790, \n        2790, \n        2799, \n        2797, \n        2800, \n        2799, \n        2797, \n        2797, \n        2799, \n        2800, \n        2797, \n        2796, \n        2800, \n        2800, \n        2796, \n        2797, \n        2800, \n        2801, \n        2802, \n        2802, \n        2801, \n        2800, \n        2802, \n        2799, \n        2800, \n        2800, \n        2799, \n        2802, \n        2790, \n        2799, \n        2802, \n        2802, \n        2799, \n        2790, \n        2802, \n        2791, \n        2790, \n        2790, \n        2791, \n        2802, \n        2794, \n        2791, \n        2802, \n        2802, \n        2791, \n        2794, \n        2802, \n        2803, \n        2794, \n        2794, \n        2803, \n        2802, \n        2804, \n        2803, \n        2802, \n        2802, \n        2803, \n        2804, \n        2802, \n        2801, \n        2804, \n        2804, \n        2801, \n        2802, \n        2805, \n        2806, \n        2807, \n        2807, \n        2806, \n        2805, \n        2807, \n        2808, \n        2805, \n        2805, \n        2808, \n        2807, \n        2795, \n        2808, \n        2807, \n        2807, \n        2808, \n        2795, \n        2807, \n        2796, \n        2795, \n        2795, \n        2796, \n        2807, \n        2800, \n        2796, \n        2807, \n        2807, \n        2796, \n        2800, \n        2807, \n        2809, \n        2800, \n        2800, \n        2809, \n        2807, \n        2810, \n        2809, \n        2807, \n        2807, \n        2809, \n        2810, \n        2807, \n        2806, \n        2810, \n        2810, \n        2806, \n        2807, \n        2810, \n        2811, \n        2812, \n        2812, \n        2811, \n        2810, \n        2812, \n        2809, \n        2810, \n        2810, \n        2809, \n        2812, \n        2800, \n        2809, \n        2812, \n        2812, \n        2809, \n        2800, \n        2812, \n        2801, \n        2800, \n        2800, \n        2801, \n        2812, \n        2804, \n        2801, \n        2812, \n        2812, \n        2801, \n        2804, \n        2812, \n        2813, \n        2804, \n        2804, \n        2813, \n        2812, \n        2814, \n        2813, \n        2812, \n        2812, \n        2813, \n        2814, \n        2812, \n        2811, \n        2814, \n        2814, \n        2811, \n        2812, \n        2815, \n        2816, \n        2817, \n        2817, \n        2816, \n        2815, \n        2817, \n        2818, \n        2815, \n        2815, \n        2818, \n        2817, \n        2805, \n        2818, \n        2817, \n        2817, \n        2818, \n        2805, \n        2817, \n        2806, \n        2805, \n        2805, \n        2806, \n        2817, \n        2810, \n        2806, \n        2817, \n        2817, \n        2806, \n        2810, \n        2817, \n        2819, \n        2810, \n        2810, \n        2819, \n        2817, \n        2820, \n        2819, \n        2817, \n        2817, \n        2819, \n        2820, \n        2817, \n        2816, \n        2820, \n        2820, \n        2816, \n        2817, \n        2820, \n        2821, \n        2822, \n        2822, \n        2821, \n        2820, \n        2822, \n        2819, \n        2820, \n        2820, \n        2819, \n        2822, \n        2810, \n        2819, \n        2822, \n        2822, \n        2819, \n        2810, \n        2822, \n        2811, \n        2810, \n        2810, \n        2811, \n        2822, \n        2814, \n        2811, \n        2822, \n        2822, \n        2811, \n        2814, \n        2822, \n        2823, \n        2814, \n        2814, \n        2823, \n        2822, \n        2824, \n        2823, \n        2822, \n        2822, \n        2823, \n        2824, \n        2822, \n        2821, \n        2824, \n        2824, \n        2821, \n        2822, \n        2825, \n        2826, \n        2827, \n        2827, \n        2826, \n        2825, \n        2827, \n        2828, \n        2825, \n        2825, \n        2828, \n        2827, \n        2815, \n        2828, \n        2827, \n        2827, \n        2828, \n        2815, \n        2827, \n        2816, \n        2815, \n        2815, \n        2816, \n        2827, \n        2820, \n        2816, \n        2827, \n        2827, \n        2816, \n        2820, \n        2827, \n        2829, \n        2820, \n        2820, \n        2829, \n        2827, \n        2830, \n        2829, \n        2827, \n        2827, \n        2829, \n        2830, \n        2827, \n        2826, \n        2830, \n        2830, \n        2826, \n        2827, \n        2830, \n        2831, \n        2832, \n        2832, \n        2831, \n        2830, \n        2832, \n        2829, \n        2830, \n        2830, \n        2829, \n        2832, \n        2820, \n        2829, \n        2832, \n        2832, \n        2829, \n        2820, \n        2832, \n        2821, \n        2820, \n        2820, \n        2821, \n        2832, \n        2824, \n        2821, \n        2832, \n        2832, \n        2821, \n        2824, \n        2832, \n        2833, \n        2824, \n        2824, \n        2833, \n        2832, \n        2834, \n        2833, \n        2832, \n        2832, \n        2833, \n        2834, \n        2832, \n        2831, \n        2834, \n        2834, \n        2831, \n        2832, \n        2835, \n        2836, \n        2837, \n        2837, \n        2836, \n        2835, \n        2837, \n        2838, \n        2835, \n        2835, \n        2838, \n        2837, \n        2825, \n        2838, \n        2837, \n        2837, \n        2838, \n        2825, \n        2837, \n        2826, \n        2825, \n        2825, \n        2826, \n        2837, \n        2830, \n        2826, \n        2837, \n        2837, \n        2826, \n        2830, \n        2837, \n        2839, \n        2830, \n        2830, \n        2839, \n        2837, \n        2840, \n        2839, \n        2837, \n        2837, \n        2839, \n        2840, \n        2837, \n        2836, \n        2840, \n        2840, \n        2836, \n        2837, \n        2840, \n        2841, \n        2842, \n        2842, \n        2841, \n        2840, \n        2842, \n        2839, \n        2840, \n        2840, \n        2839, \n        2842, \n        2830, \n        2839, \n        2842, \n        2842, \n        2839, \n        2830, \n        2842, \n        2831, \n        2830, \n        2830, \n        2831, \n        2842, \n        2834, \n        2831, \n        2842, \n        2842, \n        2831, \n        2834, \n        2842, \n        2843, \n        2834, \n        2834, \n        2843, \n        2842, \n        2844, \n        2843, \n        2842, \n        2842, \n        2843, \n        2844, \n        2842, \n        2841, \n        2844, \n        2844, \n        2841, \n        2842, \n        2845, \n        2846, \n        2847, \n        2847, \n        2846, \n        2845, \n        2847, \n        2848, \n        2845, \n        2845, \n        2848, \n        2847, \n        2835, \n        2848, \n        2847, \n        2847, \n        2848, \n        2835, \n        2847, \n        2836, \n        2835, \n        2835, \n        2836, \n        2847, \n        2840, \n        2836, \n        2847, \n        2847, \n        2836, \n        2840, \n        2847, \n        2849, \n        2840, \n        2840, \n        2849, \n        2847, \n        2850, \n        2849, \n        2847, \n        2847, \n        2849, \n        2850, \n        2847, \n        2846, \n        2850, \n        2850, \n        2846, \n        2847, \n        2850, \n        2851, \n        2852, \n        2852, \n        2851, \n        2850, \n        2852, \n        2849, \n        2850, \n        2850, \n        2849, \n        2852, \n        2840, \n        2849, \n        2852, \n        2852, \n        2849, \n        2840, \n        2852, \n        2841, \n        2840, \n        2840, \n        2841, \n        2852, \n        2844, \n        2841, \n        2852, \n        2852, \n        2841, \n        2844, \n        2852, \n        2853, \n        2844, \n        2844, \n        2853, \n        2852, \n        2854, \n        2853, \n        2852, \n        2852, \n        2853, \n        2854, \n        2852, \n        2851, \n        2854, \n        2854, \n        2851, \n        2852, \n        2855, \n        2856, \n        2857, \n        2857, \n        2856, \n        2855, \n        2857, \n        2858, \n        2855, \n        2855, \n        2858, \n        2857, \n        2845, \n        2858, \n        2857, \n        2857, \n        2858, \n        2845, \n        2857, \n        2846, \n        2845, \n        2845, \n        2846, \n        2857, \n        2850, \n        2846, \n        2857, \n        2857, \n        2846, \n        2850, \n        2857, \n        2859, \n        2850, \n        2850, \n        2859, \n        2857, \n        2860, \n        2859, \n        2857, \n        2857, \n        2859, \n        2860, \n        2857, \n        2856, \n        2860, \n        2860, \n        2856, \n        2857, \n        2860, \n        2861, \n        2862, \n        2862, \n        2861, \n        2860, \n        2862, \n        2859, \n        2860, \n        2860, \n        2859, \n        2862, \n        2850, \n        2859, \n        2862, \n        2862, \n        2859, \n        2850, \n        2862, \n        2851, \n        2850, \n        2850, \n        2851, \n        2862, \n        2854, \n        2851, \n        2862, \n        2862, \n        2851, \n        2854, \n        2862, \n        2863, \n        2854, \n        2854, \n        2863, \n        2862, \n        2864, \n        2863, \n        2862, \n        2862, \n        2863, \n        2864, \n        2862, \n        2861, \n        2864, \n        2864, \n        2861, \n        2862, \n        2865, \n        2866, \n        2867, \n        2867, \n        2866, \n        2865, \n        2867, \n        2868, \n        2865, \n        2865, \n        2868, \n        2867, \n        2855, \n        2868, \n        2867, \n        2867, \n        2868, \n        2855, \n        2867, \n        2856, \n        2855, \n        2855, \n        2856, \n        2867, \n        2860, \n        2856, \n        2867, \n        2867, \n        2856, \n        2860, \n        2867, \n        2869, \n        2860, \n        2860, \n        2869, \n        2867, \n        2870, \n        2869, \n        2867, \n        2867, \n        2869, \n        2870, \n        2867, \n        2866, \n        2870, \n        2870, \n        2866, \n        2867, \n        2870, \n        2871, \n        2872, \n        2872, \n        2871, \n        2870, \n        2872, \n        2869, \n        2870, \n        2870, \n        2869, \n        2872, \n        2860, \n        2869, \n        2872, \n        2872, \n        2869, \n        2860, \n        2872, \n        2861, \n        2860, \n        2860, \n        2861, \n        2872, \n        2864, \n        2861, \n        2872, \n        2872, \n        2861, \n        2864, \n        2872, \n        2873, \n        2864, \n        2864, \n        2873, \n        2872, \n        2874, \n        2873, \n        2872, \n        2872, \n        2873, \n        2874, \n        2872, \n        2871, \n        2874, \n        2874, \n        2871, \n        2872, \n        2875, \n        2876, \n        2877, \n        2877, \n        2876, \n        2875, \n        2877, \n        2878, \n        2875, \n        2875, \n        2878, \n        2877, \n        2879, \n        2878, \n        2877, \n        2877, \n        2878, \n        2879, \n        2877, \n        2880, \n        2879, \n        2879, \n        2880, \n        2877, \n        2881, \n        2880, \n        2877, \n        2877, \n        2880, \n        2881, \n        2877, \n        2882, \n        2881, \n        2881, \n        2882, \n        2877, \n        2883, \n        2882, \n        2877, \n        2877, \n        2882, \n        2883, \n        2877, \n        2876, \n        2883, \n        2883, \n        2876, \n        2877, \n        2883, \n        2884, \n        2885, \n        2885, \n        2884, \n        2883, \n        2885, \n        2882, \n        2883, \n        2883, \n        2882, \n        2885, \n        2881, \n        2882, \n        2885, \n        2885, \n        2882, \n        2881, \n        2885, \n        2886, \n        2881, \n        2881, \n        2886, \n        2885, \n        2887, \n        2886, \n        2885, \n        2885, \n        2886, \n        2887, \n        2885, \n        2888, \n        2887, \n        2887, \n        2888, \n        2885, \n        2889, \n        2888, \n        2885, \n        2885, \n        2888, \n        2889, \n        2885, \n        2884, \n        2889, \n        2889, \n        2884, \n        2885, \n        2890, \n        2891, \n        2892, \n        2892, \n        2891, \n        2890, \n        2892, \n        2893, \n        2890, \n        2890, \n        2893, \n        2892, \n        2875, \n        2893, \n        2892, \n        2892, \n        2893, \n        2875, \n        2892, \n        2876, \n        2875, \n        2875, \n        2876, \n        2892, \n        2883, \n        2876, \n        2892, \n        2892, \n        2876, \n        2883, \n        2892, \n        2894, \n        2883, \n        2883, \n        2894, \n        2892, \n        2895, \n        2894, \n        2892, \n        2892, \n        2894, \n        2895, \n        2892, \n        2891, \n        2895, \n        2895, \n        2891, \n        2892, \n        2895, \n        2896, \n        2897, \n        2897, \n        2896, \n        2895, \n        2897, \n        2894, \n        2895, \n        2895, \n        2894, \n        2897, \n        2883, \n        2894, \n        2897, \n        2897, \n        2894, \n        2883, \n        2897, \n        2884, \n        2883, \n        2883, \n        2884, \n        2897, \n        2889, \n        2884, \n        2897, \n        2897, \n        2884, \n        2889, \n        2897, \n        2898, \n        2889, \n        2889, \n        2898, \n        2897, \n        2899, \n        2898, \n        2897, \n        2897, \n        2898, \n        2899, \n        2897, \n        2896, \n        2899, \n        2899, \n        2896, \n        2897, \n        2900, \n        2901, \n        2902, \n        2902, \n        2901, \n        2900, \n        2902, \n        2903, \n        2900, \n        2900, \n        2903, \n        2902, \n        2890, \n        2903, \n        2902, \n        2902, \n        2903, \n        2890, \n        2902, \n        2891, \n        2890, \n        2890, \n        2891, \n        2902, \n        2895, \n        2891, \n        2902, \n        2902, \n        2891, \n        2895, \n        2902, \n        2904, \n        2895, \n        2895, \n        2904, \n        2902, \n        2905, \n        2904, \n        2902, \n        2902, \n        2904, \n        2905, \n        2902, \n        2901, \n        2905, \n        2905, \n        2901, \n        2902, \n        2905, \n        2906, \n        2907, \n        2907, \n        2906, \n        2905, \n        2907, \n        2904, \n        2905, \n        2905, \n        2904, \n        2907, \n        2895, \n        2904, \n        2907, \n        2907, \n        2904, \n        2895, \n        2907, \n        2896, \n        2895, \n        2895, \n        2896, \n        2907, \n        2899, \n        2896, \n        2907, \n        2907, \n        2896, \n        2899, \n        2907, \n        2908, \n        2899, \n        2899, \n        2908, \n        2907, \n        2909, \n        2908, \n        2907, \n        2907, \n        2908, \n        2909, \n        2907, \n        2906, \n        2909, \n        2909, \n        2906, \n        2907, \n        2910, \n        2911, \n        2912, \n        2912, \n        2911, \n        2910, \n        2912, \n        2913, \n        2910, \n        2910, \n        2913, \n        2912, \n        2900, \n        2913, \n        2912, \n        2912, \n        2913, \n        2900, \n        2912, \n        2901, \n        2900, \n        2900, \n        2901, \n        2912, \n        2905, \n        2901, \n        2912, \n        2912, \n        2901, \n        2905, \n        2912, \n        2914, \n        2905, \n        2905, \n        2914, \n        2912, \n        2915, \n        2914, \n        2912, \n        2912, \n        2914, \n        2915, \n        2912, \n        2911, \n        2915, \n        2915, \n        2911, \n        2912, \n        2915, \n        2916, \n        2917, \n        2917, \n        2916, \n        2915, \n        2917, \n        2914, \n        2915, \n        2915, \n        2914, \n        2917, \n        2905, \n        2914, \n        2917, \n        2917, \n        2914, \n        2905, \n        2917, \n        2906, \n        2905, \n        2905, \n        2906, \n        2917, \n        2909, \n        2906, \n        2917, \n        2917, \n        2906, \n        2909, \n        2917, \n        2918, \n        2909, \n        2909, \n        2918, \n        2917, \n        2919, \n        2918, \n        2917, \n        2917, \n        2918, \n        2919, \n        2917, \n        2916, \n        2919, \n        2919, \n        2916, \n        2917, \n        2920, \n        2921, \n        2922, \n        2922, \n        2921, \n        2920, \n        2922, \n        2923, \n        2920, \n        2920, \n        2923, \n        2922, \n        2910, \n        2923, \n        2922, \n        2922, \n        2923, \n        2910, \n        2922, \n        2911, \n        2910, \n        2910, \n        2911, \n        2922, \n        2915, \n        2911, \n        2922, \n        2922, \n        2911, \n        2915, \n        2922, \n        2924, \n        2915, \n        2915, \n        2924, \n        2922, \n        2925, \n        2924, \n        2922, \n        2922, \n        2924, \n        2925, \n        2922, \n        2921, \n        2925, \n        2925, \n        2921, \n        2922, \n        2925, \n        2926, \n        2927, \n        2927, \n        2926, \n        2925, \n        2927, \n        2924, \n        2925, \n        2925, \n        2924, \n        2927, \n        2915, \n        2924, \n        2927, \n        2927, \n        2924, \n        2915, \n        2927, \n        2916, \n        2915, \n        2915, \n        2916, \n        2927, \n        2919, \n        2916, \n        2927, \n        2927, \n        2916, \n        2919, \n        2927, \n        2928, \n        2919, \n        2919, \n        2928, \n        2927, \n        2929, \n        2928, \n        2927, \n        2927, \n        2928, \n        2929, \n        2927, \n        2926, \n        2929, \n        2929, \n        2926, \n        2927, \n        2930, \n        2931, \n        2932, \n        2932, \n        2931, \n        2930, \n        2932, \n        2933, \n        2930, \n        2930, \n        2933, \n        2932, \n        2920, \n        2933, \n        2932, \n        2932, \n        2933, \n        2920, \n        2932, \n        2921, \n        2920, \n        2920, \n        2921, \n        2932, \n        2925, \n        2921, \n        2932, \n        2932, \n        2921, \n        2925, \n        2932, \n        2934, \n        2925, \n        2925, \n        2934, \n        2932, \n        2935, \n        2934, \n        2932, \n        2932, \n        2934, \n        2935, \n        2932, \n        2931, \n        2935, \n        2935, \n        2931, \n        2932, \n        2935, \n        2936, \n        2937, \n        2937, \n        2936, \n        2935, \n        2937, \n        2934, \n        2935, \n        2935, \n        2934, \n        2937, \n        2925, \n        2934, \n        2937, \n        2937, \n        2934, \n        2925, \n        2937, \n        2926, \n        2925, \n        2925, \n        2926, \n        2937, \n        2929, \n        2926, \n        2937, \n        2937, \n        2926, \n        2929, \n        2937, \n        2938, \n        2929, \n        2929, \n        2938, \n        2937, \n        2939, \n        2938, \n        2937, \n        2937, \n        2938, \n        2939, \n        2937, \n        2936, \n        2939, \n        2939, \n        2936, \n        2937, \n        2940, \n        2941, \n        2942, \n        2942, \n        2941, \n        2940, \n        2942, \n        2943, \n        2940, \n        2940, \n        2943, \n        2942, \n        2930, \n        2943, \n        2942, \n        2942, \n        2943, \n        2930, \n        2942, \n        2931, \n        2930, \n        2930, \n        2931, \n        2942, \n        2935, \n        2931, \n        2942, \n        2942, \n        2931, \n        2935, \n        2942, \n        2944, \n        2935, \n        2935, \n        2944, \n        2942, \n        2945, \n        2944, \n        2942, \n        2942, \n        2944, \n        2945, \n        2942, \n        2941, \n        2945, \n        2945, \n        2941, \n        2942, \n        2945, \n        2946, \n        2947, \n        2947, \n        2946, \n        2945, \n        2947, \n        2944, \n        2945, \n        2945, \n        2944, \n        2947, \n        2935, \n        2944, \n        2947, \n        2947, \n        2944, \n        2935, \n        2947, \n        2936, \n        2935, \n        2935, \n        2936, \n        2947, \n        2939, \n        2936, \n        2947, \n        2947, \n        2936, \n        2939, \n        2947, \n        2948, \n        2939, \n        2939, \n        2948, \n        2947, \n        2949, \n        2948, \n        2947, \n        2947, \n        2948, \n        2949, \n        2947, \n        2946, \n        2949, \n        2949, \n        2946, \n        2947, \n        2950, \n        2951, \n        2952, \n        2952, \n        2951, \n        2950, \n        2952, \n        2953, \n        2950, \n        2950, \n        2953, \n        2952, \n        2940, \n        2953, \n        2952, \n        2952, \n        2953, \n        2940, \n        2952, \n        2941, \n        2940, \n        2940, \n        2941, \n        2952, \n        2945, \n        2941, \n        2952, \n        2952, \n        2941, \n        2945, \n        2952, \n        2954, \n        2945, \n        2945, \n        2954, \n        2952, \n        2955, \n        2954, \n        2952, \n        2952, \n        2954, \n        2955, \n        2952, \n        2951, \n        2955, \n        2955, \n        2951, \n        2952, \n        2955, \n        2956, \n        2957, \n        2957, \n        2956, \n        2955, \n        2957, \n        2954, \n        2955, \n        2955, \n        2954, \n        2957, \n        2945, \n        2954, \n        2957, \n        2957, \n        2954, \n        2945, \n        2957, \n        2946, \n        2945, \n        2945, \n        2946, \n        2957, \n        2949, \n        2946, \n        2957, \n        2957, \n        2946, \n        2949, \n        2957, \n        2958, \n        2949, \n        2949, \n        2958, \n        2957, \n        2959, \n        2958, \n        2957, \n        2957, \n        2958, \n        2959, \n        2957, \n        2956, \n        2959, \n        2959, \n        2956, \n        2957, \n        2960, \n        2961, \n        2962, \n        2962, \n        2961, \n        2960, \n        2962, \n        2963, \n        2960, \n        2960, \n        2963, \n        2962, \n        2950, \n        2963, \n        2962, \n        2962, \n        2963, \n        2950, \n        2962, \n        2951, \n        2950, \n        2950, \n        2951, \n        2962, \n        2955, \n        2951, \n        2962, \n        2962, \n        2951, \n        2955, \n        2962, \n        2964, \n        2955, \n        2955, \n        2964, \n        2962, \n        2965, \n        2964, \n        2962, \n        2962, \n        2964, \n        2965, \n        2962, \n        2961, \n        2965, \n        2965, \n        2961, \n        2962, \n        2965, \n        2966, \n        2967, \n        2967, \n        2966, \n        2965, \n        2967, \n        2964, \n        2965, \n        2965, \n        2964, \n        2967, \n        2955, \n        2964, \n        2967, \n        2967, \n        2964, \n        2955, \n        2967, \n        2956, \n        2955, \n        2955, \n        2956, \n        2967, \n        2959, \n        2956, \n        2967, \n        2967, \n        2956, \n        2959, \n        2967, \n        2968, \n        2959, \n        2959, \n        2968, \n        2967, \n        2969, \n        2968, \n        2967, \n        2967, \n        2968, \n        2969, \n        2967, \n        2966, \n        2969, \n        2969, \n        2966, \n        2967, \n        2970, \n        2971, \n        2972, \n        2972, \n        2971, \n        2970, \n        2972, \n        2973, \n        2970, \n        2970, \n        2973, \n        2972, \n        2960, \n        2973, \n        2972, \n        2972, \n        2973, \n        2960, \n        2972, \n        2961, \n        2960, \n        2960, \n        2961, \n        2972, \n        2965, \n        2961, \n        2972, \n        2972, \n        2961, \n        2965, \n        2972, \n        2974, \n        2965, \n        2965, \n        2974, \n        2972, \n        2975, \n        2974, \n        2972, \n        2972, \n        2974, \n        2975, \n        2972, \n        2971, \n        2975, \n        2975, \n        2971, \n        2972, \n        2975, \n        2976, \n        2977, \n        2977, \n        2976, \n        2975, \n        2977, \n        2974, \n        2975, \n        2975, \n        2974, \n        2977, \n        2965, \n        2974, \n        2977, \n        2977, \n        2974, \n        2965, \n        2977, \n        2966, \n        2965, \n        2965, \n        2966, \n        2977, \n        2969, \n        2966, \n        2977, \n        2977, \n        2966, \n        2969, \n        2977, \n        2978, \n        2969, \n        2969, \n        2978, \n        2977, \n        2979, \n        2978, \n        2977, \n        2977, \n        2978, \n        2979, \n        2977, \n        2976, \n        2979, \n        2979, \n        2976, \n        2977, \n        2980, \n        2981, \n        2982, \n        2982, \n        2981, \n        2980, \n        2982, \n        2983, \n        2980, \n        2980, \n        2983, \n        2982, \n        2970, \n        2983, \n        2982, \n        2982, \n        2983, \n        2970, \n        2982, \n        2971, \n        2970, \n        2970, \n        2971, \n        2982, \n        2975, \n        2971, \n        2982, \n        2982, \n        2971, \n        2975, \n        2982, \n        2984, \n        2975, \n        2975, \n        2984, \n        2982, \n        2985, \n        2984, \n        2982, \n        2982, \n        2984, \n        2985, \n        2982, \n        2981, \n        2985, \n        2985, \n        2981, \n        2982, \n        2985, \n        2986, \n        2987, \n        2987, \n        2986, \n        2985, \n        2987, \n        2984, \n        2985, \n        2985, \n        2984, \n        2987, \n        2975, \n        2984, \n        2987, \n        2987, \n        2984, \n        2975, \n        2987, \n        2976, \n        2975, \n        2975, \n        2976, \n        2987, \n        2979, \n        2976, \n        2987, \n        2987, \n        2976, \n        2979, \n        2987, \n        2988, \n        2979, \n        2979, \n        2988, \n        2987, \n        2989, \n        2988, \n        2987, \n        2987, \n        2988, \n        2989, \n        2987, \n        2986, \n        2989, \n        2989, \n        2986, \n        2987, \n        2990, \n        2991, \n        2992, \n        2992, \n        2991, \n        2990, \n        2992, \n        2993, \n        2990, \n        2990, \n        2993, \n        2992, \n        2980, \n        2993, \n        2992, \n        2992, \n        2993, \n        2980, \n        2992, \n        2981, \n        2980, \n        2980, \n        2981, \n        2992, \n        2985, \n        2981, \n        2992, \n        2992, \n        2981, \n        2985, \n        2992, \n        2994, \n        2985, \n        2985, \n        2994, \n        2992, \n        2995, \n        2994, \n        2992, \n        2992, \n        2994, \n        2995, \n        2992, \n        2991, \n        2995, \n        2995, \n        2991, \n        2992, \n        2995, \n        2996, \n        2997, \n        2997, \n        2996, \n        2995, \n        2997, \n        2994, \n        2995, \n        2995, \n        2994, \n        2997, \n        2985, \n        2994, \n        2997, \n        2997, \n        2994, \n        2985, \n        2997, \n        2986, \n        2985, \n        2985, \n        2986, \n        2997, \n        2989, \n        2986, \n        2997, \n        2997, \n        2986, \n        2989, \n        2997, \n        2998, \n        2989, \n        2989, \n        2998, \n        2997, \n        2999, \n        2998, \n        2997, \n        2997, \n        2998, \n        2999, \n        2997, \n        2996, \n        2999, \n        2999, \n        2996, \n        2997, \n        3000, \n        3001, \n        3002, \n        3002, \n        3001, \n        3000, \n        3002, \n        3003, \n        3000, \n        3000, \n        3003, \n        3002, \n        3004, \n        3005, \n        3002, \n        3002, \n        3005, \n        3004, \n        3002, \n        3001, \n        3004, \n        3004, \n        3001, \n        3002, \n        3006, \n        3007, \n        3002, \n        3002, \n        3007, \n        3006, \n        3002, \n        3005, \n        3006, \n        3006, \n        3005, \n        3002, \n        3008, \n        3003, \n        3002, \n        3002, \n        3003, \n        3008, \n        3002, \n        3007, \n        3008, \n        3008, \n        3007, \n        3002, \n        3008, \n        3007, \n        3009, \n        3009, \n        3007, \n        3008, \n        3009, \n        3010, \n        3008, \n        3008, \n        3010, \n        3009, \n        3006, \n        3011, \n        3009, \n        3009, \n        3011, \n        3006, \n        3009, \n        3007, \n        3006, \n        3006, \n        3007, \n        3009, \n        3012, \n        3013, \n        3009, \n        3009, \n        3013, \n        3012, \n        3009, \n        3011, \n        3012, \n        3012, \n        3011, \n        3009, \n        3014, \n        3010, \n        3009, \n        3009, \n        3010, \n        3014, \n        3009, \n        3013, \n        3014, \n        3014, \n        3013, \n        3009, \n        3015, \n        3016, \n        3017, \n        3017, \n        3016, \n        3015, \n        3017, \n        3018, \n        3015, \n        3015, \n        3018, \n        3017, \n        3000, \n        3003, \n        3017, \n        3017, \n        3003, \n        3000, \n        3017, \n        3016, \n        3000, \n        3000, \n        3016, \n        3017, \n        3008, \n        3019, \n        3017, \n        3017, \n        3019, \n        3008, \n        3017, \n        3003, \n        3008, \n        3008, \n        3003, \n        3017, \n        3020, \n        3018, \n        3017, \n        3017, \n        3018, \n        3020, \n        3017, \n        3019, \n        3020, \n        3020, \n        3019, \n        3017, \n        3020, \n        3019, \n        3021, \n        3021, \n        3019, \n        3020, \n        3021, \n        3022, \n        3020, \n        3020, \n        3022, \n        3021, \n        3008, \n        3010, \n        3021, \n        3021, \n        3010, \n        3008, \n        3021, \n        3019, \n        3008, \n        3008, \n        3019, \n        3021, \n        3014, \n        3023, \n        3021, \n        3021, \n        3023, \n        3014, \n        3021, \n        3010, \n        3014, \n        3014, \n        3010, \n        3021, \n        3024, \n        3022, \n        3021, \n        3021, \n        3022, \n        3024, \n        3021, \n        3023, \n        3024, \n        3024, \n        3023, \n        3021, \n        3025, \n        3026, \n        3027, \n        3027, \n        3026, \n        3025, \n        3027, \n        3028, \n        3025, \n        3025, \n        3028, \n        3027, \n        3015, \n        3018, \n        3027, \n        3027, \n        3018, \n        3015, \n        3027, \n        3026, \n        3015, \n        3015, \n        3026, \n        3027, \n        3020, \n        3029, \n        3027, \n        3027, \n        3029, \n        3020, \n        3027, \n        3018, \n        3020, \n        3020, \n        3018, \n        3027, \n        3030, \n        3028, \n        3027, \n        3027, \n        3028, \n        3030, \n        3027, \n        3029, \n        3030, \n        3030, \n        3029, \n        3027, \n        3030, \n        3029, \n        3031, \n        3031, \n        3029, \n        3030, \n        3031, \n        3032, \n        3030, \n        3030, \n        3032, \n        3031, \n        3020, \n        3022, \n        3031, \n        3031, \n        3022, \n        3020, \n        3031, \n        3029, \n        3020, \n        3020, \n        3029, \n        3031, \n        3024, \n        3033, \n        3031, \n        3031, \n        3033, \n        3024, \n        3031, \n        3022, \n        3024, \n        3024, \n        3022, \n        3031, \n        3034, \n        3032, \n        3031, \n        3031, \n        3032, \n        3034, \n        3031, \n        3033, \n        3034, \n        3034, \n        3033, \n        3031, \n        3035, \n        3036, \n        3037, \n        3037, \n        3036, \n        3035, \n        3037, \n        3038, \n        3035, \n        3035, \n        3038, \n        3037, \n        3025, \n        3028, \n        3037, \n        3037, \n        3028, \n        3025, \n        3037, \n        3036, \n        3025, \n        3025, \n        3036, \n        3037, \n        3030, \n        3039, \n        3037, \n        3037, \n        3039, \n        3030, \n        3037, \n        3028, \n        3030, \n        3030, \n        3028, \n        3037, \n        3040, \n        3038, \n        3037, \n        3037, \n        3038, \n        3040, \n        3037, \n        3039, \n        3040, \n        3040, \n        3039, \n        3037, \n        3040, \n        3039, \n        3041, \n        3041, \n        3039, \n        3040, \n        3041, \n        3042, \n        3040, \n        3040, \n        3042, \n        3041, \n        3030, \n        3032, \n        3041, \n        3041, \n        3032, \n        3030, \n        3041, \n        3039, \n        3030, \n        3030, \n        3039, \n        3041, \n        3034, \n        3043, \n        3041, \n        3041, \n        3043, \n        3034, \n        3041, \n        3032, \n        3034, \n        3034, \n        3032, \n        3041, \n        3044, \n        3042, \n        3041, \n        3041, \n        3042, \n        3044, \n        3041, \n        3043, \n        3044, \n        3044, \n        3043, \n        3041, \n        3045, \n        3046, \n        3047, \n        3047, \n        3046, \n        3045, \n        3047, \n        3048, \n        3045, \n        3045, \n        3048, \n        3047, \n        3035, \n        3038, \n        3047, \n        3047, \n        3038, \n        3035, \n        3047, \n        3046, \n        3035, \n        3035, \n        3046, \n        3047, \n        3040, \n        3049, \n        3047, \n        3047, \n        3049, \n        3040, \n        3047, \n        3038, \n        3040, \n        3040, \n        3038, \n        3047, \n        3050, \n        3048, \n        3047, \n        3047, \n        3048, \n        3050, \n        3047, \n        3049, \n        3050, \n        3050, \n        3049, \n        3047, \n        3050, \n        3049, \n        3051, \n        3051, \n        3049, \n        3050, \n        3051, \n        3052, \n        3050, \n        3050, \n        3052, \n        3051, \n        3040, \n        3042, \n        3051, \n        3051, \n        3042, \n        3040, \n        3051, \n        3049, \n        3040, \n        3040, \n        3049, \n        3051, \n        3044, \n        3053, \n        3051, \n        3051, \n        3053, \n        3044, \n        3051, \n        3042, \n        3044, \n        3044, \n        3042, \n        3051, \n        3054, \n        3052, \n        3051, \n        3051, \n        3052, \n        3054, \n        3051, \n        3053, \n        3054, \n        3054, \n        3053, \n        3051, \n        3055, \n        3056, \n        3057, \n        3057, \n        3056, \n        3055, \n        3057, \n        3058, \n        3055, \n        3055, \n        3058, \n        3057, \n        3045, \n        3048, \n        3057, \n        3057, \n        3048, \n        3045, \n        3057, \n        3056, \n        3045, \n        3045, \n        3056, \n        3057, \n        3050, \n        3059, \n        3057, \n        3057, \n        3059, \n        3050, \n        3057, \n        3048, \n        3050, \n        3050, \n        3048, \n        3057, \n        3060, \n        3058, \n        3057, \n        3057, \n        3058, \n        3060, \n        3057, \n        3059, \n        3060, \n        3060, \n        3059, \n        3057, \n        3060, \n        3059, \n        3061, \n        3061, \n        3059, \n        3060, \n        3061, \n        3062, \n        3060, \n        3060, \n        3062, \n        3061, \n        3050, \n        3052, \n        3061, \n        3061, \n        3052, \n        3050, \n        3061, \n        3059, \n        3050, \n        3050, \n        3059, \n        3061, \n        3054, \n        3063, \n        3061, \n        3061, \n        3063, \n        3054, \n        3061, \n        3052, \n        3054, \n        3054, \n        3052, \n        3061, \n        3064, \n        3062, \n        3061, \n        3061, \n        3062, \n        3064, \n        3061, \n        3063, \n        3064, \n        3064, \n        3063, \n        3061, \n        3065, \n        3066, \n        3067, \n        3067, \n        3066, \n        3065, \n        3067, \n        3068, \n        3065, \n        3065, \n        3068, \n        3067, \n        3055, \n        3058, \n        3067, \n        3067, \n        3058, \n        3055, \n        3067, \n        3066, \n        3055, \n        3055, \n        3066, \n        3067, \n        3060, \n        3069, \n        3067, \n        3067, \n        3069, \n        3060, \n        3067, \n        3058, \n        3060, \n        3060, \n        3058, \n        3067, \n        3070, \n        3068, \n        3067, \n        3067, \n        3068, \n        3070, \n        3067, \n        3069, \n        3070, \n        3070, \n        3069, \n        3067, \n        3070, \n        3069, \n        3071, \n        3071, \n        3069, \n        3070, \n        3071, \n        3072, \n        3070, \n        3070, \n        3072, \n        3071, \n        3060, \n        3062, \n        3071, \n        3071, \n        3062, \n        3060, \n        3071, \n        3069, \n        3060, \n        3060, \n        3069, \n        3071, \n        3064, \n        3073, \n        3071, \n        3071, \n        3073, \n        3064, \n        3071, \n        3062, \n        3064, \n        3064, \n        3062, \n        3071, \n        3074, \n        3072, \n        3071, \n        3071, \n        3072, \n        3074, \n        3071, \n        3073, \n        3074, \n        3074, \n        3073, \n        3071, \n        3075, \n        3076, \n        3077, \n        3077, \n        3076, \n        3075, \n        3077, \n        3078, \n        3075, \n        3075, \n        3078, \n        3077, \n        3065, \n        3068, \n        3077, \n        3077, \n        3068, \n        3065, \n        3077, \n        3076, \n        3065, \n        3065, \n        3076, \n        3077, \n        3070, \n        3079, \n        3077, \n        3077, \n        3079, \n        3070, \n        3077, \n        3068, \n        3070, \n        3070, \n        3068, \n        3077, \n        3080, \n        3078, \n        3077, \n        3077, \n        3078, \n        3080, \n        3077, \n        3079, \n        3080, \n        3080, \n        3079, \n        3077, \n        3080, \n        3079, \n        3081, \n        3081, \n        3079, \n        3080, \n        3081, \n        3082, \n        3080, \n        3080, \n        3082, \n        3081, \n        3070, \n        3072, \n        3081, \n        3081, \n        3072, \n        3070, \n        3081, \n        3079, \n        3070, \n        3070, \n        3079, \n        3081, \n        3074, \n        3083, \n        3081, \n        3081, \n        3083, \n        3074, \n        3081, \n        3072, \n        3074, \n        3074, \n        3072, \n        3081, \n        3084, \n        3082, \n        3081, \n        3081, \n        3082, \n        3084, \n        3081, \n        3083, \n        3084, \n        3084, \n        3083, \n        3081, \n        3085, \n        3086, \n        3087, \n        3087, \n        3086, \n        3085, \n        3087, \n        3088, \n        3085, \n        3085, \n        3088, \n        3087, \n        3075, \n        3078, \n        3087, \n        3087, \n        3078, \n        3075, \n        3087, \n        3086, \n        3075, \n        3075, \n        3086, \n        3087, \n        3080, \n        3089, \n        3087, \n        3087, \n        3089, \n        3080, \n        3087, \n        3078, \n        3080, \n        3080, \n        3078, \n        3087, \n        3090, \n        3088, \n        3087, \n        3087, \n        3088, \n        3090, \n        3087, \n        3089, \n        3090, \n        3090, \n        3089, \n        3087, \n        3090, \n        3089, \n        3091, \n        3091, \n        3089, \n        3090, \n        3091, \n        3092, \n        3090, \n        3090, \n        3092, \n        3091, \n        3080, \n        3082, \n        3091, \n        3091, \n        3082, \n        3080, \n        3091, \n        3089, \n        3080, \n        3080, \n        3089, \n        3091, \n        3084, \n        3093, \n        3091, \n        3091, \n        3093, \n        3084, \n        3091, \n        3082, \n        3084, \n        3084, \n        3082, \n        3091, \n        3094, \n        3092, \n        3091, \n        3091, \n        3092, \n        3094, \n        3091, \n        3093, \n        3094, \n        3094, \n        3093, \n        3091, \n        3095, \n        3096, \n        3097, \n        3097, \n        3096, \n        3095, \n        3097, \n        3098, \n        3095, \n        3095, \n        3098, \n        3097, \n        3085, \n        3088, \n        3097, \n        3097, \n        3088, \n        3085, \n        3097, \n        3096, \n        3085, \n        3085, \n        3096, \n        3097, \n        3090, \n        3099, \n        3097, \n        3097, \n        3099, \n        3090, \n        3097, \n        3088, \n        3090, \n        3090, \n        3088, \n        3097, \n        3100, \n        3098, \n        3097, \n        3097, \n        3098, \n        3100, \n        3097, \n        3099, \n        3100, \n        3100, \n        3099, \n        3097, \n        3100, \n        3099, \n        3101, \n        3101, \n        3099, \n        3100, \n        3101, \n        3102, \n        3100, \n        3100, \n        3102, \n        3101, \n        3090, \n        3092, \n        3101, \n        3101, \n        3092, \n        3090, \n        3101, \n        3099, \n        3090, \n        3090, \n        3099, \n        3101, \n        3094, \n        3103, \n        3101, \n        3101, \n        3103, \n        3094, \n        3101, \n        3092, \n        3094, \n        3094, \n        3092, \n        3101, \n        3104, \n        3102, \n        3101, \n        3101, \n        3102, \n        3104, \n        3101, \n        3103, \n        3104, \n        3104, \n        3103, \n        3101, \n        3105, \n        3106, \n        3107, \n        3107, \n        3106, \n        3105, \n        3107, \n        3108, \n        3105, \n        3105, \n        3108, \n        3107, \n        3095, \n        3098, \n        3107, \n        3107, \n        3098, \n        3095, \n        3107, \n        3106, \n        3095, \n        3095, \n        3106, \n        3107, \n        3100, \n        3109, \n        3107, \n        3107, \n        3109, \n        3100, \n        3107, \n        3098, \n        3100, \n        3100, \n        3098, \n        3107, \n        3110, \n        3108, \n        3107, \n        3107, \n        3108, \n        3110, \n        3107, \n        3109, \n        3110, \n        3110, \n        3109, \n        3107, \n        3110, \n        3109, \n        3111, \n        3111, \n        3109, \n        3110, \n        3111, \n        3112, \n        3110, \n        3110, \n        3112, \n        3111, \n        3100, \n        3102, \n        3111, \n        3111, \n        3102, \n        3100, \n        3111, \n        3109, \n        3100, \n        3100, \n        3109, \n        3111, \n        3104, \n        3113, \n        3111, \n        3111, \n        3113, \n        3104, \n        3111, \n        3102, \n        3104, \n        3104, \n        3102, \n        3111, \n        3114, \n        3112, \n        3111, \n        3111, \n        3112, \n        3114, \n        3111, \n        3113, \n        3114, \n        3114, \n        3113, \n        3111, \n        3115, \n        3116, \n        3117, \n        3117, \n        3116, \n        3115, \n        3117, \n        3118, \n        3115, \n        3115, \n        3118, \n        3117, \n        3105, \n        3108, \n        3117, \n        3117, \n        3108, \n        3105, \n        3117, \n        3116, \n        3105, \n        3105, \n        3116, \n        3117, \n        3110, \n        3119, \n        3117, \n        3117, \n        3119, \n        3110, \n        3117, \n        3108, \n        3110, \n        3110, \n        3108, \n        3117, \n        3120, \n        3118, \n        3117, \n        3117, \n        3118, \n        3120, \n        3117, \n        3119, \n        3120, \n        3120, \n        3119, \n        3117, \n        3120, \n        3119, \n        3121, \n        3121, \n        3119, \n        3120, \n        3121, \n        3122, \n        3120, \n        3120, \n        3122, \n        3121, \n        3110, \n        3112, \n        3121, \n        3121, \n        3112, \n        3110, \n        3121, \n        3119, \n        3110, \n        3110, \n        3119, \n        3121, \n        3114, \n        3123, \n        3121, \n        3121, \n        3123, \n        3114, \n        3121, \n        3112, \n        3114, \n        3114, \n        3112, \n        3121, \n        3124, \n        3122, \n        3121, \n        3121, \n        3122, \n        3124, \n        3121, \n        3123, \n        3124, \n        3124, \n        3123, \n        3121, \n        3125, \n        3126, \n        3127, \n        3127, \n        3126, \n        3125, \n        3127, \n        3128, \n        3125, \n        3125, \n        3128, \n        3127, \n        3129, \n        3130, \n        3127, \n        3127, \n        3130, \n        3129, \n        3127, \n        3126, \n        3129, \n        3129, \n        3126, \n        3127, \n        3131, \n        3132, \n        3127, \n        3127, \n        3132, \n        3131, \n        3127, \n        3130, \n        3131, \n        3131, \n        3130, \n        3127, \n        3133, \n        3128, \n        3127, \n        3127, \n        3128, \n        3133, \n        3127, \n        3132, \n        3133, \n        3133, \n        3132, \n        3127, \n        3133, \n        3132, \n        3134, \n        3134, \n        3132, \n        3133, \n        3134, \n        3135, \n        3133, \n        3133, \n        3135, \n        3134, \n        3131, \n        3136, \n        3134, \n        3134, \n        3136, \n        3131, \n        3134, \n        3132, \n        3131, \n        3131, \n        3132, \n        3134, \n        3137, \n        3138, \n        3134, \n        3134, \n        3138, \n        3137, \n        3134, \n        3136, \n        3137, \n        3137, \n        3136, \n        3134, \n        3139, \n        3135, \n        3134, \n        3134, \n        3135, \n        3139, \n        3134, \n        3138, \n        3139, \n        3139, \n        3138, \n        3134, \n        3140, \n        3141, \n        3142, \n        3142, \n        3141, \n        3140, \n        3142, \n        3143, \n        3140, \n        3140, \n        3143, \n        3142, \n        3125, \n        3128, \n        3142, \n        3142, \n        3128, \n        3125, \n        3142, \n        3141, \n        3125, \n        3125, \n        3141, \n        3142, \n        3133, \n        3144, \n        3142, \n        3142, \n        3144, \n        3133, \n        3142, \n        3128, \n        3133, \n        3133, \n        3128, \n        3142, \n        3145, \n        3143, \n        3142, \n        3142, \n        3143, \n        3145, \n        3142, \n        3144, \n        3145, \n        3145, \n        3144, \n        3142, \n        3145, \n        3144, \n        3146, \n        3146, \n        3144, \n        3145, \n        3146, \n        3147, \n        3145, \n        3145, \n        3147, \n        3146, \n        3133, \n        3135, \n        3146, \n        3146, \n        3135, \n        3133, \n        3146, \n        3144, \n        3133, \n        3133, \n        3144, \n        3146, \n        3139, \n        3148, \n        3146, \n        3146, \n        3148, \n        3139, \n        3146, \n        3135, \n        3139, \n        3139, \n        3135, \n        3146, \n        3149, \n        3147, \n        3146, \n        3146, \n        3147, \n        3149, \n        3146, \n        3148, \n        3149, \n        3149, \n        3148, \n        3146, \n        3150, \n        3151, \n        3152, \n        3152, \n        3151, \n        3150, \n        3152, \n        3153, \n        3150, \n        3150, \n        3153, \n        3152, \n        3140, \n        3143, \n        3152, \n        3152, \n        3143, \n        3140, \n        3152, \n        3151, \n        3140, \n        3140, \n        3151, \n        3152, \n        3145, \n        3154, \n        3152, \n        3152, \n        3154, \n        3145, \n        3152, \n        3143, \n        3145, \n        3145, \n        3143, \n        3152, \n        3155, \n        3153, \n        3152, \n        3152, \n        3153, \n        3155, \n        3152, \n        3154, \n        3155, \n        3155, \n        3154, \n        3152, \n        3155, \n        3154, \n        3156, \n        3156, \n        3154, \n        3155, \n        3156, \n        3157, \n        3155, \n        3155, \n        3157, \n        3156, \n        3145, \n        3147, \n        3156, \n        3156, \n        3147, \n        3145, \n        3156, \n        3154, \n        3145, \n        3145, \n        3154, \n        3156, \n        3149, \n        3158, \n        3156, \n        3156, \n        3158, \n        3149, \n        3156, \n        3147, \n        3149, \n        3149, \n        3147, \n        3156, \n        3159, \n        3157, \n        3156, \n        3156, \n        3157, \n        3159, \n        3156, \n        3158, \n        3159, \n        3159, \n        3158, \n        3156, \n        3160, \n        3161, \n        3162, \n        3162, \n        3161, \n        3160, \n        3162, \n        3163, \n        3160, \n        3160, \n        3163, \n        3162, \n        3150, \n        3153, \n        3162, \n        3162, \n        3153, \n        3150, \n        3162, \n        3161, \n        3150, \n        3150, \n        3161, \n        3162, \n        3155, \n        3164, \n        3162, \n        3162, \n        3164, \n        3155, \n        3162, \n        3153, \n        3155, \n        3155, \n        3153, \n        3162, \n        3165, \n        3163, \n        3162, \n        3162, \n        3163, \n        3165, \n        3162, \n        3164, \n        3165, \n        3165, \n        3164, \n        3162, \n        3165, \n        3164, \n        3166, \n        3166, \n        3164, \n        3165, \n        3166, \n        3167, \n        3165, \n        3165, \n        3167, \n        3166, \n        3155, \n        3157, \n        3166, \n        3166, \n        3157, \n        3155, \n        3166, \n        3164, \n        3155, \n        3155, \n        3164, \n        3166, \n        3159, \n        3168, \n        3166, \n        3166, \n        3168, \n        3159, \n        3166, \n        3157, \n        3159, \n        3159, \n        3157, \n        3166, \n        3169, \n        3167, \n        3166, \n        3166, \n        3167, \n        3169, \n        3166, \n        3168, \n        3169, \n        3169, \n        3168, \n        3166, \n        3170, \n        3171, \n        3172, \n        3172, \n        3171, \n        3170, \n        3172, \n        3173, \n        3170, \n        3170, \n        3173, \n        3172, \n        3160, \n        3163, \n        3172, \n        3172, \n        3163, \n        3160, \n        3172, \n        3171, \n        3160, \n        3160, \n        3171, \n        3172, \n        3165, \n        3174, \n        3172, \n        3172, \n        3174, \n        3165, \n        3172, \n        3163, \n        3165, \n        3165, \n        3163, \n        3172, \n        3175, \n        3173, \n        3172, \n        3172, \n        3173, \n        3175, \n        3172, \n        3174, \n        3175, \n        3175, \n        3174, \n        3172, \n        3175, \n        3174, \n        3176, \n        3176, \n        3174, \n        3175, \n        3176, \n        3177, \n        3175, \n        3175, \n        3177, \n        3176, \n        3165, \n        3167, \n        3176, \n        3176, \n        3167, \n        3165, \n        3176, \n        3174, \n        3165, \n        3165, \n        3174, \n        3176, \n        3169, \n        3178, \n        3176, \n        3176, \n        3178, \n        3169, \n        3176, \n        3167, \n        3169, \n        3169, \n        3167, \n        3176, \n        3179, \n        3177, \n        3176, \n        3176, \n        3177, \n        3179, \n        3176, \n        3178, \n        3179, \n        3179, \n        3178, \n        3176, \n        3180, \n        3181, \n        3182, \n        3182, \n        3181, \n        3180, \n        3182, \n        3183, \n        3180, \n        3180, \n        3183, \n        3182, \n        3170, \n        3173, \n        3182, \n        3182, \n        3173, \n        3170, \n        3182, \n        3181, \n        3170, \n        3170, \n        3181, \n        3182, \n        3175, \n        3184, \n        3182, \n        3182, \n        3184, \n        3175, \n        3182, \n        3173, \n        3175, \n        3175, \n        3173, \n        3182, \n        3185, \n        3183, \n        3182, \n        3182, \n        3183, \n        3185, \n        3182, \n        3184, \n        3185, \n        3185, \n        3184, \n        3182, \n        3185, \n        3184, \n        3186, \n        3186, \n        3184, \n        3185, \n        3186, \n        3187, \n        3185, \n        3185, \n        3187, \n        3186, \n        3175, \n        3177, \n        3186, \n        3186, \n        3177, \n        3175, \n        3186, \n        3184, \n        3175, \n        3175, \n        3184, \n        3186, \n        3179, \n        3188, \n        3186, \n        3186, \n        3188, \n        3179, \n        3186, \n        3177, \n        3179, \n        3179, \n        3177, \n        3186, \n        3189, \n        3187, \n        3186, \n        3186, \n        3187, \n        3189, \n        3186, \n        3188, \n        3189, \n        3189, \n        3188, \n        3186, \n        3190, \n        3191, \n        3192, \n        3192, \n        3191, \n        3190, \n        3192, \n        3193, \n        3190, \n        3190, \n        3193, \n        3192, \n        3180, \n        3183, \n        3192, \n        3192, \n        3183, \n        3180, \n        3192, \n        3191, \n        3180, \n        3180, \n        3191, \n        3192, \n        3185, \n        3194, \n        3192, \n        3192, \n        3194, \n        3185, \n        3192, \n        3183, \n        3185, \n        3185, \n        3183, \n        3192, \n        3195, \n        3193, \n        3192, \n        3192, \n        3193, \n        3195, \n        3192, \n        3194, \n        3195, \n        3195, \n        3194, \n        3192, \n        3195, \n        3194, \n        3196, \n        3196, \n        3194, \n        3195, \n        3196, \n        3197, \n        3195, \n        3195, \n        3197, \n        3196, \n        3185, \n        3187, \n        3196, \n        3196, \n        3187, \n        3185, \n        3196, \n        3194, \n        3185, \n        3185, \n        3194, \n        3196, \n        3189, \n        3198, \n        3196, \n        3196, \n        3198, \n        3189, \n        3196, \n        3187, \n        3189, \n        3189, \n        3187, \n        3196, \n        3199, \n        3197, \n        3196, \n        3196, \n        3197, \n        3199, \n        3196, \n        3198, \n        3199, \n        3199, \n        3198, \n        3196, \n        3200, \n        3201, \n        3202, \n        3202, \n        3201, \n        3200, \n        3202, \n        3203, \n        3200, \n        3200, \n        3203, \n        3202, \n        3190, \n        3193, \n        3202, \n        3202, \n        3193, \n        3190, \n        3202, \n        3201, \n        3190, \n        3190, \n        3201, \n        3202, \n        3195, \n        3204, \n        3202, \n        3202, \n        3204, \n        3195, \n        3202, \n        3193, \n        3195, \n        3195, \n        3193, \n        3202, \n        3205, \n        3203, \n        3202, \n        3202, \n        3203, \n        3205, \n        3202, \n        3204, \n        3205, \n        3205, \n        3204, \n        3202, \n        3205, \n        3204, \n        3206, \n        3206, \n        3204, \n        3205, \n        3206, \n        3207, \n        3205, \n        3205, \n        3207, \n        3206, \n        3195, \n        3197, \n        3206, \n        3206, \n        3197, \n        3195, \n        3206, \n        3204, \n        3195, \n        3195, \n        3204, \n        3206, \n        3199, \n        3208, \n        3206, \n        3206, \n        3208, \n        3199, \n        3206, \n        3197, \n        3199, \n        3199, \n        3197, \n        3206, \n        3209, \n        3207, \n        3206, \n        3206, \n        3207, \n        3209, \n        3206, \n        3208, \n        3209, \n        3209, \n        3208, \n        3206, \n        3210, \n        3211, \n        3212, \n        3212, \n        3211, \n        3210, \n        3212, \n        3213, \n        3210, \n        3210, \n        3213, \n        3212, \n        3200, \n        3203, \n        3212, \n        3212, \n        3203, \n        3200, \n        3212, \n        3211, \n        3200, \n        3200, \n        3211, \n        3212, \n        3205, \n        3214, \n        3212, \n        3212, \n        3214, \n        3205, \n        3212, \n        3203, \n        3205, \n        3205, \n        3203, \n        3212, \n        3215, \n        3213, \n        3212, \n        3212, \n        3213, \n        3215, \n        3212, \n        3214, \n        3215, \n        3215, \n        3214, \n        3212, \n        3215, \n        3214, \n        3216, \n        3216, \n        3214, \n        3215, \n        3216, \n        3217, \n        3215, \n        3215, \n        3217, \n        3216, \n        3205, \n        3207, \n        3216, \n        3216, \n        3207, \n        3205, \n        3216, \n        3214, \n        3205, \n        3205, \n        3214, \n        3216, \n        3209, \n        3218, \n        3216, \n        3216, \n        3218, \n        3209, \n        3216, \n        3207, \n        3209, \n        3209, \n        3207, \n        3216, \n        3219, \n        3217, \n        3216, \n        3216, \n        3217, \n        3219, \n        3216, \n        3218, \n        3219, \n        3219, \n        3218, \n        3216, \n        3220, \n        3221, \n        3222, \n        3222, \n        3221, \n        3220, \n        3222, \n        3223, \n        3220, \n        3220, \n        3223, \n        3222, \n        3210, \n        3213, \n        3222, \n        3222, \n        3213, \n        3210, \n        3222, \n        3221, \n        3210, \n        3210, \n        3221, \n        3222, \n        3215, \n        3224, \n        3222, \n        3222, \n        3224, \n        3215, \n        3222, \n        3213, \n        3215, \n        3215, \n        3213, \n        3222, \n        3225, \n        3223, \n        3222, \n        3222, \n        3223, \n        3225, \n        3222, \n        3224, \n        3225, \n        3225, \n        3224, \n        3222, \n        3225, \n        3224, \n        3226, \n        3226, \n        3224, \n        3225, \n        3226, \n        3227, \n        3225, \n        3225, \n        3227, \n        3226, \n        3215, \n        3217, \n        3226, \n        3226, \n        3217, \n        3215, \n        3226, \n        3224, \n        3215, \n        3215, \n        3224, \n        3226, \n        3219, \n        3228, \n        3226, \n        3226, \n        3228, \n        3219, \n        3226, \n        3217, \n        3219, \n        3219, \n        3217, \n        3226, \n        3229, \n        3227, \n        3226, \n        3226, \n        3227, \n        3229, \n        3226, \n        3228, \n        3229, \n        3229, \n        3228, \n        3226, \n        3230, \n        3231, \n        3232, \n        3232, \n        3231, \n        3230, \n        3232, \n        3233, \n        3230, \n        3230, \n        3233, \n        3232, \n        3220, \n        3223, \n        3232, \n        3232, \n        3223, \n        3220, \n        3232, \n        3231, \n        3220, \n        3220, \n        3231, \n        3232, \n        3225, \n        3234, \n        3232, \n        3232, \n        3234, \n        3225, \n        3232, \n        3223, \n        3225, \n        3225, \n        3223, \n        3232, \n        3235, \n        3233, \n        3232, \n        3232, \n        3233, \n        3235, \n        3232, \n        3234, \n        3235, \n        3235, \n        3234, \n        3232, \n        3235, \n        3234, \n        3236, \n        3236, \n        3234, \n        3235, \n        3236, \n        3237, \n        3235, \n        3235, \n        3237, \n        3236, \n        3225, \n        3227, \n        3236, \n        3236, \n        3227, \n        3225, \n        3236, \n        3234, \n        3225, \n        3225, \n        3234, \n        3236, \n        3229, \n        3238, \n        3236, \n        3236, \n        3238, \n        3229, \n        3236, \n        3227, \n        3229, \n        3229, \n        3227, \n        3236, \n        3239, \n        3237, \n        3236, \n        3236, \n        3237, \n        3239, \n        3236, \n        3238, \n        3239, \n        3239, \n        3238, \n        3236, \n        3240, \n        3241, \n        3242, \n        3242, \n        3241, \n        3240, \n        3242, \n        3243, \n        3240, \n        3240, \n        3243, \n        3242, \n        3230, \n        3233, \n        3242, \n        3242, \n        3233, \n        3230, \n        3242, \n        3241, \n        3230, \n        3230, \n        3241, \n        3242, \n        3235, \n        3244, \n        3242, \n        3242, \n        3244, \n        3235, \n        3242, \n        3233, \n        3235, \n        3235, \n        3233, \n        3242, \n        3245, \n        3243, \n        3242, \n        3242, \n        3243, \n        3245, \n        3242, \n        3244, \n        3245, \n        3245, \n        3244, \n        3242, \n        3245, \n        3244, \n        3246, \n        3246, \n        3244, \n        3245, \n        3246, \n        3247, \n        3245, \n        3245, \n        3247, \n        3246, \n        3235, \n        3237, \n        3246, \n        3246, \n        3237, \n        3235, \n        3246, \n        3244, \n        3235, \n        3235, \n        3244, \n        3246, \n        3239, \n        3248, \n        3246, \n        3246, \n        3248, \n        3239, \n        3246, \n        3237, \n        3239, \n        3239, \n        3237, \n        3246, \n        3249, \n        3247, \n        3246, \n        3246, \n        3247, \n        3249, \n        3246, \n        3248, \n        3249, \n        3249, \n        3248, \n        3246, \n        3250, \n        3251, \n        3252, \n        3252, \n        3251, \n        3250, \n        3252, \n        3253, \n        3250, \n        3250, \n        3253, \n        3252, \n        3254, \n        3255, \n        3252, \n        3252, \n        3255, \n        3254, \n        3252, \n        3251, \n        3254, \n        3254, \n        3251, \n        3252, \n        3256, \n        3257, \n        3252, \n        3252, \n        3257, \n        3256, \n        3252, \n        3255, \n        3256, \n        3256, \n        3255, \n        3252, \n        3258, \n        3253, \n        3252, \n        3252, \n        3253, \n        3258, \n        3252, \n        3257, \n        3258, \n        3258, \n        3257, \n        3252, \n        3258, \n        3257, \n        3259, \n        3259, \n        3257, \n        3258, \n        3259, \n        3260, \n        3258, \n        3258, \n        3260, \n        3259, \n        3256, \n        3261, \n        3259, \n        3259, \n        3261, \n        3256, \n        3259, \n        3257, \n        3256, \n        3256, \n        3257, \n        3259, \n        3262, \n        3263, \n        3259, \n        3259, \n        3263, \n        3262, \n        3259, \n        3261, \n        3262, \n        3262, \n        3261, \n        3259, \n        3264, \n        3260, \n        3259, \n        3259, \n        3260, \n        3264, \n        3259, \n        3263, \n        3264, \n        3264, \n        3263, \n        3259, \n        3265, \n        3266, \n        3267, \n        3267, \n        3266, \n        3265, \n        3267, \n        3268, \n        3265, \n        3265, \n        3268, \n        3267, \n        3250, \n        3253, \n        3267, \n        3267, \n        3253, \n        3250, \n        3267, \n        3266, \n        3250, \n        3250, \n        3266, \n        3267, \n        3258, \n        3269, \n        3267, \n        3267, \n        3269, \n        3258, \n        3267, \n        3253, \n        3258, \n        3258, \n        3253, \n        3267, \n        3270, \n        3268, \n        3267, \n        3267, \n        3268, \n        3270, \n        3267, \n        3269, \n        3270, \n        3270, \n        3269, \n        3267, \n        3270, \n        3269, \n        3271, \n        3271, \n        3269, \n        3270, \n        3271, \n        3272, \n        3270, \n        3270, \n        3272, \n        3271, \n        3258, \n        3260, \n        3271, \n        3271, \n        3260, \n        3258, \n        3271, \n        3269, \n        3258, \n        3258, \n        3269, \n        3271, \n        3264, \n        3273, \n        3271, \n        3271, \n        3273, \n        3264, \n        3271, \n        3260, \n        3264, \n        3264, \n        3260, \n        3271, \n        3274, \n        3272, \n        3271, \n        3271, \n        3272, \n        3274, \n        3271, \n        3273, \n        3274, \n        3274, \n        3273, \n        3271, \n        3275, \n        3276, \n        3277, \n        3277, \n        3276, \n        3275, \n        3277, \n        3278, \n        3275, \n        3275, \n        3278, \n        3277, \n        3265, \n        3268, \n        3277, \n        3277, \n        3268, \n        3265, \n        3277, \n        3276, \n        3265, \n        3265, \n        3276, \n        3277, \n        3270, \n        3279, \n        3277, \n        3277, \n        3279, \n        3270, \n        3277, \n        3268, \n        3270, \n        3270, \n        3268, \n        3277, \n        3280, \n        3278, \n        3277, \n        3277, \n        3278, \n        3280, \n        3277, \n        3279, \n        3280, \n        3280, \n        3279, \n        3277, \n        3280, \n        3279, \n        3281, \n        3281, \n        3279, \n        3280, \n        3281, \n        3282, \n        3280, \n        3280, \n        3282, \n        3281, \n        3270, \n        3272, \n        3281, \n        3281, \n        3272, \n        3270, \n        3281, \n        3279, \n        3270, \n        3270, \n        3279, \n        3281, \n        3274, \n        3283, \n        3281, \n        3281, \n        3283, \n        3274, \n        3281, \n        3272, \n        3274, \n        3274, \n        3272, \n        3281, \n        3284, \n        3282, \n        3281, \n        3281, \n        3282, \n        3284, \n        3281, \n        3283, \n        3284, \n        3284, \n        3283, \n        3281, \n        3285, \n        3286, \n        3287, \n        3287, \n        3286, \n        3285, \n        3287, \n        3288, \n        3285, \n        3285, \n        3288, \n        3287, \n        3275, \n        3278, \n        3287, \n        3287, \n        3278, \n        3275, \n        3287, \n        3286, \n        3275, \n        3275, \n        3286, \n        3287, \n        3280, \n        3289, \n        3287, \n        3287, \n        3289, \n        3280, \n        3287, \n        3278, \n        3280, \n        3280, \n        3278, \n        3287, \n        3290, \n        3288, \n        3287, \n        3287, \n        3288, \n        3290, \n        3287, \n        3289, \n        3290, \n        3290, \n        3289, \n        3287, \n        3290, \n        3289, \n        3291, \n        3291, \n        3289, \n        3290, \n        3291, \n        3292, \n        3290, \n        3290, \n        3292, \n        3291, \n        3280, \n        3282, \n        3291, \n        3291, \n        3282, \n        3280, \n        3291, \n        3289, \n        3280, \n        3280, \n        3289, \n        3291, \n        3284, \n        3293, \n        3291, \n        3291, \n        3293, \n        3284, \n        3291, \n        3282, \n        3284, \n        3284, \n        3282, \n        3291, \n        3294, \n        3292, \n        3291, \n        3291, \n        3292, \n        3294, \n        3291, \n        3293, \n        3294, \n        3294, \n        3293, \n        3291, \n        3295, \n        3296, \n        3297, \n        3297, \n        3296, \n        3295, \n        3297, \n        3298, \n        3295, \n        3295, \n        3298, \n        3297, \n        3285, \n        3288, \n        3297, \n        3297, \n        3288, \n        3285, \n        3297, \n        3296, \n        3285, \n        3285, \n        3296, \n        3297, \n        3290, \n        3299, \n        3297, \n        3297, \n        3299, \n        3290, \n        3297, \n        3288, \n        3290, \n        3290, \n        3288, \n        3297, \n        3300, \n        3298, \n        3297, \n        3297, \n        3298, \n        3300, \n        3297, \n        3299, \n        3300, \n        3300, \n        3299, \n        3297, \n        3300, \n        3299, \n        3301, \n        3301, \n        3299, \n        3300, \n        3301, \n        3302, \n        3300, \n        3300, \n        3302, \n        3301, \n        3290, \n        3292, \n        3301, \n        3301, \n        3292, \n        3290, \n        3301, \n        3299, \n        3290, \n        3290, \n        3299, \n        3301, \n        3294, \n        3303, \n        3301, \n        3301, \n        3303, \n        3294, \n        3301, \n        3292, \n        3294, \n        3294, \n        3292, \n        3301, \n        3304, \n        3302, \n        3301, \n        3301, \n        3302, \n        3304, \n        3301, \n        3303, \n        3304, \n        3304, \n        3303, \n        3301, \n        3305, \n        3306, \n        3307, \n        3307, \n        3306, \n        3305, \n        3307, \n        3308, \n        3305, \n        3305, \n        3308, \n        3307, \n        3295, \n        3298, \n        3307, \n        3307, \n        3298, \n        3295, \n        3307, \n        3306, \n        3295, \n        3295, \n        3306, \n        3307, \n        3300, \n        3309, \n        3307, \n        3307, \n        3309, \n        3300, \n        3307, \n        3298, \n        3300, \n        3300, \n        3298, \n        3307, \n        3310, \n        3308, \n        3307, \n        3307, \n        3308, \n        3310, \n        3307, \n        3309, \n        3310, \n        3310, \n        3309, \n        3307, \n        3310, \n        3309, \n        3311, \n        3311, \n        3309, \n        3310, \n        3311, \n        3312, \n        3310, \n        3310, \n        3312, \n        3311, \n        3300, \n        3302, \n        3311, \n        3311, \n        3302, \n        3300, \n        3311, \n        3309, \n        3300, \n        3300, \n        3309, \n        3311, \n        3304, \n        3313, \n        3311, \n        3311, \n        3313, \n        3304, \n        3311, \n        3302, \n        3304, \n        3304, \n        3302, \n        3311, \n        3314, \n        3312, \n        3311, \n        3311, \n        3312, \n        3314, \n        3311, \n        3313, \n        3314, \n        3314, \n        3313, \n        3311, \n        3315, \n        3316, \n        3317, \n        3317, \n        3316, \n        3315, \n        3317, \n        3318, \n        3315, \n        3315, \n        3318, \n        3317, \n        3305, \n        3308, \n        3317, \n        3317, \n        3308, \n        3305, \n        3317, \n        3316, \n        3305, \n        3305, \n        3316, \n        3317, \n        3310, \n        3319, \n        3317, \n        3317, \n        3319, \n        3310, \n        3317, \n        3308, \n        3310, \n        3310, \n        3308, \n        3317, \n        3320, \n        3318, \n        3317, \n        3317, \n        3318, \n        3320, \n        3317, \n        3319, \n        3320, \n        3320, \n        3319, \n        3317, \n        3320, \n        3319, \n        3321, \n        3321, \n        3319, \n        3320, \n        3321, \n        3322, \n        3320, \n        3320, \n        3322, \n        3321, \n        3310, \n        3312, \n        3321, \n        3321, \n        3312, \n        3310, \n        3321, \n        3319, \n        3310, \n        3310, \n        3319, \n        3321, \n        3314, \n        3323, \n        3321, \n        3321, \n        3323, \n        3314, \n        3321, \n        3312, \n        3314, \n        3314, \n        3312, \n        3321, \n        3324, \n        3322, \n        3321, \n        3321, \n        3322, \n        3324, \n        3321, \n        3323, \n        3324, \n        3324, \n        3323, \n        3321, \n        3325, \n        3326, \n        3327, \n        3327, \n        3326, \n        3325, \n        3327, \n        3328, \n        3325, \n        3325, \n        3328, \n        3327, \n        3315, \n        3318, \n        3327, \n        3327, \n        3318, \n        3315, \n        3327, \n        3326, \n        3315, \n        3315, \n        3326, \n        3327, \n        3320, \n        3329, \n        3327, \n        3327, \n        3329, \n        3320, \n        3327, \n        3318, \n        3320, \n        3320, \n        3318, \n        3327, \n        3330, \n        3328, \n        3327, \n        3327, \n        3328, \n        3330, \n        3327, \n        3329, \n        3330, \n        3330, \n        3329, \n        3327, \n        3330, \n        3329, \n        3331, \n        3331, \n        3329, \n        3330, \n        3331, \n        3332, \n        3330, \n        3330, \n        3332, \n        3331, \n        3320, \n        3322, \n        3331, \n        3331, \n        3322, \n        3320, \n        3331, \n        3329, \n        3320, \n        3320, \n        3329, \n        3331, \n        3324, \n        3333, \n        3331, \n        3331, \n        3333, \n        3324, \n        3331, \n        3322, \n        3324, \n        3324, \n        3322, \n        3331, \n        3334, \n        3332, \n        3331, \n        3331, \n        3332, \n        3334, \n        3331, \n        3333, \n        3334, \n        3334, \n        3333, \n        3331, \n        3335, \n        3336, \n        3337, \n        3337, \n        3336, \n        3335, \n        3337, \n        3338, \n        3335, \n        3335, \n        3338, \n        3337, \n        3325, \n        3328, \n        3337, \n        3337, \n        3328, \n        3325, \n        3337, \n        3336, \n        3325, \n        3325, \n        3336, \n        3337, \n        3330, \n        3339, \n        3337, \n        3337, \n        3339, \n        3330, \n        3337, \n        3328, \n        3330, \n        3330, \n        3328, \n        3337, \n        3340, \n        3338, \n        3337, \n        3337, \n        3338, \n        3340, \n        3337, \n        3339, \n        3340, \n        3340, \n        3339, \n        3337, \n        3340, \n        3339, \n        3341, \n        3341, \n        3339, \n        3340, \n        3341, \n        3342, \n        3340, \n        3340, \n        3342, \n        3341, \n        3330, \n        3332, \n        3341, \n        3341, \n        3332, \n        3330, \n        3341, \n        3339, \n        3330, \n        3330, \n        3339, \n        3341, \n        3334, \n        3343, \n        3341, \n        3341, \n        3343, \n        3334, \n        3341, \n        3332, \n        3334, \n        3334, \n        3332, \n        3341, \n        3344, \n        3342, \n        3341, \n        3341, \n        3342, \n        3344, \n        3341, \n        3343, \n        3344, \n        3344, \n        3343, \n        3341, \n        3345, \n        3346, \n        3347, \n        3347, \n        3346, \n        3345, \n        3347, \n        3348, \n        3345, \n        3345, \n        3348, \n        3347, \n        3335, \n        3338, \n        3347, \n        3347, \n        3338, \n        3335, \n        3347, \n        3346, \n        3335, \n        3335, \n        3346, \n        3347, \n        3340, \n        3349, \n        3347, \n        3347, \n        3349, \n        3340, \n        3347, \n        3338, \n        3340, \n        3340, \n        3338, \n        3347, \n        3350, \n        3348, \n        3347, \n        3347, \n        3348, \n        3350, \n        3347, \n        3349, \n        3350, \n        3350, \n        3349, \n        3347, \n        3350, \n        3349, \n        3351, \n        3351, \n        3349, \n        3350, \n        3351, \n        3352, \n        3350, \n        3350, \n        3352, \n        3351, \n        3340, \n        3342, \n        3351, \n        3351, \n        3342, \n        3340, \n        3351, \n        3349, \n        3340, \n        3340, \n        3349, \n        3351, \n        3344, \n        3353, \n        3351, \n        3351, \n        3353, \n        3344, \n        3351, \n        3342, \n        3344, \n        3344, \n        3342, \n        3351, \n        3354, \n        3352, \n        3351, \n        3351, \n        3352, \n        3354, \n        3351, \n        3353, \n        3354, \n        3354, \n        3353, \n        3351, \n        3355, \n        3356, \n        3357, \n        3357, \n        3356, \n        3355, \n        3357, \n        3358, \n        3355, \n        3355, \n        3358, \n        3357, \n        3345, \n        3348, \n        3357, \n        3357, \n        3348, \n        3345, \n        3357, \n        3356, \n        3345, \n        3345, \n        3356, \n        3357, \n        3350, \n        3359, \n        3357, \n        3357, \n        3359, \n        3350, \n        3357, \n        3348, \n        3350, \n        3350, \n        3348, \n        3357, \n        3360, \n        3358, \n        3357, \n        3357, \n        3358, \n        3360, \n        3357, \n        3359, \n        3360, \n        3360, \n        3359, \n        3357, \n        3360, \n        3359, \n        3361, \n        3361, \n        3359, \n        3360, \n        3361, \n        3362, \n        3360, \n        3360, \n        3362, \n        3361, \n        3350, \n        3352, \n        3361, \n        3361, \n        3352, \n        3350, \n        3361, \n        3359, \n        3350, \n        3350, \n        3359, \n        3361, \n        3354, \n        3363, \n        3361, \n        3361, \n        3363, \n        3354, \n        3361, \n        3352, \n        3354, \n        3354, \n        3352, \n        3361, \n        3364, \n        3362, \n        3361, \n        3361, \n        3362, \n        3364, \n        3361, \n        3363, \n        3364, \n        3364, \n        3363, \n        3361, \n        3365, \n        3366, \n        3367, \n        3367, \n        3366, \n        3365, \n        3367, \n        3368, \n        3365, \n        3365, \n        3368, \n        3367, \n        3355, \n        3358, \n        3367, \n        3367, \n        3358, \n        3355, \n        3367, \n        3366, \n        3355, \n        3355, \n        3366, \n        3367, \n        3360, \n        3369, \n        3367, \n        3367, \n        3369, \n        3360, \n        3367, \n        3358, \n        3360, \n        3360, \n        3358, \n        3367, \n        3370, \n        3368, \n        3367, \n        3367, \n        3368, \n        3370, \n        3367, \n        3369, \n        3370, \n        3370, \n        3369, \n        3367, \n        3370, \n        3369, \n        3371, \n        3371, \n        3369, \n        3370, \n        3371, \n        3372, \n        3370, \n        3370, \n        3372, \n        3371, \n        3360, \n        3362, \n        3371, \n        3371, \n        3362, \n        3360, \n        3371, \n        3369, \n        3360, \n        3360, \n        3369, \n        3371, \n        3364, \n        3373, \n        3371, \n        3371, \n        3373, \n        3364, \n        3371, \n        3362, \n        3364, \n        3364, \n        3362, \n        3371, \n        3374, \n        3372, \n        3371, \n        3371, \n        3372, \n        3374, \n        3371, \n        3373, \n        3374, \n        3374, \n        3373, \n        3371, \n        3375, \n        3376, \n        3377, \n        3377, \n        3376, \n        3375, \n        3377, \n        3378, \n        3375, \n        3375, \n        3378, \n        3377, \n        3379, \n        3378, \n        3377, \n        3377, \n        3378, \n        3379, \n        3377, \n        3380, \n        3379, \n        3379, \n        3380, \n        3377, \n        3381, \n        3380, \n        3377, \n        3377, \n        3380, \n        3381, \n        3377, \n        3382, \n        3381, \n        3381, \n        3382, \n        3377, \n        3383, \n        3382, \n        3377, \n        3377, \n        3382, \n        3383, \n        3377, \n        3376, \n        3383, \n        3383, \n        3376, \n        3377, \n        3383, \n        3384, \n        3385, \n        3385, \n        3384, \n        3383, \n        3385, \n        3382, \n        3383, \n        3383, \n        3382, \n        3385, \n        3381, \n        3382, \n        3385, \n        3385, \n        3382, \n        3381, \n        3385, \n        3386, \n        3381, \n        3381, \n        3386, \n        3385, \n        3387, \n        3386, \n        3385, \n        3385, \n        3386, \n        3387, \n        3385, \n        3388, \n        3387, \n        3387, \n        3388, \n        3385, \n        3389, \n        3388, \n        3385, \n        3385, \n        3388, \n        3389, \n        3385, \n        3384, \n        3389, \n        3389, \n        3384, \n        3385, \n        3389, \n        3390, \n        3391, \n        3391, \n        3390, \n        3389, \n        3391, \n        3388, \n        3389, \n        3389, \n        3388, \n        3391, \n        3387, \n        3388, \n        3391, \n        3391, \n        3388, \n        3387, \n        3391, \n        3392, \n        3387, \n        3387, \n        3392, \n        3391, \n        3393, \n        3392, \n        3391, \n        3391, \n        3392, \n        3393, \n        3391, \n        3394, \n        3393, \n        3393, \n        3394, \n        3391, \n        3395, \n        3394, \n        3391, \n        3391, \n        3394, \n        3395, \n        3391, \n        3390, \n        3395, \n        3395, \n        3390, \n        3391, \n        3395, \n        3396, \n        3397, \n        3397, \n        3396, \n        3395, \n        3397, \n        3394, \n        3395, \n        3395, \n        3394, \n        3397, \n        3393, \n        3394, \n        3397, \n        3397, \n        3394, \n        3393, \n        3397, \n        3398, \n        3393, \n        3393, \n        3398, \n        3397, \n        3399, \n        3398, \n        3397, \n        3397, \n        3398, \n        3399, \n        3397, \n        3400, \n        3399, \n        3399, \n        3400, \n        3397, \n        3401, \n        3400, \n        3397, \n        3397, \n        3400, \n        3401, \n        3397, \n        3396, \n        3401, \n        3401, \n        3396, \n        3397, \n        3402, \n        3403, \n        3404, \n        3404, \n        3403, \n        3402, \n        3404, \n        3405, \n        3402, \n        3402, \n        3405, \n        3404, \n        3375, \n        3405, \n        3404, \n        3404, \n        3405, \n        3375, \n        3404, \n        3376, \n        3375, \n        3375, \n        3376, \n        3404, \n        3383, \n        3376, \n        3404, \n        3404, \n        3376, \n        3383, \n        3404, \n        3406, \n        3383, \n        3383, \n        3406, \n        3404, \n        3407, \n        3406, \n        3404, \n        3404, \n        3406, \n        3407, \n        3404, \n        3403, \n        3407, \n        3407, \n        3403, \n        3404, \n        3407, \n        3408, \n        3409, \n        3409, \n        3408, \n        3407, \n        3409, \n        3406, \n        3407, \n        3407, \n        3406, \n        3409, \n        3383, \n        3406, \n        3409, \n        3409, \n        3406, \n        3383, \n        3409, \n        3384, \n        3383, \n        3383, \n        3384, \n        3409, \n        3389, \n        3384, \n        3409, \n        3409, \n        3384, \n        3389, \n        3409, \n        3410, \n        3389, \n        3389, \n        3410, \n        3409, \n        3411, \n        3410, \n        3409, \n        3409, \n        3410, \n        3411, \n        3409, \n        3408, \n        3411, \n        3411, \n        3408, \n        3409, \n        3411, \n        3412, \n        3413, \n        3413, \n        3412, \n        3411, \n        3413, \n        3410, \n        3411, \n        3411, \n        3410, \n        3413, \n        3389, \n        3410, \n        3413, \n        3413, \n        3410, \n        3389, \n        3413, \n        3390, \n        3389, \n        3389, \n        3390, \n        3413, \n        3395, \n        3390, \n        3413, \n        3413, \n        3390, \n        3395, \n        3413, \n        3414, \n        3395, \n        3395, \n        3414, \n        3413, \n        3415, \n        3414, \n        3413, \n        3413, \n        3414, \n        3415, \n        3413, \n        3412, \n        3415, \n        3415, \n        3412, \n        3413, \n        3415, \n        3416, \n        3417, \n        3417, \n        3416, \n        3415, \n        3417, \n        3414, \n        3415, \n        3415, \n        3414, \n        3417, \n        3395, \n        3414, \n        3417, \n        3417, \n        3414, \n        3395, \n        3417, \n        3396, \n        3395, \n        3395, \n        3396, \n        3417, \n        3401, \n        3396, \n        3417, \n        3417, \n        3396, \n        3401, \n        3417, \n        3418, \n        3401, \n        3401, \n        3418, \n        3417, \n        3419, \n        3418, \n        3417, \n        3417, \n        3418, \n        3419, \n        3417, \n        3416, \n        3419, \n        3419, \n        3416, \n        3417, \n        3420, \n        3421, \n        3422, \n        3422, \n        3421, \n        3420, \n        3422, \n        3423, \n        3420, \n        3420, \n        3423, \n        3422, \n        3402, \n        3423, \n        3422, \n        3422, \n        3423, \n        3402, \n        3422, \n        3403, \n        3402, \n        3402, \n        3403, \n        3422, \n        3407, \n        3403, \n        3422, \n        3422, \n        3403, \n        3407, \n        3422, \n        3424, \n        3407, \n        3407, \n        3424, \n        3422, \n        3425, \n        3424, \n        3422, \n        3422, \n        3424, \n        3425, \n        3422, \n        3421, \n        3425, \n        3425, \n        3421, \n        3422, \n        3425, \n        3426, \n        3427, \n        3427, \n        3426, \n        3425, \n        3427, \n        3424, \n        3425, \n        3425, \n        3424, \n        3427, \n        3407, \n        3424, \n        3427, \n        3427, \n        3424, \n        3407, \n        3427, \n        3408, \n        3407, \n        3407, \n        3408, \n        3427, \n        3411, \n        3408, \n        3427, \n        3427, \n        3408, \n        3411, \n        3427, \n        3428, \n        3411, \n        3411, \n        3428, \n        3427, \n        3429, \n        3428, \n        3427, \n        3427, \n        3428, \n        3429, \n        3427, \n        3426, \n        3429, \n        3429, \n        3426, \n        3427, \n        3429, \n        3430, \n        3431, \n        3431, \n        3430, \n        3429, \n        3431, \n        3428, \n        3429, \n        3429, \n        3428, \n        3431, \n        3411, \n        3428, \n        3431, \n        3431, \n        3428, \n        3411, \n        3431, \n        3412, \n        3411, \n        3411, \n        3412, \n        3431, \n        3415, \n        3412, \n        3431, \n        3431, \n        3412, \n        3415, \n        3431, \n        3432, \n        3415, \n        3415, \n        3432, \n        3431, \n        3433, \n        3432, \n        3431, \n        3431, \n        3432, \n        3433, \n        3431, \n        3430, \n        3433, \n        3433, \n        3430, \n        3431, \n        3433, \n        3434, \n        3435, \n        3435, \n        3434, \n        3433, \n        3435, \n        3432, \n        3433, \n        3433, \n        3432, \n        3435, \n        3415, \n        3432, \n        3435, \n        3435, \n        3432, \n        3415, \n        3435, \n        3416, \n        3415, \n        3415, \n        3416, \n        3435, \n        3419, \n        3416, \n        3435, \n        3435, \n        3416, \n        3419, \n        3435, \n        3436, \n        3419, \n        3419, \n        3436, \n        3435, \n        3437, \n        3436, \n        3435, \n        3435, \n        3436, \n        3437, \n        3435, \n        3434, \n        3437, \n        3437, \n        3434, \n        3435, \n        3438, \n        3439, \n        3440, \n        3440, \n        3439, \n        3438, \n        3440, \n        3441, \n        3438, \n        3438, \n        3441, \n        3440, \n        3420, \n        3441, \n        3440, \n        3440, \n        3441, \n        3420, \n        3440, \n        3421, \n        3420, \n        3420, \n        3421, \n        3440, \n        3425, \n        3421, \n        3440, \n        3440, \n        3421, \n        3425, \n        3440, \n        3442, \n        3425, \n        3425, \n        3442, \n        3440, \n        3443, \n        3442, \n        3440, \n        3440, \n        3442, \n        3443, \n        3440, \n        3439, \n        3443, \n        3443, \n        3439, \n        3440, \n        3443, \n        3444, \n        3445, \n        3445, \n        3444, \n        3443, \n        3445, \n        3442, \n        3443, \n        3443, \n        3442, \n        3445, \n        3425, \n        3442, \n        3445, \n        3445, \n        3442, \n        3425, \n        3445, \n        3426, \n        3425, \n        3425, \n        3426, \n        3445, \n        3429, \n        3426, \n        3445, \n        3445, \n        3426, \n        3429, \n        3445, \n        3446, \n        3429, \n        3429, \n        3446, \n        3445, \n        3447, \n        3446, \n        3445, \n        3445, \n        3446, \n        3447, \n        3445, \n        3444, \n        3447, \n        3447, \n        3444, \n        3445, \n        3447, \n        3448, \n        3449, \n        3449, \n        3448, \n        3447, \n        3449, \n        3446, \n        3447, \n        3447, \n        3446, \n        3449, \n        3429, \n        3446, \n        3449, \n        3449, \n        3446, \n        3429, \n        3449, \n        3430, \n        3429, \n        3429, \n        3430, \n        3449, \n        3433, \n        3430, \n        3449, \n        3449, \n        3430, \n        3433, \n        3449, \n        3450, \n        3433, \n        3433, \n        3450, \n        3449, \n        3451, \n        3450, \n        3449, \n        3449, \n        3450, \n        3451, \n        3449, \n        3448, \n        3451, \n        3451, \n        3448, \n        3449, \n        3451, \n        3452, \n        3453, \n        3453, \n        3452, \n        3451, \n        3453, \n        3450, \n        3451, \n        3451, \n        3450, \n        3453, \n        3433, \n        3450, \n        3453, \n        3453, \n        3450, \n        3433, \n        3453, \n        3434, \n        3433, \n        3433, \n        3434, \n        3453, \n        3437, \n        3434, \n        3453, \n        3453, \n        3434, \n        3437, \n        3453, \n        3454, \n        3437, \n        3437, \n        3454, \n        3453, \n        3455, \n        3454, \n        3453, \n        3453, \n        3454, \n        3455, \n        3453, \n        3452, \n        3455, \n        3455, \n        3452, \n        3453, \n        3456, \n        3457, \n        3458, \n        3458, \n        3457, \n        3456, \n        3458, \n        3459, \n        3456, \n        3456, \n        3459, \n        3458, \n        3438, \n        3459, \n        3458, \n        3458, \n        3459, \n        3438, \n        3458, \n        3439, \n        3438, \n        3438, \n        3439, \n        3458, \n        3443, \n        3439, \n        3458, \n        3458, \n        3439, \n        3443, \n        3458, \n        3460, \n        3443, \n        3443, \n        3460, \n        3458, \n        3461, \n        3460, \n        3458, \n        3458, \n        3460, \n        3461, \n        3458, \n        3457, \n        3461, \n        3461, \n        3457, \n        3458, \n        3461, \n        3462, \n        3463, \n        3463, \n        3462, \n        3461, \n        3463, \n        3460, \n        3461, \n        3461, \n        3460, \n        3463, \n        3443, \n        3460, \n        3463, \n        3463, \n        3460, \n        3443, \n        3463, \n        3444, \n        3443, \n        3443, \n        3444, \n        3463, \n        3447, \n        3444, \n        3463, \n        3463, \n        3444, \n        3447, \n        3463, \n        3464, \n        3447, \n        3447, \n        3464, \n        3463, \n        3465, \n        3464, \n        3463, \n        3463, \n        3464, \n        3465, \n        3463, \n        3462, \n        3465, \n        3465, \n        3462, \n        3463, \n        3465, \n        3466, \n        3467, \n        3467, \n        3466, \n        3465, \n        3467, \n        3464, \n        3465, \n        3465, \n        3464, \n        3467, \n        3447, \n        3464, \n        3467, \n        3467, \n        3464, \n        3447, \n        3467, \n        3448, \n        3447, \n        3447, \n        3448, \n        3467, \n        3451, \n        3448, \n        3467, \n        3467, \n        3448, \n        3451, \n        3467, \n        3468, \n        3451, \n        3451, \n        3468, \n        3467, \n        3469, \n        3468, \n        3467, \n        3467, \n        3468, \n        3469, \n        3467, \n        3466, \n        3469, \n        3469, \n        3466, \n        3467, \n        3469, \n        3470, \n        3471, \n        3471, \n        3470, \n        3469, \n        3471, \n        3468, \n        3469, \n        3469, \n        3468, \n        3471, \n        3451, \n        3468, \n        3471, \n        3471, \n        3468, \n        3451, \n        3471, \n        3452, \n        3451, \n        3451, \n        3452, \n        3471, \n        3455, \n        3452, \n        3471, \n        3471, \n        3452, \n        3455, \n        3471, \n        3472, \n        3455, \n        3455, \n        3472, \n        3471, \n        3473, \n        3472, \n        3471, \n        3471, \n        3472, \n        3473, \n        3471, \n        3470, \n        3473, \n        3473, \n        3470, \n        3471, \n        3474, \n        3475, \n        3476, \n        3476, \n        3475, \n        3474, \n        3476, \n        3477, \n        3474, \n        3474, \n        3477, \n        3476, \n        3456, \n        3477, \n        3476, \n        3476, \n        3477, \n        3456, \n        3476, \n        3457, \n        3456, \n        3456, \n        3457, \n        3476, \n        3461, \n        3457, \n        3476, \n        3476, \n        3457, \n        3461, \n        3476, \n        3478, \n        3461, \n        3461, \n        3478, \n        3476, \n        3479, \n        3478, \n        3476, \n        3476, \n        3478, \n        3479, \n        3476, \n        3475, \n        3479, \n        3479, \n        3475, \n        3476, \n        3479, \n        3480, \n        3481, \n        3481, \n        3480, \n        3479, \n        3481, \n        3478, \n        3479, \n        3479, \n        3478, \n        3481, \n        3461, \n        3478, \n        3481, \n        3481, \n        3478, \n        3461, \n        3481, \n        3462, \n        3461, \n        3461, \n        3462, \n        3481, \n        3465, \n        3462, \n        3481, \n        3481, \n        3462, \n        3465, \n        3481, \n        3482, \n        3465, \n        3465, \n        3482, \n        3481, \n        3483, \n        3482, \n        3481, \n        3481, \n        3482, \n        3483, \n        3481, \n        3480, \n        3483, \n        3483, \n        3480, \n        3481, \n        3483, \n        3484, \n        3485, \n        3485, \n        3484, \n        3483, \n        3485, \n        3482, \n        3483, \n        3483, \n        3482, \n        3485, \n        3465, \n        3482, \n        3485, \n        3485, \n        3482, \n        3465, \n        3485, \n        3466, \n        3465, \n        3465, \n        3466, \n        3485, \n        3469, \n        3466, \n        3485, \n        3485, \n        3466, \n        3469, \n        3485, \n        3486, \n        3469, \n        3469, \n        3486, \n        3485, \n        3487, \n        3486, \n        3485, \n        3485, \n        3486, \n        3487, \n        3485, \n        3484, \n        3487, \n        3487, \n        3484, \n        3485, \n        3487, \n        3488, \n        3489, \n        3489, \n        3488, \n        3487, \n        3489, \n        3486, \n        3487, \n        3487, \n        3486, \n        3489, \n        3469, \n        3486, \n        3489, \n        3489, \n        3486, \n        3469, \n        3489, \n        3470, \n        3469, \n        3469, \n        3470, \n        3489, \n        3473, \n        3470, \n        3489, \n        3489, \n        3470, \n        3473, \n        3489, \n        3490, \n        3473, \n        3473, \n        3490, \n        3489, \n        3491, \n        3490, \n        3489, \n        3489, \n        3490, \n        3491, \n        3489, \n        3488, \n        3491, \n        3491, \n        3488, \n        3489, \n        3492, \n        3493, \n        3494, \n        3494, \n        3493, \n        3492, \n        3494, \n        3495, \n        3492, \n        3492, \n        3495, \n        3494, \n        3474, \n        3495, \n        3494, \n        3494, \n        3495, \n        3474, \n        3494, \n        3475, \n        3474, \n        3474, \n        3475, \n        3494, \n        3479, \n        3475, \n        3494, \n        3494, \n        3475, \n        3479, \n        3494, \n        3496, \n        3479, \n        3479, \n        3496, \n        3494, \n        3497, \n        3496, \n        3494, \n        3494, \n        3496, \n        3497, \n        3494, \n        3493, \n        3497, \n        3497, \n        3493, \n        3494, \n        3497, \n        3498, \n        3499, \n        3499, \n        3498, \n        3497, \n        3499, \n        3496, \n        3497, \n        3497, \n        3496, \n        3499, \n        3479, \n        3496, \n        3499, \n        3499, \n        3496, \n        3479, \n        3499, \n        3480, \n        3479, \n        3479, \n        3480, \n        3499, \n        3483, \n        3480, \n        3499, \n        3499, \n        3480, \n        3483, \n        3499, \n        3500, \n        3483, \n        3483, \n        3500, \n        3499, \n        3501, \n        3500, \n        3499, \n        3499, \n        3500, \n        3501, \n        3499, \n        3498, \n        3501, \n        3501, \n        3498, \n        3499, \n        3501, \n        3502, \n        3503, \n        3503, \n        3502, \n        3501, \n        3503, \n        3500, \n        3501, \n        3501, \n        3500, \n        3503, \n        3483, \n        3500, \n        3503, \n        3503, \n        3500, \n        3483, \n        3503, \n        3484, \n        3483, \n        3483, \n        3484, \n        3503, \n        3487, \n        3484, \n        3503, \n        3503, \n        3484, \n        3487, \n        3503, \n        3504, \n        3487, \n        3487, \n        3504, \n        3503, \n        3505, \n        3504, \n        3503, \n        3503, \n        3504, \n        3505, \n        3503, \n        3502, \n        3505, \n        3505, \n        3502, \n        3503, \n        3505, \n        3506, \n        3507, \n        3507, \n        3506, \n        3505, \n        3507, \n        3504, \n        3505, \n        3505, \n        3504, \n        3507, \n        3487, \n        3504, \n        3507, \n        3507, \n        3504, \n        3487, \n        3507, \n        3488, \n        3487, \n        3487, \n        3488, \n        3507, \n        3491, \n        3488, \n        3507, \n        3507, \n        3488, \n        3491, \n        3507, \n        3508, \n        3491, \n        3491, \n        3508, \n        3507, \n        3509, \n        3508, \n        3507, \n        3507, \n        3508, \n        3509, \n        3507, \n        3506, \n        3509, \n        3509, \n        3506, \n        3507, \n        3510, \n        3511, \n        3512, \n        3512, \n        3511, \n        3510, \n        3512, \n        3513, \n        3510, \n        3510, \n        3513, \n        3512, \n        3492, \n        3513, \n        3512, \n        3512, \n        3513, \n        3492, \n        3512, \n        3493, \n        3492, \n        3492, \n        3493, \n        3512, \n        3497, \n        3493, \n        3512, \n        3512, \n        3493, \n        3497, \n        3512, \n        3514, \n        3497, \n        3497, \n        3514, \n        3512, \n        3515, \n        3514, \n        3512, \n        3512, \n        3514, \n        3515, \n        3512, \n        3511, \n        3515, \n        3515, \n        3511, \n        3512, \n        3515, \n        3516, \n        3517, \n        3517, \n        3516, \n        3515, \n        3517, \n        3514, \n        3515, \n        3515, \n        3514, \n        3517, \n        3497, \n        3514, \n        3517, \n        3517, \n        3514, \n        3497, \n        3517, \n        3498, \n        3497, \n        3497, \n        3498, \n        3517, \n        3501, \n        3498, \n        3517, \n        3517, \n        3498, \n        3501, \n        3517, \n        3518, \n        3501, \n        3501, \n        3518, \n        3517, \n        3519, \n        3518, \n        3517, \n        3517, \n        3518, \n        3519, \n        3517, \n        3516, \n        3519, \n        3519, \n        3516, \n        3517, \n        3519, \n        3520, \n        3521, \n        3521, \n        3520, \n        3519, \n        3521, \n        3518, \n        3519, \n        3519, \n        3518, \n        3521, \n        3501, \n        3518, \n        3521, \n        3521, \n        3518, \n        3501, \n        3521, \n        3502, \n        3501, \n        3501, \n        3502, \n        3521, \n        3505, \n        3502, \n        3521, \n        3521, \n        3502, \n        3505, \n        3521, \n        3522, \n        3505, \n        3505, \n        3522, \n        3521, \n        3523, \n        3522, \n        3521, \n        3521, \n        3522, \n        3523, \n        3521, \n        3520, \n        3523, \n        3523, \n        3520, \n        3521, \n        3523, \n        3524, \n        3525, \n        3525, \n        3524, \n        3523, \n        3525, \n        3522, \n        3523, \n        3523, \n        3522, \n        3525, \n        3505, \n        3522, \n        3525, \n        3525, \n        3522, \n        3505, \n        3525, \n        3506, \n        3505, \n        3505, \n        3506, \n        3525, \n        3509, \n        3506, \n        3525, \n        3525, \n        3506, \n        3509, \n        3525, \n        3526, \n        3509, \n        3509, \n        3526, \n        3525, \n        3527, \n        3526, \n        3525, \n        3525, \n        3526, \n        3527, \n        3525, \n        3524, \n        3527, \n        3527, \n        3524, \n        3525, \n        3528, \n        3529, \n        3530, \n        3530, \n        3529, \n        3528, \n        3530, \n        3531, \n        3528, \n        3528, \n        3531, \n        3530, \n        3510, \n        3531, \n        3530, \n        3530, \n        3531, \n        3510, \n        3530, \n        3511, \n        3510, \n        3510, \n        3511, \n        3530, \n        3515, \n        3511, \n        3530, \n        3530, \n        3511, \n        3515, \n        3530, \n        3532, \n        3515, \n        3515, \n        3532, \n        3530, \n        3533, \n        3532, \n        3530, \n        3530, \n        3532, \n        3533, \n        3530, \n        3529, \n        3533, \n        3533, \n        3529, \n        3530, \n        3533, \n        3534, \n        3535, \n        3535, \n        3534, \n        3533, \n        3535, \n        3532, \n        3533, \n        3533, \n        3532, \n        3535, \n        3515, \n        3532, \n        3535, \n        3535, \n        3532, \n        3515, \n        3535, \n        3516, \n        3515, \n        3515, \n        3516, \n        3535, \n        3519, \n        3516, \n        3535, \n        3535, \n        3516, \n        3519, \n        3535, \n        3536, \n        3519, \n        3519, \n        3536, \n        3535, \n        3537, \n        3536, \n        3535, \n        3535, \n        3536, \n        3537, \n        3535, \n        3534, \n        3537, \n        3537, \n        3534, \n        3535, \n        3537, \n        3538, \n        3539, \n        3539, \n        3538, \n        3537, \n        3539, \n        3536, \n        3537, \n        3537, \n        3536, \n        3539, \n        3519, \n        3536, \n        3539, \n        3539, \n        3536, \n        3519, \n        3539, \n        3520, \n        3519, \n        3519, \n        3520, \n        3539, \n        3523, \n        3520, \n        3539, \n        3539, \n        3520, \n        3523, \n        3539, \n        3540, \n        3523, \n        3523, \n        3540, \n        3539, \n        3541, \n        3540, \n        3539, \n        3539, \n        3540, \n        3541, \n        3539, \n        3538, \n        3541, \n        3541, \n        3538, \n        3539, \n        3541, \n        3542, \n        3543, \n        3543, \n        3542, \n        3541, \n        3543, \n        3540, \n        3541, \n        3541, \n        3540, \n        3543, \n        3523, \n        3540, \n        3543, \n        3543, \n        3540, \n        3523, \n        3543, \n        3524, \n        3523, \n        3523, \n        3524, \n        3543, \n        3527, \n        3524, \n        3543, \n        3543, \n        3524, \n        3527, \n        3543, \n        3544, \n        3527, \n        3527, \n        3544, \n        3543, \n        3545, \n        3544, \n        3543, \n        3543, \n        3544, \n        3545, \n        3543, \n        3542, \n        3545, \n        3545, \n        3542, \n        3543, \n        3546, \n        3547, \n        3548, \n        3548, \n        3547, \n        3546, \n        3548, \n        3549, \n        3546, \n        3546, \n        3549, \n        3548, \n        3528, \n        3549, \n        3548, \n        3548, \n        3549, \n        3528, \n        3548, \n        3529, \n        3528, \n        3528, \n        3529, \n        3548, \n        3533, \n        3529, \n        3548, \n        3548, \n        3529, \n        3533, \n        3548, \n        3550, \n        3533, \n        3533, \n        3550, \n        3548, \n        3551, \n        3550, \n        3548, \n        3548, \n        3550, \n        3551, \n        3548, \n        3547, \n        3551, \n        3551, \n        3547, \n        3548, \n        3551, \n        3552, \n        3553, \n        3553, \n        3552, \n        3551, \n        3553, \n        3550, \n        3551, \n        3551, \n        3550, \n        3553, \n        3533, \n        3550, \n        3553, \n        3553, \n        3550, \n        3533, \n        3553, \n        3534, \n        3533, \n        3533, \n        3534, \n        3553, \n        3537, \n        3534, \n        3553, \n        3553, \n        3534, \n        3537, \n        3553, \n        3554, \n        3537, \n        3537, \n        3554, \n        3553, \n        3555, \n        3554, \n        3553, \n        3553, \n        3554, \n        3555, \n        3553, \n        3552, \n        3555, \n        3555, \n        3552, \n        3553, \n        3555, \n        3556, \n        3557, \n        3557, \n        3556, \n        3555, \n        3557, \n        3554, \n        3555, \n        3555, \n        3554, \n        3557, \n        3537, \n        3554, \n        3557, \n        3557, \n        3554, \n        3537, \n        3557, \n        3538, \n        3537, \n        3537, \n        3538, \n        3557, \n        3541, \n        3538, \n        3557, \n        3557, \n        3538, \n        3541, \n        3557, \n        3558, \n        3541, \n        3541, \n        3558, \n        3557, \n        3559, \n        3558, \n        3557, \n        3557, \n        3558, \n        3559, \n        3557, \n        3556, \n        3559, \n        3559, \n        3556, \n        3557, \n        3559, \n        3560, \n        3561, \n        3561, \n        3560, \n        3559, \n        3561, \n        3558, \n        3559, \n        3559, \n        3558, \n        3561, \n        3541, \n        3558, \n        3561, \n        3561, \n        3558, \n        3541, \n        3561, \n        3542, \n        3541, \n        3541, \n        3542, \n        3561, \n        3545, \n        3542, \n        3561, \n        3561, \n        3542, \n        3545, \n        3561, \n        3562, \n        3545, \n        3545, \n        3562, \n        3561, \n        3563, \n        3562, \n        3561, \n        3561, \n        3562, \n        3563, \n        3561, \n        3560, \n        3563, \n        3563, \n        3560, \n        3561, \n        3564, \n        3565, \n        3566, \n        3566, \n        3565, \n        3564, \n        3566, \n        3567, \n        3564, \n        3564, \n        3567, \n        3566, \n        3546, \n        3567, \n        3566, \n        3566, \n        3567, \n        3546, \n        3566, \n        3547, \n        3546, \n        3546, \n        3547, \n        3566, \n        3551, \n        3547, \n        3566, \n        3566, \n        3547, \n        3551, \n        3566, \n        3568, \n        3551, \n        3551, \n        3568, \n        3566, \n        3569, \n        3568, \n        3566, \n        3566, \n        3568, \n        3569, \n        3566, \n        3565, \n        3569, \n        3569, \n        3565, \n        3566, \n        3569, \n        3570, \n        3571, \n        3571, \n        3570, \n        3569, \n        3571, \n        3568, \n        3569, \n        3569, \n        3568, \n        3571, \n        3551, \n        3568, \n        3571, \n        3571, \n        3568, \n        3551, \n        3571, \n        3552, \n        3551, \n        3551, \n        3552, \n        3571, \n        3555, \n        3552, \n        3571, \n        3571, \n        3552, \n        3555, \n        3571, \n        3572, \n        3555, \n        3555, \n        3572, \n        3571, \n        3573, \n        3572, \n        3571, \n        3571, \n        3572, \n        3573, \n        3571, \n        3570, \n        3573, \n        3573, \n        3570, \n        3571, \n        3573, \n        3574, \n        3575, \n        3575, \n        3574, \n        3573, \n        3575, \n        3572, \n        3573, \n        3573, \n        3572, \n        3575, \n        3555, \n        3572, \n        3575, \n        3575, \n        3572, \n        3555, \n        3575, \n        3556, \n        3555, \n        3555, \n        3556, \n        3575, \n        3559, \n        3556, \n        3575, \n        3575, \n        3556, \n        3559, \n        3575, \n        3576, \n        3559, \n        3559, \n        3576, \n        3575, \n        3577, \n        3576, \n        3575, \n        3575, \n        3576, \n        3577, \n        3575, \n        3574, \n        3577, \n        3577, \n        3574, \n        3575, \n        3577, \n        3578, \n        3579, \n        3579, \n        3578, \n        3577, \n        3579, \n        3576, \n        3577, \n        3577, \n        3576, \n        3579, \n        3559, \n        3576, \n        3579, \n        3579, \n        3576, \n        3559, \n        3579, \n        3560, \n        3559, \n        3559, \n        3560, \n        3579, \n        3563, \n        3560, \n        3579, \n        3579, \n        3560, \n        3563, \n        3579, \n        3580, \n        3563, \n        3563, \n        3580, \n        3579, \n        3581, \n        3580, \n        3579, \n        3579, \n        3580, \n        3581, \n        3579, \n        3578, \n        3581, \n        3581, \n        3578, \n        3579, \n        3582, \n        3583, \n        3584, \n        3584, \n        3583, \n        3582, \n        3584, \n        3585, \n        3582, \n        3582, \n        3585, \n        3584, \n        3564, \n        3585, \n        3584, \n        3584, \n        3585, \n        3564, \n        3584, \n        3565, \n        3564, \n        3564, \n        3565, \n        3584, \n        3569, \n        3565, \n        3584, \n        3584, \n        3565, \n        3569, \n        3584, \n        3586, \n        3569, \n        3569, \n        3586, \n        3584, \n        3587, \n        3586, \n        3584, \n        3584, \n        3586, \n        3587, \n        3584, \n        3583, \n        3587, \n        3587, \n        3583, \n        3584, \n        3587, \n        3588, \n        3589, \n        3589, \n        3588, \n        3587, \n        3589, \n        3586, \n        3587, \n        3587, \n        3586, \n        3589, \n        3569, \n        3586, \n        3589, \n        3589, \n        3586, \n        3569, \n        3589, \n        3570, \n        3569, \n        3569, \n        3570, \n        3589, \n        3573, \n        3570, \n        3589, \n        3589, \n        3570, \n        3573, \n        3589, \n        3590, \n        3573, \n        3573, \n        3590, \n        3589, \n        3591, \n        3590, \n        3589, \n        3589, \n        3590, \n        3591, \n        3589, \n        3588, \n        3591, \n        3591, \n        3588, \n        3589, \n        3591, \n        3592, \n        3593, \n        3593, \n        3592, \n        3591, \n        3593, \n        3590, \n        3591, \n        3591, \n        3590, \n        3593, \n        3573, \n        3590, \n        3593, \n        3593, \n        3590, \n        3573, \n        3593, \n        3574, \n        3573, \n        3573, \n        3574, \n        3593, \n        3577, \n        3574, \n        3593, \n        3593, \n        3574, \n        3577, \n        3593, \n        3594, \n        3577, \n        3577, \n        3594, \n        3593, \n        3595, \n        3594, \n        3593, \n        3593, \n        3594, \n        3595, \n        3593, \n        3592, \n        3595, \n        3595, \n        3592, \n        3593, \n        3595, \n        3596, \n        3597, \n        3597, \n        3596, \n        3595, \n        3597, \n        3594, \n        3595, \n        3595, \n        3594, \n        3597, \n        3577, \n        3594, \n        3597, \n        3597, \n        3594, \n        3577, \n        3597, \n        3578, \n        3577, \n        3577, \n        3578, \n        3597, \n        3581, \n        3578, \n        3597, \n        3597, \n        3578, \n        3581, \n        3597, \n        3598, \n        3581, \n        3581, \n        3598, \n        3597, \n        3599, \n        3598, \n        3597, \n        3597, \n        3598, \n        3599, \n        3597, \n        3596, \n        3599, \n        3599, \n        3596, \n        3597\n    ], \n    \"influences\": [\n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ], \n        [\n            1.0, \n            0\n        ]\n    ], \n    \"morphTargets\": {}, \n    \"normals\": [\n        -0.89270740747499999, \n        0.41587638854999998, \n        -0.17180210351899999, \n        -0.83009928464899996, \n        0.49572825431799999, \n        -0.254135191441, \n        -0.76117604970899999, \n        0.58247601985899999, \n        -0.28412720560999999, \n        -0.84718513488799996, \n        0.50462156534199998, \n        -0.164408370852, \n        -0.74937766790399996, \n        0.56340783834499997, \n        -0.34698820114099999, \n        -0.68020051717800001, \n        0.63914895057700005, \n        -0.358065843582, \n        -0.45325711369499999, \n        0.80859577655799997, \n        -0.37433493137399998, \n        -0.54241013526899995, \n        0.78347837924999997, \n        -0.302240759134, \n        -0.64746642112700004, \n        0.74430716037800004, \n        -0.16183111071600001, \n        -0.30557069182399998, \n        0.89928740262999995, \n        -0.311936795712, \n        -0.411720633507, \n        0.89747595787000001, \n        -0.15626779198599999, \n        -0.11385161429600001, \n        0.92802274227100001, \n        -0.35384818911600002, \n        -0.050565026700499997, \n        0.93169462680799997, \n        -0.35886564850800001, \n        -0.25020742416399999, \n        0.899825274944, \n        -0.356519281864, \n        -0.37000623345400002, \n        0.91476166248299995, \n        -0.16031858325000001, \n        -0.95663803815799997, \n        0.28878876566900002, \n        -0.028985738754300001, \n        -0.93742787837999997, \n        0.34056615829499998, \n        -0.068123325705500004, \n        -0.89739799499499995, \n        0.43490362167399998, \n        -0.070230066776300004, \n        -0.92583042383199998, \n        0.37701708078399998, \n        -0.0095913559198400004, \n        -0.72844302654299997, \n        0.682779788971, \n        -0.050781369209300001, \n        -0.77818590402599996, \n        0.62723356485399995, \n        0.020011186599700002, \n        -0.49541532993300003, \n        0.86753392219500003, \n        -0.036671668291100003, \n        -0.55348581075699999, \n        0.83174979686700001, \n        0.035242170095399997, \n        -0.42650717496899998, \n        0.90269434452099995, \n        -0.051282525062599997, \n        -0.483186036348, \n        0.874329864979, \n        0.038411140441899999, \n        -0.97657203674299997, \n        0.199113845825, \n        0.0778284966946, \n        -0.97103166580199995, \n        0.23567581176800001, \n        0.030819088220600001, \n        -0.94320410489999995, \n        0.32854175567600002, \n        0.042695015668900001, \n        -0.95237636566200001, \n        0.284877955914, \n        0.10592000931499999, \n        -0.81027925014500002, \n        0.58039170503600002, \n        0.077394306659699999, \n        -0.827706992626, \n        0.53892123699200001, \n        0.15447233617299999, \n        -0.59799641370800005, \n        0.79573059081999997, \n        0.092786580324199994, \n        -0.62691360712099997, \n        0.75724720954900004, \n        0.18152913451200001, \n        -0.52412468194999995, \n        0.84757900237999995, \n        0.079367816448199999, \n        -0.55301797389999996, \n        0.81074112653700003, \n        0.19043546915099999, \n        -0.96674400567999996, \n        0.122439011931, \n        0.22318257391499999, \n        -0.97556638717699995, \n        0.15849311649799999, \n        0.150152638555, \n        -0.95042395591700002, \n        0.24698540568399999, \n        0.187322437763, \n        -0.94015306234399998, \n        0.20501707494300001, \n        0.27106410265000003, \n        -0.829615414143, \n        0.49254924058900001, \n        0.26178193092300001, \n        -0.81640946865099995, \n        0.442231416702, \n        0.370546102524, \n        -0.63212907314300004, \n        0.71038544177999996, \n        0.308481842279, \n        -0.62327772378900004, \n        0.648644089699, \n        0.43609824776599998, \n        -0.56253004074099999, \n        0.76036536693599999, \n        0.32372820377299999, \n        -0.55230814218500002, \n        0.69638663530300005, \n        0.45759981870700001, \n        -0.93037694692600004, \n        0.0486581027508, \n        0.362528473139, \n        -0.95234143733999999, \n        0.087110981345199998, \n        0.29129803180699998, \n        -0.92126971483200004, \n        0.163950502872, \n        0.35182273387899998, \n        -0.89605540037200004, \n        0.12086248397799999, \n        0.42646616697299999, \n        -0.79259264469099999, \n        0.38540363311800002, \n        0.47186648845700002, \n        -0.75860381126400001, \n        0.32727614045100001, \n        0.56285595893899998, \n        -0.59927600622199995, \n        0.58066457510000002, \n        0.55053871870000004, \n        -0.56646388769099998, \n        0.50428569316899996, \n        0.65131425857500003, \n        -0.52990794181800005, \n        0.61989778280300001, \n        0.57820433378199998, \n        -0.49603518843700001, \n        0.54165142774599995, \n        0.67820221185700003, \n        -0.87263637781100001, \n        -0.025100618600800002, \n        0.48710587620700002, \n        -0.90626627206800003, \n        0.0168462991714, \n        0.42165663838400003, \n        -0.86422497034099999, \n        0.077764496207199996, \n        0.49645203352, \n        -0.82772803306599996, \n        0.032769411802300003, \n        0.55963194370299996, \n        -0.71813106536899995, \n        0.26428520679500001, \n        0.64330166578299997, \n        -0.67223501205400005, \n        0.201177239418, \n        0.71205586195000004, \n        -0.52566528320299999, \n        0.42585933208499999, \n        0.73601365089399995, \n        -0.48128163814500002, \n        0.34377315640400002, \n        0.805967569351, \n        -0.45634415745700002, \n        0.45244228839900003, \n        0.76579475402800001, \n        -0.412647396326, \n        0.37018117308600001, \n        0.83191573619799997, \n        -0.79570066928899996, \n        -0.100495651364, \n        0.59678876400000003, \n        -0.84058612585100001, \n        -0.054666399955700003, \n        0.538352370262, \n        -0.78614550828899998, \n        -0.012274384498600001, \n        0.61743158101999995, \n        -0.74045330286, \n        -0.059228032827400003, \n        0.66904187202499998, \n        -0.62267196178399997, \n        0.13474330306099999, \n        0.77040326595300002, \n        -0.571089506149, \n        0.069130212068599997, \n        0.81760299205800002, \n        -0.434211850166, \n        0.26187986135500002, \n        0.86155372858000001, \n        -0.38641530275300001, \n        0.17856901884099999, \n        0.90453976392699997, \n        -0.36728605628, \n        0.27795308828400001, \n        0.88726502656899997, \n        -0.321924746037, \n        0.195644974709, \n        0.92600429058099998, \n        -0.69764232635500001, \n        -0.17914688587200001, \n        0.69325160980199996, \n        -0.75570178031900004, \n        -0.12807026505499999, \n        0.641801118851, \n        -0.69024747610100001, \n        -0.10601797699899999, \n        0.71534192562099996, \n        -0.63502317666999997, \n        -0.15547004342099999, \n        0.75628757476800001, \n        -0.51665598154100001, \n        0.00026389956474299998, \n        0.85584056377399997, \n        -0.462078422308, \n        -0.066950201988199995, \n        0.883967041969, \n        -0.338689684868, \n        0.095782727003100004, \n        0.93568742275200001, \n        -0.29120105504999999, \n        0.011573374271400001, \n        0.95627617836000001, \n        -0.27691638469699997, \n        0.103584676981, \n        0.95497858524300006, \n        -0.23335351049899999, \n        0.020880103111300001, \n        0.97185742855099999, \n        -0.57165729999500003, \n        -0.26399528980300002, \n        0.77647244930299997, \n        -0.64726048707999995, \n        -0.20471018552799999, \n        0.73385530710199998, \n        -0.57477736473100005, \n        -0.204593241215, \n        0.79193979501699996, \n        -0.50734674930599999, \n        -0.25796014070500001, \n        0.82185882329899995, \n        -0.40389603376400002, \n        -0.13880512118300001, \n        0.90387892723100005, \n        -0.34649437665900001, \n        -0.20783019065899999, \n        0.91440880298600002, \n        -0.244954019785, \n        -0.072382092475899995, \n        0.966516137123, \n        -0.19920583069299999, \n        -0.158864974976, \n        0.96668207645399995, \n        -0.19102630019200001, \n        -0.071630120277399997, \n        0.97865939140299996, \n        -0.15069849789100001, \n        -0.15629181265799999, \n        0.97583723068200001, \n        -0.40854659676600003, \n        -0.35878264904000001, \n        0.83890461921699999, \n        -0.50567126274100005, \n        -0.28739219903899998, \n        0.81307941675200002, \n        -0.43388095498099999, \n        -0.31061819195700002, \n        0.84537565708200002, \n        -0.35118791460999998, \n        -0.36971431970599999, \n        0.85986822843599997, \n        -0.28423914313300003, \n        -0.28380927443499998, \n        0.91545450687399998, \n        -0.223521500826, \n        -0.35483387112600001, \n        0.90748393535600003, \n        -0.15539206564399999, \n        -0.24480110406899999, \n        0.95672506093999998, \n        -0.112691968679, \n        -0.33430600166300001, \n        0.93538045883200005, \n        -0.11233206838400001, \n        -0.25050032138799999, \n        0.961263656616, \n        -0.076778508722799996, \n        -0.33759203553200001, \n        0.93783473968499997, \n        -0.20679754018800001, \n        -0.46496057510400002, \n        0.86049008369400004, \n        -0.32013729214699999, \n        -0.37909251451499998, \n        0.86786991357800003, \n        -0.262459725142, \n        -0.42662316560699998, \n        0.86516171693800004, \n        -0.166857600212, \n        -0.49206036329300001, \n        0.85406702756899999, \n        -0.15825620293600001, \n        -0.43530648946799999, \n        0.88592344522499999, \n        -0.095772080123399994, \n        -0.50713384151499996, \n        0.85617744922600003, \n        -0.073084525764, \n        -0.42147475481000002, \n        0.90355604886999996, \n        -0.036608044058100003, \n        -0.51205933094, \n        0.85781788826000005, \n        -0.044631518423599997, \n        -0.432880222797, \n        0.900010168552, \n        -0.017123527824899999, \n        -0.51999896764800002, \n        0.85364216566100004, \n        -0.037665221840100002, \n        -0.51059877872500004, \n        0.858642697334, \n        -0.095804572105399999, \n        -0.46259230375299998, \n        0.88103693723700005, \n        -0.072310365736500001, \n        -0.52883625030500003, \n        0.84528064727800001, \n        0.01328758616, \n        -0.52864533662799995, \n        0.84838277101500004, \n        -0.037611637264500002, \n        -0.56752157211300003, \n        0.82213175296800001, \n        -0.0062339766882400002, \n        -0.57963991165200002, \n        0.81447803974199995, \n        -0.0077221076935500002, \n        -0.57332277298000001, \n        0.81892466545099996, \n        0.0140203656629, \n        -0.59266102314000002, \n        0.80495488643599999, \n        0.0016002266202100001, \n        -0.58455836772900005, \n        0.81097805499999998, \n        0.0090875551104500005, \n        -0.59685373306300005, \n        0.80192184448199999, \n        -0.83906763792000005, \n        0.53816443681699999, \n        -0.075771048664999993, \n        -0.857806921005, \n        0.47743979096400002, \n        -0.18871799111400001, \n        -0.80886471271500004, \n        0.55584710836399998, \n        -0.190181553364, \n        -0.788292884827, \n        0.60952985286700001, \n        -0.080395400524100005, \n        -0.86675620079000004, \n        0.44604730606100002, \n        -0.22174501419100001, \n        -0.80961346626300001, \n        0.53911018371599995, \n        -0.23083026707199999, \n        -0.59983581304599998, \n        0.76013642549500005, \n        -0.24856692552599999, \n        -0.62063753604899996, \n        0.75956857204399997, \n        -0.193030685186, \n        -0.62009769678100002, \n        0.78077417612099997, \n        -0.072579979896500002, \n        -0.37229454517400001, \n        0.90517961978899997, \n        -0.203574538231, \n        -0.39276036620100002, \n        0.91631728410699997, \n        -0.074155688285800006, \n        -0.35746601223899999, \n        0.89854562282600003, \n        -0.25343739986399999, \n        -0.28046229481700002, \n        0.92509263753899995, \n        -0.25483304262200002, \n        -0.28553375601800002, \n        0.93428885936700001, \n        -0.212061971426, \n        -0.29160794615699998, \n        0.95310914516400003, \n        -0.077100753784200005, \n        -0.80942547321299996, \n        0.57704365253400003, \n        0.106046944857, \n        -0.82802194356900005, \n        0.55958998203300003, \n        0.025217056274400001, \n        -0.77558869123499996, \n        0.62980473041499996, \n        0.034700006246600003, \n        -0.75846189260499997, \n        0.64075148105599999, \n        0.116486847401, \n        -0.60509526729600005, \n        0.793601334095, \n        0.058756649494200001, \n        -0.58607697486900001, \n        0.79737710952800001, \n        0.141774177551, \n        -0.387889832258, \n        0.91912442445800002, \n        0.064402222633399994, \n        -0.37698611617099997, \n        0.91321921348599999, \n        0.15267086029099999, \n        -0.29957151412999999, \n        0.95179551839800003, \n        0.061135828495000002, \n        -0.29851084947599998, \n        0.94217443466200002, \n        0.15031459927599999, \n        -0.77540278434800003, \n        0.59285593032799999, \n        0.21602877974500001, \n        -0.79294151067700003, \n        0.58971589803699997, \n        0.15124632418200001, \n        -0.74138110876100005, \n        0.64909195900000005, \n        0.16861206293100001, \n        -0.72423022985499996, \n        0.64998567104299998, \n        0.22892187535799999, \n        -0.57021981477700001, \n        0.79872173070899999, \n        0.19049650430699999, \n        -0.55231815576599996, \n        0.79717224836300005, \n        0.24260777235, \n        -0.36846271157299998, \n        0.90971124172200002, \n        0.189883679152, \n        -0.35995128750799998, \n        0.90207552909900002, \n        0.23683550953900001, \n        -0.299719452858, \n        0.93559634685500004, \n        0.184996128082, \n        -0.29872977733599998, \n        0.92572343349499997, \n        0.23063734173799999, \n        -0.72524791955900003, \n        0.56162536144300002, \n        0.39747691154499998, \n        -0.75336945056899995, \n        0.58954995870600002, \n        0.290279328823, \n        -0.69862002134300005, \n        0.64105033874499995, \n        0.31682929396600001, \n        -0.66966074705099998, \n        0.61203819513299995, \n        0.41995316743900002, \n        -0.52910017967199996, \n        0.77957957983000004, \n        0.334224045277, \n        -0.50172644853600001, \n        0.746500492096, \n        0.43635118007700002, \n        -0.34416204690899999, \n        0.88225042819999999, \n        0.32028421759600001, \n        -0.32237663865100002, \n        0.84506976604499995, \n        0.42582440376300001, \n        -0.286555409431, \n        0.90282535552999998, \n        0.31966948509199999, \n        -0.26562577486, \n        0.86520761251400002, \n        0.42456477880499999, \n        -0.66484516859099996, \n        0.46740180254000002, \n        0.58216208219499999, \n        -0.69626373052599999, \n        0.526522994041, \n        0.48722383379899997, \n        -0.63890600204500003, \n        0.56832635402700005, \n        0.517880558968, \n        -0.60620391368899995, \n        0.50950914621400001, \n        0.61017471551900004, \n        -0.47205641865699999, \n        0.69739043712600002, \n        0.53870725631700001, \n        -0.43976116180399999, \n        0.63658469915399996, \n        0.63306170701999998, \n        -0.29602059721899998, \n        0.79658138751999996, \n        0.526522994041, \n        -0.26643952727300002, \n        0.73424118757199996, \n        0.62393552064900004, \n        -0.24046036601099999, \n        0.81311035156199996, \n        0.52955400943800002, \n        -0.210112541914, \n        0.75092315673800003, \n        0.625591039658, \n        -0.59750849008600004, \n        0.32112005353, \n        0.73434519767799999, \n        -0.63195306062699996, \n        0.403079271317, \n        0.66148221492799997, \n        -0.57207620143899995, \n        0.43777972459800002, \n        0.693162620068, \n        -0.53616505861300001, \n        0.35604745149599998, \n        0.76495295763000004, \n        -0.40541157126400001, \n        0.56206619739499997, \n        0.72049939632399995, \n        -0.368384748697, \n        0.47711491584799998, \n        0.79752814769699998, \n        -0.23266872763599999, \n        0.66061753034600001, \n        0.71333450079000005, \n        -0.19656763970900001, \n        0.574577510357, \n        0.79411512613299995, \n        -0.17647369205999999, \n        0.67185211181600002, \n        0.718934774399, \n        -0.13840419054, \n        0.58646184205999996, \n        0.797686040401, \n        -0.52404969930599998, \n        0.143481701612, \n        0.83915448188800001, \n        -0.56149339675900001, \n        0.23656454682399999, \n        0.79256463050799997, \n        -0.49882635474199999, \n        0.26607966423000001, \n        0.82448196411100005, \n        -0.46020498871799997, \n        0.17203605175, \n        0.87063801288599996, \n        -0.32962042093299998, \n        0.38343718648000003, \n        0.86239349842099999, \n        -0.28843885660200003, \n        0.28252765536300001, \n        0.91453671455399999, \n        -0.15709856152500001, \n        0.47886633873000001, \n        0.86336719989800004, \n        -0.116651766002, \n        0.37436392903299998, \n        0.91958725452400003, \n        -0.099023491144200004, \n        0.48335999250400002, \n        0.869455397129, \n        -0.056322485208500001, \n        0.380020201206, \n        0.92293423414200004, \n        -0.44527751207400001, \n        -0.041147053241700003, \n        0.89410901069600002, \n        -0.48577329516399997, \n        0.0527502894402, \n        0.87214553356199997, \n        -0.41990819573400001, \n        0.075664669275299995, \n        0.90407299995400003, \n        -0.379244476557, \n        -0.020405858755099999, \n        0.92474460601800001, \n        -0.24636557698200001, \n        0.178365111351, \n        0.95230543613399998, \n        -0.202949717641, \n        0.071285277605100006, \n        0.97628211975099999, \n        -0.074445717036699999, \n        0.26368236541700002, \n        0.96141862869299999, \n        -0.032998036593199997, \n        0.149448871613, \n        0.98791360855099997, \n        -0.015378555283000001, \n        0.26083019375799998, \n        0.96494960784899997, \n        0.027259465306999998, \n        0.14879205822899999, \n        0.98818755149799997, \n        -0.36029815673799997, \n        -0.21452522277800001, \n        0.90750193595899997, \n        -0.40482771396599998, \n        -0.12560704350499999, \n        0.905391573906, \n        -0.33643338084199997, \n        -0.113919526339, \n        0.93446779251099998, \n        -0.29383623599999997, \n        -0.20447319746000001, \n        0.93340605497399998, \n        -0.160118624568, \n        -0.034834116697300001, \n        0.98617708683000005, \n        -0.117880396545, \n        -0.139399915934, \n        0.98288714885700001, \n        0.0076881279237600002, \n        0.033606439828899999, \n        0.99910330772400002, \n        0.045818164944599997, \n        -0.080294042825700004, \n        0.99541437625899998, \n        0.064863301813600005, \n        0.025262385606800001, \n        0.99727177619899998, \n        0.102053180337, \n        -0.084648758172999994, \n        0.99086678028099995, \n        -0.26585069298699998, \n        -0.368642598391, \n        0.89040601253499996, \n        -0.31653738021900002, \n        -0.28582859039300001, \n        0.90415787696799998, \n        -0.24860391020799999, \n        -0.28947359323499999, \n        0.92401188611999996, \n        -0.20313563942900001, \n        -0.37030115723599999, \n        0.90609526634199999, \n        -0.077279955148699994, \n        -0.23998948931700001, \n        0.96738278865799998, \n        -0.039268538355799999, \n        -0.33442696928999999, \n        0.94128262996699996, \n        0.080178588628799993, \n        -0.19120430946399999, \n        0.977961659431, \n        0.110575601459, \n        -0.29575067758599999, \n        0.94852548837700001, \n        0.13204512000099999, \n        -0.20105424523400001, \n        0.97032892703999996, \n        0.15918891131900001, \n        -0.30026528239299999, \n        0.94015705585499998, \n        -0.158066257834, \n        -0.50250726938199997, \n        0.84964531660099996, \n        -0.216329678893, \n        -0.42453080415700001, \n        0.87884658575100005, \n        -0.15500018000599999, \n        -0.44393989443800003, \n        0.88220643997199999, \n        -0.105528131127, \n        -0.51370686292599999, \n        0.85109597444499996, \n        -0.0028357636183499999, \n        -0.42351907491700003, \n        0.90554946661000002, \n        0.029388824477799998, \n        -0.50233530998200004, \n        0.86382412910499995, \n        0.13459135591999999, \n        -0.39325222373000002, \n        0.90919435024299999, \n        0.153569608927, \n        -0.48238229751599998, \n        0.86204361915600003, \n        0.178216174245, \n        -0.40170365572, \n        0.89792472124099998, \n        0.191822052002, \n        -0.48576730489699999, \n        0.85242658853499997, \n        -0.070429429411900002, \n        -0.56113356351900001, \n        0.82435804605499996, \n        -0.100746572018, \n        -0.52865833044099997, \n        0.84247654676399997, \n        -0.0568262375891, \n        -0.55813646316499999, \n        0.82743608951600001, \n        -0.0034184174146500001, \n        -0.567224681377, \n        0.82318931817999996, \n        0.0583455748856, \n        -0.55975693464300003, \n        0.826234519482, \n        0.086355514824400001, \n        -0.57137340307200002, \n        0.81576460599900003, \n        0.16534706950200001, \n        -0.54254108667400003, \n        0.82322937250100003, \n        0.184963136911, \n        -0.55794942379000001, \n        0.80862677097299995, \n        0.198727980256, \n        -0.54510736465499998, \n        0.81410109996799995, \n        0.20262379944299999, \n        -0.55594211816799999, \n        0.80577164888399999, \n        -0.96390080452000004, \n        0.23884986341, \n        -0.11507223546500001, \n        -0.95175153017000003, \n        0.27053228020699999, \n        -0.14275187253999999, \n        -0.92133772373199996, \n        0.33973842859300002, \n        -0.18738140165799999, \n        -0.93585133552599997, \n        0.31946551799799999, \n        -0.146698698401, \n        -0.94029396772399998, \n        0.28747814893700002, \n        -0.18055346608200001, \n        -0.885538518429, \n        0.40755689144099999, \n        -0.22162006795399999, \n        -0.73620760440800004, \n        0.60140830278400004, \n        -0.30935657024399998, \n        -0.79808294773099997, \n        0.53897422552100005, \n        -0.26826500892600003, \n        -0.82133990526199996, \n        0.52601212263099995, \n        -0.219335719943, \n        -0.64305877685500001, \n        0.68711948394800004, \n        -0.33725115656900001, \n        -0.68066143989600003, \n        0.67716950178099999, \n        -0.27845585346200002, \n        -0.58309185504899996, \n        0.72525697946500001, \n        -0.36524373292899998, \n        -0.56115847825999998, \n        0.73569780588199996, \n        -0.37847870588299998, \n        -0.60681271553000005, \n        0.70196890831000003, \n        -0.372040629387, \n        -0.64353561401399995, \n        0.70563989877699995, \n        -0.29551774263399999, \n        -0.97686994075800004, \n        0.211311161518, \n        -0.021672345697900001, \n        -0.97136062383699995, \n        0.22948968410500001, \n        -0.056480348110200002, \n        -0.94591331481899998, \n        0.309995353222, \n        -0.092447668314000003, \n        -0.95246529579200001, \n        0.30097210407300001, \n        -0.040279448032400002, \n        -0.83943146467200003, \n        0.52150946855500002, \n        -0.15092538297200001, \n        -0.84355819225299999, \n        0.53111761808400004, \n        -0.075635269284200002, \n        -0.69961768388699996, \n        0.68755233287799999, \n        -0.192878738046, \n        -0.70156109333000005, \n        0.70501005649600001, \n        -0.10084053874, \n        -0.66710156202299997, \n        0.71367347240400003, \n        -0.21222892403599999, \n        -0.66123825311700002, \n        0.74206590652500004, \n        -0.107234627008, \n        -0.97931218147300003, \n        0.185752913356, \n        0.076416328549400003, \n        -0.97886735200899999, \n        0.19979864358900001, \n        0.035994231700899999, \n        -0.95570737123500005, \n        0.29279357194900002, \n        0.01708984375, \n        -0.95647811889599998, \n        0.28110608458500003, \n        0.074324242770700003, \n        -0.84262555837599995, \n        0.53782755136500005, \n        -0.010964393615700001, \n        -0.84100002050400002, \n        0.53604704141600001, \n        0.069056734442699996, \n        -0.68053543567700003, \n        0.73216485977199997, \n        -0.0142618715763, \n        -0.65943485498400001, \n        0.74903178214999999, \n        0.0591045618057, \n        -0.63731354475000002, \n        0.77021235227600005, \n        -0.00053584575653100003, \n        -0.603945612907, \n        0.79403507709499999, \n        0.064447969198200006, \n        -0.97014600038499998, \n        0.15673466026800001, \n        0.18343259394200001, \n        -0.97563433647200004, \n        0.171269267797, \n        0.134908258915, \n        -0.95337307453200004, \n        0.26808902621300001, \n        0.13639777898800001, \n        -0.94667708873699996, \n        0.25154003500900002, \n        0.19981767237199999, \n        -0.83776891231499995, \n        0.52527534961699995, \n        0.14705756306600001, \n        -0.82902860641499998, \n        0.50738078355799998, \n        0.23382239043700001, \n        -0.65014868974700002, \n        0.74403834342999997, \n        0.152020126581, \n        -0.63969284295999995, \n        0.72695338726000003, \n        0.248450949788, \n        -0.58291393518400003, \n        0.79676431417500004, \n        0.15739446878400001, \n        -0.57246506214100001, \n        0.779000759125, \n        0.25463211536399999, \n        -0.94563335180300001, \n        0.118708148599, \n        0.30179685354199998, \n        -0.95956915617000005, \n        0.13800331950200001, \n        0.24408727884299999, \n        -0.93507754802700005, \n        0.231905966997, \n        0.266919374466, \n        -0.91845959425000001, \n        0.20715843141099999, \n        0.33602750301399997, \n        -0.81526178121600001, \n        0.48236131668100002, \n        0.31948852539099998, \n        -0.79463696479799995, \n        0.44831460714299998, \n        0.40860962867700001, \n        -0.62477129697800005, \n        0.69763231277500004, \n        0.34980937838600001, \n        -0.60499626398100004, \n        0.65677762031599995, \n        0.449465245008, \n        -0.55700773000699999, \n        0.74780809879300003, \n        0.36044609546700002, \n        -0.53728771209699999, \n        0.70464217662799999, \n        0.46281519532199999, \n        -0.899473309517, \n        0.065648674964899997, \n        0.431316703558, \n        -0.92582434415799997, \n        0.093935236334799999, \n        0.365270674229, \n        -0.89558845758399996, \n        0.17799025773999999, \n        0.40698510408400002, \n        -0.86576646566399995, \n        0.14170318841900001, \n        0.47933822870300002, \n        -0.76782304048500005, \n        0.40542250871699997, \n        0.49545633792900001, \n        -0.73390930890999995, \n        0.352657496929, \n        0.58000582456600003, \n        -0.58048069477099995, \n        0.60237503051800001, \n        0.54734170436899998, \n        -0.551272451878, \n        0.53580719232600005, \n        0.63906604051600002, \n        -0.513190984726, \n        0.64693862199800001, \n        0.56347280740700001, \n        -0.48619917035100002, \n        0.57555413246200005, \n        0.65707254409799998, \n        -0.82336026430099996, \n        -0.0088739395141600001, \n        0.56691676378300004, \n        -0.86695712804799996, \n        0.0324561744928, \n        0.49671697616600002, \n        -0.82842886447899999, \n        0.100120767951, \n        0.550525724888, \n        -0.78228271007500005, \n        0.0496486127377, \n        0.62045562267300003, \n        -0.69311964511900004, \n        0.28949257731400002, \n        0.65967774391199996, \n        -0.64650171995200001, \n        0.21805509924899999, \n        0.73067331314100004, \n        -0.518544375896, \n        0.45584830641700003, \n        0.72298657894100005, \n        -0.48205441236500002, \n        0.36509966850300002, \n        0.79606652259800004, \n        -0.45578730106400001, \n        0.491945415735, \n        0.74138009548200001, \n        -0.424121886492, \n        0.393554091454, \n        0.81524980068200004, \n        -0.71022850275000005, \n        -0.110199719667, \n        0.69485807418800005, \n        -0.774373114109, \n        -0.053051084280000001, \n        0.63002169132200003, \n        -0.72843098640399995, \n        -0.0062755048275000003, \n        0.68464922905000003, \n        -0.66526907682400005, \n        -0.071599781513199998, \n        0.74275565147400002, \n        -0.59372365474699995, \n        0.13558003306399999, \n        0.79278349876400001, \n        -0.538175463676, \n        0.048768341541299998, \n        0.84106194973000004, \n        -0.44387790560700002, \n        0.26414623856500002, \n        0.85591757297500004, \n        -0.40392199158699998, \n        0.15539807081199999, \n        0.90116280317300002, \n        -0.39041906595199999, \n        0.28972351551100001, \n        0.87351620197299995, \n        -0.35749799013099998, \n        0.17126524448399999, \n        0.917746782303, \n        -0.56257408857299995, \n        -0.238998860121, \n        0.79106605052900003, \n        -0.64375257492100002, \n        -0.16668668389300001, \n        0.74645459651900004, \n        -0.59689277410499997, \n        -0.14123332500499999, \n        0.78941053152100005, \n        -0.52167946100200002, \n        -0.21882987022399999, \n        0.824233055115, \n        -0.47908130288099998, \n        -0.048114210367199997, \n        0.87610638141599995, \n        -0.42139270901699999, \n        -0.143918514252, \n        0.895048618317, \n        -0.36442995071399997, \n        0.0420247912407, \n        0.92995715141299995, \n        -0.32606449723199998, \n        -0.075475186109500006, \n        0.94200944900500005, \n        -0.32412710785900001, \n        0.056884497404100003, \n        0.94398176670099998, \n        -0.29362031817399997, \n        -0.070251554250699996, \n        0.95302009582500002, \n        -0.40201959013900002, \n        -0.38847663998600002, \n        0.82877171039599995, \n        -0.48518446087799999, \n        -0.30629348754899999, \n        0.81864273548099997, \n        -0.44749584794000002, \n        -0.29818600416199997, \n        0.84275048971199995, \n        -0.37283942103399997, \n        -0.38268139958399999, \n        0.84495079517399996, \n        -0.36414301395400001, \n        -0.24705135822300001, \n        0.89764189720200005, \n        -0.312769532204, \n        -0.34383013844499999, \n        0.88507175445599995, \n        -0.29029333591500001, \n        -0.19097232818599999, \n        0.93736588954900002, \n        -0.25879782438299997, \n        -0.30653440952299998, \n        0.91567242145500005, \n        -0.26475101709400001, \n        -0.18398147821399999, \n        0.94628411531400003, \n        -0.24027343094299999, \n        -0.30761814117399999, \n        0.92034602165199997, \n        -0.26726427674300002, \n        -0.54766660928699995, \n        0.79248160123800004, \n        -0.32959046959900001, \n        -0.46339505910899997, \n        0.82221168279599999, \n        -0.30813893675800003, \n        -0.466196209192, \n        0.82891964912399996, \n        -0.252261787653, \n        -0.55166041851000003, \n        0.79462695121799998, \n        -0.266787409782, \n        -0.444169819355, \n        0.854946792126, \n        -0.231535062194, \n        -0.53493344783800001, \n        0.81217873096500004, \n        -0.23228383064300001, \n        -0.41408398747399999, \n        0.87975835800199997, \n        -0.21311262249900001, \n        -0.51750773191499999, \n        0.828350841999, \n        -0.220423415303, \n        -0.41070497035999998, \n        0.88438189029699998, \n        -0.206318676472, \n        -0.52105057239499997, \n        0.82784998416900002, \n        -0.218981847167, \n        -0.63820821046800003, \n        0.73765414953200004, \n        -0.227869167924, \n        -0.61278486251800002, \n        0.75628459453600005, \n        -0.22351749241400001, \n        -0.61431145667999998, \n        0.75634455680799995, \n        -0.220962256193, \n        -0.63754242658600002, \n        0.73763912916200003, \n        -0.21489909291299999, \n        -0.605739057064, \n        0.76569873094600005, \n        -0.216144695878, \n        -0.62459433078799997, \n        0.75003945827499996, \n        -0.20879393816, \n        -0.58945995569200005, \n        0.77996045350999998, \n        -0.22409529984000001, \n        -0.61831325292600003, \n        0.75290459394499998, \n        -0.20809814333900001, \n        -0.580462694168, \n        0.78686332702600004, \n        -0.21492607891599999, \n        -0.60834121704099997, \n        0.76362538337700003, \n        -0.83839976787600001, \n        -0.203304618597, \n        -0.50512349605600004, \n        -0.83697921037699996, \n        -0.17374150455000001, \n        -0.51833939552300001, \n        -0.85554659366600005, \n        -0.093559414148300005, \n        -0.50860941410100002, \n        -0.86469179391899997, \n        -0.12811928987499999, \n        -0.48506748676299999, \n        -0.83814686536799998, \n        -0.14010271429999999, \n        -0.52657091617600005, \n        -0.85361218452499998, \n        -0.0753135681152, \n        -0.51484948396700003, \n        -0.87382304668400002, \n        0.15312474966, \n        -0.46084982156799997, \n        -0.87907850742299998, \n        0.143799558282, \n        -0.45380395650900002, \n        -0.89642328023899998, \n        0.115807011724, \n        -0.42709600925399999, \n        -0.84591847658200003, \n        0.37836572527899998, \n        -0.375042706728, \n        -0.86602437496200002, \n        0.357851862907, \n        -0.34833776950799999, \n        -0.83324837684599995, \n        0.405364602804, \n        -0.37519767880400001, \n        -0.81153792142900005, \n        0.46871840953799998, \n        -0.34800285100900002, \n        -0.81988841295199999, \n        0.45078486204099999, \n        -0.35209763050100001, \n        -0.842644512653, \n        0.43256834149399997, \n        -0.319737404585, \n        -0.86538863182100001, \n        -0.25848990678799999, \n        -0.42858058214200001, \n        -0.85161477327299995, \n        -0.23663952946700001, \n        -0.46706596016899998, \n        -0.88044804334600002, \n        -0.15578794479399999, \n        -0.44714295864100001, \n        -0.89632028341299996, \n        -0.178304150701, \n        -0.40523463487599998, \n        -0.91753286123300004, \n        0.093585044145599997, \n        -0.38570848107299999, \n        -0.93668109178500003, \n        0.078115895390499998, \n        -0.34047418832800003, \n        -0.88794779777499999, \n        0.34244355559299999, \n        -0.306065529585, \n        -0.90762186050399996, \n        0.329279541969, \n        -0.25921672582600003, \n        -0.86413305997800005, \n        0.41805875301399997, \n        -0.27910172939299999, \n        -0.88383406400700004, \n        0.40636622905699998, \n        -0.23043440282300001, \n        -0.89314728975299995, \n        -0.29394122958199997, \n        -0.33953246474299997, \n        -0.87864065170299999, \n        -0.27578771114299999, \n        -0.38900947570799999, \n        -0.91221249103500002, \n        -0.194640219212, \n        -0.35969334840799999, \n        -0.92653417587300002, \n        -0.210389465094, \n        -0.31091210246099998, \n        -0.95450568199200003, \n        0.063300274312500002, \n        -0.29035729169800001, \n        -0.96939617395400002, \n        0.053224027156799997, \n        -0.23840099573099999, \n        -0.92372101545300001, \n        0.319310545921, \n        -0.21018350124400001, \n        -0.938128709793, \n        0.30793398618700002, \n        -0.15648671984699999, \n        -0.90063893795000005, \n        0.394989669323, \n        -0.17952078580899999, \n        -0.91359502077099997, \n        0.38525062799499998, \n        -0.12775941193099999, \n        -0.91575539112100002, \n        -0.322421610355, \n        -0.238395988941, \n        -0.90496170520800001, \n        -0.302895516157, \n        -0.29781606793400001, \n        -0.93964219093300005, \n        -0.222917661071, \n        -0.25841096043599998, \n        -0.94974321126899997, \n        -0.237099379301, \n        -0.202896714211, \n        -0.98237830400500004, \n        0.039661228656800003, \n        -0.180986344814, \n        -0.99170440435399998, \n        0.029828090220700001, \n        -0.122591972351, \n        -0.94870442152000001, \n        0.29827392101299999, \n        -0.101924195886, \n        -0.95741885900500001, \n        0.28457704186400001, \n        -0.041978217661400002, \n        -0.92529851198199997, \n        0.37214359641099998, \n        -0.0687516331673, \n        -0.93219739198700002, \n        0.3608700037, \n        -0.013272896409, \n        -0.92763680219699995, \n        -0.35143488645600002, \n        -0.12401355058000001, \n        -0.92472666502, \n        -0.32709419727299999, \n        -0.19309669733000001, \n        -0.957238912582, \n        -0.25025641918199998, \n        -0.14304280281100001, \n        -0.96017897129100005, \n        -0.26652151346199998, \n        -0.080119803547900006, \n        -0.99793356656999999, \n        0.0134698338807, \n        -0.057823736220599997, \n        -0.99966806173300005, \n        -0.00024183513596700001, \n        0.0077594663016499997, \n        -0.96197944879499997, \n        0.27138704061500002, \n        0.0184594243765, \n        -0.96375888586000003, \n        0.251556992531, \n        0.085341617465000005, \n        -0.93775767087899997, \n        0.34229761362099997, \n        0.053283810615499999, \n        -0.93818658590299997, \n        0.32576060295100001, \n        0.11437544226599999, \n        -0.921782553196, \n        -0.38688814640000002, \n        0.0055908709764500002, \n        -0.93175756931300002, \n        -0.35478585958499997, \n        -0.073152288794500003, \n        -0.958447515965, \n        -0.28395324945400002, \n        -0.0120474547148, \n        -0.94995611906099997, \n        -0.30570566654199999, \n        0.059350579977000002, \n        -0.99615716934200005, \n        -0.0232682731003, \n        0.080783702433099999, \n        -0.98658096790299998, \n        -0.045420683920400003, \n        0.15488922595999999, \n        -0.96063089370700006, \n        0.23050038516499999, \n        0.15314574539699999, \n        -0.95251530408899998, \n        0.19965767860399999, \n        0.22857695817900001, \n        -0.935502409935, \n        0.29750013351400001, \n        0.189011931419, \n        -0.927079975605, \n        0.27014940977099999, \n        0.25872385501900003, \n        -0.88751989603000003, \n        -0.434137880802, \n        0.15241096913800001, \n        -0.91748481988899999, \n        -0.391756653786, \n        0.064374148845700002, \n        -0.93338906764999996, \n        -0.33101904392199999, \n        0.13641181588199999, \n        -0.906401216984, \n        -0.361695736647, \n        0.216817528009, \n        -0.96785265207299997, \n        -0.079766705632199994, \n        0.23726333677799999, \n        -0.93977016210599995, \n        -0.116064935923, \n        0.32055717706699999, \n        -0.93741786479900002, \n        0.16457429528199999, \n        0.30587360262899999, \n        -0.91264533996599995, \n        0.11570204794400001, \n        0.391264796257, \n        -0.91156369447700003, \n        0.22628165781500001, \n        0.34240859746899999, \n        -0.88762098550799995, \n        0.17898392677300001, \n        0.42366206645999999, \n        -0.807931005955, \n        -0.49700289964700001, \n        0.31564569473300003, \n        -0.86833775043500006, \n        -0.44336205720900002, \n        0.220941290259, \n        -0.86596447229399998, \n        -0.39799880981399999, \n        0.30182582140000003, \n        -0.80936557054500002, \n        -0.43989714980099998, \n        0.388348728418, \n        -0.89564347267199995, \n        -0.16748839616799999, \n        0.41129875183100001, \n        -0.83639633655500001, \n        -0.223896369338, \n        0.49970704317100001, \n        -0.87589138746299999, \n        0.057906910777100001, \n        0.478389501572, \n        -0.82079404592500005, \n        -0.0177648365498, \n        0.57041966915099995, \n        -0.84943038225199996, \n        0.111305356026, \n        0.51524239778500003, \n        -0.79513484239599996, \n        0.031310111284300002, \n        0.60512518882800004, \n        -0.66055452823600003, \n        -0.57329285144800002, \n        0.48414778709400003, \n        -0.76376533508300004, \n        -0.51205933094, \n        0.39224249124499999, \n        -0.732998609543, \n        -0.48707288503599999, \n        0.47420281171799999, \n        -0.63489526510200001, \n        -0.53723871707899995, \n        0.55468845367399999, \n        -0.75098019838300001, \n        -0.29714423418000002, \n        0.58917802572300004, \n        -0.64578592777300003, \n        -0.37352514266999998, \n        0.66545903682700003, \n        -0.74514299631100001, \n        -0.106183886528, \n        0.65793830156300004, \n        -0.64072245359400004, \n        -0.21243178844499999, \n        0.73739027977000005, \n        -0.71747827529899999, \n        -0.066690742969500005, \n        0.692945718765, \n        -0.61219513416299998, \n        -0.18461123108899999, \n        0.76846086978899997, \n        -0.43279325962100001, \n        -0.64757943153399999, \n        0.626679778099, \n        -0.58208417892499997, \n        -0.59067255258600004, \n        0.55828338861500004, \n        -0.51643300056499997, \n        -0.58669382333800002, \n        0.62328475713700005, \n        -0.37942638993299999, \n        -0.63236498832700005, \n        0.67494213581100004, \n        -0.50846141576799997, \n        -0.46168056130399998, \n        0.72643959522199997, \n        -0.36281141638800002, \n        -0.53841340541799998, \n        0.760180354118, \n        -0.51242119073900005, \n        -0.32434099912600001, \n        0.79474693536800001, \n        -0.35824078321500002, \n        -0.44117870926899999, \n        0.82244861125900004, \n        -0.48552337288899999, \n        -0.30117702484100001, \n        0.82033824920700005, \n        -0.333070397377, \n        -0.42874243855499999, \n        0.83942842483500002, \n        -0.153076782823, \n        -0.69476014375700001, \n        0.70233279466599996, \n        -0.32609751820600003, \n        -0.65690356493000002, \n        0.67936283350000004, \n        -0.236404597759, \n        -0.66780823469200001, \n        0.70536595582999995, \n        -0.0899544283748, \n        -0.69440722465500004, \n        0.71351444721199997, \n        -0.19893391430400001, \n        -0.61254799366000001, \n        0.764595985413, \n        -0.055612903088299998, \n        -0.661488294601, \n        0.74748623371099998, \n        -0.20228688418900001, \n        -0.53999686241099998, \n        0.81662738323200001, \n        -0.046170253306599997, \n        -0.62509816885000002, \n        0.77879172563599997, \n        -0.18760535120999999, \n        -0.52661293745000004, \n        0.82878166437099998, \n        -0.036323729902499997, \n        -0.61848616599999995, \n        0.784571051598, \n        0.0028526184614700001, \n        -0.69004458188999995, \n        0.72334355115899995, \n        -0.069321662187599997, \n        -0.67882597446399995, \n        0.73060727119400004, \n        0.0123677644879, \n        -0.69807714223899997, \n        0.71549385786099995, \n        0.0540809631348, \n        -0.68297374248499998, \n        0.72802305221600006, \n        0.0574262551963, \n        -0.69333058595700003, \n        0.71790713071800005, \n        0.083365023136100003, \n        -0.69603377580600001, \n        0.71272975206400002, \n        0.053632501512800003, \n        -0.67191505432099996, \n        0.73827493190799998, \n        0.086677417159100004, \n        -0.69300168752699998, \n        0.71528393030199999, \n        0.044381394982300003, \n        -0.66313171386699998, \n        0.74678146839100001, \n        0.077110007405299996, \n        -0.68139016628299998, \n        0.72743237018600004, \n        -0.82273548841499999, \n        -0.035763114690799999, \n        -0.56676685810100003, \n        -0.85025423765200003, \n        0.048296332359299997, \n        -0.52357584238099997, \n        -0.83008730411499998, \n        0.080749809741999995, \n        -0.55120950937299995, \n        -0.82777994871100002, \n        -0.0014199912548099999, \n        -0.56051266193399996, \n        -0.84553861618000004, \n        0.147334471345, \n        -0.51259422302199997, \n        -0.84863966703399996, \n        0.17613376677000001, \n        -0.49817955493900001, \n        -0.83492881059599999, \n        0.19434531032999999, \n        -0.51431465148900002, \n        -0.82622742652900005, \n        0.15412944555300001, \n        -0.54128450155300001, \n        -0.850973904133, \n        0.095768764615100005, \n        -0.51581722497899996, \n        -0.83944445848500004, \n        0.219732627273, \n        -0.496434032917, \n        -0.86482083797499998, \n        0.18612779676899999, \n        -0.46565836667999999, \n        -0.82902562618300002, \n        0.23942770063900001, \n        -0.50476461648899995, \n        -0.83113300800300005, \n        0.251139163971, \n        -0.49552434682800001, \n        -0.84437793493299995, \n        0.237003415823, \n        -0.47984507679900001, \n        -0.87428593635600005, \n        0.20808014273600001, \n        -0.43786177039099999, \n        -0.85126984119399995, \n        -0.164348348975, \n        -0.49771964549999997, \n        -0.84671223163599996, \n        -0.114504411817, \n        -0.51900225877799999, \n        -0.85005128383600004, \n        -0.068113133311300006, \n        -0.521699428558, \n        -0.86745899915699998, \n        -0.12366065382999999, \n        -0.48126861453100001, \n        -0.87757200002699998, \n        0.043639212846800002, \n        -0.47682198882100002, \n        -0.90780484676399997, \n        -0.0020440369844399999, \n        -0.41866755485500001, \n        -0.90107285976399998, \n        0.14589394628999999, \n        -0.40765088796600002, \n        -0.92941927909900002, \n        0.11482031643399999, \n        -0.34984731674199998, \n        -0.90933930873900004, \n        0.17331963777500001, \n        -0.377438008785, \n        -0.93598127365100003, \n        0.14888104796400001, \n        -0.31807291507699997, \n        -0.88034909963600005, \n        -0.25175094604499998, \n        -0.40125077962900002, \n        -0.86949133872999995, \n        -0.217306375504, \n        -0.44289821386299999, \n        -0.88686615228700005, \n        -0.16898094117599999, \n        -0.42931431531899999, \n        -0.90197259187699996, \n        -0.20786021649799999, \n        -0.37767088413200001, \n        -0.92974913120299996, \n        -0.038085803389500003, \n        -0.36539363861099999, \n        -0.95005607604999998, \n        -0.070309877395600004, \n        -0.30306047201199998, \n        -0.95406186580700003, \n        0.087034516036500004, \n        -0.28563472628600001, \n        -0.97204446792599997, \n        0.064610175788400004, \n        -0.22439321875599999, \n        -0.95966416597399995, \n        0.123833596706, \n        -0.25120812654500002, \n        -0.97530442476300006, \n        0.10661080479600001, \n        -0.19186204671900001, \n        -0.90191853046399995, \n        -0.313620269299, \n        -0.29594159126300001, \n        -0.89229452610000004, \n        -0.28757515549700002, \n        -0.34714314341500002, \n        -0.91568440198900003, \n        -0.23979458212900001, \n        -0.32158586382900001, \n        -0.92554342746700002, \n        -0.267959058285, \n        -0.266391575336, \n        -0.96435868740099995, \n        -0.096673399209999997, \n        -0.24507498741100001, \n        -0.97500348091099998, \n        -0.11947290599300001, \n        -0.185717895627, \n        -0.98558324575400003, \n        0.0442886129022, \n        -0.16143324971199999, \n        -0.99414378404600001, \n        0.026810903102199999, \n        -0.101766258478, \n        -0.98778963089000005, \n        0.087597534060499999, \n        -0.12646579742399999, \n        -0.99446958303499999, \n        0.073824599385300005, \n        -0.070539996027899995, \n        -0.89704000949899998, \n        -0.36627537012099998, \n        -0.24608667194799999, \n        -0.90872055292099996, \n        -0.33698120713200003, \n        -0.24508395791099999, \n        -0.92663007974599998, \n        -0.29422113299399999, \n        -0.23278167843799999, \n        -0.91300326585799996, \n        -0.31664633750900001, \n        -0.25604063272499999, \n        -0.97667402028999994, \n        -0.119421944022, \n        -0.17675761878499999, \n        -0.98032194376000004, \n        -0.11237806826799999, \n        -0.160426557064, \n        -0.99743378162399998, \n        0.032701723277600001, \n        -0.058761052787299997, \n        -0.99673897028000003, \n        0.070046938955799998, \n        -0.031647339463200003, \n        -0.99795961379999998, \n        0.058075062930599997, \n        -0.0100428685546, \n        -0.99509245157199999, \n        0.095679000020000002, \n        0.0056905038654799997, \n        -0.83651739358900001, \n        -0.42002314329099999, \n        -0.35101997852299999, \n        -0.86199468374300003, \n        -0.42932230234099999, \n        -0.268409907818, \n        -0.89808571338700005, \n        -0.32807794213300001, \n        -0.29189583659200002, \n        -0.90276432037400001, \n        -0.284731030464, \n        -0.32146590948100001, \n        -0.98398172855400001, \n        -0.090082600712799998, \n        -0.151862129569, \n        -0.99283111095400001, \n        -0.034301936626399999, \n        -0.111831218004, \n        -0.99293315410600003, \n        0.11518521606899999, \n        -0.0145631022751, \n        -0.99038583040200001, \n        0.13547508418599999, \n        0.013369161635600001, \n        -0.98805457353600001, \n        0.144256427884, \n        0.048315603286, \n        -0.98415577411699995, \n        0.170412510633, \n        0.042353503405999998, \n        -0.82302147150000005, \n        -0.56349277496299999, \n        -0.067144721746400002, \n        -0.83031117916099995, \n        -0.48357295989999999, \n        -0.27592962980300001, \n        -0.93096786737399995, \n        -0.33435603976200001, \n        -0.14457234740300001, \n        -0.89248347282399998, \n        -0.44639718532599998, \n        0.059996962547299998, \n        -0.99884325265899998, \n        -0.0382681414485, \n        0.0156337786466, \n        -0.97742980718600003, \n        -0.112560987473, \n        0.17708051204700001, \n        -0.98157745599699997, \n        0.121277362108, \n        0.14557802677199999, \n        -0.94678002595900002, \n        0.12938192486799999, \n        0.29370728135099999, \n        -0.96342098712900004, \n        0.122906863689, \n        0.23687544465099999, \n        -0.93269222974800003, \n        0.15185213088999999, \n        0.32622447609900002, \n        -0.76845186948800004, \n        -0.60328680276900004, \n        0.211950957775, \n        -0.82890659570699998, \n        -0.556004047394, \n        0.056301862001399999, \n        -0.84888458251999999, \n        -0.49429869651800001, \n        0.185632929206, \n        -0.80306649208100001, \n        -0.51048082113299997, \n        0.30641347169900002, \n        -0.91472268104599996, \n        -0.195130050182, \n        0.35299038887, \n        -0.82135587930700005, \n        -0.24656355381, \n        0.51378685235999999, \n        -0.88962429761899997, \n        0.051579609513299998, \n        0.45310515165300003, \n        -0.812984406948, \n        -0.037944555282599997, \n        0.58052766323100002, \n        -0.88204056024599997, \n        0.111802250147, \n        0.45705696940399998, \n        -0.84488284587899998, \n        -0.0079922974109599993, \n        0.53432667255400002, \n        -0.73117119073900005, \n        -0.59721463918700002, \n        0.32881569862400001, \n        -0.76995748281499998, \n        -0.58681976795199997, \n        0.249407678843, \n        -0.77584671974200003, \n        -0.50197041034699996, \n        0.38142377138099998, \n        -0.75381928682300003, \n        -0.48461663722999998, \n        0.44305717945099998, \n        -0.77681440115, \n        -0.27090913057299998, \n        0.56794744730000002, \n        -0.76979750394799995, \n        -0.286639392376, \n        0.56977593898800005, \n        -0.82924854755400002, \n        -0.096198633313199999, \n        0.54998987913099995, \n        -0.81928753852799996, \n        -0.163389652967, \n        0.54906010627699997, \n        -0.88604336976999998, \n        -0.049963399767899999, \n        0.46024698018999999, \n        -0.84731513261799996, \n        -0.136224836111, \n        0.51273417472799998, \n        -0.60712659358999999, \n        -0.61159628629700002, \n        0.50669890642199999, \n        -0.69881993532200004, \n        -0.59735959768299995, \n        0.39269435405699998, \n        -0.69099432230000002, \n        -0.50546038150799999, \n        0.51617205143, \n        -0.57716566324200003, \n        -0.54032373428299996, \n        0.61182224750500003, \n        -0.69801115989700002, \n        -0.34967938065499998, \n        0.62442040443400004, \n        -0.60998874902699995, \n        -0.40908342599899999, \n        0.67820411920500001, \n        -0.77167385816599998, \n        -0.234995990992, \n        0.590502619743, \n        -0.67689955234499999, \n        -0.312129735947, \n        0.66616582870499996, \n        -0.81216675043099995, \n        -0.19317764043800001, \n        0.549967885017, \n        -0.71222990751299997, \n        -0.27328646182999999, \n        0.64609587192499995, \n        -0.166431725025, \n        -0.62432146072399997, \n        0.76283657550799999, \n        -0.48902431130399998, \n        -0.61806333064999996, \n        0.61501920223200002, \n        -0.40100789070100001, \n        -0.58016073703799997, \n        0.70852196216600005, \n        -0.093920134007900002, \n        -0.59921097755399999, \n        0.79468297958400003, \n        -0.41708603501300001, \n        -0.48738181591000002, \n        0.76674246788, \n        -0.13201612234099999, \n        -0.54426258802399996, \n        0.82809787988700001, \n        -0.50852638483000001, \n        -0.39962631463999998, \n        0.76229673624000005, \n        -0.225219964981, \n        -0.48546433448800003, \n        0.84439086914100003, \n        -0.596583843231, \n        -0.34482884406999997, \n        0.72427725791899999, \n        -0.35956439375900001, \n        -0.449522256851, \n        0.81733715534200002, \n        0.21217390894900001, \n        -0.57258605956999997, \n        0.79153287410700002, \n        0.114429444075, \n        -0.58913308381999996, \n        0.79951447248499996, \n        0.152808830142, \n        -0.57891112566000003, \n        0.80056720972100004, \n        0.257836133242, \n        -0.55599606037100002, \n        0.78980040550200004, \n        0.15674465894699999, \n        -0.55222117900800005, \n        0.81846177578000001, \n        0.23598572611800001, \n        -0.54806244373299995, \n        0.80208075046500005, \n        0.0177892260253, \n        -0.53791153430899996, \n        0.84245550632499999, \n        0.10737855732400001, \n        -0.57350677251799997, \n        0.81176084280000005, \n        -0.18999060988399999, \n        -0.52049779892000003, \n        0.83209466934200005, \n        -0.052244719117899997, \n        -0.53823238611199997, \n        0.84081703424499998, \n        -0.96840149164199996, \n        -0.067292079329500001, \n        -0.238885864615, \n        -0.98689889907799999, \n        0.027775414288000001, \n        -0.15701857209200001, \n        -0.97489255666700003, \n        0.034560069441799998, \n        -0.21860297024299999, \n        -0.96666401624700005, \n        -0.050293803215000002, \n        -0.249854534864, \n        -0.97889733314500005, \n        0.11873713880800001, \n        -0.16449332237200001, \n        -0.975993275642, \n        0.11769245564899999, \n        -0.18161113560200001, \n        -0.96703487634700003, \n        0.068561688065500004, \n        -0.244006291032, \n        -0.96152561903, \n        0.041683509945899998, \n        -0.27041834592800001, \n        -0.96876037120799996, \n        -0.0030454471707300002, \n        -0.24675947427700001, \n        -0.94536751508700001, \n        0.31005734205199997, \n        -0.097672894597100005, \n        -0.95354998111699996, \n        0.29136598110200002, \n        -0.072425529360800003, \n        -0.94201153516799996, \n        0.31969642639200002, \n        -0.099018186330800007, \n        -0.78574162721600005, \n        0.60479032993299997, \n        0.127418503165, \n        -0.79461598396300004, \n        0.59567302465399996, \n        0.114694342017, \n        -0.80513781309099997, \n        0.57854831218699998, \n        0.12818625569299999, \n        -0.94638115167600001, \n        -0.21734936535400001, \n        -0.23773719370400001, \n        -0.96548640728000001, \n        -0.156223803759, \n        -0.20694550871799999, \n        -0.96366095542899999, \n        -0.120575577021, \n        -0.23709738254500001, \n        -0.95485258102399995, \n        -0.18253687024099999, \n        -0.233096599579, \n        -0.97115767002099995, \n        -0.042008303105799998, \n        -0.233418494463, \n        -0.97617119550700004, \n        -0.083801493048699993, \n        -0.19865299761300001, \n        -0.96150159835799998, \n        0.26895475387599999, \n        -0.050737082958200001, \n        -0.96832150220900004, \n        0.247723177075, \n        -0.019589081406600001, \n        -0.817570984364, \n        0.56078267097500001, \n        0.12843516468999999, \n        -0.82827883958799997, \n        0.53887319564799996, \n        0.15154223144100001, \n        -0.92098283767699995, \n        -0.32632440328599999, \n        -0.211422130466, \n        -0.93630617856999998, \n        -0.28518685698500001, \n        -0.20346054434800001, \n        -0.94784474372899996, \n        -0.235660821199, \n        -0.21319261193299999, \n        -0.93833857774700002, \n        -0.28236669302, \n        -0.197955220938, \n        -0.97660702467000005, \n        -0.116989657283, \n        -0.17874400317700001, \n        -0.97711181640599998, \n        -0.15293881297100001, \n        -0.14579996466600001, \n        -0.97436773776999996, \n        0.223612457514, \n        0.00086383521556900001, \n        -0.97865939140299996, \n        0.201525136828, \n        0.031758010387399997, \n        -0.84143483638799998, \n        0.51833844184900002, \n        0.150691479445, \n        -0.85066503286399997, \n        0.49413976073299998, \n        0.17773732543000001, \n        -0.89573353528999999, \n        -0.40898248553299998, \n        -0.17259988188700001, \n        -0.90766280889499995, \n        -0.37907153368000002, \n        -0.17846411466600001, \n        -0.92953026294700003, \n        -0.32382518053100001, \n        -0.174662232399, \n        -0.91959226131399996, \n        -0.36099296808199999, \n        -0.15307176113099999, \n        -0.97531437873799998, \n        -0.18283775448799999, \n        -0.12135734409100001, \n        -0.97231632471100005, \n        -0.214527189732, \n        -0.089300215244299999, \n        -0.98252928257000005, \n        0.176682636142, \n        0.053058777004499999, \n        -0.98405879735900004, \n        0.15401747822799999, \n        0.085453584790200002, \n        -0.86270242929499996, \n        0.47227835655200001, \n        0.17914789915099999, \n        -0.879017472267, \n        0.43674504756900001, \n        0.189676687121, \n        -0.87135887146000002, \n        -0.47363296151200002, \n        -0.125710040331, \n        -0.88133478164699997, \n        -0.45009005069699998, \n        -0.14164622128000001, \n        -0.90987014770499997, \n        -0.39416092634200001, \n        -0.12715660035599999, \n        -0.89922344684599997, \n        -0.42503964901000002, \n        -0.100671604276, \n        -0.96791064739199995, \n        -0.24264371395100001, \n        -0.060579992830799997, \n        -0.95284414291399999, \n        -0.28816193342200003, \n        -0.0919066295028, \n        -0.99269211292299997, \n        0.107040666044, \n        0.050012789666700003, \n        -0.996286034584, \n        0.069151014089600005, \n        0.045042391866400001, \n        -0.923399090767, \n        0.36528366804099999, \n        0.115317180753, \n        -0.912390470505, \n        0.36849468946500002, \n        0.176495671272, \n        -0.84775394201300003, \n        -0.52508437633500005, \n        -0.070683836937000005, \n        -0.85745197534600004, \n        -0.50493848323799995, \n        -0.095968931913400002, \n        -0.87631130218499997, \n        -0.470547914505, \n        -0.100298702717, \n        -0.85593849420500001, \n        -0.51290607452400006, \n        -0.060760647058499997, \n        -0.94190448522600001, \n        -0.327391117811, \n        -0.070894986391100007, \n        -0.924890697002, \n        -0.37915247678800001, \n        0.0147111564875, \n        -0.98889130353900001, \n        0.056294992566100002, \n        0.13535711169199999, \n        -0.97735786438000005, \n        0.0298928841949, \n        0.208024173975, \n        -0.89697110652900003, \n        0.363188326359, \n        0.25086623430299998, \n        -0.88980525732000004, \n        0.33405208587599999, \n        0.30992239713699998, \n        -0.82357019186000002, \n        -0.56667089462300002, \n        -0.0036566555499999999, \n        -0.83539962768599996, \n        -0.54762458801299996, \n        -0.040137082338299997, \n        -0.84464085102099995, \n        -0.53424465656300002, \n        -0.023673266172399999, \n        -0.83045721054099997, \n        -0.55628597736399998, \n        0.016798913478900002, \n        -0.91173863410900002, \n        -0.40584939718200003, \n        0.058436036109900003, \n        -0.896799147129, \n        -0.429369330406, \n        0.10387063026399999, \n        -0.968328475952, \n        0.0051206499338200002, \n        0.24841596186199999, \n        -0.95213848352399999, \n        -0.021094620227799999, \n        0.303947210312, \n        -0.887768864632, \n        0.31125801801699998, \n        0.33820384740800002, \n        -0.82466089725500002, \n        0.30642142891899998, \n        0.47480258345600002, \n        -0.79357129335400001, \n        -0.60201120376600004, \n        0.084990471601500001, \n        -0.81256556510900002, \n        -0.58149540424299995, \n        0.031580954790100001, \n        -0.81520277261700003, \n        -0.57335186004600003, \n        0.078160703182200003, \n        -0.80716615915300005, \n        -0.57248902320899997, \n        0.141899138689, \n        -0.85089200735100001, \n        -0.48008698225000002, \n        0.21188400685799999, \n        -0.82251358032199995, \n        -0.49344098568, \n        0.28175091743500003, \n        -0.899655282497, \n        -0.0281008332968, \n        0.435002624989, \n        -0.836818218231, \n        -0.059138432145099999, \n        0.54372179508200003, \n        -0.71844899654399996, \n        0.34905558824499999, \n        0.60115540027600001, \n        -0.72968864440900005, \n        0.32516777515400003, \n        0.60101348161699997, \n        -0.73839402198799997, \n        -0.63770633935900001, \n        0.21794514358, \n        -0.77951055765199995, \n        -0.61163020134000001, \n        0.13291983306399999, \n        -0.77465605735800003, \n        -0.59512621164299995, \n        0.21243482828099999, \n        -0.71957463026000001, \n        -0.62572497129399995, \n        0.30012834072099998, \n        -0.80983638763400001, \n        -0.48002701997800001, \n        0.33635741472199998, \n        -0.73754519224199999, \n        -0.51745671033899998, \n        0.43319916725199997, \n        -0.79290449619299996, \n        -0.061758130788799999, \n        0.60570907592800005, \n        -0.74137204885499997, \n        -0.064687371253999995, \n        0.66751736402499995, \n        -0.66856807470299995, \n        0.25148403644599998, \n        0.69940578937499998, \n        -0.59120839834200001, \n        0.26598268747300002, \n        0.76100009679799996, \n        -0.57264500856400002, \n        -0.68462419509899997, \n        0.45029199123399999, \n        -0.69908487796800001, \n        -0.64956176281, \n        0.29790103435499998, \n        -0.63167721033099999, \n        -0.65474218130100004, \n        0.41435784101500001, \n        -0.474660634995, \n        -0.68486511707300002, \n        0.55231523513799996, \n        -0.60978084802599997, \n        -0.56399565935100004, \n        0.55630189180400003, \n        -0.41889545321499999, \n        -0.60037970542899999, \n        0.68078339099899998, \n        -0.61626887321500001, \n        -0.119074046612, \n        0.77809393405899996, \n        -0.41279533505400001, \n        -0.205706894398, \n        0.88695007562600003, \n        -0.544219613075, \n        0.25456610322000001, \n        0.79901063442200004, \n        -0.33183577656699997, \n        0.086272358894300002, \n        0.93906235694899998, \n        0.038131080567799999, \n        -0.65819722414000004, \n        0.75147801637599998, \n        -0.39135876298, \n        -0.70066434145000001, \n        0.59607392549500005, \n        -0.216484606266, \n        -0.68922978639599997, \n        0.69100826978700003, \n        0.13421845436099999, \n        -0.62847822904600004, \n        0.76576572656599995, \n        -0.125380143523, \n        -0.60787039995199998, \n        0.78369027376199996, \n        0.18645468354200001, \n        -0.57442057132699997, \n        0.79666340351099996, \n        -0.144408389926, \n        -0.284820944071, \n        0.94732189178500004, \n        0.15595689415899999, \n        -0.357453018427, \n        0.92049002647400002, \n        -0.0156979579479, \n        -0.10776743292800001, \n        0.993748784065, \n        0.22443720698399999, \n        -0.226142704487, \n        0.94756680726999998, \n        0.39880853891399998, \n        -0.54179131984700002, \n        0.73946666717499998, \n        0.30513781309100002, \n        -0.57525026798199996, \n        0.75853383541099995, \n        0.384037017822, \n        -0.54892522096600005, \n        0.74201983213400002, \n        0.46625518798799997, \n        -0.505049407482, \n        0.72589772939700004, \n        0.41686511039700003, \n        -0.51226425170900003, \n        0.75046932697299995, \n        0.46826756000500003, \n        -0.499377161264, \n        0.72852188348799995, \n        0.35585451126099998, \n        -0.403142154217, \n        0.84275740385099995, \n        0.42540350556399997, \n        -0.48040491342500002, \n        0.76657646894499998, \n        0.24231381714299999, \n        -0.245417863131, \n        0.93832361698199995, \n        0.297654122114, \n        -0.31102013587999999, \n        0.90225553512599999, \n        -0.88639527559300002, \n        -0.12668873369700001, \n        -0.44457870721800002, \n        -0.91428887844100004, \n        -0.0535003393888, \n        -0.40076094865799999, \n        -0.91084086895000005, \n        0.010114654898600001, \n        -0.41190159320800002, \n        -0.90163064003000004, \n        -0.081966638565100003, \n        -0.42395693063700002, \n        -0.91911035776100003, \n        0.049180045723900001, \n        -0.39014518260999997, \n        -0.92205655574800005, \n        0.104985296726, \n        -0.37173476815200002, \n        -0.91640317439999996, \n        0.16743943095200001, \n        -0.3627204597, \n        -0.91322022676500003, \n        0.13756245374699999, \n        -0.38275438547099999, \n        -0.92717200517700005, \n        0.065328165888799999, \n        -0.36807781457900002, \n        -0.91204547882099996, \n        0.236559554935, \n        -0.33408010006, \n        -0.92910236120199996, \n        0.20309564471200001, \n        -0.30808594822899998, \n        -0.90303820371599997, \n        0.26243376731899998, \n        -0.33918553590799999, \n        -0.90137171745300004, \n        0.28066524863199999, \n        -0.32886466383899998, \n        -0.90745496749900001, \n        0.268719822168, \n        -0.322041720152, \n        -0.92851752042799995, \n        0.24080824851999999, \n        -0.28153795003900001, \n        -0.86180073022799997, \n        -0.29298049211499999, \n        -0.413349151611, \n        -0.87731802463499997, \n        -0.23846498131800001, \n        -0.41574445366899998, \n        -0.89719694852800003, \n        -0.166364759207, \n        -0.4083596766, \n        -0.89188063144700003, \n        -0.23436424136199999, \n        -0.38603040575999997, \n        -0.93919932842300002, \n        0.0080331414937999997, \n        -0.34239757060999998, \n        -0.951627552509, \n        -0.048248827457400001, \n        -0.30244666337999998, \n        -0.95162057876600004, \n        0.163194715977, \n        -0.25919470190999999, \n        -0.96829354762999997, \n        0.128720104694, \n        -0.21268475055700001, \n        -0.94918638467799998, \n        0.21125319600100001, \n        -0.23197793960599999, \n        -0.96718287467999997, \n        0.18030455708500001, \n        -0.17732542753200001, \n        -0.84112888574599998, \n        -0.40512663125999998, \n        -0.35745203495, \n        -0.85122895240800001, \n        -0.36565154790900001, \n        -0.37563854455899998, \n        -0.887247025967, \n        -0.29168891906700001, \n        -0.356519281864, \n        -0.88182866573300001, \n        -0.34135392308200002, \n        -0.32442501187299999, \n        -0.95946919918100004, \n        -0.092671900987600003, \n        -0.26500195264800003, \n        -0.96561235189399997, \n        -0.13650076091300001, \n        -0.21990056335899999, \n        -0.98219633102399995, \n        0.093448273837600002, \n        -0.161103338003, \n        -0.99154049158099999, \n        0.0610363632441, \n        -0.11188220977799999, \n        -0.98009002208700002, \n        0.151515230536, \n        -0.12594495713699999, \n        -0.98982405662499995, \n        0.120425619185, \n        -0.071709342300899995, \n        -0.82285743951799994, \n        -0.48714682459800002, \n        -0.29152992367699998, \n        -0.83084905147599997, \n        -0.45591533184100003, \n        -0.318162918091, \n        -0.87658125162099998, \n        -0.38402700424199998, \n        -0.28900569677400001, \n        -0.86991226673099997, \n        -0.42295327782600001, \n        -0.25250473618500002, \n        -0.96833753585799998, \n        -0.174384325743, \n        -0.176944553852, \n        -0.96835148334499999, \n        -0.21141915023300001, \n        -0.13035963475699999, \n        -0.99817752838100005, \n        0.029826993122699999, \n        -0.046337805688399999, \n        -0.99897629022599999, \n        0.03553776443, \n        0.013377560302600001, \n        -0.99714684486399996, \n        0.065104037523300004, \n        0.029245065525199999, \n        -0.98907625675199995, \n        0.118023350835, \n        0.084826976060900006, \n        -0.80471295118300001, \n        -0.55058777332300002, \n        -0.22064837813400001, \n        -0.81260955333700002, \n        -0.52457457780799999, \n        -0.25275063514700002, \n        -0.86301136016799995, \n        -0.456820011139, \n        -0.21429425478, \n        -0.85422801971399998, \n        -0.48884332180000001, \n        -0.175281062722, \n        -0.96524745225899999, \n        -0.24598370492499999, \n        -0.0847720950842, \n        -0.95918226242100002, \n        -0.27913570404100002, \n        -0.0380598902702, \n        -0.99744176864599998, \n        0.0023108199238799998, \n        0.067089535295999994, \n        -0.99228233098999996, \n        -0.019007962197099999, \n        0.12004573643200001, \n        -0.98465162515600002, \n        0.096788868308100004, \n        0.143137767911, \n        -0.97633105516399998, \n        0.089451476931599994, \n        0.195376977324, \n        -0.78546971082700001, \n        -0.60104250907900003, \n        -0.145542055368, \n        -0.79436409473400005, \n        -0.57878017425499995, \n        -0.18274278938800001, \n        -0.84506368637100004, \n        -0.51674389839199997, \n        -0.135052204132, \n        -0.83355921506899999, \n        -0.54392373561899998, \n        -0.093394413590400002, \n        -0.94963520765300002, \n        -0.31225168705, \n        0.0093803852796599998, \n        -0.93723487853999998, \n        -0.343202352524, \n        0.056551516056100003, \n        -0.98384588956800001, \n        -0.053381983190800002, \n        0.169095933437, \n        -0.97134160995499996, \n        -0.089399501681299995, \n        0.21885891258699999, \n        -0.96877437830000002, \n        0.064647071063499997, \n        0.238104075193, \n        -0.95651102066000004, \n        0.0239309668541, \n        0.28967350721399998, \n        -0.76436507701900003, \n        -0.64118534326599996, \n        -0.0634361505508, \n        -0.77529788017300005, \n        -0.62184011936200001, \n        -0.107814401388, \n        -0.821595847607, \n        -0.56733763217900002, \n        -0.050048768520400001, \n        -0.80634248256700003, \n        -0.59092748165099995, \n        -0.0036131441593199999, \n        -0.92001014947899995, \n        -0.37623435258900001, \n        0.106891706586, \n        -0.899881124496, \n        -0.40629130601899999, \n        0.15664666891099999, \n        -0.95454770326600002, \n        -0.126272857189, \n        0.26886877417600002, \n        -0.93199348449700004, \n        -0.16633474826799999, \n        0.321117013693, \n        -0.94133567810100005, \n        -0.0132192969322, \n        0.33631542325000002, \n        -0.91842657327699995, \n        -0.059613481163999997, \n        0.39030110835999998, \n        -0.739220738411, \n        -0.67218798399000002, \n        0.033340752124799998, \n        -0.75471806526200003, \n        -0.65515708923299998, \n        -0.023791998624800002, \n        -0.79004734754600003, \n        -0.61079645156899998, \n        0.0463488996029, \n        -0.76790404319799999, \n        -0.63179922103899999, \n        0.10270896554, \n        -0.87169075012200004, \n        -0.44059488177299999, \n        0.213137596846, \n        -0.839222550392, \n        -0.471306622028, \n        0.27013438940000001, \n        -0.90254545211799997, \n        -0.20755732059500001, \n        0.37646728753999997, \n        -0.86380702257200004, \n        -0.251070171595, \n        0.43611523509, \n        -0.887642860413, \n        -0.107668474317, \n        0.44709497690200001, \n        -0.84782594442400006, \n        -0.15512916445700001, \n        0.506481051445, \n        -0.70048844814300004, \n        -0.694572210312, \n        0.16211906075499999, \n        -0.72908878326399995, \n        -0.67930883169199996, \n        0.079781889915500004, \n        -0.74175494909299999, \n        -0.64908397197699996, \n        0.16699156165099999, \n        -0.70201700925800004, \n        -0.66854405403100003, \n        0.244166225195, \n        -0.79101103544200002, \n        -0.50848138332399995, \n        0.33932748436900001, \n        -0.73207587003700003, \n        -0.54190438985800005, \n        0.41206857562100002, \n        -0.81245762109800002, \n        -0.300730168819, \n        0.49886935949299999, \n        -0.73951864242599996, \n        -0.35931849479700001, \n        0.56868124008200005, \n        -0.798457860947, \n        -0.20756430923899999, \n        0.56460446119300001, \n        -0.77806800603899995, \n        -0.269321650267, \n        0.56698477268199998, \n        -0.60419851541500003, \n        -0.70856899023099995, \n        0.36369115114200001, \n        -0.68108427524600001, \n        -0.69555187225299997, \n        0.22743730246999999, \n        -0.64542305469500005, \n        -0.68425631523099995, \n        0.33855375647500002, \n        -0.54826533794400001, \n        -0.70023554563500001, \n        0.456587135792, \n        -0.63747549056999997, \n        -0.58210015296899997, \n        0.50416266918200003, \n        -0.50873434543600005, \n        -0.61616390943499999, \n        0.60077351331700002, \n        -0.65505117178000005, \n        -0.43515658378599997, \n        0.61720561981199995, \n        -0.48876839876200001, \n        -0.52531433105500003, \n        0.69609379768400004, \n        -0.72694039344799999, \n        -0.357320100069, \n        0.58589804172500004, \n        -0.51224130392099998, \n        -0.478761404753, \n        0.71259576082200005, \n        -0.21012553572699999, \n        -0.68827217817300002, \n        0.69392043352099997, \n        -0.51790058612800005, \n        -0.70694541931199995, \n        0.48104369640400002, \n        -0.38256943225899998, \n        -0.70514601469000004, \n        0.59649580717100004, \n        -0.102081172168, \n        -0.67407441139199997, \n        0.73116314411200001, \n        -0.29760211706200002, \n        -0.640151619911, \n        0.70783817768099999, \n        -0.017162816599, \n        -0.63118934631300005, \n        0.77504992485000002, \n        -0.27564874291399999, \n        -0.57399368286100005, \n        0.77067816257499999, \n        0.018786126747699999, \n        -0.59009271860099999, \n        0.80674332380299996, \n        -0.30123502016100001, \n        -0.54830443859099998, \n        0.77975344657900003, \n        -0.024963559582799999, \n        -0.57682478427899997, \n        0.81611645221700002, \n        0.17230294644800001, \n        -0.59914803504900005, \n        0.78149199485800003, \n        0.037429794669200003, \n        -0.63007366657300001, \n        0.775242805481, \n        0.16707053780600001, \n        -0.60867720842399997, \n        0.77523988485299999, \n        0.27201884985000002, \n        -0.55646193027500002, \n        0.78469896316499999, \n        0.23816305398900001, \n        -0.57635289430600001, \n        0.78133898973500004, \n        0.31292149424600002, \n        -0.55620205402400003, \n        0.76949059963199995, \n        0.256219595671, \n        -0.56221419572800002, \n        0.78591567277899999, \n        0.33670431375499998, \n        -0.541726350784, \n        0.76977849006700005, \n        0.233040615916, \n        -0.56206625700000001, \n        0.79320245981199999, \n        0.338557749987, \n        -0.54190927743899997, \n        0.76883679628400003, \n        0.89491474628400003, \n        -0.082880765199700002, \n        -0.43778273463200001, \n        0.89857059717200005, \n        -0.054115042090400002, \n        -0.43478566408199998, \n        0.90081590414000001, \n        0.035799399018300003, \n        -0.432025492191, \n        0.91611027717600002, \n        0.011656388640400001, \n        -0.40000218153, \n        0.906357228756, \n        0.121685251594, \n        -0.40386301279100001, \n        0.90447682142300001, \n        0.140447571874, \n        -0.40198558568999998, \n        0.89462774992000005, \n        0.13838422298399999, \n        -0.42413091659500002, \n        0.89016312360799998, \n        0.093474686145799998, \n        -0.445272505283, \n        0.90631222724899996, \n        0.034016817808199998, \n        -0.42052099108699997, \n        0.90791481733299995, \n        0.118980079889, \n        -0.40116181969600001, \n        0.89191263914100005, \n        0.146654710174, \n        -0.42705899476999998, \n        0.88442790508299995, \n        0.16451428830600001, \n        -0.43602526187899998, \n        0.88454985618600002, \n        0.17045351862899999, \n        -0.43349108099900002, \n        0.89361512660999998, \n        0.16150121390800001, \n        -0.418049693108, \n        0.91323417425200004, \n        0.13809727132300001, \n        -0.38252943754199997, \n        0.89485776424399999, \n        -0.23548887669999999, \n        -0.37837970256800002, \n        0.90860456228300002, \n        -0.19608479738199999, \n        -0.36794787645299998, \n        0.90580236911800005, \n        -0.130788490176, \n        -0.40225946903199999, \n        0.90344715118399999, \n        -0.176461696625, \n        -0.38992422819099998, \n        0.92094880342499996, \n        -0.019508227706000001, \n        -0.38841968774800001, \n        0.937602758408, \n        -0.0726684331894, \n        -0.33913958072700001, \n        0.95065981149699996, \n        0.045739978551899999, \n        -0.30585759878199997, \n        0.93151068687399996, \n        0.080214470624900003, \n        -0.35390710830700001, \n        0.93553048372299996, \n        0.108068339527, \n        -0.335410684347, \n        0.95537543296799998, \n        0.077415123581900003, \n        -0.28400820493700002, \n        0.889437377453, \n        -0.35184076428400002, \n        -0.29069921374300001, \n        0.91056799888600004, \n        -0.307506144047, \n        -0.275139868259, \n        0.91119182109800001, \n        -0.254674106836, \n        -0.32290449738499999, \n        0.89499372243899999, \n        -0.30695930123300003, \n        -0.32273653149600001, \n        0.94870442152000001, \n        -0.117924384773, \n        -0.29231870174399999, \n        0.95790767669700005, \n        -0.164432346821, \n        -0.23403030633899999, \n        0.98106068372699995, \n        -0.025982856750500001, \n        -0.190373495221, \n        0.96814155578600003, \n        0.0086859092116399993, \n        -0.24904176592800001, \n        0.97219836711899998, \n        0.046555146574999998, \n        -0.22816307842700001, \n        0.98562228679700004, \n        0.0139975622296, \n        -0.16657868027700001, \n        0.87430793046999999, \n        -0.447839736938, \n        -0.185529991984, \n        0.90057504177100001, \n        -0.40174460411099999, \n        -0.16420339047900001, \n        0.90756982564900002, \n        -0.35598850250199998, \n        -0.22132416069499999, \n        0.88233053684200002, \n        -0.40895646810500003, \n        -0.231612041593, \n        0.96232634782799997, \n        -0.206237703562, \n        -0.17546999454500001, \n        0.96217036247300003, \n        -0.248342007399, \n        -0.10932097584, \n        0.99336296319999995, \n        -0.097486458718800004, \n        -0.055882625281799998, \n        0.98994803428599998, \n        -0.062447343021600002, \n        -0.12449540197800001, \n        0.99432462453799997, \n        -0.017720747739099998, \n        -0.101987183094, \n        0.99789959192300004, \n        -0.051470153033699999, \n        -0.030715221539100002, \n        0.845491588116, \n        -0.52913212776200003, \n        -0.067513212561600006, \n        0.87408798932999998, \n        -0.48358392715499998, \n        -0.038907170295699997, \n        0.89004015922500002, \n        -0.44336205720900002, \n        -0.103224813938, \n        0.86022418737399997, \n        -0.49392980337100001, \n        -0.124274492264, \n        0.95644617080700001, \n        -0.28797799348800002, \n        -0.040925741195699999, \n        0.94438874721499999, \n        -0.32632744312299999, \n        0.032187879085499999, \n        0.98077774047900002, \n        -0.16818919777899999, \n        0.0958322584629, \n        0.99060177803000005, \n        -0.13329273462300001, \n        0.018363654613500001, \n        0.99529933929400005, \n        -0.083646036684500005, \n        0.042185954749599998, \n        0.98522436618800002, \n        -0.11772543937, \n        0.12194117158700001, \n        0.79910957813299999, \n        -0.59751451015500001, \n        0.061611294746400001, \n        0.82610249519300005, \n        -0.55422657728199998, \n        0.098908230662300006, \n        0.853693127632, \n        -0.51942312717399997, \n        0.028353646397600001, \n        0.82407212257399998, \n        -0.56593704223600005, \n        -0.0042360126972200004, \n        0.92485064268100003, \n        -0.36359918117500001, \n        0.10882614553, \n        0.89753794670099996, \n        -0.39811676740599999, \n        0.187949240208, \n        0.93523651361500004, \n        -0.2369094491, \n        0.261922895908, \n        0.96271926164599997, \n        -0.20287372171900001, \n        0.17722748220000001, \n        0.967581748962, \n        -0.149736776948, \n        0.201892003417, \n        0.93951219320299995, \n        -0.18347057700200001, \n        0.28818798065200002, \n        0.72923374176, \n        -0.65312469005600005, \n        0.20258983969700001, \n        0.74919265508699995, \n        -0.61317181587199998, \n        0.24925169348699999, \n        0.79263758659399997, \n        -0.58432751894000001, \n        0.17228998243800001, \n        0.76889377832399997, \n        -0.62604790925999998, \n        0.12752647697899999, \n        0.85956543683999997, \n        -0.43223044276200001, \n        0.27151301503199998, \n        0.81190776824999999, \n        -0.46244227886200001, \n        0.35545563697799998, \n        0.84619241952900004, \n        -0.302541613579, \n        0.43797671794900001, \n        0.89723700284999997, \n        -0.270025461912, \n        0.34849372506100001, \n        0.90244334936100001, \n        -0.21467816829700001, \n        0.372698426247, \n        0.85085201263400001, \n        -0.24785113334700001, \n        0.46262025833100001, \n        0.62321174144699998, \n        -0.69442617893199998, \n        0.35885462164900001, \n        0.62882101535799995, \n        -0.65799629688299999, \n        0.413547068834, \n        0.69673854112599998, \n        -0.63676464557599999, \n        0.32936549186699998, \n        0.68623173236799995, \n        -0.67382943630199998, \n        0.27282959222800002, \n        0.74811202287699996, \n        -0.49211835861199998, \n        0.44445878267299999, \n        0.671375215054, \n        -0.51688492298099997, \n        0.53054881095899997, \n        0.69828003644900005, \n        -0.36409202218100001, \n        0.61582303047200004, \n        0.781678915024, \n        -0.33382222056400002, \n        0.52624809742000001, \n        0.78921562433199999, \n        -0.27777409553499999, \n        0.54715371131900004, \n        0.70635563135099999, \n        -0.31062316894500003, \n        0.63558602333100001, \n        0.45094579458200001, \n        -0.714866042137, \n        0.53386378288299996, \n        0.43471369147299999, \n        -0.68061536550500001, \n        0.58922201394999996, \n        0.54500937461900001, \n        -0.67243087291699999, \n        0.50019788742100002, \n        0.55690580606499995, \n        -0.70639860629999995, \n        0.436179280281, \n        0.56879222392999995, \n        -0.53924816846800006, \n        0.62055057287199999, \n        0.448971390724, \n        -0.55525624752000002, \n        0.69965064525599996, \n        0.47009298205400002, \n        -0.41923338174800001, \n        0.77630752325100005, \n        0.59786140918700004, \n        -0.39307323098199998, \n        0.69817709922799998, \n        0.61479336023300002, \n        -0.338998645544, \n        0.711692094803, \n        0.49065381288499998, \n        -0.37134778499600002, \n        0.78788101673099997, \n        0.14677566289899999, \n        -0.68983364105199996, \n        0.70850694179499996, \n        0.116705752909, \n        -0.65676164627099998, \n        0.74460816383399997, \n        0.29646643996200001, \n        -0.677479326725, \n        0.67270082235299999, \n        0.33453798294100001, \n        -0.71160602569599996, \n        0.61733055114699997, \n        0.289522558451, \n        -0.56261307001100003, \n        0.77397614717499996, \n        0.115327171981, \n        -0.56158638000500005, \n        0.81897270679500001, \n        0.14540508389500001, \n        -0.46053892373999999, \n        0.87530368566500005, \n        0.32448998093600001, \n        -0.44377291202500002, \n        0.83496582508100003, \n        0.36714610457399999, \n        -0.39805874228499999, \n        0.84032714366899997, \n        0.195114076138, \n        -0.42683711648, \n        0.88268744945499999, \n        -0.34133392572400001, \n        -0.55997091531800003, \n        0.75453311204899998, \n        -0.33054515719400002, \n        -0.54631501436200003, \n        0.76920467615099997, \n        -0.092836953699600003, \n        -0.617491483688, \n        0.78069317340900002, \n        -0.066550001501999995, \n        -0.64431738853499998, \n        0.76146090030699998, \n        -0.10168129205699999, \n        -0.53968596458399998, \n        0.83534169197100006, \n        -0.30295249819800002, \n        -0.51325702667200002, \n        0.80261051654799997, \n        -0.24399831891099999, \n        -0.47467657923700002, \n        0.84530663490299995, \n        -0.038141682743999997, \n        -0.47518146038100001, \n        0.87871658801999997, \n        0.0509212203324, \n        -0.45238035917300001, \n        0.89003115892399998, \n        -0.15566098689999999, \n        -0.46882438659699999, \n        0.86911952495599998, \n        -0.55732667446100004, \n        -0.46759074926400002, \n        0.685668885708, \n        -0.54486042261099998, \n        -0.47689095139499998, \n        0.68927383422900002, \n        -0.49027791619299999, \n        -0.49316206574400001, \n        0.71820205450100005, \n        -0.51650899648699999, \n        -0.48523044586199998, \n        0.70510005950900001, \n        -0.46493756771099998, \n        -0.47972607612599999, \n        0.74370133876800004, \n        -0.50377780199099997, \n        -0.47545844316500002, \n        0.72079330682800002, \n        -0.41518062353099999, \n        -0.51904225349400002, \n        0.74673748016399999, \n        -0.37285640835799999, \n        -0.48774269223200001, \n        0.78897476196299998, \n        -0.25086924433699997, \n        -0.50406777858700003, \n        0.82606041431400001, \n        -0.34070008993099998, \n        -0.50280916690800004, \n        0.794042229652, \n        0.70185303688, \n        -0.395115673542, \n        -0.59218412637700002, \n        0.764326155186, \n        -0.31881171464899999, \n        -0.55996489524799997, \n        0.74544388055800004, \n        -0.30038124322900001, \n        -0.59454238414799998, \n        0.68900793790799997, \n        -0.365471601486, \n        -0.62537610530900001, \n        0.68443620204900002, \n        -0.36181974411000001, \n        -0.63247895240800001, \n        0.73483204841600003, \n        -0.302711606026, \n        -0.60645180940599996, \n        0.86467379331600003, \n        -0.077568292617800003, \n        -0.49570029974000002, \n        0.87433189153699997, \n        -0.073918864131000003, \n        -0.47903531789800002, \n        0.889660298824, \n        -0.091516435146299993, \n        -0.44668209552799998, \n        0.94013702869399995, \n        0.14699059724800001, \n        -0.30648443102799999, \n        0.92657613754299994, \n        0.16514712572099999, \n        -0.33701622486100002, \n        0.92239433527000003, \n        0.174599260092, \n        -0.343656212091, \n        0.92173159122500004, \n        0.254894018173, \n        -0.29126501083400003, \n        0.925163567066, \n        0.245394915342, \n        -0.28853186964999999, \n        0.93961918353999996, \n        0.22574979066799999, \n        -0.256025671959, \n        0.71823304891600004, \n        -0.47392883896799998, \n        -0.50885027647000003, \n        0.776700377464, \n        -0.42149767279599998, \n        -0.46740981936499998, \n        0.77144098281899998, \n        -0.37895250320399998, \n        -0.51055878400800003, \n        0.69799119234100004, \n        -0.47042790055299999, \n        -0.53935408592199996, \n        0.91212546825399998, \n        -0.12454739213, \n        -0.38975629210500001, \n        0.92182260751699996, \n        -0.17916989326499999, \n        -0.34283643960999999, \n        0.97544735670100002, \n        0.072835691273199998, \n        -0.206380665302, \n        0.95839852094699995, \n        0.11993777751900001, \n        -0.25784513354299998, \n        0.95418083667800002, \n        0.20541794598099999, \n        -0.21618969738499999, \n        0.97369086742400002, \n        0.16333566606, \n        -0.15698058903199999, \n        0.71425330638899998, \n        -0.55061268806499997, \n        -0.43135169148399999, \n        0.80575162172299997, \n        -0.42029604315800001, \n        -0.41654816269900002, \n        0.795613706112, \n        -0.40436887741100003, \n        -0.45042294263799998, \n        0.75380235910399995, \n        -0.44469463825200001, \n        -0.48314106464399997, \n        0.926036298275, \n        -0.195177048445, \n        -0.32211670279499999, \n        0.93479359149899999, \n        -0.185842871666, \n        -0.30169287323999999, \n        0.98504042625400001, \n        0.046173047274399998, \n        -0.16419140994500001, \n        0.98110163211800006, \n        0.044642321765399999, \n        -0.18666061758999999, \n        0.98171746730800002, \n        0.12083250284200001, \n        -0.14500218629799999, \n        0.98570835590399997, \n        0.12721957266299999, \n        -0.10765648633200001, \n        0.64930689334900005, \n        -0.73066031932800002, \n        -0.209600716829, \n        0.68112123012500003, \n        -0.72162604332000002, \n        -0.121351361275, \n        0.76157993078200004, \n        -0.57911509275399997, \n        -0.28985947370499998, \n        0.59850120544399998, \n        -0.75414615869500001, \n        -0.269176661968, \n        0.95243334770200005, \n        -0.23233082890500001, \n        -0.19567489624000001, \n        0.91555345058399995, \n        -0.39931339025500001, \n        -0.041326507925999997, \n        0.99751961231200004, \n        -0.054216124117399997, \n        0.037578649818900002, \n        0.99648499488800002, \n        0.029177287593499999, \n        -0.074582576751700005, \n        0.99122762680099996, \n        0.12736251950300001, \n        -0.025335453450699999, \n        0.99575215578099996, \n        0.057979688048400001, \n        0.067164510488500001, \n        0.71010845899599995, \n        -0.62455135583900001, \n        -0.324156105518, \n        0.77936357259800004, \n        -0.493146061897, \n        -0.38573950529099998, \n        0.75484192371400005, \n        -0.62593895196899996, \n        -0.19444829225499999, \n        0.78407418727900002, \n        -0.56781750917399998, \n        -0.24941265583, \n        0.88006520271300004, \n        -0.46936625242199997, \n        -0.067655757069600003, \n        0.90262037515600002, \n        -0.33930450677899998, \n        -0.263712346554, \n        0.99003297090499998, \n        -0.12419747561199999, \n        -0.061684764921699997, \n        0.98859840631499996, \n        -0.145628005266, \n        0.029372725635799998, \n        0.99852240085599997, \n        -0.0363077372313, \n        0.032110102474700003, \n        0.99806153774299999, \n        0.0051348917186300001, \n        0.056939400732499999, \n        0.51245921850200005, \n        -0.78000843524899999, \n        -0.35828578472099998, \n        0.64279580116299995, \n        -0.72114920616099998, \n        -0.25720232725100001, \n        0.70753628015500003, \n        -0.57903707027399998, \n        -0.40435585379599998, \n        0.51025784015700004, \n        -0.79583066701899996, \n        -0.32509583234799999, \n        0.92717689275699999, \n        -0.293138444424, \n        -0.231966927648, \n        0.91592538356800002, \n        -0.39532658457800002, \n        0.064760446548499995, \n        0.96557641029399999, \n        -0.047589339315900002, \n        0.25454613566399997, \n        0.99696487188299998, \n        -0.0455481410027, \n        0.058155231177799999, \n        0.97468262910799996, \n        0.052344784140600002, \n        0.215985760093, \n        0.95571035146700001, \n        0.0274806916714, \n        0.29198980331399998, \n        0.586588859558, \n        -0.79785901308100005, \n        -0.13686066865900001, \n        0.62496721744499995, \n        -0.77369332313500006, \n        0.10104548931100001, \n        0.60588693618800005, \n        -0.79503178596500002, \n        -0.0148846209049, \n        0.54522728919999996, \n        -0.76617461442900003, \n        -0.339262545109, \n        0.77454304695099996, \n        -0.54386067390399995, \n        0.32201671600300003, \n        0.77809298038499997, \n        -0.56553417444200005, \n        0.27228474616999998, \n        0.87036013603200002, \n        -0.29681834578499999, \n        0.39213457703600002, \n        0.90347212553, \n        -0.18532702326799999, \n        0.38573047518699999, \n        0.93201249837900002, \n        -0.0073824226856199996, \n        0.36151579022399999, \n        0.89257848262799999, \n        -0.13132134079900001, \n        0.43064489960699998, \n        0.55763554573100005, \n        -0.82790887355800002, \n        -0.054825693368900003, \n        0.65883696079300003, \n        -0.74767714738799995, \n        -0.079427897930099994, \n        0.68849802017200001, \n        -0.72355842590300001, \n        -0.042775958776499999, \n        0.61218708753600004, \n        -0.79027426242800003, \n        -0.0094524621963500005, \n        0.87067300081300003, \n        -0.48491048812900001, \n        0.078659042715999994, \n        0.85917645692800004, \n        -0.48759871721300002, \n        0.153163716197, \n        0.87098288536099999, \n        -0.199233829975, \n        0.44843053817700002, \n        0.91276133060499998, \n        -0.23345948755699999, \n        0.33430302143099999, \n        0.86561453342399997, \n        -0.17464524507500001, \n        0.46862244605999998, \n        0.819110572338, \n        -0.113519743085, \n        0.56175434589399997, \n        0.56352579593700003, \n        -0.82571756839800003, \n        -0.00505325198174, \n        0.46858844161000002, \n        -0.85653138160700004, \n        0.21488609910000001, \n        0.57579308748199998, \n        -0.81543970107999997, \n        0.054012298584000001, \n        0.53095668554300002, \n        -0.84121084213300001, \n        -0.099229723215099999, \n        0.72575378418000003, \n        -0.55856734514200002, \n        0.40084993839299998, \n        0.483976811171, \n        -0.64195209741600001, \n        0.59418851137200002, \n        0.54889917373700003, \n        -0.33356326818499998, \n        0.76605564355900002, \n        0.72868686914400005, \n        -0.25747919082600002, \n        0.63412648439399999, \n        0.70231288671500003, \n        -0.13396057486499999, \n        0.69871902465799995, \n        0.56998080015200003, \n        -0.236045747995, \n        0.78663849830599997, \n        0.50711083412199998, \n        -0.80036824941600004, \n        0.31881970167200002, \n        0.360676079988, \n        -0.78208470344500003, \n        0.50759470462800005, \n        0.40079793334000002, \n        -0.83147585392000001, \n        0.38393509388000002, \n        0.63211810588799999, \n        -0.77078926563299999, \n        0.075540274381600006, \n        0.28992342948900002, \n        -0.67197901010500005, \n        0.68101829290399996, \n        0.31890666484800001, \n        -0.66682761907599997, \n        0.67307966947599995, \n        0.32160487771000001, \n        -0.49564027786300002, \n        0.80641639232600004, \n        0.398580640554, \n        -0.43154561519599999, \n        0.80888664722400005, \n        0.48056587576900001, \n        -0.32518377900099998, \n        0.814069151878, \n        0.32413110137000001, \n        -0.39444985985800002, \n        0.85950243473099996, \n        0.121996156871, \n        -0.76343941688500006, \n        0.63377654552499996, \n        0.081155888736199999, \n        -0.74026334285700002, \n        0.66694748401600001, \n        0.26832994818700001, \n        -0.77181291580199995, \n        0.57593405246700002, \n        0.39115682244299999, \n        -0.78383731842000004, \n        0.48165550827999998, \n        0.227603241801, \n        -0.66496312618300002, \n        0.71092724800100005, \n        0.0049101468175600004, \n        -0.65017759799999997, \n        0.75936865806599996, \n        -0.0434915646911, \n        -0.534316599369, \n        0.84380704164499998, \n        0.19152814149899999, \n        -0.511744439602, \n        0.83715611696199999, \n        0.16827417910100001, \n        -0.434714734554, \n        0.88436585664699996, \n        -0.023068133741600001, \n        -0.49667397141500003, \n        0.86728203296700002, \n        -0.088455282151699996, \n        -0.69982266426100004, \n        0.70839297771499998, \n        -0.1812312603, \n        -0.63651376962700001, \n        0.74926668405499997, \n        -0.10585103184, \n        -0.68369454145399999, \n        0.72163301706299998, \n        -0.0148433167487, \n        -0.72656452655799997, \n        0.68649768829299995, \n        -0.195845842361, \n        -0.60922300815599995, \n        0.76804196834600003, \n        -0.24829600751399999, \n        -0.60126632451999995, \n        0.75909370183900005, \n        -0.22912679612600001, \n        -0.59392464160900005, \n        0.770811200142, \n        -0.178252160549, \n        -0.56267207860900004, \n        0.80685931444199999, \n        -0.10737157612999999, \n        -0.54323685169199998, \n        0.83232259750399995, \n        -0.17875100672200001, \n        -0.56841427087800001, \n        0.80271452665300003, \n        0.87297934293699997, \n        -0.18966171145399999, \n        -0.448699444532, \n        0.890935897827, \n        -0.13980677723900001, \n        -0.43137469887699997, \n        0.90612930059399999, \n        -0.059405580163000002, \n        -0.41808575391800001, \n        0.90989822149300004, \n        -0.12531913816900001, \n        -0.39468580484400001, \n        0.919544219971, \n        -0.033433288335799997, \n        -0.39079096913299999, \n        0.93146866559999997, \n        0.030460402369500001, \n        -0.36171072721500003, \n        0.92776179313700002, \n        0.097344309091599995, \n        -0.35941243171699999, \n        0.92166864871999998, \n        0.065604791045200006, \n        -0.38160073757200003, \n        0.93539649248099999, \n        0.0036322325468100001, \n        -0.35272645950300002, \n        0.95268720388399997, \n        0.14185015857200001, \n        -0.267696142197, \n        0.93628215789799996, \n        0.16616979241400001, \n        -0.30848082900000001, \n        0.92782473564099999, \n        0.18483915925, \n        -0.32306739687899999, \n        0.92940425872800003, \n        0.203482553363, \n        -0.306919306517, \n        0.936424195766, \n        0.199491754174, \n        -0.28759211301799997, \n        0.95433574914899999, \n        0.18358755111700001, \n        -0.23438018560400001, \n        0.84980231523500005, \n        -0.33476191759099999, \n        -0.40640628337899998, \n        0.883881986141, \n        -0.27551379799800002, \n        -0.37714907527000002, \n        0.88806080818199995, \n        -0.21455919742599999, \n        -0.40584242343900001, \n        0.86494767665899996, \n        -0.28593862056699998, \n        -0.41170465946200002, \n        0.94727981090500002, \n        -0.0465331524611, \n        -0.31605654954899998, \n        0.95928323268899995, \n        -0.095984712243099998, \n        -0.26449513435400002, \n        0.98568129539500005, \n        0.080193869769599996, \n        -0.14627879858000001, \n        0.97299313545199995, \n        0.109094046056, \n        -0.201940000057, \n        0.97265815734899996, \n        0.16014763712899999, \n        -0.16638973355299999, \n        0.98509150743499996, \n        0.13490024209000001, \n        -0.10388461500399999, \n        0.83329731226000003, \n        -0.43460267782200002, \n        -0.34078204631800002, \n        0.87676119804399999, \n        -0.371996641159, \n        -0.303815245628, \n        0.881343781948, \n        -0.32702523469900002, \n        -0.34012430906300001, \n        0.84232062101399996, \n        -0.39825567603099998, \n        -0.36233153939200002, \n        0.96543043851900001, \n        -0.13548907637599999, \n        -0.221320152283, \n        0.96925526857400002, \n        -0.173914477229, \n        -0.17232094705100001, \n        0.99862337112400001, \n        0.022355146706100001, \n        -0.040581740438899998, \n        0.99438959360099999, \n        0.0499675124884, \n        -0.089939534664200002, \n        0.99236333370200003, \n        0.110576599836, \n        -0.0488345474005, \n        0.99615514278399997, \n        0.083978936076199995, \n        0.0043145082890999999, \n        0.81743907928500004, \n        -0.50829148292500004, \n        -0.269869476557, \n        0.86566460132599998, \n        -0.445425480604, \n        -0.22719541192100001, \n        0.87225252389899999, \n        -0.41043400764499999, \n        -0.26479500532200001, \n        0.82499682903299998, \n        -0.47971513867400001, \n        -0.29774209857, \n        0.96940517425499995, \n        -0.207264393568, \n        -0.12919199466699999, \n        0.96699887514100002, \n        -0.23910279572000001, \n        -0.084492579102500007, \n        0.99781864881500004, \n        -0.033192973583899998, \n        0.051502745598599999, \n        0.99965012073500004, \n        -0.0061374958604599999, \n        0.0076693231239900002, \n        0.99668490886700001, \n        0.059710163623099999, \n        0.049505647271900002, \n        0.99457460641899997, \n        0.031894370913500003, \n        0.095921427011499999, \n        0.80040931701700002, \n        -0.56487143039700005, \n        -0.19915285706499999, \n        0.85007524490399999, \n        -0.50373780727399997, \n        -0.15170918405100001, \n        0.85882753133800005, \n        -0.47549134492900003, \n        -0.188992902637, \n        0.80807894468300001, \n        -0.54175639152499999, \n        -0.23001152277, \n        0.961913466454, \n        -0.268828809261, \n        -0.043005898594899998, \n        0.95467960834499999, \n        -0.29661142826100001, \n        -0.0019552707672099998, \n        0.98671698570300004, \n        -0.088456675410300001, \n        0.13401651382400001, \n        0.99341690540299998, \n        -0.060931697487800002, \n        0.093838259577799996, \n        0.99060887098299999, \n        0.0074537098407699998, \n        0.134294435382, \n        0.98370784521099996, \n        -0.0222773775458, \n        0.176689624786, \n        0.78228169679600001, \n        -0.608975052834, \n        -0.12876713275900001, \n        0.83039218187300001, \n        -0.55134648084600002, \n        -0.076572179794300005, \n        0.84120792150500001, \n        -0.52791857719400004, \n        -0.114310458302, \n        0.79051220417000001, \n        -0.589969754219, \n        -0.162549883127, \n        0.94477570056899995, \n        -0.32450097799299998, \n        0.038647934794399999, \n        0.93319308757800001, \n        -0.349941283464, \n        0.078025430440900004, \n        0.96598422527299999, \n        -0.14596591889900001, \n        0.21204696595700001, \n        0.97768974304199996, \n        -0.116600781679, \n        0.17298373580000001, \n        0.97596228122700002, \n        -0.047776773571999998, \n        0.21121619641799999, \n        0.96392989158599995, \n        -0.080708213150500002, \n        0.25243276357700001, \n        0.76355236768699997, \n        -0.64290976524400001, \n        -0.055235892534300002, \n        0.80636048316999998, \n        -0.59090650081600005, \n        0.0027716457843799999, \n        0.81966638565100003, \n        -0.57104349136400001, \n        -0.0381256043911, \n        0.77280050516099996, \n        -0.62711554765699995, \n        -0.094352364540100001, \n        0.91783875227, \n        -0.37755393981899998, \n        0.120091721416, \n        0.90096783638, \n        -0.40213254094099998, \n        0.16106638312300001, \n        0.93290722370099999, \n        -0.20920284092399999, \n        0.29208582639699998, \n        0.95161455869699996, \n        -0.17602382600300001, \n        0.25068128108999999, \n        0.95160460472099995, \n        -0.108819141984, \n        0.286362469196, \n        0.93221139907799999, \n        -0.14695759117599999, \n        0.32982033491099999, \n        0.74355739355100003, \n        -0.66757637262299996, \n        0.029327094554899999, \n        0.77481299638699996, \n        -0.624400377274, \n        0.095838457345999994, \n        0.79296052455900001, \n        -0.60701763629899996, \n        0.046258926391600001, \n        0.75559383630800003, \n        -0.65425133705100003, \n        -0.020703166723299998, \n        0.87740296125399997, \n        -0.43121275305700002, \n        0.208844929934, \n        0.85127586126300003, \n        -0.45681905746500001, \n        0.25698536634399999, \n        0.87853068113300004, \n        -0.28356137871699999, \n        0.383631139994, \n        0.91005307436000005, \n        -0.24342247843699999, \n        0.33458295464499999, \n        0.91207247972500005, \n        -0.180316567421, \n        0.36743205785799998, \n        0.87928938865700002, \n        -0.226833492517, \n        0.418081730604, \n        0.71574079990399997, \n        -0.68338859081299996, \n        0.14174318313600001, \n        0.72230684757200003, \n        -0.65445435047099998, \n        0.22216889262200001, \n        0.75444912910499995, \n        -0.63793832063699996, \n        0.15243493020500001, \n        0.73740124702499998, \n        -0.67148923873900002, \n        0.068833976983999998, \n        0.81130689382599996, \n        -0.48984801769300002, \n        0.31816089153299998, \n        0.76295852661100005, \n        -0.51965999603299995, \n        0.383723080158, \n        0.77746820449800003, \n        -0.37785884737999997, \n        0.50215733051300004, \n        0.83816587924999997, \n        -0.32573857903499998, \n        0.43677106499700002, \n        0.84223163127900003, \n        -0.27004644274700002, \n        0.46595826745000002, \n        0.77991938590999998, \n        -0.32963246107100003, \n        0.53147345781300004, \n        0.64399945735899999, \n        -0.69274175167100005, \n        0.32368123531300003, \n        0.59277492761600004, \n        -0.68463420867900004, \n        0.42342710495000002, \n        0.676776587963, \n        -0.66758733987800001, \n        0.30934756994200002, \n        0.70546692609799999, \n        -0.67994868755299998, \n        0.19844904542, \n        0.68097633123400003, \n        -0.559508025646, \n        0.471825450659, \n        0.56553214788399997, \n        -0.59586101770400002, \n        0.56966489553499999, \n        0.55317091941800001, \n        -0.50012499093999996, \n        0.66578692197800005, \n        0.69236183166499998, \n        -0.43349704146399998, \n        0.57629191875499997, \n        0.69967770576499999, \n        -0.38931241631500002, \n        0.59856724739099998, \n        0.563021957874, \n        -0.462886154652, \n        0.68420630693399997, \n        0.28512087464300001, \n        -0.68863201141399999, \n        0.66624975204500003, \n        0.15656170249000001, \n        -0.67548298835800002, \n        0.72014343738599995, \n        0.44001108408, \n        -0.69480013847400002, \n        0.56836533546400003, \n        0.57749462127700002, \n        -0.68919283151599997, \n        0.43693202733999997, \n        0.36079502105700001, \n        -0.62983179092399999, \n        0.68741238117199999, \n        0.068377748131800004, \n        -0.63191711902600001, \n        0.77162301540400002, \n        0.034000627696500002, \n        -0.589614987373, \n        0.80659437179600002, \n        0.34474685788199999, \n        -0.559455096722, \n        0.75336247682599999, \n        0.37128987908400002, \n        -0.53123152255999995, \n        0.76114010810900001, \n        0.081515572965099994, \n        -0.57351779937699998, \n        0.81475687026999999, \n        -0.131686225533, \n        -0.60635483264900003, \n        0.78382921218900004, \n        -0.245044976473, \n        -0.56118547916399997, \n        0.790202260017, \n        -0.13196514546900001, \n        -0.61433047056199996, \n        0.77754718065299999, \n        0.0206337682903, \n        -0.63561499118800002, \n        0.77133893966699996, \n        -0.20806714892399999, \n        -0.58141237497300002, \n        0.78617054224000005, \n        -0.29008239507700001, \n        -0.56111252307899995, \n        0.77485597133600004, \n        -0.313974171877, \n        -0.54672890901600002, \n        0.77582460641899997, \n        -0.225766807795, \n        -0.56667983531999999, \n        0.79202282428699999, \n        -0.198385074735, \n        -0.56640493869800002, \n        0.799515485764, \n        -0.315037846565, \n        -0.54666483402300003, \n        0.77543771266899997, \n        -0.255441844463, \n        0.95856243372000005, \n        -0.123707592487, \n        -0.393732070923, \n        0.90167868137399998, \n        -0.17705249786400001, \n        -0.264256179333, \n        0.928751528263, \n        -0.25881785154300002, \n        -0.14383456111000001, \n        0.96154862642299999, \n        -0.23266178369500001, \n        -0.42428484559099999, \n        0.891759693623, \n        -0.155378043652, \n        -0.31401413679099999, \n        0.91756987571699999, \n        -0.24260273575800001, \n        0.0436749085784, \n        0.84528368711500002, \n        -0.53196328878400001, \n        0.063922993838799999, \n        0.85134279727899997, \n        -0.52011990547200004, \n        0.15418641269200001, \n        0.857229113579, \n        -0.49069380760199999, \n        0.288705796003, \n        0.66174614429500001, \n        -0.69147515296899997, \n        0.35397309064900001, \n        0.65798628330200004, \n        -0.66419339180000003, \n        0.26874482631699997, \n        0.67354357242600005, \n        -0.68812215328199999, \n        0.32538670301400002, \n        0.59792143106499995, \n        -0.73212689161300004, \n        0.34711015224500003, \n        0.59192919731100002, \n        -0.72700142860399997, \n        0.39553952217100002, \n        0.59051066637000005, \n        -0.70302361249900003, \n        0.073508799076100001, \n        0.99269616603900002, \n        0.092448621988300006, \n        -0.096591830253600006, \n        0.99474549293500003, \n        -0.023377865552900001, \n        0.0180784389377, \n        0.99143356084800005, \n        -0.12700062990200001, \n        0.18225795030600001, \n        0.98294305801399995, \n        -2.6732683181799999e-05, \n        0.30963146686600002, \n        0.867140114307, \n        -0.38934940099699999, \n        0.442109465599, \n        0.85913956165299998, \n        -0.256542474031, \n        0.465063542128, \n        0.66638076305399996, \n        -0.58227908611300006, \n        0.58157634735099994, \n        0.66524112224599996, \n        -0.46756780147600002, \n        0.491604536772, \n        0.58960390090899994, \n        -0.64038157463099998, \n        0.59874618053399997, \n        0.59923505783099995, \n        -0.53086364269300002, \n        0.29124602675400002, \n        0.92227739095700001, \n        0.25293666124300002, \n        0.19023853540399999, \n        0.96523046493499998, \n        0.17758134007500001, \n        0.29672437906299998, \n        0.94932729005799998, \n        0.100642621517, \n        0.38479480147400003, \n        0.90418791770899998, \n        0.183776497841, \n        0.54107856750500005, \n        0.82979142665899996, \n        -0.13444736599900001, \n        0.59838730096799997, \n        0.79964447021499996, \n        -0.043552607297900003, \n        0.65879297256500002, \n        0.66078042983999996, \n        -0.35882759094200001, \n        0.71455514431, \n        0.64796125888800005, \n        -0.26258966326700001, \n        0.659734725952, \n        0.60371267795600003, \n        -0.446851015091, \n        0.72443521022799995, \n        0.59757453203199995, \n        -0.34277445077899998, \n        0.41728392243399998, \n        0.83254146575900001, \n        0.36351621151000002, \n        0.35817584395399998, \n        0.88103985786399996, \n        0.30801793932900001, \n        0.44371196627600001, \n        0.86106693744700002, \n        0.24714136123700001, \n        0.49338799714999998, \n        0.81408214569100001, \n        0.30534282326700002, \n        0.644402325153, \n        0.76339244842499998, \n        0.0370635688305, \n        0.67404037713999998, \n        0.73161399364500002, \n        0.099024385213900001, \n        0.75019139051399997, \n        0.63433635234800001, \n        -0.18500511348199999, \n        0.77984142303500004, \n        0.61488735675799999, \n        -0.114703387022, \n        0.75080817937900002, \n        0.59826630353900001, \n        -0.27885478735000002, \n        0.78949254751200004, \n        0.58035171031999999, \n        -0.198217138648, \n        0.49987602233900003, \n        0.731238126755, \n        0.46347701549499998, \n        0.46111872792199998, \n        0.78606361150699999, \n        0.41093891859100001, \n        0.52992689609499999, \n        0.769109725952, \n        0.35643234848999999, \n        0.56386268138899998, \n        0.716745495796, \n        0.40955027937900002, \n        0.70207792520500001, \n        0.69368946552300004, \n        0.158991008997, \n        0.72752326726899996, \n        0.65166020393400004, \n        0.21317960321900001, \n        0.80324137210799995, \n        0.59245008230200003, \n        -0.056587815284699999, \n        0.83073705434800005, \n        0.55609607696499996, \n        0.0054249465465499996, \n        0.81046217679999999, \n        0.56825935840599995, \n        -0.14009967446300001, \n        0.84980928897899999, \n        0.52175641059900002, \n        -0.070640668273000001, \n        0.56171435117699997, \n        0.59383362531700001, \n        0.57553011179000002, \n        0.53387975692699996, \n        0.667695403099, \n        0.51821947097800003, \n        0.59537220001199997, \n        0.65471625328100003, \n        0.465054512024, \n        0.62251996994000003, \n        0.58184230327599995, \n        0.52280509471900005, \n        0.757135331631, \n        0.59241902828199999, \n        0.27419117093099998, \n        0.78310841321900004, \n        0.52236825227700001, \n        0.33655536174799999, \n        0.86335122585299995, \n        0.499360203743, \n        0.068258062004999995, \n        0.89037001133000004, \n        0.43456375598899999, \n        0.13338470458999999, \n        0.88398104906099995, \n        0.46687000989900002, \n        -0.0026169717311900001, \n        0.91236847639100005, \n        0.40379703044900001, \n        0.062665253877599997, \n        0.59270101785700002, \n        0.44322609901400001, \n        0.67205107212100001, \n        0.58125948905900005, \n        0.51829546689999995, \n        0.62681967019999996, \n        0.64098936319400002, \n        0.50676792859999997, \n        0.57594805955899997, \n        0.65180909633600004, \n        0.43140867352500001, \n        0.62323969602600005, \n        0.80077821016299999, \n        0.44948023557700001, \n        0.39511764049499998, \n        0.810165345669, \n        0.37581944465599998, \n        0.44920831918699999, \n        0.90912240743600004, \n        0.36727204918900003, \n        0.19494512677199999, \n        0.92002213001300004, \n        0.29797899723100002, \n        0.25330847501800002, \n        0.932124435902, \n        0.339287549257, \n        0.124197490513, \n        0.94429677724799999, \n        0.27208781242399999, \n        0.183486565948, \n        0.59699469804799998, \n        0.29560169577599998, \n        0.74539482593499995, \n        0.597537517548, \n        0.36876565218000001, \n        0.71158713102299997, \n        0.65564692020399995, \n        0.356485307217, \n        0.66516309976599997, \n        0.65336763858799995, \n        0.28197085857400001, \n        0.70213890075700003, \n        0.81219565868400001, \n        0.30117505788799998, \n        0.499027252197, \n        0.806844294071, \n        0.22703440487400001, \n        0.54484343528699997, \n        0.92306423187300002, \n        0.227870151401, \n        0.30890870094299999, \n        0.91879546642300003, \n        0.15677465498400001, \n        0.36143082380300001, \n        0.94882637262299996, \n        0.205069065094, \n        0.238896816969, \n        0.94588029384600003, \n        0.13623684644699999, \n        0.29350733757000003, \n        0.582659959793, \n        0.152514904737, \n        0.79789900779699996, \n        0.591379344463, \n        0.22412729263299999, \n        0.77423119544999996, \n        0.64599794149400003, \n        0.20858898758899999, \n        0.73387539386699996, \n        0.63342964649199995, \n        0.13536810874899999, \n        0.76147198677100003, \n        0.79474693536800001, \n        0.15201810002300001, \n        0.58708167076100004, \n        0.77579164504999998, \n        0.079592674970600005, \n        0.625466108322, \n        0.90656620264099996, \n        0.086611047387100001, \n        0.41234946250900001, \n        0.88704007864000001, \n        0.016105249524100002, \n        0.460755825043, \n        0.93606626987499997, \n        0.070548906922299995, \n        0.34380114078500001, \n        0.91780781745899997, \n        0.0019890815019599998, \n        0.396259307861, \n        0.55640190839799997, \n        0.012921184301399999, \n        0.83044910430899999, \n        0.57035475969299998, \n        0.084780424833300005, \n        0.81664228439300002, \n        0.61742252111399998, \n        0.064082026481599996, \n        0.78363233804700005, \n        0.59668576717400001, \n        -0.0080794095992999995, \n        0.80205774307300004, \n        0.74982857704200001, \n        0.0053661763668100002, \n        0.66115427017200001, \n        0.71789419650999997, \n        -0.062295079231300003, \n        0.69292366504699998, \n        0.85896354913700002, \n        -0.0505636185408, \n        0.50894230604199997, \n        0.82258355617500001, \n        -0.11688271164900001, \n        0.555960059166, \n        0.89396697282799997, \n        -0.057226419448900001, \n        0.44378393888500001, \n        0.85801684856399996, \n        -0.123166769743, \n        0.49802854657200002, \n        0.52455759048499995, \n        -0.12628087401400001, \n        0.84159886836999998, \n        0.54147046804400001, \n        -0.050705224275600001, \n        0.838829636574, \n        0.57436555623999996, \n        -0.076805919408799994, \n        0.81461691856399998, \n        0.54736274480799996, \n        -0.14868509769400001, \n        0.82321530580500002, \n        0.67714649438899999, \n        -0.13392457365999999, \n        0.72314155101800004, \n        0.63286685943599996, \n        -0.191441178322, \n        0.74981755018200003, \n        0.77697134017900005, \n        -0.17373654246299999, \n        0.60458934307099998, \n        0.71957361698199995, \n        -0.22883389890200001, \n        0.65516811609299996, \n        0.81981641054200005, \n        -0.16679863631700001, \n        0.54724371433300001, \n        0.75924062728899999, \n        -0.22531594335999999, \n        0.61006778478599999, \n        0.51868736743900001, \n        -0.20018854737299999, \n        0.83083307743099999, \n        0.52294206619299999, \n        -0.169866710901, \n        0.83490884304000001, \n        0.53181236982299995, \n        -0.198255121708, \n        0.82296246290200004, \n        0.53265714645399997, \n        -0.22455617785500001, \n        0.81562662124600005, \n        0.58565807342499998, \n        -0.24099925160399999, \n        0.77351140975999999, \n        0.56974893808399996, \n        -0.24097821116400001, \n        0.78530979156500003, \n        0.66374552249899998, \n        -0.24779017269600001, \n        0.70529299974399995, \n        0.61129635572399998, \n        -0.23304057121300001, \n        0.75591373443599996, \n        0.71196693182000004, \n        -0.22253178060100001, \n        0.66556698083900001, \n        0.65924084186599996, \n        -0.241505041718, \n        0.71166908741000001, \n        -0.55199229717300002, \n        0.28863781690599999, \n        -0.78191381692899997, \n        -0.52171140909199998, \n        0.20189502835299999, \n        -0.828523755074, \n        -0.55635797977400003, \n        0.26998642087000002, \n        -0.78547382354700002, \n        -0.551302492619, \n        0.35348823666599999, \n        -0.75531995296499999, \n        -0.53458750247999998, \n        0.0370502471924, \n        -0.84394311904899999, \n        -0.54557222127899996, \n        0.0954286456108, \n        -0.83225065469699999, \n        -0.55735862255099999, \n        0.39130085706700002, \n        -0.73186796903600004, \n        -0.56240314245199996, \n        0.48337700963000002, \n        -0.67040753364600003, \n        -0.534849464893, \n        0.53632503747899996, \n        -0.65244692563999995, \n        -0.50940316915499995, \n        0.68006956577300004, \n        -0.52669596672100005, \n        -0.48749378323600001, \n        0.70851200819000004, \n        -0.50966304540600005, \n        -0.51252019405399996, \n        0.65053457021700001, \n        -0.55993181467099995, \n        -0.47927325964, \n        0.71959668397900001, \n        -0.50187140703199995, \n        -0.49075478315400001, \n        0.73011243343400001, \n        -0.47486054897300001, \n        -0.46570932865100001, \n        0.76058429479599998, \n        -0.45168858766600001, \n        -0.61344867944699999, \n        0.36912351846699998, \n        -0.697728216648, \n        -0.537379682064, \n        0.32915759086599999, \n        -0.77606356143999999, \n        -0.54844236373900002, \n        0.38825476169599998, \n        -0.74017941951800004, \n        -0.61640578508400001, \n        0.41829669475600001, \n        -0.66668462753299995, \n        -0.527209758759, \n        0.56667590141299995, \n        -0.63271188735999995, \n        -0.591027498245, \n        0.58653378486600005, \n        -0.55322790145900003, \n        -0.45590332150500001, \n        0.74524295330000001, \n        -0.48596417903900002, \n        -0.51905924081800003, \n        0.75104606151599995, \n        -0.40731298923499998, \n        -0.42494463920600001, \n        0.80764609575299995, \n        -0.40807574987400003, \n        -0.46860542893399998, \n        0.80658948421499999, \n        -0.35946941375699998, \n        -0.74266862869299999, \n        0.43892145156899998, \n        -0.50516045093499995, \n        -0.67083042859999997, \n        0.41282626986499998, \n        -0.61559504270599996, \n        -0.68844604492200001, \n        0.45837450027499999, \n        -0.56154334545100004, \n        -0.74370133876800004, \n        0.48278617858900003, \n        -0.46176052093499997, \n        -0.66467022895799999, \n        0.60907399654399996, \n        -0.43201646208799999, \n        -0.70331555604899998, \n        0.634832262993, \n        -0.31895366311099999, \n        -0.58120447397200004, \n        0.76521593332299997, \n        -0.27575570344900002, \n        -0.61419045925100002, \n        0.77404224872600003, \n        -0.15173718333200001, \n        -0.54541623592400001, \n        0.80974847078300005, \n        -0.21500009298299999, \n        -0.56905311346099996, \n        0.81530177593200004, \n        -0.104199498892, \n        -0.80717122554800003, \n        0.49078080058099999, \n        -0.32711520791100002, \n        -0.76173698902099996, \n        0.48368987441099998, \n        -0.43034598231299998, \n        -0.77771008014700005, \n        0.51623004674899997, \n        -0.357867926359, \n        -0.80145597457899997, \n        0.53049772977800003, \n        -0.27502191066699999, \n        -0.730417370796, \n        0.65128332376499998, \n        -0.20424927771099999, \n        -0.74217283725700001, \n        0.65631377697000004, \n        -0.133517682552, \n        -0.63214308023499999, \n        0.77209782600400001, \n        -0.060470730066300001, \n        -0.64753341674800002, \n        0.76159900426899996, \n        0.0079531073570300002, \n        -0.59983885288200001, \n        0.799567461014, \n        -0.016793042421299999, \n        -0.61166220903400004, \n        0.78939652442899999, \n        0.0460233986378, \n        -0.86072707176200003, \n        0.46274623274799997, \n        -0.21073737740500001, \n        -0.818063855171, \n        0.50649201870000005, \n        -0.27135404944399999, \n        -0.82049018144600006, \n        0.53095465898500005, \n        -0.210426449776, \n        -0.84867465496100003, \n        0.50580525398300002, \n        -0.152673900127, \n        -0.75553977489500002, \n        0.65110033750499996, \n        -0.067997038364400006, \n        -0.77263164520299998, \n        0.634310424328, \n        -0.00931030511856, \n        -0.65411639213600004, \n        0.75247764587400001, \n        0.072829216718700004, \n        -0.65773534774800002, \n        0.74123811721800004, \n        0.13170221447899999, \n        -0.62424147129100005, \n        0.77126109600100001, \n        0.121966153383, \n        -0.62210911512400002, \n        0.76331341266599995, \n        0.17242392897600001, \n        -0.926169216633, \n        0.36006924509999999, \n        -0.109346985817, \n        -0.89422893524199998, \n        0.41801473498300001, \n        -0.15816023945800001, \n        -0.88355112075800002, \n        0.45659208297699999, \n        -0.101276382804, \n        -0.914861679077, \n        0.39958828687699999, \n        -0.0524698644876, \n        -0.80167281627700004, \n        0.59577506780599998, \n        0.0420516133308, \n        -0.83679819107099995, \n        0.54000091552700002, \n        0.086967945098900004, \n        -0.679046928883, \n        0.71251082420300005, \n        0.17498517036399999, \n        -0.71223181486099996, \n        0.66657865047499998, \n        0.21861998736900001, \n        -0.62815129756900001, \n        0.74671947956100004, \n        0.21732833981499999, \n        -0.66743439435999996, \n        0.69936478138000002, \n        0.25459009409, \n        -0.97199338674500002, \n        0.23262573778599999, \n        -0.022580072283700001, \n        -0.951971530914, \n        0.29839289188399998, \n        -0.064087033271800001, \n        -0.94106173515299996, \n        0.33722412586200001, \n        -0.0088723003864300005, \n        -0.96242439746899999, \n        0.268265962601, \n        0.034195572137800001, \n        -0.86915642023100004, \n        0.47538042068500003, \n        0.13408048450900001, \n        -0.89661514759100003, \n        0.40553155541399999, \n        0.17613181471799999, \n        -0.75144404172900003, \n        0.60542112588899999, \n        0.26113808155099999, \n        -0.78622555732699995, \n        0.53577917814300002, \n        0.30689734220499998, \n        -0.70219087600700003, \n        0.64898401498799996, \n        0.29179388284699997, \n        -0.74520593881599995, \n        0.57214921712900002, \n        0.34162682294800001, \n        -0.99422574043300005, \n        0.085980825126200006, \n        0.059321783482999997, \n        -0.98668897151900004, \n        0.15968576073599999, \n        0.0184597223997, \n        -0.97747170925100002, \n        0.19567587971700001, \n        0.075207173824300005, \n        -0.98607420921300004, \n        0.11474134028000001, \n        0.11784939467900001, \n        -0.91880846023600005, \n        0.32510280609100001, \n        0.22247678041499999, \n        -0.93327814340600002, \n        0.23937568068500001, \n        0.26662048697500002, \n        -0.81777900457399999, \n        0.45562538504599998, \n        0.35076901316600001, \n        -0.84147787094100002, \n        0.363016396761, \n        0.39941236376799999, \n        -0.77456206083300005, \n        0.50379484891899995, \n        0.38162976503399998, \n        -0.80651837587399999, \n        0.40079793334000002, \n        0.43391892314000002, \n        -0.98498648405099998, \n        -0.081554569303999999, \n        0.150155633688, \n        -0.99450361728699999, \n        0.0048994123935700001, \n        0.10165829211500001, \n        -0.98586720228199998, \n        0.030876673758, \n        0.16281482577299999, \n        -0.97491455078099998, \n        -0.065630674362200006, \n        0.211259186268, \n        -0.93829059600800002, \n        0.13771040737599999, \n        0.31629449129100001, \n        -0.92969012260399997, \n        0.030327141284900001, \n        0.36626741290100001, \n        -0.85666817426700004, \n        0.25677546858799999, \n        0.44674608111399999, \n        -0.85671824216799997, \n        0.13161724805800001, \n        0.49810355901699999, \n        -0.82264047861099998, \n        0.30576765537299999, \n        0.478712379932, \n        -0.82998532056800001, \n        0.16882802546, \n        0.53105258941699995, \n        -0.92007613182100001, \n        -0.28235569596299998, \n        0.27042731642700002, \n        -0.96371090412100002, \n        -0.172547876835, \n        0.202201932669, \n        -0.94876050949099999, \n        -0.16683661937700001, \n        0.26723629236200003, \n        -0.90040004253399997, \n        -0.28525587916400003, \n        0.32757404446600003, \n        -0.90175765752799997, \n        -0.10071356594600001, \n        0.41962724924099998, \n        -0.84984934329999995, \n        -0.235926747322, \n        0.47062784433400001, \n        -0.83807194232899995, \n        -0.0082527101039900005, \n        0.54494440555599999, \n        -0.79081112146400001, \n        -0.170652449131, \n        0.58727461099599998, \n        -0.81763708591499995, \n        0.0396486520767, \n        0.573841691017, \n        -0.77772605419200003, \n        -0.12928895652299999, \n        0.61467230319999999, \n        -0.72704541683199997, \n        -0.53111159801499996, \n        0.43442082405100002, \n        -0.85551059246100003, \n        -0.38965830206899998, \n        0.34009328484500001, \n        -0.82121396064800001, \n        -0.40988323092500001, \n        0.396231383085, \n        -0.69677352905300005, \n        -0.54574310779599999, \n        0.464830607176, \n        -0.759643495083, \n        -0.39422589540500003, \n        0.51664793491399996, \n        -0.63954782485999995, \n        -0.53908121585799995, \n        0.54750871658300004, \n        -0.71409237384799995, \n        -0.336337447166, \n        0.61346966028200001, \n        -0.59774345159499997, \n        -0.50873631238899997, \n        0.61910098791099999, \n        -0.72117817401899997, \n        -0.28126105666200002, \n        0.632605910301, \n        -0.61414748430300004, \n        -0.45901635289199999, \n        0.641501247883, \n        -0.55140846967699997, \n        -0.64420139789599995, \n        0.52948009967800003, \n        -0.62351667880999995, \n        -0.60166728496599997, \n        0.49861836433399997, \n        -0.56979393959000002, \n        -0.63704752922100005, \n        0.51855635642999998, \n        -0.49438968300800001, \n        -0.66240692138699997, \n        0.56230914592699999, \n        -0.50884127616899999, \n        -0.65161418914799996, \n        0.56202828884099998, \n        -0.48037889599799999, \n        -0.67451518773999997, \n        0.56005483865700001, \n        -0.508948266506, \n        -0.61989277601199999, \n        0.59674173593500002, \n        -0.49251922965, \n        -0.66268175840400001, \n        0.56362468004199995, \n        -0.55100160837199996, \n        -0.57158631086300005, \n        0.60752147436100001, \n        -0.49573928117799998, \n        -0.63677865266800004, \n        0.59004276990899995, \n        0.265086919069, \n        0.82642436027499999, \n        -0.49613317847299998, \n        0.13543009757999999, \n        0.857055127621, \n        -0.49649900198000002, \n        0.23281067609799999, \n        0.82167184352900002, \n        -0.519664049149, \n        0.32642042636899998, \n        0.78392130136500005, \n        -0.527554690838, \n        0.085255950689300003, \n        0.89001423120500001, \n        -0.44721597433100002, \n        0.14815324544899999, \n        0.86294233798999997, \n        -0.48247027397199999, \n        0.39362812042200002, \n        0.67375051975300004, \n        -0.62491023540500001, \n        0.42799276113500001, \n        0.65469628572500005, \n        -0.62256795167900003, \n        0.48981806635899999, \n        0.61262494325600003, \n        -0.619810760021, \n        0.55497741699199998, \n        0.46651810407599997, \n        -0.68830007314700004, \n        0.59913504123700001, \n        0.42759487032900001, \n        -0.676457703114, \n        0.52124160528200003, \n        0.50692689418799997, \n        -0.68609666824299997, \n        0.55598211288499999, \n        0.44383496046100002, \n        -0.70234686136199997, \n        0.59747153520600005, \n        0.40092992782600001, \n        -0.69403135776500002, \n        0.61945790052399996, \n        0.36954438686399999, \n        -0.69217395782500002, \n        0.44324111938499999, \n        0.76873278617899998, \n        -0.460415959358, \n        0.32961142063100002, \n        0.788877725601, \n        -0.5180965662, \n        0.401491731405, \n        0.74716031551399997, \n        -0.529105186462, \n        0.49291110038800001, \n        0.71654957532899999, \n        -0.49294215440799999, \n        0.54543226957299995, \n        0.57858830690399998, \n        -0.605917036533, \n        0.60492831468599995, \n        0.54707878828000001, \n        -0.57806843519200002, \n        0.63375359773600004, \n        0.39666020870199997, \n        -0.66363656520799996, \n        0.67434632778199999, \n        0.36910849809599999, \n        -0.63907092809699995, \n        0.65897196531299995, \n        0.33556360006300001, \n        -0.67271775007199996, \n        0.683475613594, \n        0.31585660576800001, \n        -0.65764141082799998, \n        0.63806927204099995, \n        0.72852188348799995, \n        -0.24803005158899999, \n        0.55204129219099995, \n        0.74771511554699999, \n        -0.36819675564799997, \n        0.59210515022300003, \n        0.69812214374500003, \n        -0.40178763866400002, \n        0.67403846979100002, \n        0.676772594452, \n        -0.29503688216200002, \n        0.68396538496000003, \n        0.52028089761700003, \n        -0.51077967882200004, \n        0.74594664573699998, \n        0.50870233774200002, \n        -0.42916435003300002, \n        0.723876357079, \n        0.34832680225399998, \n        -0.59503531456000003, \n        0.77301251888300004, \n        0.332965403795, \n        -0.53942704200699998, \n        0.72567075490999999, \n        0.29045823216400002, \n        -0.62324368953700005, \n        0.76937764883000004, \n        0.27866482734699999, \n        -0.57428252697000004, \n        0.71806907653800001, \n        0.69050544500400002, \n        -0.083514988422400002, \n        0.69078534841499994, \n        0.70653653144799999, \n        -0.15171813964799999, \n        0.71960163116499998, \n        0.66226094961199999, \n        -0.20731639862099999, \n        0.74926269054399997, \n        0.64750343561199997, \n        -0.13689666986499999, \n        0.789088666439, \n        0.49781167507200003, \n        -0.359052538872, \n        0.81475389003800003, \n        0.49388086795800001, \n        -0.30274355411499998, \n        0.808204829693, \n        0.32891464233399997, \n        -0.48786866664900003, \n        0.83279043436099998, \n        0.32633543014499999, \n        -0.44649916887300001, \n        0.79589956998800004, \n        0.277787089348, \n        -0.53737771511099997, \n        0.82725411653500003, \n        0.26783710718199999, \n        -0.49326503276799999, \n        0.76201879978200004, \n        0.64624780416500005, \n        0.032971322536500001, \n        0.73993754386900001, \n        0.67190098762499995, \n        -0.0209260880947, \n        0.76918065547900005, \n        0.63343465328199999, \n        -0.080733120441400005, \n        0.79524785280200005, \n        0.60548114776600004, \n        -0.019252777099600001, \n        0.83864766359300003, \n        0.48278516530999999, \n        -0.25097018480299998, \n        0.87201458215700001, \n        0.44744983315499998, \n        -0.19691351056100001, \n        0.86031115055100005, \n        0.30811095237699998, \n        -0.40537458658199998, \n        0.89143568277399998, \n        0.27760717272800001, \n        -0.35731407999999998, \n        0.85236150026299995, \n        0.25302857160600001, \n        -0.45700395107300001, \n        0.88334220647799999, \n        0.22296264767599999, \n        -0.41156968474400002, \n        0.82244759798, \n        0.53696680069000002, \n        0.18612581491499999, \n        0.79222971200900005, \n        0.60167932510400002, \n        0.098741859197599993, \n        0.831161916256, \n        0.55316293239600001, \n        0.050754785537699999, \n        0.85983628034600001, \n        0.492862135172, \n        0.13101443648300001, \n        0.906450152397, \n        0.40120783448199998, \n        -0.12952587008499999, \n        0.933522999287, \n        0.35279542207699999, \n        -0.058872714638700002, \n        0.92103880643799996, \n        0.24257971346400001, \n        -0.30370822548900001, \n        0.94832652807200002, \n        0.20210894942300001, \n        -0.243362486362, \n        0.911092817783, \n        0.191883027554, \n        -0.36398804187799999, \n        0.93869346380200003, \n        0.15508915483999999, \n        -0.30691629648199997, \n        0.84271645545999996, \n        0.39654624462100002, \n        0.36328530311599999, \n        0.83966535329799996, \n        0.47093379497499999, \n        0.26940762996700002, \n        0.87679117918000005, \n        0.42888244986500001, \n        0.21608772873900001, \n        0.881743609905, \n        0.358408749104, \n        0.30572563409800002, \n        0.95433181524300004, \n        0.29699128866199997, \n        0.021042242646199999, \n        0.96479761600500002, \n        0.23938369750999999, \n        0.106096953154, \n        0.97095274925200004, \n        0.15981873869900001, \n        -0.176363736391, \n        0.98842841386799996, \n        0.110551603138, \n        -0.100915528834, \n        0.96115869283699995, \n        0.11815928667800001, \n        -0.24821099638899999, \n        0.98182147741299997, \n        0.071540400385899997, \n        -0.174085408449, \n        0.80324339866600003, \n        0.236016705632, \n        0.54634499549899995, \n        0.83151286840399996, \n        0.318140923977, \n        0.45471769571300003, \n        0.87160569429400003, \n        0.28443908691399999, \n        0.398489654064, \n        0.846199393272, \n        0.204493224621, \n        0.49145251512499999, \n        0.96415776014300003, \n        0.173052743077, \n        0.19961972534700001, \n        0.94861352443699998, \n        0.10492731630799999, \n        0.29752212762800001, \n        0.99788355827300002, \n        0.058147039264399999, \n        -0.0156167857349, \n        0.99655801057799998, \n        -0.0020832121372200002, \n        0.079149991273900003, \n        0.99437165260299998, \n        0.026428811252100001, \n        -0.099610917270199995, \n        0.99915719032299999, \n        -0.032833982259, \n        -0.00165754836053, \n        0.70115125179299997, \n        0.0653475821018, \n        0.70958566665599998, \n        0.75885784625999997, \n        0.149264916778, \n        0.63344365358400001, \n        0.803940176964, \n        0.123364761472, \n        0.58125448226900001, \n        0.74564480781599995, \n        0.039404243230800003, \n        0.66472327709199996, \n        0.91554844379400002, \n        0.028792902827300002, \n        0.40042304992700001, \n        0.86419200897199999, \n        -0.045808866620100003, \n        0.50046885013599995, \n        0.98030787706400002, \n        -0.065259203314799993, \n        0.184753194451, \n        0.944879591465, \n        -0.13425645232200001, \n        0.29761311411899999, \n        0.99173545837400001, \n        -0.086139485239999994, \n        0.091854155063599993, \n        0.96313804388000002, \n        -0.15734346211, \n        0.216805502772, \n        0.55473446845999996, \n        -0.0986495018005, \n        0.82579362392400002, \n        0.62980276346200004, \n        -0.020254999399199999, \n        0.77610158920299999, \n        0.67512011528000004, \n        -0.040988296270400001, \n        0.73615860939, \n        0.59285587072400003, \n        -0.12008073926, \n        0.79592669010200001, \n        0.79072415828700005, \n        -0.124185502529, \n        0.59894108772300003, \n        0.704782128334, \n        -0.19376945495600001, \n        0.68200600147199997, \n        0.88713508844400002, \n        -0.20147114992099999, \n        0.41448378562900001, \n        0.80396419763600002, \n        -0.26740327477499998, \n        0.53059673309300004, \n        0.92155963182400003, \n        -0.211564123631, \n        0.324599981308, \n        0.83878660201999999, \n        -0.28423812985399999, \n        0.46372696757300003, \n        0.39760988950699999, \n        -0.246531516314, \n        0.88347315788299996, \n        0.474353730679, \n        -0.174413323402, \n        0.862533450127, \n        0.50950509309799996, \n        -0.191713064909, \n        0.83847868442499995, \n        0.42140769958500002, \n        -0.261210113764, \n        0.868089795113, \n        0.59868514537799999, \n        -0.26193189621000001, \n        0.75654745101900001, \n        0.49762067198799997, \n        -0.31443297863000003, \n        0.80802297592200001, \n        0.70232087373700003, \n        -0.321515887976, \n        0.63464033603699999, \n        0.57941299676900004, \n        -0.366086393595, \n        0.727775216103, \n        0.75832098722499997, \n        -0.32076609134700002, \n        0.56696975231199997, \n        0.62172418832800003, \n        -0.37529966235200002, \n        0.68702542781800002, \n        0.33358922600699997, \n        -0.31348332762699999, \n        0.88873052597000002, \n        0.348395764828, \n        -0.29425013065299999, \n        0.88962531089800001, \n        0.362225562334, \n        -0.30741214752200002, \n        0.87959432601900001, \n        0.33882266283000001, \n        -0.32473298907300002, \n        0.88269138336200004, \n        0.40421789884600001, \n        -0.35063707828500001, \n        0.84442794323000003, \n        0.37495970726, \n        -0.34614843130099998, \n        0.85964137315800004, \n        0.48159655928599998, \n        -0.37449288368200001, \n        0.79196977615399999, \n        0.41779980063400002, \n        -0.34517171979, \n        0.84005725383800001, \n        0.54293203353899999, \n        -0.35862469673199998, \n        0.75895273685499998, \n        0.46237832307799998, \n        -0.36493676900900002, \n        0.80772703885999997, \n        0.142346009612, \n        0.90237545967099997, \n        -0.40602040290800001, \n        -0.130532577634, \n        0.91943931579600002, \n        -0.37012124061599999, \n        -0.0326169468462, \n        0.91492968797700003, \n        -0.40154272317900003, \n        0.19762031733999999, \n        0.86875861883200001, \n        -0.45343202352500001, \n        -0.18635571003000001, \n        0.94579237699499996, \n        -0.26484900712999998, \n        -0.16934584081199999, \n        0.94490861892699995, \n        -0.27904573082900003, \n        -0.055593509227000001, \n        0.84823274612400001, \n        -0.52612411975899998, \n        0.090854056179500001, \n        0.81565463542899996, \n        -0.57083153724699998, \n        0.27679741382599998, \n        0.75294959545100004, \n        -0.59652876853900005, \n        0.15950982272600001, \n        0.65425539016699996, \n        -0.73885178565999998, \n        0.324332028627, \n        0.60969084501299997, \n        -0.72282868623700003, \n        0.056960191577699999, \n        0.67485123872800001, \n        -0.73534184694299998, \n        0.082274042069899994, \n        0.59339475631700001, \n        -0.80031824111899996, \n        0.174476310611, \n        0.59596300125099999, \n        -0.78344237804399997, \n        0.32475093007099998, \n        0.56536722183200006, \n        -0.75782108306899998, \n        0.30599257349999998, \n        0.84862565994299999, \n        -0.430811882019, \n        0.24952162802200001, \n        0.86221259832399999, \n        -0.44014209508899999, \n        0.28092214465100002, \n        0.84150081872899996, \n        -0.46082085370999998, \n        0.333117395639, \n        0.81874465942399999, \n        -0.46699690818799999, \n        0.33721014857300002, \n        0.73408633470499995, \n        -0.588900148869, \n        0.37171974778200001, \n        0.71092522144299997, \n        -0.596494793892, \n        0.37238353490800002, \n        0.59011280536699995, \n        -0.71588671207400001, \n        0.39335718750999998, \n        0.563850700855, \n        -0.725767791271, \n        0.38577449321700003, \n        0.53987795114500003, \n        -0.74773412942899997, \n        0.395170629025, \n        0.51441466808299996, \n        -0.76066720485700001, \n        0.411574691534, \n        0.85211265087099997, \n        -0.32234564423599998, \n        0.38296529650700001, \n        0.849783360958, \n        -0.36138981580700003, \n        0.389926254749, \n        0.828891575336, \n        -0.400365054607, \n        0.42351105809200001, \n        0.834316968918, \n        -0.35206463932999998, \n        0.423952966928, \n        0.71524500846899997, \n        -0.55505430698400005, \n        0.47775170207000001, \n        0.70770734548600001, \n        -0.51990300416900004, \n        0.45291620492899998, \n        0.55063170194599997, \n        -0.70076233148599998, \n        0.51352888345699998, \n        0.52412968873999999, \n        -0.67894893884700003, \n        0.45196846127500001, \n        0.48827451467499999, \n        -0.74612861871699998, \n        0.51270914077800001, \n        0.45588424801799998, \n        -0.72711443901100004, \n        0.53037983179100001, \n        0.82762897014600001, \n        -0.181995987892, \n        0.463254064322, \n        0.84695315361000001, \n        -0.25973656773600001, \n        0.47616016864799998, \n        0.82679724693300005, \n        -0.29845285415599998, \n        0.55083864927299997, \n        0.80105602741199999, \n        -0.23298561573000001, \n        0.54456257820099996, \n        0.68583780527100002, \n        -0.48215633630799998, \n        0.63617485761600001, \n        0.64113032817799998, \n        -0.42851960658999999, \n        0.58728563785599996, \n        0.482984125614, \n        -0.64901298284499997, \n        0.67084139585500002, \n        0.43197053670899999, \n        -0.60230308771100005, \n        0.58586102724099998, \n        0.41080594062800002, \n        -0.69814109802199997, \n        0.66042351722699999, \n        0.362767457962, \n        -0.65699052810699998, \n        0.66903692483900001, \n        0.74229276180299997, \n        -0.028048217296599998, \n        0.60338079929400001, \n        0.79201573133500003, \n        -0.089659690856899996, \n        0.63386857509600003, \n        0.75636851787600001, \n        -0.159729748964, \n        0.70531499385800001, \n        0.70189899206200002, \n        -0.096256017684899997, \n        0.72224384546300002, \n        0.58381164073900005, \n        -0.37003120779999998, \n        0.79896068573000001, \n        0.51452660560600005, \n        -0.31035524606699999, \n        0.74969053268399999, \n        0.36993420124100002, \n        -0.54818743467300002, \n        0.81743109226199995, \n        0.30240169167499997, \n        -0.48964813351600001, \n        0.73901176452600004, \n        0.29923459887499998, \n        -0.60308885574299997, \n        0.80177581310299995, \n        0.235062018037, \n        -0.548906266689, \n        0.80290347337699997, \n        0.58957892656300004, \n        0.084491372108499996, \n        0.73378038406400004, \n        0.67844408750499996, \n        0.025981247425099999, \n        0.77763009071400002, \n        0.62702059745799998, \n        -0.039155095815700001, \n        0.83847773075099996, \n        0.54407966136899999, \n        0.018102139234499999, \n        0.86369711160700002, \n        0.43849155306799997, \n        -0.24728229641899999, \n        0.91503053903599996, \n        0.35789090395000001, \n        -0.184470295906, \n        0.87313127517699995, \n        0.230263441801, \n        -0.4289714396, \n        0.91685903072399999, \n        0.15649373829400001, \n        -0.366436302662, \n        0.85774195194199998, \n        0.16140425205200001, \n        -0.487467765808, \n        0.89817470312100001, \n        0.094175443053199998, \n        -0.42872947454499999, \n        0.89512062072800003, \n        0.40169468522099999, \n        0.19182404875799999, \n        0.85191565751999998, \n        0.50514948368099999, \n        0.13587096333500001, \n        0.88722002506300002, \n        0.45471066236500002, \n        0.073992833495099997, \n        0.92343807220499996, \n        0.36046212911600001, \n        0.12932594120499999, \n        0.95391088724100004, \n        0.273789286613, \n        -0.120371632278, \n        0.97949016094200003, \n        0.19184404611600001, \n        -0.056484937667800002, \n        0.94895839691200001, \n        0.084167771041399997, \n        -0.302969485521, \n        0.970740795135, \n        0.012292996048900001, \n        -0.23855294287199999, \n        0.93035101890600003, \n        0.021765515208200002, \n        -0.36519873142199999, \n        0.95177853107499999, \n        -0.041863948106799997, \n        -0.30292251706099999, \n        0.93319112062499998, \n        0.19875097274799999, \n        0.29841089248699998, \n        0.92019110918000002, \n        0.30594658851599998, \n        0.24298559129200001, \n        0.94578832387900003, \n        0.265864670277, \n        0.18492114543900001, \n        0.95576125383400001, \n        0.16784431040299999, \n        0.24030141532400001, \n        0.99390178918799998, \n        0.1071806252, \n        0.0082444995641699995, \n        0.99648004770300003, \n        0.029851380735600001, \n        0.074386432766900004, \n        0.98334300517999995, \n        -0.053820155560999998, \n        -0.171861082315, \n        0.98731672763800005, \n        -0.118479214609, \n        -0.102787949145, \n        0.96514952182799996, \n        -0.104351483285, \n        -0.23873189091700001, \n        0.97205340862300005, \n        -0.16171815991399999, \n        -0.16838914156000001, \n        0.91125172376600005, \n        -0.0034664422273599999, \n        0.41110080480599998, \n        0.93061995506299999, \n        0.096117690205600001, \n        0.35228359699200001, \n        0.95109272003199996, \n        0.075184591114500002, \n        0.29860681295399999, \n        0.933087170124, \n        -0.020111218094800001, \n        0.35824680328399999, \n        0.98809558153199994, \n        -0.049993596970999997, \n        0.143398702145, \n        0.96879637241399996, \n        -0.11921998858500001, \n        0.21590679884, \n        0.98384886980099995, \n        -0.175081133842, \n        -0.028008140623599999, \n        0.97167950868599995, \n        -0.228991836309, \n        0.052897118032, \n        0.972471356392, \n        -0.208871901035, \n        -0.100341700017, \n        0.96537244319899995, \n        -0.25944066047699998, \n        -0.0119717791677, \n        0.82219767570500002, \n        -0.18793922662699999, \n        0.53671789169299999, \n        0.87491679191600003, \n        -0.108332276344, \n        0.47136163711500001, \n        0.89953726530099998, \n        -0.10520219802899999, \n        0.42327511310600002, \n        0.84927648305900005, \n        -0.189932644367, \n        0.49198639392900001, \n        0.93605023622500005, \n        -0.18888194858999999, \n        0.29585462808599999, \n        0.89150977134700005, \n        -0.24546584487000001, \n        0.37993922829600002, \n        0.95088577270499997, \n        -0.27314749360099999, \n        0.14353665709499999, \n        0.91759276390099997, \n        -0.311926782131, \n        0.24519693851499999, \n        0.95553439855599998, \n        -0.28624054789499997, \n        0.066454023122799993, \n        0.92579442262599998, \n        -0.32848080992700002, \n        0.18547400832200001, \n        0.65747237205499998, \n        -0.33052420616099998, \n        0.67666864395100002, \n        0.74182492494600005, \n        -0.28662943839999999, \n        0.60575205087700001, \n        0.78177684545500004, \n        -0.259438663721, \n        0.56649088859600005, \n        0.69296663999599994, \n        -0.32104402780500002, \n        0.64507615566300003, \n        0.82746708393099999, \n        -0.29728019237499997, \n        0.47573029994999999, \n        0.74966454505900004, \n        -0.33222863078100001, \n        0.57186019420599998, \n        0.87051910162000001, \n        -0.33740007877299999, \n        0.357426047325, \n        0.80207973718600001, \n        -0.35295343399000001, \n        0.48113268613799998, \n        0.90229851007499995, \n        -0.32603153586400002, \n        0.280993133783, \n        0.82833975553500006, \n        -0.35462689399699998, \n        0.43299919366799999, \n        0.54606807231900001, \n        -0.33721709251400001, \n        0.76647841930399996, \n        0.554832398891, \n        -0.37660923600200003, \n        0.74143314361599999, \n        0.60912400484100004, \n        -0.33932253718400002, \n        0.71639657020600001, \n        0.55497330427199998, \n        -0.30015337467199998, \n        0.77544081211100002, \n        0.66619676351500001, \n        -0.33650434017199998, \n        0.66508913040200002, \n        0.62026667594899998, \n        -0.31576561927800001, \n        0.71760523319199998, \n        0.733927309513, \n        -0.33245360851299999, \n        0.59179425239600003, \n        0.68145620822899999, \n        -0.266398489475, \n        0.68120926618599997, \n        0.79352933168399997, \n        -0.29509484767900002, \n        0.53162544965699998, \n        0.72185397148099995, \n        -0.29414814710600001, \n        0.625939965248, \n        0.81699120998399999, \n        -0.30740812420800001, \n        -0.487258762121, \n        0.80014634132399998, \n        -0.30840286612500001, \n        -0.513856768608, \n        0.84413599967999997, \n        -0.31171184778200001, \n        -0.43550747632999998, \n        0.85554862022400002, \n        -0.318802714348, \n        -0.40718102455100003, \n        0.79362535476700002, \n        -0.290735185146, \n        -0.53387975692699996, \n        0.82381117343900001, \n        -0.29855483770399999, \n        -0.48124361038199998, \n        0.91057497262999998, \n        -0.349074572325, \n        -0.21999052166899999, \n        0.91999411582900004, \n        -0.35496178269400003, \n        -0.16434636712100001, \n        0.92548251152000005, \n        -0.35304337739899999, \n        -0.13504719734199999, \n        0.91492462158200005, \n        -0.38162571191799999, \n        0.12911798059900001, \n        0.916833102703, \n        -0.368419706821, \n        0.15192310512099999, \n        0.92088288068799995, \n        -0.38056406378699997, \n        0.080877065658600006, \n        0.89717799425099998, \n        -0.38995623588599998, \n        0.20591878891000001, \n        0.89907842874499999, \n        -0.37683314085000003, \n        0.22147411108000001, \n        0.89740192890199999, \n        -0.36737200617799998, \n        0.24311253428499999, \n        0.85751402378099995, \n        -0.26357036829000002, \n        -0.44113171100600002, \n        0.82994931936299998, \n        -0.31093609333, \n        -0.46249234676399997, \n        0.87036305666000002, \n        -0.30890467762899998, \n        -0.38267740607299999, \n        0.89339119195899996, \n        -0.264093220234, \n        -0.362633466721, \n        0.93671005964300003, \n        -0.33048716187499999, \n        -0.11290889233400001, \n        0.95305013656600002, \n        -0.28198283910799998, \n        -0.107597514987, \n        0.92498862743400001, \n        -0.34128391742699998, \n        0.16528207063700001, \n        0.94028806686400002, \n        -0.29589164257, \n        0.16644372046, \n        0.90419286489499995, \n        -0.339455485344, \n        0.25807106494900001, \n        0.92147469520600001, \n        -0.30414614081399999, \n        0.24036541581199999, \n        0.89530956745099999, \n        -0.13403151929400001, \n        -0.42408990860000001, \n        0.88336318731300001, \n        -0.20780321955700001, \n        -0.41938433051099999, \n        0.91325914859799995, \n        -0.204592198133, \n        -0.351419836283, \n        0.92622029781299997, \n        -0.142679899931, \n        -0.34807386994400003, \n        0.97004199028000004, \n        -0.213155597448, \n        -0.11393158882899999, \n        0.97789961099599998, \n        -0.15816320478900001, \n        -0.134509369731, \n        0.96208536624899998, \n        -0.24073830246899999, \n        0.12583199143400001, \n        0.98109865188599998, \n        -0.17104633152500001, \n        0.0870866924524, \n        0.94092082977299996, \n        -0.26854586601300001, \n        0.204808115959, \n        0.96899431943900005, \n        -0.17817218601699999, \n        0.16941182315299999, \n        0.88674521446200005, \n        -0.040524050593400002, \n        -0.45982307195700001, \n        0.89463382959399995, \n        -0.063030868768699996, \n        -0.44164958596199999, \n        0.92316114902500002, \n        -0.087378099560700001, \n        -0.37354415655099998, \n        0.91702103614800001, \n        -0.042812079191200003, \n        -0.39577242732000001, \n        0.98295313119899996, \n        -0.099248319864299994, \n        -0.15280184149699999, \n        0.98894929885899996, \n        -0.020699147134999998, \n        -0.14472828805400001, \n        0.99205231666600002, \n        -0.087845861911799994, \n        0.086667329072999996, \n        0.99481850862499999, \n        0.010341275483399999, \n        0.0981106609106, \n        0.98472458124200002, \n        -0.077211283147299997, \n        0.15411645173999999, \n        0.98173749446900005, \n        0.033122599124900003, \n        0.185717895627, \n        0.91066491603900002, \n        0.0075163096189500003, \n        -0.41234546899800001, \n        0.88550853729199996, \n        -0.027523085475, \n        -0.46315610408800001, \n        0.92661607265500001, \n        0.0050004273653000003, \n        -0.37517064809799999, \n        0.93779176473600001, \n        0.0490774810314, \n        -0.34283345937699999, \n        0.990444839001, \n        0.053768064826699997, \n        -0.12459537386900001, \n        0.98828351497699995, \n        0.13090845942500001, \n        -0.074535585939900006, \n        0.98293411731699998, \n        0.113886594772, \n        0.142361998558, \n        0.96159756183599998, \n        0.19713246822399999, \n        0.18937981128699999, \n        0.96101373434100001, \n        0.16144524514700001, \n        0.223125621676, \n        0.93770474195499998, \n        0.22434923052799999, \n        0.26414519548400001, \n        0.93820858001700003, \n        0.20520003140000001, \n        -0.27758717536900002, \n        0.93330705165899996, \n        0.039522051811199999, \n        -0.35605144500699998, \n        0.95435166358900003, \n        0.121875181794, \n        -0.27157795429199999, \n        0.95037001371399998, \n        0.24365940689999999, \n        -0.191895037889, \n        0.97582823038099997, \n        0.21666355431100001, \n        -0.0145484060049, \n        0.94976210594199995, \n        0.311028063297, \n        0.024703636765500001, \n        0.93685501813899996, \n        0.26959955692300003, \n        0.22139111161200001, \n        0.90191358327899995, \n        0.352772414684, \n        0.247989058495, \n        0.90610927343400005, \n        0.30083313584299998, \n        0.296414464712, \n        0.88138574361800004, \n        0.36056810617399998, \n        0.304214119911, \n        0.85451883077599999, \n        0.48503351211500001, \n        -0.18421836197399999, \n        0.91229039430600001, \n        0.34501779079400002, \n        -0.21928077936199999, \n        0.91349911689800001, \n        0.37555956840499999, \n        -0.154502347112, \n        0.85723507404300003, \n        0.49989104270899998, \n        -0.121045425534, \n        0.90264934301400002, \n        0.42560946941400002, \n        0.058972284197799998, \n        0.84430795908, \n        0.53162443637800005, \n        0.062569320201899994, \n        0.86381208896600004, \n        0.43966317176800002, \n        0.24478602409399999, \n        0.80712014436699997, \n        0.54128348827399997, \n        0.23444719612600001, \n        0.84496676921799996, \n        0.43994212150599998, \n        0.30311447382000001, \n        0.79410016536700001, \n        0.53658092021899995, \n        0.28439611196499998, \n        0.715783834457, \n        0.68628066778200003, \n        -0.12675970792800001, \n        0.79096508026099999, \n        0.59145838022200004, \n        -0.15475226938700001, \n        0.78592360019700003, \n        0.60965681076, \n        -0.100195735693, \n        0.71378338336900005, \n        0.69572079181699997, \n        -0.076687604188899999, \n        0.76582670211799997, \n        0.63938987255099999, \n        0.063925385475200006, \n        0.69871693849600003, \n        0.71222889423400004, \n        0.062619984149899999, \n        0.73700845241500001, \n        0.64051949977900002, \n        0.214360237122, \n        0.67171311378499998, \n        0.71467709541299995, \n        0.19348156452199999, \n        0.72859793901400005, \n        0.63319075107599998, \n        0.26001948118200002, \n        0.65945082902899999, \n        0.71257376670799999, \n        0.23824106156800001, \n        0.48888432979599999, \n        0.86822772026100004, \n        -0.081045418977699998, \n        0.63916093111000005, \n        0.76125007867799999, \n        -0.106623768806, \n        0.63658571243299999, \n        0.76821196079300003, \n        -0.063280493021000001, \n        0.48802557587599998, \n        0.87112188339200003, \n        -0.048714667558699999, \n        0.62198811769499995, \n        0.77997738122899996, \n        0.064505040645600004, \n        0.48064580559699999, \n        0.87509864568700002, \n        0.050775825977300001, \n        0.59946191310899999, \n        0.77902173996000001, \n        0.18211701512299999, \n        0.46837651729599999, \n        0.87014520168300002, \n        0.15121838450399999, \n        0.58666479587599996, \n        0.77808094024700003, \n        0.22318360209499999, \n        0.47530245780899999, \n        0.86304736137399995, \n        0.16921293735500001, \n        0.224672138691, \n        0.97376990318300005, \n        -0.026290684938400002, \n        0.34551462531100002, \n        0.93696498870800005, \n        -0.045967012643800001, \n        0.32477092742899999, \n        0.94514256715800005, \n        -0.025006830692299999, \n        0.21751929819599999, \n        0.97574532032000005, \n        0.0016363263130199999, \n        0.30449402332300002, \n        0.95189344883000004, \n        0.024056553840600001, \n        0.21069936454300001, \n        0.97706890106199995, \n        0.018409579992300001, \n        0.32942649722099998, \n        0.94201642274899999, \n        0.058987677097299997, \n        0.222650751472, \n        0.97440874576600001, \n        -0.0187290012836, \n        0.37417694926299999, \n        0.925422489643, \n        0.054604232311199999, \n        0.24019646644600001, \n        0.96957015991200002, \n        -0.0404452383518, \n        -0.29738917946799998, \n        0.93992507457700003, \n        -0.16581892967199999, \n        0.051754467189299998, \n        0.99634402990299997, \n        -0.063370048999800005, \n        0.045806765556299998, \n        0.99790060520199997, \n        -0.038628250360500001, \n        -0.35317233204800003, \n        0.92292821407299996, \n        -0.15122437477100001, \n        0.049292009323799998, \n        0.99845337867700001, \n        -0.00759235024452, \n        -0.36777392029799999, \n        0.92665708064999996, \n        -0.073791235685299994, \n        0.053545027971300001, \n        0.99739670753499998, \n        -0.041582673788100002, \n        -0.37701314687699999, \n        0.92360007762899998, \n        -0.064955592155499994, \n        0.080792896449599999, \n        0.992868065834, \n        -0.084151595830899997, \n        -0.353122323751, \n        0.93209648132300005, \n        -0.076790839433700006, \n        -0.788659751415, \n        0.60379362106300005, \n        -0.11333678662799999, \n        -0.65071940422100005, \n        0.73293459415399997, \n        -0.196893513203, \n        -0.695530951023, \n        0.70040643215200005, \n        -0.15831518173199999, \n        -0.79304945468900001, \n        0.60538911819499996, \n        -0.0630294978619, \n        -0.72189497947699999, \n        0.68419432640099997, \n        -0.100708574057, \n        -0.81572657823600003, \n        0.57492828369100002, \n        -0.058679670095399997, \n        -0.73792213201500001, \n        0.67190504074099999, \n        -0.058403491973899997, \n        -0.83101600408599996, \n        0.555471301079, \n        -0.0161499083042, \n        -0.75377231836299996, \n        0.654740214348, \n        -0.050383090972900002, \n        -0.83523774146999996, \n        0.54857921600299997, \n        -0.028880685567900001, \n        -0.43770679831499998, \n        0.57583409547800002, \n        -0.69008964300200004, \n        -0.43689703941300001, \n        0.53247416019399996, \n        -0.72456121444699995, \n        -0.38394102454200002, \n        0.584850311279, \n        -0.71409833431199998, \n        -0.39744395017599998, \n        0.61536216735799998, \n        -0.68026757240299995, \n        -0.472763180733, \n        0.45112174749400002, \n        -0.75655847787899999, \n        -0.40303227305400002, \n        0.53368484973899999, \n        -0.74306261539499996, \n        -0.16278782486900001, \n        0.73353737592699997, \n        -0.65940779447599995, \n        -0.19334061443799999, \n        0.74314159154899995, \n        -0.64012163877499995, \n        -0.23371940851199999, \n        0.74173903465299995, \n        -0.62816822528799998, \n        0.048516046255799999, \n        0.84348130226100004, \n        -0.53439760208099996, \n        -0.037619736045599997, \n        0.83151197433500001, \n        -0.55368673801400003, \n        0.11140935122999999, \n        0.85397303104400002, \n        -0.50765562057500002, \n        0.20475916564499999, \n        0.87042313814200001, \n        -0.44702702760700003, \n        0.145834952593, \n        0.85597443580599997, \n        -0.49541532993300003, \n        0.057483837008500002, \n        0.85603845119499999, \n        -0.51311802864099998, \n        -0.50264316797300002, \n        0.74043339490899995, \n        -0.445538461208, \n        -0.41475170850800003, \n        0.65348857641199998, \n        -0.63271588087099995, \n        -0.35877564549399998, \n        0.69130122661600002, \n        -0.62672066688500006, \n        -0.42470571398700002, \n        0.78174585104000005, \n        -0.455954253674, \n        -0.20849701762200001, \n        0.79052728414499995, \n        -0.57531827688199999, \n        -0.18340459466, \n        0.90525555610700004, \n        -0.38245546817800002, \n        -0.023455614224099999, \n        0.86553466320000005, \n        -0.49969604611399998, \n        0.0147969303653, \n        0.958122551441, \n        -0.28491789102600001, \n        0.056600909680100002, \n        0.88896942138699997, \n        -0.45378991961499998, \n        0.063134424388400001, \n        0.96220439672500002, \n        -0.26376730203600002, \n        -0.47845745086699998, \n        0.87312024831799995, \n        -0.090197920799300002, \n        -0.50906723737699999, \n        0.82374423742299996, \n        -0.24837893247599999, \n        -0.435581415892, \n        0.87585645914099997, \n        -0.20625275373499999, \n        -0.38646626472500001, \n        0.91974020004299994, \n        -0.064175307750700003, \n        -0.185974836349, \n        0.97437369823499997, \n        -0.12411746382699999, \n        -0.139124974608, \n        0.98983502388, \n        0.016321152448699999, \n        0.081005632877300005, \n        0.99567824602099997, \n        -0.038203537464099997, \n        0.087447285652200002, \n        0.991972446442, \n        0.087979108095200001, \n        0.18662063777400001, \n        0.98182147741299997, \n        0.024398505687699999, \n        0.16984869539700001, \n        0.97945916652700005, \n        0.105864048004, \n        -0.34650033712400002, \n        0.91375404596300003, \n        0.21068435907399999, \n        -0.42156064510300001, \n        0.906220316887, \n        0.021161109209099999, \n        -0.33417406678200001, \n        0.93908035755200003, \n        0.076503753662099994, \n        -0.265125930309, \n        0.93449777364700004, \n        0.23625665903099999, \n        -0.073078028857699998, \n        0.98438465595199998, \n        0.158249229193, \n        -0.036533765494800002, \n        0.95578432083099996, \n        0.29075315594700002, \n        0.13152126967899999, \n        0.96788763999899996, \n        0.21281972527500001, \n        0.167759314179, \n        0.93051093816800001, \n        0.324655950069, \n        0.165825918317, \n        0.95541536808000005, \n        0.243063539267, \n        0.218659952283, \n        0.91784071922300003, \n        0.33038124442099998, \n        -0.221246182919, \n        0.865903437138, \n        0.44794768094999998, \n        -0.27409520745299998, \n        0.91803276538800005, \n        0.285454779863, \n        -0.20684653520599999, \n        0.922917246819, \n        0.3237811625, \n        -0.15776534378500001, \n        0.86821281909900005, \n        0.46980106830599999, \n        -0.0013057856122, \n        0.92796272039399996, \n        0.37185865640600002, \n        0.045473266392900002, \n        0.86232352256800004, \n        0.50371181964900003, \n        0.199383765459, \n        0.89695203304299997, \n        0.39385104179399999, \n        0.235475882888, \n        0.823109388351, \n        0.51617705822000004, \n        0.256712466478, \n        0.87589442729900002, \n        0.40780282020600001, \n        0.29782804846799998, \n        0.80787301063500006, \n        0.50797259807600004, \n        -0.10499828308799999, \n        0.68683958053600003, \n        0.718764901161, \n        -0.165718942881, \n        0.77763813734099996, \n        0.60598093271300002, \n        -0.096837952732999999, \n        0.76318949460999996, \n        0.63840419053999997, \n        -0.036943241953799999, \n        0.68204003572500005, \n        0.72996753454200003, \n        0.097255133092399998, \n        0.74533390998799998, \n        0.65910196304299995, \n        0.14940387010600001, \n        0.66888898611100001, \n        0.727779209614, \n        0.28616952896100001, \n        0.70484507083900005, \n        0.64861106872600005, \n        0.32926353812199999, \n        0.63337475061399995, \n        0.69987064600000004, \n        0.343674212694, \n        0.67464518547100005, \n        0.65279185771899995, \n        0.37406998872800001, \n        0.618849098682, \n        0.69028550386400001, \n        -0.027249768376399999, \n        0.54332989454299996, \n        0.83871668577199998, \n        -0.057961091399199999, \n        0.63692158460600001, \n        0.76835387945199995, \n        0.0039387503638900001, \n        0.61951982974999997, \n        0.78458607196800001, \n        0.034453090280299997, \n        0.53041678667100001, \n        0.84668022394200004, \n        0.18337960541199999, \n        0.61106348037699998, \n        0.76965546608000002, \n        0.204100355506, \n        0.53342586755800003, \n        0.82048517465600002, \n        0.34152185916900002, \n        0.59827828407299999, \n        0.724446177483, \n        0.35297340154599999, \n        0.52738565206499999, \n        0.77244466543199997, \n        0.392604410648, \n        0.59223812818499999, \n        0.70321553945500004, \n        0.396044373512, \n        0.52983593940700002, \n        0.74954569339800003, \n        0.0175904873759, \n        0.35447493195500002, \n        0.934577703476, \n        0.0044184052385399996, \n        0.46342504024499998, \n        0.88578450679800003, \n        0.061590194702099997, \n        0.43472969532, \n        0.89811670780200004, \n        0.076969750225499997, \n        0.33057710528399997, \n        0.94031393527999996, \n        0.220064520836, \n        0.43576139211699999, \n        0.87239843606900003, \n        0.236205652356, \n        0.345342725515, \n        0.90793275833099996, \n        0.36130586266499998, \n        0.44312617182699998, \n        0.82005727291099995, \n        0.36661425232900002, \n        0.35406410694099999, \n        0.86001729965200002, \n        0.40031808614699999, \n        0.44781273603400001, \n        0.79912763834, \n        0.40180763602300001, \n        0.35924550890899998, \n        0.84195566177400005, \n        0.0065606287680599999, \n        0.12694263458300001, \n        0.99158346652999996, \n        0.045671604573700002, \n        0.27418720722200002, \n        0.96027696132700002, \n        0.083989433944199998, \n        0.221996903419, \n        0.97111260890999995, \n        0.0558356307447, \n        0.084594637155500002, \n        0.99454665184000002, \n        0.23944067955000001, \n        0.23981958627700001, \n        0.94050592184100001, \n        0.23574779927699999, \n        0.134264498949, \n        0.96218144893599999, \n        0.367663919926, \n        0.26695737242700002, \n        0.89047908782999996, \n        0.362243562937, \n        0.167570382357, \n        0.91656720638300004, \n        0.40009611844999998, \n        0.27512791752799998, \n        0.87385606765699997, \n        0.38958734273899998, \n        0.17475619912099999, \n        0.90392398834200005, \n        -0.70636665821099998, \n        -0.48997396230700002, \n        0.51026183366800004, \n        -0.099701687693599994, \n        -0.064079076051700004, \n        0.99264824390399997, \n        -0.17587088048499999, \n        -0.21010857820500001, \n        0.96141558885599998, \n        -0.494182735682, \n        -0.44091975688899998, \n        0.74884581565899999, \n        0.19464121758899999, \n        -0.0046374797821000001, \n        0.98055583238599997, \n        0.017576891928899999, \n        -0.23315259814299999, \n        0.97197043895699997, \n        0.345941513777, \n        0.062606841325799995, \n        0.93584227562, \n        0.31293946504600001, \n        -0.062955349683799997, \n        0.94736576080299995, \n        0.37622535228699999, \n        0.078603446483600001, \n        0.92286127805700002, \n        0.33818686008499999, \n        -0.053006172180199998, \n        0.93926328420600003, \n        -0.592913866043, \n        -0.055495321750599999, \n        -0.80297547578799999, \n        -0.48701590299600001, \n        -0.15438139438599999, \n        -0.85928940772999995, \n        -0.865300655365, \n        -0.495719313622, \n        -0.070097818970699999, \n        -0.699599683285, \n        -0.13716560602200001, \n        -0.70081532001500002, \n        -0.26013845205300001, \n        -0.44693100452399998, \n        0.85555660724600002, \n        -0.72266471385999997, \n        -0.60858517885200003, \n        0.32676631212200002, \n        0.23840098083, \n        -0.21829807758299999, \n        0.94599533081099996, \n        0.118585176766, \n        -0.39701408147799999, \n        0.90978819131900002, \n        0.29804995656, \n        -0.169468820095, \n        0.93906539678599998, \n        0.19106128811799999, \n        -0.364607840776, \n        0.91101789474499995, \n        -0.55678087472899995, \n        0.13258495926899999, \n        -0.81964147090899997, \n        -0.506403028965, \n        0.082330614328399998, \n        -0.85800576210000001, \n        -0.67193806171399995, \n        0.00198635458946, \n        -0.74019646644600001, \n        -0.61190813779800002, \n        0.10865214467000001, \n        -0.78304457664500005, \n        -0.85702711343799998, \n        -0.51388478279100003, \n        -0.028702720999700001, \n        -0.74299860000600004, \n        -0.624937236309, \n        0.23833300173300001, \n        -0.110903508961, \n        -0.58629786968200004, \n        0.80209171771999999, \n        -0.152847841382, \n        -0.61404347419700001, \n        0.773941159248, \n        0.101791255176, \n        -0.44927623868, \n        0.88723504543300002, \n        0.012730254791700001, \n        -0.53504043817500002, \n        0.84437292814300002, \n        -0.86795485019700003, \n        0.102432072163, \n        -0.48534440994299999, \n        -0.87170970439899997, \n        0.0094669163227099999, \n        -0.48931419849399999, \n        -0.88334119319899995, \n        0.133091777563, \n        -0.44876644015299999, \n        -0.85262942314099999, \n        0.18737639486800001, \n        -0.48714387416799998, \n        -0.90002113580700005, \n        -0.196215733886, \n        -0.38840365409900002, \n        -0.91111683845500002, \n        0.114744365215, \n        -0.395089685917, \n        -0.78202080726599998, \n        0.50187242031099999, \n        -0.36873364448500001, \n        -0.81450504064600004, \n        0.40502065420200001, \n        -0.41465175151799999, \n        -0.76611256599400002, \n        0.40351814031599997, \n        -0.49964010715500001, \n        -0.67421638965599995, \n        0.62717956304599998, \n        -0.389196455479, \n        -0.61348569393200003, \n        0.62264686822899995, \n        -0.485121428967, \n        -0.68148219585400005, \n        0.64041656255699997, \n        -0.35333430767099999, \n        -0.64849013090100005, \n        0.67662268876999998, \n        -0.34790593385700003, \n        -0.63281786441800003, \n        0.68433433771100005, \n        -0.36141985654800002, \n        -0.56538021564499996, \n        0.68254590034499996, \n        -0.46246337890599998, \n        -0.91935235261899995, \n        0.11496827006300001, \n        -0.375459581614, \n        -0.88640326261500002, \n        0.117784425616, \n        -0.447003960609, \n        -0.86025214195300004, \n        0.180789381266, \n        -0.47610619664199999, \n        -0.89827567338900005, \n        0.189256846905, \n        -0.39582645893099999, \n        -0.76687037944799996, \n        0.400020182133, \n        -0.50128757953600001, \n        -0.81229668855699999, \n        0.41118884086599999, \n        -0.41290932893799998, \n        -0.60769641399399998, \n        0.60796135663999995, \n        -0.51037579774899999, \n        -0.65750938653900004, \n        0.62613689899400005, \n        -0.41836562752700002, \n        -0.52618807554199998, \n        0.680294513702, \n        -0.50962805747999995, \n        -0.57893818616899995, \n        0.69254678487800003, \n        -0.429658234119, \n        -0.97170048952099997, \n        0.140618517995, \n        -0.18820215761699999, \n        -0.95269626379000005, \n        0.12780439853700001, \n        -0.274650037289, \n        -0.93346709012999995, \n        0.21049341559400001, \n        -0.28935858607300002, \n        -0.95564532280000003, \n        0.22574782371499999, \n        -0.18755134940099999, \n        -0.85171180963500004, \n        0.43840256333400002, \n        -0.28598359227199999, \n        -0.86906749010100004, \n        0.46818158030500001, \n        -0.15787532925600001, \n        -0.69932276010500005, \n        0.66417443752299998, \n        -0.26308852434199997, \n        -0.70360350608800004, \n        0.70042240619700002, \n        -0.117248624563, \n        -0.635531008244, \n        0.72187095880499996, \n        -0.27276265621200002, \n        -0.62950783968000001, \n        0.76967453956599996, \n        -0.103525698185, \n        -0.98522937297799995, \n        0.16265787184200001, \n        -0.047560531646, \n        -0.98137360811200003, \n        0.152034088969, \n        -0.11483632028100001, \n        -0.96513646841, \n        0.24113316834000001, \n        -0.0988026708364, \n        -0.967455744743, \n        0.25059330463399998, \n        -0.025074623525099999, \n        -0.87293332815199998, \n        0.48478853702500002, \n        -0.048612281680099997, \n        -0.86780786514300001, \n        0.494115710258, \n        0.046421274542799998, \n        -0.69740337133399999, \n        0.71623063087500005, \n        0.0062133669853199998, \n        -0.68599379062700006, \n        0.71802818775199995, \n        0.115081250668, \n        -0.61730057001100003, \n        0.78588861226999995, \n        0.026728093624099999, \n        -0.60662579536399996, \n        0.78319245576899998, \n        0.134202420712, \n        -0.98150652647000003, \n        0.17799223959400001, \n        0.0660328567028, \n        -0.98499548435200002, \n        0.17076142132300001, \n        0.0044706910848599998, \n        -0.96455973386799998, \n        0.258917808533, \n        0.044526144862200003, \n        -0.95822757482499998, \n        0.26404324173900001, \n        0.10713063925499999, \n        -0.85596948862099997, \n        0.49699085950900002, \n        0.14040158689000001, \n        -0.83888757228900002, \n        0.496875911951, \n        0.22085526585599999, \n        -0.66531103849399997, \n        0.71057736873599997, \n        0.22768023610099999, \n        -0.64069443941100002, \n        0.69740033149699998, \n        0.320219278336, \n        -0.58727961778600002, \n        0.76724725961700002, \n        0.25657552480700002, \n        -0.56478339433699998, \n        0.74884486198400002, \n        0.34590053558299999, \n        -0.96818858385100004, \n        0.18668961525, \n        0.164784222841, \n        -0.976522028446, \n        0.18586887419199999, \n        0.106082960963, \n        -0.94952619075800004, \n        0.26776510477100002, \n        0.16154819726899999, \n        -0.93892741203300001, \n        0.26668345928199999, \n        0.216082751751, \n        -0.82172173261600001, \n        0.492749154568, \n        0.28524881601300001, \n        -0.80448096990600004, \n        0.48475861549400001, \n        0.34236758947399998, \n        -0.61947792768499998, \n        0.68362355232200001, \n        0.38509964942899999, \n        -0.60072654485700006, \n        0.66583788394900001, \n        0.44179558753999998, \n        -0.54441463947299995, \n        0.72801208496100001, \n        0.41594231128699999, \n        -0.52882528305099996, \n        0.709036827087, \n        0.46583926677699999, \n        -0.94148063659699999, \n        0.179682731628, \n        0.28412219882, \n        -0.95869344472899998, \n        0.19107128679800001, \n        0.20927180349800001, \n        -0.92469066381499998, \n        0.26219180226299998, \n        0.27495297789599998, \n        -0.90524452924700005, \n        0.24861189722999999, \n        0.34368619322799998, \n        -0.78574872016899999, \n        0.46671107411399998, \n        0.405186623335, \n        -0.76144701242400004, \n        0.44208943843800003, \n        0.47344595193900002, \n        -0.58401960134499997, \n        0.64111441373800004, \n        0.497281849384, \n        -0.56469839811300004, \n        0.600618541241, \n        0.56548219919200005, \n        -0.51382881403000003, \n        0.67853009700800004, \n        0.52437865734099998, \n        -0.496783941984, \n        0.63643574714700002, \n        0.58953499793999997, \n        -0.89002716541299998, \n        0.15717154741299999, \n        0.42725294828400001, \n        -0.92253434658099998, \n        0.18088133633100001, \n        0.34001231193499998, \n        -0.87891650199899995, \n        0.23313257098199999, \n        0.41539254784599999, \n        -0.84533667564399995, \n        0.207935169339, \n        0.49149256944699998, \n        -0.73157906532299999, \n        0.40110981464399997, \n        0.55072665214500005, \n        -0.69607275724399997, \n        0.35784295201299998, \n        0.62195420265199997, \n        -0.54139846563299998, \n        0.546889781952, \n        0.63811922073399996, \n        -0.515562236309, \n        0.48020094633100002, \n        0.70922380685800002, \n        -0.47631314396899999, \n        0.57397663593299997, \n        0.665637969971, \n        -0.45411580801000001, \n        0.50537633895900003, \n        0.73332750797299995, \n        -0.80207276344300005, \n        0.115901008248, \n        0.58535718917799995, \n        -0.85669320821799999, \n        0.15640275180300001, \n        0.49092769622799998, \n        -0.80283254385000002, \n        0.181597158313, \n        0.56734365224799999, \n        -0.75056129693999996, \n        0.14290282130199999, \n        0.64469528198199999, \n        -0.65430033206899996, \n        0.29841291904400002, \n        0.694432258606, \n        -0.60762548446700004, \n        0.23978254198999999, \n        0.75676441192599997, \n        -0.48707288503599999, \n        0.40631729364399999, \n        0.77269762754399995, \n        -0.45666003227200003, \n        0.32018932700199998, \n        0.82966041564899995, \n        -0.43052396178199998, \n        0.42122584581400002, \n        0.79788106679899995, \n        -0.40576246380800002, \n        0.33276048302700001, \n        0.85089504718800002, \n        -0.66658067703199997, \n        0.049198657274200003, \n        0.74340248107899998, \n        -0.74740725755699999, \n        0.111031472683, \n        0.65456128120400003, \n        -0.68824410438500006, \n        0.10346776247, \n        0.71764230728099998, \n        -0.61571502685500001, \n        0.050451755523700001, \n        0.78596758842500003, \n        -0.55508834123600004, \n        0.16375553607900001, \n        0.81514281034500002, \n        -0.50006598234199995, \n        0.093351721763600001, \n        0.86059004068400002, \n        -0.424484759569, \n        0.23079332709299999, \n        0.87518167495700006, \n        -0.391956627369, \n        0.13198417425200001, \n        0.91013509035100004, \n        -0.38072001934100003, \n        0.232261806726, \n        0.894708752632, \n        -0.35537868738200001, \n        0.13205912709199999, \n        0.92502069473299997, \n        -0.48684895038600001, \n        -0.042948901653300002, \n        0.87208360433599996, \n        -0.58577108383200005, \n        0.039859563112300003, \n        0.80912256240799996, \n        -0.53523534536399997, \n        -0.00080075860023499999, \n        0.84434497356399996, \n        -0.44882443547200002, \n        -0.064466327428799999, \n        0.89095294475599995, \n        -0.44164356589300002, \n        0.00717088580132, \n        0.89682507514999998, \n        -0.38351815938900002, \n        -0.067153126001399999, \n        0.92076086997999995, \n        -0.35917851328799999, \n        0.036171108484300003, \n        0.93224442005200003, \n        -0.32813391089400001, \n        -0.064513862133000005, \n        0.942105472088, \n        -0.33145084977099998, \n        0.0256477892399, \n        0.94280326366400002, \n        -0.30829191207899997, \n        -0.073849797248800003, \n        0.94810259342199998, \n        -0.32706820964799999, \n        -0.081261515617399999, \n        0.94117975234999995, \n        -0.38557553291300001, \n        -0.036423861980399999, \n        0.92162966728200002, \n        -0.36351719498599999, \n        -0.096824914216999999, \n        0.92621624469800001, \n        -0.285677731037, \n        -0.090567260980600001, \n        0.95371997356399996, \n        -0.33033621311200001, \n        -0.13029661774599999, \n        0.93450379371600001, \n        -0.29950153827699999, \n        -0.1417581141, \n        0.94318616390200005, \n        -0.30124601721799998, \n        -0.13109439611400001, \n        0.94417279958699996, \n        -0.28185984492299998, \n        -0.15198910236400001, \n        0.947021961212, \n        -0.29201880097400001, \n        -0.14306780695900001, \n        0.94533240795100004, \n        -0.285415768623, \n        -0.155845880508, \n        0.94532847404499998, \n        -0.76032036542899994, \n        0.39153873920400001, \n        -0.51769363880200003, \n        -0.78964447975200003, \n        0.329008638859, \n        -0.51731079816799996, \n        -0.75265175104100002, \n        0.40193659067199999, \n        -0.52092164754900006, \n        -0.71480703353899999, \n        0.45100778341300002, \n        -0.53389072418200001, \n        -0.83128088712699999, \n        0.28719624877, \n        -0.47527447342899998, \n        -0.79090511798899998, \n        0.35265848040600001, \n        -0.49949714541399998, \n        -0.60214906930900003, \n        0.56890821456899998, \n        -0.55960404872900005, \n        -0.58751958608599997, \n        0.58294892311099999, \n        -0.560702681541, \n        -0.55240416526799996, \n        0.609082996845, \n        -0.56856220960600001, \n        -0.38612335920300001, \n        0.71152299642600003, \n        -0.58654886484099999, \n        -0.37811678648000002, \n        0.72191298008000004, \n        -0.57902109622999998, \n        -0.39405795931799997, \n        0.71271169185600003, \n        -0.57978987693799999, \n        -0.327063202858, \n        0.74159097671499996, \n        -0.58520829677599995, \n        -0.33007532358199998, \n        0.73863488435699998, \n        -0.58725255727799996, \n        -0.33522373437899999, \n        0.739527642727, \n        -0.58319884538699995, \n        -0.74801903963100003, \n        0.52402871847200005, \n        -0.40651822090099998, \n        -0.73257869482000004, \n        0.440623909235, \n        -0.51824247837100001, \n        -0.68998754024499998, \n        0.50773864984499995, \n        -0.51528137922299999, \n        -0.69528204202699995, \n        0.586580872536, \n        -0.41460978984800001, \n        -0.53576815128300004, \n        0.65765434503599995, \n        -0.52899926900899996, \n        -0.52672189474099995, \n        0.73859989643099999, \n        -0.42003607749900002, \n        -0.37392103671999999, \n        0.75398230552699996, \n        -0.53952705860100003, \n        -0.36490979790700001, \n        0.83537268638600004, \n        -0.41035309433900002, \n        -0.33728113770500001, \n        0.76576769351999996, \n        -0.54702579975099996, \n        -0.32883566617999999, \n        0.84229367971400004, \n        -0.42638522386599997, \n        -0.77368634939199998, \n        0.62723958492300003, \n        -0.085887461900699999, \n        -0.76128405332600002, \n        0.58876717090599995, \n        -0.27054727077500001, \n        -0.70892584323899999, \n        0.65724754333500002, \n        -0.254650056362, \n        -0.71411031484599996, \n        0.69563186168699997, \n        -0.074426323175400003, \n        -0.51900523900999995, \n        0.81854975223500004, \n        -0.24496400356299999, \n        -0.50618910789500005, \n        0.86018615961099998, \n        -0.056991219520600003, \n        -0.32747808098800002, \n        0.91691899299599999, \n        -0.226747483015, \n        -0.28452405333500003, \n        0.957533836365, \n        -0.039642125368100002, \n        -0.29371127486199999, \n        0.92990815639500002, \n        -0.220001548529, \n        -0.23548187315499999, \n        0.97094076871900004, \n        -0.0349064469337, \n        -0.76181787252400002, \n        0.61505818366999998, \n        0.20182506740100001, \n        -0.76925265788999997, \n        0.63532412052200005, \n        0.063326984643900006, \n        -0.70915180444699999, \n        0.698693990707, \n        0.091250926256200002, \n        -0.69827711582200003, \n        0.67899698018999999, \n        0.22531796991799999, \n        -0.49296507239300003, \n        0.86147683858900004, \n        0.119331002235, \n        -0.48459863662699998, \n        0.83721816539799998, \n        0.252241849899, \n        -0.25274768471699999, \n        0.958644390106, \n        0.12851414084400001, \n        -0.237528249621, \n        0.93769282102600005, \n        0.25240677595099997, \n        -0.176485702395, \n        0.97374385595299995, \n        0.14167815446900001, \n        -0.165714949369, \n        0.95365393161800005, \n        0.24995946884199999, \n        -0.74226385355000002, \n        0.52191132307099997, \n        0.41958227753600003, \n        -0.75129109621000001, \n        0.58165127038999997, \n        0.31086909770999999, \n        -0.69007253646900002, \n        0.63906192779500004, \n        0.33881565928500001, \n        -0.679979622364, \n        0.57865720987299996, \n        0.44964414834999999, \n        -0.47866141796099998, \n        0.79639047384299999, \n        0.36883860826499998, \n        -0.478913336992, \n        0.73501801490800001, \n        0.47936224937400002, \n        -0.24117414653300001, \n        0.90054202079800005, \n        0.360907942057, \n        -0.24680747091800001, \n        0.84732109308199999, \n        0.46960514783899998, \n        -0.16624878346899999, \n        0.92189157009099998, \n        0.34910559654200002, \n        -0.17790526151700001, \n        0.86843562126200002, \n        0.46213039755800001, \n        -0.71556484699199996, \n        0.34519279003100001, \n        0.60679870843899997, \n        -0.72907280921899997, \n        0.43888342380500001, \n        0.524624526501, \n        -0.67212796211199999, \n        0.49395683407800001, \n        0.55104160308799999, \n        -0.65977066755299996, \n        0.39451181888600001, \n        0.63910794258100001, \n        -0.478162616491, \n        0.65468031167999996, \n        0.58493632078199997, \n        -0.48164552450199999, \n        0.55359482765199997, \n        0.67892992496500004, \n        -0.25975155830399999, \n        0.77574163675300001, \n        0.57458645105399997, \n        -0.272068798542, \n        0.68735140562099994, \n        0.67299574613599999, \n        -0.18910188972899999, \n        0.807547032833, \n        0.55812543630599998, \n        -0.2100905478, \n        0.71453416347499998, \n        0.66685760021200002, \n        -0.67522805929200003, \n        0.113525718451, \n        0.72840607166299998, \n        -0.69638568162900005, \n        0.22194996476199999, \n        0.68204295635199996, \n        -0.64716148376500005, \n        0.27821797132499998, \n        0.70934671163600005, \n        -0.62899202108399999, \n        0.15605086088199999, \n        0.76119208335900002, \n        -0.48027691245100002, \n        0.43933832645400001, \n        0.75875675678300003, \n        -0.47840249538399998, \n        0.31081417202900002, \n        0.82092702388799998, \n        -0.289099693298, \n        0.57859718799600002, \n        0.76226174831399995, \n        -0.30185484886199998, \n        0.45592135190999999, \n        0.83690828084900004, \n        -0.224413216114, \n        0.62211608886699998, \n        0.74967050552400005, \n        -0.24921773374100001, \n        0.48595815897, \n        0.83733612299000004, \n        -0.618885099888, \n        -0.12715458869900001, \n        0.77473199367500001, \n        -0.648212254047, \n        -0.022669047117200001, \n        0.76072514057200002, \n        -0.60720360279100005, \n        0.0312452316284, \n        0.79355132579800003, \n        -0.58137142658200003, \n        -0.0939385592937, \n        0.80782401561700001, \n        -0.47061187028899998, \n        0.17621576786000001, \n        0.86421597003899997, \n        -0.45703196525599998, \n        0.040635973215099999, \n        0.88818180561100002, \n        -0.31426507234599999, \n        0.317124187946, \n        0.89446479082100006, \n        -0.32045820355400001, \n        0.171171277761, \n        0.93134474754300001, \n        -0.259753555059, \n        0.36367812752700002, \n        0.89423894882199995, \n        -0.27898272872000002, \n        0.195480942726, \n        0.93986809253699999, \n        -0.54634499549899995, \n        -0.33993834257099997, \n        0.76507884264000003, \n        -0.58403158187899995, \n        -0.24883979558899999, \n        0.772257745266, \n        -0.54926306009299997, \n        -0.20877796411499999, \n        0.80877572298, \n        -0.51451253891000004, \n        -0.32080909609800001, \n        0.79482984542799995, \n        -0.44080784916900001, \n        -0.098311543464700002, \n        0.89186257123900003, \n        -0.41561347246199998, \n        -0.22426331043200001, \n        0.88111686706500003, \n        -0.32048821449300002, \n        0.0220991671085, \n        0.94667601585399996, \n        -0.316398441792, \n        -0.12796133756600001, \n        0.93963521718999998, \n        -0.279859483242, \n        0.057778030633900003, \n        0.957985639572, \n        -0.28494793176700001, \n        -0.114029526711, \n        0.95141863822899997, \n        -0.45584630966200002, \n        -0.51151448488200002, \n        0.72797912359200001, \n        -0.504382669926, \n        -0.43414890766100001, \n        0.74599564075500002, \n        -0.47257426381099998, \n        -0.41644519567499999, \n        0.77630144357700004, \n        -0.42783477902400002, \n        -0.50758171081500003, \n        0.74747228622399997, \n        -0.38961431384099998, \n        -0.35097500681900001, \n        0.85112488269800002, \n        -0.35512372851399998, \n        -0.45552140474300001, \n        0.81595546007200004, \n        -0.30317041277899998, \n        -0.26599863171600002, \n        0.914728760719, \n        -0.28835192322699998, \n        -0.39945334196100002, \n        0.86987727880499999, \n        -0.27577871084200001, \n        -0.24428719282200001, \n        0.92933624982800001, \n        -0.26580271124799998, \n        -0.39247542619699999, \n        0.88017517328299999, \n        -0.34419503808000002, \n        -0.64413046836900001, \n        0.68265783786800005, \n        -0.40680712461500002, \n        -0.57746958732599996, \n        0.70741236209900005, \n        -0.376509308815, \n        -0.58208620548199996, \n        0.72028636932400003, \n        -0.32137492299100001, \n        -0.65256786346399998, \n        0.685761809349, \n        -0.31884270906399997, \n        -0.55813646316499999, \n        0.76564967632299996, \n        -0.27823194861400002, \n        -0.63666868209799998, \n        0.71877491474199995, \n        -0.26620358228699997, \n        -0.51142847538000002, \n        0.81668436527300003, \n        -0.24378137290499999, \n        -0.615201175213, \n        0.74932867288600002, \n        -0.250823229551, \n        -0.49886029958700001, \n        0.829230487347, \n        -0.23204991221400001, \n        -0.61228811740900002, \n        0.75541591644299999, \n        -0.26003748178500002, \n        -0.69623470306400004, \n        0.66860604286199998, \n        -0.29369831085199999, \n        -0.67277580499599998, \n        0.67860907316200003, \n        -0.27176591754000001, \n        -0.691906034946, \n        0.66843503713600005, \n        -0.23921276628999999, \n        -0.70132917165800002, \n        0.67105227708799997, \n        -0.24493803083900001, \n        -0.69745230674699998, \n        0.67302477359799995, \n        -0.23496103286700001, \n        -0.70833605527900001, \n        0.66516906023, \n        -0.22953467071100001, \n        -0.67917186021800002, \n        0.69673246145199996, \n        -0.23569279909099999, \n        -0.70585680007899998, \n        0.66754138469699997, \n        -0.22906880080700001, \n        -0.66705650091199997, \n        0.70849102735500002, \n        -0.229019835591, \n        -0.69444233179100001, \n        0.68168610334400004, \n        -0.51600515842399997, \n        0.41761589050300002, \n        -0.74748420715300001, \n        -0.48023596406000002, \n        0.49110263586000003, \n        -0.72635263204599998, \n        -0.483804881573, \n        0.53760558366800004, \n        -0.69015151262300001, \n        -0.50416469574, \n        0.46640610694899998, \n        -0.72641551494599998, \n        -0.46635016799000001, \n        0.46246427297600001, \n        -0.75368529558200004, \n        -0.46110674738899998, \n        0.51079571247099997, \n        -0.72516596317299997, \n        -0.39635229110699999, \n        0.71729826927200002, \n        -0.57252502441399999, \n        -0.42666512727700001, \n        0.70159107446699998, \n        -0.57019573450100003, \n        -0.44502559304200001, \n        0.60526013374300003, \n        -0.65955173969299996, \n        -0.34003528952599998, \n        0.81808292865800003, \n        -0.46315407752999999, \n        -0.35921552777299998, \n        0.74113208055500002, \n        -0.56664186716099996, \n        -0.26716330647499997, \n        0.89470672607400004, \n        -0.35710015893000002, \n        -0.23493303358600001, \n        0.92031002044700005, \n        -0.31181982159600002, \n        -0.287716090679, \n        0.84995222091699996, \n        -0.44067788124099999, \n        -0.34519276022899997, \n        0.76486897468600001, \n        -0.54333591461200004, \n        -0.60266399383500002, \n        0.27853983640699997, \n        -0.74740022420899999, \n        -0.54567116498900003, \n        0.29956954717599998, \n        -0.78223878145199999, \n        -0.53306800126999998, \n        0.35693320631999997, \n        -0.76670336723300003, \n        -0.62059652805300003, \n        0.31261160969700003, \n        -0.71869993209799998, \n        -0.51020485162700002, \n        0.50041383504900006, \n        -0.69905179739000001, \n        -0.62168818712200002, \n        0.46088778972599997, \n        -0.63283586502099998, \n        -0.44091483950600002, \n        0.65485215187099999, \n        -0.613317728043, \n        -0.59259599447300004, \n        0.604870319366, \n        -0.53137350082400003, \n        -0.38318026065799998, \n        0.69304966926599998, \n        -0.61012470722199996, \n        -0.56358176469800003, \n        0.653912425041, \n        -0.50415372848499995, \n        -0.717610239983, \n        0.29866978526100002, \n        -0.62867116928099998, \n        -0.662542879581, \n        0.28413319587699998, \n        -0.692604780197, \n        -0.69014054536799996, \n        0.31381422281299998, \n        -0.65163016319300004, \n        -0.72919678688, \n        0.33812788128900001, \n        -0.59442245960200002, \n        -0.70957064628599997, \n        0.43659311533, \n        -0.55253213643999999, \n        -0.743168532848, \n        0.463549017906, \n        -0.48189145326600002, \n        -0.69160705804800005, \n        0.57771944999699998, \n        -0.43280124664300001, \n        -0.73713332414599997, \n        0.57605302333800001, \n        -0.35241153836299999, \n        -0.68242788314799996, \n        0.61487829685200002, \n        -0.39447882771499998, \n        -0.72558683157000003, \n        0.61630684137299996, \n        -0.30509883165399998, \n        -0.78327840566600004, \n        0.34530472755399999, \n        -0.51636809110600002, \n        -0.72917675971999996, \n        0.35565063357400001, \n        -0.58413261175200004, \n        -0.757934033871, \n        0.37659123539900002, \n        -0.53208124637599996, \n        -0.79503691196399995, \n        0.38412293791800001, \n        -0.468788415194, \n        -0.76128005981400004, \n        0.50194537639600001, \n        -0.40975624322900001, \n        -0.78690427541700003, \n        0.51665103435500004, \n        -0.33652636408800002, \n        -0.74025440216100002, \n        0.61438536643999997, \n        -0.27193787693999999, \n        -0.750443339348, \n        0.63303780555699996, \n        -0.188398078084, \n        -0.74853092432000001, \n        0.62725752592100004, \n        -0.21364647149999999, \n        -0.73400926590000004, \n        0.66581392288200003, \n        -0.13159823417700001, \n        -0.89320725202600004, \n        0.25517794489899998, \n        -0.36940643191299999, \n        -0.82278150320099996, \n        0.34063613414799998, \n        -0.45430678129199997, \n        -0.84649336338000003, \n        0.36112290620800003, \n        -0.390429019928, \n        -0.90706896781900004, \n        0.29514288902300001, \n        -0.29918664693800001, \n        -0.82688927650499999, \n        0.505101382732, \n        -0.24601566791500001, \n        -0.87955230474500001, \n        0.45255130529400001, \n        -0.14485025405900001, \n        -0.77070522308300005, \n        0.63146924972499996, \n        -0.081590622663500006, \n        -0.79470598697700001, \n        0.60609292983999996, \n        0.022117882966999999, \n        -0.75818800926200003, \n        0.65154123306300005, \n        -0.00643149018288, \n        -0.768147945404, \n        0.63625985383999994, \n        0.0672098994255, \n        -0.96383690834000002, \n        0.051224917173399998, \n        -0.26036533713299997, \n        -0.94650107622099999, \n        0.13838918507100001, \n        -0.29048222303400001, \n        -0.95427572727200005, \n        0.187667325139, \n        -0.23137710988499999, \n        -0.97233033180200001, \n        0.10999277234099999, \n        -0.204625189304, \n        -0.92422181367900003, \n        0.37412703037299999, \n        -0.072379454970400006, \n        -0.95384186506299995, \n        0.294280141592, \n        -0.054605811834300001, \n        -0.84123390912999996, \n        0.53542530536699995, \n        0.071003153920199999, \n        -0.88131976127599998, \n        0.46358698606499998, \n        0.0880819112062, \n        -0.79610353708299997, \n        0.59515124559400001, \n        0.10681973397699999, \n        -0.85198569297799998, \n        0.50832343101499999, \n        0.12298284471, \n        -0.974050819874, \n        -0.068864099681400004, \n        -0.214192301035, \n        -0.96773171424899995, \n        -0.020293675363099999, \n        -0.24996149539900001, \n        -0.98021996021299995, \n        0.044880248606199998, \n        -0.19118124246599999, \n        -0.98758172988899995, \n        -0.041589237749600001, \n        -0.14949586987499999, \n        -0.97748273611100001, \n        0.20667856931699999, \n        -0.034760110080200003, \n        -0.99332195520400002, \n        0.109713852406, \n        0.025898274034299999, \n        -0.92162662744500001, \n        0.37268143892299999, \n        0.10540215671100001, \n        -0.95626217126799995, \n        0.23504601419000001, \n        0.17237494885900001, \n        -0.89397597312900001, \n        0.42627921700499999, \n        0.13597092032399999, \n        -0.93462270498300004, \n        0.26499992609, \n        0.235907718539, \n        -0.97386485338200002, \n        -0.225526869297, \n        -0.0109717026353, \n        -0.98300004005399999, \n        -0.105996988714, \n        -0.14788833260500001, \n        -0.99185740947699996, \n        -0.116082943976, \n        -0.046259634196800001, \n        -0.966962873936, \n        -0.23723533749600001, \n        0.089986920356800004, \n        -0.99044686555899997, \n        -0.025292962789499999, \n        0.133311733603, \n        -0.94498664140699995, \n        -0.161122336984, \n        0.28361231088599997, \n        -0.94993513822599995, \n        0.090513147413700007, \n        0.29804000258399999, \n        -0.89283329248400001, \n        -0.090413585305199995, \n        0.44053494930300002, \n        -0.92625427246100001, \n        0.068718448281299999, \n        0.36976730823499998, \n        -0.84703510999700005, \n        -0.105270206928, \n        0.52042883634600001, \n        -0.83540570735899999, \n        -0.46346801519399999, \n        0.29443204402899997, \n        -0.94360697269399996, \n        -0.29892373085000001, \n        0.14016866684000001, \n        -0.89443087577799996, \n        -0.37113195657699999, \n        0.24829401075800001, \n        -0.77984541654600004, \n        -0.49292114377000001, \n        0.38505271077199998, \n        -0.84536874294300002, \n        -0.31613549590099999, \n        0.42989113926900002, \n        -0.70321661233900001, \n        -0.46133464574799998, \n        0.54041975736600001, \n        -0.77641052007699995, \n        -0.25939762592299997, \n        0.57384264469099999, \n        -0.62565499544100001, \n        -0.40974521637, \n        0.66337060928299996, \n        -0.70433425903299995, \n        -0.31397813558600002, \n        0.63618183135999995, \n        -0.56109952926600004, \n        -0.43669113516800001, \n        0.702754735947, \n        -0.56921505928000005, \n        -0.63883703947100001, \n        0.51698881387700002, \n        -0.74285864830000004, \n        -0.51020890474299996, \n        0.432717323303, \n        -0.63333666324600002, \n        -0.59984177351000001, \n        0.488333523273, \n        -0.49353292584399999, \n        -0.66745036840399996, \n        0.55707472562799998, \n        -0.54227119684199998, \n        -0.57808035612099995, \n        0.60922998189900002, \n        -0.409844189882, \n        -0.66258186101899996, \n        0.62642580270799997, \n        -0.47053590416899999, \n        -0.54469442367599996, \n        0.69375848770100002, \n        -0.34817981720000002, \n        -0.63160127401400001, \n        0.69227689504599998, \n        -0.41013914346699998, \n        -0.56582313776000004, \n        0.71486109495200001, \n        -0.31803190708200002, \n        -0.63642680645000005, \n        0.70229089260099997, \n        -0.277159273624, \n        -0.78548073768600002, \n        0.55281102657299996, \n        -0.44547843933100001, \n        -0.67685353756, \n        0.58550417423199996, \n        -0.36601442098600001, \n        -0.73249065875999997, \n        0.573485732079, \n        -0.241397082806, \n        -0.79360431432699996, \n        0.55795651674299995, \n        -0.29772207140899998, \n        -0.72740727663000004, \n        0.61776739358900001, \n        -0.21800814568999999, \n        -0.788570821285, \n        0.57447844743700005, \n        -0.26644253730799999, \n        -0.70409828424499998, \n        0.65776127576800003, \n        -0.20308464765500001, \n        -0.77077817916900004, \n        0.60336875915499999, \n        -0.24784614145799999, \n        -0.69869703054400001, \n        0.67066448926900002, \n        -0.19952572882200001, \n        -0.77094709873199996, \n        0.60433948039999996, \n        -0.155550017953, \n        -0.84767198562599999, \n        0.50660896301299996, \n        -0.18359854817400001, \n        -0.82939851283999999, \n        0.52705383300800002, \n        -0.174078419805, \n        -0.836458384991, \n        0.51906615495700004, \n        -0.15394051373000001, \n        -0.84973031282400002, \n        0.50364285707500001, \n        -0.16754639148700001, \n        -0.83425891399399998, \n        0.52472448349, \n        -0.16254289448299999, \n        -0.84468883275999995, \n        0.50938910245900004, \n        -0.178434103727, \n        -0.81834584474600003, \n        0.54577213525799995, \n        -0.18313768506100001, \n        -0.842029631138, \n        0.50679689645799997, \n        -0.18945279717399999, \n        -0.80520480871199995, \n        0.56138139963199996, \n        -0.18346260487999999, \n        -0.82849681377399997, \n        0.52851736545600003, \n        -0.48941516876199997, \n        0.85941344499600003, \n        -0.14586693048499999, \n        -0.58724063634900003, \n        0.79750210046799996, \n        -0.13614588975899999, \n        -0.49902126193000002, \n        0.85383605956999997, \n        -0.146075874567, \n        -0.39851063489900002, \n        0.89643019437799998, \n        -0.19234889745700001, \n        -0.63477826118500003, \n        0.770940124989, \n        -0.045865356922099997, \n        -0.58831632137300005, \n        0.80521279573399995, \n        -0.070098161697400005, \n        -0.32396912574800002, \n        0.90643715858499996, \n        -0.26983746886299997, \n        -0.25994750857400001, \n        0.92565637826900005, \n        -0.27383130788799998, \n        -0.111122436821, \n        0.93981814384499995, \n        -0.32216468453399999, \n        0.016911793500200001, \n        0.89623427391099997, \n        -0.44257628917699998, \n        0.138909056783, \n        0.90165460109700002, \n        -0.40880247950600002, \n        -0.031266056001199999, \n        0.888527572155, \n        -0.45709699392300002, \n        0.074930362403399994, \n        0.84385609626799996, \n        -0.53074371814700005, \n        0.108837127686, \n        0.87020117044400003, \n        -0.479896008968, \n        0.206157743931, \n        0.87346619367599998, \n        -0.44040101766599998, \n        -0.27358135580999998, \n        0.95533144473999998, \n        -0.109047085047, \n        -0.39760890603100002, \n        0.893570065498, \n        -0.20696648955300001, \n        -0.26542782783500002, \n        0.94084882736200004, \n        -0.20915779471400001, \n        -0.13987475633599999, \n        0.97475862503099997, \n        -0.172267913818, \n        0.030430110171400002, \n        0.94453775882699997, \n        -0.32606554031399998, \n        0.060773842036699999, \n        0.94603431224800005, \n        -0.31736817956000002, \n        0.22499303519700001, \n        0.88094294071199997, \n        -0.415588468313, \n        0.23721136152700001, \n        0.87028515338900003, \n        -0.43096482753799997, \n        0.29493191838299998, \n        0.85540056228600003, \n        -0.42508956790000002, \n        0.29975545406300003, \n        0.83808887004900001, \n        -0.45513653755200001, \n        -0.19736839830899999, \n        0.97384983301200001, \n        0.109814822674, \n        -0.19110327959100001, \n        0.98125660419500005, \n        0.0034648776054400001, \n        -0.147038593888, \n        0.98644995689399995, \n        -0.0685065686703, \n        -0.117440529168, \n        0.99158847332, \n        0.048535972833599998, \n        0.078734815120700005, \n        0.963105082512, \n        -0.25617262721099998, \n        0.16955979168400001, \n        0.97763866186100001, \n        -0.12193912267699999, \n        0.31047222018199999, \n        0.86667120456699998, \n        -0.38972330093399998, \n        0.40707704424899999, \n        0.86794781684900002, \n        -0.28346237540199998, \n        0.38255244493500001, \n        0.82274347543699999, \n        -0.41969317197799999, \n        0.45949819683999998, \n        0.82483685016599995, \n        -0.32848381996199999, \n        -0.096084877848599995, \n        0.96713387966200004, \n        0.234128326178, \n        -0.16461627185300001, \n        0.97194439172699998, \n        0.16619580984099999, \n        -0.067379951477100006, \n        0.98715794086499997, \n        0.14274290204000001, \n        -0.021057441830600002, \n        0.97589528560600003, \n        0.215827822685, \n        0.21437224745799999, \n        0.97633409500099999, \n        -0.014600157737700001, \n        0.23223884403699999, \n        0.96967208385500003, \n        0.072096109390300006, \n        0.45023202896100001, \n        0.87212353944800003, \n        -0.189968645573, \n        0.47891137003899997, \n        0.87039005756400001, \n        -0.11163324117700001, \n        0.50382882356600001, \n        0.82412707805600005, \n        -0.25761818885799997, \n        0.54305493831600005, \n        0.82028818130500003, \n        -0.177801340818, \n        0.028716027736700001, \n        0.89640825986899997, \n        0.44161564111700002, \n        -0.0280675217509, \n        0.94169557094599998, \n        0.334390997887, \n        0.028393724933299998, \n        0.951020777225, \n        0.30683833360700002, \n        0.087178066372900001, \n        0.90302628278700003, \n        0.41992717981299998, \n        0.27969449758499998, \n        0.94162356853499996, \n        0.18577587604500001, \n        0.325620651245, \n        0.89429581165299998, \n        0.30594456195800002, \n        0.51620608568199999, \n        0.85611140728000001, \n        -0.0010085999965699999, \n        0.56707769632299998, \n        0.81249052286099999, \n        0.13295584917100001, \n        0.57383066415799999, \n        0.81265652179699999, \n        -0.098507910966899995, \n        0.63089746236800004, \n        0.77442109584800001, \n        0.040464878082300003, \n        0.10881713032699999, \n        0.81027722358700005, \n        0.57533121108999996, \n        0.071104727685499997, \n        0.85289531946200003, \n        0.51663392782200002, \n        0.13585595786599999, \n        0.85635036230100003, \n        0.49759668111799998, \n        0.17598885297799999, \n        0.81067407131199998, \n        0.55788147449500003, \n        0.37530964613000001, \n        0.83078205585499998, \n        0.41029310226400001, \n        0.40842962264999999, \n        0.78007441759100005, \n        0.473356068134, \n        0.60392057895700002, \n        0.75581473112099995, \n        0.25183194875699999, \n        0.629356861115, \n        0.70013749599499997, \n        0.336323410273, \n        0.65333467721899996, \n        0.74047136306799999, \n        0.15573099255600001, \n        0.692034959793, \n        0.67327362299000004, \n        0.259203672409, \n        0.168113231659, \n        0.71019548177699998, \n        0.68319565057800002, \n        0.14012567699, \n        0.76669043302499995, \n        0.62605684995699995, \n        0.210068553686, \n        0.76378524303399997, \n        0.60983490943899998, \n        0.24020846188100001, \n        0.70763933658599998, \n        0.66403543949099997, \n        0.44149464368800001, \n        0.72562277317000001, \n        0.527209758759, \n        0.46625015139600001, \n        0.67125922441499997, \n        0.57568913698199997, \n        0.65014868974700002, \n        0.64962083101300006, \n        0.39331322908400002, \n        0.67314267158499996, \n        0.59263896942100003, \n        0.44165059924099997, \n        0.70029044151300002, \n        0.63590592145900005, \n        0.32343930005999999, \n        0.72899782657599999, \n        0.57095551490800001, \n        0.37678715586700001, \n        0.20875993371000001, \n        0.56553423404699998, \n        0.79748809337600002, \n        0.19127321243299999, \n        0.64142227172900002, \n        0.74255573749500003, \n        0.26236575841900001, \n        0.64024460315700005, \n        0.72155904769900003, \n        0.28160095214800002, \n        0.56181430816699995, \n        0.77747118473099996, \n        0.493598908186, \n        0.60021376609800003, \n        0.62888801097900004, \n        0.51219826936699997, \n        0.52107560634600003, \n        0.68229687213900003, \n        0.69523203372999998, \n        0.52668392658200003, \n        0.48852047324199999, \n        0.71652758121500004, \n        0.44662207365000001, \n        0.53527027368500002, \n        0.74612265825299995, \n        0.51489251851999995, \n        0.42140570282899997, \n        0.77055025100700003, \n        0.43314215540899997, \n        0.466942936182, \n        0.23517794907100001, \n        0.39722305536300001, \n        0.88673621416100001, \n        0.22268174588699999, \n        0.48381587862999997, \n        0.84600949287399996, \n        0.29615956544900002, \n        0.47893831133800002, \n        0.82601642608600001, \n        0.30753010511399997, \n        0.38885655999199997, \n        0.86810886859900005, \n        0.52825140953100003, \n        0.43240541219700002, \n        0.73032337427100003, \n        0.53589618206, \n        0.34205871820400002, \n        0.77149695157999998, \n        0.72963964939100001, \n        0.362149596214, \n        0.57954293489499997, \n        0.73740828037299999, \n        0.27238672971700001, \n        0.61760044097900002, \n        0.78265058994299996, \n        0.35671624541300001, \n        0.50951808691, \n        0.79382121562999997, \n        0.26352539658500002, \n        0.54753768444100004, \n        0.25780212879199998, \n        0.20882394909900001, \n        0.943041205406, \n        0.244408175349, \n        0.30775600671800002, \n        0.91921037435499997, \n        0.31761607527699998, \n        0.29451403021799999, \n        0.90098679065700005, \n        0.32454198598900003, \n        0.19291871786100001, \n        0.92566245794299995, \n        0.54002290964099997, \n        0.24218383431400001, \n        0.80567860603300001, \n        0.53601211309399999, \n        0.143626600504, \n        0.83153975009900005, \n        0.73517096042600005, \n        0.18248784542099999, \n        0.65239495038999995, \n        0.72633063793200003, \n        0.087135493755299998, \n        0.68135625123999999, \n        0.79114705324199996, \n        0.184299364686, \n        0.58268105983700003, \n        0.78393524885200006, \n        0.086483567953099999, \n        0.61429846286800005, \n        0.29041528701800001, \n        0.00162184238434, \n        0.95658403635, \n        0.268517911434, \n        0.115072250366, \n        0.95606124401100001, \n        0.33413308858899998, \n        0.088492155075099999, \n        0.93804061412799999, \n        0.34168279170999999, \n        -0.023436009883899999, \n        0.93920135498000001, \n        0.52740067243599997, \n        0.033583194017400002, \n        0.84859669208499999, \n        0.51086169481300003, \n        -0.067625552415799997, \n        0.85664629936199999, \n        0.70430529117600005, \n        -0.0044117867946600001, \n        0.70945763587999999, \n        0.67201006412499997, \n        -0.102042168379, \n        0.73306655883799998, \n        0.76170992851300001, \n        0.0105684101582, \n        0.64736652374299997, \n        0.72716134786599995, \n        -0.091032266616800001, \n        0.67995959520299998, \n        0.33438000083000002, \n        -0.108063369989, \n        0.93589937686900004, \n        0.318148910999, \n        -0.062742054462399999, \n        0.94564336538299998, \n        0.36057606339499998, \n        -0.10503226518600001, \n        0.92647117376300003, \n        0.38975331187200002, \n        -0.14137333631499999, \n        0.90967124700500002, \n        0.49383282661400002, \n        -0.15715953707700001, \n        0.85488379001600001, \n        0.47970008850099999, \n        -0.17089837789500001, \n        0.86027818918200005, \n        0.62780833244300005, \n        -0.16350862383799999, \n        0.76060330867799997, \n        0.57851129770300003, \n        -0.180022627115, \n        0.795180797577, \n        0.67918586730999997, \n        -0.13480427861200001, \n        0.72106218338000005, \n        0.64354562759400002, \n        -0.17643168568600001, \n        0.74439013004300003, \n        -0.56297594308900001, \n        0.73154205083799995, \n        -0.38379806280099998, \n        -0.61484128236799995, \n        0.69941878318799999, \n        -0.36356520652800001, \n        -0.54149043559999999, \n        0.75705927610400003, \n        -0.36475282907500001, \n        -0.502493262291, \n        0.76878070831300005, \n        -0.39480674266799998, \n        -0.62868911027899999, \n        0.71505701541900002, \n        -0.30469691753400002, \n        -0.55068361759200002, \n        0.76744627952599997, \n        -0.327369123697, \n        -0.26869285106700003, \n        0.88023412227599995, \n        -0.39036905765500002, \n        -0.275442779064, \n        0.86330330371899999, \n        -0.422178506851, \n        -0.21962465345900001, \n        0.86696916818600001, \n        -0.44668406248100001, \n        0.091780677437799996, \n        0.88498973846399998, \n        -0.45581331849099999, \n        0.15296080708500001, \n        0.86857461929299995, \n        -0.47072085738199998, \n        0.055824339389799998, \n        0.90152573585499995, \n        -0.42840659618400001, \n        0.197565317154, \n        0.87758696079300003, \n        -0.43612527847299998, \n        0.22346250712900001, \n        0.86859565973300001, \n        -0.44159060716600002, \n        0.27975049614899999, \n        0.835064768791, \n        -0.47307813167599999, \n        -0.46222141385100002, \n        0.87768095731700002, \n        -0.124189555645, \n        -0.50788158178300002, \n        0.80137896537800002, \n        -0.31503084301899997, \n        -0.44038495421399998, \n        0.84055900573700004, \n        -0.314511030912, \n        -0.38587644696200002, \n        0.91149765253100001, \n        -0.140237629414, \n        -0.13754545152200001, \n        0.92200446128799995, \n        -0.36108896136300001, \n        -0.095681101083799999, \n        0.97559434175500004, \n        -0.19610673189200001, \n        0.17992663383499999, \n        0.89465576410299996, \n        -0.40818268060700003, \n        0.17882497608699999, \n        0.95144057273899996, \n        -0.249356716871, \n        0.29151195287699999, \n        0.84629541635500005, \n        -0.44519752264000001, \n        0.24524290859699999, \n        0.92775678634600001, \n        -0.28021442890199999, \n        -0.38482975959799998, \n        0.92095482349400004, \n        0.0560682713985, \n        -0.42078092694300001, \n        0.90591835975599999, \n        -0.040640056133299997, \n        -0.34012427926099997, \n        0.93940520286600004, \n        -0.0350678861141, \n        -0.29767608642600002, \n        0.95358395576499999, \n        0.038242220878599999, \n        -0.080781802535100006, \n        0.99434268474599996, \n        -0.064442306756999995, \n        -0.053534530103200001, \n        0.99822056293500006, \n        -0.0092358887195599995, \n        0.18744437396499999, \n        0.97334003448499995, \n        -0.12988674640699999, \n        0.204621195793, \n        0.97667896747600003, \n        -0.060210913419700002, \n        0.26179394125900002, \n        0.95258420705799995, \n        -0.15311473608000001, \n        0.27067521214500001, \n        0.95854246616399996, \n        -0.085597157478300004, \n        -0.32068613171600002, \n        0.89132881164599997, \n        0.31951454281800001, \n        -0.36087998747799999, \n        0.90911042690300004, \n        0.20659160613999999, \n        -0.28438609838500001, \n        0.94151854515099997, \n        0.17906391620600001, \n        -0.25370436906799998, \n        0.91517156362499996, \n        0.312237679958, \n        -0.020849702879800001, \n        0.99292814731599999, \n        0.11425653099999999, \n        0.0062247700989199999, \n        0.96401691436799997, \n        0.26463010907200002, \n        0.21568785607800001, \n        0.97510349750500003, \n        0.045263528823900001, \n        0.229497686028, \n        0.95269417762800002, \n        0.197741240263, \n        0.26508390903500001, \n        0.96381390094800001, \n        -0.0137777328491, \n        0.267239302397, \n        0.95058190822599997, \n        0.15611782669999999, \n        -0.24931469559700001, \n        0.85922849178299998, \n        0.44605529308300002, \n        -0.29121905565299999, \n        0.87420797348000001, \n        0.38774788379699998, \n        -0.21167506277600001, \n        0.89568942785299999, \n        0.39029508829100001, \n        -0.17514809966100001, \n        0.87657731771500003, \n        0.44758480787299998, \n        0.029885072261100001, \n        0.92995810508700005, \n        0.36562356352800002, \n        0.0515090413392, \n        0.90689611434899997, \n        0.41747093200699997, \n        0.24165701866100001, \n        0.92378807067900004, \n        0.29599562287300002, \n        0.25798207521400002, \n        0.89624625444399997, \n        0.35997825860999999, \n        0.275819659233, \n        0.92421686649300006, \n        0.262950539589, \n        0.32094904780400002, \n        0.885109603405, \n        0.33610743284200001, \n        -0.17668564617599999, \n        0.79643940925599999, \n        0.57780849933599998, \n        -0.21211692690799999, \n        0.842947423458, \n        0.49380284547800002, \n        -0.140340611339, \n        0.85413402318999998, \n        0.50015598535500005, \n        -0.10455641895499999, \n        0.810776114464, \n        0.57541811466199999, \n        0.079001039266600001, \n        0.88105785846700002, \n        0.46571734547600002, \n        0.112440042198, \n        0.83972638845400005, \n        0.53067177534099996, \n        0.29213875532200001, \n        0.86527562141400005, \n        0.40663111209899999, \n        0.32582157850299998, \n        0.82793986797300001, \n        0.45579731464399997, \n        0.35754099488300001, \n        0.84902256727199998, \n        0.38822871446599999, \n        0.38499674201, \n        0.81723415851600001, \n        0.42813766002699999, \n        -0.103962600231, \n        0.66190707683600003, \n        0.74193489551500003, \n        -0.14061553776300001, \n        0.738258957863, \n        0.65923988819099999, \n        -0.068581886589499999, \n        0.74844390153899998, \n        0.65918391942999999, \n        -0.032505881041299999, \n        0.671719193459, \n        0.73968458175700003, \n        0.146721690893, \n        0.77621358633000004, \n        0.61266797781000004, \n        0.17957177758199999, \n        0.70028543472299998, \n        0.69047045707700005, \n        0.352675497532, \n        0.77242672443399996, \n        0.527610659599, \n        0.382246553898, \n        0.69872796535500004, \n        0.60420453548399999, \n        0.41380402445800002, \n        0.76699125766800003, \n        0.48978206515299999, \n        0.44285225868200001, \n        0.695009112358, \n        0.56589710712399999, \n        -0.033880565315500002, \n        0.46788966655699998, \n        0.88279533386200004, \n        -0.068199396133399995, \n        0.57494032383000004, \n        0.814977884293, \n        0.0027666040696200001, \n        0.58096551895100002, \n        0.81355226039899997, \n        0.037248950451600003, \n        0.473627954721, \n        0.87959432601900001, \n        0.212385848165, \n        0.60884112119699996, \n        0.76393729448299996, \n        0.24387434124900001, \n        0.503291964531, \n        0.82862472534200005, \n        0.41187956929199998, \n        0.61227905750300005, \n        0.67443728446999995, \n        0.440097093582, \n        0.51105570793199995, \n        0.73792505264300001, \n        0.47105172276500001, \n        0.61053651571300005, \n        0.63620084524200005, \n        0.49908325076100002, \n        0.51064771413800003, \n        0.69967955350900002, \n        0.028425212949500001, \n        0.205999821424, \n        0.97783064842199996, \n        -0.00064045056933500003, \n        0.34611141681699997, \n        0.93787169456499997, \n        0.068971864879099995, \n        0.34929049015000002, \n        0.93414986133599998, \n        0.098106458783099995, \n        0.20885294675800001, \n        0.97270315885500003, \n        0.27298057079299998, \n        0.380760014057, \n        0.883119285107, \n        0.29675537347800002, \n        0.24287065863599999, \n        0.92322611808800004, \n        0.46498253941500001, \n        0.39546754956199998, \n        0.79170191288000002, \n        0.48465859890000001, \n        0.26485100388499999, \n        0.83328032493600002, \n        0.52335894107799996, \n        0.39720499515500002, \n        0.75347244739499997, \n        0.54099762439700005, \n        0.268625825644, \n        0.79659140110000004, \n        0.072606667876200001, \n        -0.11063364148099999, \n        0.99090075492899998, \n        0.054099358618300002, \n        0.051256239414200003, \n        0.99691587686500005, \n        0.12067655473900001, \n        0.054448544979099997, \n        0.99089270830200005, \n        0.13706059753899999, \n        -0.107614457607, \n        0.98439270257900002, \n        0.31461200118100002, \n        0.091290414333299999, \n        0.94450074434300002, \n        0.32091704011, \n        -0.068734914064399993, \n        0.94428980350500002, \n        0.49404677748699999, \n        0.121635198593, \n        0.86053407192200004, \n        0.49321201443700002, \n        -0.031068235635799999, \n        0.86900651454900002, \n        0.55034577846499999, \n        0.13042759895299999, \n        0.82432097196599996, \n        0.54345285892499995, \n        -0.0219637751579, \n        0.83879262208899996, \n        0.085709109902399994, \n        -0.42880946397800002, \n        0.89898449182499995, \n        0.083517782390100007, \n        -0.276904404163, \n        0.95694595575300001, \n        0.142862856388, \n        -0.27021735906599997, \n        0.95182353258100005, \n        0.13841418921900001, \n        -0.42488762736300001, \n        0.89426386356400001, \n        0.31539174914399998, \n        -0.232047915459, \n        0.91982519626600001, \n        0.29414716362999999, \n        -0.38742801547099998, \n        0.87336921691900005, \n        0.47426474094400001, \n        -0.18779528140999999, \n        0.85976839065599997, \n        0.43916934728599999, \n        -0.34253853559500003, \n        0.83017724752400002, \n        0.52555024623900004, \n        -0.16786631941800001, \n        0.83367514610299998, \n        0.47948220372200001, \n        -0.32835686206800002, \n        0.81343436241099998, \n        0.072152510285399998, \n        -0.57316684722900002, \n        0.81588554382300005, \n        0.077876880765000003, \n        -0.542240202427, \n        0.83624547719999998, \n        0.124430410564, \n        -0.531205534935, \n        0.83769595623000004, \n        0.111415356398, \n        -0.56525325775099999, \n        0.81698918342600002, \n        0.25935065746300001, \n        -0.50223231315600003, \n        0.82455790042900001, \n        0.25356540083899998, \n        -0.53201323747600004, \n        0.80750411748899997, \n        0.39083293080300002, \n        -0.45399683713900002, \n        0.80033224821100002, \n        0.35066509246799998, \n        -0.49420967698099999, \n        0.79510188102699997, \n        0.43583235144600002, \n        -0.41780683398200003, \n        0.79679632186899996, \n        0.40874156355899999, \n        -0.46366894245099999, \n        0.78570866584800003, \n        -0.48103067278900002, \n        0.81199878454200003, \n        -0.329641401768, \n        -0.57492130994799995, \n        0.74923968315099998, \n        -0.327873945236, \n        -0.47196546196900002, \n        0.81417012214700002, \n        -0.33730009198200001, \n        -0.36642432212800002, \n        0.85650527477299998, \n        -0.36266741156600002, \n        -0.60783141851400002, \n        0.74074029922499995, \n        -0.28502890467600001, \n        -0.53973996639300004, \n        0.78028231859200003, \n        -0.31501787900900002, \n        -0.236350625753, \n        0.87846469879199995, \n        -0.41452980041499998, \n        -0.15442435443399999, \n        0.89515364170099998, \n        -0.41743087768600001, \n        0.0040233745239699999, \n        0.90304422378500004, \n        -0.42882549762700001, \n        0.22950267791699999, \n        0.85426497459399997, \n        -0.46578633785200002, \n        0.34670928120599998, \n        0.81991934776300002, \n        -0.45488560199700001, \n        0.099864341318600003, \n        0.87446790933600005, \n        -0.47405678033799997, \n        0.273926258087, \n        0.82138592004800004, \n        -0.49968606233599999, \n        0.36233156919499998, \n        0.82386022806199999, \n        -0.435162603855, \n        0.43291121721300002, \n        0.77469599246999998, \n        -0.46024999022500002, \n        -0.29097211360899999, \n        0.93976217508299997, \n        -0.17770534753799999, \n        -0.39077296853100002, \n        0.85830169916200005, \n        -0.33167880773500003, \n        -0.250913202763, \n        0.90729790925999998, \n        -0.33652430772800002, \n        -0.16721749305700001, \n        0.96275919675800004, \n        -0.21102124452599999, \n        0.102162137628, \n        0.90751987695699998, \n        -0.406653225422, \n        0.12811730802099999, \n        0.93932533264200002, \n        -0.31725418567699998, \n        0.38191765546799999, \n        0.80230671167400003, \n        -0.45808261632899999, \n        0.43302622437499999, \n        0.80609846115100003, \n        -0.40260338783299998, \n        0.49033588170999998, \n        0.74675238132499999, \n        -0.44869542121900002, \n        0.53140646219300003, \n        0.73726832866699998, \n        -0.41645920276600001, \n        -0.17848809063400001, \n        0.98329007625599996, \n        0.026042819023099999, \n        -0.23907378315899999, \n        0.96950322389599997, \n        -0.0480002760887, \n        -0.13755443692200001, \n        0.98759770393400004, \n        -0.071600288152700003, \n        -0.092170856893100006, \n        0.99537336826300005, \n        0.011504888534499999, \n        0.168793022633, \n        0.96948415041000002, \n        -0.17608577013000001, \n        0.19367149472199999, \n        0.97754174470900002, \n        -0.079367101192499998, \n        0.45402988791499999, \n        0.84292542934400005, \n        -0.28762912750199998, \n        0.44225242733999998, \n        0.87966829538299995, \n        -0.173181712627, \n        0.53284907340999998, \n        0.76839989423800004, \n        -0.35359615087500001, \n        0.51532429456700002, \n        0.82838183641399998, \n        -0.218221127987, \n        -0.086955234408400001, \n        0.96590030193300003, \n        0.24263265729, \n        -0.12880209088299999, \n        0.98630702495599998, \n        0.100025743246, \n        -0.058312091976399999, \n        0.99436569213899995, \n        0.085051059722900002, \n        -0.026761017739800001, \n        0.97354793548600005, \n        0.22557488083800001, \n        0.217600271106, \n        0.975556373596, \n        -0.018310815095900001, \n        0.21094627678399999, \n        0.971306622028, \n        0.107061684132, \n        0.44801867008200003, \n        0.88443988561599995, \n        -0.12822526693299999, \n        0.45417281985300001, \n        0.89011913537999998, \n        -0.028488993644699999, \n        0.51234126090999998, \n        0.84081006050100005, \n        -0.173034697771, \n        0.51371484994899996, \n        0.85428905487100004, \n        -0.075394481420499995, \n        -0.053144346922599998, \n        0.89703810215000002, \n        0.43805873394, \n        -0.061446040868799998, \n        0.92885148525200001, \n        0.36449289321900002, \n        -0.0114321475849, \n        0.94045293331099999, \n        0.33884164691000002, \n        0.0071234288625399997, \n        0.90792077779799996, \n        0.41836065053900001, \n        0.22285169362999999, \n        0.94293224811599996, \n        0.24619570374499999, \n        0.238861858845, \n        0.90940630435900005, \n        0.33959043026000002, \n        0.45366099476799998, \n        0.88340914249400004, \n        0.11478933692, \n        0.44828557968100002, \n        0.86377310752900005, \n        0.22876393795, \n        0.49581322073900003, \n        0.867187023163, \n        0.039384514093399998, \n        0.49982506036800001, \n        0.847020149231, \n        0.17924287915199999, \n        -0.016390049830099999, \n        0.82871377468100005, \n        0.55889320373499995, \n        -0.038838967680899998, \n        0.86540955305099998, \n        0.49895232915900001, \n        0.032025326043399999, \n        0.87456285953500001, \n        0.48322904109999998, \n        0.053009986877400002, \n        0.83775204420100002, \n        0.54291504621499997, \n        0.250231415033, \n        0.87616837024700001, \n        0.41122975945500001, \n        0.25568076968199999, \n        0.84890162944799996, \n        0.46194148063700002, \n        0.44455173611600002, \n        0.84372615814200003, \n        0.29982542991599997, \n        0.44504055380800001, \n        0.82260358333600003, \n        0.35307037830400001, \n        0.48860043287299998, \n        0.83613842725800003, \n        0.24806708097499999, \n        0.50038981437700003, \n        0.80782204866399998, \n        0.31053119897800002, \n        0.018467221409099999, \n        0.69106924533799996, \n        0.72213482856800004, \n        0.0040928735397799997, \n        0.76946854591400005, \n        0.63819825649299999, \n        0.066844709217500006, \n        0.78216969966899996, \n        0.61898207664500005, \n        0.0822755545378, \n        0.70289868116400001, \n        0.70608872175199999, \n        0.26863285899200001, \n        0.80312538147000001, \n        0.53124654293100004, \n        0.27890175580999998, \n        0.73357045650499997, \n        0.61926198005699995, \n        0.453590989113, \n        0.78981149196599998, \n        0.41212752461399998, \n        0.46658307313899999, \n        0.73364734649700003, \n        0.49341496825199999, \n        0.50945210456800005, \n        0.78281956911100004, \n        0.35643833875699998, \n        0.51996594667399998, \n        0.73187500238400005, \n        0.43976217508299997, \n        0.044816162437199998, \n        0.48131167888600002, \n        0.87505877018, \n        0.032189875841100002, \n        0.59058260917700001, \n        0.805960655212, \n        0.095095068216299997, \n        0.60609090328199999, \n        0.78930759429899999, \n        0.10813733935399999, \n        0.49211132526399998, \n        0.86344015598299995, \n        0.291800886393, \n        0.64244794845599995, \n        0.70817315578499995, \n        0.30347931384999999, \n        0.53396773338299997, \n        0.78878068924, \n        0.47817057371100002, \n        0.65472316741900005, \n        0.58488130569499996, \n        0.49064183235199998, \n        0.55485343933099995, \n        0.67141914367699995, \n        0.53071069717399999, \n        0.66499716043500001, \n        0.52490049600599997, \n        0.54634600877799999, \n        0.56214016675900003, \n        0.62040358781799998, \n        0.067096233367899993, \n        0.20525905489900001, \n        0.97609615325900001, \n        0.055628694593899998, \n        0.346800237894, \n        0.93596529960599995, \n        0.11978282034399999, \n        0.35988631844500002, \n        0.92494869232200005, \n        0.13056357204899999, \n        0.21213296055799999, \n        0.96816766262099996, \n        0.31500586867300001, \n        0.405115693808, \n        0.857932925224, \n        0.32416710257499998, \n        0.25868088007000001, \n        0.90961331129099998, \n        0.501749455929, \n        0.43507862091100002, \n        0.74722826480899995, \n        0.50887829065300005, \n        0.29472005367300003, \n        0.80844187736499995, \n        0.55738162994399998, \n        0.44989305734599999, \n        0.697365343571, \n        0.565292298794, \n        0.30490192771000002, \n        0.76607859134699996, \n        0.082842379808399993, \n        -0.118140339851, \n        0.98923015594499997, \n        0.0747801065445, \n        0.042958438396500001, \n        0.99597126245500001, \n        0.139327913523, \n        0.0516519546509, \n        0.98859345912899999, \n        0.14399650692900001, \n        -0.11426454782500001, \n        0.98265224695200004, \n        0.329026639462, \n        0.097681820392599997, \n        0.93893343210199998, \n        0.32730713486700003, \n        -0.069989472627599997, \n        0.94200253486600005, \n        0.50910222530399996, \n        0.13928097486499999, \n        0.84900653362300005, \n        0.499234199524, \n        -0.025987595319700001, \n        0.86572849750500003, \n        0.56515932083099996, \n        0.154362350702, \n        0.81003928184499996, \n        0.55033779144299999, \n        -0.015904426574699999, \n        0.83442896604500005, \n        0.084419503807999993, \n        -0.43415787816000001, \n        0.896536231041, \n        0.084958337247399998, \n        -0.284702986479, \n        0.95452761650100004, \n        0.143960520625, \n        -0.27788707613899999, \n        0.94944715499900001, \n        0.13633282482600001, \n        -0.43108183145500001, \n        0.89161568880099995, \n        0.31507885456099999, \n        -0.23831099271799999, \n        0.91832965612399997, \n        0.29156494140599998, \n        -0.394438803196, \n        0.87109285592999997, \n        0.47540742158900001, \n        -0.191170275211, \n        0.85839277505900002, \n        0.436615109444, \n        -0.34978538751600002, \n        0.82850080728499997, \n        0.52641701698300003, \n        -0.171741098166, \n        0.83233749866499995, \n        0.47680699825299999, \n        -0.33664929866799997, \n        0.81161487102499996, \n        0.071156002581099997, \n        -0.57570713758500003, \n        0.81418305635499999, \n        0.076369732618300004, \n        -0.54501843452499998, \n        0.83457684516899999, \n        0.122514002025, \n        -0.53530532121700003, \n        0.83536463975899999, \n        0.11115442961499999, \n        -0.568285346031, \n        0.81491887569400001, \n        0.25693938136099997, \n        -0.50766271352799996, \n        0.82198375463499995, \n        0.25181195139899998, \n        -0.53658998012500003, \n        0.80502080917399998, \n        0.38817477226300001, \n        -0.46046888828299998, \n        0.79792594909699999, \n        0.34948843717599998, \n        -0.49980205297500002, \n        0.79211872816100004, \n        0.43317717313800003, \n        -0.42522558569899999, \n        0.79431509971600001, \n        0.40665817260699999, \n        -0.46969211101500002, \n        0.78320848941800003, \n        0.52879124879799999, \n        0.243836343288, \n        -0.81260055303599998, \n        0.55177932977699995, \n        0.31616750359500001, \n        -0.77134501934099997, \n        0.51761466264699996, \n        0.34376114606899999, \n        -0.78313344717, \n        0.49973905086499998, \n        0.26793706417099999, \n        -0.82332634925799997, \n        0.48832148313500001, \n        0.28960356116300001, \n        -0.82284152507800001, \n        0.51132655143700001, \n        0.36572259664500001, \n        -0.77729624509799999, \n        0.54560619592699999, \n        0.56262308359099999, \n        -0.62061661481899999, \n        0.55282199382800001, \n        0.557106733322, \n        -0.61920595169100001, \n        0.585849046707, \n        0.53173542022700004, \n        -0.61109340190899997, \n        0.567086696625, \n        0.72706139087699995, \n        -0.38625136017799999, \n        0.54179239273099999, \n        0.74427318573000001, \n        -0.389762282372, \n        0.53510737419099996, \n        0.74868184328099996, \n        -0.39055305719400002, \n        0.51970303058599998, \n        0.79818296432500002, \n        -0.30366030335400002, \n        0.52384978532799997, \n        0.79308342933700005, \n        -0.30983340740199999, \n        0.54977291822399998, \n        0.777255296707, \n        -0.304990887642, \n        0.63790827989599996, \n        0.19395840168, \n        -0.74488204717600004, \n        0.66116130352000002, \n        0.26206186413799998, \n        -0.70255672931699997, \n        0.60315984487499996, \n        0.289288640022, \n        -0.74290466308600001, \n        0.58095353841800002, \n        0.216935515404, \n        -0.78411018848400005, \n        0.63239604234699998, \n        0.50399982929200005, \n        -0.58775448799100005, \n        0.68672955036200001, \n        0.475358456373, \n        -0.549394071102, \n        0.65257287025499999, \n        0.67699348926500003, \n        -0.33944642543800002, \n        0.60458534955999998, \n        0.70503205060999996, \n        -0.36986726522399999, \n        0.58118844032299999, \n        0.75909876823400002, \n        -0.29220774769800001, \n        0.62880009412799998, \n        0.73128914833100001, \n        -0.26310250163100002, \n        0.75773912668200005, \n        0.14605487883099999, \n        -0.63552808761599999, \n        0.78157097101200002, \n        0.207373380661, \n        -0.58782643079800001, \n        0.72184896469100002, \n        0.23637261986700001, \n        -0.64996767044100001, \n        0.69487816095400001, \n        0.17171314358699999, \n        -0.69789326190900003, \n        0.749337613583, \n        0.43949618935599999, \n        -0.49470457434699999, \n        0.80549967289000002, \n        0.405243575573, \n        -0.43167561292599999, \n        0.76713228225700003, \n        0.597019672394, \n        -0.233392506838, \n        0.71118420362500001, \n        0.63895100355099999, \n        -0.29215675592399998, \n        0.68486714363099999, \n        0.69436931610099994, \n        -0.21955367922800001, \n        0.74037837982200005, \n        0.65208804607399995, \n        -0.161295294762, \n        0.86130785942099997, \n        0.097070276737200006, \n        -0.49811851978299998, \n        0.88265240192399996, \n        0.15161620080499999, \n        -0.44422280788399998, \n        0.83456695079800003, \n        0.18130323290799999, \n        -0.51963698863999996, \n        0.80717915296599996, \n        0.12605594098600001, \n        -0.57616597414000004, \n        0.85767996311200001, \n        0.36733800172800002, \n        -0.35894954204599999, \n        0.89911645650899996, \n        0.333549231291, \n        -0.282365709543, \n        0.85305732488599995, \n        0.51296401023899996, \n        -0.092502385377899995, \n        0.81409013271300001, \n        0.55585712194400005, \n        -0.16636274755, \n        0.78726923465700005, \n        0.60857319831800005, \n        -0.096137762069699997, \n        0.82332426309600004, \n        0.56652587652200004, \n        -0.024103939533199999, \n        0.93877738714199999, \n        0.044973418116600002, \n        -0.34069007635100002, \n        0.95487862825400005, \n        0.0938416495919, \n        -0.28070721030200002, \n        0.92233741283399995, \n        0.124557368457, \n        -0.36493077874199997, \n        0.89911139011399999, \n        0.077922761440299998, \n        -0.43002611398700002, \n        0.93415385484699998, \n        0.295669674873, \n        -0.19832408428199999, \n        0.95792669057799995, \n        0.26257568597800002, \n        -0.11325479298799999, \n        0.89933735132199999, \n        0.43106579780600002, \n        0.069072425365399995, \n        0.88082093000399997, \n        0.47261828184100002, \n        -0.0135299116373, \n        0.85135984420800004, \n        0.52100461721400004, \n        0.0560055971146, \n        0.86532968282699996, \n        0.48230433464099998, \n        0.13409851491499999, \n        0.98489850759499997, \n        -0.010660678148300001, \n        -0.171050339937, \n        0.99350094795199995, \n        0.033788491040500003, \n        -0.105878025293, \n        0.97839045524599999, \n        0.065477736294299996, \n        -0.194581240416, \n        0.96302515268300004, \n        0.0260355249047, \n        -0.26702335476900002, \n        0.97366291284600004, \n        0.22543391585399999, \n        -0.0236044675112, \n        0.97876942157699998, \n        0.192943736911, \n        0.064651176333400007, \n        0.90442281961399995, \n        0.35360518097900001, \n        0.23744127154399999, \n        0.90643322467800003, \n        0.392896294594, \n        0.15299379825600001, \n        0.87134784460100001, \n        0.43716394901299999, \n        0.22144311666499999, \n        0.86512070894199999, \n        0.40271437168099999, \n        0.297966957092, \n        0.99726575613000001, \n        -0.069559589028399996, \n        0.0043327026069200003, \n        0.99660795927000001, \n        -0.0287599172443, \n        0.073090925812700006, \n        0.99954801797899995, \n        0.0040848557837300003, \n        -0.016799425706300001, \n        0.99477654695499995, \n        -0.029429610818599999, \n        -0.0946054160595, \n        0.97517651319499998, \n        0.15625980496399999, \n        0.15494918823199999, \n        0.96219640970200004, \n        0.123463712633, \n        0.241518050432, \n        0.87281936407100003, \n        0.27898371219599999, \n        0.399687290192, \n        0.89261138439200005, \n        0.31719318032299998, \n        0.31942048668900003, \n        0.85048812627799997, \n        0.359026551247, \n        0.38362312316899999, \n        0.82905459404000004, \n        0.32660138607, \n        0.45320612192199999, \n        0.97431272268299995, \n        -0.13141830265500001, \n        0.18121926486500001, \n        0.96303808689100001, \n        -0.094651006162199999, \n        0.25098818540599999, \n        0.98463958501799997, \n        -0.059965483844299998, \n        0.16212502121899999, \n        0.99247425794599997, \n        -0.087876453995700002, \n        0.081664234399800001, \n        0.94025301933299998, \n        0.085544757545000003, \n        0.328636735678, \n        0.91067695617699995, \n        0.050557747483299997, \n        0.40927737951299997, \n        0.81292247772199999, \n        0.20123621821400001, \n        0.54594612121599995, \n        0.84618437290199999, \n        0.241823971272, \n        0.474224805832, \n        0.79923254251499998, \n        0.28354436159099999, \n        0.52936309575999996, \n        0.76837587356600001, \n        0.24754722416399999, \n        0.589673876762, \n        0.91311019659000003, \n        -0.19593681395099999, \n        0.35669928789100003, \n        0.89042109251000001, \n        -0.16540303826300001, \n        0.42330613732299999, \n        0.93228745460499995, \n        -0.127718418837, \n        0.337528049946, \n        0.95422577858000002, \n        -0.14867909252600001, \n        0.25834795832599999, \n        0.87130779027899996, \n        0.0081400275230399995, \n        0.49005296826400002, \n        0.826945245266, \n        -0.031836003065100003, \n        0.56084156036400001, \n        0.73407024145099997, \n        0.109900772572, \n        0.66967070102699999, \n        0.77641248702999999, \n        0.15871106088199999, \n        0.60941791534400003, \n        0.73107016086599996, \n        0.202367872, \n        0.65113735199, \n        0.69515901804000002, \n        0.15348064899399999, \n        0.70184999704399997, \n        0.80830681323999998, \n        -0.262273788452, \n        0.52654397487600002, \n        0.77460902929300002, \n        -0.242669716477, \n        0.58351475000399999, \n        0.83947741985299995, \n        -0.200645402074, \n        0.50439566373800004, \n        0.87623637914700003, \n        -0.21096029877700001, \n        0.43255135417000001, \n        0.77041822671899995, \n        -0.083710134029400002, \n        0.63154125213599999, \n        0.71307361125900004, \n        -0.132130086422, \n        0.68808615207699997, \n        0.64341467618899995, \n        -0.0103818774223, \n        0.76505291461900005, \n        0.691902041435, \n        0.055261909961700002, \n        0.71945476531999997, \n        0.65805429220199996, \n        0.101702272892, \n        0.74566578865099997, \n        0.61813831329299995, \n        0.026048630476, \n        0.78525280952499998, \n        0.65380752086600002, \n        -0.32806491851800001, \n        0.68140017986300006, \n        0.61176824569699995, \n        -0.32709521055200003, \n        0.71982258558300005, \n        0.70207893848400005, \n        -0.27979052066799998, \n        0.65436935424800002, \n        0.75260370969799995, \n        -0.27284458279599999, \n        0.59878218173999997, \n        0.63884907960899995, \n        -0.19998359680200001, \n        0.74247872829399997, \n        0.57038968801500001, \n        -0.26000747084600001, \n        0.77874779701200003, \n        0.54283010959599998, \n        -0.17903590202299999, \n        0.82016927003899998, \n        0.59773945808399997, \n        -0.085608124733000002, \n        0.79672831296900004, \n        0.58721369504900001, \n        -0.038080662488899998, \n        0.80816292762800002, \n        0.53882730007199997, \n        -0.15760737657500001, \n        0.82717615365999997, \n        0.53318393230399996, \n        -0.33976936340300001, \n        0.77438211441000004, \n        0.50044685602200001, \n        -0.33668929338499998, \n        0.79723912477500003, \n        0.54115855693799997, \n        -0.34447598457299999, \n        0.76673340797400003, \n        0.59283792972600002, \n        -0.316896289587, \n        0.73994350433300005, \n        0.49990400672000002, \n        -0.33012127876300001, \n        0.80032026767700004, \n        0.49104166030899998, \n        -0.33626246452300002, \n        0.803245425224, \n        0.50720483064699995, \n        -0.32874271273599998, \n        0.79628443717999997, \n        0.51194441318499995, \n        -0.26217183470700001, \n        0.817664027214, \n        0.53836137056400002, \n        -0.217577278614, \n        0.81377118825899997, \n        0.51802051067400001, \n        -0.28092113137199998, \n        0.80754804611200004, \n        0.60023969411800004, \n        0.212951630354, \n        -0.77055823802900003, \n        0.61921793222400001, \n        0.28548878431300001, \n        -0.73106914758700003, \n        0.58549612760500003, \n        0.31385225057600002, \n        -0.74705237150199999, \n        0.57272100448600005, \n        0.23868289589899999, \n        -0.78384828567499998, \n        0.56108355522200004, \n        0.26168793439900001, \n        -0.78492087125800003, \n        0.57745957374599999, \n        0.33319741487499999, \n        -0.74492698907900001, \n        0.59791642427400005, \n        0.52292603254299996, \n        -0.60699266195299995, \n        0.60386961698499997, \n        0.52849638462100001, \n        -0.59617888927499996, \n        0.63846915960299999, \n        0.50519341230399994, \n        -0.58011478185700005, \n        0.60069054365200003, \n        0.70909386873199998, \n        -0.36844569444699998, \n        0.57627594470999999, \n        0.72163307666800003, \n        -0.38281536102300001, \n        0.57301193475699996, \n        0.71623063087500005, \n        -0.39757692813899997, \n        0.55079066753399997, \n        0.77382028102900002, \n        -0.31181481480599998, \n        0.556226015091, \n        0.77171087265000005, \n        -0.30736315250399998, \n        0.57820236682899995, \n        0.761658906937, \n        -0.29146897792799997, \n        0.70821106433900005, \n        0.15568897128100001, \n        -0.68818116188, \n        0.72986257076299998, \n        0.224205255508, \n        -0.64531308412599997, \n        0.673406600952, \n        0.255328863859, \n        -0.693344593048, \n        0.65345460176500003, \n        0.18197104334799999, \n        -0.73435616493199996, \n        0.69168210029599997, \n        0.47437268495599999, \n        -0.54400569200500004, \n        0.74923765659300001, \n        0.43895441293699999, \n        -0.49533635377899998, \n        0.70504701137500003, \n        0.644450306892, \n        -0.294936954975, \n        0.64862209558499995, \n        0.68193006515499999, \n        -0.33712923526799998, \n        0.62222605943700005, \n        0.73775720596299998, \n        -0.26066324114799999, \n        0.67857903242100004, \n        0.70018553733800004, \n        -0.22060635685900001, \n        0.80973041057600004, \n        0.10711461305599999, \n        -0.57641887664799996, \n        0.83154481649400003, \n        0.16915389895399999, \n        -0.52850437164300001, \n        0.78242665529300004, \n        0.19720342755299999, \n        -0.59018278121900003, \n        0.75776910781899998, \n        0.132126092911, \n        -0.63853412866600001, \n        0.80386918783200001, \n        0.40200653672199999, \n        -0.43769976496700003, \n        0.850275158882, \n        0.368756651878, \n        -0.37476283311800002, \n        0.80477690696699999, \n        0.56374073028600002, \n        -0.18419034779099999, \n        0.75811499357199996, \n        0.60465228557600004, \n        -0.24300959706299999, \n        0.73100525140799999, \n        0.66001760959599998, \n        -0.17147716879800001, \n        0.77628749609000003, \n        0.61948788166000002, \n        -0.114055544138, \n        0.89313417673100004, \n        0.062056526541699998, \n        -0.444809615612, \n        0.91232436895400004, \n        0.117869406939, \n        -0.39136680960699999, \n        0.87438988685600005, \n        0.14460431039300001, \n        -0.46252328157400002, \n        0.84985625743899995, \n        0.088392496109000004, \n        -0.51896625757199999, \n        0.89184463024100002, \n        0.33333131670999999, \n        -0.30479398369799998, \n        0.92409288883200003, \n        0.30237066745800001, \n        -0.23242180049399999, \n        0.87271142005900004, \n        0.48509049415599997, \n        -0.0495710968971, \n        0.842466533184, \n        0.524794518948, \n        -0.119318976998, \n        0.81470990181000003, \n        0.57719665765799999, \n        -0.0498821735382, \n        0.84163677692399996, \n        0.539217114449, \n        0.0169956684113, \n        0.95378184318500003, \n        0.017004474997500001, \n        -0.29901170730600002, \n        0.96806257963200004, \n        0.067499212920700005, \n        -0.24019744992299999, \n        0.94323116540899998, \n        0.093986414372900007, \n        -0.31761106848699999, \n        0.92280024290100005, \n        0.045834258198699997, \n        -0.38175171613699999, \n        0.95046091079700001, \n        0.26857987046199999, \n        -0.15455129742599999, \n        0.96761369705199995, \n        0.23938070237600001, \n        -0.076260462403300006, \n        0.90568238496800002, \n        0.41132378578200002, \n        0.099737599492099996, \n        0.89311230182599999, \n        0.44853553175900002, \n        0.023717135191000001, \n        0.86254847049700001, \n        0.49689990282099999, \n        0.092180371284500004, \n        0.870770990849, \n        0.46326309442500002, \n        0.16291578113999999, \n        0.988873362541, \n        -0.029953055083800001, \n        -0.14362460374800001, \n        0.99635708332100004, \n        0.016185611486399999, \n        -0.080046221613900001, \n        0.98565328121200002, \n        0.043257735669599999, \n        -0.16128426790200001, \n        0.97238129377399996, \n        0.0019812136888499999, \n        -0.23209089040799999, \n        0.97803360223799995, \n        0.206912502646, \n        0.0058179795742000001, \n        0.97978609800299998, \n        0.17852407693899999, \n        0.086854070424999999, \n        0.90412497520400004, \n        0.34241157770199998, \n        0.25437921285600001, \n        0.90870654582999999, \n        0.37740397453300001, \n        0.176678642631, \n        0.87283134460400003, \n        0.42215448617899998, \n        0.24361240863799999, \n        0.864508867264, \n        0.392350524664, \n        0.313179403543, \n        0.99631106853499996, \n        -0.080155290663199999, \n        0.0183271635324, \n        0.99531137943299997, \n        -0.037910148501400003, \n        0.085527971386900006, \n        0.99965304136300004, \n        -0.0092599531635600002, \n        0.0020361954812000002, \n        0.99596220254900003, \n        -0.044551741331800003, \n        -0.0739640593529, \n        0.974195718765, \n        0.14614784717599999, \n        0.17023557424499999, \n        0.96059691906, \n        0.116940669715, \n        0.25094717741, \n        0.87144279479999998, \n        0.27494093775700001, \n        0.40545150637600003, \n        0.89126777648900002, \n        0.30974841117899998, \n        0.33029222488400001, \n        0.84901857376099998, \n        0.35234653949700001, \n        0.39295631647099999, \n        0.82787096500400004, \n        0.32330933213200003, \n        0.45770773291599998, \n        0.97311711311299998, \n        -0.13472430408, \n        0.185170069337, \n        0.96205842495000005, \n        -0.096978113055200002, \n        0.25384134054200003, \n        0.98309206962600004, \n        -0.065451331436599994, \n        0.169238895178, \n        0.99110263586000003, \n        -0.094731487333800005, \n        0.090210162103200001, \n        0.93894040584600003, \n        0.082315042614899997, \n        0.33318239450499998, \n        0.91025704145399999, \n        0.049917340278600002, \n        0.41028809547400003, \n        0.81330031156500004, \n        0.202039971948, \n        0.54508638381999996, \n        0.84550660848600001, \n        0.24048739671700001, \n        0.47610920667599999, \n        0.798902750015, \n        0.282858550549, \n        0.53022783994699996, \n        0.76909273862799998, \n        0.24881982803300001, \n        0.58820134401299995, \n        0.91401588916800003, \n        -0.19443425536200001, \n        0.35519769787799998, \n        0.89168971776999995, \n        -0.16346365213399999, \n        0.42138475179700002, \n        0.93234634399399996, \n        -0.12752747535699999, \n        0.337437063456, \n        0.95397078990899997, \n        -0.14924092590800001, \n        0.25896579027200001, \n        0.87206959724400002, \n        0.0094690173864399995, \n        0.488673388958, \n        0.828786671162, \n        -0.029169470071799999, \n        0.55826234817499998, \n        0.73641055822400003, \n        0.113091826439, \n        0.66656267643, \n        0.77784711122500005, \n        0.16101336479200001, \n        0.60697966814000004, \n        0.732832610607, \n        0.20497007668, \n        0.64833617210399996, \n        0.69765323400500001, \n        0.15682563185699999, \n        0.69862794876099998, \n        0.811079025269, \n        -0.25898981094399998, \n        0.52389973402000001, \n        0.77749818563499995, \n        -0.23940569162399999, \n        0.58101350069000002, \n        0.84174674749400002, \n        -0.19764529168600001, \n        0.50179243087799996, \n        0.87821573018999999, \n        -0.208082139492, \n        0.42992413044, \n        0.77310746908200001, \n        -0.080427408218399998, \n        0.62867408990899998, \n        0.71607869863499995, \n        -0.12876510620100001, \n        0.68559992313399998, \n        0.64640772342700004, \n        -0.0069721341133099999, \n        0.76256459951400002, \n        0.69476711749999998, \n        0.058817237615600003, \n        0.71640455722800001, \n        0.66092938184700001, \n        0.105248212814, \n        0.74262464046499999, \n        0.62105840444600002, \n        0.029408603906599998, \n        0.782826542854, \n        0.65630376338999996, \n        -0.32572361826899998, \n        0.68012154102300004, \n        0.61404448747600004, \n        -0.32499381899800001, \n        0.71883487701399995, \n        0.70494109392199999, \n        -0.27685439586600002, \n        0.65253788232800003, \n        0.75552779436100004, \n        -0.26958757638899999, \n        0.59657078981400002, \n        0.64169514179200005, \n        -0.197122484446, \n        0.74078726768500003, \n        0.57253408431999997, \n        -0.25798210501699997, \n        0.77784705162000001, \n        0.54485344886800002, \n        -0.17701658606500001, \n        0.81926560401899995, \n        0.60043370723699996, \n        -0.082744538783999996, \n        0.795002937317, \n        0.58969390392300003, \n        -0.0353395938873, \n        0.80647838115699999, \n        0.54069566726700002, \n        -0.155726969242, \n        0.82631337642699998, \n        0.53450250625600004, \n        -0.33859768509900001, \n        0.77398622035999998, \n        0.50164347887000005, \n        -0.33556360006300001, \n        0.79696124792099998, \n        0.54265511035900005, \n        -0.34313040971800002, \n        0.76627856493000002, \n        0.59451842308000002, \n        -0.31526875495899997, \n        0.73928964137999997, \n        0.50131756067300004, \n        -0.32886469364199999, \n        0.79995334148399999, \n        0.49216234683999999, \n        -0.33522972464599998, \n        0.80299043655400004, \n        0.50831747055099996, \n        -0.327684998512, \n        0.79601061344099999, \n        0.51328897476199997, \n        -0.260882198811, \n        0.81723409891099996, \n        0.53959000110599997, \n        -0.21632462739899999, \n        0.81329137086900005, \n        0.51912820339200005, \n        -0.279802471399, \n        0.807225227356, \n        -0.28454104065899999, \n        0.544141590595, \n        -0.78888672590300002, \n        -0.100448660553, \n        0.38377708196600002, \n        -0.917616784573, \n        -0.010357571765799999, \n        0.411521732807, \n        -0.91100984811800001, \n        -0.177211478353, \n        0.57278108596800004, \n        -0.79994642734499999, \n        -0.094598732888699993, \n        0.28804600238799999, \n        -0.95261526107799999, \n        0.016428237780899999, \n        0.34715914726300001, \n        -0.93733990192399996, \n        0.33038023114199999, \n        0.459225296974, \n        -0.82423210144000003, \n        0.231968939304, \n        0.50568830966900002, \n        -0.83058214187599999, \n        0.077522382140200005, \n        0.65746939182300002, \n        -0.74907970428500004, \n        0.45575734972999998, \n        0.53705084323899999, \n        -0.70940673351299999, \n        0.33000630140300002, \n        0.68158310651800003, \n        -0.65263897180599995, \n        0.58752858638799998, \n        0.50272518396400001, \n        -0.63361960649500004, \n        0.62789732217799998, \n        0.50124853849399997, \n        -0.59488731622699997, \n        0.53155845403699997, \n        0.51486140489599996, \n        -0.672131001949, \n        0.40950432419799998, \n        0.67849206924399996, \n        -0.60938596725500005, \n        -0.49221530556699999, \n        0.79879575967799998, \n        -0.345029771328, \n        -0.47641709446899999, \n        0.66776329278900004, \n        -0.57141536474200005, \n        -0.37380307912799998, \n        0.72125911712599999, \n        -0.58262598514599995, \n        -0.44332608580600003, \n        0.82976329326599996, \n        -0.33815884590099998, \n        -0.099632397294000002, \n        0.83084595203400002, \n        -0.54695975780499995, \n        -0.17688257992299999, \n        0.943921923637, \n        -0.27770614624000001, \n        0.228499993682, \n        0.86039811372800001, \n        -0.45486265420900002, \n        0.155287101865, \n        0.96904927492100001, \n        -0.19032853841799999, \n        0.33914157748200002, \n        0.84930348396300004, \n        -0.40381002426099999, \n        0.27001047134400002, \n        0.95175957679699996, \n        -0.14368453621899999, \n        -0.42469373345400002, \n        0.90425884723700001, \n        -0.036694318056100003, \n        -0.42646220326399997, \n        0.888479590416, \n        -0.16772231459600001, \n        -0.39123082160900002, \n        0.91252237558399996, \n        -0.116779744625, \n        -0.36273944377900003, \n        0.93141472339599996, \n        -0.0167960822582, \n        -0.16323369741400001, \n        0.98571419715899999, \n        -0.033440560102500003, \n        -0.137402504683, \n        0.98888033628500005, \n        0.051297724247, \n        0.100375682116, \n        0.99442666768999999, \n        0.020894587039899999, \n        0.085450492799300004, \n        0.98975104093599997, \n        0.111749231815, \n        0.181353226304, \n        0.98214137554199998, \n        0.043658018112199999, \n        0.16450032591800001, \n        0.97814452648200001, \n        0.124776273966, \n        -0.273248434067, \n        0.93581837415699998, \n        0.22130411863300001, \n        -0.33717915415799998, \n        0.940755844116, \n        0.0261791050434, \n        -0.28221976757, \n        0.95496356487300005, \n        0.088271647691699998, \n        -0.21664056181899999, \n        0.94463860988600001, \n        0.24519491195699999, \n        -0.078120201826099994, \n        0.98316496610600002, \n        0.16334062814700001, \n        -0.037346519529799997, \n        0.95565032958999996, \n        0.29109105467800001, \n        0.11073954403400001, \n        0.97159951925300003, \n        0.20767325162899999, \n        0.14757242798799999, \n        0.93377196788799999, \n        0.325098872185, \n        0.14980974793400001, \n        0.96080386638600002, \n        0.23196592927000001, \n        0.19916884601099999, \n        0.92241036891899997, \n        0.32998132705700001, \n        -0.21740832924799999, \n        0.86377716064499999, \n        0.45389294624299997, \n        -0.246724486351, \n        0.91869246959700002, \n        0.307452172041, \n        -0.18669359386000001, \n        0.92300623655299996, \n        0.335560619831, \n        -0.15781733393700001, \n        0.86636239290200001, \n        0.47318810224500002, \n        0.0019519404741, \n        0.92726290225999997, \n        0.373597145081, \n        0.045951917767500003, \n        0.86106890439999995, \n        0.50581115484200001, \n        0.18954774737399999, \n        0.89698606729499997, \n        0.398603618145, \n        0.23525393009199999, \n        0.82188177108799998, \n        0.518229484558, \n        0.242623716593, \n        0.87640029192000002, \n        0.41527348756799998, \n        0.29531779885300002, \n        0.80667138099699998, \n        0.51133656501799996, \n        -0.10499828308799999, \n        0.68683958053600003, \n        0.718764901161, \n        -0.165718942881, \n        0.77763813734099996, \n        0.60598093271300002, \n        -0.096837952732999999, \n        0.76318949460999996, \n        0.63840419053999997, \n        -0.036943141371, \n        0.68204003572500005, \n        0.72996753454200003, \n        0.097254931926699997, \n        0.74533390998799998, \n        0.65910196304299995, \n        0.14940387010600001, \n        0.66888898611100001, \n        0.727779209614, \n        0.28614157438299997, \n        0.70483207702600004, \n        0.64863801002499999, \n        0.32926353812199999, \n        0.63337475061399995, \n        0.69987064600000004, \n        0.34368219971699998, \n        0.67456018924700001, \n        0.65287685394299999, \n        0.37406998872800001, \n        0.618849098682, \n        0.69028550386400001, \n        -0.027249870821799999, \n        0.54332989454299996, \n        0.83871668577199998, \n        -0.057961091399199999, \n        0.63692158460600001, \n        0.76835387945199995, \n        0.0039387401193400002, \n        0.61951982974999997, \n        0.78458607196800001, \n        0.034452896565200002, \n        0.53041678667100001, \n        0.84668022394200004, \n        0.18337960541199999, \n        0.61106449365600002, \n        0.76965552568399997, \n        0.204100355506, \n        0.53342586755800003, \n        0.82048517465600002, \n        0.34152185916900002, \n        0.59827828407299999, \n        0.72444510459900002, \n        0.35297340154599999, \n        0.52738565206499999, \n        0.77244466543199997, \n        0.392604410648, \n        0.59223812818499999, \n        0.70321553945500004, \n        0.396044373512, \n        0.52983593940700002, \n        0.74954569339800003, \n        0.017590586096000001, \n        0.35447496175799997, \n        0.93457669019699996, \n        0.0044186655432000002, \n        0.46342504024499998, \n        0.88578450679800003, \n        0.061590094119299998, \n        0.43472969532, \n        0.89811670780200004, \n        0.076969750225499997, \n        0.33057710528399997, \n        0.94031393527999996, \n        0.220064520836, \n        0.43576139211699999, \n        0.87239843606900003, \n        0.236205652356, \n        0.345342725515, \n        0.90793275833099996, \n        0.36130586266499998, \n        0.44312512874600002, \n        0.82005727291099995, \n        0.36661425232900002, \n        0.35406410694099999, \n        0.86001729965200002, \n        0.40031808614699999, \n        0.44781273603400001, \n        0.79912763834, \n        0.40180763602300001, \n        0.35924550890899998, \n        0.84195566177400005, \n        0.0065608480945199997, \n        0.12694263458300001, \n        0.99158346652999996, \n        0.045671906322200001, \n        0.27418720722200002, \n        0.96027696132700002, \n        0.083989627659300001, \n        0.221996903419, \n        0.97111260890999995, \n        0.055835735052799998, \n        0.084594637155500002, \n        0.99454665184000002, \n        0.23944067955000001, \n        0.23981854319599999, \n        0.94050586223599997, \n        0.23574779927699999, \n        0.134264498949, \n        0.96218144893599999, \n        0.367663919926, \n        0.26695737242700002, \n        0.89047908782999996, \n        0.362243562937, \n        0.167570382357, \n        0.91656720638300004, \n        0.40009611844999998, \n        0.27512687444700001, \n        0.87385600805300001, \n        0.38958734273899998, \n        0.17475619912099999, \n        0.90392398834200005, \n        -0.70636665821099998, \n        -0.48997396230700002, \n        0.51026183366800004, \n        -0.099701784551100001, \n        -0.064079195261000005, \n        0.99264824390399997, \n        -0.17587088048499999, \n        -0.21010857820500001, \n        0.96141558885599998, \n        -0.494182735682, \n        -0.44091975688899998, \n        0.74884581565899999, \n        0.19464121758899999, \n        -0.0046374797821000001, \n        0.98055583238599997, \n        0.017576891928899999, \n        -0.23315155506099999, \n        0.97197043895699997, \n        0.345941513777, \n        0.062606781721099999, \n        0.93584227562, \n        0.31293946504600001, \n        -0.062955558300000006, \n        0.94736582040799999, \n        0.37622535228699999, \n        0.078603357076600003, \n        0.92286121845199998, \n        0.33818686008499999, \n        -0.053006172180199998, \n        0.93926328420600003, \n        -0.592913866043, \n        -0.055495202541400002, \n        -0.80297547578799999, \n        -0.48701488971700002, \n        -0.15438139438599999, \n        -0.85928940772999995, \n        -0.865300655365, \n        -0.49571928381899999, \n        -0.070097535848599998, \n        -0.699599683285, \n        -0.13716560602200001, \n        -0.70081532001500002, \n        -0.26013845205300001, \n        -0.44693100452399998, \n        0.85555660724600002, \n        -0.72266471385999997, \n        -0.60858517885200003, \n        0.32676631212200002, \n        0.23840098083, \n        -0.21829807758299999, \n        0.94599533081099996, \n        0.118585176766, \n        -0.39701408147799999, \n        0.90978819131900002, \n        0.29804995656, \n        -0.169468820095, \n        0.93906539678599998, \n        0.19106128811799999, \n        -0.364607840776, \n        0.91101789474499995, \n        -0.55678087472899995, \n        0.13258495926899999, \n        -0.81964147090899997, \n        -0.506403028965, \n        0.082330614328399998, \n        -0.85800576210000001, \n        -0.67193806171399995, \n        0.00198635458946, \n        -0.74019646644600001, \n        -0.61190813779800002, \n        0.10865214467000001, \n        -0.78304457664500005, \n        -0.85702711343799998, \n        -0.51388478279100003, \n        -0.028702825307799999, \n        -0.74299860000600004, \n        -0.624937236309, \n        0.23833300173300001, \n        -0.110903508961, \n        -0.58629786968200004, \n        0.80209171771999999, \n        -0.152847841382, \n        -0.61404347419700001, \n        0.773941159248, \n        0.101791255176, \n        -0.44927623868, \n        0.88723504543300002, \n        0.012730455026000001, \n        -0.53504043817500002, \n        0.84437292814300002, \n        -0.45402386784600002, \n        0.68080329895000002, \n        -0.57425153255500005, \n        -0.36925247311600001, \n        0.66800022125199998, \n        -0.645619034767, \n        -0.40400394797299999, \n        0.70030754804600004, \n        -0.58800238370900004, \n        -0.46269625425299998, \n        0.719193816185, \n        -0.51775264740000004, \n        -0.37851864099499999, \n        0.56067663431199999, \n        -0.73604470491399998, \n        -0.38393503427499998, \n        0.58505535125700003, \n        -0.71393239498100003, \n        -0.378552645445, \n        0.76976341009100002, \n        -0.51337891817100001, \n        -0.39583244919799998, \n        0.82577848434400003, \n        -0.401002854109, \n        -0.43491864204399999, \n        0.83607447147400005, \n        -0.333499312401, \n        -0.34136790037199999, \n        0.92095583677299997, \n        -0.18628972768800001, \n        -0.37644726037999998, \n        0.91604828834499996, \n        -0.136157870293, \n        -0.34557762741999998, \n        0.89911544323000003, \n        -0.26751217246100001, \n        -0.31205272674599999, \n        0.93477666378000002, \n        -0.16796529293099999, \n        -0.32251060008999999, \n        0.94031596183800004, \n        -0.105774044991, \n        -0.353473216295, \n        0.93095779418900004, \n        -0.088150590658199995, \n        -0.61131131649000003, \n        0.63202112913099995, \n        -0.47565132379500003, \n        -0.51121264696099999, \n        0.68854999542200002, \n        -0.51376783847800001, \n        -0.53583616018299995, \n        0.71007251739499999, \n        -0.45614922046700002, \n        -0.61922693252600003, \n        0.66685551404999999, \n        -0.413832962513, \n        -0.50549030303999998, \n        0.81497681140900002, \n        -0.28228974342300001, \n        -0.57391268014899999, \n        0.78073221445100005, \n        -0.24592369794800001, \n        -0.439067393541, \n        0.88935542106599996, \n        -0.12515524029700001, \n        -0.50158250331900001, \n        0.86036109924299997, \n        -0.087125629186599995, \n        -0.41512763500200001, \n        0.90408897399900001, \n        -0.098427444696399996, \n        -0.48181948065800001, \n        0.87418395280799999, \n        -0.0552105307579, \n        -0.73976755142200001, \n        0.471955448389, \n        -0.47895434498799999, \n        -0.69142121076600005, \n        0.54290103912400001, \n        -0.47601521015199999, \n        -0.69096726179099999, \n        0.58802539110200003, \n        -0.41974619030999999, \n        -0.74648255109799999, \n        0.515036404133, \n        -0.42059195041699998, \n        -0.63835519552200004, \n        0.73192596435500001, \n        -0.237030431628, \n        -0.702499806881, \n        0.66577190160800004, \n        -0.25027644634200003, \n        -0.55155241489399998, \n        0.83148086071000005, \n        -0.061848253011700001, \n        -0.60875713825199995, \n        0.79009342193599996, \n        -0.067548900842700002, \n        -0.51365685462999999, \n        0.85750299692200005, \n        -0.0155575275421, \n        -0.57631593942600001, \n        0.81660342216500004, \n        -0.020381420850800001, \n        -0.84316933155100005, \n        0.284228146076, \n        -0.45571535825699999, \n        -0.79341733455700003, \n        0.38097292184800002, \n        -0.47407186031300003, \n        -0.80094707012199995, \n        0.42738291621199997, \n        -0.418598622084, \n        -0.86252248287199995, \n        0.31482088565799998, \n        -0.39539754390699999, \n        -0.77069121599199997, \n        0.58516025543200001, \n        -0.25103518366799998, \n        -0.84342122077899995, \n        0.480117976665, \n        -0.23983955383300001, \n        -0.68561184406300002, \n        0.72196394205100001, \n        -0.090003907680499998, \n        -0.76963651180299997, \n        0.63273984193800004, \n        -0.081831872463200006, \n        -0.63324874639499995, \n        0.77144300937700006, \n        -0.057168185710900002, \n        -0.73929166793800005, \n        0.671952068806, \n        -0.036409318447099999, \n        -0.92754888534500002, \n        0.066304072737700004, \n        -0.366951167583, \n        -0.89491271972700004, \n        0.16206404566800001, \n        -0.41504564881299999, \n        -0.91211652755700001, \n        0.20463320612899999, \n        -0.35435196757300003, \n        -0.94623118639000003, \n        0.10401257127499999, \n        -0.30532476306, \n        -0.90786677598999999, \n        0.36809384822800001, \n        -0.199201822281, \n        -0.94931530952499998, \n        0.27274861931799999, \n        -0.154285401106, \n        -0.84535765647899996, \n        0.53095465898500005, \n        -0.053419545292900002, \n        -0.90253341198000003, \n        0.42981618642800001, \n        -0.0093145221471799995, \n        -0.80941647291200003, \n        0.58626890182500002, \n        -0.0230233371258, \n        -0.88058400154100003, \n        0.47180652618399999, \n        0.036955952644300002, \n        -0.96154457330700005, \n        -0.071782715618600001, \n        -0.26396226882899998, \n        -0.94779974222200003, \n        -0.011153534054799999, \n        -0.31772303581200001, \n        -0.96667701005899997, \n        0.029086612165000001, \n        -0.25314953923200001, \n        -0.97862446308100004, \n        -0.032976642250999999, \n        -0.201504126191, \n        -0.97821253538099995, \n        0.180976331234, \n        -0.098706781864199997, \n        -0.99208235740700002, \n        0.11644082516400001, \n        -0.040137074887800002, \n        -0.93941521644600001, \n        0.33882367610899999, \n        0.0457576662302, \n        -0.96149355173100004, \n        0.25115913152699998, \n        0.10884011536800001, \n        -0.919855117798, \n        0.38145878910999997, \n        0.088044703006700004, \n        -0.94321411848100001, \n        0.28785607218699999, \n        0.16395747661599999, \n        -0.97791665792500004, \n        -0.145019188523, \n        -0.14847214519999999, \n        -0.97090774774599997, \n        -0.096768066287000007, \n        -0.217648252845, \n        -0.98679089546200005, \n        -0.074026048183400001, \n        -0.14198911189999999, \n        -0.98957705497699999, \n        -0.12070055305999999, \n        -0.074596568942099997, \n        -0.99815654754600003, \n        0.049363888800100002, \n        0.0253496393561, \n        -0.99435865879100005, \n        -0.0028578937053700001, \n        0.10314684361199999, \n        -0.96611720323600003, \n        0.18046548962600001, \n        0.18288376927399999, \n        -0.95932728052100003, \n        0.106890723109, \n        0.26011943817099997, \n        -0.94905936717999995, \n        0.200698375702, \n        0.241666018963, \n        -0.93738889694200001, \n        0.13324576616299999, \n        0.32084807753599998, \n        -0.97084277868299995, \n        -0.23713436722799999, \n        0.025061033666100001, \n        -0.98464065790199995, \n        -0.154183417559, \n        -0.0781389996409, \n        -0.98586326837500005, \n        -0.16518810391399999, \n        0.0134971216321, \n        -0.96520841121699996, \n        -0.23455914855000001, \n        0.1129148826, \n        -0.97899234294899995, \n        -0.071111716330099994, \n        0.18950977921500001, \n        -0.94680100679400003, \n        -0.14679367840300001, \n        0.285333812237, \n        -0.93823260068900005, \n        0.0370043218136, \n        0.34314334392500001, \n        -0.90149873495099997, \n        -0.052992895245599997, \n        0.42882251739499999, \n        -0.91231441497800003, \n        0.041698098182699997, \n        0.406620144844, \n        -0.87340319156599999, \n        -0.0406048297882, \n        0.48468059301400002, \n        -0.86709207296400004, \n        -0.428503572941, \n        0.25284761190400001, \n        -0.94916033744799999, \n        -0.28422316908799999, \n        0.13307479023900001, \n        -0.918360590935, \n        -0.32580858469000001, \n        0.22328954935100001, \n        -0.83233356475800002, \n        -0.44283923506700001, \n        0.33243158459700001, \n        -0.88770490884800002, \n        -0.25360840558999997, \n        0.38348317146299998, \n        -0.79823189973800002, \n        -0.378608614206, \n        0.46784266829499999, \n        -0.84549766778900004, \n        -0.16224899887999999, \n        0.50813853740699999, \n        -0.76082015037499995, \n        -0.296649456024, \n        0.57666981220199998, \n        -0.81214070320099996, \n        -0.161842122674, \n        0.56002783775300002, \n        -0.73088425397900003, \n        -0.29812794923800001, \n        0.61345368623700003, \n        -0.57526123523700001, \n        -0.68993461132, \n        0.43870353698699999, \n        -0.76420116424600004, \n        -0.53094762563700004, \n        0.36535963416099998, \n        -0.70121318101899999, \n        -0.57547712326, \n        0.42014408111599999, \n        -0.52920812368400005, \n        -0.70069634914400003, \n        0.47786962985999998, \n        -0.66360259056100002, \n        -0.52663093805299999, \n        0.53074270486800001, \n        -0.50325500965100001, \n        -0.66403144597999997, \n        0.55244213342699999, \n        -0.64534407854099995, \n        -0.45243829488800003, \n        0.61500221490899998, \n        -0.49074676632899999, \n        -0.61493718624100002, \n        0.61677873134600003, \n        -0.61609590053600005, \n        -0.45294818282100002, \n        0.64394050836600003, \n        -0.46228435635600001, \n        -0.62323671579399997, \n        0.63028961420100005, \n        -0.206395670772, \n        -0.86155080795299999, \n        0.46317112445800002, \n        -0.39831468462899999, \n        -0.78137099742899996, \n        0.47979310154900001, \n        -0.34828379750299998, \n        -0.79977440834000002, \n        0.48831951618199998, \n        -0.18286576867099999, \n        -0.86331528425199999, \n        0.46972614526700002, \n        -0.32321935892100001, \n        -0.78094214201000001, \n        0.53390473127399996, \n        -0.17210802435899999, \n        -0.85333722829799996, \n        0.49151855707199998, \n        -0.32578161358800001, \n        -0.74651151895500001, \n        0.57964092493099995, \n        -0.16930885612999999, \n        -0.84103399515199995, \n        0.51321893930399998, \n        -0.30641043186200001, \n        -0.74969953298600001, \n        0.58605390787099998, \n        -0.15227599442, \n        -0.84460592269900003, \n        0.51268815994299999, \n        -0.055476348847199999, \n        -0.89928638935100003, \n        0.43313217163099998, \n        -0.096596233546699994, \n        -0.88926243782000003, \n        0.44640517234799998, \n        -0.080583460629000001, \n        -0.89302629232399999, \n        0.44204753637299998, \n        -0.048666201531900002, \n        -0.89856863021900002, \n        0.435433417559, \n        -0.071412026882199997, \n        -0.89067697525, \n        0.448319554329, \n        -0.046363897621600002, \n        -0.89857959747299998, \n        0.43566238880199998, \n        -0.074451111257099994, \n        -0.88429892063100002, \n        0.46029198169699997, \n        -0.048239231109600003, \n        -0.89783084392500001, \n        0.43700000643699999, \n        -0.072816707193900002, \n        -0.88365912437399996, \n        0.461780548096, \n        -0.050364591181300003, \n        -0.894620776176, \n        0.443298071623, \n        -0.66784930229200001, \n        0.10244807601, \n        -0.73680245876299999, \n        -0.67013657093000001, \n        0.0094592869281800007, \n        -0.74177086353300004, \n        -0.69410133361799997, \n        0.13310980796800001, \n        -0.70703744888300002, \n        -0.65275084972399999, \n        0.18739342689499999, \n        -0.73361837863900003, \n        -0.72916573286099995, \n        -0.19627168774600001, \n        -0.65512609481799999, \n        -0.73753023147600005, \n        0.114896297455, \n        -0.66501414775800005, \n        -0.62349170446400004, \n        0.50207930803300005, \n        -0.59880810975999998, \n        -0.63969874382000003, \n        0.40510264038999999, \n        -0.65274286270100002, \n        -0.56672483682599994, \n        0.40361011028299998, \n        -0.71785616874699998, \n        -0.51491647958800002, \n        0.62716555595400003, \n        -0.58388364314999996, \n        -0.426736116409, \n        0.62264996767000003, \n        -0.65543812513400002, \n        -0.53320497274400003, \n        0.64043164253200002, \n        -0.55221021175399998, \n        -0.50369685888299998, \n        0.676594614983, \n        -0.53656888008100001, \n        -0.48451566696199999, \n        0.68433123826999998, \n        -0.544363558292, \n        -0.38830268382999999, \n        0.68254381418200005, \n        -0.61866909265500003, \n        -0.75160902738599999, \n        0.114969283342, \n        -0.64904701709699997, \n        -0.69757032394399998, \n        0.117786407471, \n        -0.70634168386499996, \n        -0.66348463296899995, \n        0.18080839514700001, \n        -0.72559785842900004, \n        -0.72512292861899996, \n        0.18926382064799999, \n        -0.66164314746899999, \n        -0.566919744015, \n        0.40008816123000002, \n        -0.71967256069200003, \n        -0.63813626766200005, \n        0.411264747381, \n        -0.65041446685799997, \n        -0.41317021846800001, \n        0.60800033807800002, \n        -0.67751234769799995, \n        -0.48972308635700001, \n        0.62615388631799995, \n        -0.60621696710600004, \n        -0.33619043231000001, \n        0.68029755353900001, \n        -0.65082043409300006, \n        -0.41174763441099999, \n        0.69256782531700001, \n        -0.59178626537300005, \n        -0.86094492673900003, \n        0.14061354100699999, \n        -0.48826050758400003, \n        -0.81536674499499995, \n        0.12780641019299999, \n        -0.56412661075600001, \n        -0.79243564605700001, \n        0.21050938963900001, \n        -0.57195127010299995, \n        -0.845928490162, \n        0.22576883435199999, \n        -0.48252525925599998, \n        -0.71598774194699999, \n        0.438498556614, \n        -0.54265707731199997, \n        -0.77329146861999998, \n        0.46829858422300003, \n        -0.42674610018699999, \n        -0.57890009880100002, \n        0.66417336463900001, \n        -0.47238230705299999, \n        -0.62944388389600003, \n        0.70045238733299997, \n        -0.33550268411599998, \n        -0.51537728309599995, \n        0.72188097238500004, \n        -0.46116167306900002, \n        -0.56360679864899998, \n        0.76968854665800002, \n        -0.29887074232100003, \n        -0.91861653327899995, \n        0.16265287995300001, \n        -0.35928347706800001, \n        -0.893506109715, \n        0.152032077312, \n        -0.42181658744799999, \n        -0.88322925567599997, \n        0.24115717411000001, \n        -0.40142875909800002, \n        -0.90893948078200004, \n        0.25062030553800002, \n        -0.33228564262400001, \n        -0.81179684400600005, \n        0.48491355776799999, \n        -0.32440903782800001, \n        -0.83724707364999995, \n        0.49423772096599999, \n        -0.23268473148300001, \n        -0.66294372081800002, \n        0.71626067161600004, \n        -0.21650061011300001, \n        -0.68685150146499996, \n        0.718054175377, \n        -0.10968187451399999, \n        -0.59359472989999995, \n        0.78588962554899999, \n        -0.17151919007300001, \n        -0.617750406265, \n        0.78319144248999994, \n        -0.066263049840900007, \n        -0.95131164789199996, \n        0.17799025773999999, \n        -0.250442355871, \n        -0.93498355150199997, \n        0.17076238989799999, \n        -0.30990639329000003, \n        -0.92839163541799996, \n        0.25894579291300002, \n        -0.26538982987400001, \n        -0.94235438108400005, \n        0.26407626271200002, \n        -0.20403137803099999, \n        -0.85599243640900002, \n        0.49711486697200002, \n        -0.13982275128400001, \n        -0.86545455455800002, \n        0.49700087308899998, \n        -0.0581033378839, \n        -0.70316064357800001, \n        0.71059632301300002, \n        0.0036379396915399999, \n        -0.70934176444999997, \n        0.69741737842600005, \n        0.099194526672400002, \n        -0.63844120502500001, \n        0.76724433898900002, \n        0.0559011399746, \n        -0.64560198783900002, \n        0.74884778261200002, \n        0.14772135019300001, \n        -0.97018200159099999, \n        0.18669259548200001, \n        -0.152605891228, \n        -0.95935720205300001, \n        0.185874834657, \n        -0.21090428531200001, \n        -0.951460599899, \n        0.26780110597599999, \n        -0.149672806263, \n        -0.95880442857699999, \n        0.266720473766, \n        -0.094605043530500005, \n        -0.86971431970599999, \n        0.49287217855499998, \n        0.00839759409428, \n        -0.87158471345900002, \n        0.484877586365, \n        0.068043664097799994, \n        -0.70992356538800006, \n        0.68363952636699998, \n        0.16745442152000001, \n        -0.71023446321499994, \n        0.66585087776200003, \n        0.227167367935, \n        -0.648637056351, \n        0.72800803184499996, \n        0.22061336040499999, \n        -0.64977174997300002, \n        0.70903885364499997, \n        0.272867560387, \n        -0.98292809724800001, \n        0.17968972027300001, \n        -0.030985444784200001, \n        -0.975367367268, \n        0.19108827412099999, \n        -0.107425555587, \n        -0.96408385038400002, \n        0.262229800224, \n        -0.034260354936100003, \n        -0.96757274866099996, \n        0.24864590168, \n        0.037080995738500003, \n        -0.87386208772700003, \n        0.46682500839199997, \n        0.133549645543, \n        -0.87259942293199999, \n        0.44218942522999999, \n        0.20599779486700001, \n        -0.712094962597, \n        0.64112633466699998, \n        0.285086870193, \n        -0.71553593873999999, \n        0.600623607635, \n        0.35588854551299998, \n        -0.65422940254200002, \n        0.67852503061299996, \n        0.33314138650899999, \n        -0.658854007721, \n        0.63643568754199997, \n        0.40032106637999998, \n        -0.97981101274500004, \n        0.15717753768000001, \n        0.121087439358, \n        -0.98279416561099997, \n        0.18090534210199999, \n        0.028019838035100001, \n        -0.96548342704800005, \n        0.23316557705400001, \n        0.113453730941, \n        -0.95792669057799995, \n        0.20796215534199999, \n        0.19627869129200001, \n        -0.86894053220699996, \n        0.40119481086699998, \n        0.28875678777699998, \n        -0.85800385475200003, \n        0.35791286826099999, \n        0.367592960596, \n        -0.71661657094999998, \n        0.54689282178900001, \n        0.43216347694399998, \n        -0.71480804681800003, \n        0.48019996285400002, \n        0.50779366493199996, \n        -0.66372048854800003, \n        0.573971688747, \n        0.47898635268200002, \n        -0.66427034139600005, \n        0.50537931919099999, \n        0.55021178722399999, \n        -0.94686794280999997, \n        0.115902014077, \n        0.29900470375999999, \n        -0.96852445602399995, \n        0.156424760818, \n        0.19206398725500001, \n        -0.94182258844400002, \n        0.18161714076999999, \n        0.28174588084199997, \n        -0.91695404052700002, \n        0.142916828394, \n        0.37170574069000001, \n        -0.84153681993499996, \n        0.298465847969, \n        0.449589192867, \n        -0.81717818975400003, \n        0.23981752991700001, \n        0.52354979515099997, \n        -0.70804911851899999, \n        0.40631431341200003, \n        0.577036738396, \n        -0.69739133119600005, \n        0.32018229365299999, \n        0.640721440315, \n        -0.662494897842, \n        0.42122778296500002, \n        0.61892199516299995, \n        -0.65593588352200005, \n        0.33277145028100003, \n        0.67705750465400005, \n        -0.86883354186999995, \n        0.049182161688799998, \n        0.49204236269000001, \n        -0.91712796688099996, \n        0.111038446426, \n        0.38202562928200001, \n        -0.88114386796999999, \n        0.103467747569, \n        0.460733830929, \n        -0.83420503139500002, \n        0.050456866622000003, \n        0.54859131574599995, \n        -0.78601753711699995, \n        0.16378054022800001, \n        0.59560811519599999, \n        -0.74837100505800003, \n        0.093360334634799994, \n        0.65621781349200003, \n        -0.68141520023299995, \n        0.230787292123, \n        0.69412237405800004, \n        -0.66173416376100003, \n        0.13198012113599999, \n        0.73762124776799998, \n        -0.64617282152199995, \n        0.23227785527700001, \n        0.72657054662700005, \n        -0.63182622194299998, \n        0.132090091705, \n        0.76337647438, \n        -0.73948866128900004, \n        -0.042997837066699997, \n        0.67134422063800003, \n        -0.81321537494700002, \n        0.039829164743400002, \n        0.58007776737200001, \n        -0.77654039859799995, \n        -0.00081399083137499999, \n        0.62958788871799998, \n        -0.709516644478, \n        -0.064463704824400003, \n        0.70130324363700003, \n        -0.70457017421699997, \n        0.0071830153465300001, \n        0.70917278528200001, \n        -0.65712952613800002, \n        -0.067156195640600005, \n        0.75037831068000005, \n        -0.63772243261299999, \n        0.036169677972799998, \n        0.76902377605399996, \n        -0.61144328117400004, \n        -0.064509928226499993, \n        0.78827089071300005, \n        -0.61481928825400001, \n        0.025692224502599999, \n        0.78786700964, \n        -0.59456640481900003, \n        -0.073789834976199994, \n        0.80027627944900004, \n        -0.61008369922600003, \n        -0.081277251243599996, \n        0.78777408599900001, \n        -0.65935486555099998, \n        -0.036450237035799998, \n        0.75054526329000004, \n        -0.63992172479599996, \n        -0.096828460693399995, \n        0.76191985607099999, \n        -0.57491135597200005, \n        -0.090568155050299998, \n        0.81281650066400002, \n        -0.61110740900000005, \n        -0.13029265403699999, \n        0.78036332130399999, \n        -0.58464741706800005, \n        -0.14173218607900001, \n        0.79843282699600004, \n        -0.58662587404300004, \n        -0.13109442591699999, \n        0.79879879951499999, \n        -0.56915611028699997, \n        -0.151988089085, \n        0.80768603086500002, \n        -0.57825034856799995, \n        -0.143034785986, \n        0.80284750461599996, \n        -0.57198125123999999, \n        -0.15583992004399999, \n        0.80495184659999997, \n        0.66102731227900002, \n        -0.50078177452100003, \n        -0.55826139450099999, \n        0.63230502605399996, \n        -0.500868737698, \n        -0.59052258729899998, \n        0.62993276119200003, \n        -0.53104364871999998, \n        -0.56619298458099998, \n        0.65308672189700001, \n        -0.53884422779100005, \n        -0.53152740001700005, \n        0.65265786647799995, \n        -0.54764258861500004, \n        -0.52299296855900002, \n        0.63212710619000001, \n        -0.54128348827399997, \n        -0.55391669273400002, \n        0.53282707929600004, \n        -0.530150830746, \n        -0.65911394357700004, \n        0.53527832031199996, \n        -0.52253419160799996, \n        -0.66319769620900004, \n        0.53214126825300001, \n        -0.49369585514100001, \n        -0.68737637996699996, \n        0.36063104867899998, \n        -0.48253020644200001, \n        -0.79781293869000003, \n        0.369028538465, \n        -0.510038971901, \n        -0.77657842636100005, \n        0.378639638424, \n        -0.51773160695999998, \n        -0.76680034398999997, \n        0.15951682627200001, \n        -0.50855940580400005, \n        -0.84576445817900003, \n        0.160801425576, \n        -0.49757269024799999, \n        -0.85203266143800005, \n        0.15612283349, \n        -0.47269421815899998, \n        -0.86693817377100002, \n        -0.061550106853199997, \n        -0.46575334668200002, \n        -0.88242948055299997, \n        -0.065664067864400003, \n        -0.49506852030800003, \n        -0.86602044105499998, \n        -0.072601467370999997, \n        -0.50148254632900002, \n        -0.86176568269700005, \n        -0.281453967094, \n        -0.50623911619200002, \n        -0.81480187177700003, \n        -0.27768614888199999, \n        -0.49595415592199998, \n        -0.82238459587099999, \n        -0.26821899414099998, \n        -0.46848750114400001, \n        -0.841411828995, \n        -0.40401297807699998, \n        -0.47472259402299999, \n        -0.78154182434099995, \n        -0.41443181037900001, \n        -0.50495046377200004, \n        -0.75674742460300004, \n        -0.42856553196899999, \n        -0.51398271322300004, \n        -0.74266368150700002, \n        -0.45777073502499999, \n        -0.52303099632299999, \n        -0.71852695941900002, \n        -0.451919496059, \n        -0.51875430345499995, \n        -0.72529894113500004, \n        -0.44427078962299998, \n        -0.48018294572800002, \n        -0.75593870878199998, \n        0.686649560928, \n        -0.40515661239599998, \n        -0.60312187671700002, \n        0.65242695808399997, \n        -0.411874562502, \n        -0.63568401336699998, \n        0.64224296808199999, \n        -0.45713293552399997, \n        -0.6147762537, \n        0.67219692468600001, \n        -0.454216778278, \n        -0.58415359258699995, \n        0.53355485200899999, \n        -0.45524346828500001, \n        -0.71236789226499997, \n        0.53906714916200005, \n        -0.412342429161, \n        -0.73401427268999997, \n        0.356325358152, \n        -0.40538555383699998, \n        -0.84148079156900002, \n        0.357456028461, \n        -0.44549942016600003, \n        -0.82045817375200003, \n        0.153717562556, \n        -0.43432277441, \n        -0.88720399141299999, \n        0.15230999886999999, \n        -0.395503520966, \n        -0.90541350841500001, \n        -0.057811141014100002, \n        -0.38738200068500001, \n        -0.91977715492199996, \n        -0.059375762939499997, \n        -0.42912232875799999, \n        -0.90095782280000003, \n        -0.26219481229800001, \n        -0.42771887779200002, \n        -0.86469984054600002, \n        -0.25986850261700001, \n        -0.38528659939799997, \n        -0.88510966301000005, \n        -0.39736399054499999, \n        -0.38618236780199999, \n        -0.83208268880799996, \n        -0.40002217888800001, \n        -0.43204146623599998, \n        -0.80790990591, \n        -0.44001707434699999, \n        -0.43865153193500001, \n        -0.78317642211899996, \n        -0.44000411033600001, \n        -0.38771986961400001, \n        -0.80960845947299998, \n        0.71546089649199995, \n        -0.29903465509400001, \n        -0.63094341754899996, \n        0.67766833305399998, \n        -0.31239360570899999, \n        -0.66526108980200005, \n        0.66550695896099998, \n        -0.36283737421000001, \n        -0.65180212259299997, \n        0.70056742429700003, \n        -0.35097900033000001, \n        -0.62081849575000003, \n        0.54502439498900002, \n        -0.36865466833100002, \n        -0.75262075662600003, \n        0.55336087942099998, \n        -0.32004731893499999, \n        -0.76860791444800003, \n        0.35923549532900001, \n        -0.31699928641300001, \n        -0.87741494178799995, \n        0.35745802521699999, \n        -0.36250549554799999, \n        -0.86035412550000001, \n        0.15164919197599999, \n        -0.35246556997299999, \n        -0.92312914133099999, \n        0.15124532580399999, \n        -0.30710428953199997, \n        -0.93925935029999996, \n        -0.057748354971399997, \n        -0.29701128601999999, \n        -0.95280921459199996, \n        -0.057779651135199998, \n        -0.34435200691200002, \n        -0.93673908710499998, \n        -0.258383959532, \n        -0.338933646679, \n        -0.90429991483700001, \n        -0.259359657764, \n        -0.28978246450400003, \n        -0.920953810215, \n        -0.39908045530300001, \n        -0.28490793705, \n        -0.87118184566500001, \n        -0.39822471141799998, \n        -0.33716416358899998, \n        -0.85272145271300004, \n        -0.44040995836300001, \n        -0.33725917339299999, \n        -0.83167982101399995, \n        -0.44331911206199998, \n        -0.28193587064699999, \n        -0.850515186787, \n        0.74216783046699997, \n        -0.18403540551700001, \n        -0.64398247003599995, \n        0.70272773504300001, \n        -0.20261977613000001, \n        -0.68155413866000003, \n        0.69102525711100005, \n        -0.258133023977, \n        -0.67472028732300005, \n        0.72920972108799997, \n        -0.238988831639, \n        -0.64072853326799994, \n        0.561038553715, \n        -0.27060627937300002, \n        -0.78192377090499998, \n        0.56970089674000002, \n        -0.21585479378700001, \n        -0.79261863231700003, \n        0.36485278606400001, \n        -0.21561682224299999, \n        -0.90542149543799999, \n        0.36207863688500003, \n        -0.26758816838299998, \n        -0.89257645607000002, \n        0.151201322675, \n        -0.25799807906200001, \n        -0.95392382144900001, \n        0.150940418243, \n        -0.205243945122, \n        -0.96668899059299995, \n        -0.059807736426599999, \n        -0.192660808563, \n        -0.97913324832899995, \n        -0.058935195207600002, \n        -0.24686047434799999, \n        -0.96694493293799999, \n        -0.26014241576199998, \n        -0.236922472715, \n        -0.93572938442200004, \n        -0.26246872544299998, \n        -0.180464506149, \n        -0.94759678840600003, \n        -0.40403094887699997, \n        -0.17014262080199999, \n        -0.89844655990599998, \n        -0.40197357535400002, \n        -0.229177802801, \n        -0.88616633415199997, \n        -0.44552740454700002, \n        -0.223311513662, \n        -0.86662220954900004, \n        -0.44895440339999998, \n        -0.16282984614400001, \n        -0.87824976444199998, \n        0.76259660720800004, \n        -0.062538504600500006, \n        -0.64337468147300003, \n        0.72316956520099995, \n        -0.083364814519899993, \n        -0.68518006801599995, \n        0.71401733160000003, \n        -0.14349365234399999, \n        -0.68482512235600002, \n        0.75351536273999997, \n        -0.119927793741, \n        -0.64593291282700005, \n        0.57705974578899999, \n        -0.160152643919, \n        -0.80046832561500003, \n        0.58391565084499997, \n        -0.098974615335500005, \n        -0.80538368225099999, \n        0.37003719806699997, \n        -0.099478244781499997, \n        -0.92334806919099999, \n        0.36771395802500001, \n        -0.158871054649, \n        -0.91593837737999995, \n        0.15082244575000001, \n        -0.148829042912, \n        -0.97698491811800003, \n        0.15012265741799999, \n        -0.087855905294400002, \n        -0.984449625015, \n        -0.062961079180199997, \n        -0.072592616081200004, \n        -0.99506938457500005, \n        -0.061622288078100003, \n        -0.134615361691, \n        -0.98867446184200003, \n        -0.26400724053399999, \n        -0.120344609022, \n        -0.95666801929500001, \n        -0.26612761616699998, \n        -0.056271135807000001, \n        -0.96198040247000005, \n        -0.40814471244799999, \n        -0.041775882244099997, \n        -0.91162967681899998, \n        -0.406808137894, \n        -0.10756552219399999, \n        -0.90682613849600002, \n        -0.45080286264399999, \n        -0.096836209297199993, \n        -0.88701516389799995, \n        -0.45266926288600001, \n        -0.031141906976699999, \n        -0.89079594612099999, \n        0.77336841821699998, \n        0.062499940395400001, \n        -0.63038957119000005, \n        0.73490905761699998, \n        0.043868660926800002, \n        -0.676298737526, \n        0.73026341199900002, \n        -0.020083338022200001, \n        -0.68242883682300004, \n        0.76969450712200005, \n        0.0036065876483900002, \n        -0.63792932033500005, \n        0.58906310796700001, \n        -0.0367524921894, \n        -0.80687630176500003, \n        0.59204316139199997, \n        0.030774176120799999, \n        -0.80494385957699999, \n        0.371927648783, \n        0.032567828893700003, \n        -0.92736494541199999, \n        0.37146383523900001, \n        -0.034788906574200001, \n        -0.92746984958599998, \n        0.14935488998900001, \n        -0.023228496313099999, \n        -0.98820543289200002, \n        0.14776237309000001, \n        0.046331167221099999, \n        -0.98763167858099998, \n        -0.066224396228799998, \n        0.063930064439799997, \n        -0.99545133113899997, \n        -0.064844809472600004, \n        -0.0062150359153700001, \n        -0.99757367372500005, \n        -0.26710531115500002, \n        0.0113421976566, \n        -0.96328711509700005, \n        -0.26751321554200003, \n        0.082639247178999994, \n        -0.95968914031999997, \n        -0.40759688615799999, \n        0.098966211080599997, \n        -0.90745091438299996, \n        -0.40883150696800002, \n        0.027198642492300001, \n        -0.91187357902499999, \n        -0.45219644904099998, \n        0.040952205658, \n        -0.89063900709199995, \n        -0.45056492090200001, \n        0.111069440842, \n        -0.88546657562300002, \n        0.77181291580199995, \n        0.18806523084599999, \n        -0.60690474510199999, \n        0.73411625623700005, \n        0.17706249654299999, \n        -0.65507113933600003, \n        0.735858738422, \n        0.110321700573, \n        -0.66763633489600005, \n        0.77472907304799998, \n        0.12851916253599999, \n        -0.61860716342900002, \n        0.59297990799, \n        0.099310487508800005, \n        -0.79869174957300004, \n        0.59007376432400005, \n        0.17248293757399999, \n        -0.78832685947400005, \n        0.36762595176700003, \n        0.180103600025, \n        -0.91203647851900005, \n        0.370515078306, \n        0.105181217194, \n        -0.92252433300000003, \n        0.14580295979999999, \n        0.119262963533, \n        -0.98179149627700002, \n        0.14300581812900001, \n        0.19662863016099999, \n        -0.96968215704000005, \n        -0.068395636975800006, \n        0.21546292305, \n        -0.97380387783099998, \n        -0.067520804703200002, \n        0.13818529248200001, \n        -0.98779666423800006, \n        -0.26657450199100002, \n        0.156997591257, \n        -0.95062386989600001, \n        -0.26373934745799998, \n        0.23391038179400001, \n        -0.93548041582100006, \n        -0.39862659573600001, \n        0.24890086054800001, \n        -0.88235044479400004, \n        -0.40427890420000001, \n        0.17299279570600001, \n        -0.89779078960400005, \n        -0.44589433074000001, \n        0.18723538517999999, \n        -0.87493777275100004, \n        -0.43899339437500001, \n        0.26006042957300002, \n        -0.85968029499099996, \n        0.75580364465700001, \n        0.31177383661300001, \n        -0.57528620958300003, \n        0.717222392559, \n        0.31397116184200002, \n        -0.621619224548, \n        0.72718334198000001, \n        0.24556581676, \n        -0.64054554700900002, \n        0.76634055376099997, \n        0.25186991691600003, \n        -0.59049165248900004, \n        0.58464640378999999, \n        0.24635457992599999, \n        -0.77258968353299995, \n        0.57410562038400004, \n        0.32343930005999999, \n        -0.75178796052899999, \n        0.35449990630099998, \n        0.33971139788600002, \n        -0.87081694603000004, \n        0.362118631601, \n        0.25930267572400001, \n        -0.89500170946099999, \n        0.13944688439399999, \n        0.27636751532600001, \n        -0.95056390762300003, \n        0.135470077395, \n        0.35873863100999998, \n        -0.923228144646, \n        -0.067819118499800005, \n        0.37689313292499999, \n        -0.92344403266899999, \n        -0.0682739838958, \n        0.29550576210000001, \n        -0.95258128642999995, \n        -0.25938865542400003, \n        0.31275752186799999, \n        -0.91339814662899999, \n        -0.25183993578000002, \n        0.39200866222399999, \n        -0.88447892665899996, \n        -0.37778088450399999, \n        0.402493387461, \n        -0.83347320556600002, \n        -0.38955634832399999, \n        0.325497746468, \n        -0.86121594905900001, \n        -0.428459584713, \n        0.33738008141499998, \n        -0.83784997463199995, \n        -0.414804667234, \n        0.41036209464099999, \n        -0.81174886226700005, \n        0.72339951991999996, \n        0.432496339083, \n        -0.53762060403800005, \n        0.68102627992599996, \n        0.452272385359, \n        -0.57536816596999996, \n        0.70091331005099999, \n        0.38335120677899998, \n        -0.60096448659900004, \n        0.742719650269, \n        0.37161374092100002, \n        -0.55647790431999999, \n        0.56025880575200004, \n        0.40051007270799999, \n        -0.72463715076400004, \n        0.54114055633500002, \n        0.47826051712000001, \n        -0.69125223159799998, \n        0.33133193850499998, \n        0.50347495079000004, \n        -0.79757606983200002, \n        0.344226032495, \n        0.42203950882000002, \n        -0.83832371234900005, \n        0.13040760159500001, \n        0.44137772917700002, \n        -0.88745498657199995, \n        0.12599794566600001, \n        0.52334994077700003, \n        -0.84239262342499999, \n        -0.062208712100999999, \n        0.53852736949900004, \n        -0.83994925022099998, \n        -0.065219104289999996, \n        0.45839053392399998, \n        -0.88601440191299996, \n        -0.24252574145799999, \n        0.47126364707899998, \n        -0.84763693809499996, \n        -0.22910282015799999, \n        0.54792749881699998, \n        -0.80416715145100004, \n        -0.34252253174800001, \n        0.55202722549399996, \n        -0.75982952117900004, \n        -0.36163875460599998, \n        0.47803461551699999, \n        -0.80006039142600005, \n        -0.397263020277, \n        0.48515450954400002, \n        -0.77859079837800005, \n        -0.37585347890900001, \n        0.55519235134099998, \n        -0.74154710769700005, \n        0.67251384258299995, \n        0.55066865682599997, \n        -0.49384683370600002, \n        0.62338972091699996, \n        0.589219033718, \n        -0.51342195272400004, \n        0.65432035922999998, \n        0.52116751670799999, \n        -0.54739868640900002, \n        0.70192795991900003, \n        0.487187832594, \n        -0.51898121833800004, \n        0.51783061027499999, \n        0.55482542514800004, \n        -0.65070450305899996, \n        0.491206645966, \n        0.62818527221700005, \n        -0.60290586948400005, \n        0.30051922798199998, \n        0.65873706340799998, \n        -0.689311742783, \n        0.31708520650900002, \n        0.58298093080500002, \n        -0.74765318632099997, \n        0.12061956524799999, \n        0.60245406627700004, \n        -0.788603782654, \n        0.117727443576, \n        0.67676353454600002, \n        -0.72631061077100001, \n        -0.0487432777882, \n        0.68731838464700001, \n        -0.72430223226500001, \n        -0.055872526019800001, \n        0.61517620086699998, \n        -0.78602361679099997, \n        -0.21358148753600001, \n        0.62212115526199996, \n        -0.75282460451099997, \n        -0.19378946721599999, \n        0.69058042764700001, \n        -0.69637674093199997, \n        -0.29201278090499999, \n        0.68870395421999997, \n        -0.66318267583799995, \n        -0.31876873970000003, \n        0.622173070908, \n        -0.71462118625600002, \n        -0.351009994745, \n        0.62351071834600003, \n        -0.69815719127700004, \n        -0.32155787944800002, \n        0.68737131357199999, \n        -0.65078240632999995, \n        0.60194915533100002, \n        0.66772329807300002, \n        -0.43726289272300001, \n        0.546283006668, \n        0.72005045414000002, \n        -0.42719694972, \n        0.58680176734900003, \n        0.65546905994399995, \n        -0.47478461265600003, \n        0.64128226041799996, \n        0.59980487823499995, \n        -0.47789862752000001, \n        0.460438907146, \n        0.69880294799800002, \n        -0.54686975479099997, \n        0.43145266175300001, \n        0.76128506660499995, \n        -0.48341500759099998, \n        0.27086219191599997, \n        0.79069018363999999, \n        -0.54848730564100001, \n        0.28576770424800002, \n        0.72801005840300004, \n        -0.62268388271300001, \n        0.11487930268, \n        0.74492007494000001, \n        -0.65672963857699995, \n        0.117157615721, \n        0.80484592914599995, \n        -0.58128547668499997, \n        -0.024172399192999999, \n        0.81084609031699995, \n        -0.58424353599500001, \n        -0.037254944443699999, \n        0.75261366367299998, \n        -0.65694856643699995, \n        -0.17158018052599999, \n        0.75420618057300004, \n        -0.63334774970999996, \n        -0.145672991872, \n        0.80983340740200005, \n        -0.56775450706499997, \n        -0.227717220783, \n        0.80443799495699997, \n        -0.54810547828699996, \n        -0.26118209958100003, \n        0.74925565719599996, \n        -0.60810828208900003, \n        -0.290184348822, \n        0.74568474292800002, \n        -0.59928596019699998, \n        -0.25343543291100001, \n        0.80035722255700004, \n        -0.54276609420800004, \n        0.54653489589699999, \n        0.73570775985699999, \n        -0.39928638935100003, \n        0.47830554842900003, \n        0.78527683019600003, \n        -0.39237648248700002, \n        0.510556817055, \n        0.76614654064200005, \n        -0.38954734802199997, \n        0.56182432174700003, \n        0.70259678363800004, \n        -0.43601334094999999, \n        0.40548354387300001, \n        0.80716323852500005, \n        -0.428330659866, \n        0.38758191466300002, \n        0.821739792824, \n        -0.417036056519, \n        0.24679045379199999, \n        0.84677225351300001, \n        -0.470603883266, \n        0.26308453083, \n        0.83187371492399997, \n        -0.488025605679, \n        0.11962586641300001, \n        0.84520077705399999, \n        -0.52030885219599998, \n        0.111833229661, \n        0.857932925224, \n        -0.50084066391000004, \n        -0.014224603772200001, \n        0.86165970563899996, \n        -0.50669091939900002, \n        -0.0107316588983, \n        0.84950232505800005, \n        -0.52690184116399996, \n        -0.123744629323, \n        0.84823471307800002, \n        -0.51437562704100004, \n        -0.122255064547, \n        0.85924649238600004, \n        -0.49613115191500001, \n        -0.18815416097599999, \n        0.85324925184199996, \n        -0.48575729131700002, \n        -0.199531719089, \n        0.84130787849400002, \n        -0.50178146362300002, \n        -0.22581079602199999, \n        0.83464789390600003, \n        -0.50176644325300002, \n        -0.21489708125599999, \n        0.84737807512300001, \n        -0.48493856191599999\n    ], \n    \"positions\": [\n        -0.063683778047600004, \n        2.3464713096600001, \n        0.045215606689499997, \n        -0.060675621032700001, \n        2.3455114364599998, \n        0.029517769813499999, \n        -0.057771325111399999, \n        2.3507299423200001, \n        0.030201673507699998, \n        -0.061185568571100003, \n        2.3523697853100001, \n        0.0464453697205, \n        -0.0572466850281, \n        2.3421325683599998, \n        0.015105366706800001, \n        -0.053887337446200001, \n        2.3465113639799999, \n        0.0153127908707, \n        -0.050038695335400001, \n        2.3500504493699998, \n        0.015470743179300001, \n        -0.054160803556400003, \n        2.3547892570500002, \n        0.0311042070389, \n        -0.0577769577503, \n        2.3572278022800002, \n        0.047768950462300001, \n        -0.049138307571400003, \n        2.3571484088900001, \n        0.0318441390991, \n        -0.052548527717599998, \n        2.36010742188, \n        0.049137473106400001, \n        -0.0452115237713, \n        2.35152959824, \n        0.015854477882399999, \n        -0.0398955643177, \n        2.3517498969999999, \n        0.016560792923000001, \n        -0.043409496545800001, \n        2.3589079380000002, \n        0.032267332076999999, \n        -0.046409845352200003, \n        2.3627662658699999, \n        0.049830317497299999, \n        -0.067226886749299997, \n        2.3424925804100001, \n        0.076091408729600005, \n        -0.065850138664200003, \n        2.3450918197599999, \n        0.0610657930374, \n        -0.063659638166399996, \n        2.3514897823299998, \n        0.062908887863199994, \n        -0.065251499414400005, \n        2.3493106365199998, \n        0.078500747680700006, \n        -0.060380727052699999, \n        2.3569481372799999, \n        0.064708232879599994, \n        -0.062035083770799998, \n        2.3552889823899998, \n        0.080729126930199999, \n        -0.0549257993698, \n        2.36064720154, \n        0.066307425498999997, \n        -0.056336998939499998, \n        2.3596873283400002, \n        0.082526445388799996, \n        -0.048382759094199999, \n        2.3638062477099999, \n        0.067479968070999999, \n        -0.0493980646133, \n        2.3634462356600001, \n        0.083966493606599996, \n        -0.067819118499800005, \n        2.3362743854499999, \n        0.10135602951, \n        -0.0678658783436, \n        2.3393738269800002, \n        0.089650154113800007, \n        -0.066018909215900007, \n        2.3466112613700001, \n        0.092505931854200002, \n        -0.066019654274, \n        2.3439722061200001, \n        0.104495167732, \n        -0.062802791595499993, \n        2.3531293869000001, \n        0.095046997070299996, \n        -0.062746852636300005, \n        2.3509697914099998, \n        0.10724246501900001, \n        -0.056848883628800001, \n        2.35818767548, \n        0.0969561338425, \n        -0.056527733802799997, \n        2.3565683364900001, \n        0.10925042629200001, \n        -0.0495254695415, \n        2.3625664711000001, \n        0.098497629165599995, \n        -0.048835277557399998, \n        2.36146688461, \n        0.11088895797700001, \n        -0.065876513719600002, \n        2.3288168907200002, \n        0.120658159256, \n        -0.067138761281999998, \n        2.33299541473, \n        0.11143040657, \n        -0.065311521291699995, \n        2.3408331870999999, \n        0.115031242371, \n        -0.063952058553699995, \n        2.3366541862500001, \n        0.124725461006, \n        -0.0619300603867, \n        2.3480107784299999, \n        0.118185520172, \n        -0.060415387153600002, \n        2.3438720703100002, \n        0.12826943397500001, \n        -0.0554404258728, \n        2.3538489341700002, \n        0.12044608593, \n        -0.053654044866599998, \n        2.3498704433399999, \n        0.130766153336, \n        -0.047396659851099997, \n        2.3590273857100001, \n        0.122259736061, \n        -0.045280098915100001, \n        2.3552286624900001, \n        0.13273906707800001, \n        -0.061814934015299999, \n        2.3180198669399998, \n        0.136624932289, \n        -0.064084649086000006, \n        2.3237981796299998, \n        0.12905812263499999, \n        -0.061999440193200001, \n        2.3315358161900002, \n        0.13356220722199999, \n        -0.059511065483099999, \n        2.3255577087399999, \n        0.14152550697300001, \n        -0.058265656232800001, \n        2.3386936187699998, \n        0.13746893405899999, \n        -0.055543631315200001, \n        2.3325757980300001, \n        0.145758748055, \n        -0.051234722137500001, \n        2.3447320461299999, \n        0.14018034935000001, \n        -0.048249453306200001, \n        2.3385338783299998, \n        0.14865767955799999, \n        -0.042555123567600002, \n        2.3501701355, \n        0.14229357242599999, \n        -0.039291709661500002, \n        2.3439722061200001, \n        0.15088939666699999, \n        -0.056050300598099997, \n        2.3045239448500001, \n        0.149242520332, \n        -0.059119313955299999, \n        2.3115620613100001, \n        0.14335465431200001, \n        -0.056544661521899998, \n        2.3188197612799999, \n        0.14859890937799999, \n        -0.053158372640599999, \n        2.3114020824399999, \n        0.15476679801900001, \n        -0.052312463522000002, \n        2.3255977630600002, \n        0.15311348438299999, \n        -0.048634648323100001, \n        2.3178601264999998, \n        0.15950763225600001, \n        -0.0447648763657, \n        2.3314158916499998, \n        0.15616822242699999, \n        -0.040847688913299998, \n        2.3234782218899999, \n        0.16268122196199999, \n        -0.035559654235800001, \n        2.3367743492100002, \n        0.15849304199200001, \n        -0.031428903341300003, \n        2.32865691185, \n        0.16507101059000001, \n        -0.0489984452724, \n        2.2889685630800001, \n        0.15847420692399999, \n        -0.052659064531300002, \n        2.2969462871599999, \n        0.15428376197800001, \n        -0.049409478902800001, \n        2.3034043312099999, \n        0.160013318062, \n        -0.045356154441800002, \n        2.2949271202100001, \n        0.164322018623, \n        -0.044573307037399999, \n        2.3094823360399999, \n        0.16491627693200001, \n        -0.040191501379000003, \n        2.30056548119, \n        0.169313907623, \n        -0.036564558744399997, \n        2.3148007392899999, \n        0.16816592216500001, \n        -0.031982064247099998, \n        2.3055436611200002, \n        0.17259216308600001, \n        -0.026969224214600001, \n        2.3197593688999998, \n        0.17058897018399999, \n        -0.022250533103899999, \n        2.31018209457, \n        0.17501413822199999, \n        -0.0410751998425, \n        2.2720136642500002, \n        0.16428363323199999, \n        -0.045119553804399998, \n        2.28061103821, \n        0.1618090868, \n        -0.041055798530599999, \n        2.2860493659999999, \n        0.16767776012400001, \n        -0.036566376686100001, \n        2.2768726348900001, \n        0.17006361484499999, \n        -0.035551667213400001, \n        2.29118776321, \n        0.17267501354199999, \n        -0.0307169854641, \n        2.28149080276, \n        0.174974799156, \n        -0.027167201042199999, \n        2.2957668304399999, \n        0.17592942714699999, \n        -0.022186279296900001, \n        2.2856297493, \n        0.17814719676999999, \n        -0.0173424184322, \n        2.30006527901, \n        0.17831254005399999, \n        -0.0123151540756, \n        2.2895283699000002, \n        0.18045043945299999, \n        -0.032696723938000001, \n        2.2543392181400002, \n        0.16663396358499999, \n        -0.036916851997400003, \n        2.26321649551, \n        0.165893316269, \n        -0.031945794820799997, \n        2.2674751281700001, \n        0.17146420478800001, \n        -0.0272513926029, \n        2.25797796249, \n        0.17186355590800001, \n        -0.025750190019600001, \n        2.2715339660599998, \n        0.17618727683999999, \n        -0.020714312791799999, \n        2.2614374160800002, \n        0.17628777027100001, \n        -0.017106413841199999, \n        2.275192976, \n        0.17921495437599999, \n        -0.0119939744473, \n        2.2645964622500001, \n        0.17910182476, \n        -0.0072382688522300001, \n        2.2786519527400002, \n        0.181394338608, \n        -0.00218176841736, \n        2.2675952911400001, \n        0.18111073970800001, \n        -0.024278640747100001, \n        2.2366046905500001, \n        0.16548883914900001, \n        -0.0284665822983, \n        2.2454419136000001, \n        0.166500806808, \n        -0.022541165351900001, \n        2.2484412193300001, \n        0.17124521732299999, \n        -0.017873048782300002, \n        2.2389636039699998, \n        0.16959345340699999, \n        -0.015672117471700001, \n        2.2513003349299998, \n        0.175250649452, \n        -0.0106866061687, \n        2.2412428855900002, \n        0.173050761223, \n        -0.0069157779216800002, \n        2.2539393901799998, \n        0.177777767181, \n        -0.0019384622573899999, \n        2.2433426380200001, \n        0.17521214485200001, \n        0.0027843713760399998, \n        2.2564582824700001, \n        0.17956554889699999, \n        0.0075906217098200002, \n        2.2453417778000002, \n        0.176725506783, \n        -0.0162370502949, \n        2.2194499969499999, \n        0.16081178188299999, \n        -0.020184874534600002, \n        2.2279071807899999, \n        0.163594245911, \n        -0.0133045017719, \n        2.2296466827399999, \n        0.16689288616199999, \n        -0.0088934898376500007, \n        2.2205893993400001, \n        0.16312646865800001, \n        -0.0058204233646400004, \n        2.2313463687900001, \n        0.16966247558600001, \n        -0.0011366307735400001, \n        2.2216889858200002, \n        0.165060758591, \n        0.0028712749481200001, \n        2.2329056263, \n        0.17137432098399999, \n        0.0074467360973399996, \n        2.22272872925, \n        0.166233778, \n        0.0121668279171, \n        2.2344055175799999, \n        0.172556996346, \n        0.016443282365800001, \n        2.2237284183499999, \n        0.16702628135700001, \n        -0.0088367462158200002, \n        2.2033343315099998, \n        0.15301668643999999, \n        -0.012487411499, \n        2.2113122940099998, \n        0.15713727474200001, \n        -0.0046976506710100004, \n        2.21187210083, \n        0.15827918052699999, \n        -0.00060942769050599999, \n        2.2033343315099998, \n        0.15289103984800001, \n        0.0033019781112699998, \n        2.2124319076500001, \n        0.159220457077, \n        0.00761792063713, \n        2.2033343315099998, \n        0.15276038646699999, \n        0.0117211341858, \n        2.2129316330000002, \n        0.15976035594900001, \n        0.015845060348500001, \n        2.2033343315099998, \n        0.15262043476100001, \n        0.0203500688076, \n        2.2134313583399998, \n        0.160099625587, \n        0.024072170257600001, \n        2.2033343315099998, \n        0.15247523784600001, \n        -0.0597605407238, \n        2.36768484116, \n        0.036157727241500001, \n        -0.0571503341198, \n        2.3663854599, \n        0.01828789711, \n        -0.054120421409600002, \n        2.3713040351900001, \n        0.017004966735800001, \n        -0.056279391050299998, \n        2.37298345566, \n        0.035399675369299999, \n        -0.054070264101, \n        2.3634462356600001, \n        0.00099849700927700006, \n        -0.051478475332300003, \n        2.3677649498000002, \n        -0.00052821636200000004, \n        -0.048272848129300001, \n        2.3713438510899998, \n        -0.0018210411071799999, \n        -0.0503713786602, \n        2.3754224777199999, \n        0.0158895254135, \n        -0.051977962255499999, \n        2.37750196457, \n        0.0346394777298, \n        -0.045183390379000002, \n        2.3779215812699999, \n        0.0151082277298, \n        -0.0460356771946, \n        2.3807210922199999, \n        0.033657312393200002, \n        -0.043839186430000003, \n        2.3734431266799998, \n        -0.0026460886001599998, \n        -0.038791656494099998, \n        2.37480282784, \n        -0.0032372474670399999, \n        -0.039275974035299997, \n        2.37958145142, \n        0.01449406147, \n        -0.039272904396099997, \n        2.38274049759, \n        0.033095955848700002, \n        -0.062225669622399997, \n        2.3627665042900001, \n        0.073037385940599997, \n        -0.061431646346999998, \n        2.3660054206800001, \n        0.054852604866, \n        -0.057472199201600002, \n        2.3718838691699999, \n        0.054387331008900003, \n        -0.0577656030655, \n        2.36904430389, \n        0.073026061057999997, \n        -0.0526005029678, \n        2.37688231468, \n        0.053904294967700002, \n        -0.052310824394199998, \n        2.3744628429399999, \n        0.072850942611699998, \n        -0.0459042787552, \n        2.3805210590399999, \n        0.053004026412999998, \n        -0.044866889715200003, \n        2.37836194038, \n        0.072156429290800003, \n        -0.038295835256599998, \n        2.38296031952, \n        0.0524063110352, \n        -0.036428183317199998, \n        2.3811411857599998, \n        0.071576476097099995, \n        -0.061431050300599997, \n        2.35606861115, \n        0.10375273227700001, \n        -0.062204599380499999, \n        2.3591873645799999, \n        0.089581727981599996, \n        -0.057226091623300002, \n        2.3657655715899999, \n        0.090072035789500002, \n        -0.055920481681799999, \n        2.36294651031, \n        0.104676961899, \n        -0.051180362701400001, \n        2.3715238571200001, \n        0.090243697166400003, \n        -0.049281120300299998, \n        2.36896443367, \n        0.10521912574800001, \n        -0.043000668287300002, \n        2.37560272217, \n        0.089803576469400001, \n        -0.0403832197189, \n        2.3732433319099999, \n        0.104999899864, \n        -0.033753752708400003, \n        2.3786816596999998, \n        0.089239478111299994, \n        -0.030356407165500001, \n        2.3766422271700001, \n        0.10439991950999999, \n        -0.057873874902699997, \n        2.3488306999200002, \n        0.127290487289, \n        -0.0599666833878, \n        2.35290956497, \n        0.116017818451, \n        -0.053915739059400003, \n        2.3599076271100001, \n        0.11752998828900001, \n        -0.0512781143188, \n        2.3558287620499998, \n        0.129404187202, \n        -0.046684354543699999, \n        2.36604547501, \n        0.11851823329900001, \n        -0.043461829423899999, \n        2.3620266914400001, \n        0.13084709644299999, \n        -0.037092208862299997, \n        2.3705039024399999, \n        0.118458628654, \n        -0.033204585313800002, \n        2.3666453361499999, \n        0.13094854354900001, \n        -0.0263197124004, \n        2.3741431236300001, \n        0.117875218391, \n        -0.021727055311199998, \n        2.37044405937, \n        0.13037919998200001, \n        -0.052051663398700002, \n        2.3380737304700001, \n        0.14676535129500001, \n        -0.055214881897000002, \n        2.3438720703100002, \n        0.13754773140000001, \n        -0.048074454069099999, \n        2.3507900238000001, \n        0.14025938510899999, \n        -0.044371843337999997, \n        2.3448719978299999, \n        0.15005576610599999, \n        -0.039685368537900001, \n        2.3569881916000002, \n        0.14215302467300001, \n        -0.035426497459399998, \n        2.35097002983, \n        0.15238332748399999, \n        -0.0287983119488, \n        2.36168670654, \n        0.14241039753000001, \n        -0.023950546979900001, \n        2.3557085990900002, \n        0.152785420418, \n        -0.016662448644600002, \n        2.36564564705, \n        0.141849517822, \n        -0.011209607124300001, \n        2.3597474098200002, \n        0.15222442150099999, \n        -0.044461727142299998, \n        2.3242177963300001, \n        0.161983847618, \n        -0.048446536064100001, \n        2.33151578903, \n        0.15491878986400001, \n        -0.040236234664899999, \n        2.33809399605, \n        0.158752918243, \n        -0.0357350409031, \n        2.33053636551, \n        0.16631066799200001, \n        -0.030756920576100001, \n        2.3440520763400001, \n        0.16148519516000001, \n        -0.0257482528687, \n        2.33629441261, \n        0.16940569877600001, \n        -0.0187391042709, \n        2.3487706184400001, \n        0.16201436519599999, \n        -0.013241052627599999, \n        2.3409328460699999, \n        0.17003822326699999, \n        -0.0054522454738600004, \n        2.3528695106500002, \n        0.16144168376900001, \n        0.000526070594788, \n        2.34505176544, \n        0.169438958168, \n        -0.035601228475600002, \n        2.3077228069300002, \n        0.172751903534, \n        -0.040159016847600003, \n        2.3162806034100001, \n        0.16793632507299999, \n        -0.030934453010600001, \n        2.3222589492800001, \n        0.17268884181999999, \n        -0.025901556015, \n        2.3133215904200002, \n        0.177847266197, \n        -0.020472019910799999, \n        2.3277568817100001, \n        0.17609226703600001, \n        -0.015000134706499999, \n        2.3184995651200002, \n        0.18149173259699999, \n        -0.0075341463088999996, \n        2.3322958946200001, \n        0.176797986031, \n        -0.00169563293457, \n        2.3228588104200001, \n        0.182234406471, \n        0.0066415965557100002, \n        2.3363547325099998, \n        0.17615473270400001, \n        0.0128105580807, \n        2.3268373012499999, \n        0.181526184082, \n        -0.025967359542799998, \n        2.2890086173999999, \n        0.17887449264499999, \n        -0.030849903821900001, \n        2.29862594604, \n        0.17640590667700001, \n        -0.0207028090954, \n        2.3037843704199998, \n        0.181745886803, \n        -0.015404790639900001, \n        2.2936873435999998, \n        0.184344649315, \n        -0.0094042718410499992, \n        2.30860280991, \n        0.18555176258100001, \n        -0.0037558078765900001, \n        2.2981061935399998, \n        0.188219189644, \n        0.0041968524455999997, \n        2.3127417564399999, \n        0.186288952827, \n        0.0100660324097, \n        2.3019847869899999, \n        0.18890202045400001, \n        0.018949300050699999, \n        2.3165602684, \n        0.18549168109899999, \n        0.024974077939999999, \n        2.3056037425999998, \n        0.18798899650600001, \n        -0.016057729721099999, \n        2.26853489876, \n        0.18015742301900001, \n        -0.021016031503699999, \n        2.27897167206, \n        0.180132985115, \n        -0.0100744962692, \n        2.2831304073299998, \n        0.18560338020299999, \n        -0.0047784745693199996, \n        2.2721538543699999, \n        0.18548154830899999, \n        0.00187337398529, \n        2.287109375, \n        0.18944132327999999, \n        0.0074117183685300002, \n        2.2756328582799998, \n        0.18916535377499999, \n        0.0158342123032, \n        2.2906682491299999, \n        0.19001483917199999, \n        0.021423935890199999, \n        2.2788317203499999, \n        0.18956828117399999, \n        0.030801296234099999, \n        2.2940273284899999, \n        0.18895614147199999, \n        0.036347150802600002, \n        2.2818908691400002, \n        0.18833065032999999, \n        -0.0063694715499900004, \n        2.2467215061200001, \n        0.176406145096, \n        -0.011154860258100001, \n        2.25775814056, \n        0.17892313003499999, \n        0.00041651725769000002, \n        2.2608172893499998, \n        0.18393945694, \n        0.0054438114166300003, \n        2.2491807937599999, \n        0.18093669414499999, \n        0.012787550687799999, \n        2.2637763023400002, \n        0.187338471413, \n        0.0179291963577, \n        2.2515799999200001, \n        0.18390798568700001, \n        0.026757955551099999, \n        2.2665553093000002, \n        0.18750345706900001, \n        0.031758874654799998, \n        2.2538995742800001, \n        0.18376100063299999, \n        0.041528254747399997, \n        2.2692546844499999, \n        0.18605089187599999, \n        0.0462603569031, \n        2.2561788559, \n        0.182054638863, \n        0.0026001632213600002, \n        2.2239880561800001, \n        0.16742622852299999, \n        -0.0017637312412300001, \n        2.23544502258, \n        0.172581911087, \n        0.0102367401123, \n        2.2373044490799998, \n        0.17643308639499999, \n        0.0147286355495, \n        2.2252278327899999, \n        0.17038881778699999, \n        0.0227649509907, \n        2.2391438484199999, \n        0.17882096767399999, \n        0.0272231996059, \n        2.2264873981500002, \n        0.17202472686799999, \n        0.036348581314100001, \n        2.2409434318499999, \n        0.178281903267, \n        0.040450423955899997, \n        2.2277269363399999, \n        0.171007514, \n        0.0504602193832, \n        2.2427225112900002, \n        0.17627966404000001, \n        0.054043650627100003, \n        2.2289667129500002, \n        0.168664097786, \n        0.010567992925599999, \n        2.2008154392199999, \n        0.153725385666, \n        0.0066600739955900001, \n        2.2124319076500001, \n        0.16091477870900001, \n        0.018852621316899999, \n        2.2130517959599998, \n        0.16276323795299999, \n        0.022792935371400001, \n        2.2008154392199999, \n        0.15434718132, \n        0.031232357025100001, \n        2.2136917114300001, \n        0.16346633434300001, \n        0.0350170433521, \n        2.2008156776400001, \n        0.154026865959, \n        0.043986320495600001, \n        2.2143113613100001, \n        0.161878585815, \n        0.0472395420074, \n        2.2008154392199999, \n        0.15182232856799999, \n        0.056927561759899999, \n        2.2149512767799999, \n        0.15914559364299999, \n        0.059461385011700001, \n        2.2008154392199999, \n        0.148675680161, \n        -0.12956127524399999, \n        2.2971858978299999, \n        0.023104310035700001, \n        -0.128583788872, \n        2.2930274009699998, \n        0.0080344676971400002, \n        -0.12626048922499999, \n        2.2989258766199998, \n        0.0037279129028299999, \n        -0.12746191024799999, \n        2.3039243221299999, \n        0.019596099853499999, \n        -0.12739589810400001, \n        2.2882289886499998, \n        -0.0073732137680100002, \n        -0.12482535839099999, \n        2.2932271957400001, \n        -0.012476086616499999, \n        -0.121257215738, \n        2.29788613319, \n        -0.016565084457400001, \n        -0.12279054522500001, \n        2.3044242858900001, \n        0.00025892257690400002, \n        -0.124074727297, \n        2.31024217606, \n        0.016717672348, \n        -0.117027521133, \n        2.3093428611800002, \n        -0.0017789602279700001, \n        -0.11811169982, \n        2.3160004615799998, \n        0.0147761106491, \n        -0.115694254637, \n        2.3019247055099998, \n        -0.018659710884100001, \n        -0.109134078026, \n        2.3059635162399998, \n        -0.0200673341751, \n        -0.110117703676, \n        2.3144211769099998, \n        -0.00349283218384, \n        -0.110861182213, \n        2.3218789100600001, \n        0.0129392147064, \n        -0.13026627898199999, \n        2.3018646240199998, \n        0.051194787025500003, \n        -0.130118966103, \n        2.3001055717500001, \n        0.0374981164932, \n        -0.12819609046, \n        2.3075833320600001, \n        0.034792900085400001, \n        -0.128473609686, \n        2.3099424839, \n        0.0492894649506, \n        -0.12486028671299999, \n        2.3146209716800001, \n        0.032489418983500003, \n        -0.12515902519200001, \n        2.3174600601200002, \n        0.0476993322372, \n        -0.118698567152, \n        2.3210792541499998, \n        0.0307261943817, \n        -0.11880052089699999, \n        2.32425785065, \n        0.046373009681700002, \n        -0.111123889685, \n        2.3275971412700001, \n        0.0288715362549, \n        -0.11092031002, \n        2.3311161994899998, \n        0.0447728633881, \n        -0.12936851382299999, \n        2.3021450042699998, \n        0.076410651206999997, \n        -0.13001275062600001, \n        2.3025245666499998, \n        0.064172506332400001, \n        -0.128304600716, \n        2.31108212471, \n        0.063057422637899999, \n        -0.12769964337299999, \n        2.3111021518700001, \n        0.076068401336699995, \n        -0.124981850386, \n        2.3189997672999998, \n        0.062165856361399999, \n        -0.124340504408, \n        2.3193397521999999, \n        0.075823903083800007, \n        -0.11843025684400001, \n        2.3257977962499998, \n        0.061546325683600002, \n        -0.117600291967, \n        2.32619738579, \n        0.075774669647200005, \n        -0.11026430130000001, \n        2.3325555324599998, \n        0.060553789138800003, \n        -0.10916981101000001, \n        2.3325757980300001, \n        0.075620770454399994, \n        -0.126946896315, \n        2.29862594604, \n        0.098581552505500006, \n        -0.128343433142, \n        2.3008251190200002, \n        0.087887525558500004, \n        -0.12666931748400001, \n        2.3100423812900002, \n        0.0882934331894, \n        -0.12522414326699999, \n        2.30800294876, \n        0.099703669548000001, \n        -0.123245716095, \n        2.3185195922899999, \n        0.088683009147599995, \n        -0.12170967459699999, \n        2.3166003227199998, \n        0.10070729255700001, \n        -0.116323232651, \n        2.3255376815800002, \n        0.089040160179100006, \n        -0.114611744881, \n        2.3236980438199999, \n        0.10147464275400001, \n        -0.10765132308, \n        2.33181595802, \n        0.089381217956500003, \n        -0.10572245717000001, \n        2.33001637459, \n        0.102123498917, \n        -0.12307944893800001, \n        2.2918276786799998, \n        0.11753666400899999, \n        -0.12518903613099999, \n        2.2955865860000002, \n        0.108471751213, \n        -0.1233741045, \n        2.30502390862, \n        0.110270738602, \n        -0.121130228043, \n        2.3012247085599999, \n        0.11996614932999999, \n        -0.11974287033100001, \n        2.3136811256400001, \n        0.111861467361, \n        -0.11735722422600001, \n        2.3098225593600001, \n        0.122109055519, \n        -0.112478464842, \n        2.3207592964199999, \n        0.113035082817, \n        -0.109935998917, \n        2.31682038307, \n        0.123679637909, \n        -0.103397578001, \n        2.3270573616000001, \n        0.114000678062, \n        -0.100690633059, \n        2.3230385780299998, \n        0.12496387958500001, \n        -0.11784398555800001, \n        2.2823705673200001, \n        0.133105397224, \n        -0.12062779068899999, \n        2.2874093055700002, \n        0.12575495243099999, \n        -0.11850285530100001, \n        2.2966666221600001, \n        0.128761172295, \n        -0.115501910448, \n        2.2913880348200002, \n        0.13662695884699999, \n        -0.114563792944, \n        2.30510377884, \n        0.13141500949900001, \n        -0.111373901367, \n        2.29962563515, \n        0.139743328094, \n        -0.106996893883, \n        2.3119616508499998, \n        0.13336551189400001, \n        -0.103673696518, \n        2.3062434196499999, \n        0.14205038547500001, \n        -0.097615927457799997, \n        2.3180198669399998, \n        0.13496398925799999, \n        -0.094187378883399994, \n        2.3120818138099999, \n        0.14395236969, \n        -0.11131915450099999, \n        2.2708141803699999, \n        0.145117044449, \n        -0.11473789811100001, \n        2.2768125534100001, \n        0.139566421509, \n        -0.11213850975, \n        2.2855095863299999, \n        0.14353501796699999, \n        -0.108422845602, \n        2.27909183502, \n        0.14945709705400001, \n        -0.10779905319200001, \n        2.2934274673499999, \n        0.14705836772899999, \n        -0.103850454092, \n        2.2866096496599999, \n        0.15332424640699999, \n        -0.0999789535999, \n        2.29976558685, \n        0.149691462517, \n        -0.095925658941299993, \n        2.2926077842699999, \n        0.15624666213999999, \n        -0.090418905019800003, \n        2.30532360077, \n        0.15187942981700001, \n        -0.086324691772500003, \n        2.2978463172899999, \n        0.15869629383100001, \n        -0.10358294844599999, \n        2.25769805908, \n        0.15340089798000001, \n        -0.107597470284, \n        2.2644162178, \n        0.149735569954, \n        -0.10436531901399999, \n        2.2721939086899998, \n        0.15436398982999999, \n        -0.099976420402500002, \n        2.2649159431500001, \n        0.15822732448599999, \n        -0.099539369344699993, \n        2.27925157547, \n        0.15850532054899999, \n        -0.094877362251300001, \n        2.2714343070999998, \n        0.16256582737, \n        -0.091526150703400005, \n        2.2848501205399998, \n        0.161672949791, \n        -0.086792945861800003, \n        2.27657222748, \n        0.16592848300900001, \n        -0.081919282674800004, \n        2.2897086143499998, \n        0.164353728294, \n        -0.077215880155600006, \n        2.2810111045800001, \n        0.16880309581799999, \n        -0.094713598489800002, \n        2.2436425685899999, \n        0.15778613090499999, \n        -0.099285006523100003, \n        2.2507600784299999, \n        0.15609133243600001, \n        -0.095266669988600006, \n        2.2572982311200001, \n        0.16101861000100001, \n        -0.0902465581894, \n        2.24946069717, \n        0.162708878517, \n        -0.089875459670999996, \n        2.26321649551, \n        0.16547000408199999, \n        -0.084545254707299997, \n        2.2546792030299998, \n        0.16718208789799999, \n        -0.081738919019699999, \n        2.2678351402299999, \n        0.16897034645100001, \n        -0.076376318931600004, \n        2.2587575912500002, \n        0.17075634002699999, \n        -0.072229385376000002, \n        2.27183389664, \n        0.17199504375499999, \n        -0.066973358392699994, \n        2.2622566223099998, \n        0.17388081550600001, \n        -0.084789365529999994, \n        2.2291870117200001, \n        0.15810251236, \n        -0.089878469705599998, \n        2.2364246845200002, \n        0.15846347808799999, \n        -0.084926366806000006, \n        2.2414231300399998, \n        0.16326987743400001, \n        -0.079316645860700002, \n        2.2333054542499999, \n        0.162672877312, \n        -0.078898191451999999, \n        2.2459218501999998, \n        0.16766643524200001, \n        -0.072945207357399997, \n        2.2370042800899999, \n        0.166887283325, \n        -0.070718050003099997, \n        2.2494008541100001, \n        0.17124342918400001, \n        -0.064776659011800006, \n        2.2398436069500001, \n        0.17038965225200001, \n        -0.061462253332100002, \n        2.2523798942600002, \n        0.17441093921699999, \n        -0.055709809064900001, \n        2.24226284027, \n        0.173536419868, \n        -0.073888421058699999, \n        2.2149112224600001, \n        0.154178857803, \n        -0.079456210136400002, \n        2.2219889164, \n        0.15668129921000001, \n        -0.073427885770800005, \n        2.2251677513099999, \n        0.16088902950299999, \n        -0.067270487546900001, \n        2.2170906066899998, \n        0.15788996219599999, \n        -0.066697835922199994, \n        2.2280073165899998, \n        0.16480886936200001, \n        -0.060167431831399998, \n        2.2190299034100001, \n        0.16139519214600001, \n        -0.058564901351899998, \n        2.2301864623999998, \n        0.16815268993400001, \n        -0.052095055580099997, \n        2.22048902512, \n        0.164489388466, \n        -0.049730151891699999, \n        2.2320261001600001, \n        0.17120850086200001, \n        -0.043537616729700003, \n        2.2217288017299999, \n        0.16737782955200001, \n        -0.062191605567900002, \n        2.20123529434, \n        0.14641749858899999, \n        -0.0680962502956, \n        2.2080132961299999, \n        0.15057373046899999, \n        -0.060854792594900002, \n        2.2091329097700001, \n        0.15364670753500001, \n        -0.054310202598599998, \n        2.20123529434, \n        0.148781657219, \n        -0.053365468978900002, \n        2.2101125717199999, \n        0.15661084651900001, \n        -0.0464276075363, \n        2.20123529434, \n        0.15114140510599999, \n        -0.045379877090500002, \n        2.2108526229900001, \n        0.159357666969, \n        -0.0385419130325, \n        2.20123529434, \n        0.15349161624900001, \n        -0.0371459722519, \n        2.2114720344499998, \n        0.161995530128, \n        -0.030655145645099999, \n        2.20123529434, \n        0.155837416649, \n        -0.14867028594000001, \n        2.2050142288200001, \n        -0.080192327499400001, \n        -0.14140331745099999, \n        2.2106323242200001, \n        -0.0942178964615, \n        -0.14401075243899999, \n        2.2165503501899999, \n        -0.091987967491099998, \n        -0.15175318718, \n        2.2114524841300001, \n        -0.077685236930799997, \n        -0.13366699218799999, \n        2.2164704799699999, \n        -0.10843276977500001, \n        -0.13575077056900001, \n        2.2218089103700001, \n        -0.106453299522, \n        -0.13667833805099999, \n        2.2271473407700002, \n        -0.10463190078700001, \n        -0.145310372114, \n        2.2225089073199999, \n        -0.089888691902200002, \n        -0.153386473656, \n        2.21799039841, \n        -0.075287938117999997, \n        -0.143994688988, \n        2.22856712341, \n        -0.088049769401600003, \n        -0.15212067961699999, \n        2.2247080802900001, \n        -0.073109745979300006, \n        -0.13529396057099999, \n        2.2324857711799999, \n        -0.103128194809, \n        -0.13275349140199999, \n        2.2378244399999998, \n        -0.101782917976, \n        -0.14137157797800001, \n        2.2346649169899999, \n        -0.086341500282300004, \n        -0.14940533042000001, \n        2.23154616356, \n        -0.071041345596300001, \n        -0.16042351722699999, \n        2.1950569152799999, \n        -0.053303480148299998, \n        -0.154999226332, \n        2.1998357772800001, \n        -0.066544651985200001, \n        -0.15846109390300001, \n        2.20669364929, \n        -0.063706755638099993, \n        -0.16417142748800001, \n        2.2022547721899999, \n        -0.050090074539200002, \n        -0.16035091876999999, \n        2.2136917114300001, \n        -0.060972571373000002, \n        -0.16624402999900001, \n        2.2096529007000001, \n        -0.046987652778600002, \n        -0.159096479416, \n        2.22100901604, \n        -0.058445930480999997, \n        -0.164965987206, \n        2.21745061874, \n        -0.044107079505900003, \n        -0.156270235777, \n        2.2284669876100001, \n        -0.056023240089400003, \n        -0.162012457848, \n        2.2254676818800001, \n        -0.041337370872500001, \n        -0.168693870306, \n        2.1866598129299999, \n        -0.028153896331799998, \n        -0.16497716307599999, \n        2.1906785965000002, \n        -0.0404971837997, \n        -0.168921589851, \n        2.1981363296500001, \n        -0.036873221397399999, \n        -0.17274844646500001, \n        2.1942973136899999, \n        -0.024093747139000001, \n        -0.17110630869900001, \n        2.2058339119000001, \n        -0.033378243446400002, \n        -0.17497774958599999, \n        2.2022547721899999, \n        -0.020189642906200001, \n        -0.16977170109699999, \n        2.21405124664, \n        -0.030141711235, \n        -0.17355737090100001, \n        2.2107923030899999, \n        -0.016598224639899999, \n        -0.166677683592, \n        2.2225086689000002, \n        -0.027033805847199999, \n        -0.170311778784, \n        2.2196497917200002, \n        -0.0131628513336, \n        -0.17375111579899999, \n        2.17968177795, \n        -0.0049700736999500001, \n        -0.17160716652899999, \n        2.1830005645799999, \n        -0.016302227973900001, \n        -0.175689190626, \n        2.1907584667200002, \n        -0.011788845062299999, \n        -0.17778095602999999, \n        2.1874990463300001, \n        3.2186508178699998e-06, \n        -0.17789909243599999, \n        2.1988759040799999, \n        -0.0074664354324300002, \n        -0.17991068959199999, \n        2.1957166194900002, \n        0.0047461986541700004, \n        -0.17636573314699999, \n        2.2076933383899999, \n        -0.0035250186920199999, \n        -0.17824032902699999, \n        2.2047138214099999, \n        0.0090290307998700005, \n        -0.172960549593, \n        2.2168507576000001, \n        0.00022566318512, \n        -0.174670010805, \n        2.21411132812, \n        0.013081789016700001, \n        -0.17586505413100001, \n        2.17398333549, \n        0.016021251678499999, \n        -0.17515909671800001, \n        2.1766829490699999, \n        0.0058139562606799996, \n        -0.17906090617199999, \n        2.1845002174400001, \n        0.011244893073999999, \n        -0.17956614494299999, \n        2.1817610263799998, \n        0.0218989849091, \n        -0.18105256557499999, \n        2.19277763367, \n        0.0164031982422, \n        -0.18136537075, \n        2.1900186538700002, \n        0.027459740638699999, \n        -0.17922425270100001, \n        2.20189523697, \n        0.0210155248642, \n        -0.17936086654700001, \n        2.1992156505599998, \n        0.032386064529400002, \n        -0.17548605799700001, \n        2.2114720344499998, \n        0.025354981422399999, \n        -0.17545446753499999, \n        2.2088928222700002, \n        0.036995530128500001, \n        -0.17530584335300001, \n        2.1693849563600001, \n        0.034593105316200003, \n        -0.17590263485900001, \n        2.1715440750099999, \n        0.025623917579699999, \n        -0.17933404445600001, \n        2.1792616844200001, \n        0.031927227973899998, \n        -0.178401321173, \n        2.1769824028000002, \n        0.041292428970299999, \n        -0.18088936805700001, \n        2.18747901917, \n        0.0378702878952, \n        -0.17966496944400001, \n        2.1851201057399998, \n        0.047590374946599998, \n        -0.178693026304, \n        2.1966967582699999, \n        0.043092012405399997, \n        -0.177264302969, \n        2.1942973136899999, \n        0.053084731102000002, \n        -0.174620866776, \n        2.2064137458799999, \n        0.047952890396099998, \n        -0.17303153872499999, \n        2.2039942741399998, \n        0.058177471160900003, \n        -0.17234298586800001, \n        2.1657457351699998, \n        0.050519108772300002, \n        -0.17410799861000001, \n        2.1674454212200001, \n        0.042901277542099998, \n        -0.17680561542500001, \n        2.1749234199499998, \n        0.0499569177628, \n        -0.17458364367500001, \n        2.1730637550399998, \n        0.057883024215699998, \n        -0.17773231864, \n        2.1829409599299998, \n        0.056574463844300003, \n        -0.17513215541800001, \n        2.1809413433099998, \n        0.064778089523299998, \n        -0.17511749267599999, \n        2.1920380592300002, \n        0.062315821647600002, \n        -0.17229616642000001, \n        2.18993854523, \n        0.070736765861500003, \n        -0.17073202133199999, \n        2.2016952037799999, \n        0.0676188468933, \n        -0.16776835918399999, \n        2.1994557380700002, \n        0.076226830482499994, \n        -0.16724666953100001, \n        2.16290688515, \n        0.063572645187399995, \n        -0.17004463076599999, \n        2.1642265319799998, \n        0.057419180870099999, \n        -0.17177271843, \n        2.1714043617200001, \n        0.065032601356500006, \n        -0.16840991377799999, \n        2.16992473602, \n        0.071368455886800006, \n        -0.17190453410100001, \n        2.1791417598699998, \n        0.072155714034999999, \n        -0.16808977723099999, \n        2.1774821281399999, \n        0.078662753105200003, \n        -0.16884341836, \n        2.1879594326, \n        0.078298807144199997, \n        -0.16480243206, \n        2.1861200332599999, \n        0.084953904151900003, \n        -0.16418623924299999, \n        2.1973366737400002, \n        0.0839520692825, \n        -0.16003167629199999, \n        2.1952967643700001, \n        0.090743660926800002, \n        -0.16028678417200001, \n        2.1607077121699998, \n        0.073526382446299998, \n        -0.16398286819499999, \n        2.1617269515999999, \n        0.068951129913300005, \n        -0.16453245282199999, \n        2.16860485077, \n        0.076852679252600004, \n        -0.16017767787000001, \n        2.1674454212200001, \n        0.081448316574099996, \n        -0.163728356361, \n        2.1760029792800002, \n        0.084253907203700004, \n        -0.15886089205699999, \n        2.1746633052800002, \n        0.0888838768005, \n        -0.16021645069099999, \n        2.1844205856299999, \n        0.090653300285299998, \n        -0.15512856841100001, \n        2.1828408241299999, \n        0.095348000526399995, \n        -0.15535044670100001, \n        2.1933574676499998, \n        0.096551537513700006, \n        -0.150188595057, \n        2.1915178299, \n        0.101326107979, \n        -0.151732951403, \n        2.15900802612, \n        0.080154180526699995, \n        -0.156192183495, \n        2.1598076820399998, \n        0.077270388603199999, \n        -0.15538224577900001, \n        2.16642570496, \n        0.085116744041400003, \n        -0.150183647871, \n        2.1655459403999999, \n        0.087820887565599998, \n        -0.15352723002400001, \n        2.1734833717300002, \n        0.092508196830699996, \n        -0.147768139839, \n        2.1724441051499999, \n        0.095081806182900006, \n        -0.149582028389, \n        2.1814212799099999, \n        0.098990082740799998, \n        -0.14362025260899999, \n        2.18012142181, \n        0.10153090953799999, \n        -0.144591778517, \n        2.1897785663599998, \n        0.10501718521099999, \n        -0.13860595226299999, \n        2.1881589889500002, \n        0.107574343681, \n        -0.141855329275, \n        2.15764856339, \n        0.083229184150700006, \n        -0.14694285392799999, \n        2.1583082675899998, \n        0.082149982452400003, \n        -0.14461886882800001, \n        2.1647663116500002, \n        0.089522957801800002, \n        -0.138725280762, \n        2.1641063690200002, \n        0.0901851654053, \n        -0.141623824835, \n        2.1715440750099999, \n        0.096559047699000006, \n        -0.13513457775099999, \n        2.1707844734199999, \n        0.096895456314100001, \n        -0.1372859478, \n        2.1789419650999999, \n        0.102921724319, \n        -0.13062295317600001, \n        2.1779026985200001, \n        0.10311400890400001, \n        -0.13227689266199999, \n        2.1866397857700002, \n        0.108947515488, \n        -0.12565064430199999, \n        2.1852397918699999, \n        0.109086871147, \n        -0.13102170825000001, \n        2.1564888954199999, \n        0.083025336265600005, \n        -0.136504292488, \n        2.1570687294000002, \n        0.083363413810700004, \n        -0.132539749146, \n        2.1635465621900001, \n        0.089770317077599998, \n        -0.12620830535899999, \n        2.1630268096899998, \n        0.088816404342699995, \n        -0.12834084034000001, \n        2.1701645851100002, \n        0.096045851707500005, \n        -0.121394962072, \n        2.1695847511299999, \n        0.094603419303899997, \n        -0.123673915863, \n        2.1770024299599999, \n        0.102059602737, \n        -0.116582006216, \n        2.17614269257, \n        0.100381493568, \n        -0.11877271533, \n        2.18394041061, \n        0.10794210434, \n        -0.11176919937099999, \n        2.1827206611599999, \n        0.106155276299, \n        -0.14426600933100001, \n        2.2094128131900002, \n        -0.079527139663699994, \n        -0.13881751895, \n        2.2189500331900001, \n        -0.087805986404400002, \n        -0.13901141285900001, \n        2.2253880500799998, \n        -0.086896300315899996, \n        -0.14538288116500001, \n        2.2163105011000002, \n        -0.078341007232700002, \n        -0.132957011461, \n        2.2287669181799998, \n        -0.095913290977499996, \n        -0.132162690163, \n        2.2347450256300001, \n        -0.095257282257100007, \n        -0.13190639019, \n        2.2402234077499998, \n        -0.093686103820800004, \n        -0.13941386342000001, \n        2.2314863205000002, \n        -0.085142493247999995, \n        -0.14639997482299999, \n        2.2229685783400002, \n        -0.076389074325600007, \n        -0.14023384451900001, \n        2.2368445396399999, \n        -0.081700086593599994, \n        -0.147216916084, \n        2.22916698456, \n        -0.072906613349900007, \n        -0.132725685835, \n        2.2447419166599998, \n        -0.090285181999200007, \n        -0.13408267498000001, \n        2.2487807273899998, \n        -0.085968732833899997, \n        -0.14126217365300001, \n        2.2418630123100001, \n        -0.077413320541400002, \n        -0.14793416857700001, \n        2.2351050376899999, \n        -0.068658471107499994, \n        -0.152734041214, \n        2.19211769104, \n        -0.062017083168000003, \n        -0.14889001846300001, \n        2.2004752159100001, \n        -0.070905804634099998, \n        -0.15080022811900001, \n        2.2077732086199999, \n        -0.069396495819099999, \n        -0.15531387925099999, \n        2.1997356414799998, \n        -0.060145378112799998, \n        -0.15234276652299999, \n        2.2149310112, \n        -0.067216753959700004, \n        -0.15729811787600001, \n        2.20735359192, \n        -0.057711482048000001, \n        -0.15315055847199999, \n        2.2218689918500001, \n        -0.063696146011400001, \n        -0.15809047222100001, \n        2.2149710655199999, \n        -0.054153800010699998, \n        -0.15359088778499999, \n        2.2286870479599998, \n        -0.0595052242279, \n        -0.15828725695599999, \n        2.2225689888, \n        -0.050033688545200003, \n        -0.158258765936, \n        2.17706251144, \n        -0.043739795684799999, \n        -0.15584218502, \n        2.18432044983, \n        -0.052936434745800003, \n        -0.15897512435899999, \n        2.192237854, \n        -0.050670146942100001, \n        -0.16183456778499999, \n        2.1852197647099998, \n        -0.041052937507600001, \n        -0.16132113337500001, \n        2.20025539398, \n        -0.047960162162800003, \n        -0.16446733474700001, \n        2.1935777664199998, \n        -0.038049101829499998, \n        -0.162093043327, \n        2.2084531784100001, \n        -0.044363737106299997, \n        -0.16521415114400001, \n        2.2023348808300001, \n        -0.0344114303589, \n        -0.16207787394500001, \n        2.2167706489599999, \n        -0.0403240919113, \n        -0.16501793265299999, \n        2.2112920284299999, \n        -0.0304567813873, \n        -0.161193728447, \n        2.1641063690200002, \n        -0.025299072265599999, \n        -0.16002789139699999, \n        2.1703243255600002, \n        -0.034502148628200002, \n        -0.16394293308300001, \n        2.17870187759, \n        -0.031376481056200001, \n        -0.16535127162900001, \n        2.1726441383399999, \n        -0.021723151207, \n        -0.16679218411400001, \n        2.1873593330399999, \n        -0.0280648469925, \n        -0.168351560831, \n        2.1815609931900002, \n        -0.018093943595900001, \n        -0.167510032654, \n        2.1965765953099998, \n        -0.024381637573199999, \n        -0.16903695464099999, \n        2.191198349, \n        -0.014358758926399999, \n        -0.16716215014499999, \n        2.20609378815, \n        -0.020512461662299999, \n        -0.16856488585500001, \n        2.2011952400200001, \n        -0.0105708837509, \n        -0.161892980337, \n        2.1531100273099999, \n        -0.0072988271713299996, \n        -0.161800742149, \n        2.1583681106600001, \n        -0.016206145286599999, \n        -0.166110485792, \n        2.1670453548399999, \n        -0.0121750831604, \n        -0.16653791070000001, \n        2.16190719604, \n        -0.0028147697448699998, \n        -0.16930472850799999, \n        2.1761829853100001, \n        -0.0082225799560500003, \n        -0.170619487762, \n        2.17120432854, \n        0.0014622211456299999, \n        -0.169850945473, \n        2.1861798763300002, \n        -0.0044281482696500001, \n        -0.17027959227600001, \n        2.1815009117100002, \n        0.0053256750106799996, \n        -0.16928172111500001, \n        2.19659662247, \n        -0.00071251392364500002, \n        -0.16936668753600001, \n        2.1922779083299999, \n        0.0089823007583600002, \n        -0.16274702549, \n        2.1439526081100002, \n        0.00965738296509, \n        -0.161881089211, \n        2.14831113815, \n        0.00134742259979, \n        -0.16784369945499999, \n        2.15720844269, \n        0.0062750577926599998, \n        -0.16985809802999999, \n        2.1529097557100001, \n        0.0150122642517, \n        -0.171857684851, \n        2.1666457653000002, \n        0.0108745098114, \n        -0.17269906401599999, \n        2.16244697571, \n        0.019927382469199999, \n        -0.17108297348000001, \n        2.1771626472499999, \n        0.0148178339005, \n        -0.17166674137099999, \n        2.1731638908400002, \n        0.023963689804100002, \n        -0.16928985714899999, \n        2.1882390975999999, \n        0.018433332443200001, \n        -0.16955137252800001, \n        2.1844601631199998, \n        0.027560114860500001, \n        -0.162906616926, \n        2.1365146636999999, \n        0.024965763092, \n        -0.164192199707, \n        2.1400337219200001, \n        0.017555475235, \n        -0.17135250568400001, \n        2.14903116226, \n        0.0233143568039, \n        -0.16981947421999999, \n        2.1455519199399999, \n        0.031099081039400001, \n        -0.17309173941600001, \n        2.1586480140700002, \n        0.028534412384000001, \n        -0.17226037383100001, \n        2.1552290916399999, \n        0.036609888076799997, \n        -0.171907901764, \n        2.1695046424900002, \n        0.032678008079499998, \n        -0.17004284262700001, \n        2.1661460399600001, \n        0.040876150131200002, \n        -0.16956016421299999, \n        2.1809616088900001, \n        0.036282420158399997, \n        -0.166682928801, \n        2.1777024269099998, \n        0.044520139694200003, \n        -0.15772637724899999, \n        2.1306366920499999, \n        0.038022875785799999, \n        -0.161330908537, \n        2.1333756446800001, \n        0.0318135023117, \n        -0.166975736618, \n        2.1424531936600002, \n        0.038283705711400003, \n        -0.16312372684500001, \n        2.1397337913499999, \n        0.0447858572006, \n        -0.17024636268599999, \n        2.1521499156999999, \n        0.044065952301000001, \n        -0.16522109508499999, \n        2.1494309902199999, \n        0.050817012786899998, \n        -0.167905300856, \n        2.16310691833, \n        0.048473238944999997, \n        -0.162813395262, \n        2.1603875160200001, \n        0.055384397506700003, \n        -0.16450870037099999, \n        2.1747033596000001, \n        0.052192687988299999, \n        -0.160261631012, \n        2.1719641685500002, \n        0.059219837188699997, \n        -0.151015400887, \n        2.12619805336, \n        0.048224449157700001, \n        -0.15437558293299999, \n        2.12825703621, \n        0.0435183048248, \n        -0.15904840827, \n        2.1373543739300001, \n        0.050523519516000003, \n        -0.15521410107600001, \n        2.1353352069899998, \n        0.0554139614105, \n        -0.16021743416799999, \n        2.1470518112199999, \n        0.056776404380799998, \n        -0.15561446547499999, \n        2.1450119018599998, \n        0.061857581138600001, \n        -0.15833997726400001, \n        2.1579484939600002, \n        0.0615249872208, \n        -0.15457248687700001, \n        2.1558089256300002, \n        0.066810131073000004, \n        -0.156912058592, \n        2.1694450378400001, \n        0.065521359443699995, \n        -0.15388855338099999, \n        2.1671657562300002, \n        0.071017146110500001, \n        -0.14456012844999999, \n        2.1230788230900002, \n        0.054967045784000003, \n        -0.14771974086799999, \n        2.1244983673100002, \n        0.052065968513499997, \n        -0.15143486857399999, \n        2.1336357593500002, \n        0.0593745708466, \n        -0.14768943190600001, \n        2.1322760582, \n        0.062323570251500003, \n        -0.15149042010300001, \n        2.14329242706, \n        0.065974354743999999, \n        -0.147695541382, \n        2.1418933868400001, \n        0.069039583206200003, \n        -0.15112793445600001, \n        2.1539494991299999, \n        0.071155071258499999, \n        -0.14780437946300001, \n        2.1523699760400001, \n        0.0744746923447, \n        -0.15075609087899999, \n        2.1651258468600001, \n        0.075626492500299999, \n        -0.14754009246800001, \n        2.1633067130999999, \n        0.079269289970400003, \n        -0.13895404338799999, \n        2.1211395263699999, \n        0.057646989822399998, \n        -0.14158809184999999, \n        2.1219792366000001, \n        0.056852579116800001, \n        -0.144038677216, \n        2.1311964988700001, \n        0.064178109169000006, \n        -0.14003369212200001, \n        2.1304366588599999, \n        0.064855575561499998, \n        -0.14417585730599999, \n        2.1407735347700001, \n        0.0709674358368, \n        -0.14083862304700001, \n        2.1399738788599998, \n        0.071670770645099996, \n        -0.14444112777699999, \n        2.1510701179499998, \n        0.0766843557358, \n        -0.14109504222899999, \n        2.15001058578, \n        0.077699303627000005, \n        -0.14429524540899999, \n        2.1616871356999998, \n        0.081865310668900002, \n        -0.141076803207, \n        2.1602873802200002, \n        0.083334088325500003, \n        -0.133836746216, \n        2.12013983727, \n        0.0563189983368, \n        -0.136380434036, \n        2.1205797195399998, \n        0.057274699211099997, \n        -0.137042194605, \n        2.1299366951000001, \n        0.064273953437799999, \n        -0.13408207893400001, \n        2.1295971870399999, \n        0.063062787056000005, \n        -0.137568026781, \n        2.1394538879399998, \n        0.071063637733499996, \n        -0.134330481291, \n        2.1390538215600001, \n        0.069801330566400005, \n        -0.13782164454500001, \n        2.1492109298700002, \n        0.077434539794900004, \n        -0.134584754705, \n        2.14853096008, \n        0.076529741287199998, \n        -0.13793909549700001, \n        2.1591079235100001, \n        0.083595752716099994, \n        -0.13484188914299999, \n        2.1580080985999999, \n        0.083253383636500006, \n        -0.16170835494999999, \n        2.1564288139299999, \n        -0.070342898368800005, \n        -0.160250544548, \n        2.1628665924099999, \n        -0.078842997550999994, \n        -0.16015219688400001, \n        2.16904497147, \n        -0.078369975090000002, \n        -0.16233077645300001, \n        2.1627469062800002, \n        -0.069565415382400006, \n        -0.15858888626100001, \n        2.16948461533, \n        -0.0873577594757, \n        -0.15774020552599999, \n        2.1754829883600002, \n        -0.087161064147899994, \n        -0.15739390253999999, \n        2.1810612678500001, \n        -0.085996031761200006, \n        -0.16030216217000001, \n        2.17488336563, \n        -0.077000021934499993, \n        -0.16296181082700001, \n        2.1688249111200002, \n        -0.067968845367399999, \n        -0.16094839572899999, \n        2.18010163307, \n        -0.073837041854900004, \n        -0.16361019015299999, \n        2.1744830608400001, \n        -0.064733266830399996, \n        -0.15805312991100001, \n        2.18581986427, \n        -0.082895278930700006, \n        -0.15459549426999999, \n        2.1901586055800002, \n        -0.082447528839100004, \n        -0.15722370147699999, \n        2.1849801540399998, \n        -0.073399066925000006, \n        -0.159647941589, \n        2.17990159988, \n        -0.064299583435100005, \n        -0.16342470049899999, \n        2.1444323062900001, \n        -0.053472280502299997, \n        -0.16275826096500001, \n        2.1502704620399999, \n        -0.061872363090500003, \n        -0.164042264223, \n        2.1566886901900002, \n        -0.060735106468199997, \n        -0.165310263634, \n        2.15093040466, \n        -0.051928043365499998, \n        -0.165124982595, \n        2.1630067825300001, \n        -0.058867096900900001, \n        -0.16681301593799999, \n        2.1574082374599999, \n        -0.0497514009476, \n        -0.165804952383, \n        2.1690649986300001, \n        -0.055537223815899997, \n        -0.16754996776600001, \n        2.16386651993, \n        -0.046308875083899997, \n        -0.16166457533799999, \n        2.1750032901799998, \n        -0.0550982952118, \n        -0.163285106421, \n        2.1703042984000001, \n        -0.045854926109299997, \n        -0.16370514035200001, \n        2.1336357593500002, \n        -0.037047386169400003, \n        -0.163732141256, \n        2.13887405396, \n        -0.045183539390599999, \n        -0.166158556938, \n        2.1454322338099998, \n        -0.043195009231600003, \n        -0.16661107540100001, \n        2.1402139663700002, \n        -0.034585356712300001, \n        -0.16804781556100001, \n        2.1520698070500002, \n        -0.040678739547700002, \n        -0.168851017952, \n        2.1469717025800001, \n        -0.0317059755325, \n        -0.168862432241, \n        2.1588881015800001, \n        -0.0371072292328, \n        -0.16975930333100001, \n        2.1541295051599998, \n        -0.027991533279399999, \n        -0.16452050208999999, \n        2.1657857894900001, \n        -0.036629438400300002, \n        -0.16538271307899999, \n        2.1614871025100002, \n        -0.027480840683, \n        -0.162746042013, \n        2.12403869629, \n        -0.021396994590800002, \n        -0.163368314505, \n        2.1286973953200001, \n        -0.0291048288345, \n        -0.166691511869, \n        2.13525509834, \n        -0.026149511337300001, \n        -0.16642355918900001, \n        2.1305966377300001, \n        -0.017937421798700001, \n        -0.16924467682800001, \n        2.1421329975100001, \n        -0.022889852523799999, \n        -0.169250369072, \n        2.1375541686999999, \n        -0.0142871141434, \n        -0.170258373022, \n        2.1496109962499999, \n        -0.019021153450000002, \n        -0.17037633061400001, \n        2.1453120708500002, \n        -0.0102555751801, \n        -0.165882915258, \n        2.1573882103000002, \n        -0.018469452858000002, \n        -0.166032671928, \n        2.1534895896899999, \n        -0.0096548795700099992, \n        -0.16074326634399999, \n        2.1156411171, \n        -0.0068491697311399997, \n        -0.16186296939799999, \n        2.1196999549900002, \n        -0.0139646530151, \n        -0.16583088040399999, \n        2.1262178421, \n        -0.0099987983703599993, \n        -0.16493734717399999, \n        2.1221189498899999, \n        -0.0023838281631500002, \n        -0.168889760971, \n        2.1332354545599999, \n        -0.0059546232223500004, \n        -0.16818460822100001, \n        2.1291971206700002, \n        0.00205087661743, \n        -0.17013040185, \n        2.1412732601200002, \n        -0.0017540454864499999, \n        -0.170463472605, \n        2.1374745369000001, \n        0.0064240694046000003, \n        -0.166671872139, \n        2.1498107910200002, \n        -0.00109684467316, \n        -0.166724592447, \n        2.1463317871099998, \n        0.0071451663970900003, \n        -0.157892912626, \n        2.10838317871, \n        0.0062674283981299997, \n        -0.15941190719600001, \n        2.1118621826199999, \n        -9.1433525085399996e-05, \n        -0.16376671195, \n        2.1183202266699999, \n        0.0048575401306199997, \n        -0.16234302520800001, \n        2.1148014068599998, \n        0.0116752386093, \n        -0.168134063482, \n        2.1254382133499998, \n        0.0096724033355700002, \n        -0.166783452034, \n        2.1219792366000001, \n        0.016853570938099999, \n        -0.17005905508999999, \n        2.1339156627700002, \n        0.014219760894799999, \n        -0.16882100701300001, \n        2.1306166648899998, \n        0.0215730667114, \n        -0.16613483429000001, \n        2.14305281639, \n        0.015011310577399999, \n        -0.164996623993, \n        2.1400136947599999, \n        0.022441864013699998, \n        -0.154391169548, \n        2.1022851467099999, \n        0.0176248550415, \n        -0.156211256981, \n        2.1051843166399999, \n        0.0121865272522, \n        -0.160689473152, \n        2.11160230637, \n        0.018019318580600002, \n        -0.158830285072, \n        2.1086831092799998, \n        0.023839831352200001, \n        -0.16515633463900001, \n        2.11880016327, \n        0.023537158966100001, \n        -0.16327488422399999, \n        2.1159210205100001, \n        0.029666543006900001, \n        -0.16728901863100001, \n        2.1275975704199999, \n        0.028425455093399998, \n        -0.16548046469700001, \n        2.1248183250400001, \n        0.0347168445587, \n        -0.163564771414, \n        2.1371746063199999, \n        0.029377102851900001, \n        -0.16185089945799999, \n        2.1345753669700001, \n        0.035757303237900002, \n        -0.150433927774, \n        2.09732651711, \n        0.026894330978400001, \n        -0.152457207441, \n        2.0996658801999999, \n        0.0225410461426, \n        -0.15678891539600001, \n        2.10608386993, \n        0.029086828231800001, \n        -0.15458932518999999, \n        2.1037845611599999, \n        0.033710122108500003, \n        -0.16116091608999999, \n        2.11334180832, \n        0.035184860229500001, \n        -0.15793773531899999, \n        2.1110825538600002, \n        0.040035605430600002, \n        -0.16341245174399999, \n        2.1223392486599999, \n        0.040388464927699999, \n        -0.160752177238, \n        2.1201198100999998, \n        0.045380830764799998, \n        -0.15886089205699999, \n        2.1321759223900001, \n        0.040111660957299997, \n        -0.155942320824, \n        2.1300168037399998, \n        0.045508146286000001, \n        -0.146217465401, \n        2.0935077667200002, \n        0.0337483882904, \n        -0.14834579825399999, \n        2.095287323, \n        0.030643701553299998, \n        -0.15225526690499999, \n        2.1017854213699998, \n        0.037660121917699997, \n        -0.14981034398099999, \n        2.1001060008999999, \n        0.040886163711500001, \n        -0.155430287123, \n        2.1091432571399999, \n        0.044161677360500001, \n        -0.15275207161900001, \n        2.1075234413100001, \n        0.047506451606799997, \n        -0.15713632106799999, \n        2.1181802749599998, \n        0.049634456634500002, \n        -0.15439197421100001, \n        2.11654067039, \n        0.053090095519999998, \n        -0.153173774481, \n        2.12807750702, \n        0.049865365028399999, \n        -0.14920672774300001, \n        2.1263778209700002, \n        0.053428411483800002, \n        -0.14193749427800001, \n        2.0907883644099998, \n        0.037857294082600003, \n        -0.14407309889799999, \n        2.09200811386, \n        0.036166310310399997, \n        -0.147278308868, \n        2.0987462997400002, \n        0.043339133262599999, \n        -0.14468312263499999, \n        2.0977067947400001, \n        0.044968485832199999, \n        -0.14992532134100001, \n        2.10622382164, \n        0.050012826919599997, \n        -0.146971583366, \n        2.1052641868599999, \n        0.051624417305000003, \n        -0.151455849409, \n        2.1151812076600001, \n        0.055688619613599999, \n        -0.148345351219, \n        2.1141414642299998, \n        0.057370305061300003, \n        -0.14625418186200001, \n        2.1248984336899999, \n        0.056138038635300001, \n        -0.143407255411, \n        2.12365865707, \n        0.058338522911099998, \n        -0.13779035210599999, \n        2.0891489982599998, \n        0.038894057273900003, \n        -0.13983520865400001, \n        2.08982896805, \n        0.038780331611600001, \n        -0.142048478127, \n        2.0969667434699999, \n        0.045723915100100002, \n        -0.13939809799200001, \n        2.0965867042499999, \n        0.045556187629699998, \n        -0.14391255378699999, \n        2.10464453697, \n        0.052284002304099998, \n        -0.14077010750800001, \n        2.1043844222999999, \n        0.051935195922900003, \n        -0.14507794380200001, \n        2.1134018898, \n        0.058076500892599997, \n        -0.14167043566699999, \n        2.1129620075200002, \n        0.057747125625599999, \n        -0.14003932476, \n        2.1226587295499999, \n        0.059161782264700001, \n        -0.137716054916, \n        2.1219191551200001, \n        0.058789849281300002, \n        -0.133906602859, \n        2.0884895324700001, \n        0.036995768547100003, \n        -0.13582798838599999, \n        2.0887489318800001, \n        0.038157582283000001, \n        -0.13675570488, \n        2.0965068340299999, \n        0.044414997100799998, \n        -0.13411733508099999, \n        2.0966067314100001, \n        0.042787075042699997, \n        -0.1375657022, \n        2.1044645309400001, \n        0.0505208969116, \n        -0.134330481291, \n        2.1047246456100002, \n        0.048573970794700001, \n        -0.13814032077800001, \n        2.1128420829799999, \n        0.056323170661899999, \n        -0.134549021721, \n        2.1128618717199998, \n        0.054352045059200001, \n        -0.13397809863099999, \n        2.1213991642000001, \n        0.057488203048699997, \n        -0.130150705576, \n        2.1209993362400001, \n        0.056504249572800001, \n        -0.15390574932100001, \n        2.14163327217, \n        -0.082120656967200001, \n        -0.150577753782, \n        2.1484513282800002, \n        -0.091082334518400004, \n        -0.152280211449, \n        2.1528899669600001, \n        -0.087790489196800006, \n        -0.156261205673, \n        2.14647197723, \n        -0.078880548477199997, \n        -0.14690181613, \n        2.15540933609, \n        -0.100142121315, \n        -0.14791557192800001, \n        2.1594278812400001, \n        -0.096771717071499994, \n        -0.148526161909, \n        2.16374635696, \n        -0.093520045280499994, \n        -0.15340006351499999, \n        2.1576685905500002, \n        -0.084553003311199998, \n        -0.157864481211, \n        2.15167021751, \n        -0.075637817382799996, \n        -0.15335473418199999, \n        2.1631269455000002, \n        -0.081425070762599999, \n        -0.15796387195600001, \n        2.1576282978100001, \n        -0.072389602661100005, \n        -0.148330658674, \n        2.1686849594100002, \n        -0.090504646301300007, \n        -0.14773198962199999, \n        2.1739435195899999, \n        -0.087607622146600006, \n        -0.15272650122600001, \n        2.1689450740799998, \n        -0.078351259231599996, \n        -0.157311290503, \n        2.1639466285700002, \n        -0.069138765335099994, \n        -0.158520549536, \n        2.1289772987400002, \n        -0.064810037612899996, \n        -0.156537741423, \n        2.1351552009599999, \n        -0.073355436325099999, \n        -0.15947446227100001, \n        2.14029359818, \n        -0.0701135396957, \n        -0.161967128515, \n        2.1343750953699998, \n        -0.061519503593399999, \n        -0.161510080099, \n        2.1458520889299999, \n        -0.066824793815599998, \n        -0.16438412666300001, \n        2.1402139663700002, \n        -0.058150529861500003, \n        -0.16174376010899999, \n        2.1522102356000001, \n        -0.063442587852499996, \n        -0.164741486311, \n        2.1469116210900001, \n        -0.054623484611500003, \n        -0.16107654571499999, \n        2.1589879989599998, \n        -0.060013532638499997, \n        -0.16406905651100001, \n        2.1540694236800002, \n        -0.051017761230500003, \n        -0.16072201728800001, \n        2.1175804138199998, \n        -0.048473596572899999, \n        -0.15989971160899999, \n        2.12311887741, \n        -0.0565083026886, \n        -0.16378650069199999, \n        2.1286973953200001, \n        -0.053129792213400001, \n        -0.164979815483, \n        2.1232786178600001, \n        -0.044973969459500003, \n        -0.16653445363, \n        2.1347353458399998, \n        -0.049650907516499997, \n        -0.16800889372800001, \n        2.1294770240799998, \n        -0.041362524032599997, \n        -0.16700458526600001, \n        2.1417331695600001, \n        -0.0459721088409, \n        -0.16858029365499999, \n        2.13669490814, \n        -0.037527561187700002, \n        -0.166335582733, \n        2.1492109298700002, \n        -0.042193174362199999, \n        -0.167922645807, \n        2.1444325447099999, \n        -0.033580899238599998, \n        -0.160880804062, \n        2.10742354393, \n        -0.0333003997803, \n        -0.16103377938300001, \n        2.1123418807999998, \n        -0.040729880332900002, \n        -0.16559413075400001, \n        2.1181001663200001, \n        -0.037083029747, \n        -0.165676593781, \n        2.1132018566099999, \n        -0.029487133026099999, \n        -0.168854832649, \n        2.1244184970900002, \n        -0.0333213806152, \n        -0.16911995410899999, \n        2.1195600032800002, \n        -0.025563478469800002, \n        -0.16951584816000001, \n        2.13181614876, \n        -0.029329776763900001, \n        -0.169858932495, \n        2.1270775794999999, \n        -0.0214182138443, \n        -0.16887724399599999, \n        2.1397535800899998, \n        -0.025223493576000001, \n        -0.168360590935, \n        2.13517522812, \n        -0.017162084579500001, \n        -0.159366607666, \n        2.09850597382, \n        -0.019478917121899999, \n        -0.160309791565, \n        2.1028048992200001, \n        -0.026208877563499999, \n        -0.165274143219, \n        2.1085629463200002, \n        -0.0222173929214, \n        -0.16443407535599999, \n        2.1042046546900002, \n        -0.015303254127500001, \n        -0.16885206103299999, \n        2.1149411201500001, \n        -0.018125176429700001, \n        -0.16809841990499999, \n        2.11056280136, \n        -0.0110424757004, \n        -0.16965660452799999, \n        2.1225190162700001, \n        -0.013832211494400001, \n        -0.16895636916199999, \n        2.1181604862199999, \n        -0.0066115856170699998, \n        -0.16821038723000001, \n        2.1307168006900001, \n        -0.0094213485717799996, \n        -0.167235255241, \n        2.1263980865500001, \n        -0.0021129846572899998, \n        -0.156549692154, \n        2.09080839157, \n        -0.0071978569030800004, \n        -0.158097863197, \n        2.0945072174099999, \n        -0.0131341218948, \n        -0.16320371627800001, \n        2.1001257896399999, \n        -0.0087759494781500004, \n        -0.16163000464400001, \n        2.0963468551600002, \n        -0.0026657581329300002, \n        -0.166907161474, \n        2.1064238548300001, \n        -0.0043519735336299999, \n        -0.165325641632, \n        2.10254478455, \n        0.0019105672836300001, \n        -0.16780552268000001, \n        2.1140015125299998, \n        0.00020432472229, \n        -0.166251391172, \n        2.1100625991799999, \n        0.0065757036209100001, \n        -0.166119664907, \n        2.12223911285, \n        0.00482666492462, \n        -0.16461071372, \n        2.11826038361, \n        0.011285185813899999, \n        -0.15280005335800001, \n        2.0843505859399998, \n        0.0033539533615100001, \n        -0.154768228531, \n        2.08742952347, \n        -0.00169408321381, \n        -0.159760117531, \n        2.09282779694, \n        0.0029968023300199998, \n        -0.15764141082800001, \n        2.0896286964400002, \n        0.0081814527511599993, \n        -0.16340139508199999, \n        2.0989263057700001, \n        0.0077090263366699999, \n        -0.16118228435500001, \n        2.09558701515, \n        0.0130066871643, \n        -0.164341568947, \n        2.10636377335, \n        0.0124633312225, \n        -0.16212305426599999, \n        2.1028850078599999, \n        0.017827510833699999, \n        -0.162749052048, \n        2.1144614219700002, \n        0.017238974571200001, \n        -0.16058170795400001, \n        2.11086249352, \n        0.0226459503174, \n        -0.148488014936, \n        2.0790719985999999, \n        0.0119876861572, \n        -0.15069136023499999, \n        2.0815513133999999, \n        0.0079221725463900008, \n        -0.155320733786, \n        2.0867099761999999, \n        0.012857556343100001, \n        -0.15284523367899999, \n        2.08411073685, \n        0.016994833946200001, \n        -0.15871608257299999, \n        2.0925278663600002, \n        0.017767906189, \n        -0.15605008602100001, \n        2.0897889137300001, \n        0.021956324577299999, \n        -0.15964341163599999, \n        2.09968590736, \n        0.022628545761099999, \n        -0.15694975853000001, \n        2.0967466831200001, \n        0.026827096939100001, \n        -0.158154845238, \n        2.1074833869899998, \n        0.0274642705917, \n        -0.15542566776300001, \n        2.10434436798, \n        0.031652331352199997, \n        -0.14398348331499999, \n        2.0750131607100002, \n        0.0185143947601, \n        -0.14623665809600001, \n        2.0768928527799999, \n        0.0155260562897, \n        -0.15026244521099999, \n        2.08181142807, \n        0.020562410354599998, \n        -0.14761903881999999, \n        2.0798318386100001, \n        0.0235300064087, \n        -0.15323218703300001, \n        2.0873293876600001, \n        0.025535941124000001, \n        -0.15030980110200001, \n        2.0852103233300001, \n        0.028469920158400001, \n        -0.15409004688299999, \n        2.09408760071, \n        0.030383586883499999, \n        -0.151110976934, \n        2.0917284488700001, \n        0.033258199691800001, \n        -0.152620285749, \n        2.10144519806, \n        0.035168528556799999, \n        -0.14969584345799999, \n        2.0988264083899999, \n        0.037970900535599997, \n        -0.13965687155699999, \n        2.0721344947799998, \n        0.022745728492699999, \n        -0.141774773598, \n        2.0734338760400002, \n        0.020928621292099998, \n        -0.14496243, \n        2.0781526565599999, \n        0.025867342948899998, \n        -0.14233958721199999, \n        2.0768127441400002, \n        0.0275437831879, \n        -0.14733073115299999, \n        2.0834107399000001, \n        0.0307229757309, \n        -0.14434242248500001, \n        2.08195137978, \n        0.032258272171000003, \n        -0.148060232401, \n        2.0896890163399999, \n        0.035411834716799998, \n        -0.144984990358, \n        2.0879695415500001, \n        0.036804676055900001, \n        -0.147683173418, \n        2.0964670181299998, \n        0.040017843246499998, \n        -0.144947618246, \n        2.0944075584399999, \n        0.041267156600999999, \n        -0.13587775826500001, \n        2.07043480873, \n        0.0244925022125, \n        -0.13767564296699999, \n        2.0711345672600001, \n        0.023941278457599999, \n        -0.13979792594900001, \n        2.07581329346, \n        0.028529047966000001, \n        -0.137384533882, \n        2.0751333236699998, \n        0.028792619705200001, \n        -0.141392856836, \n        2.08083152771, \n        0.033040046691899999, \n        -0.138529330492, \n        2.0800919532800002, \n        0.033031940460199999, \n        -0.14193296432499999, \n        2.0865898132299998, \n        0.037397265434299998, \n        -0.138951033354, \n        2.0855503082300002, \n        0.037150025367699999, \n        -0.14194548130000001, \n        2.09266805649, \n        0.041677594184900003, \n        -0.13901102542900001, \n        2.0912685394300001, \n        0.041207432746900002, \n        -0.13285565376299999, \n        2.0697350501999998, \n        0.023923993110699999, \n        -0.13430950045600001, \n        2.0700147151900001, \n        0.024375438690200001, \n        -0.13514623045900001, \n        2.07479310036, \n        0.028303384780899998, \n        -0.13299560546899999, \n        2.0746335983300002, \n        0.027438521385200001, \n        -0.13579985499399999, \n        2.0797119140600002, \n        0.032197475433300003, \n        -0.13313722610500001, \n        2.07951164246, \n        0.030950307846099999, \n        -0.13608691096299999, \n        2.0848903656000002, \n        0.0360231399536, \n        -0.13328146934499999, \n        2.0844104290000001, \n        0.034456729888900001, \n        -0.13619065284699999, \n        2.09018874168, \n        0.039814472198499998, \n        -0.13342729210900001, \n        2.0892889499699998, \n        0.037960529327400003, \n        0.16742244362799999, \n        2.1794018745399999, \n        -0.060076236724899999, \n        0.16876578331, \n        2.1862001419100001, \n        -0.0586260557175, \n        0.162441968918, \n        2.1929378509499999, \n        -0.071524977683999999, \n        0.16216340661, \n        2.1865196228000001, \n        -0.072349548339799993, \n        0.15636515617399999, \n        2.19387769699, \n        -0.084877967834499995, \n        0.155516415834, \n        2.1998755931899998, \n        -0.084681272506700003, \n        0.15517035126699999, \n        2.2054541110999999, \n        -0.083516359329199999, \n        0.162898033857, \n        2.1990756988500002, \n        -0.069856286048899999, \n        0.16998282074900001, \n        2.1928777694699999, \n        -0.056459307670599999, \n        0.170946985483, \n        2.1993956565900001, \n        -0.052859187126199997, \n        0.16370940208400001, \n        2.2047340869899998, \n        -0.066498756408699997, \n        0.155829340219, \n        2.2102124691, \n        -0.080415248870799996, \n        0.15699100494400001, \n        2.2145509719800001, \n        -0.076346039771999996, \n        0.16469824314100001, \n        2.2101526260400002, \n        -0.062296628951999999, \n        0.171784520149, \n        2.20581388474, \n        -0.048542499542200003, \n        0.174773454666, \n        2.1665456294999998, \n        -0.037074327468899999, \n        0.177876830101, \n        2.17396354675, \n        -0.034389257430999999, \n        0.17388606071500001, \n        2.1798615455600001, \n        -0.046241641044599997, \n        0.17160236835500001, \n        2.17276382446, \n        -0.048313498497, \n        0.175781130791, \n        2.1870393753099999, \n        -0.043588757515, \n        0.18036910891499999, \n        2.18154096603, \n        -0.031264662742600001, \n        0.181639552116, \n        2.1894986629500002, \n        -0.027262210845900001, \n        0.176899194717, \n        2.1943173408500001, \n        -0.0397744178772, \n        0.177628517151, \n        2.2016348838800002, \n        -0.035379290580700003, \n        0.18229913711500001, \n        2.1976363658900002, \n        -0.022820234298700001, \n        0.17837071418799999, \n        2.15546941757, \n        -0.0162180662155, \n        0.18276679515800001, \n        2.16332674026, \n        -0.0123516321182, \n        0.180812448263, \n        2.1684453487400002, \n        -0.023086547851600001, \n        0.17700612545, \n        2.16080760956, \n        -0.026371598243700001, \n        0.183822721243, \n        2.17638278008, \n        -0.019507408142099999, \n        0.186217993498, \n        2.1715841293299998, \n        -0.0083370208740199993, \n        0.187779068947, \n        2.18064141273, \n        -0.0040266513824499996, \n        0.18524166941600001, \n        2.1849403381300001, \n        -0.015340089798000001, \n        0.185865044594, \n        2.1937775611900001, \n        -0.0108788013458, \n        0.188395112753, \n        2.1901187896700001, \n        0.00043165683746299998, \n        0.178776025772, \n        2.1460919380200001, \n        0.0023888349533099998, \n        0.184029191732, \n        2.1542494297000001, \n        0.0073444843292200003, \n        0.18381440639499999, \n        2.1585879325900001, \n        -0.0022019147872899998, \n        0.17893719673200001, \n        2.1505706310299999, \n        -0.0066268444061300001, \n        0.18763065338099999, \n        2.1671056747400002, \n        0.0022259950637800001, \n        0.188137054443, \n        2.16296696663, \n        0.012161970138500001, \n        0.18995320797000001, \n        2.1728439331099998, \n        0.016703248024, \n        0.189325064421, \n        2.1766028404200002, \n        0.0066603422164900001, \n        0.189958453178, \n        2.18661975861, \n        0.01109790802, \n        0.19062364101400001, \n        2.18328046799, \n        0.021106719970699999, \n        0.17655146122000001, \n        2.13833427429, \n        0.0186429023743, \n        0.18225762247999999, \n        2.1466717719999999, \n        0.024556756019600001, \n        0.18348559737199999, \n        2.1502704620399999, \n        0.016269922256500001, \n        0.17795726656899999, \n        2.1420130729700002, \n        0.0108164548874, \n        0.18781271576899999, \n        2.15916776657, \n        0.021450161933900001, \n        0.18673360347699999, \n        2.1556892395, \n        0.030070424079900002, \n        0.18874958157499999, \n        2.1660859584800001, \n        0.034784078598, \n        0.18973684310899999, \n        2.16932487488, \n        0.0260838270187, \n        0.190459936857, \n        2.1801216602300002, \n        0.030444145202600002, \n        0.18953561782799999, \n        2.1771626472499999, \n        0.039097666740400001, \n        0.172258973122, \n        2.1321160793299998, \n        0.032440185546900001, \n        0.17804503440899999, \n        2.1405334472700002, \n        0.039143085479700003, \n        0.18041929602599999, \n        2.1434125900300001, \n        0.032187104225199999, \n        0.17462849617000001, \n        2.1350350379899998, \n        0.025855064392099999, \n        0.18497619032900001, \n        2.1525299549099999, \n        0.038002967834500002, \n        0.18261587619799999, \n        2.1496908664699999, \n        0.045227050781199998, \n        0.184756159782, \n        2.1603474616999998, \n        0.050071954727200003, \n        0.18706488609300001, \n        2.1630868911699999, \n        0.042786002159100001, \n        0.187919855118, \n        2.1743636131300002, \n        0.047053217887899998, \n        0.185681343079, \n        2.1717441082, \n        0.054297924041700002, \n        0.16646075248700001, \n        2.1273574829099999, \n        0.043677091598500001, \n        0.17198526859300001, \n        2.1357951164200002, \n        0.050961852073699999, \n        0.17520883679400001, \n        2.1379940509800002, \n        0.045407533645599997, \n        0.169512987137, \n        2.1295568942999998, \n        0.0383849143982, \n        0.17972889542600001, \n        2.14717149734, \n        0.051722645759599999, \n        0.176391333342, \n        2.1449723243699998, \n        0.057469725608800003, \n        0.17856085300399999, \n        2.15564894676, \n        0.062423467636100002, \n        0.18189704418200001, \n        2.15786838531, \n        0.056623816490199999, \n        0.18288919329600001, \n        2.16932487488, \n        0.060818076133700001, \n        0.17961215972899999, \n        2.16708564758, \n        0.066600441932699997, \n        0.15971860289600001, \n        2.1239984035499999, \n        0.052249670028699999, \n        0.16467127203900001, \n        2.1323761939999999, \n        0.059870362281800003, \n        0.16844794154199999, \n        2.1339156627700002, \n        0.055788755416900003, \n        0.16317248344400001, \n        2.1255178451500001, \n        0.048302769660899997, \n        0.17267891764599999, \n        2.14305281639, \n        0.062447786331200003, \n        0.16866764426200001, \n        2.1414732932999998, \n        0.066636919975299996, \n        0.170751214027, \n        2.1519703865099999, \n        0.071694970130899996, \n        0.17482125759100001, \n        2.15366983414, \n        0.067453265190100004, \n        0.17591905593900001, \n        2.1650261879000001, \n        0.071631789207500005, \n        0.17187872529000001, \n        2.16316699982, \n        0.075898766517599997, \n        0.15259447693799999, \n        2.1219592094399999, \n        0.0580543279648, \n        0.15669667720800001, \n        2.13025665283, \n        0.065726637840300001, \n        0.16072943806600001, \n        2.1311564445500002, \n        0.063189029693600005, \n        0.15616926550900001, \n        2.1228189468399998, \n        0.055504441261299997, \n        0.16443336010000001, \n        2.1401739120499998, \n        0.070016503334000002, \n        0.16005226969700001, \n        2.1391739845300002, \n        0.0725667476654, \n        0.161915153265, \n        2.1492908000900002, \n        0.077742338180499998, \n        0.16642475128199999, \n        2.1505103111300001, \n        0.075130581855800002, \n        0.167559862137, \n        2.1615071296699999, \n        0.079387784004200004, \n        0.16303157806400001, \n        2.1600277423900001, \n        0.082085847854600005, \n        0.14565083384499999, \n        2.1211595535300001, \n        0.060987710952799999, \n        0.14865493774399999, \n        2.1293768882799999, \n        0.068388700485200002, \n        0.15264710783999999, \n        2.1296768188500002, \n        0.067466020584100006, \n        0.14906498789799999, \n        2.1213991642000001, \n        0.059886455535900003, \n        0.155600398779, \n        2.138474226, \n        0.0742671489716, \n        0.15115335583699999, \n        2.1380543708799999, \n        0.075097680091900001, \n        0.15264049172399999, \n        2.1476316452000002, \n        0.080422043800399995, \n        0.157295942307, \n        2.1483311653100001, \n        0.079512119293199998, \n        0.158362597227, \n        2.1587481498700001, \n        0.083979010581999997, \n        0.15362179279300001, \n        2.1576886177099999, \n        0.085054636001600001, \n        0.13944911956799999, \n        2.1214990615799998, \n        0.0609458684921, \n        0.141139179468, \n        2.12965679169, \n        0.067714571952800007, \n        0.14479431509999999, \n        2.1293768882799999, \n        0.068477392196700002, \n        0.142422050238, \n        2.1211795806899998, \n        0.061345338821400003, \n        0.146787285805, \n        2.1379144191699999, \n        0.075037956237800005, \n        0.142578125, \n        2.1380741596199999, \n        0.074067831039399998, \n        0.14351484179499999, \n        2.1469717025800001, \n        0.079590797424300003, \n        0.14802232384700001, \n        2.1471915245100002, \n        0.080454468727100006, \n        0.148878216743, \n        2.1568083763099999, \n        0.085298895835900002, \n        0.14420029521, \n        2.15614914894, \n        0.084698677062999994, \n        0.134318232536, \n        2.1228189468399998, \n        0.058223128318799999, \n        0.134528964758, \n        2.1309366226200002, \n        0.064014315605200003, \n        0.13776418566699999, \n        2.1302165985100001, \n        0.066081881523100003, \n        0.13680207729300001, \n        2.1220788955700001, \n        0.059776902198799997, \n        0.138601899147, \n        2.13849401474, \n        0.072167277336099997, \n        0.13474211096800001, \n        2.1390538215600001, \n        0.069801211357100004, \n        0.13496065139800001, \n        2.1471915245100002, \n        0.075579285621600004, \n        0.139191508293, \n        2.14703154564, \n        0.077813386917100005, \n        0.13965725898699999, \n        2.1556892395, \n        0.083240389823900002, \n        0.13518163561800001, \n        2.15532898903, \n        0.081353187561000004, \n        0.16535767912900001, \n        2.16460633278, \n        -0.072855234146099998, \n        0.16993966698599999, \n        2.1704444885299998, \n        -0.071188092231800004, \n        0.16566538810699999, \n        2.17832231522, \n        -0.080764770507799996, \n        0.16157317161599999, \n        2.1730036735499998, \n        -0.082171797752399994, \n        0.15748167037999999, \n        2.1816611290000001, \n        -0.091534376144400006, \n        0.16107010841399999, \n        2.1863996982599998, \n        -0.090371370315599997, \n        0.16353747248600001, \n        2.1913583278700002, \n        -0.088968515396099998, \n        0.16850292682599999, \n        2.18388032913, \n        -0.079101920127900002, \n        0.173106878996, \n        2.1765825748399998, \n        -0.069256544113199994, \n        0.17352399230000001, \n        2.18334054947, \n        -0.066806435585000004, \n        0.168831080198, \n        2.1899785995499998, \n        -0.076926589012100005, \n        0.163761734962, \n        2.1967568397499999, \n        -0.087085366249100002, \n        0.16286480426800001, \n        2.2023749351499999, \n        -0.084962010383600003, \n        0.16790428757699999, \n        2.1963367462200001, \n        -0.074494957923899999, \n        0.17256629467000001, \n        2.1903986930800001, \n        -0.064097046852100006, \n        0.16922211646999999, \n        2.1493110656700001, \n        -0.054474711418199998, \n        0.17528185248399999, \n        2.1559886932399999, \n        -0.0523375272751, \n        0.17329046130199999, \n        2.1630067825300001, \n        -0.061674118042000001, \n        0.16758716106400001, \n        2.1567089557600001, \n        -0.063568115234399994, \n        0.17698752880099999, \n        2.16964483261, \n        -0.059453487396200003, \n        0.17963215708700001, \n        2.1630668640100001, \n        -0.049815654754600001, \n        0.18058809638000001, \n        2.1709244251299999, \n        -0.0468561649323, \n        0.17746520042399999, \n        2.1769824028000002, \n        -0.056763768196100003, \n        0.176473498344, \n        2.18466043472, \n        -0.053837180137599999, \n        0.179651975632, \n        2.1791620254500002, \n        -0.043754935264600003, \n        0.17276266217200001, \n        2.1365146636999999, \n        -0.037062406539899999, \n        0.17928364872899999, \n        2.1432325840000002, \n        -0.034257888793900002, \n        0.177017331123, \n        2.1494109630599998, \n        -0.043230056762700003, \n        0.17131868004799999, \n        2.1423931121800002, \n        -0.0456645488739, \n        0.181378006935, \n        2.1568484306300002, \n        -0.040468335151700001, \n        0.18358990550000001, \n        2.1509902477299998, \n        -0.031134843826299999, \n        0.18460127711300001, \n        2.15966796875, \n        -0.027740716934200001, \n        0.18253085017199999, \n        2.16514611244, \n        -0.037271022796600002, \n        0.18195065856000001, \n        2.1738634109500001, \n        -0.033934235572800002, \n        0.18384146690399999, \n        2.1687850952100001, \n        -0.024311661720299999, \n        0.17090156674400001, \n        2.1291770935100001, \n        -0.0204863548279, \n        0.178976982832, \n        2.1345753669700001, \n        -0.0166424512863, \n        0.18034553527800001, \n        2.1379940509800002, \n        -0.025324106216400001, \n        0.172060847282, \n        2.1325960159299999, \n        -0.028614163398700002, \n        0.185529559851, \n        2.1454920768700001, \n        -0.021769285201999999, \n        0.184993118048, \n        2.14089345932, \n        -0.0128265619278, \n        0.186683028936, \n        2.1495909690900001, \n        -0.0093387365341200002, \n        0.18620920181299999, \n        2.1544694900499999, \n        -0.018299937248200001, \n        0.185076862574, \n        2.1639466285700002, \n        -0.014969587326000001, \n        0.18560218811000001, \n        2.1593480110200001, \n        -0.0059934854507399998, \n        0.16968879103699999, \n        2.1209993362400001, \n        -0.0055723190307599996, \n        0.176533907652, \n        2.1271176338200002, \n        -0.00061178207397500001, \n        0.17677664756799999, \n        2.1317963600200001, \n        -0.0084131956100500001, \n        0.17047071456900001, \n        2.1249780654900001, \n        -0.0127362012863, \n        0.182564735413, \n        2.1380343437199998, \n        -0.0043288469314600002, \n        0.182235360146, \n        2.1334357261700001, \n        0.00377607345581, \n        0.18474981188799999, \n        2.1413533687599999, \n        0.0074603557586700002, \n        0.185162901878, \n        2.1457719802900002, \n        -0.00073766708373999997, \n        0.18538999557499999, \n        2.1549694538100002, \n        0.0026071071624799999, \n        0.18480741977699999, \n        2.1508502960200002, \n        0.0107929706573, \n        0.16615822911299999, \n        2.1139616966200001, \n        0.0060589313507100001, \n        0.17651808261900001, \n        2.1169407367700002, \n        0.0126047134399, \n        0.17746758461000001, \n        2.1212992668199999, \n        0.0065118074417099998, \n        0.167764306068, \n        2.1175203323399998, \n        0.00053334236145000005, \n        0.18359351158100001, \n        2.1275975704199999, \n        0.0114386081696, \n        0.182954341173, \n        2.1232786178600001, \n        0.0184148550034, \n        0.18335628509499999, \n        2.13301587105, \n        0.0224609375, \n        0.184979081154, \n        2.1367149353000001, \n        0.0152088403702, \n        0.183693885803, \n        2.1469717025800001, \n        0.018524169921900001, \n        0.181983828545, \n        2.1433327198000001, \n        0.0257611274719, \n        0.16253650188400001, \n        2.1070437431300002, \n        0.015902876853899999, \n        0.16997945308699999, \n        2.1121621131900001, \n        0.0231804847717, \n        0.173880070448, \n        2.1140015125299998, \n        0.018094062805200001, \n        0.16459345817599999, \n        2.1104426383999999, \n        0.0112278461456, \n        0.179446578026, \n        2.1203994751000002, \n        0.0242990255356, \n        0.17495855689000001, \n        2.11858034134, \n        0.029518246650699999, \n        0.17719244956999999, \n        2.12681770325, \n        0.034536004066500002, \n        0.18101847171800001, \n        2.1296367645299998, \n        0.029061198234599999, \n        0.17978009581599999, \n        2.1399536132799999, \n        0.0324648618698, \n        0.177072525024, \n        2.13685464859, \n        0.038572788238500001, \n        0.15595909953100001, \n        2.1018652915999998, \n        0.023791193962099999, \n        0.16449877619700001, \n        2.1064839363100001, \n        0.032722115516699998, \n        0.166865795851, \n        2.1096630096400002, \n        0.028108358383199999, \n        0.159586429596, \n        2.10412454605, \n        0.0200566053391, \n        0.17204904556299999, \n        2.1158611774399998, \n        0.034926414489699999, \n        0.17045912146600001, \n        2.1123621463800002, \n        0.0403277873993, \n        0.171773701906, \n        2.12133955956, \n        0.0454263687134, \n        0.17415261268599999, \n        2.1240584850299999, \n        0.040036439895599997, \n        0.17396470904399999, \n        2.1340153217300002, \n        0.044093132019000003, \n        0.170469522476, \n        2.1314363479599998, \n        0.048977971076999999, \n        0.150213032961, \n        2.0974469184900002, \n        0.030494570732100001, \n        0.15765962004699999, \n        2.1020250320399998, \n        0.0395464897156, \n        0.161383867264, \n        2.1039247512800001, \n        0.0365414619446, \n        0.15288484096499999, \n        2.09964561462, \n        0.027304053306600001, \n        0.167628973722, \n        2.1099028587299999, \n        0.044633269310000001, \n        0.16319772601099999, \n        2.1085228919999999, \n        0.047645211219799997, \n        0.163826346397, \n        2.1173605918899998, \n        0.052860617637599999, \n        0.168142646551, \n        2.1191802024799999, \n        0.049646973609900003, \n        0.16655325889600001, \n        2.1291370391800002, \n        0.053151369094799998, \n        0.162274003029, \n        2.1271176338200002, \n        0.056593298911999997, \n        0.14506921172100001, \n        2.0936875343299999, \n        0.0353068113327, \n        0.149228900671, \n        2.09976577759, \n        0.043324232101399997, \n        0.15334331989300001, \n        2.1008253097499998, \n        0.041732668876600001, \n        0.14775159955, \n        2.0954072475399999, \n        0.033247470855699998, \n        0.157410860062, \n        2.1077435016599999, \n        0.049337625503500002, \n        0.15234375, \n        2.10686397552, \n        0.050645947456399998, \n        0.15355682373000001, \n        2.11492109299, \n        0.056476235389700001, \n        0.158632725477, \n        2.11604094505, \n        0.054956197738599999, \n        0.15765699744200001, \n        2.1253781318699998, \n        0.059263348579400001, \n        0.15272191166900001, \n        2.1239385604900001, \n        0.061114072799699999, \n        0.138473540545, \n        2.09116864204, \n        0.036817550659199998, \n        0.14146685600299999, \n        2.0979266166700001, \n        0.044371247291599997, \n        0.14533326029800001, \n        2.09872627258, \n        0.044224500656100001, \n        0.141968697309, \n        2.0923080444300002, \n        0.036511540412900001, \n        0.14820638299, \n        2.1057839393600002, \n        0.051563262939499997, \n        0.14388895034800001, \n        2.10502409935, \n        0.051577806472799997, \n        0.143794536591, \n        2.1131818294500002, \n        0.057421207427999998, \n        0.14892145991299999, \n        2.11384153366, \n        0.057465076446500001, \n        0.14752042293500001, \n        2.1227989196800001, \n        0.0621353387833, \n        0.142051100731, \n        2.1219396591200002, \n        0.062255978584300001, \n        0.13098239898700001, \n        2.0899891853299999, \n        0.035579323768599999, \n        0.13324654102299999, \n        2.0970668792699998, \n        0.042386651039099998, \n        0.13753926754000001, \n        2.0973663330100001, \n        0.043675303459200003, \n        0.134678721428, \n        2.0904688835099998, \n        0.036327004432699997, \n        0.139139533043, \n        2.1047043800399998, \n        0.050495743751499997, \n        0.133724659681, \n        2.1047244072, \n        0.0485845804214, \n        0.13234519958499999, \n        2.1128618717199998, \n        0.054379701614399999, \n        0.138138532639, \n        2.11294198036, \n        0.056163549423200003, \n        0.13634955882999999, \n        2.1213991642000001, \n        0.061447620391799997, \n        0.130532026291, \n        2.1209993362400001, \n        0.060174584388699999, \n        0.160945773125, \n        2.1407334804499998, \n        -0.071454763412499997, \n        0.16356018185599999, \n        2.1463718414300001, \n        -0.068809270858799995, \n        0.16132521629300001, \n        2.1529898643499998, \n        -0.074822545051600006, \n        0.15950679779099999, \n        2.1478514671300002, \n        -0.077378749847399994, \n        0.15783974528299999, \n        2.1551492214199999, \n        -0.083208084106400002, \n        0.158812850714, \n        2.1597476005599998, \n        -0.080723166465799995, \n        0.159377813339, \n        2.1646461486800002, \n        -0.0784143209457, \n        0.162513494492, \n        2.15846824646, \n        -0.072361350059499993, \n        0.16533648967699999, \n        2.1523699760400001, \n        -0.066185116767899996, \n        0.165436476469, \n        2.15910768509, \n        -0.063603520393400004, \n        0.16244137287099999, \n        2.1645863056199999, \n        -0.070089340210000003, \n        0.159125775099, \n        2.1701045036300002, \n        -0.076457381248500003, \n        0.15846559405300001, \n        2.1758227348300001, \n        -0.074676275253300006, \n        0.16173899173699999, \n        2.1710240840899999, \n        -0.067912101745600001, \n        0.16469824314100001, \n        2.1662058830299999, \n        -0.061042547225999999, \n        0.162485957146, \n        2.12763738632, \n        -0.059089303016699998, \n        0.166399121284, \n        2.1339554786699999, \n        -0.056160569191000001, \n        0.16523993015300001, \n        2.1400337219200001, \n        -0.062571048736599993, \n        0.161928385496, \n        2.1339955329900002, \n        -0.065342903137199995, \n        0.167533397675, \n        2.14647197723, \n        -0.059762716293300003, \n        0.16914114356000001, \n        2.14073324203, \n        -0.053151249885600001, \n        0.16954061389, \n        2.1483912468000002, \n        -0.049981474876399999, \n        0.167790770531, \n        2.1537098884599999, \n        -0.056881070137, \n        0.16702970862399999, \n        2.1613674163800001, \n        -0.053962230682399998, \n        0.16876861453100001, \n        2.1565086841599999, \n        -0.046731233596800002, \n        0.16245409846299999, \n        2.11602115631, \n        -0.046345353126499997, \n        0.16729447245599999, \n        2.1226589679700001, \n        -0.043033361434899997, \n        0.16707253456099999, \n        2.1281774044000001, \n        -0.049630403518700003, \n        0.162650674582, \n        2.12163925171, \n        -0.052741050720200001, \n        0.17019596695899999, \n        2.1351952552800002, \n        -0.046408653259299999, \n        0.17073443531999999, \n        2.1298568248700001, \n        -0.039591312408399998, \n        0.171373486519, \n        2.1380941867800001, \n        -0.035888671875, \n        0.17072263360000001, \n        2.1431927681, \n        -0.0429644584656, \n        0.16995087266, \n        2.1516904830899999, \n        -0.039409279823300003, \n        0.17061188817, \n        2.14689159393, \n        -0.0320560932159, \n        0.161104768515, \n        2.1058239936800001, \n        -0.033597946167000001, \n        0.166522502899, \n        2.1125221252399999, \n        -0.029850125312799999, \n        0.167099714279, \n        2.11744070053, \n        -0.036422371864300002, \n        0.161928087473, \n        2.1107425689700001, \n        -0.039948463439900002, \n        0.170792847872, \n        2.1247186660800002, \n        -0.0327574014664, \n        0.170407533646, \n        2.1198196411099999, \n        -0.025963664054899999, \n        0.17122650146499999, \n        2.12835741043, \n        -0.0217989683151, \n        0.17152920365300001, \n        2.13315582275, \n        -0.028813958168, \n        0.170787215233, \n        2.1421530246699998, \n        -0.024731636047399998, \n        0.17051228880899999, \n        2.1374943256400001, \n        -0.017495632171599999, \n        0.158691883087, \n        2.0969867706300001, \n        -0.021222114563000001, \n        0.16435992717699999, \n        2.10352468491, \n        -0.017033219337499999, \n        0.16559779644, \n        2.1078634262099998, \n        -0.0233696699142, \n        0.16001522540999999, \n        2.1012253761299999, \n        -0.027340054512, \n        0.16961491107900001, \n        2.1151614189100001, \n        -0.0192676782608, \n        0.168451666832, \n        2.1107230186499999, \n        -0.012726902961699999, \n        0.169391274452, \n        2.1192598342900002, \n        -0.0081863403320299993, \n        0.17050147056600001, \n        2.12371873856, \n        -0.014903426170300001, \n        0.16982293129000001, \n        2.1329159736599999, \n        -0.0104080438614, \n        0.16875445842699999, \n        2.1284570694, \n        -0.00352871417999, \n        0.155470103025, \n        2.0894892215700001, \n        -0.0095930099487300004, \n        0.161083191633, \n        2.0957071781200001, \n        -0.0050041675567600004, \n        0.16284337639800001, \n        2.09946608543, \n        -0.0108938217163, \n        0.15716612339, \n        2.0930676460300002, \n        -0.0152907371521, \n        0.16695418953899999, \n        2.1065440177900001, \n        -0.0063985586166399998, \n        0.165158748627, \n        2.1026449203499999, \n        -0.00034010410308799998, \n        0.16615939140300001, \n        2.1109623909000002, \n        0.0044752359390299997, \n        0.167931675911, \n        2.1150012016300002, \n        -0.0017069578170800001, \n        0.16734266281099999, \n        2.1241583824200001, \n        0.0030826330184899999, \n        0.16562283039100001, \n        2.1199798583999998, \n        0.0093661546707200002, \n        0.151693344116, \n        2.0832705497699999, \n        0.00091445446014400003, \n        0.15696859359699999, \n        2.0891089439399999, \n        0.0058138370513900004, \n        0.15911337733299999, \n        2.0922679901099999, \n        0.00058257579803499995, \n        0.15363517403599999, \n        2.0862300396000002, \n        -0.0041756629943800003, \n        0.163101702929, \n        2.0990059375799999, \n        0.0053911209106400002, \n        0.16081979870800001, \n        2.0956473350499998, \n        0.010738015174900001, \n        0.161822915077, \n        2.10358476639, \n        0.015711665153500001, \n        0.164111047983, \n        2.1071438789400001, \n        0.010301232338, \n        0.163630843163, \n        2.1160011291499998, \n        0.0152617692947, \n        0.16140210628500001, \n        2.1122221946700002, \n        0.0207099914551, \n        0.147616416216, \n        2.0782923698400002, \n        0.0099253654480000002, \n        0.15229299664500001, \n        2.0837306976300001, \n        0.0149995088577, \n        0.154683679342, \n        2.0862698554999999, \n        0.0106370449066, \n        0.149676591158, \n        2.0806317329400001, \n        0.0056304931640600003, \n        0.158349186182, \n        2.0925679206800001, \n        0.015643000602700002, \n        0.155726402998, \n        2.0898089408899998, \n        0.020048737525900001, \n        0.156673073769, \n        2.0972266197199998, \n        0.0250486135483, \n        0.15933132171600001, \n        2.1002655029300001, \n        0.0206471681595, \n        0.158971935511, \n        2.1086432933800001, \n        0.025650501251200001, \n        0.15637645125399999, \n        2.1053042411799998, \n        0.030023813247699999, \n        0.14349305629699999, \n        2.0745134353600001, \n        0.017064690589900001, \n        0.14733290672300001, \n        2.07957172394, \n        0.022130131721499999, \n        0.14983117580399999, \n        2.08149147034, \n        0.018847942352300001, \n        0.14554464817000001, \n        2.07627272606, \n        0.0137524604797, \n        0.152987837791, \n        2.0873494148299998, \n        0.023898005485500001, \n        0.15016981959299999, \n        2.0852103233300001, \n        0.027133345603899999, \n        0.15100157260899999, \n        2.0920281410200001, \n        0.032012701034499998, \n        0.15388417243999999, \n        2.09446763992, \n        0.0288569927216, \n        0.15365061163900001, \n        2.10222530365, \n        0.033770203590399998, \n        0.15083050727799999, \n        2.0994262695299999, \n        0.036829352378800001, \n        0.139577865601, \n        2.0718741416899999, \n        0.021957397460899999, \n        0.142364531755, \n        2.0766928195999999, \n        0.0267834663391, \n        0.14483246207200001, \n        2.07797265053, \n        0.024792909622200002, \n        0.14149367809300001, \n        2.0730538368200002, \n        0.019815325737000001, \n        0.147309154272, \n        2.0834109783199999, \n        0.029697418212899999, \n        0.144441723824, \n        2.08195137978, \n        0.031533002853400001, \n        0.14510011673000001, \n        2.0881094932600002, \n        0.036128878593399999, \n        0.14806127548199999, \n        2.0899090766900001, \n        0.034456253051800001, \n        0.147951364517, \n        2.0969066619899999, \n        0.0391420125961, \n        0.145048826933, \n        2.0947074890100001, \n        0.040647625923200002, \n        0.13612505793599999, \n        2.07035493851, \n        0.024228215217600001, \n        0.13766488432900001, \n        2.0750932693499999, \n        0.0285376310349, \n        0.13996386527999999, \n        2.0757331848099998, \n        0.028049588203399999, \n        0.13777780532799999, \n        2.0709748268100001, \n        0.0234439373016, \n        0.141604661942, \n        2.0808515548700002, \n        0.0325825214386, \n        0.13883367180799999, \n        2.0800919532800002, \n        0.032789230346699998, \n        0.139260292053, \n        2.0855901241299999, \n        0.036923646926899999, \n        0.142154246569, \n        2.0866696834599998, \n        0.0369710922241, \n        0.14215847849800001, \n        2.0928478241000001, \n        0.041287064552300003, \n        0.139315932989, \n        2.0913481712299999, \n        0.041000008583100003, \n        0.13326737284699999, \n        2.0697350501999998, \n        0.023923993110699999, \n        0.13340747356400001, \n        2.0746335983300002, \n        0.027438521385200001, \n        0.13550207018900001, \n        2.07477331161, \n        0.028195738792400001, \n        0.13465151190800001, \n        2.06997489929, \n        0.0242635011673, \n        0.13616549968700001, \n        2.0797119140600002, \n        0.032094836235, \n        0.13354885578199999, \n        2.07951164246, \n        0.030950307846099999, \n        0.133693218231, \n        2.0844104290000001, \n        0.034456729888900001, \n        0.13645479083100001, \n        2.0849103927599999, \n        0.035927653312700002, \n        0.13655659556399999, \n        2.0902287960099999, \n        0.039726972579999999, \n        0.13383901119200001, \n        2.08928918839, \n        0.037960648536699997, \n        0.071583390235900005, \n        2.3433525562300002, \n        0.029283761978099999, \n        0.066411584615700001, \n        2.3398535251600001, \n        0.021788835525500001, \n        0.071104884147599995, \n        2.3404135704, \n        0.0142642259598, \n        0.077539175748799996, \n        2.3438322544100001, \n        0.0209858417511, \n        0.061186313629199997, \n        2.33569455147, \n        0.0141980648041, \n        0.064569473266599994, \n        2.3363945484199999, \n        0.0074584484100299999, \n        0.067770928144500003, \n        2.3351745605500001, \n        0.00168597698212, \n        0.075406879186599995, \n        2.3386340141300002, \n        0.0078505277633700004, \n        0.082898020744299999, \n        2.34155273438, \n        0.0139700174332, \n        0.078925609588599996, \n        2.3330354690599999, \n        0.0027860403060900002, \n        0.087062716484099995, \n        2.3349747657800002, \n        0.0083138942718499996, \n        0.070608943700799995, \n        2.33069610596, \n        -0.0027562379836999999, \n        0.073265284299899994, \n        2.32461810112, \n        -0.0065996646881100003, \n        0.082052826881400004, \n        2.3256578445399998, \n        -0.0017268657684299999, \n        0.090630412101700003, \n        2.3264374732999999, \n        0.00316071510315, \n        0.081577748060200003, \n        2.3450717926000002, \n        0.045003414154100002, \n        0.0766486823559, \n        2.3451519012499999, \n        0.036939024925200001, \n        0.083770751953100006, \n        2.3456318378400001, \n        0.027878999710100001, \n        0.089768052101100004, \n        2.3453917503400001, \n        0.035392522811900001, \n        0.090099424123799995, \n        2.3430123329199999, \n        0.020216345787, \n        0.096978753805200005, \n        2.34245228767, \n        0.0271420478821, \n        0.094840764999400001, \n        2.33569455147, \n        0.013872385025, \n        0.102229714394, \n        2.3346552848800002, \n        0.0200330018997, \n        0.098788738250700003, \n        2.3261375427200002, \n        0.00810289382935, \n        0.106501072645, \n        2.3244779109999998, \n        0.013434886932399999, \n        0.090909004211399996, \n        2.3404932022099998, \n        0.061340689659100001, \n        0.086341142654400002, \n        2.34341239929, \n        0.053223729133600003, \n        0.095499515533399998, \n        2.34343218803, \n        0.043263673782299998, \n        0.10093355178799999, \n        2.34013319016, \n        0.051197290420500002, \n        0.103503793478, \n        2.3402132988000002, \n        0.034502863884, \n        0.109642148018, \n        2.3366343975100001, \n        0.042006969451900002, \n        0.109199255705, \n        2.3320956230199998, \n        0.0265914201736, \n        0.115719050169, \n        2.3283367156999999, \n        0.033298730850199999, \n        0.113740444183, \n        2.3215589523300002, \n        0.019069671630899999, \n        0.120480269194, \n        2.3176798820500002, \n        0.024804711341900001, \n        0.099340647458999995, \n        2.3319556713099998, \n        0.0764117240906, \n        0.095252007245999998, \n        2.3365943431899998, \n        0.069130420684800006, \n        0.106038331985, \n        2.3357746601099998, \n        0.058932304382300002, \n        0.110782384872, \n        2.3306562900499999, \n        0.066250562667799995, \n        0.11536177992799999, \n        2.3320155143700001, \n        0.049384236335799997, \n        0.120630025864, \n        2.3266773223900001, \n        0.056405425071700002, \n        0.121759176254, \n        2.32365846634, \n        0.039916157722499998, \n        0.12728914618500001, \n        2.3183598518399999, \n        0.0462367534637, \n        0.12669348716699999, \n        2.3130612373399999, \n        0.0304466485977, \n        0.13235399127, \n        2.30794286728, \n        0.0358273983002, \n        0.106636017561, \n        2.32125902176, \n        0.088903307914699997, \n        0.103145092726, \n        2.3267974853500002, \n        0.083039641380299997, \n        0.115134030581, \n        2.3250179290799999, \n        0.072976469993599996, \n        0.11906158924099999, \n        2.3190395832099999, \n        0.078972816467300005, \n        0.125414729118, \n        2.32087898254, \n        0.062884449958800007, \n        0.129683613777, \n        2.31476068497, \n        0.068675875663799998, \n        0.13227880001100001, \n        2.31264162064, \n        0.052090883254999998, \n        0.136698096991, \n        2.30668306351, \n        0.057350158691399998, \n        0.137434840202, \n        2.3025045394900001, \n        0.040812015533399998, \n        0.14190921187399999, \n        2.29670619965, \n        0.045498251915000003, \n        0.11255824565899999, \n        2.3091025352500001, \n        0.098521590232799994, \n        0.109783440828, \n        2.3154606819199999, \n        0.093949198722799998, \n        0.12253341078799999, \n        2.3128616809799998, \n        0.084164619445800004, \n        0.12551811337499999, \n        2.3061435222600002, \n        0.088920116424600001, \n        0.13340428471599999, \n        2.3084230422999998, \n        0.073796629905700004, \n        0.136544555426, \n        2.3014450073199999, \n        0.078646659851100004, \n        0.14051675796499999, \n        2.3002853393599998, \n        0.062261462211599998, \n        0.143704622984, \n        2.2932872772200001, \n        0.067028880119299999, \n        0.14575016498599999, \n        2.2903084754899998, \n        0.050142645835900002, \n        0.14893138408699999, \n        2.2833905219999999, \n        0.0547386407852, \n        0.116870880127, \n        2.29452705383, \n        0.106572628021, \n        0.114930659533, \n        2.3021049499499999, \n        0.102731823921, \n        0.12798354029699999, \n        2.29878568649, \n        0.093365311622600006, \n        0.12989854812599999, \n        2.2908883094800001, \n        0.097486972808800004, \n        0.13907203078300001, \n        2.2938675880399999, \n        0.083250164985699995, \n        0.140954464674, \n        2.285769701, \n        0.087591409683200006, \n        0.146231293678, \n        2.2857296466800001, \n        0.071638345718399998, \n        0.14806663989999999, \n        2.2777118682899999, \n        0.076076030731200006, \n        0.15142607688900001, \n        2.2759923934900002, \n        0.059277653694200003, \n        0.15320730209399999, \n        2.26817512512, \n        0.063750982284500005, \n        0.119337409735, \n        2.27789211273, \n        0.113118648529, \n        0.11834987998, \n        2.2864298820500002, \n        0.110037207603, \n        0.13123139739, \n        2.28247070312, \n        0.101271986961, \n        0.13195013999899999, \n        2.27363348007, \n        0.10470783710500001, \n        0.14215943217300001, \n        2.2771921157800001, \n        0.091653585433999998, \n        0.14265474677100001, \n        2.2682147026099999, \n        0.095420479774499994, \n        0.14918076992000001, \n        2.2692546844499999, \n        0.080328226089499993, \n        0.14954301714900001, \n        2.2604575157200002, \n        0.084380745887799993, \n        0.154248595238, \n        2.2599973678600001, \n        0.068149566650400006, \n        0.15452289581299999, \n        2.2515201568599998, \n        0.072464466094999999, \n        0.119720846415, \n        2.2596378326400002, \n        0.118105053902, \n        0.119804233313, \n        2.26893472672, \n        0.115810275078, \n        0.132023543119, \n        2.2644362449600002, \n        0.107781052589, \n        0.13141950964900001, \n        2.25491905212, \n        0.11047899723100001, \n        0.142408013344, \n        2.2589178085300001, \n        0.098876118659999998, \n        0.14138686656999999, \n        2.2493405342099999, \n        0.102004051208, \n        0.14912340045, \n        2.2513601779900001, \n        0.088219642639199999, \n        0.147891521454, \n        2.24204301834, \n        0.091830849647500004, \n        0.15400409698500001, \n        2.24280261993, \n        0.076687216758699994, \n        0.152664870024, \n        2.2339055538200001, \n        0.080808639526399995, \n        0.11778485775, \n        2.2402634620700002, \n        0.121476769447, \n        0.11905765533400001, \n        2.25006055832, \n        0.11999630928, \n        0.130106896162, \n        2.2451620101900001, \n        0.112788677216, \n        0.128053754568, \n        2.2352046966599999, \n        0.114697098732, \n        0.13955926895099999, \n        2.2395434379600001, \n        0.104787945747, \n        0.13689267635300001, \n        2.2296266555800002, \n        0.10721170902300001, \n        0.14581751823399999, \n        2.2325658798200001, \n        0.095200538635299994, \n        0.142870813608, \n        2.2229685783400002, \n        0.0983150005341, \n        0.15047881007200001, \n        2.22488808632, \n        0.084820032119800007, \n        0.14741906523699999, \n        2.2157907485999999, \n        0.088712573051500002, \n        0.113292574883, \n        2.2201895713800002, \n        0.123178958893, \n        0.115873008966, \n        2.2302865982100002, \n        0.12254011631, \n        0.12522852420800001, \n        2.2251479625699999, \n        0.116191148758, \n        0.121599674225, \n        2.2150311469999999, \n        0.117257833481, \n        0.13335475325599999, \n        2.2196297645600001, \n        0.109258770943, \n        0.12891328334800001, \n        2.2096328735399999, \n        0.110913276672, \n        0.13902163505599999, \n        2.2133512496900001, \n        0.10115993022899999, \n        0.134239286184, \n        2.2037544250500001, \n        0.10372149944300001, \n        0.143458843231, \n        2.2066736221299998, \n        0.092477321624800005, \n        0.138571739197, \n        2.1976163387300001, \n        0.096105575561499998, \n        0.106386065483, \n        2.1998755931899998, \n        0.12337899208100001, \n        0.11001381278, \n        2.2100524902299998, \n        0.123387098312, \n        0.11713537573799999, \n        2.2049341201799999, \n        0.11788475513500001, \n        0.112253516912, \n        2.1948170661900002, \n        0.11829125881200001, \n        0.123535841703, \n        2.1996960639999998, \n        0.11215889453900001, \n        0.11769044399299999, \n        2.1897785663599998, \n        0.113199949265, \n        0.12849402427699999, \n        2.1942372322099999, \n        0.10598552226999999, \n        0.122266888618, \n        2.18476009369, \n        0.108101129532, \n        0.13273072242699999, \n        2.1886591911300002, \n        0.099588751792899999, \n        0.12641301751100001, \n        2.1797413826000001, \n        0.10299885273000001, \n        -0.041815400123600001, \n        2.3274369239800001, \n        -0.065663695335399994, \n        -0.0248129069805, \n        2.3321158886000002, \n        -0.075710773467999995, \n        -0.025247544050200001, \n        2.3377537727400002, \n        -0.074062705039999996, \n        -0.041612625122099997, \n        2.3338150978100001, \n        -0.063422083854699995, \n        -0.0071152448654200002, \n        2.3354544639600001, \n        -0.085649490356400002, \n        -0.0082497596740700001, \n        2.3407130241399998, \n        -0.084864974021900005, \n        -0.00847899913788, \n        2.3455915451, \n        -0.083427786827100003, \n        -0.024710178375199999, \n        2.3430523872400002, \n        -0.072012543678299998, \n        -0.040366768837000001, \n        2.3397934436800001, \n        -0.060926914215099999, \n        -0.022229075431799999, \n        2.3477110862699999, \n        -0.069186091423000001, \n        -0.037034600973099997, \n        2.34491181374, \n        -0.057870626449599998, \n        -0.0068976581096599999, \n        2.3498306274399998, \n        -0.080774426460300003, \n        -0.0044109523296400003, \n        2.3537290096299999, \n        -0.077579498290999999, \n        -0.018776029348399999, \n        2.3520896434799998, \n        -0.066044092178299998, \n        -0.032659143209500002, \n        2.3495903015100001, \n        -0.054574370384200002, \n        -0.071682333946199994, \n        2.3201594352699999, \n        -0.048085093498199998, \n        -0.057426840066899999, \n        2.3236780166600002, \n        -0.056775689125099997, \n        -0.056712508201600002, \n        2.3310160636899999, \n        -0.054154157638499997, \n        -0.070569723844499999, \n        2.3281571865099999, \n        -0.044869661331200003, \n        -0.054873973131200002, \n        2.3377737998999999, \n        -0.051320433616599999, \n        -0.068246006965600001, \n        2.33555459976, \n        -0.041600227355999997, \n        -0.050788193941099999, \n        2.3432521820100001, \n        -0.047918438911399998, \n        -0.063500642776499999, \n        2.34161281586, \n        -0.038072943687400003, \n        -0.045578479766799997, \n        2.34791111946, \n        -0.044127464294400003, \n        -0.057544201612499998, \n        2.3468112945600001, \n        -0.034271001815799999, \n        -0.096261739730800003, \n        2.3105823993699999, \n        -0.027657985687300001, \n        -0.084615677595099997, \n        2.3156208991999998, \n        -0.038294553756700003, \n        -0.083206892013499997, \n        2.3239381313299998, \n        -0.034245729446400003, \n        -0.094647169113199994, \n        2.31909966469, \n        -0.022666692733799999, \n        -0.080496519803999994, \n        2.3316559791599998, \n        -0.030290246009800001, \n        -0.0916391313076, \n        2.3269972801200001, \n        -0.017907142639199999, \n        -0.075182527303699995, \n        2.3380138874099998, \n        -0.026405572891200001, \n        -0.085844278335600002, \n        2.3334155082699999, \n        -0.0134524106979, \n        -0.068566441535899997, \n        2.3435323238399999, \n        -0.0224087238312, \n        -0.078655868768699996, \n        2.33893346786, \n        -0.0089789628982500005, \n        -0.115828871727, \n        2.29894542694, \n        -0.0057090520858800002, \n        -0.10665461421, \n        2.3051438331599998, \n        -0.016685605049100001, \n        -0.10491296649, \n        2.3134016990699999, \n        -0.010480999946599999, \n        -0.11402717232700001, \n        2.3067634105699999, \n        0.0017940998077400001, \n        -0.101688116789, \n        2.3210191726699998, \n        -0.0045846700668299998, \n        -0.110656946898, \n        2.3141808509800001, \n        0.0087012052536000004, \n        -0.095496743917500002, \n        2.3272171020500001, \n        0.00078058242797900005, \n        -0.104150742292, \n        2.32043933868, \n        0.014742970466599999, \n        -0.087822288274800001, \n        2.3330755233799998, \n        0.0055505037307700001, \n        -0.096076011657699995, \n        2.3263976573899998, \n        0.0200550556183, \n        -0.13065934181200001, \n        2.2855496406600002, \n        0.014994025230400001, \n        -0.123818993568, \n        2.2925276756300002, \n        0.0047545433044400001, \n        -0.12201213836700001, \n        2.30004549026, \n        0.0133451223373, \n        -0.12889131903600001, \n        2.2930274009699998, \n        0.024324893951400001, \n        -0.118559956551, \n        2.3070631027199999, \n        0.021398067474400002, \n        -0.125410526991, \n        2.2997856140100001, \n        0.033304810524, \n        -0.11181640625, \n        2.3131413459800001, \n        0.028280138969400001, \n        -0.11850476265, \n        2.3054037094100002, \n        0.041320800781199998, \n        -0.103427320719, \n        2.3189797401400001, \n        0.034396767616299999, \n        -0.109886646271, \n        2.31078195572, \n        0.0485173463821, \n        -0.14102816581700001, \n        2.2700543403600002, \n        0.034654140472400001, \n        -0.136384218931, \n        2.2780320644400001, \n        0.024996042251600001, \n        -0.13468655943899999, \n        2.2854495048499999, \n        0.0349889993668, \n        -0.139421314001, \n        2.2773723602299998, \n        0.0452326536179, \n        -0.13122275471700001, \n        2.2922277450599999, \n        0.044551730155899999, \n        -0.13601052761099999, \n        2.2841701507600001, \n        0.055310606956500002, \n        -0.12422645092, \n        2.2977859973900001, \n        0.053253412246700001, \n        -0.12899184226999999, \n        2.2899284362799999, \n        0.064387679099999998, \n        -0.115463942289, \n        2.3027646541600002, \n        0.061479091644300002, \n        -0.120169490576, \n        2.2951669692999999, \n        0.072964191436799997, \n        -0.14721095562, \n        2.2530994415299999, \n        0.052514791488599999, \n        -0.144625753164, \n        2.2617168426499998, \n        0.043862462043800003, \n        -0.14311802387200001, \n        2.2688946723900001, \n        0.054939627647399999, \n        -0.14579916000400001, \n        2.2601375579799998, \n        0.063994765281700006, \n        -0.13978755474099999, \n        2.2756729126000002, \n        0.065457701682999997, \n        -0.14256775379200001, \n        2.26687574387, \n        0.074869751930199999, \n        -0.132811903954, \n        2.2816309928899998, \n        0.0748575925827, \n        -0.13569700717899999, \n        2.2729933261899999, \n        0.084535598754899993, \n        -0.124013692141, \n        2.2871692180599998, \n        0.083698511123699998, \n        -0.127006620169, \n        2.2788317203499999, \n        0.093596696853600003, \n        -0.14948308467900001, \n        2.23544502258, \n        0.067727088928199994, \n        -0.14881861209899999, \n        2.2443022728000002, \n        0.060504913330100003, \n        -0.14748784899699999, \n        2.2511801719700002, \n        0.072282195091199999, \n        -0.148206681013, \n        2.24210309982, \n        0.079686522483799996, \n        -0.144365042448, \n        2.2578382492100002, \n        0.083423733711200002, \n        -0.14519318938299999, \n        2.2486810684199998, \n        0.090995430946400002, \n        -0.137657761574, \n        2.2640962600700001, \n        0.093293547630299997, \n        -0.138705044985, \n        2.2550389766699999, \n        0.101003885269, \n        -0.12915858626400001, \n        2.2701745033299998, \n        0.10252833366399999, \n        -0.13047978282, \n        2.2613172531100001, \n        0.110361933708, \n        -0.14811953902200001, \n        2.2178504467, \n        0.079441547393799994, \n        -0.14923849701899999, \n        2.2265875339500001, \n        0.074074506759600006, \n        -0.147978305817, \n        2.233045578, \n        0.086092233657799999, \n        -0.146825432777, \n        2.2240681648299998, \n        0.091383576393100005, \n        -0.14506602287299999, \n        2.2394835948899998, \n        0.097462415695200005, \n        -0.143997520208, \n        2.23034644127, \n        0.102700948715, \n        -0.138849258423, \n        2.2459015846299999, \n        0.107538342476, \n        -0.13810130953800001, \n        2.2367644310000001, \n        0.112769126892, \n        -0.130980610847, \n        2.25229978561, \n        0.116967082024, \n        -0.13067114353199999, \n        2.2432224750500001, \n        0.122212648392, \n        -0.14339613914499999, \n        2.2010350227400002, \n        0.086809754371600004, \n        -0.146160632372, \n        2.2092926502200001, \n        0.083722114562999994, \n        -0.144771099091, \n        2.2152707576799999, \n        0.095445156097399994, \n        -0.14183756709100001, \n        2.2067737579300002, \n        0.098161339759800001, \n        -0.14200127124799999, \n        2.22136926651, \n        0.10658740997299999, \n        -0.13909158110600001, \n        2.2126519679999999, \n        0.10899853706400001, \n        -0.13647162914300001, \n        2.2277071475999999, \n        0.11656808853099999, \n        -0.133970737457, \n        2.21882987022, \n        0.118807315826, \n        -0.129561513662, \n        2.2341454029099999, \n        0.12596797943099999, \n        -0.12766227126099999, \n        2.2251479625699999, \n        0.128101825714, \n        -0.13558769226100001, \n        2.1857998371099998, \n        0.088982582092300005, \n        -0.13986039161700001, \n        2.1931777000400001, \n        0.088598728179899999, \n        -0.13804793357799999, \n        2.1986360549900001, \n        0.099416375160199993, \n        -0.133424729109, \n        2.1909980773900002, \n        0.099094867706299994, \n        -0.13528215885200001, \n        2.2042543888099999, \n        0.109810829163, \n        -0.13058650493599999, \n        2.1963367462200001, \n        0.10890138149299999, \n        -0.13060939312, \n        2.2102124691, \n        0.119358778, \n        -0.12639844417599999, \n        2.2019352912899999, \n        0.118095159531, \n        -0.124983280897, \n        2.2163105011000002, \n        0.12848377227800001, \n        -0.12153506279, \n        2.2076733112300002, \n        0.12698292732200001, \n        -0.12528678774800001, \n        2.17248392105, \n        0.085972070693999994, \n        -0.13061293959600001, \n        2.1790018081700002, \n        0.087854981422400003, \n        -0.127990603447, \n        2.1839203834499998, \n        0.097081303596499996, \n        -0.12215110659599999, \n        2.1771426200900001, \n        0.094221830367999998, \n        -0.12501883506799999, \n        2.1889390945399998, \n        0.106146097183, \n        -0.119015097618, \n        2.1818008422899999, \n        0.102468132973, \n        -0.121348142624, \n        2.19409751892, \n        0.114887833595, \n        -0.11587822437299999, \n        2.1864795684799998, \n        0.110708594322, \n        -0.117327809334, \n        2.1993355751000001, \n        0.123467922211, \n        -0.112740963697, \n        2.1911582946800001, \n        0.118946075439, \n        0.075328469276399995, \n        2.3375940322900002, \n        -0.011882901191699999, \n        0.065875381231300004, \n        2.3337349891699999, \n        -0.021810412406900001, \n        0.069909095764199999, \n        2.3300561904900001, \n        -0.027087092399599999, \n        0.079909473657599997, \n        2.33293533325, \n        -0.017255902290299999, \n        0.0562509596348, \n        2.3291964530899998, \n        -0.031382083892799999, \n        0.059704154729800001, \n        2.3265171051000002, \n        -0.0365544557571, \n        0.062514752149600006, \n        2.3228187561000002, \n        -0.041314482688899999, \n        0.073105454444900006, \n        2.3253576755499998, \n        -0.031946420669599997, \n        0.083466798067100001, \n        2.3272972106899998, \n        -0.022246003150900001, \n        0.074627280235300006, \n        2.3187398910499999, \n        -0.035978198051500002, \n        0.084977269172700001, \n        2.3198194503799998, \n        -0.026490092277499998, \n        0.064039468765300006, \n        2.3171401023899998, \n        -0.045204520225499999, \n        0.064921379089400003, \n        2.31060242653, \n        -0.048799276351899998, \n        0.075311422348000007, \n        2.3112616538999999, \n        -0.039704918861399999, \n        0.085464596748399999, \n        2.3115220069900002, \n        -0.030467152595500001, \n        0.093157857656500004, \n        2.3427324294999998, \n        0.0071313381195100001, \n        0.084439367055899994, \n        2.3406929969800001, \n        -0.0022052526473999999, \n        0.089500308036799994, \n        2.3350548744199999, \n        -0.00757217407227, \n        0.098635435104399996, \n        2.33629441261, \n        0.00175738334656, \n        0.093369007110600005, \n        2.3285567760500001, \n        -0.012675762176500001, \n        0.10276877880099999, \n        2.3289766311600002, \n        -0.0033384561538700001, \n        0.094852775335299996, \n        2.3202393054999999, \n        -0.017141580581700001, \n        0.10421347618100001, \n        2.3199791908299998, \n        -0.0079761743545499995, \n        0.095143884420400004, \n        2.3111424446100002, \n        -0.0213929414749, \n        0.10431385040299999, \n        2.3102622032200002, \n        -0.012515306472799999, \n        0.109220027924, \n        2.3405933380100001, \n        0.026814818382300001, \n        0.101434588432, \n        2.3428325653100002, \n        0.016654253006, \n        0.10726800560999999, \n        2.3358147144300001, \n        0.0111656188965, \n        0.11535131931299999, \n        2.3332352638199998, \n        0.021063685417199999, \n        0.111622720957, \n        2.3279569149000001, \n        0.0058960914611799996, \n        0.119887590408, \n        2.3250980377200001, \n        0.0154534578323, \n        0.113020271063, \n        2.3184797763799998, \n        0.00098204612731900005, \n        0.121233612299, \n        2.31548070908, \n        0.0100654363632, \n        0.112939268351, \n        2.3083226680800002, \n        -0.0038521289825400001, \n        0.120984226465, \n        2.30514407158, \n        0.00473570823669, \n        0.12311705946900001, \n        2.3314158916499998, \n        0.047155857086200001, \n        0.116464018822, \n        2.3365943431899998, \n        0.037150621414200002, \n        0.122839093208, \n        2.3290567398099999, \n        0.0310634374619, \n        0.12968465685800001, \n        2.3237981796299998, \n        0.040709137916599997, \n        0.12752047181100001, \n        2.32081890106, \n        0.025016427040100001, \n        0.134477615356, \n        2.3156208991999998, \n        0.034188032150300002, \n        0.12881386280099999, \n        2.3112018108400001, \n        0.019076585769700002, \n        0.13572159409500001, \n        2.3061037063600001, \n        0.0276900529861, \n        0.12841343879700001, \n        2.3009252548200001, \n        0.013165950775100001, \n        0.13519117236100001, \n        2.2959666252100002, \n        0.021191239357, \n        0.13445159792899999, \n        2.3195395469700002, \n        0.064587950706500002, \n        0.12912940979000001, \n        2.3255977630600002, \n        0.0564061403275, \n        0.13584098219900001, \n        2.3179998397800001, \n        0.049593806266800003, \n        0.14126190543200001, \n        2.31198167801, \n        0.057457685470599998, \n        0.14071592688599999, \n        2.3099424839, \n        0.042596817016600001, \n        0.146192073822, \n        2.3037843704199998, \n        0.050324797630299997, \n        0.14191734790800001, \n        2.30052518845, \n        0.035657525062599997, \n        0.14736148715, \n        2.29422688484, \n        0.043241500854500001, \n        0.141282111406, \n        2.29032850266, \n        0.028833031654400001, \n        0.14665091037799999, \n        2.2840104103100001, \n        0.036183476448100001, \n        0.14282593131099999, \n        2.3062434196499999, \n        0.078441500663799998, \n        0.13903358578700001, \n        2.31324148178, \n        0.0717526674271, \n        0.145900726318, \n        2.3053636550899999, \n        0.064748167991600006, \n        0.14971053600299999, \n        2.2980461120600002, \n        0.071615576744100004, \n        0.15086269378700001, \n        2.2968864440900001, \n        0.057680487632800002, \n        0.15468466281900001, \n        2.2893686294600002, \n        0.064641356468200004, \n        0.15201473236099999, \n        2.28726911545, \n        0.050485730171199998, \n        0.15583738684699999, \n        2.2797513008100001, \n        0.057370066642799998, \n        0.15126177668599999, \n        2.27707242966, \n        0.043227553367600001, \n        0.15507936477699999, \n        2.2696347236599999, \n        0.049950242042500002, \n        0.14784213900599999, \n        2.2904086113000002, \n        0.090406298637400004, \n        0.14577862620400001, \n        2.2986059188799999, \n        0.084665298461900004, \n        0.1526453197, \n        2.2901482582099999, \n        0.078038334846499996, \n        0.15465795993799999, \n        2.2817707061800001, \n        0.083994150161700004, \n        0.157614797354, \n        2.28133106232, \n        0.071183681488, \n        0.15960934758199999, \n        2.2728538513199998, \n        0.077284336090100006, \n        0.158790081739, \n        2.2717337608300001, \n        0.063874363899199996, \n        0.160833030939, \n        2.2633566856399998, \n        0.069978237152099998, \n        0.15806803107299999, \n        2.2617769241299999, \n        0.0563373565674, \n        0.16019240021700001, \n        2.2535996437099999, \n        0.062373757362400001, \n        0.14910280704500001, \n        2.2727336883499998, \n        0.100370049477, \n        0.14896678924599999, \n        2.2817509174300001, \n        0.095647096633900003, \n        0.15570175647699999, \n        2.2729935646100001, \n        0.089462399482700003, \n        0.155730605125, \n        2.2639164924599999, \n        0.094420909881599999, \n        0.160625457764, \n        2.2640361785900001, \n        0.082919836044300005, \n        0.16061973571800001, \n        2.2549991607700002, \n        0.088066935539200003, \n        0.16192695498500001, \n        2.25469875336, \n        0.075661420822100006, \n        0.16203224659000001, \n        2.2458617687200002, \n        0.080903768539399998, \n        0.16141700744599999, \n        2.2451820373500002, \n        0.068044900894199997, \n        0.16170620918299999, \n        2.2366044521299999, \n        0.073335886001600001, \n        0.14621031284300001, \n        2.2539794445000001, \n        0.10819315910299999, \n        0.148200660944, \n        2.26343679428, \n        0.10455799102799999, \n        0.15469729900400001, \n        2.2546389102900002, \n        0.098848104476899998, \n        0.15255570411700001, \n        2.2452816963200002, \n        0.102722764015, \n        0.15954884886699999, \n        2.2458217143999999, \n        0.092702627181999994, \n        0.15736925601999999, \n        2.2366046905500001, \n        0.096803069114700005, \n        0.16110932826999999, \n        2.23692464828, \n        0.085685133933999999, \n        0.15911892056499999, \n        2.2280073165899998, \n        0.089985251426699997, \n        0.161024600267, \n        2.2280073165899998, \n        0.078231692314100001, \n        0.15933668613400001, \n        2.2194299697900002, \n        0.082718253135699998, \n        0.13876691460599999, \n        2.23490524292, \n        0.113735079765, \n        0.14308238029500001, \n        2.2444424629199999, \n        0.111257910728, \n        0.14925917983100001, \n        2.2359046936000002, \n        0.106022715569, \n        0.14476093649899999, \n        2.2266278266900001, \n        0.108727097511, \n        0.15403807163200001, \n        2.2274475097700002, \n        0.100345492363, \n        0.14951181411700001, \n        2.2184700965899999, \n        0.103306412697, \n        0.156021237373, \n        2.2191700935399998, \n        0.093784213066100006, \n        0.151777148247, \n        2.2105522155799999, \n        0.097061157226599998, \n        0.156606912613, \n        2.2109718322799998, \n        0.0867801904678, \n        0.15279960632299999, \n        2.20275449753, \n        0.090403199195899994, \n        0.126374840736, \n        2.2162506580399999, \n        0.11685585975600001, \n        0.13321414589899999, \n        2.2254676818800001, \n        0.11560690403, \n        0.139014214277, \n        2.21755027771, \n        0.11081349849699999, \n        0.131972670555, \n        2.2087528705600001, \n        0.112260818481, \n        0.143747448921, \n        2.2097525596600001, \n        0.105662584305, \n        0.13670110702499999, \n        2.2013955116299999, \n        0.10739028453799999, \n        0.14634680748000001, \n        2.2022347450300002, \n        0.099796295165999999, \n        0.139690846205, \n        2.1943173408500001, \n        0.101969122887, \n        0.14787957072300001, \n        2.19485712051, \n        0.093572258949300005, \n        0.14181113243099999, \n        2.1873593330399999, \n        0.096272826194800001, \n        0.109354376793, \n        2.19855594635, \n        0.117753386497, \n        0.11819863319399999, \n        2.2073335647599999, \n        0.11746466159799999, \n        0.12358972430200001, \n        2.2003555297899999, \n        0.113047480583, \n        0.114535808563, \n        2.19215798378, \n        0.113503694534, \n        0.12833008170099999, \n        2.1934976577800001, \n        0.108466982841, \n        0.11929658055300001, \n        2.1858398914300001, \n        0.10921788215600001, \n        0.131769865751, \n        2.1868796348599999, \n        0.103559851646, \n        0.12321600318000001, \n        2.17968177795, \n        0.104859471321, \n        0.13455891609199999, \n        2.1803615093199999, \n        0.098489999771099998, \n        0.126714736223, \n        2.1736235618599999, \n        0.10046529769900001, \n        0.0263677835464, \n        2.3301963806199999, \n        -0.049186587333700002, \n        0.0063519179820999997, \n        2.3273372650100002, \n        -0.055130720138499997, \n        0.0109767615795, \n        2.3255376815800002, \n        -0.061271905899000001, \n        0.0313443243504, \n        2.3266372680699998, \n        -0.0550531148911, \n        -0.0143953561783, \n        2.3208792209600002, \n        -0.060051202774000001, \n        -0.010163187980699999, \n        2.3202991485600002, \n        -0.066125750541700001, \n        -0.0068068504333499997, \n        2.3185396194500001, \n        -0.071865916252099996, \n        0.014574646949799999, \n        2.3225784301800001, \n        -0.067116618156399993, \n        0.035147637128800001, \n        2.3221783638, \n        -0.0607560873032, \n        0.0161184966564, \n        2.31744003296, \n        -0.072205424308800004, \n        0.0366048812866, \n        2.31602048874, \n        -0.065965652465799995, \n        -0.00520250201225, \n        2.3143010139500002, \n        -0.076734423637400004, \n        -0.0044739544391599996, \n        2.3084626197799998, \n        -0.080967426300000006, \n        0.016635298728899999, \n        2.31108212471, \n        -0.076919078826899995, \n        0.036889284849200003, \n        2.3090624809300002, \n        -0.071040034294099996, \n        0.062023282051099998, \n        2.3275570869400002, \n        -0.034210562706000001, \n        0.044921398162799997, \n        2.32873678207, \n        -0.041240453720099997, \n        0.050166815519300002, \n        2.3241381645199999, \n        -0.047290563583400003, \n        0.067462444305399993, \n        2.3222784995999999, \n        -0.040600180625899998, \n        0.0541034936905, \n        2.3190195560500002, \n        -0.053439140319800002, \n        0.071467995643599999, \n        2.3164403438600001, \n        -0.047013998031600002, \n        0.055422514676999997, \n        2.3123617172199999, \n        -0.059106945991500001, \n        0.072606056928600005, \n        2.3091428279900001, \n        -0.052957773208599998, \n        0.055432438850400001, \n        2.30484390259, \n        -0.064527034759500002, \n        0.072310358285900003, \n        2.3009850978899999, \n        -0.0585899353027, \n        0.091914772987400001, \n        2.32119894028, \n        -0.017273068427999999, \n        0.077684134244900005, \n        2.3245179653200001, \n        -0.0258896350861, \n        0.083248704671900001, \n        2.3190195560500002, \n        -0.032911062240600003, \n        0.097543478012100004, \n        2.3155808448799999, \n        -0.024910330772399999, \n        0.087266445159899994, \n        2.3131613731399998, \n        -0.040073752403300002, \n        0.101524710655, \n        2.3097624778700001, \n        -0.032857179641699999, \n        0.088190764188799994, \n        2.3057036399799999, \n        -0.046626925468399999, \n        0.10221159458200001, \n        2.30194473267, \n        -0.039810895919799999, \n        0.087568163871799998, \n        2.29714632034, \n        -0.052604675293000003, \n        0.101250857115, \n        2.2929873466499999, \n        -0.046108484268200002, \n        0.11612889170600001, \n        2.3133614063299999, \n        0.000327110290527, \n        0.10472619533499999, \n        2.3177599906899999, \n        -0.0085154771804799995, \n        0.11036452651000001, \n        2.3121218681300002, \n        -0.016790628433199999, \n        0.12172961235, \n        2.30778312683, \n        -0.0085276365280199991, \n        0.11426830291700001, \n        2.3062634468100001, \n        -0.025309324264499999, \n        0.12552285194400001, \n        2.3018245696999999, \n        -0.017440199851999998, \n        0.114703387022, \n        2.2981262206999999, \n        -0.0325745344162, \n        0.125701189041, \n        2.29354715347, \n        -0.0249818563461, \n        0.113403767347, \n        2.2887690067299999, \n        -0.039163351058999998, \n        0.124072104692, \n        2.2840900421099999, \n        -0.031831741332999999, \n        0.13475129008299999, \n        2.3014450073199999, \n        0.018480300903299999, \n        0.126133710146, \n        2.30778312683, \n        0.0094574689865100005, \n        0.13165664672899999, \n        2.30248451233, \n        -0.00013279914856000001, \n        0.14016330242200001, \n        2.2962865829500001, \n        0.0083868503570599991, \n        0.13531395793000001, \n        2.2963666915899998, \n        -0.0093166828155500005, \n        0.14366719126700001, \n        2.29004812241, \n        -0.00100576877594, \n        0.13524034619299999, \n        2.2880291938799999, \n        -0.017097234725999999, \n        0.143355488777, \n        2.2816710472100001, \n        -0.0089850425720199995, \n        0.13330113887799999, \n        2.2785518169399999, \n        -0.024175643920899999, \n        0.141135960817, \n        2.27221393585, \n        -0.016257166862499998, \n        0.147868365049, \n        2.2870292663599998, \n        0.035902380943299998, \n        0.14199268817899999, \n        2.29458713531, \n        0.027227163314800001, \n        0.14726734161400001, \n        2.2892684936499998, \n        0.016973376274100001, \n        0.15298679471000001, \n        2.2815709114099998, \n        0.025557041168200002, \n        0.150608301163, \n        2.2829504013099999, \n        0.0074256658554100003, \n        0.15616285800900001, \n        2.2751927375799998, \n        0.015911221504200001, \n        0.150082081556, \n        2.2745933532699998, \n        -0.00070941448211699998, \n        0.15545463562, \n        2.2668957710300002, \n        0.0076647996902500003, \n        0.14762198925, \n        2.26523590088, \n        -0.0081386566162100007, \n        0.152804106474, \n        2.2576780319199998, \n        0.000117897987366, \n        0.15556621551499999, \n        2.2702543735499998, \n        0.0527622699738, \n        0.152389377356, \n        2.2788717746699998, \n        0.044438600540199998, \n        0.157339245081, \n        2.2733135223400001, \n        0.034067749977099999, \n        0.16034233570100001, \n        2.2645962238299999, \n        0.042435646057099999, \n        0.16035637259499999, \n        2.26687574387, \n        0.0243839025497, \n        0.16321444511399999, \n        2.25813817978, \n        0.032776474952700002, \n        0.159508377314, \n        2.2586979866000001, \n        0.016073584556600001, \n        0.16227838397, \n        2.2501006126399998, \n        0.024452567100499999, \n        0.15672764182099999, \n        2.2496409416200001, \n        0.0084501504898099999, \n        0.15943786501900001, \n        2.2412629127499999, \n        0.0167962312698, \n        0.15793073177299999, \n        2.2520599365199998, \n        0.068479418754599994, \n        0.15740963816600001, \n        2.26127696037, \n        0.060800313949599998, \n        0.16201433539400001, \n        2.2555389404300001, \n        0.050590634346000002, \n        0.162372589111, \n        2.24624156952, \n        0.058463335037199998, \n        0.16476288437799999, \n        2.2490808963800002, \n        0.041022539138800003, \n        0.16502723097800001, \n        2.2398037910499999, \n        0.049055457115199999, \n        0.16379952430700001, \n        2.2412028312699999, \n        0.032737255096399999, \n        0.16410684585599999, \n        2.2321059703800001, \n        0.040863513946500001, \n        0.16098001599299999, \n        2.23260593414, \n        0.025093555450399999, \n        0.161399245262, \n        2.2237884998299999, \n        0.033280134200999997, \n        0.15504834055899999, \n        2.2333855629000001, \n        0.082467436790500004, \n        0.15713989734600001, \n        2.24272274971, \n        0.075726270675699994, \n        0.161435037851, \n        2.2368445396399999, \n        0.065983295440700002, \n        0.15921947359999999, \n        2.2274475097700002, \n        0.073080897331200004, \n        0.16403269767799999, \n        2.23042678833, \n        0.0568078756332, \n        0.16180554032300001, \n        2.2210693359399998, \n        0.064213156700099999, \n        0.16323554515800001, \n        2.2229487896000002, \n        0.0487673282623, \n        0.16122031211900001, \n        2.2137913703900001, \n        0.056383252143899998, \n        0.16074064373999999, \n        2.2149114608799998, \n        0.041293978691099999, \n        0.159049600363, \n        2.2060737609899999, \n        0.049072504043600002, \n        0.14700481295600001, \n        2.21517109871, \n        0.094140052795399998, \n        0.151666402817, \n        2.2241683006300002, \n        0.088629841804499995, \n        0.15574395656600001, \n        2.2181901931799999, \n        0.079686164855999997, \n        0.15102577209500001, \n        2.20915317535, \n        0.085729002952599997, \n        0.15837076306299999, \n        2.2118520736699998, \n        0.071204662323000004, \n        0.153754591942, \n        2.2028546333299999, \n        0.077715516090400005, \n        0.158096283674, \n        2.2047939300500001, \n        0.063648104667700003, \n        0.15389871597300001, \n        2.1960167884800001, \n        0.070497035980200004, \n        0.15637120604499999, \n        2.1973764896399999, \n        0.056553840637200002, \n        0.15275064110799999, \n        2.1889390945399998, \n        0.063675880432099999, \n        0.133886575699, \n        2.1983761787399998, \n        0.102910280228, \n        0.14107477664900001, \n        2.2065336704299998, \n        0.098924398422199994, \n        0.14508318901100001, \n        2.2004554271700001, \n        0.091139793395999993, \n        0.13793358206699999, \n        2.192237854, \n        0.095848202705399996, \n        0.147982120514, \n        2.1942172050500002, \n        0.083678722381599999, \n        0.14107918739299999, \n        2.1860399246200002, \n        0.089027523994400004, \n        0.14866229891800001, \n        2.18759918213, \n        0.076865553855900007, \n        0.142422348261, \n        2.1796419620499998, \n        0.082689523696899997, \n        0.14823317527800001, \n        2.1808214187599999, \n        0.070376276969899995, \n        0.14286407828299999, \n        2.1731638908400002, \n        0.076592922210700007, \n        0.116392701864, \n        2.18350028992, \n        0.108701348305, \n        0.125451296568, \n        2.1907784938799999, \n        0.106023788452, \n        0.12959504127499999, \n        2.1846001148199998, \n        0.0997846126556, \n        0.120661944151, \n        2.1772623062099998, \n        0.103335261345, \n        0.13307166099500001, \n        2.1784222126000001, \n        0.093695163726799993, \n        0.12451136112199999, \n        2.1711044311499998, \n        0.098022103309599998, \n        0.13521358370799999, \n        2.1722438335400001, \n        0.087904691696199994, \n        0.12752047181100001, \n        2.1651062965399999, \n        0.092815041542100005, \n        0.13668856024699999, \n        2.16604566574, \n        0.0822635889053, \n        0.13010951876599999, \n        2.1591877937300001, \n        0.087661385536199996, \n        0.124567627907, \n        2.0493612289400001, \n        -0.066425740718800003, \n        0.11722338199600001, \n        2.03042697906, \n        -0.066454768180799997, \n        0.122497439384, \n        2.0283875465399999, \n        -0.057017922401400002, \n        0.130136489868, \n        2.04744195938, \n        -0.055846571922299998, \n        0.10986661910999999, \n        2.01165246964, \n        -0.066679656505599996, \n        0.114789128304, \n        2.0095133781399999, \n        -0.058496594429000001, \n        0.118198901415, \n        2.0084335804000002, \n        -0.049988746643099997, \n        0.126006126404, \n        2.0273277759599999, \n        -0.0473473668098, \n        0.13370764255500001, \n        2.0463819503799998, \n        -0.045095205307000001, \n        0.12598380446400001, \n        2.02818775177, \n        -0.0372090935707, \n        0.133282780647, \n        2.04706192017, \n        -0.033999443054200003, \n        0.11858317256000001, \n        2.0095133781399999, \n        -0.040830969810500002, \n        0.11745497584300001, \n        2.01165246964, \n        -0.031348347663900003, \n        0.12419593334200001, \n        2.0300068855300002, \n        -0.0268366336823, \n        0.13085970282600001, \n        2.0485813617700002, \n        -0.022731781005899999, \n        0.138389199972, \n        2.08796930313, \n        -0.067516446113599998, \n        0.131885975599, \n        2.0685954093899999, \n        -0.066787958145099996, \n        0.137637227774, \n        2.0668358802800002, \n        -0.055288672447200003, \n        0.14422345161399999, \n        2.0863900184599999, \n        -0.055238842964200001, \n        0.14119815826400001, \n        2.0658361911799998, \n        -0.043620824813800002, \n        0.147791981697, \n        2.0854501724199999, \n        -0.042778253555300003, \n        0.140378803015, \n        2.06631612778, \n        -0.031615495681799999, \n        0.146828860044, \n        2.0857899189000002, \n        -0.0299518108368, \n        0.13736912608099999, \n        2.0675556659700001, \n        -0.019441366195699999, \n        0.14360001683199999, \n        2.08676958084, \n        -0.0169419050217, \n        0.146404981613, \n        2.1266179084800001, \n        -0.069913148879999998, \n        0.143287777901, \n        2.1073637008700001, \n        -0.068584561348000006, \n        0.14911934733400001, \n        2.10592412949, \n        -0.055590510368299997, \n        0.15246057510399999, \n        2.1253180503800002, \n        -0.056331157684299998, \n        0.152802824974, \n        2.1050441265100002, \n        -0.0424218177795, \n        0.15644261240999999, \n        2.1244983673100002, \n        -0.042571187019300002, \n        0.15218985080700001, \n        2.1052641868599999, \n        -0.028903365135200001, \n        0.15627682208999999, \n        2.1246185302699998, \n        -0.028454899787900001, \n        0.149428635836, \n        2.1060240268700001, \n        -0.0152099132538, \n        0.15403747558600001, \n        2.1251983642600001, \n        -0.014160513877900001, \n        0.14758250117300001, \n        2.1641063690200002, \n        -0.073097467422500007, \n        0.14756441116300001, \n        2.1455717086799999, \n        -0.071421265602100006, \n        0.15438234806100001, \n        2.1444323062900001, \n        -0.057447433471699998, \n        0.15509960055399999, \n        2.16310691833, \n        -0.058848261833200001, \n        0.15892204642300001, \n        2.1436929702800001, \n        -0.043246626853900003, \n        0.16003429889699999, \n        2.16244697571, \n        -0.044316887855500003, \n        0.15890458226199999, \n        2.14371275902, \n        -0.028591632842999998, \n        0.15980398654899999, \n        2.1624069213900001, \n        -0.029222369194000002, \n        0.15660890936899999, \n        2.1441526412999998, \n        -0.0137093067169, \n        0.15699115395499999, \n        2.1627068519599999, \n        -0.013846039772, \n        0.14677965640999999, \n        2.1992554664599999, \n        -0.0767661333084, \n        0.147275775671, \n        2.18204116821, \n        -0.074930071830699996, \n        0.15482723712900001, \n        2.1812014579799999, \n        -0.060441970825200003, \n        0.15369594097100001, \n        2.1985957622500001, \n        -0.062126874923699997, \n        0.159572601318, \n        2.1806015968299999, \n        -0.045651674270599997, \n        0.15774154663100001, \n        2.1981163024899999, \n        -0.047173380851700003, \n        0.15870526433000001, \n        2.1805214881900001, \n        -0.030256986618000001, \n        0.156046032906, \n        2.1979565620399999, \n        -0.031591892242399999, \n        0.15503180026999999, \n        2.1807017326399998, \n        -0.014560341835000001, \n        0.151480048895, \n        2.1979961395299998, \n        -0.015696406364399999, \n        0.14440760016400001, \n        2.2308464050299999, \n        -0.080032229423499995, \n        0.14622986316700001, \n        2.21559095383, \n        -0.078452348709100006, \n        0.15183579921699999, \n        2.2152109146100001, \n        -0.063800215721100006, \n        0.14862552285200001, \n        2.23080635071, \n        -0.065465688705399996, \n        0.15474569797500001, \n        2.2148711681400002, \n        -0.048804998397799997, \n        0.15042316913600001, \n        2.2306463718399998, \n        -0.050523519516000003, \n        0.15226361155500001, \n        2.2146310806299998, \n        -0.033122777938800002, \n        0.14738011360200001, \n        2.2303066253699999, \n        -0.034830093383799998, \n        0.14708539843599999, \n        2.2144312858599999, \n        -0.017097592353800001, \n        0.141916364431, \n        2.2298464775100002, \n        -0.018761277198800001, \n        0.133940190077, \n        2.25753831863, \n        -0.083046197891200005, \n        0.14009413123100001, \n        2.24488210678, \n        -0.081549406051600007, \n        0.14344370365100001, \n        2.24520158768, \n        -0.067126154899599999, \n        0.13670897483800001, \n        2.2581379413599998, \n        -0.068805932998699998, \n        0.144611924887, \n        2.24526166916, \n        -0.052306413650499997, \n        0.13750872015999999, \n        2.25835800171, \n        -0.054171442985500001, \n        0.141417741776, \n        2.2448019981399998, \n        -0.036693930625899998, \n        0.13437080383300001, \n        2.2578783035300001, \n        -0.038748741149899998, \n        0.13604232668899999, \n        2.2441022396100001, \n        -0.020684957504300001, \n        0.129263758659, \n        2.25701832771, \n        -0.022931814193699999, \n        0.11739218235, \n        2.2792115211500001, \n        -0.085886597633399994, \n        0.12659573555, \n        2.2686753273, \n        -0.084565997123699999, \n        0.128839880228, \n        2.2693545818300001, \n        -0.070529460907000005, \n        0.119173765182, \n        2.2798516750300002, \n        -0.072100400924700006, \n        0.12931010127100001, \n        2.26965475082, \n        -0.056136012077299999, \n        0.119366377592, \n        2.2801914215100001, \n        -0.058043360710100002, \n        0.12623265385599999, \n        2.2692546844499999, \n        -0.041029214858999997, \n        0.11638045311, \n        2.2799115181, \n        -0.043444514274599999, \n        0.12138137221299999, \n        2.2684750556900002, \n        -0.025565505027800001, \n        0.11180543899500001, \n        2.2792716026300002, \n        -0.028574585914599999, \n        0.091680645942700006, \n        2.30064535141, \n        -0.087397813796999999, \n        0.10565984249099999, \n        2.2904682159399998, \n        -0.086785674095199994, \n        0.107048034668, \n        2.2911880016300001, \n        -0.073322534561199998, \n        0.092526882886900003, \n        2.3014450073199999, \n        -0.074414134025600001, \n        0.107027888298, \n        2.2915279865299998, \n        -0.059736490249599997, \n        0.0922451913357, \n        2.3017644882199999, \n        -0.0614460706711, \n        0.104191184044, \n        2.2911281585699999, \n        -0.045904040336599998, \n        0.089707344770400002, \n        2.301404953, \n        -0.048509120941200003, \n        0.099945783615099995, \n        2.2903084754899998, \n        -0.0319479703903, \n        0.086041569709799995, \n        2.3006253242499999, \n        -0.035619378089899997, \n        0.058549284935000001, \n        2.3127615451799999, \n        -0.088920116424600001, \n        0.075736552476900004, \n        2.3077030181899998, \n        -0.0878578424454, \n        0.075674980878799994, \n        2.3083229064899999, \n        -0.075592398643499994, \n        0.057510823011400002, \n        2.3131814003, \n        -0.077760338783300006, \n        0.074968576431300005, \n        2.3086228370700002, \n        -0.063402295112599996, \n        0.056314587593099999, \n        2.3132214546199998, \n        -0.066475749015800001, \n        0.072972744703299994, \n        2.30860280991, \n        -0.051364302635199997, \n        0.054803252220200001, \n        2.31330156326, \n        -0.055259585380600003, \n        0.070332139730499996, \n        2.30898237228, \n        -0.039989829063399998, \n        0.053133934736300001, \n        2.3143010139500002, \n        -0.044906735420200003, \n        0.024596810340899999, \n        2.3142008781399999, \n        -0.091282129287700006, \n        0.0408408641815, \n        2.31580066681, \n        -0.090675592422500007, \n        0.039053589105600001, \n        2.3164806366000001, \n        -0.081376910209700004, \n        0.022654742002499999, \n        2.3150210380599998, \n        -0.083749413490300004, \n        0.037400513887399997, \n        2.31662034988, \n        -0.071635246276900003, \n        0.020937681198100001, \n        2.3152809143100002, \n        -0.075644016265900005, \n        0.036015272140500001, \n        2.3168005943300001, \n        -0.061631798744200002, \n        0.019670009613, \n        2.3152408599899998, \n        -0.066815614700299994, \n        0.034763902425799999, \n        2.3176999092099999, \n        -0.052165746688800002, \n        0.0186272859573, \n        2.3155808448799999, \n        -0.0581742525101, \n        0.00073289871215800005, \n        2.2932674884800002, \n        -0.085115909576400001, \n        0.011802405118899999, \n        2.3059635162399998, \n        -0.089135885238599999, \n        0.010665267705900001, \n        2.3067033290899999, \n        -0.082617759704600002, \n        0.00088047981262199995, \n        2.29422688484, \n        -0.079416990280199995, \n        0.0096375942230199994, \n        2.3069834709200001, \n        -0.075726866722099995, \n        0.00091898441314699998, \n        2.2947268485999999, \n        -0.073643326759300007, \n        0.0088286697864499997, \n        2.30680322647, \n        -0.0682905912399, \n        0.00073921680450399999, \n        2.2947268485999999, \n        -0.067857623100299996, \n        0.0081291198730499992, \n        2.30658340454, \n        -0.060791850090000002, \n        0.00045034289359999999, \n        2.2943873405500002, \n        -0.0620568990707, \n        -0.043600201606799997, \n        2.3332152366600001, \n        -0.0609533786774, \n        -0.030164331197700001, \n        2.3257176876100001, \n        -0.075437307357799993, \n        -0.026441961526899999, \n        2.3291964530899998, \n        -0.075115084648100003, \n        -0.038799911737400002, \n        2.3373942375199999, \n        -0.060573220253, \n        -0.015584379434600001, \n        2.3165001869199999, \n        -0.089477896690400002, \n        -0.012774616479900001, \n        2.3195395469700002, \n        -0.089469313621499999, \n        -0.0099326074123400002, \n        2.32193875313, \n        -0.088880538940400003, \n        -0.0226673781872, \n        2.3319556713099998, \n        -0.074316501617399999, \n        -0.033917337656000003, \n        2.3407130241399998, \n        -0.059794306755100002, \n        -0.0187876522541, \n        2.3332953453099998, \n        -0.072596073150600002, \n        -0.028870254755000001, \n        2.3424725532499999, \n        -0.058348536491399997, \n        -0.0070260763168299998, \n        2.3230984211000001, \n        -0.087153434753399997, \n        -0.0040872991085100004, \n        2.32355833054, \n        -0.084812760353099995, \n        -0.014855474233599999, \n        2.3338952064499998, \n        -0.070417284965499996, \n        -0.023741006851200001, \n        2.3432922363299999, \n        -0.056501507759099998, \n        -0.063313722610500001, \n        2.3485708236699998, \n        -0.033022880554200003, \n        -0.054748505353900002, \n        2.3415727615400002, \n        -0.047504305839500001, \n        -0.048538923263499997, \n        2.3461713790899998, \n        -0.046816229820300002, \n        -0.0558758974075, \n        2.35410928726, \n        -0.032480835914599999, \n        -0.042198210954699999, \n        2.3495302200300001, \n        -0.045671463012700003, \n        -0.048261404037499997, \n        2.3577680587800001, \n        -0.031170010566700001, \n        -0.0355956554413, \n        2.3513097763099999, \n        -0.044375419616700003, \n        -0.040292769670500002, \n        2.3584876060500002, \n        -0.029059052467299999, \n        -0.028861671686200002, \n        2.3517899513199998, \n        -0.0426031351089, \n        -0.032147288322399999, \n        2.35862779617, \n        -0.027397871017499999, \n        -0.073480010032699994, \n        2.3536293506599999, \n        0.0053126811981200001, \n        -0.069000124931300005, \n        2.3523497581499999, \n        -0.015801668167099998, \n        -0.061027914285700001, \n        2.35770797729, \n        -0.014378786087, \n        -0.065189719200099999, \n        2.3584077358200002, \n        0.0076193809509299999, \n        -0.052858084440200001, \n        2.3611669540400002, \n        -0.012393712997400001, \n        -0.056696295738200002, \n        2.3610668182399999, \n        0.0105286836624, \n        -0.044292002916299998, \n        2.3613867759699998, \n        -0.0097478628158600006, \n        -0.0477961301804, \n        2.3607869148299998, \n        0.0133661031723, \n        -0.035528063774099998, \n        2.3596274852799999, \n        -0.00651955604553, \n        -0.038692563772199998, \n        2.3589277267500002, \n        0.016277670860299999, \n        -0.082891583442700006, \n        2.3474311828599999, \n        0.059155821800200001, \n        -0.078424900770200007, \n        2.3531692028000002, \n        0.030366182327300002, \n        -0.069555997848500001, \n        2.3572278022800002, \n        0.032772183418300002, \n        -0.073433399200399999, \n        2.35045003891, \n        0.061458826065100003, \n        -0.0604845583439, \n        2.3591074943499999, \n        0.035645842552199998, \n        -0.063785523176199996, \n        2.3516898155199999, \n        0.063674092292799994, \n        -0.051008194685000001, \n        2.3576080799099999, \n        0.038500070571899997, \n        -0.053758382797200001, \n        2.3499703407300001, \n        0.065162420272800003, \n        -0.041329503059400002, \n        2.3554484844200001, \n        0.040328502655000001, \n        -0.043541520834000001, \n        2.3472909927400001, \n        0.065781474113499994, \n        -0.087406039238, \n        2.3318557739300001, \n        0.105574011803, \n        -0.085936665534999998, \n        2.33931350708, \n        0.085602045059199994, \n        -0.076128959655799994, \n        2.3416728973400001, \n        0.087477803230299994, \n        -0.077459454536400005, \n        2.3337149620100002, \n        0.106886506081, \n        -0.066161990165699999, \n        2.3426527977, \n        0.088794589042700003, \n        -0.067390203475999999, \n        2.3344750404400001, \n        0.10738384723699999, \n        -0.055876106023799998, \n        2.3410930633499998, \n        0.088800787925699995, \n        -0.0570755898952, \n        2.33299541473, \n        0.10625112056699999, \n        -0.045430898666400002, \n        2.3383738994600001, \n        0.088059425354000007, \n        -0.046638339757900001, \n        2.3303961753800002, \n        0.10430324077600001, \n        -0.085770875215500003, \n        2.3126215934799998, \n        0.13104486465500001, \n        -0.087145835161200003, \n        2.3225584030199999, \n        0.120163917542, \n        -0.077241301536599999, \n        2.3242378234899999, \n        0.120725631714, \n        -0.076044440269499997, \n        2.3140211105300001, \n        0.131090283394, \n        -0.067246288061100001, \n        2.3249578475999999, \n        0.120347738266, \n        -0.066235214471800002, \n        2.3146612644200002, \n        0.130091428757, \n        -0.057070761918999999, \n        2.3237781524700001, \n        0.11809027195000001, \n        -0.056259840726899997, \n        2.31378126144, \n        0.127004504204, \n        -0.046804875135399999, \n        2.3216390609699999, \n        0.114893555641, \n        -0.0462012290955, \n        2.3121418952899999, \n        0.122873306274, \n        -0.081495165824900004, \n        2.29584693909, \n        0.145236611366, \n        -0.083895891904799999, \n        2.3039841651900002, \n        0.139142155647, \n        -0.074439734220500001, \n        2.3048639297500002, \n        0.13913452625299999, \n        -0.072416752576799998, \n        2.2960064411199999, \n        0.14538955688499999, \n        -0.064861774444600007, \n        2.3051838874800001, \n        0.13802003860500001, \n        -0.063144177198400001, \n        2.2958664894099998, \n        0.14440166950200001, \n        -0.055040597915600002, \n        2.30440425873, \n        0.134691953659, \n        -0.053482860326799997, \n        2.2950668335, \n        0.14113259315500001, \n        -0.045097827911399997, \n        2.3030843734699999, \n        0.130256652832, \n        -0.043627470731700001, \n        2.2939472198500002, \n        0.136722922325, \n        -0.075026154518100005, \n        2.2787716388699999, \n        0.15379095077499999, \n        -0.078542709350599996, \n        2.2873692512499999, \n        0.15010917186700001, \n        -0.069965839385999998, \n        2.2867693901099999, \n        0.15038514137299999, \n        -0.067076086997999995, \n        2.2772722244299999, \n        0.154143333435, \n        -0.061100155115100002, \n        2.28606939316, \n        0.14950335025799999, \n        -0.058720469474800002, \n        2.2759523391699998, \n        0.15334379673000001, \n        -0.051655977964400003, \n        2.28522992134, \n        0.14630627632099999, \n        -0.049553841352500003, \n        2.2750129699700001, \n        0.15024161338799999, \n        -0.041923135519000003, \n        2.2842900752999999, \n        0.14195132255599999, \n        -0.039981722831699998, \n        2.2742331027999998, \n        0.14598798751799999, \n        -0.066236734390300006, \n        2.2617769241299999, \n        0.157648086548, \n        -0.070932835340500003, \n        2.2701745033299998, \n        0.156314134598, \n        -0.063736110925700001, \n        2.2676751613600001, \n        0.15668606758100001, \n        -0.059922486543699999, \n        2.2581379413599998, \n        0.15797686576799999, \n        -0.055996090173699997, \n        2.2656359672500002, \n        0.15594244003300001, \n        -0.052905201911899999, \n        2.2552986145, \n        0.15725910663600001, \n        -0.047169536352200003, \n        2.2645359039300001, \n        0.15296828746800001, \n        -0.044482707977300001, \n        2.2539594173399999, \n        0.154447793961, \n        -0.037800043821299999, \n        2.2638964653000002, \n        0.14887881279000001, \n        -0.035357564687700002, \n        2.25339984894, \n        0.15058958530399999, \n        -0.054933816194500003, \n        2.2461619377100002, \n        0.156623959541, \n        -0.060912370681799999, \n        2.2536993026699998, \n        0.15776133537299999, \n        -0.055611610412600002, \n        2.2488408088699998, \n        0.15797948837299999, \n        -0.050779908895499999, \n        2.2399034500099999, \n        0.15665745735200001, \n        -0.049426227808000003, \n        2.2450420856500002, \n        0.15725421905500001, \n        -0.0455374419689, \n        2.23506498337, \n        0.15588808059699999, \n        -0.041472464799900001, \n        2.2434225082400001, \n        0.15464174747500001, \n        -0.038117647171000003, \n        2.2330255508399999, \n        0.15351223945600001, \n        -0.032634168863299999, \n        2.24286270142, \n        0.15108573436700001, \n        -0.029609680175799999, \n        2.2324059009599999, \n        0.15033316612200001, \n        -0.0409106910229, \n        2.2332653999300001, \n        0.150473237038, \n        -0.048275232315100003, \n        2.2392835617100002, \n        0.154204726219, \n        -0.045403838157700001, \n        2.2315061092400001, \n        0.1539747715, \n        -0.039460062980699998, \n        2.2238085269900001, \n        0.149894475937, \n        -0.0412167310715, \n        2.2254877090499998, \n        0.153121113777, \n        -0.036442995071400003, \n        2.2164506912199999, \n        0.14891386032100001, \n        -0.034397989511499999, \n        2.22294855118, \n        0.15102112293200001, \n        -0.0302927196026, \n        2.21329164505, \n        0.14712977409399999, \n        -0.0262634754181, \n        2.2221689224199999, \n        0.14829742908499999, \n        -0.022575587034200002, \n        2.21225166321, \n        0.14494407176999999, \n        -0.024351805448500002, \n        2.2237284183499999, \n        0.139652252197, \n        -0.032814145088199999, \n        2.2282466888400001, \n        0.14539849758100001, \n        -0.032924890518200002, \n        2.21695041656, \n        0.14438045024900001, \n        -0.026094168424599998, \n        2.2105121612500001, \n        0.13814961910199999, \n        -0.031194180250200002, \n        2.2081129550899998, \n        0.143226385117, \n        -0.0257078111172, \n        2.2001357078599999, \n        0.13679885864300001, \n        -0.0257804393768, \n        2.2042140960699999, \n        0.14180052280399999, \n        -0.0210649967194, \n        2.1954171657599999, \n        0.13575220108, \n        -0.0185252726078, \n        2.2027745246900001, \n        0.14023864269299999, \n        -0.014293998479800001, \n        2.1935374736800002, \n        0.13485741615300001, \n        -0.060409754514700001, \n        2.3264374732999999, \n        -0.050282001495399999, \n        -0.053587794303899997, \n        2.32605743408, \n        -0.062160372734100001, \n        -0.051522612571700002, \n        2.33151578903, \n        -0.065733909606899996, \n        -0.0578101873398, \n        2.3339948654199998, \n        -0.053199648857099997, \n        -0.046362757682800002, \n        2.3283166885400002, \n        -0.076082468032799999, \n        -0.045153945684400003, \n        2.3310761451699999, \n        -0.080545783042899999, \n        -0.042997211217899997, \n        2.3341355323799999, \n        -0.084214568138099993, \n        -0.048562973737700001, \n        2.33669424057, \n        -0.068799853324900004, \n        -0.054288834333400003, \n        2.3406133651699998, \n        -0.055586099624599997, \n        -0.043813943862900002, \n        2.3413529396100001, \n        -0.070792436599699998, \n        -0.048924237489699998, \n        2.3456315994299999, \n        -0.057074904441800002, \n        -0.038944035768500002, \n        2.3379538059199998, \n        -0.086334466934199994, \n        -0.033942967653300002, \n        2.34213280678, \n        -0.087687969207800004, \n        -0.038170695304899999, \n        2.3457717895500001, \n        -0.072306752204900002, \n        -0.0426379144192, \n        2.3499703407300001, \n        -0.0582292079926, \n        -0.071568816900299995, \n        2.3302161693599999, \n        -0.0277493000031, \n        -0.066424965858499996, \n        2.3283967971799999, \n        -0.039148569107099997, \n        -0.063935279846199997, \n        2.3370342254600001, \n        -0.041812181472799997, \n        -0.069455623626700005, \n        2.33931350708, \n        -0.030157923698400001, \n        -0.060335397720299999, \n        2.3446717262300001, \n        -0.0439592599869, \n        -0.065991252660799998, \n        2.3476312160499999, \n        -0.0321533679962, \n        -0.054514974355699998, \n        2.3505702018700001, \n        -0.045262217521700003, \n        -0.059824585914599999, \n        2.3546090126000001, \n        -0.033471107482899998, \n        -0.047584414482099997, \n        2.3554089069400002, \n        -0.0459597110748, \n        -0.052306383848200001, \n        2.3605272769900001, \n        -0.034109830856299997, \n        -0.079030126333200001, \n        2.3301763534500002, \n        -0.0028871297836299999, \n        -0.075776338577299998, \n        2.3307962417599999, \n        -0.0156215429306, \n        -0.073928922414799994, \n        2.3403732776599999, \n        -0.017573595046999999, \n        -0.077332407236100006, \n        2.34019327164, \n        -0.0042461156845099999, \n        -0.070545673370400006, \n        2.3492105007199999, \n        -0.0192177295685, \n        -0.073968082666399995, \n        2.34949040413, \n        -0.0054912567138700004, \n        -0.064091056585299996, \n        2.3569083213800002, \n        -0.0205283164978, \n        -0.067270725965500003, \n        2.35742807388, \n        -0.0065544843673700001, \n        -0.056100457906699999, \n        2.3636660575900001, \n        -0.0212869644165, \n        -0.058907002210600003, \n        2.36416602135, \n        -0.0069608688354500002, \n        -0.082848191261299997, \n        2.3255376815800002, \n        0.022350549697899999, \n        -0.081313014030499994, \n        2.3283166885400002, \n        0.0098547935485799997, \n        -0.079643726348900004, \n        2.33861398697, \n        0.0092216730117800003, \n        -0.081126481294599997, \n        2.3360345363600001, \n        0.022399187088000001, \n        -0.076228141784699999, \n        2.3481707572900001, \n        0.0085757970809900008, \n        -0.077613919973400003, \n        2.3457717895500001, \n        0.022328972816499999, \n        -0.069320678710900002, \n        2.3563084602400002, \n        0.0078617334365800005, \n        -0.070519924163799999, \n        2.3540291786199998, \n        0.0219769477844, \n        -0.060666680335999999, \n        2.3631262779200002, \n        0.0077149868011499997, \n        -0.061635166406600002, \n        2.3608870506300002, \n        0.022110462188700001, \n        -0.084376543760300002, \n        2.3163003921500001, \n        0.0481306314468, \n        -0.083859056234400001, \n        2.3215990066500001, \n        0.035055875778199998, \n        -0.082044243812600004, \n        2.33203577995, \n        0.035886049270599997, \n        -0.0824274718761, \n        2.3264374732999999, \n        0.049850463867199997, \n        -0.078412890434299998, \n        2.3416929245000002, \n        0.0365108251572, \n        -0.0786541700363, \n        2.3357543945299999, \n        0.051301121711700003, \n        -0.071148484945300003, \n        2.34985017776, \n        0.036660552024800001, \n        -0.071233123540900001, \n        2.3435323238399999, \n        0.052124500274700003, \n        -0.062067627906800003, \n        2.3566281795499999, \n        0.037160634994500001, \n        -0.061987876892100002, \n        2.3500504493699998, \n        0.053111314773600003, \n        -0.084032416343699998, \n        2.3036444187199998, \n        0.073353290557900006, \n        -0.0844313204288, \n        2.3101625442499998, \n        0.061068892478900003, \n        -0.082306116819400005, \n        2.31983947754, \n        0.063664197921800003, \n        -0.081690311431900003, \n        2.3128414154099999, \n        0.076713204383900002, \n        -0.078367114067099994, \n        2.3286967277500001, \n        0.065931439399700004, \n        -0.077562183141700006, \n        2.32119894028, \n        0.079690098762499995, \n        -0.070800215005900002, \n        2.3359944820399998, \n        0.067448377609300003, \n        -0.069861918687800006, \n        2.32801675797, \n        0.081826806068399996, \n        -0.061419397592500001, \n        2.3421726226800001, \n        0.068935275077800007, \n        -0.060375571250899998, \n        2.3338351249699998, \n        0.083749890327500007, \n        -0.081909656524700003, \n        2.2910079956099998, \n        0.094321727752699994, \n        -0.083188861608500003, \n        2.2971861362500001, \n        0.084526062011700001, \n        -0.080589443445199999, \n        2.3059034347499998, \n        0.088474631309499993, \n        -0.079013347625700003, \n        2.2992856502499999, \n        0.098661661148100002, \n        -0.076249986887000007, \n        2.3138213157699998, \n        0.091988801956200003, \n        -0.074440926313400005, \n        2.30680322647, \n        0.10252892970999999, \n        -0.068429917097100001, \n        2.3201990127599998, \n        0.094602704048199995, \n        -0.066516160965000001, \n        2.3128015995000002, \n        0.105451107025, \n        -0.058869838714599998, \n        2.3257176876100001, \n        0.096833229064899995, \n        -0.056915432214700003, \n        2.3180398941, \n        0.10790097713500001, \n        -0.0780804157257, \n        2.2773122787500002, \n        0.11161208152800001, \n        -0.080203771591199999, \n        2.2844302654300002, \n        0.103319168091, \n        -0.076971530914299993, \n        2.2922077179000002, \n        0.10794758796700001, \n        -0.074473857879599994, \n        2.2845101356500002, \n        0.11643826961500001, \n        -0.072145581245400006, \n        2.2992656230900002, \n        0.112089157104, \n        -0.069374889135400006, \n        2.29102802277, \n        0.12077724933599999, \n        -0.0641324222088, \n        2.3048639297500002, \n        0.11525678634600001, \n        -0.0612904727459, \n        2.29616689682, \n        0.124139666557, \n        -0.0545255839825, \n        2.3097224235499998, \n        0.117937445641, \n        -0.051713347435000001, \n        2.3006253242499999, \n        0.127014517784, \n        -0.0726166665554, \n        2.2614569663999999, \n        0.125857830048, \n        -0.075548380613300006, \n        2.26965475082, \n        0.119143605232, \n        -0.071529984474200003, \n        2.2762126922600001, \n        0.124070763588, \n        -0.068149566650400006, \n        2.2672753334000002, \n        0.13078045845, \n        -0.0661388337612, \n        2.2821106910700002, \n        0.128522276878, \n        -0.062448352575300001, \n        2.27251362801, \n        0.13525366783100001, \n        -0.058002084493599997, \n        2.2867493629500002, \n        0.13202261924700001, \n        -0.054279416799499998, \n        2.2765724659000002, \n        0.13882803916899999, \n        -0.048492759466199999, \n        2.2907280921900002, \n        0.13504743576, \n        -0.044876426458400002, \n        2.2800714969600002, \n        0.14195227623000001, \n        -0.065590590238600005, \n        2.2434623241399998, \n        0.13660717010500001, \n        -0.069294452667199996, \n        2.2527394294700001, \n        0.131697773933, \n        -0.064342230558399993, \n        2.2577381133999999, \n        0.13650405406999999, \n        -0.060117602348299999, \n        2.24760103226, \n        0.14117753505700001, \n        -0.058313995599699998, \n        2.2622368335699998, \n        0.14090061187700001, \n        -0.053746372461299999, \n        2.2513000965100001, \n        0.14539217948899999, \n        -0.050134032964700002, \n        2.26571559906, \n        0.144477725029, \n        -0.045577764511100002, \n        2.2541391849500001, \n        0.148894548416, \n        -0.040878057479899997, \n        2.2686753273, \n        0.14764511585199999, \n        -0.036510795354800001, \n        2.25655841827, \n        0.15204143524200001, \n        -0.057073950767499999, \n        2.2233486175500001, \n        0.143409013748, \n        -0.061513990163799999, \n        2.2336654663100002, \n        0.14052975177800001, \n        -0.055485606193500001, \n        2.2368445396399999, \n        0.14473760127999999, \n        -0.050455719232599998, \n        2.2255079746200002, \n        0.14711999893200001, \n        -0.0487556755543, \n        2.23970365524, \n        0.14865732193, \n        -0.043352961540199998, \n        2.2274475097700002, \n        0.150625228882, \n        -0.040622740983999997, \n        2.2418630123100001, \n        0.152001142502, \n        -0.035280346870399999, \n        2.22892689705, \n        0.15371942520099999, \n        -0.031787991523700002, \n        2.2437024116500002, \n        0.15505695343000001, \n        -0.026722997427, \n        2.2301666736599999, \n        0.15660786628699999, \n        -0.047307103872299999, \n        2.20137524605, \n        0.14641737937900001, \n        -0.052279233932500002, \n        2.2124917507199999, \n        0.14518809318500001, \n        -0.045037835836400003, \n        2.2135915756200002, \n        0.148261189461, \n        -0.039425849914599999, \n        2.20137524605, \n        0.148781776428, \n        -0.037548422813399998, \n        2.21457123756, \n        0.151225328445, \n        -0.031543105840699998, \n        2.20137524605, \n        0.15114140510599999, \n        -0.029562920332, \n        2.21531105042, \n        0.15397202968599999, \n        -0.023657411336900001, \n        2.20137524605, \n        0.15349173545799999, \n        -0.021329015493400001, \n        2.2159309387200001, \n        0.15660977363600001, \n        -0.0157706737518, \n        2.20137524605, \n        0.15583729743999999, \n        -0.12613913416899999, \n        2.2736735343899999, \n        0.0134401321411, \n        -0.121028512716, \n        2.26507616043, \n        0.00016200542449999999, \n        -0.117729902267, \n        2.2706942558300001, \n        -0.0013016462326000001, \n        -0.12223574519200001, \n        2.2796716690099998, \n        0.012232184410099999, \n        -0.115739703178, \n        2.2561588287399998, \n        -0.013567686080899999, \n        -0.113093614578, \n        2.2613370418500001, \n        -0.015241384506200001, \n        -0.10967826843300001, \n        2.26567602158, \n        -0.016734838485699999, \n        -0.113617300987, \n        2.2753129005399999, \n        -0.0026584863662699998, \n        -0.117472320795, \n        2.2845702171300002, \n        0.0110552310944, \n        -0.107876628637, \n        2.2779722213700002, \n        -0.0038203001022300001, \n        -0.110989093781, \n        2.2873892784100001, \n        0.00978434085846, \n        -0.104724019766, \n        2.2682948112500001, \n        -0.017868280410799998, \n        -0.099000453949000006, \n        2.2700543403600002, \n        -0.0188236236572, \n        -0.101321816444, \n        2.2798914909399999, \n        -0.0051027536392199997, \n        -0.103645682335, \n        2.2894682884200002, \n        0.0081943273544300005, \n        -0.134807467461, \n        2.2879092693300001, \n        0.0375573635101, \n        -0.13089308142700001, \n        2.2815909385699999, \n        0.025815248489399999, \n        -0.126480609179, \n        2.2879092693300001, \n        0.024954319000199999, \n        -0.12996336817699999, \n        2.2944869995100001, \n        0.037127137184099997, \n        -0.12115964293500001, \n        2.2930274009699998, \n        0.024036884307899999, \n        -0.124161273241, \n        2.2997853756, \n        0.0365560054779, \n        -0.114021539688, \n        2.2960467338599999, \n        0.022702097892800002, \n        -0.116443872452, \n        2.3029246330299999, \n        0.035325884819000002, \n        -0.105974793434, \n        2.2982857227300002, \n        0.020888090133700001, \n        -0.107768505812, \n        2.3053636550899999, \n        0.033389925956699998, \n        -0.138858884573, \n        2.29310750961, \n        0.059837341308600002, \n        -0.13739946484599999, \n        2.2916479110700001, \n        0.0489362478256, \n        -0.13218232989299999, \n        2.2984261512800002, \n        0.049013257026700001, \n        -0.13332605361899999, \n        2.30000519753, \n        0.060479879379300001, \n        -0.12595960497899999, \n        2.3038845062300002, \n        0.048864006996199999, \n        -0.126743525267, \n        2.30560350418, \n        0.060805201530500001, \n        -0.11772570014, \n        2.3070032596600001, \n        0.0480139255524, \n        -0.11806109547599999, \n        2.3086228370700002, \n        0.060451388359100001, \n        -0.108486205339, \n        2.3095023632, \n        0.046260595321700002, \n        -0.10832884907699999, \n        2.3109421729999999, \n        0.059193968772900001, \n        -0.13913714885699999, \n        2.2907280921900002, \n        0.079746961593599994, \n        -0.13937449455299999, \n        2.2926275730099999, \n        0.070146083831800002, \n        -0.133583068848, \n        2.2995257377599998, \n        0.071394562721300001, \n        -0.13313505053499999, \n        2.2975060939800001, \n        0.081629037857100004, \n        -0.12670254707299999, \n        2.3051240444199999, \n        0.072235345840499995, \n        -0.12601077556599999, \n        2.3030443191500001, \n        0.083014369010899994, \n        -0.11764428019500001, \n        2.3081431388899998, \n        0.072260260581999997, \n        -0.116642147303, \n        2.3061037063600001, \n        0.083407163620000002, \n        -0.107497185469, \n        2.3100624084499999, \n        0.071712136268599999, \n        -0.10615170002, \n        2.3079030513799998, \n        0.083303689956699997, \n        -0.13698887825, \n        2.2842900752999999, \n        0.096464872360200002, \n        -0.13833701610599999, \n        2.2879092693300001, \n        0.088524818420399998, \n        -0.132163852453, \n        2.2945470809900002, \n        0.091053962707500005, \n        -0.13067698478699999, \n        2.2906880378699999, \n        0.099640846252399995, \n        -0.124841690063, \n        2.2999653816199999, \n        0.093002557754500004, \n        -0.123197197914, \n        2.2959666252100002, \n        0.10215890407600001, \n        -0.115222215652, \n        2.3030242919899999, \n        0.093790173530599999, \n        -0.113381952047, \n        2.2990255355799998, \n        0.103360414505, \n        -0.104454040527, \n        2.3048839569099999, \n        0.093997478485099997, \n        -0.10239911079400001, \n        2.3009448051499999, \n        0.103903889656, \n        -0.132707118988, \n        2.2748930454299998, \n        0.109772920609, \n        -0.135107368231, \n        2.2799315452600002, \n        0.10355246067, \n        -0.12868168950100001, \n        2.2860493659999999, \n        0.107360959053, \n        -0.126185894012, \n        2.2806911468500002, \n        0.114184975624, \n        -0.12107822299, \n        2.29114818573, \n        0.110441803932, \n        -0.118486255407, \n        2.2855496406600002, \n        0.117810845375, \n        -0.11111864447600001, \n        2.2941672801999999, \n        0.112067937851, \n        -0.10843026638, \n        2.28852891922, \n        0.11986386776000001, \n        -0.099981427192700006, \n        2.2961468696599998, \n        0.112966656685, \n        -0.0971958637238, \n        2.2905881404900001, \n        0.121129989624, \n        -0.126410245895, \n        2.26307654381, \n        0.119552135468, \n        -0.129803210497, \n        2.2692346572900002, \n        0.115110754967, \n        -0.123196810484, \n        2.27469277382, \n        0.120084285736, \n        -0.119721889496, \n        2.2681350708000001, \n        0.12502992153199999, \n        -0.115422815084, \n        2.2792916297899999, \n        0.124224424362, \n        -0.11188897490499999, \n        2.2724537849400002, \n        0.129641890526, \n        -0.105313777924, \n        2.2822308540299998, \n        0.12669813632999999, \n        -0.101767271757, \n        2.2753129005399999, \n        0.132521748543, \n        -0.094037413597099995, \n        2.2843101024600001, \n        0.128338575363, \n        -0.090501070022599994, \n        2.27745199203, \n        0.13453567027999999, \n        -0.118216127157, \n        2.2494206428500001, \n        0.12568545341500001, \n        -0.12254300713500001, \n        2.2564387321499999, \n        0.12308204173999999, \n        -0.115768671036, \n        2.2610971927599999, \n        0.128993034363, \n        -0.111344784498, \n        2.2536594867700002, \n        0.13194465637200001, \n        -0.10788619518299999, \n        2.2651162147499999, \n        0.13402163982400001, \n        -0.103416204453, \n        2.2573583126100001, \n        0.13732266426100001, \n        -0.097787857055700006, \n        2.2678952217099999, \n        0.13728511333499999, \n        -0.093373179435700004, \n        2.2600374221799999, \n        0.140938997269, \n        -0.086581438779799999, \n        2.2700343132, \n        0.13966619968399999, \n        -0.082273364067099994, \n        2.26219677925, \n        0.14367389679000001, \n        -0.10824286937700001, \n        2.2345252037000001, \n        0.12805390357999999, \n        -0.113444566727, \n        2.24210309982, \n        0.127347588539, \n        -0.106457471848, \n        2.2459015846299999, \n        0.133855700493, \n        -0.10111451149, \n        2.2378842830700001, \n        0.134697437286, \n        -0.098479866981500006, \n        2.2492806911500001, \n        0.13950419425999999, \n        -0.093078732490499999, \n        2.2409434318499999, \n        0.140524983406, \n        -0.088521093130099995, \n        2.2518200874300001, \n        0.14343369007099999, \n        -0.083228617906599994, \n        2.2433426380200001, \n        0.14472007751499999, \n        -0.077571511268599999, \n        2.2539591789200002, \n        0.14650356769600001, \n        -0.072471350431400003, \n        2.2454419136000001, \n        0.14809894561799999, \n        -0.096608400344800005, \n        2.2189500331900001, \n        0.12653970718400001, \n        -0.10262581706, \n        2.2267875671400001, \n        0.12778961658499999, \n        -0.095323055982600005, \n        2.2297265529599999, \n        0.13444113731400001, \n        -0.089090913534199997, \n        2.2214889526400001, \n        0.133057713509, \n        -0.0872142612934, \n        2.2324459552799998, \n        0.140343904495, \n        -0.080887764692299996, \n        2.2238683700599999, \n        0.138919711113, \n        -0.077493548393199996, \n        2.2346851825699998, \n        0.14474844932600001, \n        -0.071313649416000005, \n        2.2259478569, \n        0.14346957206700001, \n        -0.066967219114299995, \n        2.2367243766799998, \n        0.148404121399, \n        -0.0610539913177, \n        2.2278673648799998, \n        0.147363424301, \n        -0.083430558443100003, \n        2.2032747268700001, \n        0.121025204659, \n        -0.090204983949700002, \n        2.2110719680800002, \n        0.124289870262, \n        -0.082425236701999999, \n        2.2132315635699999, \n        0.13051843643200001, \n        -0.075333863496800005, \n        2.20505428314, \n        0.12679398059800001, \n        -0.074100583791699995, \n        2.2152910232499998, \n        0.13621151447300001, \n        -0.066854000091600002, \n        2.2068135738399999, \n        0.13217782974200001, \n        -0.064686059951800004, \n        2.2171704769099998, \n        0.14083385467500001, \n        -0.057608395814900001, \n        2.2084531784100001, \n        0.13679206371300001, \n        -0.054726481437700002, \n        2.2189500331900001, \n        0.14492130279500001, \n        -0.047979712486300001, \n        2.2100725174, \n        0.14102149009699999, \n        -0.0689911544323, \n        2.1879391670200001, \n        0.111920714378, \n        -0.076299995183900002, \n        2.1955771446200001, \n        0.116730332375, \n        -0.067823916673699997, \n        2.1970365047499998, \n        0.121855735779, \n        -0.060105055570600002, \n        2.18909907341, \n        0.116310596466, \n        -0.0591495931149, \n        2.1984961032900001, \n        0.12677812576299999, \n        -0.051216125488299999, \n        2.1902785301200001, \n        0.120695352554, \n        -0.0500782430172, \n        2.1999156475100001, \n        0.131294727325, \n        -0.042322039604200001, \n        2.1914384365099999, \n        0.125069379807, \n        -0.040808677673300001, \n        2.2013154029800002, \n        0.13560831546800001, \n        -0.033425092697099999, \n        2.1925978660599998, \n        0.129438519478, \n        -0.0442594587803, \n        2.31640052795, \n        -0.069015383720400003, \n        -0.025300383567800001, \n        2.3227984905199999, \n        -0.079038858413699994, \n        -0.026726752519600001, \n        2.3267974853500002, \n        -0.075388550758399994, \n        -0.046047925949100003, \n        2.3218588829, \n        -0.064665675163300004, \n        -0.0057973563671100004, \n        2.3271369934099999, \n        -0.088134407997099998, \n        -0.0066946744918799997, \n        2.3301362991299999, \n        -0.085777282714799993, \n        -0.0069208145141600001, \n        2.33271551132, \n        -0.083194017410299997, \n        -0.027113199234000001, \n        2.3304562568699998, \n        -0.071645617484999993, \n        -0.046507358551000001, \n        2.3272371292099998, \n        -0.060483694076499998, \n        -0.025419920682899999, \n        2.3336153030400002, \n        -0.067808747291599997, \n        -0.044308185577400003, \n        2.3319556713099998, \n        -0.0561647415161, \n        -0.0058047771453900001, \n        2.3345351219200001, \n        -0.080199837684599998, \n        -0.0040174722671500003, \n        2.3359541893000002, \n        -0.077031135559100003, \n        -0.022686928510700002, \n        2.3365144729599998, \n        -0.063989281654400001, \n        -0.040780097246199999, \n        2.3364944458000001, \n        -0.051991105079699999, \n        -0.078478127718000001, \n        2.3050839901, \n        -0.049235343933100001, \n        -0.0621300935745, \n        2.3106622695899999, \n        -0.0591471195221, \n        -0.063947528600699993, \n        2.3181800842300002, \n        -0.055000901222199999, \n        -0.080244570970500001, \n        2.31338143349, \n        -0.044770956039399998, \n        -0.064305186271699996, \n        2.3254179954500001, \n        -0.050919890403699999, \n        -0.080568194389300005, \n        2.3213591575599999, \n        -0.040348887443500001, \n        -0.061742752790499997, \n        2.3318357467699999, \n        -0.046713471412699999, \n        -0.078006982803299998, \n        2.32859683037, \n        -0.035932302474999997, \n        -0.057720750570300003, \n        2.3377938270600001, \n        -0.042461514472999999, \n        -0.074003219604500001, \n        2.3354744911199998, \n        -0.031579732894900001, \n        -0.106261700392, \n        2.2917475700400001, \n        -0.027701020240800001, \n        -0.092869192361799996, \n        2.2984657287600001, \n        -0.038771748542800001, \n        -0.094757765531500004, \n        2.3064832687400001, \n        -0.033677101135300001, \n        -0.10827434062999999, \n        2.2990455627399999, \n        -0.021907806396500001, \n        -0.095358759164799994, \n        2.31428098679, \n        -0.028617978095999998, \n        -0.10912844538700001, \n        2.30604362488, \n        -0.0160256624222, \n        -0.093384593725199999, \n        2.32139897346, \n        -0.023526430130000001, \n        -0.107665896416, \n        2.3124613761899999, \n        -0.0099502801895100003, \n        -0.090122580528299995, \n        2.3282570838900001, \n        -0.0184859037399, \n        -0.105045080185, \n        2.31863975525, \n        -0.0038410425186200001, \n        -0.13206633925399999, \n        2.27713251114, \n        -0.0036827325820900001, \n        -0.11961507797199999, \n        2.2846698761000002, \n        -0.015936493873600001, \n        -0.121580511332, \n        2.29136800766, \n        -0.0094019174575799992, \n        -0.13385176658600001, \n        2.2835302352900002, \n        0.0033711194992099998, \n        -0.122328668833, \n        2.29776597023, \n        -0.0027308464050299999, \n        -0.134261101484, \n        2.2897086143499998, \n        0.010434985160800001, \n        -0.12064155936199999, \n        2.3035843372299998, \n        0.00417542457581, \n        -0.13191792368899999, \n        2.2954666614499999, \n        0.017518758773799999, \n        -0.11773705482500001, \n        2.3093628883399999, \n        0.0109664201736, \n        -0.12819841504099999, \n        2.3010053634599998, \n        0.0246125459671, \n        -0.15102323889700001, \n        2.2616171836899999, \n        0.020559191703799998, \n        -0.14275324344599999, \n        2.2695546150200001, \n        0.0086315870285000006, \n        -0.14426279068, \n        2.2756729126000002, \n        0.015955805778500001, \n        -0.15236556530000001, \n        2.2674553394300001, \n        0.027995109558100001, \n        -0.14422699809100001, \n        2.2816309928899998, \n        0.023176789283800001, \n        -0.15204668045, \n        2.2732133865400002, \n        0.035273671150199998, \n        -0.141100615263, \n        2.2873091697699999, \n        0.0301916599274, \n        -0.148404210806, \n        2.2787919044499998, \n        0.042237401008600003, \n        -0.136428803205, \n        2.2928075790400002, \n        0.037103295326199999, \n        -0.14310014247899999, \n        2.2842900752999999, \n        0.049043655395499999, \n        -0.15946063399300001, \n        2.2441222667699998, \n        0.041820049285900003, \n        -0.15622317791000001, \n        2.25303959846, \n        0.031652212142900003, \n        -0.15771234035500001, \n        2.2585380077399999, \n        0.039132356643700003, \n        -0.16125190257999999, \n        2.2492809295699998, \n        0.049361348152200002, \n        -0.157539695501, \n        2.2640962600700001, \n        0.046505212783800001, \n        -0.16144248843199999, \n        2.2546191215500002, \n        0.056885480880700001, \n        -0.15404284000400001, \n        2.26969432831, \n        0.0536625385284, \n        -0.15843138098699999, \n        2.2602772712700001, \n        0.0643757581711, \n        -0.14888426661500001, \n        2.2753329277000001, \n        0.060712695121799998, \n        -0.15381932258600001, \n        2.2661156654400001, \n        0.071849346160899996, \n        -0.163352251053, \n        2.2263674735999999, \n        0.059209704399099998, \n        -0.161841869354, \n        2.2351450920099998, \n        0.050971627235399997, \n        -0.16393330693200001, \n        2.2400033474000001, \n        0.058675050735500001, \n        -0.16549646854399999, \n        2.2309064865099999, \n        0.067174196243299997, \n        -0.164491504431, \n        2.2451221942899999, \n        0.066429376602199997, \n        -0.16618156433100001, \n        2.2357845306400002, \n        0.075212836265600005, \n        -0.16198360919999999, \n        2.25080037117, \n        0.074285268783600006, \n        -0.16394850611699999, \n        2.2414231300399998, \n        0.083400130271900005, \n        -0.15794289112099999, \n        2.2567584514600001, \n        0.082191705703700005, \n        -0.16025623679199999, \n        2.24742150307, \n        0.091661214828499996, \n        -0.163285702467, \n        2.2101526260400002, \n        0.073071002960199999, \n        -0.163977473974, \n        2.21801018715, \n        0.066637039184599997, \n        -0.165681958199, \n        2.22220873833, \n        0.074958086013799996, \n        -0.16418120265, \n        2.2140712738000001, \n        0.081794500350999999, \n        -0.16600689292000001, \n        2.22682762146, \n        0.083311796188399997, \n        -0.16377189755400001, \n        2.2184700965899999, \n        0.090467810630800005, \n        -0.16357341408699999, \n        2.2323257923100002, \n        0.091730117797899996, \n        -0.16075304150600001, \n        2.2238085269900001, \n        0.099040508270300004, \n        -0.159760326147, \n        2.2382440567000002, \n        0.100180745125, \n        -0.15642917156200001, \n        2.2296266555800002, \n        0.107562661171, \n        -0.15705835819200001, \n        2.1964168548599998, \n        0.082308411598200001, \n        -0.160845279694, \n        2.2029347419700001, \n        0.078328490257300001, \n        -0.160686284304, \n        2.20669364929, \n        0.087450385093699998, \n        -0.155621618032, \n        2.2001357078599999, \n        0.091702938079799998, \n        -0.15928065776799999, \n        2.2109718322799998, \n        0.096422791480999998, \n        -0.15302416682200001, \n        2.2043342590299999, \n        0.100852608681, \n        -0.15538206696500001, \n        2.2162108421300002, \n        0.10509622097, \n        -0.14810609817500001, \n        2.20945286751, \n        0.109513044357, \n        -0.15023681521400001, \n        2.2219290733300001, \n        0.11362004280100001, \n        -0.14202749729200001, \n        2.2150311469999999, \n        0.117928743362, \n        -0.146965175867, \n        2.18549990654, \n        0.0860106945038, \n        -0.15232780575800001, \n        2.1907181739800001, \n        0.084909796714800007, \n        -0.14941167831400001, \n        2.1944575309799998, \n        0.094328761100800004, \n        -0.14244678616500001, \n        2.1892385482800001, \n        0.095261096954300004, \n        -0.14549347758299999, \n        2.1985762119299999, \n        0.10343265533400001, \n        -0.13711619377100001, \n        2.1932578086899999, \n        0.104149222374, \n        -0.13957062363600001, \n        2.20347452164, \n        0.111905694008, \n        -0.13016164302800001, \n        2.1977763175999998, \n        0.112312793732, \n        -0.13264596462200001, \n        2.2087726593000001, \n        0.120063900948, \n        -0.12239503860500001, \n        2.20257496834, \n        0.120114326477, \n        -0.13495504856099999, \n        2.1754829883600002, \n        0.083041906356800005, \n        -0.14128232002300001, \n        2.1804416179700001, \n        0.085490703582800004, \n        -0.135116815567, \n        2.1841204166399999, \n        0.094432353973399996, \n        -0.12715053558299999, \n        2.1790018081700002, \n        0.091667652130100002, \n        -0.128321051598, \n        2.1878793239599998, \n        0.102988004684, \n        -0.118896484375, \n        2.1824412345900002, \n        0.099917769432099998, \n        -0.120264738798, \n        2.1918182373000001, \n        0.110771298409, \n        -0.10974323749500001, \n        2.1857197284700001, \n        0.107416629791, \n        -0.111577868462, \n        2.1958367824599998, \n        0.118168830872, \n        -0.100140362978, \n        2.1889190673800001, \n        0.11453938484200001, \n        -0.119879573584, \n        2.16560602188, \n        0.072553277015699996, \n        -0.12765944004099999, \n        2.1705243587499998, \n        0.0783567428589, \n        -0.11827647685999999, \n        2.17382359505, \n        0.0867919921875, \n        -0.10894867777800001, \n        2.1686050891900002, \n        0.080860853195200005, \n        -0.10863146185899999, \n        2.1769227981600001, \n        0.094907641410800006, \n        -0.097945600748100006, \n        2.1713643074000002, \n        0.088926792144799996, \n        -0.098461240529999994, \n        2.1796419620499998, \n        0.10238289833100001, \n        -0.086798787116999995, \n        2.1735634803799999, \n        0.096509814262400004, \n        -0.088028639554999996, \n        2.1821608543400002, \n        0.109538316727, \n        -0.075579792261099996, \n        2.1755030155199999, \n        0.103851556778, \n        0.0086885392665900004, \n        2.33539485931, \n        -0.051250100135800003, \n        0.0014290809631299999, \n        2.32813692093, \n        -0.063864111900300002, \n        0.0080835521221200007, \n        2.3322155475600002, \n        -0.068637132644700005, \n        0.016557574272200001, \n        2.3390936851499999, \n        -0.056385397911099998, \n        -0.0060585439205200001, \n        2.32005929947, \n        -0.077358841896099997, \n        -0.00064274668693500001, \n        2.32469797134, \n        -0.081936120986899993, \n        0.0049105584621399996, \n        2.3273572921799999, \n        -0.086269021034200005, \n        0.014680981636, \n        2.33435487747, \n        -0.0734745264053, \n        0.0241758823395, \n        2.3402132988000002, \n        -0.061280608177199998, \n        0.021164387464500001, \n        2.3329753875699999, \n        -0.078490495681799999, \n        0.031292915344199999, \n        2.3374941349, \n        -0.066505193710300003, \n        0.010738939046900001, \n        2.3265571594200001, \n        -0.090270400047299998, \n        0.0167047977448, \n        2.32365846634, \n        -0.093943953514099995, \n        0.0275906324387, \n        2.3294565677599999, \n        -0.083426952362100001, \n        0.038159042596800002, \n        2.3330554962200001, \n        -0.072249054908800001, \n        0.021844625473, \n        2.3465113639799999, \n        -0.028392672538799998, \n        0.015491694211999999, \n        2.3418328762099998, \n        -0.039814233779900003, \n        0.024527341127400001, \n        2.3446717262300001, \n        -0.044852137565599998, \n        0.031991124153100001, \n        2.3486309051499998, \n        -0.033325314521800001, \n        0.033120244741399997, \n        2.3446717262300001, \n        -0.049593806266800003, \n        0.041506856679899999, \n        2.34777069092, \n        -0.038005948066699997, \n        0.040827631950399998, \n        2.3406929969800001, \n        -0.054926514625500002, \n        0.0497607290745, \n        2.3433923721299998, \n        -0.044011831283599999, \n        0.048092693090399999, \n        2.3351349830600001, \n        -0.061060905456500003, \n        0.057383686304099998, \n        2.3371341228500002, \n        -0.050699710845899998, \n        0.033223539590800003, \n        2.3486309051499998, \n        -0.00301373004913, \n        0.027753233909600002, \n        2.3486905097999999, \n        -0.0160907506943, \n        0.038948029279700001, \n        2.35089015961, \n        -0.0215021371841, \n        0.045396089553799999, \n        2.35224962234, \n        -0.0100132226944, \n        0.049329280853300003, \n        2.3511898517600001, \n        -0.027746677398700001, \n        0.056580513715699998, \n        2.3523297309900002, \n        -0.016506671905499998, \n        0.058083653450000002, \n        2.34625148773, \n        -0.034135818481400002, \n        0.065788269043000003, \n        2.3471112251299999, \n        -0.023374438285799999, \n        0.066024422645600003, \n        2.3390536308300001, \n        -0.041009426116899998, \n        0.074007868766800003, \n        2.33953332901, \n        -0.030752182006800001, \n        0.042873471975299997, \n        2.3459913730599999, \n        0.022515296936, \n        0.0382616221905, \n        2.34767103195, \n        0.0098717212676999993, \n        0.051334500312799999, \n        2.3511099815400001, \n        0.0027437210083000002, \n        0.056761264801000001, \n        2.3489303588900001, \n        0.015631914138799999, \n        0.063253879547100003, \n        2.3516297340399999, \n        -0.0045129060745200001, \n        0.069342494010899994, \n        2.3499302864099998, \n        0.0076355934143099999, \n        0.072866648435600007, \n        2.3465514182999998, \n        -0.0121212005615, \n        0.079310268163700001, \n        2.3451716899899999, \n        -0.00078535079956099996, \n        0.081325858831400005, \n        2.3388938903800001, \n        -0.020119428634599999, \n        0.087971210479699996, \n        2.33757400513, \n        -0.0094274282455399996, \n        0.050842255353900002, \n        2.3372540473900001, \n        0.048235654830899997, \n        0.047065019607500001, \n        2.3428926467900002, \n        0.0350153446198, \n        0.061675399541900003, \n        2.3457915782900001, \n        0.028070449829100001, \n        0.066075295209900006, \n        2.3403134346000001, \n        0.0410865545273, \n        0.074839562177700006, \n        2.3469114303600001, \n        0.019802927970900001, \n        0.079738140106200006, \n        2.3421127796199999, \n        0.032078504562400002, \n        0.085111141204799998, \n        2.3427724838300001, \n        0.010509729385400001, \n        0.090260952711100004, \n        2.3386735916100001, \n        0.021947622299200002, \n        0.093936204910299997, \n        2.33541464806, \n        0.0012650489807099999, \n        0.099213451147100007, \n        2.3319556713099998, \n        0.011914730072, \n        0.057178348302799997, \n        2.3212187290199999, \n        0.074226379394499997, \n        0.054211467504499997, \n        2.3297762870800001, \n        0.061546683311499997, \n        0.069959729909900001, \n        2.3327956199600002, \n        0.054406404495199998, \n        0.073327064514199999, \n        2.32397794724, \n        0.067332863807699997, \n        0.084031820297199994, \n        2.3346948623700001, \n        0.045273661613500001, \n        0.087713479995700006, \n        2.3254976272599999, \n        0.058574080467200001, \n        0.094751596450800002, \n        2.3320558071100002, \n        0.034353017807000001, \n        0.098574876785299997, \n        2.3234782218899999, \n        0.047142386436499997, \n        0.10379505157500001, \n        2.3264174461399998, \n        0.023256182670599999, \n        0.10767364502, \n        2.3189797401400001, \n        0.035060286521899998, \n        0.0619293153286, \n        2.3033242225600001, \n        0.095362067222600003, \n        0.059748977422700002, \n        2.3122217655199999, \n        0.085661172866800001, \n        0.0761761665344, \n        2.3143610954299998, \n        0.079385399818399996, \n        0.078505516052200006, \n        2.3045840263400001, \n        0.089938163757300002, \n        0.090776443481400002, \n        2.3153808116899999, \n        0.071183919906600002, \n        0.093213796615600003, \n        2.30500364304, \n        0.082428574562099996, \n        0.10172268748299999, \n        2.3137011528000002, \n        0.059599637985200002, \n        0.104186534882, \n        2.3033847808800001, \n        0.071059823036199996, \n        0.11084172129600001, \n        2.3101425170900001, \n        0.0468384027481, \n        0.11329159140599999, \n        2.3004853725399999, \n        0.058033704757699998, \n        0.065143555402799994, \n        2.2840900421099999, \n        0.111289381981, \n        0.063725501298900006, \n        2.2941069603000002, \n        0.103744626045, \n        0.080313533544499993, \n        2.2949466705299999, \n        0.098754048347499998, \n        0.081599116325399998, \n        2.2846102714500001, \n        0.106617331505, \n        0.095018863677999998, \n        2.29490709305, \n        0.091812610626199997, \n        0.096184730529800005, \n        2.28441023827, \n        0.099977731704700007, \n        0.105958789587, \n        2.2931275367700001, \n        0.080961823463400001, \n        0.107030659914, \n        2.2827706337000002, \n        0.089403390884399997, \n        0.115015864372, \n        2.2905082702600001, \n        0.068115234375, \n        0.116006761789, \n        2.28043150902, \n        0.076861619949300006, \n        0.066869020461999995, \n        2.26195669174, \n        0.123600244522, \n        0.066189408302299996, \n        2.2733535766599999, \n        0.117929935455, \n        0.082360714673999996, \n        2.2735533714299998, \n        0.11355471611, \n        0.082596868276599997, \n        2.2618770599400002, \n        0.119488120079, \n        0.096704840660100003, \n        2.27319335938, \n        0.107229828835, \n        0.096572011709200004, \n        2.26135730743, \n        0.11348211765299999, \n        0.107394337654, \n        2.2716937065099998, \n        0.097005844116200002, \n        0.10704162716899999, \n        2.2599773406999999, \n        0.10368871688799999, \n        0.116256684065, \n        2.26965475082, \n        0.084832191467300005, \n        0.115758508444, \n        2.2581579685199999, \n        0.092001438140900005, \n        0.067153722047799999, \n        2.2376241684, \n        0.131766557693, \n        0.067188262939500004, \n        2.2500205040000001, \n        0.128234744072, \n        0.082306355238000006, \n        2.2496604919399998, \n        0.12433922290799999, \n        0.081487536430400007, \n        2.2369842529300001, \n        0.128029346466, \n        0.095779865980100007, \n        2.2489604949999999, \n        0.11864745616900001, \n        0.094321131706200004, \n        2.2361450195299999, \n        0.122638344765, \n        0.105964183807, \n        2.24766111374, \n        0.10936295986199999, \n        0.104153901339, \n        2.23484516144, \n        0.113939762115, \n        0.11450406908999999, \n        2.24602174759, \n        0.098281979560899999, \n        0.11248600482899999, \n        2.2333257198299998, \n        0.103587627411, \n        0.066045671701399994, \n        2.2117519378699999, \n        0.13526010513299999, \n        0.066770672798199995, \n        2.2248282432600002, \n        0.13413047790499999, \n        0.0801393985748, \n        2.2239680290199999, \n        0.13048040866899999, \n        0.078260183334400005, \n        2.21067237854, \n        0.13161385059399999, \n        0.092189401388200004, \n        2.22294855118, \n        0.125367999077, \n        0.089377760887100005, \n        2.20947265625, \n        0.12674880027800001, \n        0.101602554321, \n        2.2216091156000002, \n        0.117330431938, \n        0.098301976919199993, \n        2.20805311203, \n        0.119445443153, \n        0.109697073698, \n        2.2201297283199999, \n        0.10783028602600001, \n        0.10612937808, \n        2.2064933776900002, \n        0.11092340946199999, \n        0.063754916191100006, \n        2.1850399971000001, \n        0.13426864147199999, \n        0.064984321594200006, \n        2.19845628738, \n        0.13508939743000001, \n        0.075848460197400006, \n        2.19719648361, \n        0.131351351738, \n        0.073170453309999994, \n        2.1836404800400002, \n        0.13039076328300001, \n        0.085879296064399993, \n        2.1958367824599998, \n        0.12669348716699999, \n        0.082037687301600007, \n        2.1820812225299999, \n        0.12592053413400001, \n        0.094243884086600005, \n        2.1942172050500002, \n        0.12019646167799999, \n        0.089807271957400001, \n        2.1802616119399998, \n        0.12026536464699999, \n        0.101775527, \n        2.1924977302599999, \n        0.11277961731, \n        0.097028285265, \n        2.1783022880599998, \n        0.114017486572, \n        -0.030074715614300002, \n        2.3483307361599999, \n        -0.0456140041351, \n        -0.029864996671699999, \n        2.3388738632199999, \n        -0.0622924566269, \n        -0.021769016981099999, \n        2.3442318439499998, \n        -0.065653562545800001, \n        -0.020867109298700001, \n        2.3538291454300002, \n        -0.048782825469999999, \n        -0.0293575227261, \n        2.3306760787999998, \n        -0.081803679466199999, \n        -0.022411078214599998, \n        2.3354344368, \n        -0.085183620452899997, \n        -0.015346199274099999, \n        2.3385338783299998, \n        -0.087851643562300005, \n        -0.0135242938995, \n        2.3477110862699999, \n        -0.068511605262799993, \n        -0.0114900171757, \n        2.35734820366, \n        -0.051707744598400003, \n        -0.0049819648265799999, \n        2.3474111557000001, \n        -0.070172667503399996, \n        -0.0017744302749600001, \n        2.3563485145600001, \n        -0.053477644920300001, \n        -0.0080444514751399996, \n        2.3385739326500001, \n        -0.089146494865399994, \n        -0.00062438845634500001, \n        2.3367743492100002, \n        -0.089610099792499995, \n        0.0037091076374099999, \n        2.3447320461299999, \n        -0.071018218994100005, \n        0.0081103742122700002, \n        2.3524098396299999, \n        -0.054296016693099997, \n        -0.028758078813599999, \n        2.36206674576, \n        -0.0135200023651, \n        -0.029689222574200001, \n        2.3570685386700001, \n        -0.030335545539900002, \n        -0.019445061683699999, \n        2.3624267578100002, \n        -0.0332256555557, \n        -0.0175545215607, \n        2.36758518219, \n        -0.016440033912699999, \n        -0.0090309083461800003, \n        2.3656253814700001, \n        -0.035999655723599998, \n        -0.0061975717544600004, \n        2.3707637786900002, \n        -0.019351959228499999, \n        0.00172314047813, \n        2.36378598213, \n        -0.037795782089200002, \n        0.0054661035537700003, \n        2.3686046600299999, \n        -0.021587252616900001, \n        0.012647181749299999, \n        2.3593075275399999, \n        -0.039160728454600002, \n        0.017283171415299999, \n        2.3649454116799999, \n        -0.024612784385699998, \n        -0.0254587829113, \n        2.36528587341, \n        0.022117495536800001, \n        -0.0273313224316, \n        2.3640060424799998, \n        0.00457262992859, \n        -0.0152469873428, \n        2.3695044517500001, \n        0.00167787075043, \n        -0.0125738680363, \n        2.3706443309799998, \n        0.019283056259200002, \n        -0.0030406713485700001, \n        2.3726034164400001, \n        -0.00139701366425, \n        0.00038936734199499997, \n        2.3736033439600002, \n        0.016073703765900001, \n        0.0094096362590799995, \n        2.3710238933599999, \n        -0.0048317909240700001, \n        0.0135091543198, \n        2.37178373337, \n        0.012114405631999999, \n        0.0219819843769, \n        2.36698532104, \n        -0.0084468126297000002, \n        0.026707381010099999, \n        2.3675451278700002, \n        0.0077797174453699998, \n        -0.020576000213599999, \n        2.3589475154900001, \n        0.059463739395100003, \n        -0.023190379142800002, \n        2.3636860847499999, \n        0.040442347526600003, \n        -0.0095866024494200008, \n        2.3698444366500002, \n        0.037033200263999998, \n        -0.0063367784023300004, \n        2.3653259277299998, \n        0.056007862091100001, \n        0.0040418803691900001, \n        2.3734431266799998, \n        0.033185005188000001, \n        0.0078663825988799993, \n        2.36956429482, \n        0.051523685455299999, \n        0.017719894647600001, \n        2.3713636398300002, \n        0.028928160667400001, \n        0.0219971835613, \n        2.3677849769599999, \n        0.046623826026900003, \n        0.031422495841999999, \n        2.36752510071, \n        0.023453950881999999, \n        0.036091715097400001, \n        2.3652658462499998, \n        0.039362549781800003, \n        -0.0145088136196, \n        2.3456716537500002, \n        0.094334721565199994, \n        -0.017665475606899999, \n        2.3525896072400001, \n        0.077771067619299999, \n        -0.0028757750988, \n        2.3590276241299999, \n        0.074350833892800006, \n        0.00074493885040299997, \n        2.3516697883600002, \n        0.091389536857599998, \n        0.011812061071399999, \n        2.36296629906, \n        0.070113182067900001, \n        0.015828609466599999, \n        2.3552286624900001, \n        0.087474822997999996, \n        0.0262961089611, \n        2.3621065616600001, \n        0.064066171646099998, \n        0.030572175979599998, \n        2.3549687862400002, \n        0.080618619918799997, \n        0.040678143501300001, \n        2.3601472377800001, \n        0.055832147598299998, \n        0.0451456308365, \n        2.3528895378099999, \n        0.072174072265600006, \n        -0.0076561868190799997, \n        2.3321957588200002, \n        0.120372653008, \n        -0.011155694723100001, \n        2.3391935825300001, \n        0.108230829239, \n        0.0044739544391599996, \n        2.34439182281, \n        0.10604345798500001, \n        0.0082596242427799994, \n        2.3371539115900002, \n        0.118379235268, \n        0.019865363836299998, \n        2.3475513458299999, \n        0.102472901344, \n        0.023871809244200001, \n        2.3401532173200001, \n        0.114891171455, \n        0.034780502319300001, \n        2.3470311164900002, \n        0.095682501792899999, \n        0.038876622915300002, \n        2.3391933441199999, \n        0.108413338661, \n        0.049457430839500001, \n        2.3446917533899998, \n        0.087263226509099998, \n        0.053577810525900001, \n        2.3364343643200001, \n        0.10026299953499999, \n        -0.00041726231574999999, \n        2.31526088715, \n        0.140795111656, \n        -0.0040600597858400003, \n        2.32417798042, \n        0.131260871887, \n        0.012050598859799999, \n        2.3288569450400001, \n        0.129444956779, \n        0.015795350074799999, \n        2.3196394443499999, \n        0.13915467262299999, \n        0.027797222137500001, \n        2.3317558765399999, \n        0.12598705291699999, \n        0.031591057777399997, \n        2.32237887383, \n        0.135746002197, \n        0.042815476656000002, \n        2.3309960365300002, \n        0.119246482849, \n        0.046552777290300003, \n        2.3218388557399998, \n        0.128801941872, \n        0.057469844818099997, \n        2.3284566402400002, \n        0.110864162445, \n        0.061097532510800003, \n        2.31967926025, \n        0.120090126991, \n        0.0068087875843, \n        2.2952268123600001, \n        0.15539693832400001, \n        0.0032223165035199998, \n        2.3055636882799999, \n        0.14887404441800001, \n        0.019442439079299999, \n        2.3095824718500002, \n        0.14740276336700001, \n        0.022940427064900001, \n        2.2988457679700001, \n        0.15408432483699999, \n        0.035202831029900003, \n        2.3121418952899999, \n        0.14406132698099999, \n        0.038581728935200003, \n        2.30120491982, \n        0.150825977325, \n        0.050043493509299999, \n        2.31182193756, \n        0.13697898387900001, \n        0.053242921829199999, \n        2.3010652065300001, \n        0.143676519394, \n        0.064424395561199999, \n        2.3100624084499999, \n        0.12802648544299999, \n        0.067413806915299995, \n        2.2996852397900001, \n        0.134581327438, \n        0.013623207807499999, \n        2.27303361893, \n        0.16337120532999999, \n        0.0102924108505, \n        2.28433036804, \n        0.16026294231400001, \n        0.026237845420800002, \n        2.2875292301200001, \n        0.15909361839300001, \n        0.029283165931699998, \n        2.27579283714, \n        0.16232514381400001, \n        0.041677594184900003, \n        2.28966856003, \n        0.155933737755, \n        0.0444395542145, \n        2.2776720523799998, \n        0.15927791595499999, \n        0.056106448173500002, \n        2.2897086143499998, \n        0.148793339729, \n        0.058589249849300001, \n        2.2778520584100002, \n        0.15222823619799999, \n        0.070029616355900007, \n        2.28868865967, \n        0.139662146568, \n        0.072235792875300006, \n        2.27715229988, \n        0.14317727088900001, \n        0.019626617431600001, \n        2.2496209144599999, \n        0.16391146182999999, \n        0.016751170158400001, \n        2.2614171504999998, \n        0.164621114731, \n        0.032024741172799999, \n        2.2637162208600001, \n        0.163673877716, \n        0.034411549568200001, \n        2.2514600753799998, \n        0.16303396225, \n        0.046817213296900001, \n        2.2653357982600002, \n        0.16075181961099999, \n        0.0487596690655, \n        2.2527997493699998, \n        0.16024875640899999, \n        0.0606468915939, \n        2.26561594009, \n        0.153880596161, \n        0.062234401702899997, \n        2.25311946869, \n        0.15364873409300001, \n        0.073995232582100001, \n        2.2651958465600002, \n        0.145034313202, \n        0.075272291898699994, \n        2.2529196739200001, \n        0.14514112472499999, \n        0.024419993162200001, \n        2.2259876728100001, \n        0.15621066093399999, \n        0.022199511528, \n        2.2377841472600002, \n        0.16114139556900001, \n        0.036391854286200002, \n        2.2391438484199999, \n        0.16030001640300001, \n        0.0379139482975, \n        2.22688770294, \n        0.15536689758300001, \n        0.050216794013999998, \n        2.24016356468, \n        0.157662391663, \n        0.051137566566500002, \n        2.22758722305, \n        0.15288579463999999, \n        0.063307046890300006, \n        2.2405033111599999, \n        0.151432394981, \n        0.063820332288700002, \n        2.2278473377200001, \n        0.14712977409399999, \n        0.076030015945400001, \n        2.2404630184199998, \n        0.143405914307, \n        0.076232552528399999, \n        2.2279071807899999, \n        0.13973617553699999, \n        0.027855366468399999, \n        2.2028346061700002, \n        0.14069378376, \n        0.026238292455699998, \n        2.2143712043799999, \n        0.14901769161199999, \n        0.038926839828500003, \n        2.2148311138199999, \n        0.14812898635899999, \n        0.039685010909999999, \n        2.2028346061700002, \n        0.139738917351, \n        0.051471680402800001, \n        2.2151708602900002, \n        0.14581263065300001, \n        0.0515124499798, \n        2.2028346061700002, \n        0.13759088516199999, \n        0.063729405403100001, \n        2.2153310775800001, \n        0.140640377998, \n        0.063336044549899995, \n        2.2028346061700002, \n        0.133057236671, \n        0.075843095779400002, \n        2.2153708934799998, \n        0.134040117264, \n        0.075157731771499994, \n        2.2028346061700002, \n        0.12733066082, \n        -0.0179878473282, \n        2.34237289429, \n        -0.054603219032299997, \n        -0.0211696326733, \n        2.3324160575900001, \n        -0.071402668952899997, \n        -0.0129264891148, \n        2.3370943069500001, \n        -0.075177550315899996, \n        -0.0084984600543999995, \n        2.3465113639799999, \n        -0.0583926439285, \n        -0.0241968631744, \n        2.3220586776699998, \n        -0.0902099609375, \n        -0.017250448465300001, \n        2.3266770839699999, \n        -0.093575000762899999, \n        -0.0101855993271, \n        2.32949638367, \n        -0.096160411834700005, \n        -0.00469455122948, \n        2.3394932746900001, \n        -0.078136682510399999, \n        0.00085410475730899997, \n        2.34775090218, \n        -0.061127424240100002, \n        0.0035152137279499999, \n        2.3379340171799998, \n        -0.079680562019300002, \n        0.0099332630634300003, \n        2.3443520069099999, \n        -0.0624182224274, \n        -0.0028838217258499999, \n        2.32911682129, \n        -0.097294807434100003, \n        0.0045362710952799997, \n        2.3267374038700002, \n        -0.097518324852000002, \n        0.0117137730122, \n        2.33397531509, \n        -0.080352902412400007, \n        0.0188757181168, \n        2.3388338089, \n        -0.063365221023599996, \n        -0.010734796523999999, \n        2.35750794411, \n        -0.024169206619299999, \n        -0.014497160911600001, \n        2.3511698245999999, \n        -0.039422750473, \n        -0.0038626194000200001, \n        2.3545889854399999, \n        -0.043082475662199998, \n        0.00094425678253200001, \n        2.3602471351599998, \n        -0.0276755094528, \n        0.0065176188945799997, \n        2.3545289039599999, \n        -0.045401692390399997, \n        0.0122599303722, \n        2.3601870536799998, \n        -0.0306003093719, \n        0.016389250755300001, \n        2.3504300117499999, \n        -0.047259688377400001, \n        0.022848933935199999, \n        2.3555283546400001, \n        -0.032984852790799997, \n        0.026006728410700002, \n        2.34347248077, \n        -0.048346877098099997, \n        0.033074229955700002, \n        2.3471908569300002, \n        -0.034079432487499998, \n        -0.0025438368320499999, \n        2.36124706268, \n        0.0091309547424299996, \n        -0.0067379474639900003, \n        2.3602271080000001, \n        -0.0075234174728399999, \n        0.0058850944042199999, \n        2.3631463050799999, \n        -0.0115168094635, \n        0.0109229981899, \n        2.3637659549699999, \n        0.0052049160003699996, \n        0.018044710159299999, \n        2.3634662628199998, \n        -0.0152611732483, \n        0.0238355696201, \n        2.3638262748700001, \n        0.0012720823287999999, \n        0.029277205467200001, \n        2.3581080436700002, \n        -0.017908215522799999, \n        0.035640090704000003, \n        2.3584876060500002, \n        -0.0021357536315900001, \n        0.040046304464299999, \n        2.3496901988999999, \n        -0.0199415683746, \n        0.046890497207600003, \n        2.3508501052900002, \n        -0.0057156085967999997, \n        0.0062870085239400001, \n        2.3590474128699999, \n        0.041984558105500003, \n        0.00181019306183, \n        2.36146688461, \n        0.0252691507339, \n        0.0160207748413, \n        2.3637261390700002, \n        0.0213869810104, \n        0.021141648292499999, \n        2.36124706268, \n        0.038244485855099999, \n        0.029596686363199998, \n        2.3635861873600001, \n        0.017315864563000001, \n        0.035291314125099997, \n        2.3618869781499998, \n        0.033346533775300002, \n        0.041902989149099998, \n        2.3579478263899998, \n        0.013532757759099999, \n        0.048031061887699997, \n        2.3568081855799998, \n        0.028622508049, \n        0.053574413061100001, \n        2.35001039505, \n        0.0094802379608200007, \n        0.060066014528300002, \n        2.3489303588900001, \n        0.0239262580872, \n        0.0154601335526, \n        2.3463315963700002, \n        0.076036095619199995, \n        0.0108493864536, \n        2.3535895347600002, \n        0.059300780296300003, \n        0.026248455047600001, \n        2.35616827011, \n        0.055336952209500002, \n        0.031304329633700001, \n        2.3494305610700001, \n        0.071756243705699996, \n        0.040883421897900001, \n        2.35754823685, \n        0.049734711647000003, \n        0.046336859464599998, \n        2.3505301475499998, \n        0.066497683525099993, \n        0.053990334272399999, \n        2.3527092933699998, \n        0.044525265693700002, \n        0.059745788574200001, \n        2.3463315963700002, \n        0.060536026954699999, \n        0.066333025693899997, \n        2.3459315300000001, \n        0.038388848304699998, \n        0.072342753410299998, \n        2.3405332565300001, \n        0.053210020065299998, \n        0.024677723646199998, \n        2.33097600937, \n        0.10349297523500001, \n        0.020081967115400001, \n        2.3385138511700001, \n        0.091045737266500004, \n        0.036272257566500002, \n        2.3415529727900002, \n        0.087021827697799994, \n        0.041115373373000003, \n        2.3333954811100002, \n        0.100318431854, \n        0.051615208387399997, \n        2.3422527313199999, \n        0.082273125648500006, \n        0.056682080030399998, \n        2.3338150978100001, \n        0.096017003059400002, \n        0.0652630329132, \n        2.3386538028700001, \n        0.075705766677899994, \n        0.070507675409300002, \n        2.33053636551, \n        0.089227557182299994, \n        0.078063368797299998, \n        2.33359527588, \n        0.067580938339199995, \n        0.083462595939599996, \n        2.3257975578300001, \n        0.080805182456999997, \n        0.033641815185500003, \n        2.3146011829400002, \n        0.122972726822, \n        0.0292101800442, \n        2.3232583999599998, \n        0.113889694214, \n        0.045796364545800002, \n        2.3254179954500001, \n        0.111181378365, \n        0.0502784252167, \n        2.3167202472700001, \n        0.12053680419899999, \n        0.061501592397699999, \n        2.3258175849899998, \n        0.107132554054, \n        0.0660372674465, \n        2.31722021103, \n        0.116601586342, \n        0.075445175170900006, \n        2.3226385116600001, \n        0.10040152072899999, \n        0.080041050910899997, \n        2.31454086304, \n        0.109667420387, \n        0.088507860898999993, \n        2.3179001808200002, \n        0.092135787010200004, \n        0.093167185783399997, \n        2.31024217606, \n        0.101234197617, \n        0.042054921388600001, \n        2.29490709305, \n        0.136801958084, \n        0.0379359722137, \n        2.30510377884, \n        0.13064372539499999, \n        0.0545245409012, \n        2.3071432113600001, \n        0.128480911255, \n        0.058497905731199999, \n        2.2968664169299999, \n        0.13490509986900001, \n        0.070253014564500005, \n        2.30778312683, \n        0.124681591988, \n        0.074112206697500002, \n        2.2976064682000001, \n        0.13126003742199999, \n        0.084260731935500002, \n        2.3055837154400001, \n        0.11760783195500001, \n        0.088069558143599999, \n        2.29588651657, \n        0.124117970467, \n        0.097408175468399999, \n        2.3019647598300002, \n        0.10889768600499999, \n        0.10119843483, \n        2.2929275035900001, \n        0.115227222443, \n        0.049618840217599998, \n        2.2729134559599999, \n        0.14417731761899999, \n        0.045961707830400003, \n        2.2841303348499999, \n        0.14134693145800001, \n        0.062161237001399999, \n        2.28598952293, \n        0.13970065116899999, \n        0.065477609634399997, \n        2.2746131420100002, \n        0.142758131027, \n        0.077578932046900001, \n        2.2867894172700001, \n        0.13622486591300001, \n        0.080616831779500006, \n        2.2754526138300002, \n        0.13946342468299999, \n        0.091433256864500004, \n        2.2855298519099998, \n        0.12909030914299999, \n        0.094317317009000007, \n        2.2746133804299999, \n        0.132418513298, \n        0.104505896568, \n        2.28323030472, \n        0.12012636661499999, \n        0.107298016548, \n        2.2729136943800001, \n        0.12349820137, \n        0.056036084890399997, \n        2.24960064888, \n        0.144290208817, \n        0.052989363670300001, \n        2.26135730743, \n        0.14519202709199999, \n        0.068410366773600004, \n        2.2628765106199999, \n        0.14396858215300001, \n        0.070922017097499998, \n        2.2509002685500001, \n        0.14322328567500001, \n        0.083189845085099995, \n        2.2637362480199998, \n        0.14086365699799999, \n        0.085261464118999999, \n        2.25169992447, \n        0.14031279087099999, \n        0.096686959266699998, \n        2.2632365226700002, \n        0.13399577140800001, \n        0.0985078513622, \n        2.2515201568599998, \n        0.133714914322, \n        0.109542697668, \n        2.2620968818699998, \n        0.12524640560200001, \n        0.111207813025, \n        2.25082015991, \n        0.125273704529, \n        0.061008572578399999, \n        2.2259876728100001, \n        0.13633346557600001, \n        0.058721512556100003, \n        2.2377641201, \n        0.14137101173399999, \n        0.072975754737899995, \n        2.2388038635299998, \n        0.14041328430200001, \n        0.074534744024300006, \n        2.2267274856600001, \n        0.135429620743, \n        0.086795419454599995, \n        2.23950362206, \n        0.137698411942, \n        0.087755560874899996, \n        2.2272472381599999, \n        0.13290822506, \n        0.099745512008699994, \n        2.2395234107999999, \n        0.13146960735300001, \n        0.100365310907, \n        2.2273473739599998, \n        0.12715303897899999, \n        0.112260907888, \n        2.2391839027399998, \n        0.123484134674, \n        0.112669736147, \n        2.2272472381599999, \n        0.119780659676, \n        0.064493507146799994, \n        2.2028346061700002, \n        0.120710611343, \n        0.062860012054400005, \n        2.2143712043799999, \n        0.129076838493, \n        0.075562000274700003, \n        2.2147510051700001, \n        0.12816309928899999, \n        0.076323151588400001, \n        2.2028346061700002, \n        0.119755506516, \n        0.088105559349099999, \n        2.2150311469999999, \n        0.125829935074, \n        0.088150590658199995, \n        2.2028346061700002, \n        0.117607474327, \n        0.100332856178, \n        2.2151107788100002, \n        0.120658040047, \n        0.099974274635299995, \n        2.2028346061700002, \n        0.113073945045, \n        0.112401843071, \n        2.21509122849, \n        0.11406672000900001, \n        0.11179587245, \n        2.2028346061700002, \n        0.107347488403, \n        0.105196475983, \n        2.2932271957400001, \n        -0.094713807105999998, \n        0.106314301491, \n        2.3000853061700002, \n        -0.091937065124500006, \n        0.092321276664699997, \n        2.30794286728, \n        -0.098009109497099997, \n        0.0915161371231, \n        2.30172491074, \n        -0.100525379181, \n        0.077167034149199995, \n        2.3105823993699999, \n        -0.106071949005, \n        0.0776295363903, \n        2.3161804676100002, \n        -0.103800058365, \n        0.077835917472799998, \n        2.3209791183499999, \n        -0.100713610649, \n        0.092650562524800001, \n        2.3133816719100002, \n        -0.094647526740999993, \n        0.106747150421, \n        2.3061237335200002, \n        -0.088302731514000005, \n        0.105810880661, \n        2.3105223178899998, \n        -0.082953214645399995, \n        0.092027813196200001, \n        2.3172402381900001, \n        -0.089595198631299999, \n        0.077529996633500006, \n        2.32425785065, \n        -0.095998048782300005, \n        0.076967984437899997, \n        2.3266973495499998, \n        -0.090467810630800005, \n        0.090929001569700005, \n        2.3202593326600001, \n        -0.083697080612200006, \n        0.104189753532, \n        2.31412124634, \n        -0.076746106147800003, \n        0.128581166267, \n        2.27789211273, \n        -0.081565380096400006, \n        0.13014408946, \n        2.2858300209000002, \n        -0.078174233436600002, \n        0.118909478188, \n        2.2926874160800002, \n        -0.0853023529053, \n        0.11753952503200001, \n        2.2852697372400002, \n        -0.088372707366900005, \n        0.11940810084300001, \n        2.2992856502499999, \n        -0.081399679183999998, \n        0.13067159056700001, \n        2.2929077148400001, \n        -0.074009776115399994, \n        0.129127830267, \n        2.2983059883100001, \n        -0.068297743797299998, \n        0.118164539337, \n        2.3042039871200002, \n        -0.075833082199099996, \n        0.116049617529, \n        2.3083028793299998, \n        -0.069434165954600002, \n        0.126548528671, \n        2.3028447627999999, \n        -0.0618121623993, \n        0.146902799606, \n        2.2631363868699998, \n        -0.066806674003600006, \n        0.14868071675299999, \n        2.27171373367, \n        -0.062719225883499999, \n        0.14005550742100001, \n        2.2788717746699998, \n        -0.070623397827100004, \n        0.13835701346400001, \n        2.2705941200300002, \n        -0.074355483055099994, \n        0.14057591557499999, \n        2.28634977341, \n        -0.066204428672800006, \n        0.14915955066700001, \n        2.2795314788800001, \n        -0.0580549240112, \n        0.14704036712599999, \n        2.285769701, \n        -0.0522358417511, \n        0.13874015212099999, \n        2.2921876907300001, \n        -0.060410976409900001, \n        0.13572597503700001, \n        2.2972259521499998, \n        -0.0539304018021, \n        0.14362204074900001, \n        2.2912478447, \n        -0.045839667320300002, \n        0.16044756770099999, \n        2.24794149399, \n        -0.050945162773100003, \n        0.162220805883, \n        2.2568984031700001, \n        -0.046130061149599999, \n        0.156056642532, \n        2.2643761634800001, \n        -0.054531455040000003, \n        0.15425440669099999, \n        2.25557899475, \n        -0.0589820146561, \n        0.15646052360500001, \n        2.2724537849400002, \n        -0.049632430076600002, \n        0.16251754760699999, \n        2.2651762962299999, \n        -0.041008353233300002, \n        0.15986135602000001, \n        2.27213406563, \n        -0.0352740287781, \n        0.154067635536, \n        2.2790718078599999, \n        -0.043835759162900001, \n        0.15027642250100001, \n        2.2849698066699999, \n        -0.037590265274000001, \n        0.15572857856799999, \n        2.2784118652299998, \n        -0.029233217239399999, \n        0.169501423836, \n        2.23260593414, \n        -0.034489393234300003, \n        0.171061724424, \n        2.24166297913, \n        -0.0289651155472, \n        0.167210072279, \n        2.2493205070500002, \n        -0.037584543228100002, \n        0.16551804542500001, \n        2.2402834892299999, \n        -0.042760014534000003, \n        0.167368859053, \n        2.25775814056, \n        -0.032254338264499999, \n        0.17105254530899999, \n        2.2502002716099998, \n        -0.023441433906600001, \n        0.16790387034400001, \n        2.2576780319199998, \n        -0.017919182777400001, \n        0.164460301399, \n        2.2649960517899999, \n        -0.026613831520099999, \n        0.16001844406099999, \n        2.27161407471, \n        -0.020818829536400001, \n        0.16318571567500001, \n        2.26463603973, \n        -0.012397766113300001, \n        0.17435035109499999, \n        2.2173104286199998, \n        -0.017947196960400001, \n        0.17550078034399999, \n        2.2262878418000001, \n        -0.0117825269699, \n        0.17381286621100001, \n        2.23396539688, \n        -0.0203410387039, \n        0.17243358492899999, \n        2.2249283790600001, \n        -0.026197552680999998, \n        0.17360720038399999, \n        2.2425627708400002, \n        -0.0146405696869, \n        0.175071120262, \n        2.2348852157599999, \n        -0.0059239864349399998, \n        0.17148146033299999, \n        2.2427427768700001, \n        -0.00067782402038600001, \n        0.17023134231600001, \n        2.2502603530899998, \n        -0.0092525482177699993, \n        0.16527023911499999, \n        2.2574982643100001, \n        -0.0040205717086799998, \n        0.166311830282, \n        2.25022029877, \n        0.0042619705200199996, \n        0.175280332565, \n        2.2023549079900002, \n        -0.0018265247345, \n        0.175834745169, \n        2.2110719680800002, \n        0.0048590898513799999, \n        0.17616224288900001, \n        2.2186498642000001, \n        -0.0033591985702499999, \n        0.175287246704, \n        2.2097923755600002, \n        -0.0098023414611799996, \n        0.17548260092699999, \n        2.22720718384, \n        0.0026378631591800002, \n        0.17487978935199999, \n        2.21956968307, \n        0.010972976684600001, \n        0.17090678214999999, \n        2.22764730453, \n        0.015942931175200001, \n        0.17169356346100001, \n        2.2351849079099999, \n        0.0077419281005900002, \n        0.16635000705700001, \n        2.2428827285800002, \n        0.012399435043299999, \n        0.16542443633100001, \n        2.2354846000699999, \n        0.0203410387039, \n        0.17257741093599999, \n        2.1879594326, \n        0.0133645534515, \n        0.172360748053, \n        2.1963167190599999, \n        0.020401597023000002, \n        0.17455506324799999, \n        2.2036147117599998, \n        0.0128026008606, \n        0.174365162849, \n        2.1950769424400001, \n        0.0059170722961400003, \n        0.17330145835899999, \n        2.2120118141199998, \n        0.019010424614000002, \n        0.17078542709399999, \n        2.2045741081200001, \n        0.0266790390015, \n        0.16649293899500001, \n        2.21267199516, \n        0.031436681747399997, \n        0.16916009783700001, \n        2.2201294899000001, \n        0.023862481117200001, \n        0.16357517242399999, \n        2.2280671596500001, \n        0.0280363559723, \n        0.16084182262400001, \n        2.2206892967199998, \n        0.0354348421097, \n        0.166527748108, \n        2.1743834018700001, \n        0.027118206024199999, \n        0.16537630557999999, \n        2.1823008060500002, \n        0.034286499023400002, \n        0.16928872466100001, \n        2.1891989707900001, \n        0.027586102485699999, \n        0.16995307803199999, \n        2.1810612678500001, \n        0.020452857017499999, \n        0.16737043857600001, \n        2.1972963810000001, \n        0.033906936645499999, \n        0.16309472918500001, \n        2.19021844864, \n        0.0406230688095, \n        0.15855333209, \n        2.1981761455500002, \n        0.045296430587800002, \n        0.162944346666, \n        2.2053539753, \n        0.038602590560899999, \n        0.15726408362399999, \n        2.21337151527, \n        0.042485713958700003, \n        0.152881830931, \n        2.2061738967900002, \n        0.049138545989999997, \n        0.157417297363, \n        2.1618671417200002, \n        0.038926243781999999, \n        0.15517809987100001, \n        2.1693048477199999, \n        0.0459554195404, \n        0.16066026687599999, \n        2.1756429672199999, \n        0.040432691574100003, \n        0.162337183952, \n        2.1679849624599998, \n        0.033297181129500003, \n        0.15799650549899999, \n        2.1833605766300002, \n        0.046756267547599997, \n        0.15211427211799999, \n        2.1768026351900001, \n        0.052235007286099998, \n        0.147400707006, \n        2.1844601631199998, \n        0.057015895843500003, \n        0.153359055519, \n        2.191198349, \n        0.051455497741700003, \n        0.147734761238, \n        2.1990959644300001, \n        0.0553424358368, \n        0.14186260104199999, \n        2.1921977996800002, \n        0.061047434806799999, \n        0.14553210139299999, \n        2.1506505012499999, \n        0.048280596733099999, \n        0.14206349849700001, \n        2.1576082706499999, \n        0.054850101470899998, \n        0.14896678924599999, \n        2.1632664203599998, \n        0.050784349441500003, \n        0.1518034935, \n        2.1560888290400002, \n        0.043941736221300001, \n        0.14548608660699999, \n        2.17054438591, \n        0.056988239288299998, \n        0.13815048336999999, \n        2.1646661758399999, \n        0.060944199562100003, \n        0.13334849476800001, \n        2.1718440055800001, \n        0.066087961196899997, \n        0.14071750640899999, \n        2.1780021190599999, \n        0.0619144439697, \n        0.135305166245, \n        2.1855201721199999, \n        0.066202044486999997, \n        0.12810194492300001, \n        2.1791019439700001, \n        0.070756435394300002, \n        0.131433486938, \n        2.1407535076099999, \n        0.055107116699200001, \n        0.126619935036, \n        2.1473112106299999, \n        0.060898423194899999, \n        0.13450536131900001, \n        2.1523699760400001, \n        0.058082461357099997, \n        0.13863834738700001, \n        2.14561200142, \n        0.051878929138199997, \n        0.13014590740199999, \n        2.15916776657, \n        0.064031720161400005, \n        0.12180662155200001, \n        2.1538696289099999, \n        0.066685318946800007, \n        0.116993665695, \n        2.16042757034, \n        0.072463274002099995, \n        0.12533271312700001, \n        2.1660459041600002, \n        0.069472789764399995, \n        0.120292901993, \n        2.1729836463900001, \n        0.074659585952800006, \n        0.112180918455, \n        2.1669855117800001, \n        0.078237175941499995, \n        0.11865353584299999, \n        2.2699542045599999, \n        -0.110153436661, \n        0.119771242142, \n        2.2768726348900001, \n        -0.107376933098, \n        0.107489734888, \n        2.2836503982499998, \n        -0.11440515518200001, \n        0.106684535742, \n        2.2773323059099999, \n        -0.11692130565599999, \n        0.094134330749500006, \n        2.2851300239599999, \n        -0.123463630676, \n        0.094596773386000005, \n        2.2908282280000001, \n        -0.121191740036, \n        0.094803214073199998, \n        2.2957668304399999, \n        -0.118105053902, \n        0.10781905055, \n        2.2891886234299998, \n        -0.111043691635, \n        0.120204299688, \n        2.2829704284700001, \n        -0.103742599487, \n        0.11926802992799999, \n        2.2874093055700002, \n        -0.098393201828000001, \n        0.107196211815, \n        2.2931275367700001, \n        -0.105991244316, \n        0.094497233629199998, \n        2.29918551445, \n        -0.113389492035, \n        0.093935012817399993, \n        2.3018245696999999, \n        -0.107859492302, \n        0.10609757900199999, \n        2.2962665557899999, \n        -0.100093364716, \n        0.11764690279999999, \n        2.2910079956099998, \n        -0.092186093330399996, \n        0.1391299963, \n        2.2557587623600002, \n        -0.095326185226400004, \n        0.14069306850400001, \n        2.2636961937, \n        -0.0919351577759, \n        0.130829691887, \n        2.2703943252599998, \n        -0.099864840507499997, \n        0.12945985794100001, \n        2.2629165649399998, \n        -0.102935314178, \n        0.13132831454300001, \n        2.27701234818, \n        -0.095962405204799997, \n        0.14122053980800001, \n        2.2707743644699998, \n        -0.087770819663999994, \n        0.139676660299, \n        2.27617287636, \n        -0.082058668136599996, \n        0.130084723234, \n        2.2819108962999999, \n        -0.090395569801299994, \n        0.127969771624, \n        2.2859494686100001, \n        -0.0839967727661, \n        0.13709738850600001, \n        2.2807111740099999, \n        -0.075573086738599998, \n        0.15516832470899999, \n        2.2410035133399999, \n        -0.079176783561700007, \n        0.15694618225099999, \n        2.2495806217199998, \n        -0.0750894546509, \n        0.14938926696800001, \n        2.2567386627200001, \n        -0.0836547613144, \n        0.14769077301, \n        2.2484607696499999, \n        -0.087386488914500002, \n        0.149909734726, \n        2.2642159462000002, \n        -0.0792354345322, \n        0.15742504596699999, \n        2.25739836693, \n        -0.070425033569299994, \n        0.15530586242700001, \n        2.2636365890499999, \n        -0.064606070518499994, \n        0.148073673248, \n        2.2700543403600002, \n        -0.073442101478600003, \n        0.145059794188, \n        2.2750930786099999, \n        -0.066961407661400005, \n        0.15188768506100001, \n        2.2691147327399999, \n        -0.058209657669100003, \n        0.16698133945499999, \n        2.2258276939399999, \n        -0.062186002731299997, \n        0.168754577637, \n        2.2347650527999998, \n        -0.0573709011078, \n        0.163392066956, \n        2.2422425746900001, \n        -0.066306114196800006, \n        0.16158983111399999, \n        2.2334456443800002, \n        -0.070756316185000001, \n        0.16379594802899999, \n        2.2503204345699999, \n        -0.061407089233399999, \n        0.169051378965, \n        2.2430424690200002, \n        -0.052249073982200002, \n        0.166394919157, \n        2.2500004768399999, \n        -0.046514868736300001, \n        0.161403030157, \n        2.2569386959100002, \n        -0.055610179901100003, \n        0.15761157870299999, \n        2.26283693314, \n        -0.049364686012299999, \n        0.16226220130899999, \n        2.25627851486, \n        -0.040473937988299999, \n        0.17478120326999999, \n        2.2104721069300002, \n        -0.044835209846500003, \n        0.17634156346300001, \n        2.2195296287500001, \n        -0.039310574531600001, \n        0.17306169867499999, \n        2.2271876335099998, \n        -0.048350214958200001, \n        0.171369671822, \n        2.21815013885, \n        -0.053525686263999998, \n        0.17322048544900001, \n        2.2356250286099999, \n        -0.043020009994500001, \n        0.17633232474300001, \n        2.2280671596500001, \n        -0.033787012100199999, \n        0.17318364977799999, \n        2.2355451583899999, \n        -0.028264641761800002, \n        0.17031192779500001, \n        2.24286270142, \n        -0.037379860878, \n        0.16586992144599999, \n        2.2494804859199999, \n        -0.031584501266499997, \n        0.16846549511, \n        2.2425026893600002, \n        -0.022743463516200001, \n        0.17878043651600001, \n        2.19517707825, \n        -0.027604818344100002, \n        0.17993083596199999, \n        2.2041544914200002, \n        -0.021439909935000001, \n        0.17862203717200001, \n        2.2118320465100001, \n        -0.030318379402199998, \n        0.17724272608800001, \n        2.2027945518499998, \n        -0.036174774169899997, \n        0.17841634154300001, \n        2.2204294204699999, \n        -0.024618029594400001, \n        0.17950141429899999, \n        2.2127516269699998, \n        -0.0155813694, \n        0.17591166496300001, \n        2.2206094264999998, \n        -0.010335206985500001, \n        0.175040364265, \n        2.22812700272, \n        -0.019230008125299999, \n        0.170079231262, \n        2.2353649139399998, \n        -0.0139980316162, \n        0.17074203491199999, \n        2.2280869483900001, \n        -0.0053954124450700004, \n        0.17919185757600001, \n        2.1802215576199999, \n        -0.0109755992889, \n        0.179746359587, \n        2.1889390945399998, \n        -0.0042898654937700001, \n        0.18029639124899999, \n        2.1965165138199998, \n        -0.012741684913600001, \n        0.17942139506300001, \n        2.1876592636100001, \n        -0.0191849470139, \n        0.17961671948399999, \n        2.2050743103000001, \n        -0.0067447423934899999, \n        0.17879164218900001, \n        2.1974363327000002, \n        0.00182402133942, \n        0.17481836676599999, \n        2.2055139541600002, \n        0.0067939758300800002, \n        0.17582774162299999, \n        2.2130517959599998, \n        -0.0016406774520900001, \n        0.17048415541600001, \n        2.2207493781999998, \n        0.00301682949066, \n        0.169336080551, \n        2.2133512496900001, \n        0.0111919641495, \n        0.17622795700999999, \n        2.16582584381, \n        0.0045711994171099999, \n        0.17601129412700001, \n        2.1741833686800001, \n        0.0116082429886, \n        0.17830851674100001, \n        2.1814813613899999, \n        0.0038489103317299999, \n        0.17811855673800001, \n        2.1729440689100001, \n        -0.00303685665131, \n        0.17705491185200001, \n        2.1898787021600001, \n        0.010056734085099999, \n        0.17443588375999999, \n        2.1824412345900002, \n        0.017885565757799999, \n        0.17014336586000001, \n        2.19053840637, \n        0.022643446922300001, \n        0.172913640738, \n        2.1979961395299998, \n        0.0149086713791, \n        0.167328685522, \n        2.2059338092799998, \n        0.019082546234099999, \n        0.16449236869799999, \n        2.19855594635, \n        0.0266414880753, \n        0.17010104656200001, \n        2.1522498130800001, \n        0.018555045127899999, \n        0.16894957423199999, \n        2.1601676940900001, \n        0.025723218917799998, \n        0.17288219928699999, \n        2.1670656204199998, \n        0.018921732902499998, \n        0.17354655265800001, \n        2.1589281559, \n        0.0117886066437, \n        0.17096397280699999, \n        2.1751630306199998, \n        0.025242567062399999, \n        0.166668057442, \n        2.1680850982700002, \n        0.0320599079132, \n        0.16212666034699999, \n        2.1760430336000001, \n        0.036733269691500002, \n        0.166537672281, \n        2.1832206249200001, \n        0.029938220977799999, \n        0.160857647657, \n        2.1912379264799999, \n        0.033821463584899999, \n        0.15645515918700001, \n        2.1840405464199999, \n        0.040575385093699998, \n        0.161023736, \n        2.1397337913499999, \n        0.030494809150699999, \n        0.15878465771700001, \n        2.14717149734, \n        0.037523865699799999, \n        0.16424104571299999, \n        2.1535096168500001, \n        0.031945943832400001, \n        0.16591787338299999, \n        2.1458520889299999, \n        0.024810194969199999, \n        0.161577224731, \n        2.1612272262599999, \n        0.038269639015200002, \n        0.155720561743, \n        2.1546692848200002, \n        0.043803453445400001, \n        0.15100720524799999, \n        2.1623268127399999, \n        0.0485845804214, \n        0.15693974494900001, \n        2.1690649986300001, \n        0.04296875, \n        0.151315540075, \n        2.1769626140599998, \n        0.046855926513699998, \n        0.145469099283, \n        2.1700646877300001, \n        0.052615880966199999, \n        0.149208754301, \n        2.12851715088, \n        0.039909601211500001, \n        0.14574015140499999, \n        2.13549518585, \n        0.046478867530800001, \n        0.15260827541399999, \n        2.1411333084100002, \n        0.042390465736399999, \n        0.155445069075, \n        2.1339554786699999, \n        0.035547852516199997, \n        0.149127602577, \n        2.1484112739599999, \n        0.048593997955299999, \n        0.141827195883, \n        2.14253282547, \n        0.052573084831199997, \n        0.13702499866500001, \n        2.1497106552099998, \n        0.057716965675400002, \n        0.14435899257699999, \n        2.1558690071100002, \n        0.053520441055300003, \n        0.13894662260999999, \n        2.16340661049, \n        0.0578081607819, \n        0.13177859783199999, \n        2.1569685935999998, \n        0.062385320663499999, \n        0.13515734672499999, \n        2.1186199188199999, \n        0.046754717826799998, \n        0.130344033241, \n        2.1251783370999999, \n        0.052545905113200002, \n        0.138208031654, \n        2.1302363872500001, \n        0.049723625183100001, \n        0.142340779305, \n        2.1234788894699999, \n        0.0435199737549, \n        0.133848637342, \n        2.1370344162000001, \n        0.055672764778100001, \n        0.125530689955, \n        2.1317360401199998, \n        0.058332681655899998, \n        0.120717763901, \n        2.1382942199700001, \n        0.064110994338999999, \n        0.12903544306799999, \n        2.1439125537899999, \n        0.061113834381099998, \n        0.123995512724, \n        2.1508502960200002, \n        0.066300630569500002, \n        0.11590492725400001, \n        2.14485239983, \n        0.069884777069099999, \n        -0.0078455209732100004, \n        2.3395733833299999, \n        -0.061672568321200001, \n        0.0029428303241699999, \n        2.3254375457799998, \n        -0.070410251617399999, \n        0.0066651105880699999, \n        2.3279769420599998, \n        -0.069755554199200001, \n        -0.0030452311039, \n        2.3429126739499999, \n        -0.0610411167145, \n        0.014650464057899999, \n        2.30680322647, \n        -0.076951384544399995, \n        0.017460227012599999, \n        2.3090026378599999, \n        -0.076593160629299994, \n        0.020302295684799999, \n        2.3104619979900001, \n        -0.075616717338599995, \n        0.0104397833347, \n        2.3296165466300001, \n        -0.068546056747399997, \n        0.0018373429775199999, \n        2.3451118469200001, \n        -0.059839606285100003, \n        0.014319419860800001, \n        2.3297963142400002, \n        -0.066416621208199994, \n        0.0068843364715599998, \n        2.3452916145299998, \n        -0.057658791542099998, \n        0.023208767175700001, \n        2.31054234505, \n        -0.073455095291100003, \n        0.026147484779400001, \n        2.3099026679999999, \n        -0.070695042610200001, \n        0.018251657486000002, \n        2.3291568756099998, \n        -0.063792109489400006, \n        0.012013554573100001, \n        2.3445720672600001, \n        -0.055119752883900003, \n        -0.0238800048828, \n        2.3527693748499998, \n        -0.034115195274399997, \n        -0.016795367002499999, \n        2.3476111888900002, \n        -0.048880577087399998, \n        -0.010585784912100001, \n        2.3522696495100002, \n        -0.048625588417099998, \n        -0.016442388296100001, \n        2.3578078746800002, \n        -0.033413171768200002, \n        -0.0042451620101900001, \n        2.3553087711299998, \n        -0.047693490982099997, \n        -0.0088277757167799994, \n        2.36146688461, \n        -0.032489180564900001, \n        0.0023576021194500001, \n        2.3555884361300001, \n        -0.045678257942199998, \n        -0.00085926055908200002, \n        2.3617067337000002, \n        -0.0304412841797, \n        0.0090913772583000006, \n        2.3541889190699998, \n        -0.042940020561199999, \n        0.0072862803935999998, \n        2.3597674369799999, \n        -0.027511119842500001, \n        -0.033552855253200002, \n        2.3546688556699999, \n        0.0040078163147000004, \n        -0.0290730893612, \n        2.3556685447699999, \n        -0.0175050497055, \n        -0.0211009979248, \n        2.3599076271100001, \n        -0.0152369737625, \n        -0.025262802839299998, \n        2.35878753662, \n        0.0069128274917599998, \n        -0.0129308700562, \n        2.3629066944099999, \n        -0.013049840927099999, \n        -0.016769200563400002, \n        2.3613066673300001, \n        0.0098725557327299998, \n        -0.0043649375438700004, \n        2.3627662658699999, \n        -0.0104042291641, \n        -0.0078689754009200006, \n        2.36096668243, \n        0.012709975242599999, \n        0.00439915060997, \n        2.3610270023300002, \n        -0.0075290203094500003, \n        0.0012346506118799999, \n        2.35906744003, \n        0.015595316886899999, \n        -0.042964428663299997, \n        2.3489503860499998, \n        0.057045459747299999, \n        -0.0384977757931, \n        2.35434889793, \n        0.028569936752300001, \n        -0.029628872871400001, \n        2.3574278354599998, \n        0.031920194625899997, \n        -0.033506244421000003, \n        2.35076999664, \n        0.060487031936600003, \n        -0.020557403564500001, \n        2.3590276241299999, \n        0.035073041915900001, \n        -0.023858428001399999, \n        2.3517899513199998, \n        0.062931418418900001, \n        -0.0110811889172, \n        2.3579077720599999, \n        0.037546992301899999, \n        -0.0138312578201, \n        2.3503901958500002, \n        0.064115047454799998, \n        -0.00140246748924, \n        2.3560283184099999, \n        0.039132595062299998, \n        -0.0036143958568599999, \n        2.3480710983300002, \n        0.064384937286400004, \n        -0.047478824853900002, \n        2.3318557739300001, \n        0.104917883873, \n        -0.046009510755499999, \n        2.34013319016, \n        0.084165692329399994, \n        -0.036201864480999997, \n        2.3419728279099998, \n        0.086520314216600003, \n        -0.037532240152399997, \n        2.3337152004199999, \n        0.106230258942, \n        -0.0262348651886, \n        2.3427124023400001, \n        0.088070273399400004, \n        -0.027463108301199999, \n        2.3344750404400001, \n        0.10672771930699999, \n        -0.015949010848999998, \n        2.3413128852799998, \n        0.087945461273200007, \n        -0.0171484947205, \n        2.33299541473, \n        0.105594992638, \n        -0.0055037438869499997, \n        2.33891367912, \n        0.086894750595100004, \n        -0.0067112147808100001, \n        2.3304162025499999, \n        0.103626132011, \n        -0.045843809843099999, \n        2.3126215934799998, \n        0.13038849830599999, \n        -0.047218769788700002, \n        2.3225584030199999, \n        0.11950755119299999, \n        -0.0373141467571, \n        2.3242378234899999, \n        0.12006938457499999, \n        -0.036117523908599999, \n        2.3140211105300001, \n        0.130434036255, \n        -0.027319192886400001, \n        2.3249578475999999, \n        0.119691491127, \n        -0.0263080596924, \n        2.314661026, \n        0.12943518161799999, \n        -0.0171436071396, \n        2.3237781524700001, \n        0.117434024811, \n        -0.0163326263428, \n        2.31378126144, \n        0.126348376274, \n        -0.0068778097629500004, \n        2.3216390609699999, \n        0.11423730850200001, \n        -0.0062740743160200002, \n        2.3121418952899999, \n        0.122216939926, \n        -0.041568040847799997, \n        2.29584693909, \n        0.14458024501799999, \n        -0.043968677520799998, \n        2.3039841651900002, \n        0.13848590850799999, \n        -0.034512519836400003, \n        2.3048639297500002, \n        0.13847839832299999, \n        -0.0324895381927, \n        2.2960064411199999, \n        0.144732952118, \n        -0.0249346792698, \n        2.3051838874800001, \n        0.13736402988400001, \n        -0.0232169628143, \n        2.2958664894099998, \n        0.143745422363, \n        -0.0151135027409, \n        2.30440425873, \n        0.13403570651999999, \n        -0.013555765152, \n        2.2950668335, \n        0.14047634601600001, \n        -0.0051706135272999998, \n        2.3030843734699999, \n        0.129600524902, \n        -0.00370025634766, \n        2.2939472198500002, \n        0.136066794395, \n        -0.035098999738700003, \n        2.2787716388699999, \n        0.15313482284499999, \n        -0.038615494966499998, \n        2.2873692512499999, \n        0.149452805519, \n        -0.030038714408899998, \n        2.2867693901099999, \n        0.149728775024, \n        -0.027148991823199999, \n        2.2772722244299999, \n        0.153487086296, \n        -0.0211730003357, \n        2.2860696315800002, \n        0.14884710311900001, \n        -0.018793374299999999, \n        2.2759523391699998, \n        0.15268766880000001, \n        -0.011728972196599999, \n        2.28522992134, \n        0.14564990997300001, \n        -0.0096267461776700005, \n        2.2750129699700001, \n        0.14958536624900001, \n        -0.0019959211349499999, \n        2.2842900752999999, \n        0.14129519462599999, \n        -5.45382499695e-05, \n        2.27423334122, \n        0.14533174037900001, \n        -0.026309639215499999, \n        2.2617769241299999, \n        0.15699183940899999, \n        -0.031005620956399998, \n        2.2701745033299998, \n        0.155658006668, \n        -0.023809045553200001, \n        2.2676753997799999, \n        0.15602982044200001, \n        -0.0199953317642, \n        2.2581379413599998, \n        0.157320737839, \n        -0.0160690248013, \n        2.2656359672500002, \n        0.15528631210300001, \n        -0.0129781961441, \n        2.2552986145, \n        0.15660297870600001, \n        -0.0072425305843399996, \n        2.2645361423499999, \n        0.152312040329, \n        -0.0045556724071499997, \n        2.2539591789200002, \n        0.15379130840300001, \n        0.0021272599697100001, \n        2.2638964653000002, \n        0.148222565651, \n        0.0045695304870599996, \n        2.25339984894, \n        0.14993321895600001, \n        -0.0150067508221, \n        2.2461619377100002, \n        0.15596759319299999, \n        -0.020985454320900002, \n        2.2536993026699998, \n        0.15710508823399999, \n        -0.015684455633199999, \n        2.2488408088699998, \n        0.15732324123399999, \n        -0.0108527839184, \n        2.2399034500099999, \n        0.15600121021300001, \n        -0.0094991624355299994, \n        2.2450420856500002, \n        0.156597852707, \n        -0.00561022758484, \n        2.23506498337, \n        0.15523183345800001, \n        -0.00154531002045, \n        2.2434225082400001, \n        0.153985500336, \n        0.0018093585968000001, \n        2.2330255508399999, \n        0.15285599231700001, \n        0.0072928965091699997, \n        2.24286270142, \n        0.15042960643799999, \n        0.010317444801300001, \n        2.2324056625400002, \n        0.14967691898300001, \n        -0.00098347663879399996, \n        2.2332653999300001, \n        0.149817109108, \n        -0.0083480179309800007, \n        2.2392835617100002, \n        0.15354835987099999, \n        -0.0054768323898299999, \n        2.23150587082, \n        0.15331852436099999, \n        0.00046703219413799998, \n        2.2238085269900001, \n        0.149238109589, \n        -0.0012897253036499999, \n        2.2254877090499998, \n        0.152464985847, \n        0.0034841001033799998, \n        2.2164506912199999, \n        0.14825761318200001, \n        0.0055290162563300001, \n        2.22294855118, \n        0.150364756584, \n        0.0096344947814899998, \n        2.21329164505, \n        0.14647364616399999, \n        0.013663649559000001, \n        2.22216916084, \n        0.14764118194600001, \n        0.0173515975475, \n        2.21225166321, \n        0.14428782463100001, \n        0.0155752003193, \n        2.2237286567700001, \n        0.138996005058, \n        0.0071128606796300002, \n        2.2282469272599998, \n        0.14474225044299999, \n        0.0070021152496300004, \n        2.21695041656, \n        0.14372408389999999, \n        0.013833045959500001, \n        2.2105121612500001, \n        0.13749325275400001, \n        0.00873291492462, \n        2.20811319351, \n        0.142570137978, \n        0.0142191946507, \n        2.2001357078599999, \n        0.13614273071300001, \n        0.014146655798, \n        2.2042140960699999, \n        0.141144394875, \n        0.018862009048500002, \n        2.1954169273400002, \n        0.13509595394099999, \n        0.0214019715786, \n        2.2027745246900001, \n        0.13958251476299999, \n        0.0256330668926, \n        2.1935374736800002, \n        0.13420128822300001, \n        -0.057311892509500001, \n        2.3192195892299998, \n        -0.0868861675262, \n        -0.039632797241200002, \n        2.3248777389500002, \n        -0.092628836631799993, \n        -0.0410091876984, \n        2.32801675797, \n        -0.088595509529100003, \n        -0.058776468038599997, \n        2.3224983215299999, \n        -0.081808686256400004, \n        -0.022220700979199998, \n        2.32911682129, \n        -0.097425460815400003, \n        -0.023524314165100001, \n        2.3322155475600002, \n        -0.094553947448699993, \n        -0.024161934852600001, \n        2.3348548412299999, \n        -0.091355323791500007, \n        -0.041543841361999997, \n        2.3306560516400001, \n        -0.084387660026600003, \n        -0.059202313423200002, \n        2.32529783249, \n        -0.076687097549399993, \n        -0.040395617485, \n        2.33241581917, \n        -0.079853057861299995, \n        -0.057550817727999998, \n        2.3271369934099999, \n        -0.071444392204300003, \n        -0.0234676897526, \n        2.3366346359299999, \n        -0.087539792060899999, \n        -0.022107720375100001, \n        2.33789396286, \n        -0.083371520042400005, \n        -0.038405567407599997, \n        2.3336353301999999, \n        -0.075120091438299993, \n        -0.054860830307000001, \n        2.3285970687900002, \n        -0.0663088560104, \n        -0.093446761369699996, \n        2.3033847808800001, \n        -0.070459723472600003, \n        -0.075524568557699998, \n        2.3123216629000001, \n        -0.079647660255400002, \n        -0.077108502388000003, \n        2.3157205581700002, \n        -0.073523283004800002, \n        -0.095179080963100002, \n        2.3069233894300001, \n        -0.063419461250299999, \n        -0.077413558960000003, \n        2.3186399936700002, \n        -0.067459821700999997, \n        -0.095411390066099999, \n        2.3101224899299999, \n        -0.056545138359100001, \n        -0.075161546468700005, \n        2.3208594322199998, \n        -0.061684727668800003, \n        -0.092643648386000005, \n        2.3126814365400001, \n        -0.050157546997099997, \n        -0.071630954742399999, \n        2.32305860519, \n        -0.056401371955899997, \n        -0.088376075029399995, \n        2.31542062759, \n        -0.0444680452347, \n        -0.125390380621, \n        2.2811710834499999, \n        -0.048069477081300001, \n        -0.11025452613800001, \n        2.2925477027899999, \n        -0.059595704078699997, \n        -0.11216211319, \n        2.2966666221600001, \n        -0.052132248878500001, \n        -0.12750267982499999, \n        2.2855696678199999, \n        -0.040478110313399998, \n        -0.112428635359, \n        2.30042552948, \n        -0.044832229614300001, \n        -0.12789872288699999, \n        2.2897481918299998, \n        -0.033001065254199997, \n        -0.109413385391, \n        2.3034245967899998, \n        -0.037859678268399997, \n        -0.124862670898, \n        2.2934474945100001, \n        -0.025752425193799999, \n        -0.104756951332, \n        2.3063235282900001, \n        -0.031320333480800003, \n        -0.12011015415200001, \n        2.2969064712499998, \n        -0.018617987632799999, \n        -0.148807644844, \n        2.25835800171, \n        -0.025777101516699999, \n        -0.13829767704000001, \n        2.2697546482100002, \n        -0.036895036697399998, \n        -0.14064612984700001, \n        2.2743530273400001, \n        -0.029273867607100001, \n        -0.15136468410500001, \n        2.26307654381, \n        -0.018155813217200001, \n        -0.14125475287399999, \n        2.2788717746699998, \n        -0.0217306613922, \n        -0.15219879150400001, \n        2.2679152488700001, \n        -0.0105867385864, \n        -0.13838338851900001, \n        2.2832703590399999, \n        -0.0143437385559, \n        -0.14958682656300001, \n        2.2729535102799998, \n        -0.0031220912933300001, \n        -0.13377246260600001, \n        2.2875893116000001, \n        -0.00703525543213, \n        -0.14525175094600001, \n        2.2781119346600001, \n        0.0042904615402200004, \n        -0.162464529276, \n        2.2361648082699999, \n        -0.0032358169555700002, \n        -0.15675207972499999, \n        2.2471013069199999, \n        -0.014421582222, \n        -0.159431308508, \n        2.25192022324, \n        -0.0067614316940300002, \n        -0.16518136858900001, \n        2.24106311798, \n        0.00448668003082, \n        -0.160433977842, \n        2.2569980621300001, \n        0.00086486339569100004, \n        -0.16628822684299999, \n        2.2463417053199999, \n        0.012182712554899999, \n        -0.15808364749000001, \n        2.2625968456300001, \n        0.0084247589111300005, \n        -0.16417562961599999, \n        2.2523198127700002, \n        0.019825100898700002, \n        -0.15405666828199999, \n        2.2684547901199998, \n        0.0159513950348, \n        -0.16045320033999999, \n        2.2586779594399999, \n        0.027440905570999999, \n        -0.16862368583699999, \n        2.2160506248499998, \n        0.017170548439, \n        -0.166278749704, \n        2.2258076667800002, \n        0.0073709487914999997, \n        -0.16895040869700001, \n        2.2307662963900001, \n        0.0151668787003, \n        -0.17115411162399999, \n        2.22100901604, \n        0.025061130523700001, \n        -0.170089840889, \n        2.2361450195299999, \n        0.0229250192642, \n        -0.17222520709, \n        2.2263674735999999, \n        0.032895445823699999, \n        -0.168164610863, \n        2.2423028945899999, \n        0.03060734272, \n        -0.170377373695, \n        2.2325458526599999, \n        0.040617585182200003, \n        -0.16470706462900001, \n        2.2488808631900001, \n        0.038252115249599997, \n        -0.16707035899200001, \n        2.2391438484199999, \n        0.048283457756000001, \n        -0.17032155394599999, \n        2.1982760429399999, \n        0.033760428428599998, \n        -0.16992786526699999, \n        2.2068734169000002, \n        0.0259337425232, \n        -0.172207206488, \n        2.21171188354, \n        0.033951401710499998, \n        -0.17222201824200001, \n        2.2029347419700001, \n        0.041957974433900001, \n        -0.17308017611500001, \n        2.2169704437300002, \n        0.041897654533399997, \n        -0.17276382446300001, \n        2.2080330848699998, \n        0.050063729286200002, \n        -0.171140521765, \n        2.2230486869799999, \n        0.0497009754181, \n        -0.17058888077699999, \n        2.2139911651599999, \n        0.057985901832600002, \n        -0.167794466019, \n        2.2295668125199999, \n        0.057433128356900003, \n        -0.16705560684199999, \n        2.2203698158299998, \n        0.065816283226, \n        -0.16865608096099999, \n        2.18280076981, \n        0.046886682510399999, \n        -0.169934034348, \n        2.1902384758000002, \n        0.040750503540000003, \n        -0.17130982875799999, \n        2.1947371959700002, \n        0.049201250076300003, \n        -0.16939246654500001, \n        2.18715953827, \n        0.055629014968899999, \n        -0.17138481140100001, \n        2.1996958255800001, \n        0.057526111602800002, \n        -0.16890117526099999, \n        2.1919779777500001, \n        0.064209699630700001, \n        -0.16885778307900001, \n        2.205493927, \n        0.065599679946899997, \n        -0.16595387458800001, \n        2.1976561546300002, \n        0.072466969490099994, \n        -0.165029525757, \n        2.2117519378699999, \n        0.0735476016998, \n        -0.16177877783799999, \n        2.2037744522099998, \n        0.080562472343399999, \n        -0.16302013397199999, \n        2.1698446273799998, \n        0.056484937667800002, \n        -0.166377693415, \n        2.1759827136999998, \n        0.052151441574100003, \n        -0.166390925646, \n        2.1802415847800001, \n        0.061189293861399999, \n        -0.16223418712599999, \n        2.17406320572, \n        0.065804839134200002, \n        -0.16527092456799999, \n        2.1849603652999998, \n        0.070038795471199997, \n        -0.16043412685399999, \n        2.17868208885, \n        0.074926614761400001, \n        -0.16188454628000001, \n        2.1905183792099998, \n        0.078511476516699999, \n        -0.15660533308999999, \n        2.1841003894800002, \n        0.083651304245000002, \n        -0.15736505389200001, \n        2.1964964866600001, \n        0.0867956876755, \n        -0.15176221728299999, \n        2.1899185180699998, \n        0.092177748680099994, \n        -0.152764201164, \n        2.1598076820399998, \n        0.062045454978900003, \n        -0.15850353241000001, \n        2.1644463539099998, \n        0.059826612472499999, \n        -0.15685221552799999, \n        2.16864514351, \n        0.069398403167700004, \n        -0.15018227696399999, \n        2.1640462875400002, \n        0.071837782859799998, \n        -0.15433177351999999, \n        2.17320394516, \n        0.078785777092000006, \n        -0.146883606911, \n        2.1685450077100001, \n        0.0814735889435, \n        -0.15007269382499999, \n        2.1784422397599998, \n        0.087804317474399998, \n        -0.14215207099900001, \n        2.1736035346999998, \n        0.090796828270000005, \n        -0.14494419097899999, \n        2.1840403080000002, \n        0.096638441085799998, \n        -0.13670432567599999, \n        2.1789021491999998, \n        0.099964022636400002, \n        -0.13738489151, \n        2.1528096199000002, \n        0.062491536140399997, \n        -0.14573857188200001, \n        2.1559491157499999, \n        0.063009381294300004, \n        -0.14216125011399999, \n        2.1602675914799998, \n        0.072990417480500003, \n        -0.13272312283500001, \n        2.1572086811100002, \n        0.072615385055499998, \n        -0.13800975680399999, \n        2.1647462844800001, \n        0.082847118377699994, \n        -0.12760528922100001, \n        2.1616871356999998, \n        0.082638502121000004, \n        -0.13270950317399999, \n        2.1695847511299999, \n        0.092455863952599998, \n        -0.121574729681, \n        2.1663255691500001, \n        0.092459321021999996, \n        -0.12683495879199999, \n        2.17458319664, \n        0.101940631866, \n        -0.115088015795, \n        2.17106437683, \n        0.10217940807299999, \n        -0.117253035307, \n        2.1480913162199999, \n        0.057184100151100002, \n        -0.12766137719199999, \n        2.1502904892000001, \n        0.060264945030200003, \n        -0.12180113792400001, \n        2.1547894477799998, \n        0.070472359657300004, \n        -0.110137104988, \n        2.1526899337800001, \n        0.067444801330600004, \n        -0.115565299988, \n        2.1592679023699999, \n        0.080579400062600004, \n        -0.102707594633, \n        2.1572086811100002, \n        0.077594757080099996, \n        -0.10857796669, \n        2.1637866497, \n        0.090485811233499996, \n        -0.094650387764000005, \n        2.1615869998899999, \n        0.087523460388199997, \n        -0.101215213537, \n        2.1683049202000002, \n        0.10029184818300001, \n        -0.0862795114517, \n        2.1659259796099999, \n        0.097341299056999994, \n        -0.031140208244299999, \n        2.3264374732999999, \n        -0.043588280677799997, \n        -0.020886510610600002, \n        2.32605743408, \n        -0.052670836448699999, \n        -0.017789453268100001, \n        2.33151578903, \n        -0.055399298667899999, \n        -0.0277458131313, \n        2.3339948654199998, \n        -0.045524716377299997, \n        -0.0095987319946300009, \n        2.3283166885400002, \n        -0.063561797141999998, \n        -0.0070297420024899998, \n        2.3310761451699999, \n        -0.067406892776499999, \n        -0.00381556153297, \n        2.3341352939600002, \n        -0.070195913314800004, \n        -0.014006495475800001, \n        2.3366940021499998, \n        -0.057361125945999999, \n        -0.023647457361200001, \n        2.3406133651699998, \n        -0.046663522720299999, \n        -0.0088700950145699994, \n        2.3413529396100001, \n        -0.057735323905899999, \n        -0.018088072538399998, \n        2.3456315994299999, \n        -0.046363711357099997, \n        0.000701904296875, \n        2.3379538059199998, \n        -0.070912599563600007, \n        0.0058736503124199998, \n        2.34213280678, \n        -0.070600509643599998, \n        -0.0030384063720699998, \n        2.3457715511299999, \n        -0.0573709011078, \n        -0.011761903762799999, \n        2.3499703407300001, \n        -0.045452833175700001, \n        -0.048902601003599999, \n        2.3302159309400001, \n        -0.025790810585000001, \n        -0.040392011403999999, \n        2.3283967971799999, \n        -0.0349545478821, \n        -0.037182718515399997, \n        2.3370342254600001, \n        -0.036685228347799997, \n        -0.0461317002773, \n        2.33931350708, \n        -0.027399897575400001, \n        -0.033086180686999998, \n        2.3446717262300001, \n        -0.037572145462000002, \n        -0.042211890220599999, \n        2.3476312160499999, \n        -0.028186321258499999, \n        -0.027154207229599998, \n        2.3505702018700001, \n        -0.036950826644900001, \n        -0.035946726799000003, \n        2.3546090126000001, \n        -0.0274684429169, \n        -0.0203630626202, \n        2.3554089069400002, \n        -0.035401582717899997, \n        -0.028617501258899999, \n        2.3605272769900001, \n        -0.0256762504578, \n        -0.063903093337999997, \n        2.33017611504, \n        -0.0046064853668200002, \n        -0.056758075952500001, \n        2.3307962417599999, \n        -0.015638232231099999, \n        -0.054384589195300002, \n        2.3403732776599999, \n        -0.016899108886700001, \n        -0.061860561370800003, \n        2.34019327164, \n        -0.0053528547287000003, \n        -0.050653696060200003, \n        2.3492105007199999, \n        -0.017378330230700002, \n        -0.058274835348099997, \n        2.34949040413, \n        -0.0054602622985799997, \n        -0.044117897748900001, \n        2.3569083213800002, \n        -0.0165622234344, \n        -0.051588058471699998, \n        2.3574278354599998, \n        -0.0043320655822799998, \n        -0.0363028347492, \n        2.3636660575900001, \n        -0.0147330760956, \n        -0.043531447649, \n        2.36416602135, \n        -0.0020499229431200001, \n        -0.075570195913299998, \n        2.3255376815800002, \n        0.018096208572400001, \n        -0.070130199194000001, \n        2.3283166885400002, \n        0.0067423582076999999, \n        -0.068346142768899998, \n        2.33861398697, \n        0.0066746473312400004, \n        -0.0739541053772, \n        2.3360345363600001, \n        0.018691062927199999, \n        -0.064903020858799995, \n        2.3481707572900001, \n        0.0071516036987300004, \n        -0.070602506399200002, \n        2.3457717895500001, \n        0.0197447538376, \n        -0.0581284463406, \n        2.3563084602400002, \n        0.0086777210235600005, \n        -0.063766568899200002, \n        2.3540291786199998, \n        0.021673440933199999, \n        -0.049879521131500001, \n        2.3631262779200002, \n        0.011298418045, \n        -0.055388301610899998, \n        2.3608870506300002, \n        0.024633646011400001, \n        -0.085240244865399994, \n        2.3163003921500001, \n        0.042042613029499999, \n        -0.080579996109000004, \n        2.3215990066500001, \n        0.029815554618799998, \n        -0.079124927520799998, \n        2.3320355415299998, \n        0.031180977821399999, \n        -0.083941459655799994, \n        2.3264374732999999, \n        0.044294118881200002, \n        -0.075882434844999999, \n        2.3416929245000002, \n        0.032931208610500001, \n        -0.080827951431300005, \n        2.3357543945299999, \n        0.046872496604899998, \n        -0.069045156240500005, \n        2.3498504161799998, \n        0.035389900207499998, \n        -0.074056863784800003, \n        2.3435323238399999, \n        0.050019741058300003, \n        -0.060597658157299998, \n        2.3566281795499999, \n        0.038759946823100001, \n        -0.065609008073800004, \n        2.3500504493699998, \n        0.053903341293300003, \n        -0.0929577052593, \n        2.3036441803000001, \n        0.066058039665200005, \n        -0.089418262243300004, \n        2.3101625442499998, \n        0.054287791252100003, \n        -0.0882317125797, \n        2.31983947754, \n        0.057425141334500003, \n        -0.091809719800899997, \n        2.3128416538200001, \n        0.069989442825299994, \n        -0.085221648216199999, \n        2.3286967277500001, \n        0.060830473899800001, \n        -0.088846415281299995, \n        2.32119894028, \n        0.074127078056300005, \n        -0.078533530235300006, \n        2.3359944820399998, \n        0.064681291580200001, \n        -0.082229584455499993, \n        2.32801675797, \n        0.078607916831999997, \n        -0.070116639137299999, \n        2.3421726226800001, \n        0.069082140922499993, \n        -0.073851853609100002, \n        2.3338351249699998, \n        0.083456158638000003, \n        -0.097632914781599994, \n        2.2910079956099998, \n        0.086608529090899999, \n        -0.095721244812000006, \n        2.2971858978299999, \n        0.076916337013199998, \n        -0.094517081975900002, \n        2.3059034347499998, \n        0.081487774848900005, \n        -0.096271961927399993, \n        2.2992856502499999, \n        0.091645479202299998, \n        -0.091524720192000003, \n        2.3138213157699998, \n        0.086202383041400002, \n        -0.093171447515499994, \n        2.30680322647, \n        0.096769213676500002, \n        -0.084946781396899998, \n        2.3201990127599998, \n        0.091173529624899996, \n        -0.0865924358368, \n        2.3128018379199999, \n        0.10206592083, \n        -0.076597094535800006, \n        2.3257176876100001, \n        0.096336603164699997, \n        -0.0782741606236, \n        2.3180398941, \n        0.107449650764, \n        -0.099517792463300003, \n        2.2773122787500002, \n        0.10421705246, \n        -0.0988855361938, \n        2.2844305038499999, \n        0.095680117607100004, \n        -0.097297996282599997, \n        2.2922077179000002, \n        0.10109770298, \n        -0.097638726234399995, \n        2.2845101356500002, \n        0.109941840172, \n        -0.094045013189300003, \n        2.29926538467, \n        0.10656201839399999, \n        -0.094189375638999998, \n        2.29102802277, \n        0.115679860115, \n        -0.0874602496624, \n        2.3048639297500002, \n        0.112119793892, \n        -0.087599515914900006, \n        2.2961666583999998, \n        0.121445178986, \n        -0.079209893941900006, \n        2.3097224235499998, \n        0.117724299431, \n        -0.079439431428900004, \n        2.3006253242499999, \n        0.12722396850600001, \n        -0.098882317543000003, \n        2.2614569663999999, \n        0.119461536407, \n        -0.099519729614300001, \n        2.26965475082, \n        0.112162947655, \n        -0.097282409668000003, \n        2.2762126922600001, \n        0.118114352226, \n        -0.096218347549399993, \n        2.2672753334000002, \n        0.125551819801, \n        -0.093592494726200001, \n        2.2821109294899999, \n        0.124052762985, \n        -0.092241287231400002, \n        2.27251362801, \n        0.13160967826799999, \n        -0.086996912956200004, \n        2.2867493629500002, \n        0.12996506691000001, \n        -0.085638731718100006, \n        2.2765724659000002, \n        0.137602090836, \n        -0.078948497772200005, \n        2.2907280921900002, \n        0.13586473465000001, \n        -0.077723145484900003, \n        2.28007125854, \n        0.143562197685, \n        -0.095651149749800005, \n        2.2434623241399998, \n        0.131890535355, \n        -0.097595930099500003, \n        2.2527396678899998, \n        0.12605619430500001, \n        -0.094435065984700001, \n        2.2577381133999999, \n        0.13219058513599999, \n        -0.091921657323800005, \n        2.2476012706800002, \n        0.137967586517, \n        -0.090123742818800007, \n        2.26223707199, \n        0.138280034065, \n        -0.087226837873499996, \n        2.2513000965100001, \n        0.14399361610399999, \n        -0.083511590957599996, \n        2.26571559906, \n        0.144279122353, \n        -0.080601841211299999, \n        2.2541391849500001, \n        0.14991855621299999, \n        -0.075749129056899997, \n        2.2686750888799998, \n        0.150232791901, \n        -0.073011755943300005, \n        2.25655841827, \n        0.15579235553699999, \n        -0.089748263359099995, \n        2.2233486175500001, \n        0.141052961349, \n        -0.093038529157599997, \n        2.2336654663100002, \n        0.13690805435200001, \n        -0.088666647672699994, \n        2.2368445396399999, \n        0.14281868934600001, \n        -0.084659218788099996, \n        2.2255079746200002, \n        0.146680831909, \n        -0.083538174629200004, \n        2.23970365524, \n        0.14867985248599999, \n        -0.079045087099100006, \n        2.2274475097700002, \n        0.15226829051999999, \n        -0.0768961906433, \n        2.2418630123100001, \n        0.154443025589, \n        -0.072380751371400001, \n        2.22892689705, \n        0.157775163651, \n        -0.069497436285000005, \n        2.2437024116500002, \n        0.16015660762799999, \n        -0.065191507339499993, \n        2.2301666736599999, \n        0.16324186325100001, \n        -0.081450968980799995, \n        2.20137524605, \n        0.14701914787299999, \n        -0.085771322250400003, \n        2.2124917507199999, \n        0.144268512726, \n        -0.079888075590099999, \n        2.2135915756200002, \n        0.149490237236, \n        -0.074735045432999997, \n        2.2013754844700002, \n        0.15177333354899999, \n        -0.073735117912300002, \n        2.21457123756, \n        0.15468811988799999, \n        -0.068016409873999997, \n        2.20137524605, \n        0.156523704529, \n        -0.0670423209667, \n        2.21531105042, \n        0.159838080406, \n        -0.061292290687599997, \n        2.20137524605, \n        0.16126608848599999, \n        -0.060079693794299997, \n        2.2159309387200001, \n        0.16496396064800001, \n        -0.054565072059599998, \n        2.2013754844700002, \n        0.166004538536, \n        0.110828518867, \n        2.0174307823199999, \n        -0.076502919197100006, \n        0.090352505445499998, \n        2.0126321315800002, \n        -0.096391618251799996, \n        0.0821220576763, \n        1.9945874214199999, \n        -0.089009940624200007, \n        0.10120263695700001, \n        1.9997559785800001, \n        -0.070803761482199995, \n        0.090910196304300001, \n        1.9819034337999999, \n        -0.064760565757799995, \n        0.073364228010199997, \n        1.97638118267, \n        -0.081212878227199997, \n        0.055630177259399997, \n        1.9716305732699999, \n        -0.095471918582899995, \n        0.062622278928799999, \n        1.99015307426, \n        -0.104774773121, \n        0.0692300796509, \n        2.0085334777799999, \n        -0.113600611687, \n        0.046814441680900001, \n        2.0057940483099999, \n        -0.12545001506799999, \n        0.042284250259399997, \n        1.9871799945799999, \n        -0.11565715074500001, \n        0.0375198423862, \n        1.9684214592, \n        -0.105344474316, \n        0.019033193588299999, \n        1.9667541980700001, \n        -0.110794603825, \n        0.021305412054100002, \n        1.9856703281400001, \n        -0.12166815996200001, \n        0.023494690656699999, \n        2.0044548511500002, \n        -0.13199520111099999, \n        -0.00034046173095700002, \n        2.0044946670499999, \n        -0.133291065693, \n        -0.000117152929306, \n        1.9856283664700001, \n        -0.12281924486199999, \n        0.000170350074768, \n        1.9666281938600001, \n        -0.111787438393, \n        -0.0190688371658, \n        1.96804559231, \n        -0.108287930489, \n        -0.021785616874700001, \n        1.9870519638099999, \n        -0.119121730328, \n        -0.024302452802699999, \n        2.0059342384300001, \n        -0.12939274311099999, \n        -0.0480021238327, \n        2.0087532997099999, \n        -0.12035590410200001, \n        -0.043502449989300002, \n        1.9899408817299999, \n        -0.110586345196, \n        -0.038684129715000001, \n        1.97100281715, \n        -0.100260198116, \n        -0.058487683534600002, \n        1.97473347187, \n        -0.089968562126199997, \n        -0.065243691206000001, \n        1.99356591702, \n        -0.099632620811499997, \n        -0.071570545434999994, \n        2.0122723579400001, \n        -0.108749806881, \n        0.12614607811, \n        2.0517206192000002, \n        -0.085866689681999994, \n        0.10369348526, \n        2.04776144028, \n        -0.10868698358499999, \n        0.097528189420700004, \n        2.03036689758, \n        -0.102943301201, \n        0.119121193886, \n        2.0347657203699998, \n        -0.081513524055499997, \n        0.075068563222899995, \n        2.02660799026, \n        -0.12147295475, \n        0.080164194107100004, \n        2.04438257217, \n        -0.12840747833300001, \n        0.054480761289599999, \n        2.04220294952, \n        -0.14192742109299999, \n        0.0508762300014, \n        2.0241484642000001, \n        -0.134203314781, \n        0.025518894195599998, \n        2.0229890346500001, \n        -0.14122813940000001, \n        0.027377337217299999, \n        2.041223526, \n        -0.14937567710899999, \n        -0.00041231513023399997, \n        2.0414435863499998, \n        -0.15087962150600001, \n        -0.000435471534729, \n        2.0231089592, \n        -0.142641663551, \n        -0.026419043541000001, \n        2.0245485305800002, \n        -0.13853812217700001, \n        -0.028154492378199999, \n        2.04288315773, \n        -0.146567761898, \n        -0.055115342140200002, \n        2.0455622672999998, \n        -0.13656771182999999, \n        -0.051863998174699999, \n        2.0273079872099999, \n        -0.129011631012, \n        -0.077039569616299999, \n        2.0307068824800001, \n        -0.116773664951, \n        -0.081685692071900004, \n        2.0488414764399998, \n        -0.12372380495099999, \n        0.13665330410000001, \n        2.0844304561599998, \n        -0.092720210552200005, \n        0.11317384243, \n        2.0814113616899999, \n        -0.11784213781400001, \n        0.108893871307, \n        2.0647761821700001, \n        -0.11364579200699999, \n        0.13196834921799999, \n        2.0682954788200001, \n        -0.089592218399000001, \n        0.084543079137800001, \n        2.06181740761, \n        -0.13441985845599999, \n        0.0882317125797, \n        2.0788521766699999, \n        -0.13952624797800001, \n        0.060364961624100003, \n        2.0772924423200001, \n        -0.154334127903, \n        0.057639986276599997, \n        2.0599179267899999, \n        -0.14863431453699999, \n        0.029070019722, \n        2.05913805962, \n        -0.156446158886, \n        0.030596375465399998, \n        2.07671284676, \n        -0.16244786977799999, \n        -5.1856040954600001e-05, \n        2.0771329402899998, \n        -0.16404873132700001, \n        -0.00028097629547099999, \n        2.0594582557700001, \n        -0.15801262855500001, \n        -0.029527515173, \n        2.0609176158900002, \n        -0.15349096059799999, \n        -0.030556559562700002, \n        2.07859230042, \n        -0.15931779146200001, \n        -0.059895515441899999, \n        2.0810914039599999, \n        -0.148437380791, \n        -0.057783573865900002, \n        2.0634970665000001, \n        -0.14303851127600001, \n        -0.085544586181600005, \n        2.0666558742499999, \n        -0.129620075226, \n        -0.088651418685899999, \n        2.0841307640100002, \n        -0.134481966496, \n        0.14287284016599999, \n        2.1153812408400001, \n        -0.097306609153699999, \n        0.119151800871, \n        2.1133618354800001, \n        -0.12403815984700001, \n        0.11657819151899999, \n        2.0976066589400002, \n        -0.121298670769, \n        0.140266448259, \n        2.1001458168, \n        -0.095281720161400005, \n        0.091256380081200003, \n        2.0955069065099998, \n        -0.14374226331699999, \n        0.093643307685899999, \n        2.1117420196499999, \n        -0.14708393812199999, \n        0.064559459686300003, \n        2.1108224391900001, \n        -0.16275852918600001, \n        0.062667727470400003, \n        2.0942673683200002, \n        -0.15903854370100001, \n        0.031955957412699999, \n        2.0938878059400001, \n        -0.16738927364299999, \n        0.033148795366299999, \n        2.1106827259099998, \n        -0.17127847671499999, \n        0.000659734010696, \n        2.1113424301100001, \n        -0.172860622406, \n        0.00026515126228299999, \n        2.0944273471799999, \n        -0.16899508237800001, \n        -0.031260967254600001, \n        2.0959072113000001, \n        -0.16405808925599999, \n        -0.031659215688699997, \n        2.11280202866, \n        -0.167721390724, \n        -0.062559485435499995, \n        2.1151611804999999, \n        -0.156077384949, \n        -0.061478406190899997, \n        2.0983264446300001, \n        -0.152779102325, \n        -0.091041713952999995, \n        2.1012253761299999, \n        -0.138329148293, \n        -0.092750787735000007, \n        2.1179203987099999, \n        -0.141181409359, \n        0.14532670378699999, \n        2.1443524360700001, \n        -0.099868297576899995, \n        0.12198674678800001, \n        2.1434528827700001, \n        -0.127455711365, \n        0.12093988060999999, \n        2.1286573409999998, \n        -0.126083016396, \n        0.14453771710400001, \n        2.13011670113, \n        -0.098825454711900004, \n        0.095418781042099998, \n        2.12749743462, \n        -0.14956706762300001, \n        0.096609234809899996, \n        2.1427927017199999, \n        -0.15120744705200001, \n        0.067156314849900006, \n        2.14259290695, \n        -0.16728889942200001, \n        0.0660518407822, \n        2.12693786621, \n        -0.16550493240399999, \n        0.034174233674999999, \n        2.12703752518, \n        -0.174123942852, \n        0.035032242536500002, \n        2.14291286469, \n        -0.175934314728, \n        0.00164118409157, \n        2.14381241798, \n        -0.177378237247, \n        0.00112187862396, \n        2.1277976036099999, \n        -0.175652146339, \n        -0.031770229339599998, \n        2.1292967796300002, \n        -0.17031717300400001, \n        -0.031612634658800001, \n        2.1453120708500002, \n        -0.17185544967700001, \n        -0.0633250772953, \n        2.1474912166600002, \n        -0.15960025787400001, \n        -0.063166141509999996, \n        2.1315562725100001, \n        -0.158346652985, \n        -0.093813896179199996, \n        2.1341755390200001, \n        -0.14305812120399999, \n        -0.094266742467899997, \n        2.1499905586199999, \n        -0.143979430199, \n        0.14453732967399999, \n        2.1711645126299999, \n        -0.10064876079600001, \n        0.122037023306, \n        2.1714243888899998, \n        -0.12827587127699999, \n        0.122337460518, \n        2.1577084064499998, \n        -0.128179073334, \n        0.14530467987099999, \n        2.15802812576, \n        -0.10046637058299999, \n        0.097240567207299997, \n        2.1575684547399998, \n        -0.15202116966199999, \n        0.097339630127000004, \n        2.1718039512599998, \n        -0.15202367305799999, \n        0.068247646093400005, \n        2.1723637580899999, \n        -0.168013691902, \n        0.067884296178799999, \n        2.15774822235, \n        -0.16812145710000001, \n        0.035722255706800002, \n        2.1583082675899998, \n        -0.17671751976, \n        0.036244034767199999, \n        2.1731839179999999, \n        -0.176481842995, \n        0.00281155109406, \n        2.17434358597, \n        -0.17766481638000001, \n        0.0022078454494500002, \n        2.1593477725999999, \n        -0.17804640531499999, \n        -0.031205385923400001, \n        2.1608672142000001, \n        -0.17234599590300001, \n        -0.030567169189500001, \n        2.1758828163100001, \n        -0.17179834842700001, \n        -0.062408953905099998, \n        2.1778824329400002, \n        -0.159118890762, \n        -0.063063591718700004, \n        2.1629469394699998, \n        -0.15985321998599999, \n        -0.094144552946099996, \n        2.1653060913100002, \n        -0.14396429061900001, \n        -0.093482613563500003, \n        2.1801018714899998, \n        -0.143033146858, \n        0.14102700352700001, \n        2.1956369876899999, \n        -0.099890470504800002, \n        0.119661599398, \n        2.1970963478100001, \n        -0.12667953968000001, \n        0.121130019426, \n        2.1845602989200001, \n        -0.12776839733100001, \n        0.14308962225899999, \n        2.1837005615199998, \n        -0.10044682025899999, \n        0.096932142972899996, \n        2.1854600906399999, \n        -0.15123140811899999, \n        0.096044808626200004, \n        2.19853615761, \n        -0.14965963363599999, \n        0.067925661802300003, \n        2.19989562035, \n        -0.16502165794400001, \n        0.068257570266699999, \n        2.1864199638400001, \n        -0.166976809502, \n        0.036597132682800002, \n        2.1875193119, \n        -0.17523622512799999, \n        0.036781460046800003, \n        2.20125508308, \n        -0.17298841476400001, \n        0.0040893852710699998, \n        2.2026948928799999, \n        -0.173782587051, \n        0.0034421384334600001, \n        2.18879890442, \n        -0.17624080181099999, \n        -0.029716819524800001, \n        2.1903784275099998, \n        -0.17022228241000001, \n        -0.028673142194700001, \n        2.20429420471, \n        -0.16762745380399999, \n        -0.0600288808346, \n        2.2061138153100002, \n        -0.15474522113799999, \n        -0.061388254165600002, \n        2.1922779083299999, \n        -0.157411456108, \n        -0.092316299676899999, \n        2.1943573951699999, \n        -0.14120507240300001, \n        -0.090681046247499994, \n        2.20805311203, \n        -0.138499736786, \n        0.13531848788299999, \n        2.21755027771, \n        -0.097836136817900002, \n        0.115218997002, \n        2.2202696800199999, \n        -0.122847676277, \n        0.117676258087, \n        2.20901274681, \n        -0.125031709671, \n        0.138414978981, \n        2.20691347122, \n        -0.099010109901399995, \n        0.094703793525700006, \n        2.2109920978500002, \n        -0.14732456207299999, \n        0.0929353535175, \n        2.22280859947, \n        -0.14424180984500001, \n        0.066282600164400005, \n        2.2249879837000002, \n        -0.15840113163, \n        0.067263484001199997, \n        2.21277165413, \n        -0.16215944290199999, \n        0.0367964506149, \n        2.2143914699599998, \n        -0.16974687576299999, \n        0.036641925573299997, \n        2.22688770294, \n        -0.165520429611, \n        0.0053937435150100002, \n        2.2286272049, \n        -0.16579508781399999, \n        0.0047433376312299999, \n        2.2159707546199998, \n        -0.17029809951800001, \n        -0.0274549424648, \n        2.2175903320299999, \n        -0.164023756981, \n        -0.0260809361935, \n        2.2302865982100002, \n        -0.159420609474, \n        -0.056401729583700003, \n        2.23194599152, \n        -0.14659225940699999, \n        -0.058357596397399999, \n        2.21934986115, \n        -0.151134133339, \n        -0.088612288236600001, \n        2.22114944458, \n        -0.134937167168, \n        -0.086145371198699999, \n        2.2336053848300002, \n        -0.13053715229000001, \n        0.127933770418, \n        2.23674440384, \n        -0.094728589057900006, \n        0.109068512917, \n        2.2407231330899999, \n        -0.116961240768, \n        0.112334936857, \n        2.2308464050299999, \n        -0.120149970055, \n        0.131802946329, \n        2.2275071144099998, \n        -0.096398711204499998, \n        0.090765804052400006, \n        2.23394560814, \n        -0.14042758941700001, \n        0.088221341371500006, \n        2.2443823814399999, \n        -0.135897397995, \n        0.063410788774500002, \n        2.2473814487500001, \n        -0.14824032783499999, \n        0.064994543790799997, \n        2.2365446090700001, \n        -0.15375745296500001, \n        0.036317437887200002, \n        2.2387237548800001, \n        -0.160316705704, \n        0.035822749137899998, \n        2.2498807907099998, \n        -0.154144406319, \n        0.0066434144973800003, \n        2.2519199848200002, \n        -0.153764724731, \n        0.0060305595397899996, \n        2.24062347412, \n        -0.16028130054500001, \n        -0.024570196866999999, \n        2.2423028945899999, \n        -0.15382802486399999, \n        -0.0229411125183, \n        2.2536594867700002, \n        -0.147255897522, \n        -0.051744967699100003, \n        2.2551591396299999, \n        -0.134772539139, \n        -0.054188460111600001, \n        2.2439024448399998, \n        -0.14113378524799999, \n        -0.083315610885599994, \n        2.24542188644, \n        -0.12531864643099999, \n        -0.080158352851899997, \n        2.25655841827, \n        -0.11930179595900001, \n        0.119395375252, \n        2.2530193328900001, \n        -0.090810656547499993, \n        0.101568102837, \n        2.2582378387499999, \n        -0.109201192856, \n        0.105464577675, \n        2.2498607635500001, \n        -0.11330413818399999, \n        0.123776048422, \n        2.24526166916, \n        -0.092855691909800003, \n        0.085328429937400002, \n        2.2540793418899998, \n        -0.13066732883500001, \n        0.082113146781900001, \n        2.26301646233, \n        -0.124753236771, \n        0.059402078390099998, \n        2.26687574387, \n        -0.134627938271, \n        0.061542838811900001, \n        2.2575182914699998, \n        -0.14186000824, \n        0.035157561302199998, \n        2.2602772712700001, \n        -0.147011876106, \n        0.034321397543000003, \n        2.2699542045599999, \n        -0.138927698135, \n        0.0077573060989399997, \n        2.2723336219800001, \n        -0.13775444030799999, \n        0.00722244381905, \n        2.2624967098200002, \n        -0.14625334739699999, \n        -0.021212786436100001, \n        2.2642760276799998, \n        -0.139713644981, \n        -0.019403934478800001, \n        2.27417325974, \n        -0.13121080398599999, \n        -0.0462758243084, \n        2.2755327224699999, \n        -0.119398355484, \n        -0.049098372459399998, \n        2.26571559906, \n        -0.12752258777600001, \n        -0.076709270477300001, \n        2.26699519157, \n        -0.112506151199, \n        -0.073003321886099995, \n        2.27669239044, \n        -0.104951500893, \n        0.110225528479, \n        2.26615571976, \n        -0.086325764656100007, \n        0.093077301979099997, \n        2.2726337909700001, \n        -0.099748611450200003, \n        0.097424149513199998, \n        2.26583576202, \n        -0.10467505454999999, \n        0.11485674977300001, \n        2.2599973678600001, \n        -0.088624000549300003, \n        0.078602045774500001, \n        2.27117395401, \n        -0.118170619011, \n        0.074821203947099998, \n        2.2785120010400002, \n        -0.11093580722800001, \n        0.0543490350246, \n        2.28323030472, \n        -0.11765253543900001, \n        0.0570003986359, \n        2.2754526138300002, \n        -0.12655496597300001, \n        0.033314138650900001, \n        2.2788317203499999, \n        -0.129899740219, \n        0.032135337591199999, \n        2.2869095802300001, \n        -0.11993670463599999, \n        0.0086542367935200006, \n        2.2896485328699998, \n        -0.117827534676, \n        0.0082379579544099996, \n        2.2813911438000001, \n        -0.128276586533, \n        -0.017533212900200001, \n        2.2832703590399999, \n        -0.12175750732399999, \n        -0.015619516372699999, \n        2.2915880680099998, \n        -0.111363172531, \n        -0.040211647748900001, \n        2.2928476333600001, \n        -0.100582480431, \n        -0.043304771184899997, \n        2.2845902442899999, \n        -0.110413551331, \n        -0.069076180458100003, \n        2.2856097221399998, \n        -0.096657395362899995, \n        -0.064963191747700003, \n        2.2937474250799998, \n        -0.087643265724200003, \n        0.100894927979, \n        2.2764325141900001, \n        -0.0815262794495, \n        0.083988577127500005, \n        2.2841300964400002, \n        -0.088950276374800005, \n        0.088572472333900004, \n        2.2785921096799999, \n        -0.094443917274499994, \n        0.105567127466, \n        2.2715139389000001, \n        -0.083946347236599994, \n        0.070797055959699998, \n        2.2850098609899998, \n        -0.103064417839, \n        0.066651076078399998, \n        2.2911081314100001, \n        -0.094874978065500007, \n        0.048451185226399997, \n        2.2966666221600001, \n        -0.097800493240399994, \n        0.051459670066800002, \n        2.2901682853700001, \n        -0.107931017876, \n        0.030784487724300001, \n        2.2941269874599999, \n        -0.10904657840699999, \n        0.0293477475643, \n        2.3009448051499999, \n        -0.097693324089100003, \n        0.0093003809452099993, \n        2.3040642738299999, \n        -0.094520092010500004, \n        0.0089959800243399994, \n        2.2970662116999998, \n        -0.10641467571300001, \n        -0.013681769371, \n        2.2990655899000001, \n        -0.10003769397700001, \n        -0.0117318332195, \n        2.3061435222600002, \n        -0.088246583938600007, \n        -0.033789753913900003, \n        2.3073029518100001, \n        -0.078839421272299995, \n        -0.037024378776600003, \n        2.3002853393599998, \n        -0.089918971061700007, \n        -0.060699462890599999, \n        2.3010849952700001, \n        -0.077929377555799997, \n        -0.056360572576499998, \n        2.30800294876, \n        -0.067865371704099994\n    ], \n    \"tex0\": [\n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.088157899677799995, \n        0.916666984558, \n        0.088157899677799995, \n        0.958333015442, \n        0.0112853003666, \n        0.958333015442, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.088157899677799995, \n        0.833333015442, \n        0.088157899677799995, \n        0.875, \n        0.0112853003666, \n        0.875, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.088157899677799995, \n        0.75, \n        0.088157899677799995, \n        0.791666984558, \n        0.0112853003666, \n        0.791666984558, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.088157899677799995, \n        0.666666984558, \n        0.088157899677799995, \n        0.708333015442, \n        0.0112853003666, \n        0.708333015442, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.088157899677799995, \n        0.583333015442, \n        0.088157899677799995, \n        0.625, \n        0.0112853003666, \n        0.625, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.088157899677799995, \n        0.5, \n        0.088157899677799995, \n        0.541666984558, \n        0.0112853003666, \n        0.541666984558, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.0112853003666, \n        0.45833298564000002, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.088157899677799995, \n        0.375, \n        0.0112853003666, \n        0.375, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.088157899677799995, \n        0.25, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.0112853003666, \n        0.29166701435999998, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.0112853003666, \n        0.20833300054100001, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.088157899677799995, \n        0.083333298564, \n        0.088157899677799995, \n        0.125, \n        0.0112853003666, \n        0.125, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.083333298564, \n        0.24190300703000001, \n        0.125, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.088157899677799995, \n        0.0, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.0112853003666, \n        0.041666600853200002, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.088157899677799995, \n        0.916666984558, \n        0.088157899677799995, \n        0.958333015442, \n        0.0112853003666, \n        0.958333015442, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.088157899677799995, \n        0.833333015442, \n        0.088157899677799995, \n        0.875, \n        0.0112853003666, \n        0.875, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.088157899677799995, \n        0.75, \n        0.088157899677799995, \n        0.791666984558, \n        0.0112853003666, \n        0.791666984558, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.088157899677799995, \n        0.666666984558, \n        0.088157899677799995, \n        0.708333015442, \n        0.0112853003666, \n        0.708333015442, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.088157899677799995, \n        0.583333015442, \n        0.088157899677799995, \n        0.625, \n        0.0112853003666, \n        0.625, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.088157899677799995, \n        0.5, \n        0.088157899677799995, \n        0.541666984558, \n        0.0112853003666, \n        0.541666984558, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.0112853003666, \n        0.45833298564000002, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.088157899677799995, \n        0.375, \n        0.0112853003666, \n        0.375, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.088157899677799995, \n        0.25, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.0112853003666, \n        0.29166701435999998, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.0112853003666, \n        0.20833300054100001, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.088157899677799995, \n        0.083333298564, \n        0.088157899677799995, \n        0.125, \n        0.0112853003666, \n        0.125, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.083333298564, \n        0.24190300703000001, \n        0.125, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.088157899677799995, \n        0.0, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.0112853003666, \n        0.041666600853200002, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.088157899677799995, \n        0.916666984558, \n        0.088157899677799995, \n        0.958333015442, \n        0.0112853003666, \n        0.958333015442, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.088157899677799995, \n        0.833333015442, \n        0.088157899677799995, \n        0.875, \n        0.0112853003666, \n        0.875, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.088157899677799995, \n        0.75, \n        0.088157899677799995, \n        0.791666984558, \n        0.0112853003666, \n        0.791666984558, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.088157899677799995, \n        0.666666984558, \n        0.088157899677799995, \n        0.708333015442, \n        0.0112853003666, \n        0.708333015442, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.088157899677799995, \n        0.583333015442, \n        0.088157899677799995, \n        0.625, \n        0.0112853003666, \n        0.625, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.088157899677799995, \n        0.5, \n        0.088157899677799995, \n        0.541666984558, \n        0.0112853003666, \n        0.541666984558, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.0112853003666, \n        0.45833298564000002, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.088157899677799995, \n        0.375, \n        0.0112853003666, \n        0.375, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.088157899677799995, \n        0.25, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.0112853003666, \n        0.29166701435999998, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.0112853003666, \n        0.20833300054100001, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.088157899677799995, \n        0.083333298564, \n        0.088157899677799995, \n        0.125, \n        0.0112853003666, \n        0.125, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.083333298564, \n        0.24190300703000001, \n        0.125, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.088157899677799995, \n        0.0, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.0112853003666, \n        0.041666600853200002, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.088157899677799995, \n        0.916666984558, \n        0.088157899677799995, \n        0.958333015442, \n        0.0112853003666, \n        0.958333015442, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.088157899677799995, \n        0.833333015442, \n        0.088157899677799995, \n        0.875, \n        0.0112853003666, \n        0.875, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.088157899677799995, \n        0.75, \n        0.088157899677799995, \n        0.791666984558, \n        0.0112853003666, \n        0.791666984558, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.088157899677799995, \n        0.666666984558, \n        0.088157899677799995, \n        0.708333015442, \n        0.0112853003666, \n        0.708333015442, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.088157899677799995, \n        0.583333015442, \n        0.088157899677799995, \n        0.625, \n        0.0112853003666, \n        0.625, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.088157899677799995, \n        0.5, \n        0.088157899677799995, \n        0.541666984558, \n        0.0112853003666, \n        0.541666984558, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.0112853003666, \n        0.45833298564000002, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.088157899677799995, \n        0.375, \n        0.0112853003666, \n        0.375, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.088157899677799995, \n        0.25, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.0112853003666, \n        0.29166701435999998, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.0112853003666, \n        0.20833300054100001, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.088157899677799995, \n        0.083333298564, \n        0.088157899677799995, \n        0.125, \n        0.0112853003666, \n        0.125, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.083333298564, \n        0.24190300703000001, \n        0.125, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.088157899677799995, \n        0.0, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.0112853003666, \n        0.041666600853200002, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.088157899677799995, \n        0.916666984558, \n        0.088157899677799995, \n        0.958333015442, \n        0.0112853003666, \n        0.958333015442, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.088157899677799995, \n        0.833333015442, \n        0.088157899677799995, \n        0.875, \n        0.0112853003666, \n        0.875, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.088157899677799995, \n        0.75, \n        0.088157899677799995, \n        0.791666984558, \n        0.0112853003666, \n        0.791666984558, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.088157899677799995, \n        0.666666984558, \n        0.088157899677799995, \n        0.708333015442, \n        0.0112853003666, \n        0.708333015442, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.088157899677799995, \n        0.583333015442, \n        0.088157899677799995, \n        0.625, \n        0.0112853003666, \n        0.625, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.088157899677799995, \n        0.5, \n        0.088157899677799995, \n        0.541666984558, \n        0.0112853003666, \n        0.541666984558, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.0112853003666, \n        0.45833298564000002, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.088157899677799995, \n        0.375, \n        0.0112853003666, \n        0.375, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.088157899677799995, \n        0.25, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.0112853003666, \n        0.29166701435999998, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.0112853003666, \n        0.20833300054100001, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.088157899677799995, \n        0.083333298564, \n        0.088157899677799995, \n        0.125, \n        0.0112853003666, \n        0.125, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.083333298564, \n        0.24190300703000001, \n        0.125, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.088157899677799995, \n        0.0, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.0112853003666, \n        0.041666600853200002, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0112853003666, \n        0.916666984558, \n        0.0112853003666, \n        0.958333015442, \n        0.088157899677799995, \n        0.958333015442, \n        0.088157899677799995, \n        0.916666984558, \n        0.0112853003666, \n        1.0, \n        0.088157899677799995, \n        1.0, \n        0.165030002594, \n        1.0, \n        0.165030002594, \n        0.958333015442, \n        0.165030002594, \n        0.916666984558, \n        0.24190300703000001, \n        0.958333015442, \n        0.24190300703000001, \n        0.916666984558, \n        0.24190300703000001, \n        1.0, \n        0.31877601146700002, \n        1.0, \n        0.31877601146700002, \n        0.958333015442, \n        0.31877601146700002, \n        0.916666984558, \n        0.0112853003666, \n        0.833333015442, \n        0.0112853003666, \n        0.875, \n        0.088157899677799995, \n        0.875, \n        0.088157899677799995, \n        0.833333015442, \n        0.165030002594, \n        0.875, \n        0.165030002594, \n        0.833333015442, \n        0.24190300703000001, \n        0.875, \n        0.24190300703000001, \n        0.833333015442, \n        0.31877601146700002, \n        0.875, \n        0.31877601146700002, \n        0.833333015442, \n        0.0112853003666, \n        0.75, \n        0.0112853003666, \n        0.791666984558, \n        0.088157899677799995, \n        0.791666984558, \n        0.088157899677799995, \n        0.75, \n        0.165030002594, \n        0.791666984558, \n        0.165030002594, \n        0.75, \n        0.24190300703000001, \n        0.791666984558, \n        0.24190300703000001, \n        0.75, \n        0.31877601146700002, \n        0.791666984558, \n        0.31877601146700002, \n        0.75, \n        0.0112853003666, \n        0.666666984558, \n        0.0112853003666, \n        0.708333015442, \n        0.088157899677799995, \n        0.708333015442, \n        0.088157899677799995, \n        0.666666984558, \n        0.165030002594, \n        0.708333015442, \n        0.165030002594, \n        0.666666984558, \n        0.24190300703000001, \n        0.708333015442, \n        0.24190300703000001, \n        0.666666984558, \n        0.31877601146700002, \n        0.708333015442, \n        0.31877601146700002, \n        0.666666984558, \n        0.0112853003666, \n        0.583333015442, \n        0.0112853003666, \n        0.625, \n        0.088157899677799995, \n        0.625, \n        0.088157899677799995, \n        0.583333015442, \n        0.165030002594, \n        0.625, \n        0.165030002594, \n        0.583333015442, \n        0.24190300703000001, \n        0.625, \n        0.24190300703000001, \n        0.583333015442, \n        0.31877601146700002, \n        0.625, \n        0.31877601146700002, \n        0.583333015442, \n        0.0112853003666, \n        0.5, \n        0.0112853003666, \n        0.541666984558, \n        0.088157899677799995, \n        0.541666984558, \n        0.088157899677799995, \n        0.5, \n        0.165030002594, \n        0.541666984558, \n        0.165030002594, \n        0.5, \n        0.24190300703000001, \n        0.541666984558, \n        0.24190300703000001, \n        0.5, \n        0.31877601146700002, \n        0.541666984558, \n        0.31877601146700002, \n        0.5, \n        0.0112853003666, \n        0.41666701435999998, \n        0.0112853003666, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.45833298564000002, \n        0.088157899677799995, \n        0.41666701435999998, \n        0.165030002594, \n        0.45833298564000002, \n        0.165030002594, \n        0.41666701435999998, \n        0.24190300703000001, \n        0.45833298564000002, \n        0.24190300703000001, \n        0.41666701435999998, \n        0.31877601146700002, \n        0.45833298564000002, \n        0.31877601146700002, \n        0.41666701435999998, \n        0.0112853003666, \n        0.33333298564000002, \n        0.0112853003666, \n        0.375, \n        0.088157899677799995, \n        0.375, \n        0.088157899677799995, \n        0.33333298564000002, \n        0.165030002594, \n        0.375, \n        0.165030002594, \n        0.33333298564000002, \n        0.24190300703000001, \n        0.375, \n        0.24190300703000001, \n        0.33333298564000002, \n        0.31877601146700002, \n        0.375, \n        0.31877601146700002, \n        0.33333298564000002, \n        0.0112853003666, \n        0.25, \n        0.0112853003666, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.29166701435999998, \n        0.088157899677799995, \n        0.25, \n        0.165030002594, \n        0.29166701435999998, \n        0.165030002594, \n        0.25, \n        0.24190300703000001, \n        0.29166701435999998, \n        0.24190300703000001, \n        0.25, \n        0.31877601146700002, \n        0.29166701435999998, \n        0.31877601146700002, \n        0.25, \n        0.0112853003666, \n        0.16666699945899999, \n        0.0112853003666, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.20833300054100001, \n        0.088157899677799995, \n        0.16666699945899999, \n        0.165030002594, \n        0.20833300054100001, \n        0.165030002594, \n        0.16666699945899999, \n        0.24190300703000001, \n        0.20833300054100001, \n        0.24190300703000001, \n        0.16666699945899999, \n        0.31877601146700002, \n        0.20833300054100001, \n        0.31877601146700002, \n        0.16666699945899999, \n        0.0112853003666, \n        0.083333298564, \n        0.0112853003666, \n        0.125, \n        0.088157899677799995, \n        0.125, \n        0.088157899677799995, \n        0.083333298564, \n        0.165030002594, \n        0.125, \n        0.165030002594, \n        0.083333402872100004, \n        0.24190300703000001, \n        0.125, \n        0.24190300703000001, \n        0.083333298564, \n        0.31877601146700002, \n        0.125, \n        0.31877601146700002, \n        0.083333298564, \n        0.0112853003666, \n        0.0, \n        0.0112853003666, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.041666600853200002, \n        0.088157899677799995, \n        0.0, \n        0.165030002594, \n        0.041666600853200002, \n        0.165030002594, \n        0.0, \n        0.24190300703000001, \n        0.041666600853200002, \n        0.24190300703000001, \n        0.0, \n        0.31877601146700002, \n        0.041666600853200002, \n        0.31877601146700002, \n        0.0, \n        0.0, \n        0.916666984558, \n        0.125, \n        0.916666984558, \n        0.125, \n        0.958333015442, \n        0.0, \n        0.958333015442, \n        0.0, \n        1.0, \n        0.125, \n        1.0, \n        0.25, \n        1.0, \n        0.25, \n        0.958333015442, \n        0.25, \n        0.916666984558, \n        0.375, \n        0.916666984558, \n        0.375, \n        0.958333015442, \n        0.375, \n        1.0, \n        0.5, \n        1.0, \n        0.5, \n        0.958333015442, \n        0.5, \n        0.916666984558, \n        0.625, \n        0.916666984558, \n        0.625, \n        0.958333015442, \n        0.625, \n        1.0, \n        0.75, \n        1.0, \n        0.75, \n        0.958333015442, \n        0.75, \n        0.916666984558, \n        0.875, \n        0.916666984558, \n        0.875, \n        0.958333015442, \n        0.875, \n        1.0, \n        1.0, \n        1.0, \n        1.0, \n        0.958333015442, \n        1.0, \n        0.916666984558, \n        0.0, \n        0.833333015442, \n        0.125, \n        0.833333015442, \n        0.125, \n        0.875, \n        0.0, \n        0.875, \n        0.25, \n        0.875, \n        0.25, \n        0.833333015442, \n        0.375, \n        0.833333015442, \n        0.375, \n        0.875, \n        0.5, \n        0.875, \n        0.5, \n        0.833333015442, \n        0.625, \n        0.833333015442, \n        0.625, \n        0.875, \n        0.75, \n        0.875, \n        0.75, \n        0.833333015442, \n        0.875, \n        0.833333015442, \n        0.875, \n        0.875, \n        1.0, \n        0.875, \n        1.0, \n        0.833333015442, \n        0.0, \n        0.75, \n        0.125, \n        0.75, \n        0.125, \n        0.791666984558, \n        0.0, \n        0.791666984558, \n        0.25, \n        0.791666984558, \n        0.25, \n        0.75, \n        0.375, \n        0.75, \n        0.375, \n        0.791666984558, \n        0.5, \n        0.791666984558, \n        0.5, \n        0.75, \n        0.625, \n        0.75, \n        0.625, \n        0.791666984558, \n        0.75, \n        0.791666984558, \n        0.75, \n        0.75, \n        0.875, \n        0.75, \n        0.875, \n        0.791666984558, \n        1.0, \n        0.791666984558, \n        1.0, \n        0.75, \n        0.0, \n        0.666666984558, \n        0.125, \n        0.666666984558, \n        0.125, \n        0.708333015442, \n        0.0, \n        0.708333015442, \n        0.25, \n        0.708333015442, \n        0.25, \n        0.666666984558, \n        0.375, \n        0.666666984558, \n        0.375, \n        0.708333015442, \n        0.5, \n        0.708333015442, \n        0.5, \n        0.666666984558, \n        0.625, \n        0.666666984558, \n        0.625, \n        0.708333015442, \n        0.75, \n        0.708333015442, \n        0.75, \n        0.666666984558, \n        0.875, \n        0.666666984558, \n        0.875, \n        0.708333015442, \n        1.0, \n        0.708333015442, \n        1.0, \n        0.666666984558, \n        0.0, \n        0.583333015442, \n        0.125, \n        0.583333015442, \n        0.125, \n        0.625, \n        0.0, \n        0.625, \n        0.25, \n        0.625, \n        0.25, \n        0.583333015442, \n        0.375, \n        0.583333015442, \n        0.375, \n        0.625, \n        0.5, \n        0.625, \n        0.5, \n        0.583333015442, \n        0.625, \n        0.583333015442, \n        0.625, \n        0.625, \n        0.75, \n        0.625, \n        0.75, \n        0.583333015442, \n        0.875, \n        0.583333015442, \n        0.875, \n        0.625, \n        1.0, \n        0.625, \n        1.0, \n        0.583333015442, \n        0.0, \n        0.5, \n        0.125, \n        0.5, \n        0.125, \n        0.541666984558, \n        0.0, \n        0.541666984558, \n        0.25, \n        0.541666984558, \n        0.25, \n        0.5, \n        0.375, \n        0.5, \n        0.375, \n        0.541666984558, \n        0.5, \n        0.541666984558, \n        0.5, \n        0.5, \n        0.625, \n        0.5, \n        0.625, \n        0.541666984558, \n        0.75, \n        0.541666984558, \n        0.75, \n        0.5, \n        0.875, \n        0.5, \n        0.875, \n        0.541666984558, \n        1.0, \n        0.541666984558, \n        1.0, \n        0.5, \n        0.0, \n        0.41666701435999998, \n        0.125, \n        0.41666701435999998, \n        0.125, \n        0.45833298564000002, \n        0.0, \n        0.45833298564000002, \n        0.25, \n        0.45833298564000002, \n        0.25, \n        0.41666701435999998, \n        0.375, \n        0.41666701435999998, \n        0.375, \n        0.45833298564000002, \n        0.5, \n        0.45833298564000002, \n        0.5, \n        0.41666701435999998, \n        0.625, \n        0.41666701435999998, \n        0.625, \n        0.45833298564000002, \n        0.75, \n        0.45833298564000002, \n        0.75, \n        0.41666701435999998, \n        0.875, \n        0.41666701435999998, \n        0.875, \n        0.45833298564000002, \n        1.0, \n        0.45833298564000002, \n        1.0, \n        0.41666701435999998, \n        0.0, \n        0.33333298564000002, \n        0.125, \n        0.33333298564000002, \n        0.125, \n        0.375, \n        0.0, \n        0.375, \n        0.25, \n        0.375, \n        0.25, \n        0.33333298564000002, \n        0.375, \n        0.33333298564000002, \n        0.375, \n        0.375, \n        0.5, \n        0.375, \n        0.5, \n        0.33333298564000002, \n        0.625, \n        0.33333298564000002, \n        0.625, \n        0.375, \n        0.75, \n        0.375, \n        0.75, \n        0.33333298564000002, \n        0.875, \n        0.33333298564000002, \n        0.875, \n        0.375, \n        1.0, \n        0.375, \n        1.0, \n        0.33333298564000002, \n        0.0, \n        0.25, \n        0.125, \n        0.25, \n        0.125, \n        0.29166701435999998, \n        0.0, \n        0.29166701435999998, \n        0.25, \n        0.29166701435999998, \n        0.25, \n        0.25, \n        0.375, \n        0.25, \n        0.375, \n        0.29166701435999998, \n        0.5, \n        0.29166701435999998, \n        0.5, \n        0.25, \n        0.625, \n        0.25, \n        0.625, \n        0.29166701435999998, \n        0.75, \n        0.29166701435999998, \n        0.75, \n        0.25, \n        0.875, \n        0.25, \n        0.875, \n        0.29166701435999998, \n        1.0, \n        0.29166701435999998, \n        1.0, \n        0.25, \n        0.0, \n        0.16666699945899999, \n        0.125, \n        0.16666699945899999, \n        0.125, \n        0.20833300054100001, \n        0.0, \n        0.20833300054100001, \n        0.25, \n        0.20833300054100001, \n        0.25, \n        0.16666699945899999, \n        0.375, \n        0.16666699945899999, \n        0.375, \n        0.20833300054100001, \n        0.5, \n        0.20833300054100001, \n        0.5, \n        0.16666699945899999, \n        0.625, \n        0.16666699945899999, \n        0.625, \n        0.20833300054100001, \n        0.75, \n        0.20833300054100001, \n        0.75, \n        0.16666699945899999, \n        0.875, \n        0.16666699945899999, \n        0.875, \n        0.20833300054100001, \n        1.0, \n        0.20833300054100001, \n        1.0, \n        0.16666699945899999, \n        0.0, \n        0.083333298564, \n        0.125, \n        0.083333298564, \n        0.125, \n        0.125, \n        0.0, \n        0.125, \n        0.25, \n        0.125, \n        0.25, \n        0.083333402872100004, \n        0.375, \n        0.083333298564, \n        0.375, \n        0.125, \n        0.5, \n        0.125, \n        0.5, \n        0.083333402872100004, \n        0.625, \n        0.083333298564, \n        0.625, \n        0.125, \n        0.75, \n        0.125, \n        0.75, \n        0.083333402872100004, \n        0.875, \n        0.083333298564, \n        0.875, \n        0.125, \n        1.0, \n        0.125, \n        1.0, \n        0.083333298564, \n        0.0, \n        0.0, \n        0.125, \n        0.0, \n        0.125, \n        0.041666600853200002, \n        0.0, \n        0.041666600853200002, \n        0.25, \n        0.041666600853200002, \n        0.25, \n        0.0, \n        0.375, \n        0.0, \n        0.375, \n        0.041666600853200002, \n        0.5, \n        0.041666600853200002, \n        0.5, \n        0.0, \n        0.625, \n        0.0, \n        0.625, \n        0.041666600853200002, \n        0.75, \n        0.041666600853200002, \n        0.75, \n        0.0, \n        0.875, \n        0.0, \n        0.875, \n        0.041666600853200002, \n        1.0, \n        0.041666600853200002, \n        1.0, \n        0.0\n    ]\n}\n"
  },
  {
    "path": "testdata/nested.json",
    "content": "[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]"
  },
  {
    "path": "testdata/svg_menu.json",
    "content": "{\"menu\": {\n    \"header\": \"SVG Viewer\",\n    \"items\": [\n        {\"id\": \"Open\"},\n        {\"id\": \"OpenNew\", \"label\": \"Open New\"},\n        null,\n        {\"id\": \"ZoomIn\", \"label\": \"Zoom In\"},\n        {\"id\": \"ZoomOut\", \"label\": \"Zoom Out\"},\n        {\"id\": \"OriginalView\", \"label\": \"Original View\"},\n        null,\n        {\"id\": \"Quality\"},\n        {\"id\": \"Pause\"},\n        {\"id\": \"Mute\"},\n        null,\n        {\"id\": \"Find\", \"label\": \"Find...\"},\n        {\"id\": \"FindAgain\", \"label\": \"Find Again\"},\n        {\"id\": \"Copy\"},\n        {\"id\": \"CopyAgain\", \"label\": \"Copy Again\"},\n        {\"id\": \"CopySVG\", \"label\": \"Copy SVG\"},\n        {\"id\": \"ViewSVG\", \"label\": \"View SVG\"},\n        {\"id\": \"ViewSource\", \"label\": \"View Source\"},\n        {\"id\": \"SaveAs\", \"label\": \"Save As\"},\n        null,\n        {\"id\": \"Help\"},\n        {\"id\": \"About\", \"label\": \"About Adobe CVG Viewer...\"}\n    ]\n}}\n"
  },
  {
    "path": "testdata/truenull.json",
    "content": "[true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null, true, null]"
  },
  {
    "path": "testdata/twitter.json",
    "content": "{\n  \"statuses\": [\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:15 +0000 2014\",\n      \"id\": 505874924095815700,\n      \"id_str\": \"505874924095815681\",\n      \"text\": \"@aym0566x \\n\\n名前:前田あゆみ\\n第一印象:なんか怖っ！\\n今の印象:とりあえずキモい。噛み合わない\\n好きなところ:ぶすでキモいとこ😋✨✨\\n思い出:んーーー、ありすぎ😊❤️\\nLINE交換できる？:あぁ……ごめん✋\\nトプ画をみて:照れますがな😘✨\\n一言:お前は一生もんのダチ💖\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": 866260188,\n      \"in_reply_to_user_id_str\": \"866260188\",\n      \"in_reply_to_screen_name\": \"aym0566x\",\n      \"user\": {\n        \"id\": 1186275104,\n        \"id_str\": \"1186275104\",\n        \"name\": \"AYUMI\",\n        \"screen_name\": \"ayuu0123\",\n        \"location\": \"\",\n        \"description\": \"元野球部マネージャー❤︎…最高の夏をありがとう…❤︎\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 262,\n        \"friends_count\": 252,\n        \"listed_count\": 0,\n        \"created_at\": \"Sat Feb 16 13:40:25 +0000 2013\",\n        \"favourites_count\": 235,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 1769,\n        \"lang\": \"en\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/497760886795153410/LDjAwR_y_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/497760886795153410/LDjAwR_y_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1186275104/1409318784\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"aym0566x\",\n            \"name\": \"前田あゆみ\",\n            \"id\": 866260188,\n            \"id_str\": \"866260188\",\n            \"indices\": [\n              0,\n              9\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:14 +0000 2014\",\n      \"id\": 505874922023837700,\n      \"id_str\": \"505874922023837696\",\n      \"text\": \"RT @KATANA77: えっそれは・・・（一同） http://t.co/PkCJAcSuYK\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 903487807,\n        \"id_str\": \"903487807\",\n        \"name\": \"RT&ファボ魔のむっつんさっm\",\n        \"screen_name\": \"yuttari1998\",\n        \"location\": \"関西    ↓詳しいプロ↓\",\n        \"description\": \"無言フォローはあまり好みません ゲームと動画が好きですシモ野郎ですがよろしく…最近はMGSとブレイブルー、音ゲーをプレイしてます\",\n        \"url\": \"http://t.co/Yg9e1Fl8wd\",\n        \"entities\": {\n          \"url\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/Yg9e1Fl8wd\",\n                \"expanded_url\": \"http://twpf.jp/yuttari1998\",\n                \"display_url\": \"twpf.jp/yuttari1998\",\n                \"indices\": [\n                  0,\n                  22\n                ]\n              }\n            ]\n          },\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 95,\n        \"friends_count\": 158,\n        \"listed_count\": 1,\n        \"created_at\": \"Thu Oct 25 08:27:13 +0000 2012\",\n        \"favourites_count\": 3652,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 10276,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/500268849275494400/AoXHZ7Ij_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/500268849275494400/AoXHZ7Ij_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/903487807/1409062272\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sat Aug 30 23:49:35 +0000 2014\",\n        \"id\": 505864943636197400,\n        \"id_str\": \"505864943636197376\",\n        \"text\": \"えっそれは・・・（一同） http://t.co/PkCJAcSuYK\",\n        \"source\": \"<a href=\\\"http://twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 77915997,\n          \"id_str\": \"77915997\",\n          \"name\": \"(有)刀\",\n          \"screen_name\": \"KATANA77\",\n          \"location\": \"\",\n          \"description\": \"プリキュア好きのサラリーマンです。好きなプリキュアシリーズはハートキャッチ、最愛のキャラクターは月影ゆりさんです。 http://t.co/QMLJeFmfMTご質問、お問い合わせはこちら http://t.co/LU8T7vmU3h\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": [\n                {\n                  \"url\": \"http://t.co/QMLJeFmfMT\",\n                  \"expanded_url\": \"http://www.pixiv.net/member.php?id=4776\",\n                  \"display_url\": \"pixiv.net/member.php?id=…\",\n                  \"indices\": [\n                    58,\n                    80\n                  ]\n                },\n                {\n                  \"url\": \"http://t.co/LU8T7vmU3h\",\n                  \"expanded_url\": \"http://ask.fm/KATANA77\",\n                  \"display_url\": \"ask.fm/KATANA77\",\n                  \"indices\": [\n                    95,\n                    117\n                  ]\n                }\n              ]\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 1095,\n          \"friends_count\": 740,\n          \"listed_count\": 50,\n          \"created_at\": \"Mon Sep 28 03:41:27 +0000 2009\",\n          \"favourites_count\": 3741,\n          \"utc_offset\": 32400,\n          \"time_zone\": \"Tokyo\",\n          \"geo_enabled\": true,\n          \"verified\": false,\n          \"statuses_count\": 19059,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/808597451/45b82f887085d32bd4b87dfc348fe22a.png\",\n          \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/808597451/45b82f887085d32bd4b87dfc348fe22a.png\",\n          \"profile_background_tile\": true,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/480210114964504577/MjVIEMS4_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/480210114964504577/MjVIEMS4_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/77915997/1404661392\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"FFFFFF\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": false,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 82,\n        \"favorite_count\": 42,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": [],\n          \"media\": [\n            {\n              \"id\": 505864942575034400,\n              \"id_str\": \"505864942575034369\",\n              \"indices\": [\n                13,\n                35\n              ],\n              \"media_url\": \"http://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg\",\n              \"media_url_https\": \"https://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg\",\n              \"url\": \"http://t.co/PkCJAcSuYK\",\n              \"display_url\": \"pic.twitter.com/PkCJAcSuYK\",\n              \"expanded_url\": \"http://twitter.com/KATANA77/status/505864943636197376/photo/1\",\n              \"type\": \"photo\",\n              \"sizes\": {\n                \"medium\": {\n                  \"w\": 600,\n                  \"h\": 338,\n                  \"resize\": \"fit\"\n                },\n                \"small\": {\n                  \"w\": 340,\n                  \"h\": 192,\n                  \"resize\": \"fit\"\n                },\n                \"thumb\": {\n                  \"w\": 150,\n                  \"h\": 150,\n                  \"resize\": \"crop\"\n                },\n                \"large\": {\n                  \"w\": 765,\n                  \"h\": 432,\n                  \"resize\": \"fit\"\n                }\n              }\n            }\n          ]\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"possibly_sensitive\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 82,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"KATANA77\",\n            \"name\": \"(有)刀\",\n            \"id\": 77915997,\n            \"id_str\": \"77915997\",\n            \"indices\": [\n              3,\n              12\n            ]\n          }\n        ],\n        \"media\": [\n          {\n            \"id\": 505864942575034400,\n            \"id_str\": \"505864942575034369\",\n            \"indices\": [\n              27,\n              49\n            ],\n            \"media_url\": \"http://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg\",\n            \"media_url_https\": \"https://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg\",\n            \"url\": \"http://t.co/PkCJAcSuYK\",\n            \"display_url\": \"pic.twitter.com/PkCJAcSuYK\",\n            \"expanded_url\": \"http://twitter.com/KATANA77/status/505864943636197376/photo/1\",\n            \"type\": \"photo\",\n            \"sizes\": {\n              \"medium\": {\n                \"w\": 600,\n                \"h\": 338,\n                \"resize\": \"fit\"\n              },\n              \"small\": {\n                \"w\": 340,\n                \"h\": 192,\n                \"resize\": \"fit\"\n              },\n              \"thumb\": {\n                \"w\": 150,\n                \"h\": 150,\n                \"resize\": \"crop\"\n              },\n              \"large\": {\n                \"w\": 765,\n                \"h\": 432,\n                \"resize\": \"fit\"\n              }\n            },\n            \"source_status_id\": 505864943636197400,\n            \"source_status_id_str\": \"505864943636197376\"\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:14 +0000 2014\",\n      \"id\": 505874920140591100,\n      \"id_str\": \"505874920140591104\",\n      \"text\": \"@longhairxMIURA 朝一ライカス辛目だよw\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": 505874728897085440,\n      \"in_reply_to_status_id_str\": \"505874728897085440\",\n      \"in_reply_to_user_id\": 114188950,\n      \"in_reply_to_user_id_str\": \"114188950\",\n      \"in_reply_to_screen_name\": \"longhairxMIURA\",\n      \"user\": {\n        \"id\": 114786346,\n        \"id_str\": \"114786346\",\n        \"name\": \"PROTECT-T\",\n        \"screen_name\": \"ttm_protect\",\n        \"location\": \"静岡県長泉町\",\n        \"description\": \"24 / XXX / @andprotector / @lifefocus0545 potato design works\",\n        \"url\": \"http://t.co/5EclbQiRX4\",\n        \"entities\": {\n          \"url\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/5EclbQiRX4\",\n                \"expanded_url\": \"http://ap.furtherplatonix.net/index.html\",\n                \"display_url\": \"ap.furtherplatonix.net/index.html\",\n                \"indices\": [\n                  0,\n                  22\n                ]\n              }\n            ]\n          },\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 1387,\n        \"friends_count\": 903,\n        \"listed_count\": 25,\n        \"created_at\": \"Tue Feb 16 16:13:41 +0000 2010\",\n        \"favourites_count\": 492,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Osaka\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 12679,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/481360383253295104/4B9Rcfys_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/481360383253295104/4B9Rcfys_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/114786346/1403600232\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"longhairxMIURA\",\n            \"name\": \"miura desu\",\n            \"id\": 114188950,\n            \"id_str\": \"114188950\",\n            \"indices\": [\n              0,\n              15\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:14 +0000 2014\",\n      \"id\": 505874919020699650,\n      \"id_str\": \"505874919020699648\",\n      \"text\": \"RT @omo_kko: ラウワン脱出→友達が家に連んで帰ってって言うから友達ん家に乗せて帰る(1度も行ったことない田舎道)→友達おろして迷子→500メートルくらい続く変な一本道進む→墓地で行き止まりでUターン出来ずバックで500メートル元のところまで進まないといけない←今ここ\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 392585658,\n        \"id_str\": \"392585658\",\n        \"name\": \"原稿\",\n        \"screen_name\": \"chibu4267\",\n        \"location\": \"キミの部屋の燃えるゴミ箱\",\n        \"description\": \"RTしてTLに濁流を起こすからフォローしない方が良いよ 言ってることもつまらないし 詳細→http://t.co/ANSFlYXERJ 相方@1life_5106_hshd 葛西教徒その壱\",\n        \"url\": \"http://t.co/JTFjV89eaN\",\n        \"entities\": {\n          \"url\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/JTFjV89eaN\",\n                \"expanded_url\": \"http://www.pixiv.net/member.php?id=1778417\",\n                \"display_url\": \"pixiv.net/member.php?id=…\",\n                \"indices\": [\n                  0,\n                  22\n                ]\n              }\n            ]\n          },\n          \"description\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/ANSFlYXERJ\",\n                \"expanded_url\": \"http://twpf.jp/chibu4267\",\n                \"display_url\": \"twpf.jp/chibu4267\",\n                \"indices\": [\n                  45,\n                  67\n                ]\n              }\n            ]\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 1324,\n        \"friends_count\": 1165,\n        \"listed_count\": 99,\n        \"created_at\": \"Mon Oct 17 08:23:46 +0000 2011\",\n        \"favourites_count\": 9542,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Tokyo\",\n        \"geo_enabled\": true,\n        \"verified\": false,\n        \"statuses_count\": 369420,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/453106940822814720/PcJIZv43.png\",\n        \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/453106940822814720/PcJIZv43.png\",\n        \"profile_background_tile\": true,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/505731759216943107/pzhnkMEg_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/505731759216943107/pzhnkMEg_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/392585658/1362383911\",\n        \"profile_link_color\": \"5EB9FF\",\n        \"profile_sidebar_border_color\": \"FFFFFF\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sat Aug 30 16:51:09 +0000 2014\",\n        \"id\": 505759640164892700,\n        \"id_str\": \"505759640164892673\",\n        \"text\": \"ラウワン脱出→友達が家に連んで帰ってって言うから友達ん家に乗せて帰る(1度も行ったことない田舎道)→友達おろして迷子→500メートルくらい続く変な一本道進む→墓地で行き止まりでUターン出来ずバックで500メートル元のところまで進まないといけない←今ここ\",\n        \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 309565423,\n          \"id_str\": \"309565423\",\n          \"name\": \"おもっこ\",\n          \"screen_name\": \"omo_kko\",\n          \"location\": \"\",\n          \"description\": \"ぱんすと\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 730,\n          \"friends_count\": 200,\n          \"listed_count\": 23,\n          \"created_at\": \"Thu Jun 02 09:15:51 +0000 2011\",\n          \"favourites_count\": 5441,\n          \"utc_offset\": 32400,\n          \"time_zone\": \"Tokyo\",\n          \"geo_enabled\": true,\n          \"verified\": false,\n          \"statuses_count\": 30012,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/499126939378929664/GLWpIKTW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/499126939378929664/GLWpIKTW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/309565423/1409418370\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 67,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"omo_kko\",\n            \"name\": \"おもっこ\",\n            \"id\": 309565423,\n            \"id_str\": \"309565423\",\n            \"indices\": [\n              3,\n              11\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:13 +0000 2014\",\n      \"id\": 505874918198624260,\n      \"id_str\": \"505874918198624256\",\n      \"text\": \"RT @thsc782_407: #LEDカツカツ選手権\\n漢字一文字ぶんのスペースに「ハウステンボス」を収める狂気 http://t.co/vmrreDMziI\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 753161754,\n        \"id_str\": \"753161754\",\n        \"name\": \"ねこねこみかん＊\",\n        \"screen_name\": \"nekonekomikan\",\n        \"location\": \"ソーダ水のあふれるビンの中\",\n        \"description\": \"猫×6、大学・高校・旦那各1と暮らしています。猫、子供、日常思った事をつぶやいています／今年の目標：読書、庭の手入れ、ランニング、手芸／猫＊花＊写真＊詩＊林ももこさん＊鉄道など好きな方をフォローさせていただいています。よろしくお願いします♬\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 217,\n        \"friends_count\": 258,\n        \"listed_count\": 8,\n        \"created_at\": \"Sun Aug 12 14:00:47 +0000 2012\",\n        \"favourites_count\": 7650,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Tokyo\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 20621,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/470627990271848448/m83uy6Vc_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/470627990271848448/m83uy6Vc_normal.jpeg\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Fri Feb 28 16:04:13 +0000 2014\",\n        \"id\": 439430848190742500,\n        \"id_str\": \"439430848190742528\",\n        \"text\": \"#LEDカツカツ選手権\\n漢字一文字ぶんのスペースに「ハウステンボス」を収める狂気 http://t.co/vmrreDMziI\",\n        \"source\": \"<a href=\\\"http://twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 82900665,\n          \"id_str\": \"82900665\",\n          \"name\": \"[90]青葉台  芦 (第二粟屋) 屋\",\n          \"screen_name\": \"thsc782_407\",\n          \"location\": \"かんましき\",\n          \"description\": \"湯の街の元勃酩姦なんちゃら大　赤い犬の犬（外資系）　肥後で緑ナンバー屋さん勤め\\nくだらないことしかつぶやかないし、いちいち訳のわからない記号を連呼するので相当邪魔になると思います。害はないと思います。のりものの画像とかたくさん上げます。さみしい。車輪のついたものならだいたい好き。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 587,\n          \"friends_count\": 623,\n          \"listed_count\": 30,\n          \"created_at\": \"Fri Oct 16 15:13:32 +0000 2009\",\n          \"favourites_count\": 1405,\n          \"utc_offset\": 32400,\n          \"time_zone\": \"Tokyo\",\n          \"geo_enabled\": true,\n          \"verified\": false,\n          \"statuses_count\": 60427,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"352726\",\n          \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/154137819/__813-1103.jpg\",\n          \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/154137819/__813-1103.jpg\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/493760276676620289/32oLiTtT_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/493760276676620289/32oLiTtT_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/82900665/1398865798\",\n          \"profile_link_color\": \"D02B55\",\n          \"profile_sidebar_border_color\": \"829D5E\",\n          \"profile_sidebar_fill_color\": \"99CC33\",\n          \"profile_text_color\": \"3E4415\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": false,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 3291,\n        \"favorite_count\": 1526,\n        \"entities\": {\n          \"hashtags\": [\n            {\n              \"text\": \"LEDカツカツ選手権\",\n              \"indices\": [\n                0,\n                11\n              ]\n            }\n          ],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": [],\n          \"media\": [\n            {\n              \"id\": 439430848194936800,\n              \"id_str\": \"439430848194936832\",\n              \"indices\": [\n                41,\n                63\n              ],\n              \"media_url\": \"http://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg\",\n              \"media_url_https\": \"https://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg\",\n              \"url\": \"http://t.co/vmrreDMziI\",\n              \"display_url\": \"pic.twitter.com/vmrreDMziI\",\n              \"expanded_url\": \"http://twitter.com/thsc782_407/status/439430848190742528/photo/1\",\n              \"type\": \"photo\",\n              \"sizes\": {\n                \"medium\": {\n                  \"w\": 600,\n                  \"h\": 450,\n                  \"resize\": \"fit\"\n                },\n                \"large\": {\n                  \"w\": 1024,\n                  \"h\": 768,\n                  \"resize\": \"fit\"\n                },\n                \"thumb\": {\n                  \"w\": 150,\n                  \"h\": 150,\n                  \"resize\": \"crop\"\n                },\n                \"small\": {\n                  \"w\": 340,\n                  \"h\": 255,\n                  \"resize\": \"fit\"\n                }\n              }\n            }\n          ]\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"possibly_sensitive\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 3291,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [\n          {\n            \"text\": \"LEDカツカツ選手権\",\n            \"indices\": [\n              17,\n              28\n            ]\n          }\n        ],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"thsc782_407\",\n            \"name\": \"[90]青葉台  芦 (第二粟屋) 屋\",\n            \"id\": 82900665,\n            \"id_str\": \"82900665\",\n            \"indices\": [\n              3,\n              15\n            ]\n          }\n        ],\n        \"media\": [\n          {\n            \"id\": 439430848194936800,\n            \"id_str\": \"439430848194936832\",\n            \"indices\": [\n              58,\n              80\n            ],\n            \"media_url\": \"http://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg\",\n            \"media_url_https\": \"https://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg\",\n            \"url\": \"http://t.co/vmrreDMziI\",\n            \"display_url\": \"pic.twitter.com/vmrreDMziI\",\n            \"expanded_url\": \"http://twitter.com/thsc782_407/status/439430848190742528/photo/1\",\n            \"type\": \"photo\",\n            \"sizes\": {\n              \"medium\": {\n                \"w\": 600,\n                \"h\": 450,\n                \"resize\": \"fit\"\n              },\n              \"large\": {\n                \"w\": 1024,\n                \"h\": 768,\n                \"resize\": \"fit\"\n              },\n              \"thumb\": {\n                \"w\": 150,\n                \"h\": 150,\n                \"resize\": \"crop\"\n              },\n              \"small\": {\n                \"w\": 340,\n                \"h\": 255,\n                \"resize\": \"fit\"\n              }\n            },\n            \"source_status_id\": 439430848190742500,\n            \"source_status_id_str\": \"439430848190742528\"\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:13 +0000 2014\",\n      \"id\": 505874918039228400,\n      \"id_str\": \"505874918039228416\",\n      \"text\": \"【金一地区太鼓台】川関と小山の見分けがつかない\",\n      \"source\": \"<a href=\\\"http://twittbot.net/\\\" rel=\\\"nofollow\\\">twittbot.net</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2530194984,\n        \"id_str\": \"2530194984\",\n        \"name\": \"川之江中高生あるある\",\n        \"screen_name\": \"kw_aru\",\n        \"location\": \"DMにてネタ提供待ってますよ\",\n        \"description\": \"川之江中高生の川之江中高生による川之江中高生のためのあるあるアカウントです。タイムリーなネタはお気に入りにあります。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 113,\n        \"friends_count\": 157,\n        \"listed_count\": 0,\n        \"created_at\": \"Wed May 28 15:01:43 +0000 2014\",\n        \"favourites_count\": 30,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 4472,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/471668359314948097/XbIyXiZK_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/471668359314948097/XbIyXiZK_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2530194984/1401289473\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:13 +0000 2014\",\n      \"id\": 505874915338104800,\n      \"id_str\": \"505874915338104833\",\n      \"text\": \"おはようございますん♪ SSDSのDVDが朝一で届いた〜（≧∇≦）\",\n      \"source\": \"<a href=\\\"http://tweetli.st/\\\" rel=\\\"nofollow\\\">TweetList!</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 428179337,\n        \"id_str\": \"428179337\",\n        \"name\": \"サラ\",\n        \"screen_name\": \"sala_mgn\",\n        \"location\": \"東京都\",\n        \"description\": \"bot遊びと実況が主目的の趣味アカウント。成人済♀。時々TLお騒がせします。リフォ率低いですがＦ／Ｂご自由に。スパムはブロック！[HOT]K[アニメ]タイバニ/Ｋ/薄桜鬼/トライガン/進撃[小説]冲方丁/森博嗣[漫画]内藤泰弘/高河ゆん[他]声優/演劇 ※@sano_bot1二代目管理人\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 104,\n        \"friends_count\": 421,\n        \"listed_count\": 2,\n        \"created_at\": \"Sun Dec 04 12:51:18 +0000 2011\",\n        \"favourites_count\": 3257,\n        \"utc_offset\": -36000,\n        \"time_zone\": \"Hawaii\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 25303,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"1A1B1F\",\n        \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/601682567/put73jtg48ytjylq00if.jpeg\",\n        \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/601682567/put73jtg48ytjylq00if.jpeg\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/3350624721/755920942e4f512e6ba489df7eb1147e_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/3350624721/755920942e4f512e6ba489df7eb1147e_normal.jpeg\",\n        \"profile_link_color\": \"2FC2EF\",\n        \"profile_sidebar_border_color\": \"181A1E\",\n        \"profile_sidebar_fill_color\": \"252429\",\n        \"profile_text_color\": \"666666\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:13 +0000 2014\",\n      \"id\": 505874914897690600,\n      \"id_str\": \"505874914897690624\",\n      \"text\": \"@ran_kirazuki そのようなお言葉を頂けるとは……！この雨太郎、誠心誠意を持って姉御の足の指の第一関節を崇め奉りとうございます\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": 505874276692406300,\n      \"in_reply_to_status_id_str\": \"505874276692406272\",\n      \"in_reply_to_user_id\": 531544559,\n      \"in_reply_to_user_id_str\": \"531544559\",\n      \"in_reply_to_screen_name\": \"ran_kirazuki\",\n      \"user\": {\n        \"id\": 2364828518,\n        \"id_str\": \"2364828518\",\n        \"name\": \"雨\",\n        \"screen_name\": \"tear_dice\",\n        \"location\": \"変態/日常/創作/室町/たまに版権\",\n        \"description\": \"アイコンは兄さんから！\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 28,\n        \"friends_count\": 28,\n        \"listed_count\": 0,\n        \"created_at\": \"Fri Feb 28 00:28:40 +0000 2014\",\n        \"favourites_count\": 109,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Seoul\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 193,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"000000\",\n        \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/504434510675443713/lvW7ad5b.jpeg\",\n        \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/504434510675443713/lvW7ad5b.jpeg\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/505170142284640256/rnW4XeEJ_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/505170142284640256/rnW4XeEJ_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2364828518/1409087198\",\n        \"profile_link_color\": \"0D31BF\",\n        \"profile_sidebar_border_color\": \"000000\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"ran_kirazuki\",\n            \"name\": \"蘭ぴよの日常\",\n            \"id\": 531544559,\n            \"id_str\": \"531544559\",\n            \"indices\": [\n              0,\n              13\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:13 +0000 2014\",\n      \"id\": 505874914591514600,\n      \"id_str\": \"505874914591514626\",\n      \"text\": \"RT @AFmbsk: @samao21718 \\n呼び方☞まおちゃん\\n呼ばれ方☞あーちゃん\\n第一印象☞平野から？！\\n今の印象☞おとなっぽい！！\\nLINE交換☞もってるん\\\\( ˆoˆ )/\\nトプ画について☞楽しそうでいーな😳\\n家族にするなら☞おねぇちゃん\\n最後に一言☞全然会えない…\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2179759316,\n        \"id_str\": \"2179759316\",\n        \"name\": \"まお\",\n        \"screen_name\": \"samao21718\",\n        \"location\": \"埼玉  UK留学してました✈\",\n        \"description\": \"ﾟ.＊97line おさらに貢いでる系女子＊.゜                                   DISH// ✯ 佐野悠斗 ✯ 読モ ✯ WEGO ✯ 嵐                                I met @OTYOfficial in the London ;)\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 111,\n        \"friends_count\": 121,\n        \"listed_count\": 0,\n        \"created_at\": \"Thu Nov 07 09:47:41 +0000 2013\",\n        \"favourites_count\": 321,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 1777,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501535615351926784/c5AAh6Sz_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501535615351926784/c5AAh6Sz_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2179759316/1407640217\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sat Aug 30 14:59:49 +0000 2014\",\n        \"id\": 505731620456771600,\n        \"id_str\": \"505731620456771584\",\n        \"text\": \"@samao21718 \\n呼び方☞まおちゃん\\n呼ばれ方☞あーちゃん\\n第一印象☞平野から？！\\n今の印象☞おとなっぽい！！\\nLINE交換☞もってるん\\\\( ˆoˆ )/\\nトプ画について☞楽しそうでいーな😳\\n家族にするなら☞おねぇちゃん\\n最後に一言☞全然会えないねー今度会えたらいいな！\",\n        \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": 2179759316,\n        \"in_reply_to_user_id_str\": \"2179759316\",\n        \"in_reply_to_screen_name\": \"samao21718\",\n        \"user\": {\n          \"id\": 1680668713,\n          \"id_str\": \"1680668713\",\n          \"name\": \"★Shiiiii!☆\",\n          \"screen_name\": \"AFmbsk\",\n          \"location\": \"埼玉\",\n          \"description\": \"2310*basketball#41*UVERworld*Pooh☪Bell +.｡*弱さを知って強くなれ*ﾟ\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 429,\n          \"friends_count\": 434,\n          \"listed_count\": 0,\n          \"created_at\": \"Sun Aug 18 12:45:00 +0000 2013\",\n          \"favourites_count\": 2488,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 6352,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/504643170886365185/JN_dlwUd_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/504643170886365185/JN_dlwUd_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1680668713/1408805886\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 1,\n        \"favorite_count\": 1,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": [\n            {\n              \"screen_name\": \"samao21718\",\n              \"name\": \"まお\",\n              \"id\": 2179759316,\n              \"id_str\": \"2179759316\",\n              \"indices\": [\n                0,\n                11\n              ]\n            }\n          ]\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 1,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"AFmbsk\",\n            \"name\": \"★Shiiiii!☆\",\n            \"id\": 1680668713,\n            \"id_str\": \"1680668713\",\n            \"indices\": [\n              3,\n              10\n            ]\n          },\n          {\n            \"screen_name\": \"samao21718\",\n            \"name\": \"まお\",\n            \"id\": 2179759316,\n            \"id_str\": \"2179759316\",\n            \"indices\": [\n              12,\n              23\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:10 +0000 2014\",\n      \"id\": 505874905712189440,\n      \"id_str\": \"505874905712189440\",\n      \"text\": \"一、常に身一つ簡素にして、美食を好んではならない\",\n      \"source\": \"<a href=\\\"http://twittbot.net/\\\" rel=\\\"nofollow\\\">twittbot.net</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 1330420010,\n        \"id_str\": \"1330420010\",\n        \"name\": \"獨行道bot\",\n        \"screen_name\": \"dokkodo_bot\",\n        \"location\": \"\",\n        \"description\": \"宮本武蔵の自誓書、「獨行道」に記された二十一箇条をランダムにつぶやくbotです。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 4,\n        \"friends_count\": 5,\n        \"listed_count\": 1,\n        \"created_at\": \"Sat Apr 06 01:19:55 +0000 2013\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 9639,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/3482551671/d9e749f7658b523bdd50b7584ed4ba6a_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/3482551671/d9e749f7658b523bdd50b7584ed4ba6a_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1330420010/1365212335\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:10 +0000 2014\",\n      \"id\": 505874903094939650,\n      \"id_str\": \"505874903094939648\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/mote_danshi1\\\" rel=\\\"nofollow\\\">モテモテ大作戦★男子編</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2714526565,\n        \"id_str\": \"2714526565\",\n        \"name\": \"モテモテ大作戦★男子編\",\n        \"screen_name\": \"mote_danshi1\",\n        \"location\": \"\",\n        \"description\": \"やっぱりモテモテ男子になりたい！自分を磨くヒントをみつけたい！応援してくれる人は RT & 相互フォローで みなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 664,\n        \"friends_count\": 1835,\n        \"listed_count\": 0,\n        \"created_at\": \"Thu Aug 07 12:59:59 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 597,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/497368689386086400/7hqdKMzG_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/497368689386086400/7hqdKMzG_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2714526565/1407416898\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:10 +0000 2014\",\n      \"id\": 505874902390276100,\n      \"id_str\": \"505874902390276096\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/kokoro_meigen11\\\" rel=\\\"nofollow\\\">心に響くアツい名言集</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2699261263,\n        \"id_str\": \"2699261263\",\n        \"name\": \"心に響くアツい名言集\",\n        \"screen_name\": \"kokoro_meigen11\",\n        \"location\": \"\",\n        \"description\": \"人生の格言は、人の心や人生を瞬時にに動かしてしまうことがある。\\r\\nそんな言葉の重みを味わおう。\\r\\n面白かったらRT & 相互フォローでみなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 183,\n        \"friends_count\": 1126,\n        \"listed_count\": 0,\n        \"created_at\": \"Fri Aug 01 22:00:00 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 749,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/495328654126112768/1rKnNuWK_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/495328654126112768/1rKnNuWK_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2699261263/1406930543\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:10 +0000 2014\",\n      \"id\": 505874902247677950,\n      \"id_str\": \"505874902247677954\",\n      \"text\": \"RT @POTENZA_SUPERGT: ありがとうございます！“@8CBR8: @POTENZA_SUPERGT 13時半ごろ一雨きそうですが、無事全車決勝レース完走出来ること祈ってます！ http://t.co/FzTyFnt9xH”\",\n      \"source\": \"<a href=\\\"http://jigtwi.jp/?p=1\\\" rel=\\\"nofollow\\\">jigtwi</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 1021030416,\n        \"id_str\": \"1021030416\",\n        \"name\": \"narur\",\n        \"screen_name\": \"narur2\",\n        \"location\": \"晴れの国なのに何故か開幕戦では雨や雪や冰や霰が降る✨\",\n        \"description\": \"F1.GP2.Superformula.SuperGT.F3...\\nスーパーGTが大好き♡車が好き！新幹線も好き！飛行機も好き！こっそり別アカです(๑´ㅂ`๑)♡*.+゜\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 257,\n        \"friends_count\": 237,\n        \"listed_count\": 2,\n        \"created_at\": \"Wed Dec 19 01:14:41 +0000 2012\",\n        \"favourites_count\": 547,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 55417,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/462180217574789121/1Jf6m_2L.jpeg\",\n        \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/462180217574789121/1Jf6m_2L.jpeg\",\n        \"profile_background_tile\": true,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/444312241395863552/FKl40ebQ_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/444312241395863552/FKl40ebQ_normal.jpeg\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:05:11 +0000 2014\",\n        \"id\": 505868866686169100,\n        \"id_str\": \"505868866686169089\",\n        \"text\": \"ありがとうございます！“@8CBR8: @POTENZA_SUPERGT 13時半ごろ一雨きそうですが、無事全車決勝レース完走出来ること祈ってます！ http://t.co/FzTyFnt9xH”\",\n        \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": 505868690588303360,\n        \"in_reply_to_status_id_str\": \"505868690588303360\",\n        \"in_reply_to_user_id\": 333344408,\n        \"in_reply_to_user_id_str\": \"333344408\",\n        \"in_reply_to_screen_name\": \"8CBR8\",\n        \"user\": {\n          \"id\": 359324738,\n          \"id_str\": \"359324738\",\n          \"name\": \"POTENZA_SUPERGT\",\n          \"screen_name\": \"POTENZA_SUPERGT\",\n          \"location\": \"\",\n          \"description\": \"ブリヂストンのスポーツタイヤ「POTENZA」のアカウントです。レースやタイヤの事などをつぶやきます。今シーズンも「チャンピオンタイヤの称号は譲らない」をキャッチコピーに、タイヤ供給チームを全力でサポートしていきますので、応援よろしくお願いします！なお、返信ができない場合もありますので、ご了承よろしくお願い致します。\",\n          \"url\": \"http://t.co/LruVPk5x4K\",\n          \"entities\": {\n            \"url\": {\n              \"urls\": [\n                {\n                  \"url\": \"http://t.co/LruVPk5x4K\",\n                  \"expanded_url\": \"http://www.bridgestone.co.jp/sc/potenza/\",\n                  \"display_url\": \"bridgestone.co.jp/sc/potenza/\",\n                  \"indices\": [\n                    0,\n                    22\n                  ]\n                }\n              ]\n            },\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 9612,\n          \"friends_count\": 308,\n          \"listed_count\": 373,\n          \"created_at\": \"Sun Aug 21 11:33:38 +0000 2011\",\n          \"favourites_count\": 26,\n          \"utc_offset\": -36000,\n          \"time_zone\": \"Hawaii\",\n          \"geo_enabled\": true,\n          \"verified\": false,\n          \"statuses_count\": 10032,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"131516\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme14/bg.gif\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme14/bg.gif\",\n          \"profile_background_tile\": true,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/1507885396/TW_image_normal.jpg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/1507885396/TW_image_normal.jpg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/359324738/1402546267\",\n          \"profile_link_color\": \"FF2424\",\n          \"profile_sidebar_border_color\": \"EEEEEE\",\n          \"profile_sidebar_fill_color\": \"EFEFEF\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": false,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 7,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": [\n            {\n              \"screen_name\": \"8CBR8\",\n              \"name\": \"CBR Rider #17 KEIHIN\",\n              \"id\": 333344408,\n              \"id_str\": \"333344408\",\n              \"indices\": [\n                12,\n                18\n              ]\n            },\n            {\n              \"screen_name\": \"POTENZA_SUPERGT\",\n              \"name\": \"POTENZA_SUPERGT\",\n              \"id\": 359324738,\n              \"id_str\": \"359324738\",\n              \"indices\": [\n                20,\n                36\n              ]\n            }\n          ],\n          \"media\": [\n            {\n              \"id\": 505868690252779500,\n              \"id_str\": \"505868690252779521\",\n              \"indices\": [\n                75,\n                97\n              ],\n              \"media_url\": \"http://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg\",\n              \"media_url_https\": \"https://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg\",\n              \"url\": \"http://t.co/FzTyFnt9xH\",\n              \"display_url\": \"pic.twitter.com/FzTyFnt9xH\",\n              \"expanded_url\": \"http://twitter.com/8CBR8/status/505868690588303360/photo/1\",\n              \"type\": \"photo\",\n              \"sizes\": {\n                \"medium\": {\n                  \"w\": 600,\n                  \"h\": 399,\n                  \"resize\": \"fit\"\n                },\n                \"thumb\": {\n                  \"w\": 150,\n                  \"h\": 150,\n                  \"resize\": \"crop\"\n                },\n                \"large\": {\n                  \"w\": 1024,\n                  \"h\": 682,\n                  \"resize\": \"fit\"\n                },\n                \"small\": {\n                  \"w\": 340,\n                  \"h\": 226,\n                  \"resize\": \"fit\"\n                }\n              },\n              \"source_status_id\": 505868690588303360,\n              \"source_status_id_str\": \"505868690588303360\"\n            }\n          ]\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"possibly_sensitive\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 7,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"POTENZA_SUPERGT\",\n            \"name\": \"POTENZA_SUPERGT\",\n            \"id\": 359324738,\n            \"id_str\": \"359324738\",\n            \"indices\": [\n              3,\n              19\n            ]\n          },\n          {\n            \"screen_name\": \"8CBR8\",\n            \"name\": \"CBR Rider #17 KEIHIN\",\n            \"id\": 333344408,\n            \"id_str\": \"333344408\",\n            \"indices\": [\n              33,\n              39\n            ]\n          },\n          {\n            \"screen_name\": \"POTENZA_SUPERGT\",\n            \"name\": \"POTENZA_SUPERGT\",\n            \"id\": 359324738,\n            \"id_str\": \"359324738\",\n            \"indices\": [\n              41,\n              57\n            ]\n          }\n        ],\n        \"media\": [\n          {\n            \"id\": 505868690252779500,\n            \"id_str\": \"505868690252779521\",\n            \"indices\": [\n              96,\n              118\n            ],\n            \"media_url\": \"http://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg\",\n            \"media_url_https\": \"https://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg\",\n            \"url\": \"http://t.co/FzTyFnt9xH\",\n            \"display_url\": \"pic.twitter.com/FzTyFnt9xH\",\n            \"expanded_url\": \"http://twitter.com/8CBR8/status/505868690588303360/photo/1\",\n            \"type\": \"photo\",\n            \"sizes\": {\n              \"medium\": {\n                \"w\": 600,\n                \"h\": 399,\n                \"resize\": \"fit\"\n              },\n              \"thumb\": {\n                \"w\": 150,\n                \"h\": 150,\n                \"resize\": \"crop\"\n              },\n              \"large\": {\n                \"w\": 1024,\n                \"h\": 682,\n                \"resize\": \"fit\"\n              },\n              \"small\": {\n                \"w\": 340,\n                \"h\": 226,\n                \"resize\": \"fit\"\n              }\n            },\n            \"source_status_id\": 505868690588303360,\n            \"source_status_id_str\": \"505868690588303360\"\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:09 +0000 2014\",\n      \"id\": 505874901689851900,\n      \"id_str\": \"505874901689851904\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/danshi_honne1\\\" rel=\\\"nofollow\\\">ここだけの本音★男子編</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2762136439,\n        \"id_str\": \"2762136439\",\n        \"name\": \"ここだけの本音★男子編\",\n        \"screen_name\": \"danshi_honne1\",\n        \"location\": \"\",\n        \"description\": \"思ってるけど言えない！でもホントは言いたいこと、実はいっぱいあるんです！ \\r\\nそんな男子の本音を、つぶやきます。 \\r\\nその気持わかるって人は RT & フォローお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 101,\n        \"friends_count\": 985,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Aug 24 11:11:30 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 209,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/503500282840354816/CEv8UMay_normal.png\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/503500282840354816/CEv8UMay_normal.png\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2762136439/1408878822\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:09 +0000 2014\",\n      \"id\": 505874900939046900,\n      \"id_str\": \"505874900939046912\",\n      \"text\": \"RT @UARROW_Y: ようかい体操第一を踊る国見英 http://t.co/SXoYWH98as\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2454426158,\n        \"id_str\": \"2454426158\",\n        \"name\": \"ぴかりん\",\n        \"screen_name\": \"gncnToktTtksg\",\n        \"location\": \"\",\n        \"description\": \"銀魂/黒バス/進撃/ハイキュー/BLEACH/うたプリ/鈴木達央さん/神谷浩史さん 気軽にフォローしてください（＾∇＾）✨\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 1274,\n        \"friends_count\": 1320,\n        \"listed_count\": 17,\n        \"created_at\": \"Sun Apr 20 07:48:53 +0000 2014\",\n        \"favourites_count\": 2314,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 5868,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/457788684146716672/KCOy0S75_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/457788684146716672/KCOy0S75_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2454426158/1409371302\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:45 +0000 2014\",\n        \"id\": 505871779949051900,\n        \"id_str\": \"505871779949051904\",\n        \"text\": \"ようかい体操第一を踊る国見英 http://t.co/SXoYWH98as\",\n        \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 1261662588,\n          \"id_str\": \"1261662588\",\n          \"name\": \"ゆう矢\",\n          \"screen_name\": \"UARROW_Y\",\n          \"location\": \"つくり出そう国影の波 広げよう国影の輪\",\n          \"description\": \"HQ!! 成人済腐女子。日常ツイート多いです。赤葦京治夢豚クソツイ含みます注意。フォローをお考えの際はプロフご一読お願い致します。FRBお気軽に\",\n          \"url\": \"http://t.co/LFX2XOzb0l\",\n          \"entities\": {\n            \"url\": {\n              \"urls\": [\n                {\n                  \"url\": \"http://t.co/LFX2XOzb0l\",\n                  \"expanded_url\": \"http://twpf.jp/UARROW_Y\",\n                  \"display_url\": \"twpf.jp/UARROW_Y\",\n                  \"indices\": [\n                    0,\n                    22\n                  ]\n                }\n              ]\n            },\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 265,\n          \"friends_count\": 124,\n          \"listed_count\": 12,\n          \"created_at\": \"Tue Mar 12 10:42:17 +0000 2013\",\n          \"favourites_count\": 6762,\n          \"utc_offset\": 32400,\n          \"time_zone\": \"Tokyo\",\n          \"geo_enabled\": true,\n          \"verified\": false,\n          \"statuses_count\": 55946,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1261662588/1408618604\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 29,\n        \"favorite_count\": 54,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [\n            {\n              \"url\": \"http://t.co/SXoYWH98as\",\n              \"expanded_url\": \"http://twitter.com/UARROW_Y/status/505871779949051904/photo/1\",\n              \"display_url\": \"pic.twitter.com/SXoYWH98as\",\n              \"indices\": [\n                15,\n                37\n              ]\n            }\n          ],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"possibly_sensitive\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 29,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [\n          {\n            \"url\": \"http://t.co/SXoYWH98as\",\n            \"expanded_url\": \"http://twitter.com/UARROW_Y/status/505871779949051904/photo/1\",\n            \"display_url\": \"pic.twitter.com/SXoYWH98as\",\n            \"indices\": [\n              29,\n              51\n            ]\n          }\n        ],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"UARROW_Y\",\n            \"name\": \"ゆう矢\",\n            \"id\": 1261662588,\n            \"id_str\": \"1261662588\",\n            \"indices\": [\n              3,\n              12\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:09 +0000 2014\",\n      \"id\": 505874900561580000,\n      \"id_str\": \"505874900561580032\",\n      \"text\": \"今日は一高と三桜（・θ・）\\n光梨ちゃんに会えないかな〜\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 1366375976,\n        \"id_str\": \"1366375976\",\n        \"name\": \"ゆいの\",\n        \"screen_name\": \"yuino1006\",\n        \"location\": \"\",\n        \"description\": \"さんおう 男バスマネ2ねん（＾ω＾）\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 270,\n        \"friends_count\": 260,\n        \"listed_count\": 0,\n        \"created_at\": \"Sat Apr 20 07:02:08 +0000 2013\",\n        \"favourites_count\": 1384,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Irkutsk\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 5202,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/505354401448349696/nxVFEQQ4_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/505354401448349696/nxVFEQQ4_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1366375976/1399989379\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:09 +0000 2014\",\n      \"id\": 505874899324248060,\n      \"id_str\": \"505874899324248064\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/kyoukan_aru\\\" rel=\\\"nofollow\\\">共感★絶対あるあるww</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2704420069,\n        \"id_str\": \"2704420069\",\n        \"name\": \"共感★絶対あるあるww\",\n        \"screen_name\": \"kyoukan_aru\",\n        \"location\": \"\",\n        \"description\": \"みんなにもわかってもらえる、あるあるを見つけたい。\\r\\n面白かったらRT & 相互フォローでみなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 857,\n        \"friends_count\": 1873,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Aug 03 15:50:40 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 682,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/495960812670836737/1LqkoyvU_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/495960812670836737/1LqkoyvU_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2704420069/1407081298\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:09 +0000 2014\",\n      \"id\": 505874898493796350,\n      \"id_str\": \"505874898493796352\",\n      \"text\": \"RT @assam_house: 泉田新潟県知事は、東電の申請書提出を容認させられただけで、再稼働に必要な「同意」はまだ与えていません。今まで柏崎刈羽の再稼働を抑え続けてきた知事に、もう一踏ん張りをお願いする意見を送って下さい。全国の皆様、お願いします！\\nhttp://t.co…\",\n      \"source\": \"<a href=\\\"http://jigtwi.jp/?p=1001\\\" rel=\\\"nofollow\\\">jigtwi for Android</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 960765968,\n        \"id_str\": \"960765968\",\n        \"name\": \"さち\",\n        \"screen_name\": \"sachitaka_dears\",\n        \"location\": \"宮城県\",\n        \"description\": \"動物関連のアカウントです。サブアカウント@sachi_dears (さち ❷) もあります。『心あるものは皆、愛し愛されるために生まれてきた。そして愛情を感じながら生を全うするべきなんだ』\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 3212,\n        \"friends_count\": 3528,\n        \"listed_count\": 91,\n        \"created_at\": \"Tue Nov 20 16:30:53 +0000 2012\",\n        \"favourites_count\": 3180,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Irkutsk\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 146935,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/3659653229/5b698df67f5d105400e9077f5ea50e91_normal.png\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/3659653229/5b698df67f5d105400e9077f5ea50e91_normal.png\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Tue Aug 19 11:00:53 +0000 2014\",\n        \"id\": 501685228427964400,\n        \"id_str\": \"501685228427964417\",\n        \"text\": \"泉田新潟県知事は、東電の申請書提出を容認させられただけで、再稼働に必要な「同意」はまだ与えていません。今まで柏崎刈羽の再稼働を抑え続けてきた知事に、もう一踏ん張りをお願いする意見を送って下さい。全国の皆様、お願いします！\\nhttp://t.co/9oH5cgpy1q\",\n        \"source\": \"<a href=\\\"http://twittbot.net/\\\" rel=\\\"nofollow\\\">twittbot.net</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 1104771276,\n          \"id_str\": \"1104771276\",\n          \"name\": \"アッサム山中（殺処分ゼロに一票）\",\n          \"screen_name\": \"assam_house\",\n          \"location\": \"新潟県柏崎市\",\n          \"description\": \"アッサム山中の趣味用アカ。当分の間、選挙啓発用としても使っていきます。このアカウントがアッサム山中本人のものである事は @assam_yamanaka のプロフでご確認下さい。\\r\\n公選法に係る表示\\r\\n庶民新党 #脱原発 http://t.co/96UqoCo0oU\\r\\nonestep.revival@gmail.com\",\n          \"url\": \"http://t.co/AEOCATaNZc\",\n          \"entities\": {\n            \"url\": {\n              \"urls\": [\n                {\n                  \"url\": \"http://t.co/AEOCATaNZc\",\n                  \"expanded_url\": \"http://www.assam-house.net/\",\n                  \"display_url\": \"assam-house.net\",\n                  \"indices\": [\n                    0,\n                    22\n                  ]\n                }\n              ]\n            },\n            \"description\": {\n              \"urls\": [\n                {\n                  \"url\": \"http://t.co/96UqoCo0oU\",\n                  \"expanded_url\": \"http://blog.assam-house.net/datsu-genpatsu/index.html\",\n                  \"display_url\": \"blog.assam-house.net/datsu-genpatsu…\",\n                  \"indices\": [\n                    110,\n                    132\n                  ]\n                }\n              ]\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 2977,\n          \"friends_count\": 3127,\n          \"listed_count\": 64,\n          \"created_at\": \"Sat Jan 19 22:10:13 +0000 2013\",\n          \"favourites_count\": 343,\n          \"utc_offset\": 32400,\n          \"time_zone\": \"Irkutsk\",\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 18021,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000067217575/e0a85b440429ff50430a41200327dcb8_normal.png\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000067217575/e0a85b440429ff50430a41200327dcb8_normal.png\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1104771276/1408948288\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 2,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [\n            {\n              \"url\": \"http://t.co/9oH5cgpy1q\",\n              \"expanded_url\": \"http://www.pref.niigata.lg.jp/kouhou/info.html\",\n              \"display_url\": \"pref.niigata.lg.jp/kouhou/info.ht…\",\n              \"indices\": [\n                111,\n                133\n              ]\n            }\n          ],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"possibly_sensitive\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 2,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [\n          {\n            \"url\": \"http://t.co/9oH5cgpy1q\",\n            \"expanded_url\": \"http://www.pref.niigata.lg.jp/kouhou/info.html\",\n            \"display_url\": \"pref.niigata.lg.jp/kouhou/info.ht…\",\n            \"indices\": [\n              139,\n              140\n            ]\n          }\n        ],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"assam_house\",\n            \"name\": \"アッサム山中（殺処分ゼロに一票）\",\n            \"id\": 1104771276,\n            \"id_str\": \"1104771276\",\n            \"indices\": [\n              3,\n              15\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:09 +0000 2014\",\n      \"id\": 505874898468630500,\n      \"id_str\": \"505874898468630528\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/osyare_pea\\\" rel=\\\"nofollow\\\">おしゃれ★ペアルック</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2708607692,\n        \"id_str\": \"2708607692\",\n        \"name\": \"おしゃれ★ペアルック\",\n        \"screen_name\": \"osyare_pea\",\n        \"location\": \"\",\n        \"description\": \"ラブラブ度がアップする、素敵なペアルックを見つけて紹介します♪ 気に入ったら RT & 相互フォローで みなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 129,\n        \"friends_count\": 1934,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 05 07:09:31 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 641,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/496554257676382208/Zgg0bmNu_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/496554257676382208/Zgg0bmNu_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2708607692/1407222776\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:08 +0000 2014\",\n      \"id\": 505874897633951740,\n      \"id_str\": \"505874897633951745\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/love_live55\\\" rel=\\\"nofollow\\\">LOVE ♥ ラブライブ</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2745389137,\n        \"id_str\": \"2745389137\",\n        \"name\": \"LOVE ♥ ラブライブ\",\n        \"screen_name\": \"love_live55\",\n        \"location\": \"\",\n        \"description\": \"とにかく「ラブライブが好きで～す♥」 \\r\\nラブライブファンには、たまらない内容ばかり集めています♪ \\r\\n気に入ったら RT & 相互フォローお願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 251,\n        \"friends_count\": 969,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 19 15:45:40 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 348,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501757482448850944/x2uPpqRx_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501757482448850944/x2uPpqRx_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745389137/1408463342\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:08 +0000 2014\",\n      \"id\": 505874896795086850,\n      \"id_str\": \"505874896795086848\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/koisurudoress\\\" rel=\\\"nofollow\\\">恋する♡ドレスシリーズ</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2726346560,\n        \"id_str\": \"2726346560\",\n        \"name\": \"恋する♡ドレスシリーズ\",\n        \"screen_name\": \"koisurudoress\",\n        \"location\": \"\",\n        \"description\": \"どれもこれも、見ているだけで欲しくなっちゃう♪  \\r\\n特別な日に着る素敵なドレスを見つけたいです。  \\r\\n着てみたいと思ったら RT & フォローお願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 314,\n        \"friends_count\": 1900,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 12 14:10:35 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 471,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/499199619465621504/fg7sVusT_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/499199619465621504/fg7sVusT_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2726346560/1407853688\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:08 +0000 2014\",\n      \"id\": 505874895964626940,\n      \"id_str\": \"505874895964626944\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/doubutuzukan\\\" rel=\\\"nofollow\\\">胸キュン♥動物図鑑</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2759192574,\n        \"id_str\": \"2759192574\",\n        \"name\": \"胸キュン♥動物図鑑\",\n        \"screen_name\": \"doubutuzukan\",\n        \"location\": \"\",\n        \"description\": \"ふとした表情に思わずキュンとしてしまう♪ \\r\\nそんな愛しの動物たちの写真を見つけます。 \\r\\n気に入ったら RT & フォローを、お願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 80,\n        \"friends_count\": 959,\n        \"listed_count\": 1,\n        \"created_at\": \"Sat Aug 23 15:47:36 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 219,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/503211559552688128/Ej_bixna_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/503211559552688128/Ej_bixna_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2759192574/1408809101\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:08 +0000 2014\",\n      \"id\": 505874895079608300,\n      \"id_str\": \"505874895079608320\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/disney_para\\\" rel=\\\"nofollow\\\">ディズニー★パラダイス</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2719228561,\n        \"id_str\": \"2719228561\",\n        \"name\": \"ディズニー★パラダイス\",\n        \"screen_name\": \"disney_para\",\n        \"location\": \"\",\n        \"description\": \"ディズニーのかわいい画像、ニュース情報、あるあるなどをお届けします♪\\r\\nディズニーファンは RT & フォローもお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 331,\n        \"friends_count\": 1867,\n        \"listed_count\": 0,\n        \"created_at\": \"Sat Aug 09 12:01:32 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 540,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/498076922488696832/Ti2AEuOT_normal.png\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/498076922488696832/Ti2AEuOT_normal.png\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2719228561/1407585841\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:08 +0000 2014\",\n      \"id\": 505874894135898100,\n      \"id_str\": \"505874894135898112\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/nama_fuushi\\\" rel=\\\"nofollow\\\">生々しい風刺画</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2714772727,\n        \"id_str\": \"2714772727\",\n        \"name\": \"生々しい風刺画\",\n        \"screen_name\": \"nama_fuushi\",\n        \"location\": \"\",\n        \"description\": \"深い意味が込められた「生々しい風刺画」を見つけます。\\r\\n考えさせられたら RT & 相互フォローでみなさん、お願いします\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 298,\n        \"friends_count\": 1902,\n        \"listed_count\": 1,\n        \"created_at\": \"Thu Aug 07 15:04:45 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 595,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/497398363352875011/tS-5FPJB_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/497398363352875011/tS-5FPJB_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2714772727/1407424091\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:07 +0000 2014\",\n      \"id\": 505874893347377150,\n      \"id_str\": \"505874893347377152\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/arashi_suki1\\\" rel=\\\"nofollow\\\">嵐★大好きっ娘</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2721682579,\n        \"id_str\": \"2721682579\",\n        \"name\": \"嵐★大好きっ娘\",\n        \"screen_name\": \"arashi_suki1\",\n        \"location\": \"\",\n        \"description\": \"なんだかんだ言って、やっぱり嵐が好きなんです♪\\r\\nいろいろ集めたいので、嵐好きな人に見てほしいです。\\r\\n気に入ったら RT & 相互フォローお願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 794,\n        \"friends_count\": 1913,\n        \"listed_count\": 2,\n        \"created_at\": \"Sun Aug 10 13:43:56 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 504,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/498465364733198336/RO6wupdc_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/498465364733198336/RO6wupdc_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2721682579/1407678436\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:07 +0000 2014\",\n      \"id\": 505874893154426900,\n      \"id_str\": \"505874893154426881\",\n      \"text\": \"RT @Takashi_Shiina: テレビで「成人男性のカロリー摂取量は1900kcal」とか言ってて、それはいままさに私がダイエットのために必死でキープしようとしている量で、「それが普通なら人はいつ天一やココイチに行って大盛りを食えばいいんだ！」と思った。\",\n      \"source\": \"<a href=\\\"http://twicca.r246.jp/\\\" rel=\\\"nofollow\\\">twicca</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 353516742,\n        \"id_str\": \"353516742\",\n        \"name\": \"おしんこー＠土曜西え41a\",\n        \"screen_name\": \"oshin_koko\",\n        \"location\": \"こたつ\",\n        \"description\": \"ROMって楽しんでいる部分もあり無言フォロー多めですすみません…。ツイート数多め・あらぶり多めなのでフォロー非推奨です。最近は早兵・兵部受け中心ですがBLNLなんでも好きです。地雷少ないため雑多に呟きます。腐・R18・ネタバレ有るのでご注意。他好きなジャンルはプロフ参照願います。　主催→@chounou_antholo\",\n        \"url\": \"http://t.co/mM1dG54NiO\",\n        \"entities\": {\n          \"url\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/mM1dG54NiO\",\n                \"expanded_url\": \"http://twpf.jp/oshin_koko\",\n                \"display_url\": \"twpf.jp/oshin_koko\",\n                \"indices\": [\n                  0,\n                  22\n                ]\n              }\n            ]\n          },\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 479,\n        \"friends_count\": 510,\n        \"listed_count\": 43,\n        \"created_at\": \"Fri Aug 12 05:53:13 +0000 2011\",\n        \"favourites_count\": 3059,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Tokyo\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 104086,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"000000\",\n        \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/799871497/01583a031f83a45eba881c8acde729ee.jpeg\",\n        \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/799871497/01583a031f83a45eba881c8acde729ee.jpeg\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/484347196523835393/iHaYxm-2_normal.png\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/484347196523835393/iHaYxm-2_normal.png\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/353516742/1369039651\",\n        \"profile_link_color\": \"FF96B0\",\n        \"profile_sidebar_border_color\": \"FFFFFF\",\n        \"profile_sidebar_fill_color\": \"95E8EC\",\n        \"profile_text_color\": \"3C3940\",\n        \"profile_use_background_image\": false,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sat Aug 30 09:58:30 +0000 2014\",\n        \"id\": 505655792733650940,\n        \"id_str\": \"505655792733650944\",\n        \"text\": \"テレビで「成人男性のカロリー摂取量は1900kcal」とか言ってて、それはいままさに私がダイエットのために必死でキープしようとしている量で、「それが普通なら人はいつ天一やココイチに行って大盛りを食えばいいんだ！」と思った。\",\n        \"source\": \"<a href=\\\"http://janetter.net/\\\" rel=\\\"nofollow\\\">Janetter</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 126573583,\n          \"id_str\": \"126573583\",\n          \"name\": \"椎名高志\",\n          \"screen_name\": \"Takashi_Shiina\",\n          \"location\": \"BABEL（超能力支援研究局）\",\n          \"description\": \"漫画家。週刊少年サンデーで『絶対可憐チルドレン』連載中。TVアニメ『THE UNLIMITED 兵部京介』公式サイト＞http://t.co/jVqBoBEc\",\n          \"url\": \"http://t.co/K3Oi83wM3w\",\n          \"entities\": {\n            \"url\": {\n              \"urls\": [\n                {\n                  \"url\": \"http://t.co/K3Oi83wM3w\",\n                  \"expanded_url\": \"http://cnanews.asablo.jp/blog/\",\n                  \"display_url\": \"cnanews.asablo.jp/blog/\",\n                  \"indices\": [\n                    0,\n                    22\n                  ]\n                }\n              ]\n            },\n            \"description\": {\n              \"urls\": [\n                {\n                  \"url\": \"http://t.co/jVqBoBEc\",\n                  \"expanded_url\": \"http://unlimited-zc.jp/index.html\",\n                  \"display_url\": \"unlimited-zc.jp/index.html\",\n                  \"indices\": [\n                    59,\n                    79\n                  ]\n                }\n              ]\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 110756,\n          \"friends_count\": 61,\n          \"listed_count\": 8159,\n          \"created_at\": \"Fri Mar 26 08:54:51 +0000 2010\",\n          \"favourites_count\": 25,\n          \"utc_offset\": 32400,\n          \"time_zone\": \"Tokyo\",\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 27364,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"EDECE9\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme3/bg.gif\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme3/bg.gif\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/504597210772688896/Uvt4jgf5_normal.png\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/504597210772688896/Uvt4jgf5_normal.png\",\n          \"profile_link_color\": \"088253\",\n          \"profile_sidebar_border_color\": \"D3D2CF\",\n          \"profile_sidebar_fill_color\": \"E3E2DE\",\n          \"profile_text_color\": \"634047\",\n          \"profile_use_background_image\": false,\n          \"default_profile\": false,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 221,\n        \"favorite_count\": 109,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 221,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"Takashi_Shiina\",\n            \"name\": \"椎名高志\",\n            \"id\": 126573583,\n            \"id_str\": \"126573583\",\n            \"indices\": [\n              3,\n              18\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:07 +0000 2014\",\n      \"id\": 505874892567244800,\n      \"id_str\": \"505874892567244801\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/shimo_hentai\\\" rel=\\\"nofollow\\\">下ネタ＆笑変態雑学</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2762581922,\n        \"id_str\": \"2762581922\",\n        \"name\": \"下ネタ＆笑変態雑学\",\n        \"screen_name\": \"shimo_hentai\",\n        \"location\": \"\",\n        \"description\": \"普通の人には思いつかない、ちょっと変態チックな 笑える下ネタ雑学をお届けします。 \\r\\nおもしろかったら RT & フォローお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 37,\n        \"friends_count\": 990,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Aug 24 14:13:20 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 212,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/503545991950114816/K9yQbh1Q_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/503545991950114816/K9yQbh1Q_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2762581922/1408889893\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:07 +0000 2014\",\n      \"id\": 505874891778703360,\n      \"id_str\": \"505874891778703360\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/kantaneigo1\\\" rel=\\\"nofollow\\\">超簡単★初心者英語</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2744544025,\n        \"id_str\": \"2744544025\",\n        \"name\": \"超簡単★初心者英語\",\n        \"screen_name\": \"kantaneigo1\",\n        \"location\": \"\",\n        \"description\": \"すぐに使えるフレーズや簡単な会話を紹介します。 \\r\\n少しづつ練習して、どんどん使ってみよう☆ \\r\\n使ってみたいと思ったら RT & フォローお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 147,\n        \"friends_count\": 970,\n        \"listed_count\": 1,\n        \"created_at\": \"Tue Aug 19 10:11:48 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 345,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501676136321929216/4MLpyHe3_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501676136321929216/4MLpyHe3_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2744544025/1408443928\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:07 +0000 2014\",\n      \"id\": 505874891032121340,\n      \"id_str\": \"505874891032121344\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/ima_handsign\\\" rel=\\\"nofollow\\\">現代のハンドサイン</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2762816814,\n        \"id_str\": \"2762816814\",\n        \"name\": \"現代のハンドサイン\",\n        \"screen_name\": \"ima_handsign\",\n        \"location\": \"\",\n        \"description\": \"イザという時や、困った時に、必ず役に立つハンドサインのオンパレードです♪ \\r\\n使ってみたくなったら RT & フォローお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 95,\n        \"friends_count\": 996,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Aug 24 15:33:58 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 210,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/503566188253687809/7wtdp1AC_normal.png\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/503566188253687809/7wtdp1AC_normal.png\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2762816814/1408894540\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:07 +0000 2014\",\n      \"id\": 505874890247782400,\n      \"id_str\": \"505874890247782401\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/anata_iionna\\\" rel=\\\"nofollow\\\">今日からアナタもイイ女♪</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2714167411,\n        \"id_str\": \"2714167411\",\n        \"name\": \"今日からアナタもイイ女♪\",\n        \"screen_name\": \"anata_iionna\",\n        \"location\": \"\",\n        \"description\": \"みんなが知りたい イイ女の秘密を見つけます♪ いいな～と思ってくれた人は RT & 相互フォローで みなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 390,\n        \"friends_count\": 1425,\n        \"listed_count\": 0,\n        \"created_at\": \"Thu Aug 07 09:27:59 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 609,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/497314455655436288/dz7P3-fy_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/497314455655436288/dz7P3-fy_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2714167411/1407404214\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:07 +0000 2014\",\n      \"id\": 505874890218434560,\n      \"id_str\": \"505874890218434560\",\n      \"text\": \"@kohecyan3 \\n名前:上野滉平\\n呼び方:うえの\\n呼ばれ方:ずるかわ\\n第一印象:過剰な俺イケメンですアピール\\n今の印象:バーバリーの時計\\n好きなところ:あの自信さ、笑いが絶えない\\n一言:大学受かったの？応援してる〜(*^^*)！\\n\\n#RTした人にやる\\nちょっとやってみる笑\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": 2591363659,\n      \"in_reply_to_user_id_str\": \"2591363659\",\n      \"in_reply_to_screen_name\": \"kohecyan3\",\n      \"user\": {\n        \"id\": 2613282517,\n        \"id_str\": \"2613282517\",\n        \"name\": \"K\",\n        \"screen_name\": \"kawazurukenna\",\n        \"location\": \"\",\n        \"description\": \"# I surprise even my self\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 113,\n        \"friends_count\": 185,\n        \"listed_count\": 0,\n        \"created_at\": \"Wed Jul 09 09:39:13 +0000 2014\",\n        \"favourites_count\": 157,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 242,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/502436858135973888/PcUU0lov_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/502436858135973888/PcUU0lov_normal.jpeg\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [\n          {\n            \"text\": \"RTした人にやる\",\n            \"indices\": [\n              119,\n              128\n            ]\n          }\n        ],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"kohecyan3\",\n            \"name\": \"上野滉平\",\n            \"id\": 2591363659,\n            \"id_str\": \"2591363659\",\n            \"indices\": [\n              0,\n              10\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:07 +0000 2014\",\n      \"id\": 505874889392156700,\n      \"id_str\": \"505874889392156672\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/iq_tameshi\\\" rel=\\\"nofollow\\\">IQ★力だめし</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2709308887,\n        \"id_str\": \"2709308887\",\n        \"name\": \"IQ★力だめし\",\n        \"screen_name\": \"iq_tameshi\",\n        \"location\": \"\",\n        \"description\": \"解けると楽しい気分になれる問題を見つけて紹介します♪面白かったら RT & 相互フォローで みなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 443,\n        \"friends_count\": 1851,\n        \"listed_count\": 1,\n        \"created_at\": \"Tue Aug 05 13:14:30 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 664,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/496646485266558977/W_W--qV__normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/496646485266558977/W_W--qV__normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2709308887/1407244754\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:06 +0000 2014\",\n      \"id\": 505874888817532900,\n      \"id_str\": \"505874888817532928\",\n      \"text\": \"第一三軍から２個師団が北へ移動中らしい　　　　　この調子では満州に陸軍兵力があふれかえる\",\n      \"source\": \"<a href=\\\"http://m.blogs.yahoo.co.jp/misa_1273\\\" rel=\\\"nofollow\\\">如月克己</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 1171299612,\n        \"id_str\": \"1171299612\",\n        \"name\": \"如月 克己\",\n        \"screen_name\": \"kisaragi_katumi\",\n        \"location\": \"満州\",\n        \"description\": \"GパングのA型K月克己中尉の非公式botです。 主に七巻と八巻が中心の台詞をつぶやきます。 4/18.台詞追加しました/現在試運転中/現在軽い挨拶だけTL反応。/追加したい台詞や何おかしい所がありましたらDMやリプライで/フォロー返しは手動です/\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 65,\n        \"friends_count\": 63,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Feb 12 08:21:38 +0000 2013\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 27219,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/3242847112/0ce536444c94cbec607229022d43a27a_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/3242847112/0ce536444c94cbec607229022d43a27a_normal.jpeg\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:06 +0000 2014\",\n      \"id\": 505874888616181760,\n      \"id_str\": \"505874888616181760\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/tokuda_ouen1\\\" rel=\\\"nofollow\\\">徳田有希★応援隊</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2766021865,\n        \"id_str\": \"2766021865\",\n        \"name\": \"徳田有希★応援隊\",\n        \"screen_name\": \"tokuda_ouen1\",\n        \"location\": \"\",\n        \"description\": \"女子中高生に大人気ww　いやされるイラストを紹介します。 \\r\\nみんなで RTして応援しよう～♪ \\r\\n「非公式アカウントです」\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 123,\n        \"friends_count\": 978,\n        \"listed_count\": 0,\n        \"created_at\": \"Mon Aug 25 10:48:41 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 210,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/503857235802333184/YS0sDN6q_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/503857235802333184/YS0sDN6q_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2766021865/1408963998\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:06 +0000 2014\",\n      \"id\": 505874887802511360,\n      \"id_str\": \"505874887802511361\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/fujyoshinoheya\\\" rel=\\\"nofollow\\\">腐女子の☆部屋</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2744683982,\n        \"id_str\": \"2744683982\",\n        \"name\": \"腐女子の☆部屋\",\n        \"screen_name\": \"fujyoshinoheya\",\n        \"location\": \"\",\n        \"description\": \"腐女子にしかわからないネタや、あるあるを見つけていきます。 \\r\\n他には、BL～萌えキュン系まで、腐のための画像を集めています♪ \\r\\n同じ境遇の人には、わかってもらえると思うので、気軽に RT & フォローお願いします☆\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 241,\n        \"friends_count\": 990,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 19 11:47:21 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 345,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501697365590306817/GLP_QH_b_normal.png\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501697365590306817/GLP_QH_b_normal.png\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2744683982/1408448984\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:06 +0000 2014\",\n      \"id\": 505874887009767400,\n      \"id_str\": \"505874887009767424\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/moe_rate\\\" rel=\\\"nofollow\\\">萌え芸術★ラテアート</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2763178045,\n        \"id_str\": \"2763178045\",\n        \"name\": \"萌え芸術★ラテアート\",\n        \"screen_name\": \"moe_rate\",\n        \"location\": \"\",\n        \"description\": \"ここまで来ると、もはや芸術!! 見てるだけで楽しい♪ \\r\\nそんなラテアートを、とことん探します。 \\r\\nスゴイと思ったら RT & フォローお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 187,\n        \"friends_count\": 998,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Aug 24 16:53:16 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 210,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/503586151764992000/RC80it20_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/503586151764992000/RC80it20_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2763178045/1408899447\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:06 +0000 2014\",\n      \"id\": 505874886225448960,\n      \"id_str\": \"505874886225448960\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/zenbu_johnnys\\\" rel=\\\"nofollow\\\">全部★ジャニーズ図鑑</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2724158970,\n        \"id_str\": \"2724158970\",\n        \"name\": \"全部★ジャニーズ図鑑\",\n        \"screen_name\": \"zenbu_johnnys\",\n        \"location\": \"\",\n        \"description\": \"ジャニーズのカッコイイ画像、おもしろエピソードなどを発信します。\\r\\n「非公式アカウントです」\\r\\nジャニーズ好きな人は、是非 RT ＆ フォローお願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 738,\n        \"friends_count\": 1838,\n        \"listed_count\": 0,\n        \"created_at\": \"Mon Aug 11 15:50:08 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 556,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/498859581057945600/ncMKwdvC_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/498859581057945600/ncMKwdvC_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2724158970/1407772462\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:06 +0000 2014\",\n      \"id\": 505874885810200600,\n      \"id_str\": \"505874885810200576\",\n      \"text\": \"RT @naopisu_: 呼び方:\\n呼ばれ方:\\n第一印象:\\n今の印象:\\n好きなところ:\\n家族にするなら:\\n最後に一言:\\n#RTした人にやる\\n\\nお腹痛くて寝れないからやるww\\nだれでもどうぞ〜😏🙌\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2347898072,\n        \"id_str\": \"2347898072\",\n        \"name\": \"にたにた\",\n        \"screen_name\": \"syo6660129\",\n        \"location\": \"\",\n        \"description\": \"\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 64,\n        \"friends_count\": 70,\n        \"listed_count\": 1,\n        \"created_at\": \"Mon Feb 17 04:29:46 +0000 2014\",\n        \"favourites_count\": 58,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 145,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/485603672118669314/73uh_xRS_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/485603672118669314/73uh_xRS_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2347898072/1396957619\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sat Aug 30 14:19:31 +0000 2014\",\n        \"id\": 505721480261300200,\n        \"id_str\": \"505721480261300224\",\n        \"text\": \"呼び方:\\n呼ばれ方:\\n第一印象:\\n今の印象:\\n好きなところ:\\n家族にするなら:\\n最後に一言:\\n#RTした人にやる\\n\\nお腹痛くて寝れないからやるww\\nだれでもどうぞ〜😏🙌\",\n        \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 856045488,\n          \"id_str\": \"856045488\",\n          \"name\": \"なおぴす\",\n          \"screen_name\": \"naopisu_\",\n          \"location\": \"Fujino 65th ⇢ Sagaso 12A(LJK\",\n          \"description\": \"＼ もうすぐ18歳 “Only One”になる ／\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 267,\n          \"friends_count\": 259,\n          \"listed_count\": 2,\n          \"created_at\": \"Mon Oct 01 08:36:23 +0000 2012\",\n          \"favourites_count\": 218,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 1790,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/496321592553525249/tuzX9ByR_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/496321592553525249/tuzX9ByR_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/856045488/1407118111\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 23,\n        \"favorite_count\": 1,\n        \"entities\": {\n          \"hashtags\": [\n            {\n              \"text\": \"RTした人にやる\",\n              \"indices\": [\n                47,\n                56\n              ]\n            }\n          ],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 23,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [\n          {\n            \"text\": \"RTした人にやる\",\n            \"indices\": [\n              61,\n              70\n            ]\n          }\n        ],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"naopisu_\",\n            \"name\": \"なおぴす\",\n            \"id\": 856045488,\n            \"id_str\": \"856045488\",\n            \"indices\": [\n              3,\n              12\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:06 +0000 2014\",\n      \"id\": 505874885474656260,\n      \"id_str\": \"505874885474656256\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/line_aru1\\\" rel=\\\"nofollow\\\">爆笑★LINE あるある</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2709561589,\n        \"id_str\": \"2709561589\",\n        \"name\": \"爆笑★LINE あるある\",\n        \"screen_name\": \"line_aru1\",\n        \"location\": \"\",\n        \"description\": \"思わず笑ってしまうLINEでのやりとりや、あるあるを見つけたいです♪面白かったら RT & 相互フォローで みなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 496,\n        \"friends_count\": 1875,\n        \"listed_count\": 1,\n        \"created_at\": \"Tue Aug 05 15:01:30 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 687,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/496673793939492867/p1BN4YaW_normal.png\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/496673793939492867/p1BN4YaW_normal.png\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2709561589/1407251270\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:05 +0000 2014\",\n      \"id\": 505874884627410940,\n      \"id_str\": \"505874884627410944\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/misawahatugen\\\" rel=\\\"nofollow\\\">全力★ミサワ的w発言</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2734455415,\n        \"id_str\": \"2734455415\",\n        \"name\": \"全力★ミサワ的w発言!!\",\n        \"screen_name\": \"misawahatugen\",\n        \"location\": \"\",\n        \"description\": \"ウザすぎて笑えるミサワ的名言や、おもしろミサワ画像を集めています。　\\r\\nミサワを知らない人でも、いきなりツボにハマっちゃう内容をお届けします。　\\r\\nウザいｗと思ったら RT & 相互フォローお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 144,\n        \"friends_count\": 1915,\n        \"listed_count\": 1,\n        \"created_at\": \"Fri Aug 15 13:20:04 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 436,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/500271070834749444/HvengMe5_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/500271070834749444/HvengMe5_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2734455415/1408108944\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:05 +0000 2014\",\n      \"id\": 505874883809521660,\n      \"id_str\": \"505874883809521664\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/otakara_sotuaru\\\" rel=\\\"nofollow\\\">お宝ww有名人卒アル特集</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2708183557,\n        \"id_str\": \"2708183557\",\n        \"name\": \"お宝ww有名人卒アル特集\",\n        \"screen_name\": \"otakara_sotuaru\",\n        \"location\": \"\",\n        \"description\": \"みんな昔は若かったんですね。今からは想像もつかない、あの有名人を見つけます。\\r\\n面白かったら RT & 相互フォローで みなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 286,\n        \"friends_count\": 1938,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 05 03:26:54 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 650,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/496499121276985344/hC8RoebP_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/496499121276985344/hC8RoebP_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2708183557/1407318758\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:05 +0000 2014\",\n      \"id\": 505874883322970100,\n      \"id_str\": \"505874883322970112\",\n      \"text\": \"レッドクリフのキャラのこと女装ってくそわろたwww朝一で面白かった( ˘ω゜)笑\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 1620730616,\n        \"id_str\": \"1620730616\",\n        \"name\": \"ひーちゃん@橘芋健ぴ\",\n        \"screen_name\": \"2nd_8hkr\",\n        \"location\": \"北の大地.95年組 ☞ 9/28.10/2(5).12/28\",\n        \"description\": \"THE SECOND/劇団EXILE/EXILE/二代目JSB ☞KENCHI.AKIRA.青柳翔.小森隼.石井杏奈☜ Big Love ♡ Respect ..... ✍ MATSU Origin✧ .た ち ば な '' い も '' け ん い ち ろ う さ んTEAM NACS 安田.戸次 Liebe !\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 109,\n        \"friends_count\": 148,\n        \"listed_count\": 0,\n        \"created_at\": \"Thu Jul 25 16:09:29 +0000 2013\",\n        \"favourites_count\": 783,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 9541,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/458760951060123648/Cocoxi-2_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/458760951060123648/Cocoxi-2_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1620730616/1408681982\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:05 +0000 2014\",\n      \"id\": 505874883067129860,\n      \"id_str\": \"505874883067129857\",\n      \"text\": \"【状態良好】ペンタックス・デジタル一眼レフカメラ・K20D 入札数=38 現在価格=15000円 http://t.co/4WK1f6V2n6終了=2014年08月31日 20:47:53 #一眼レフ http://t.co/PcSaXzfHMW\",\n      \"source\": \"<a href=\\\"https://github.com/AKB428/YahooAuctionBot\\\" rel=\\\"nofollow\\\">YahooAuction Degicame</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2278053589,\n        \"id_str\": \"2278053589\",\n        \"name\": \"AuctionCamera\",\n        \"screen_name\": \"AuctionCamera\",\n        \"location\": \"\",\n        \"description\": \"Yahooオークションのデジカメカテゴリから商品を抽出するボットです。\",\n        \"url\": \"https://t.co/3sB1NDnd0m\",\n        \"entities\": {\n          \"url\": {\n            \"urls\": [\n              {\n                \"url\": \"https://t.co/3sB1NDnd0m\",\n                \"expanded_url\": \"https://github.com/AKB428/YahooAuctionBot\",\n                \"display_url\": \"github.com/AKB428/YahooAu…\",\n                \"indices\": [\n                  0,\n                  23\n                ]\n              }\n            ]\n          },\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 5,\n        \"friends_count\": 24,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Jan 05 20:10:56 +0000 2014\",\n        \"favourites_count\": 1,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 199546,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/419927606146789376/vko-kd6Q_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/419927606146789376/vko-kd6Q_normal.jpeg\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [\n          {\n            \"text\": \"一眼レフ\",\n            \"indices\": [\n              95,\n              100\n            ]\n          }\n        ],\n        \"symbols\": [],\n        \"urls\": [\n          {\n            \"url\": \"http://t.co/4WK1f6V2n6\",\n            \"expanded_url\": \"http://atq.ck.valuecommerce.com/servlet/atq/referral?sid=2219441&pid=877510753&vcptn=auct/p/RJH492.PLqoLQQx1Jy8U9LE-&vc_url=http://page8.auctions.yahoo.co.jp/jp/auction/h192024356\",\n            \"display_url\": \"atq.ck.valuecommerce.com/servlet/atq/re…\",\n            \"indices\": [\n              49,\n              71\n            ]\n          }\n        ],\n        \"user_mentions\": [],\n        \"media\": [\n          {\n            \"id\": 505874882828046340,\n            \"id_str\": \"505874882828046336\",\n            \"indices\": [\n              101,\n              123\n            ],\n            \"media_url\": \"http://pbs.twimg.com/media/BwU6hpPCEAAxnpq.jpg\",\n            \"media_url_https\": \"https://pbs.twimg.com/media/BwU6hpPCEAAxnpq.jpg\",\n            \"url\": \"http://t.co/PcSaXzfHMW\",\n            \"display_url\": \"pic.twitter.com/PcSaXzfHMW\",\n            \"expanded_url\": \"http://twitter.com/AuctionCamera/status/505874883067129857/photo/1\",\n            \"type\": \"photo\",\n            \"sizes\": {\n              \"large\": {\n                \"w\": 600,\n                \"h\": 450,\n                \"resize\": \"fit\"\n              },\n              \"medium\": {\n                \"w\": 600,\n                \"h\": 450,\n                \"resize\": \"fit\"\n              },\n              \"thumb\": {\n                \"w\": 150,\n                \"h\": 150,\n                \"resize\": \"crop\"\n              },\n              \"small\": {\n                \"w\": 340,\n                \"h\": 255,\n                \"resize\": \"fit\"\n              }\n            }\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:05 +0000 2014\",\n      \"id\": 505874882995826700,\n      \"id_str\": \"505874882995826689\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/yabai_giness\\\" rel=\\\"nofollow\\\">ヤバすぎる!!ギネス世界記録</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2762405780,\n        \"id_str\": \"2762405780\",\n        \"name\": \"ヤバすぎる!!ギネス世界記録\",\n        \"screen_name\": \"yabai_giness\",\n        \"location\": \"\",\n        \"description\": \"世の中には、まだまだ知られていないスゴイ記録があるんです！ \\r\\nそんなギネス世界記録を見つけます☆ \\r\\nどんどん友達にも教えてあげてくださいねww \\r\\nヤバイと思ったら RT ＆ フォローを、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 36,\n        \"friends_count\": 985,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Aug 24 13:17:03 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 210,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/503531782919045121/NiIC25wL_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/503531782919045121/NiIC25wL_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2762405780/1408886328\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:05 +0000 2014\",\n      \"id\": 505874882870009860,\n      \"id_str\": \"505874882870009856\",\n      \"text\": \"すごく面白い夢見た。魔法科高校通ってて（別に一科二科の区別ない）クラスメイトにヨセアツメ面子や赤僕の拓也がいて、学校対抗合唱コンクールが開催されたり会場入りの際他校の妨害工作受けたり、拓也が連れてきてた実が人質に取られたりとにかくてんこ盛りだった楽しかった赤僕読みたい手元にない\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 597357105,\n        \"id_str\": \"597357105\",\n        \"name\": \"ふじよし\",\n        \"screen_name\": \"fuji_mark\",\n        \"location\": \"多摩動物公園\",\n        \"description\": \"成人腐女子\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 128,\n        \"friends_count\": 126,\n        \"listed_count\": 6,\n        \"created_at\": \"Sat Jun 02 10:06:05 +0000 2012\",\n        \"favourites_count\": 2842,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Irkutsk\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 10517,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"0099B9\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme4/bg.gif\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme4/bg.gif\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/503553738569560065/D_JW2dCJ_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/503553738569560065/D_JW2dCJ_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/597357105/1408864355\",\n        \"profile_link_color\": \"0099B9\",\n        \"profile_sidebar_border_color\": \"5ED4DC\",\n        \"profile_sidebar_fill_color\": \"95E8EC\",\n        \"profile_text_color\": \"3C3940\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:05 +0000 2014\",\n      \"id\": 505874882228281340,\n      \"id_str\": \"505874882228281345\",\n      \"text\": \"RT @oen_yakyu: ●継続試合（中京対崇徳）46回～　9時～\\n　〈ラジオ中継〉\\n　らじる★らじる→大阪放送局を選択→NHK-FM\\n●決勝戦(三浦対中京or崇徳)　12時30分～\\n　〈ラジオ中継〉\\n　らじる★らじる→大阪放送局を選択→NHK第一\\n　※神奈川の方は普通のラ…\",\n      \"source\": \"<a href=\\\"http://twicca.r246.jp/\\\" rel=\\\"nofollow\\\">twicca</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 18477566,\n        \"id_str\": \"18477566\",\n        \"name\": \"Natit（なち）＠そうだ、トップ行こう\",\n        \"screen_name\": \"natit_yso\",\n        \"location\": \"福岡市の端っこ\",\n        \"description\": \"ヤー・チャイカ。紫宝勢の末席くらいでQMAやってます。\\r\\n9/13（土）「九州杯」今年も宜しくお願いします！キーワードは「そうだ、トップ、行こう。」\\r\\nmore → http://t.co/ezuHyjF4Qy \\r\\n【旅の予定】9/20-22 関西 → 9/23-28 北海道ぐるり\",\n        \"url\": \"http://t.co/ll2yu78DGR\",\n        \"entities\": {\n          \"url\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/ll2yu78DGR\",\n                \"expanded_url\": \"http://qma-kyushu.sakura.ne.jp/\",\n                \"display_url\": \"qma-kyushu.sakura.ne.jp\",\n                \"indices\": [\n                  0,\n                  22\n                ]\n              }\n            ]\n          },\n          \"description\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/ezuHyjF4Qy\",\n                \"expanded_url\": \"http://twpf.jp/natit_yso\",\n                \"display_url\": \"twpf.jp/natit_yso\",\n                \"indices\": [\n                  83,\n                  105\n                ]\n              }\n            ]\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 591,\n        \"friends_count\": 548,\n        \"listed_count\": 93,\n        \"created_at\": \"Tue Dec 30 14:11:44 +0000 2008\",\n        \"favourites_count\": 11676,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Tokyo\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 130145,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"131516\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme14/bg.gif\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme14/bg.gif\",\n        \"profile_background_tile\": true,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/1556202861/chibi-Leon_normal.jpg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/1556202861/chibi-Leon_normal.jpg\",\n        \"profile_link_color\": \"009999\",\n        \"profile_sidebar_border_color\": \"EEEEEE\",\n        \"profile_sidebar_fill_color\": \"EFEFEF\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sat Aug 30 23:12:39 +0000 2014\",\n        \"id\": 505855649196953600,\n        \"id_str\": \"505855649196953600\",\n        \"text\": \"●継続試合（中京対崇徳）46回～　9時～\\n　〈ラジオ中継〉\\n　らじる★らじる→大阪放送局を選択→NHK-FM\\n●決勝戦(三浦対中京or崇徳)　12時30分～\\n　〈ラジオ中継〉\\n　らじる★らじる→大阪放送局を選択→NHK第一\\n　※神奈川の方は普通のラジオのNHK-FMでも\",\n        \"source\": \"<a href=\\\"http://twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2761692762,\n          \"id_str\": \"2761692762\",\n          \"name\": \"三浦学苑軟式野球部応援団！\",\n          \"screen_name\": \"oen_yakyu\",\n          \"location\": \"\",\n          \"description\": \"兵庫県で開催される「もう一つの甲子園」こと全国高校軟式野球選手権大会に南関東ブロックから出場する三浦学苑軟式野球部を応援する非公式アカウントです。\",\n          \"url\": \"http://t.co/Cn1tPTsBGY\",\n          \"entities\": {\n            \"url\": {\n              \"urls\": [\n                {\n                  \"url\": \"http://t.co/Cn1tPTsBGY\",\n                  \"expanded_url\": \"http://www.miura.ed.jp/index.html\",\n                  \"display_url\": \"miura.ed.jp/index.html\",\n                  \"indices\": [\n                    0,\n                    22\n                  ]\n                }\n              ]\n            },\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 464,\n          \"friends_count\": 117,\n          \"listed_count\": 4,\n          \"created_at\": \"Sun Aug 24 07:47:29 +0000 2014\",\n          \"favourites_count\": 69,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 553,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/504299474445811712/zsxJUmL0_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/504299474445811712/zsxJUmL0_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2761692762/1409069337\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 7,\n        \"favorite_count\": 2,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 7,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"oen_yakyu\",\n            \"name\": \"三浦学苑軟式野球部応援団！\",\n            \"id\": 2761692762,\n            \"id_str\": \"2761692762\",\n            \"indices\": [\n              3,\n              13\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:05 +0000 2014\",\n      \"id\": 505874882110824450,\n      \"id_str\": \"505874882110824448\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/sumahoanime\\\" rel=\\\"nofollow\\\">スマホに密封★アニメ画像</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2725976444,\n        \"id_str\": \"2725976444\",\n        \"name\": \"スマホに密封★アニメ画像\",\n        \"screen_name\": \"sumahoanime\",\n        \"location\": \"\",\n        \"description\": \"なんともめずらしい、いろんなキャラがスマホに閉じ込められています。 \\r\\nあなたのスマホにマッチする画像が見つかるかも♪  \\r\\n気に入ったら是非 RT ＆ フォローお願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 227,\n        \"friends_count\": 1918,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 12 11:27:54 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 527,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/499155646164393984/l5vSz5zu_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/499155646164393984/l5vSz5zu_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2725976444/1407843121\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:05 +0000 2014\",\n      \"id\": 505874881297133600,\n      \"id_str\": \"505874881297133568\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/mijika_kiken\\\" rel=\\\"nofollow\\\">アナタのそばの身近な危険</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2713926078,\n        \"id_str\": \"2713926078\",\n        \"name\": \"アナタのそばの身近な危険\",\n        \"screen_name\": \"mijika_kiken\",\n        \"location\": \"\",\n        \"description\": \"知らないうちにやっている危険な行動を見つけて自分を守りましょう。 役に立つと思ったら RT & 相互フォローで みなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 301,\n        \"friends_count\": 1871,\n        \"listed_count\": 0,\n        \"created_at\": \"Thu Aug 07 07:12:50 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 644,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/497279579245907968/Ftvms_HR_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/497279579245907968/Ftvms_HR_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2713926078/1407395683\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:04 +0000 2014\",\n      \"id\": 505874880294682600,\n      \"id_str\": \"505874880294682624\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/ninkimono_daosy\\\" rel=\\\"nofollow\\\">人気者♥デイジー大好き</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2726199583,\n        \"id_str\": \"2726199583\",\n        \"name\": \"人気者♥デイジー大好き\",\n        \"screen_name\": \"ninkimono_daosy\",\n        \"location\": \"\",\n        \"description\": \"デイジーの想いを、代わりにつぶやきます♪  \\r\\nデイジーのかわいい画像やグッズも大好きｗ  \\r\\n可愛いと思ったら RT & フォローお願いします。 \\r\\n「非公式アカウントです」\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 190,\n        \"friends_count\": 474,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 12 12:58:33 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 469,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/499178622494576640/EzWKdR_p_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/499178622494576640/EzWKdR_p_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2726199583/1407848478\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:04 +0000 2014\",\n      \"id\": 505874879392919550,\n      \"id_str\": \"505874879392919552\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/shiawasehanashi\\\" rel=\\\"nofollow\\\">幸せ話でフル充電しよう</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2721453846,\n        \"id_str\": \"2721453846\",\n        \"name\": \"幸せ話でフル充電しようww\",\n        \"screen_name\": \"shiawasehanashi\",\n        \"location\": \"\",\n        \"description\": \"私が聞いて心に残った感動エピソードをお届けします。\\r\\n少しでも多くの人へ届けたいと思います。\\r\\nいいなと思ったら RT & フォローお願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 302,\n        \"friends_count\": 1886,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Aug 10 12:16:25 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 508,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/498444554916216832/ml8EiQka_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/498444554916216832/ml8EiQka_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2721453846/1407673555\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:04 +0000 2014\",\n      \"id\": 505874879103520800,\n      \"id_str\": \"505874879103520768\",\n      \"text\": \"RT @Ang_Angel73: 逢坂「くっ…僕の秘められし右目が…！」\\n一同「……………。」\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2571968509,\n        \"id_str\": \"2571968509\",\n        \"name\": \"イイヒト\",\n        \"screen_name\": \"IwiAlohomora\",\n        \"location\": \"草葉の陰\",\n        \"description\": \"大人です。気軽に絡んでくれるとうれしいです！ イラスト大好き！（≧∇≦） BF(仮）逢坂紘夢くんにお熱です！ マンガも好き♡欲望のままにつぶやきますのでご注意を。雑食♡\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 156,\n        \"friends_count\": 165,\n        \"listed_count\": 14,\n        \"created_at\": \"Tue Jun 17 01:18:34 +0000 2014\",\n        \"favourites_count\": 11926,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 7234,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/504990074862178304/DoBvOb9c_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/504990074862178304/DoBvOb9c_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2571968509/1409106012\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:27:01 +0000 2014\",\n        \"id\": 505874364596621300,\n        \"id_str\": \"505874364596621313\",\n        \"text\": \"逢坂「くっ…僕の秘められし右目が…！」\\n一同「……………。」\",\n        \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 1600750194,\n          \"id_str\": \"1600750194\",\n          \"name\": \"臙脂\",\n          \"screen_name\": \"Ang_Angel73\",\n          \"location\": \"逢坂紘夢のそばに\",\n          \"description\": \"自由、気ままに。詳しくはツイプロ。アイコンはまめせろりちゃんからだよ☆～（ゝ。∂）\",\n          \"url\": \"http://t.co/kKCCwHTaph\",\n          \"entities\": {\n            \"url\": {\n              \"urls\": [\n                {\n                  \"url\": \"http://t.co/kKCCwHTaph\",\n                  \"expanded_url\": \"http://twpf.jp/Ang_Angel73\",\n                  \"display_url\": \"twpf.jp/Ang_Angel73\",\n                  \"indices\": [\n                    0,\n                    22\n                  ]\n                }\n              ]\n            },\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 155,\n          \"friends_count\": 154,\n          \"listed_count\": 10,\n          \"created_at\": \"Wed Jul 17 11:44:31 +0000 2013\",\n          \"favourites_count\": 2115,\n          \"utc_offset\": 32400,\n          \"time_zone\": \"Irkutsk\",\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 12342,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/378800000027871001/aa764602922050b22bf9ade3741367dc.jpeg\",\n          \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/378800000027871001/aa764602922050b22bf9ade3741367dc.jpeg\",\n          \"profile_background_tile\": true,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/500293786287603713/Ywyh69eG_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/500293786287603713/Ywyh69eG_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1600750194/1403879183\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"FFFFFF\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": false,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 2,\n        \"favorite_count\": 2,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 2,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"Ang_Angel73\",\n            \"name\": \"臙脂\",\n            \"id\": 1600750194,\n            \"id_str\": \"1600750194\",\n            \"indices\": [\n              3,\n              15\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:04 +0000 2014\",\n      \"id\": 505874877933314050,\n      \"id_str\": \"505874877933314048\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/honne_jyoshi1\\\" rel=\\\"nofollow\\\">秘密の本音♥女子編</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2762237088,\n        \"id_str\": \"2762237088\",\n        \"name\": \"秘密の本音♥女子編\",\n        \"screen_name\": \"honne_jyoshi1\",\n        \"location\": \"\",\n        \"description\": \"普段は言えない「お・ん・なの建前と本音」をつぶやきます。 気になる あの人の本音も、わかるかも!? \\r\\nわかるって人は RT ＆ フォローを、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 123,\n        \"friends_count\": 988,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Aug 24 12:27:07 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 211,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/503519190364332032/BVjS_XBD_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/503519190364332032/BVjS_XBD_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2762237088/1408883328\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:04 +0000 2014\",\n      \"id\": 505874877148958700,\n      \"id_str\": \"505874877148958721\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/bi_iroenpitu\\\" rel=\\\"nofollow\\\">美し過ぎる★色鉛筆アート</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2740047343,\n        \"id_str\": \"2740047343\",\n        \"name\": \"美し過ぎる★色鉛筆アート\",\n        \"screen_name\": \"bi_iroenpitu\",\n        \"location\": \"\",\n        \"description\": \"ほんとにコレ色鉛筆なの～？ \\r\\n本物と見間違える程のリアリティを御覧ください。 \\r\\n気に入ったら RT & 相互フォローお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 321,\n        \"friends_count\": 1990,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Aug 17 16:15:05 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 396,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501039950972739585/isigil4V_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501039950972739585/isigil4V_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2740047343/1408292283\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:03 +0000 2014\",\n      \"id\": 505874876465295360,\n      \"id_str\": \"505874876465295361\",\n      \"text\": \"【H15-9-4】道路を利用する利益は反射的利益であり、建築基準法に基づいて道路一の指定がなされている私道の敷地所有者に対し、通行妨害行為の排除を求める人格的権利を認めることはできない。→誤。\",\n      \"source\": \"<a href=\\\"http://twittbot.net/\\\" rel=\\\"nofollow\\\">twittbot.net</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 1886570281,\n        \"id_str\": \"1886570281\",\n        \"name\": \"行政法過去問\",\n        \"screen_name\": \"gyosei_goukaku\",\n        \"location\": \"\",\n        \"description\": \"行政書士の本試験問題の過去問（行政法分野）をランダムにつぶやきます。問題は随時追加中です。基本的に相互フォローします。※140字制限の都合上、表現は一部変えてあります。解説も文字数が可能であればなるべく…。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 1554,\n        \"friends_count\": 1772,\n        \"listed_count\": 12,\n        \"created_at\": \"Fri Sep 20 13:24:29 +0000 2013\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 14565,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000487791870/0e45e3c089c6b641cdd8d1b6f1ceb8a4_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000487791870/0e45e3c089c6b641cdd8d1b6f1ceb8a4_normal.jpeg\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:03 +0000 2014\",\n      \"id\": 505874876318511100,\n      \"id_str\": \"505874876318511104\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/kgoehassou\\\" rel=\\\"nofollow\\\">K点越えの発想力!!</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2744863153,\n        \"id_str\": \"2744863153\",\n        \"name\": \"K点越えの発想力!!\",\n        \"screen_name\": \"kgoehassou\",\n        \"location\": \"\",\n        \"description\": \"いったいどうやったら、その領域にたどりつけるのか！？ \\r\\nそんな思わず笑ってしまう別世界の発想力をお届けします♪ \\r\\nおもしろかったら RT & 相互フォローで、お願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 76,\n        \"friends_count\": 957,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 19 13:00:08 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 341,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501715651686178816/Fgpe0B8M_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501715651686178816/Fgpe0B8M_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2744863153/1408453328\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:03 +0000 2014\",\n      \"id\": 505874875521581060,\n      \"id_str\": \"505874875521581056\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/ketueki_sinjitu\\\" rel=\\\"nofollow\\\">血液型の真実２</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2698625690,\n        \"id_str\": \"2698625690\",\n        \"name\": \"血液型の真実\",\n        \"screen_name\": \"ketueki_sinjitu\",\n        \"location\": \"\",\n        \"description\": \"やっぱりそうだったのか～♪\\r\\n意外な、あの人の裏側を見つけます。\\r\\n面白かったらRT & 相互フォローでみなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 193,\n        \"friends_count\": 1785,\n        \"listed_count\": 1,\n        \"created_at\": \"Fri Aug 01 16:11:40 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 769,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/495241446706790400/h_0DSFPG_normal.png\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/495241446706790400/h_0DSFPG_normal.png\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2698625690/1406911319\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:03 +0000 2014\",\n      \"id\": 505874874712072200,\n      \"id_str\": \"505874874712072192\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/yahari_kamiga\\\" rel=\\\"nofollow\\\">やっぱり神が？？を作る時</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2714868440,\n        \"id_str\": \"2714868440\",\n        \"name\": \"やっぱり神が？？を作る時\",\n        \"screen_name\": \"yahari_kamiga\",\n        \"location\": \"\",\n        \"description\": \"やっぱり今日も、神は何かを作ろうとしています　笑。　どうやって作っているのかわかったら RT & 相互フォローで みなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 243,\n        \"friends_count\": 1907,\n        \"listed_count\": 0,\n        \"created_at\": \"Thu Aug 07 16:12:33 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 590,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/497416102108884992/NRMEbKaT_normal.png\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/497416102108884992/NRMEbKaT_normal.png\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2714868440/1407428237\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:03 +0000 2014\",\n      \"id\": 505874874275864600,\n      \"id_str\": \"505874874275864576\",\n      \"text\": \"RT @takuramix: 福島第一原発の構内地図がこちら。\\nhttp://t.co/ZkU4TZCGPG\\nどう見ても、１号機。\\nRT @Lightworker19: 【大拡散】　 福島第一原発　４号機　爆発動画　40秒～ 　http://t.co/lmlgp38fgZ\",\n      \"source\": \"<a href=\\\"http://twitter.softama.com/\\\" rel=\\\"nofollow\\\">ツイタマ</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 62525372,\n        \"id_str\": \"62525372\",\n        \"name\": \"NANCY-MOON☆ひよこちゃん☆\",\n        \"screen_name\": \"nancy_moon_703\",\n        \"location\": \"JAPAN\",\n        \"description\": \"【無断転載禁止･コピペ禁止・非公式RT禁止】【必読！】⇒ http://t.co/nuUvfUVD 今現在活動中の東方神起YUNHO＆CHANGMINの2人を全力で応援しています!!(^_-)-☆ ※東方神起及びYUNHO＆CHANGMINを応援していない方・鍵付ユーザーのフォローお断り！\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/nuUvfUVD\",\n                \"expanded_url\": \"http://goo.gl/SrGLb\",\n                \"display_url\": \"goo.gl/SrGLb\",\n                \"indices\": [\n                  29,\n                  49\n                ]\n              }\n            ]\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 270,\n        \"friends_count\": 328,\n        \"listed_count\": 4,\n        \"created_at\": \"Mon Aug 03 14:22:24 +0000 2009\",\n        \"favourites_count\": 3283,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Tokyo\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 180310,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"642D8B\",\n        \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/470849781397336064/ltM6EdFn.jpeg\",\n        \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/470849781397336064/ltM6EdFn.jpeg\",\n        \"profile_background_tile\": true,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/3699005246/9ba2e306518d296b68b7cbfa5e4ce4e6_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/3699005246/9ba2e306518d296b68b7cbfa5e4ce4e6_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/62525372/1401094223\",\n        \"profile_link_color\": \"FF0000\",\n        \"profile_sidebar_border_color\": \"FFFFFF\",\n        \"profile_sidebar_fill_color\": \"F065A8\",\n        \"profile_text_color\": \"080808\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sat Aug 30 21:21:33 +0000 2014\",\n        \"id\": 505827689660313600,\n        \"id_str\": \"505827689660313600\",\n        \"text\": \"福島第一原発の構内地図がこちら。\\nhttp://t.co/ZkU4TZCGPG\\nどう見ても、１号機。\\nRT @Lightworker19: 【大拡散】　 福島第一原発　４号機　爆発動画　40秒～ 　http://t.co/lmlgp38fgZ\",\n        \"source\": \"<a href=\\\"https://about.twitter.com/products/tweetdeck\\\" rel=\\\"nofollow\\\">TweetDeck</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": 505774460910043140,\n        \"in_reply_to_status_id_str\": \"505774460910043136\",\n        \"in_reply_to_user_id\": 238157843,\n        \"in_reply_to_user_id_str\": \"238157843\",\n        \"in_reply_to_screen_name\": \"Lightworker19\",\n        \"user\": {\n          \"id\": 29599253,\n          \"id_str\": \"29599253\",\n          \"name\": \"タクラミックス\",\n          \"screen_name\": \"takuramix\",\n          \"location\": \"i7\",\n          \"description\": \"私の機能一覧：歌う、演劇、ネットワークエンジニア、ライター、プログラマ、翻訳、シルバーアクセサリ、……何をやってる人かは良くわからない人なので、「機能」が欲しい人は私にがっかりするでしょう。私って人間に御用があるなら別ですが。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 5136,\n          \"friends_count\": 724,\n          \"listed_count\": 335,\n          \"created_at\": \"Wed Apr 08 01:10:58 +0000 2009\",\n          \"favourites_count\": 21363,\n          \"utc_offset\": 32400,\n          \"time_zone\": \"Tokyo\",\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 70897,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/2049751947/takuramix1204_normal.jpg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/2049751947/takuramix1204_normal.jpg\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 1,\n        \"favorite_count\": 1,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [\n            {\n              \"url\": \"http://t.co/ZkU4TZCGPG\",\n              \"expanded_url\": \"http://www.tepco.co.jp/nu/fukushima-np/review/images/review1_01.gif\",\n              \"display_url\": \"tepco.co.jp/nu/fukushima-n…\",\n              \"indices\": [\n                17,\n                39\n              ]\n            },\n            {\n              \"url\": \"http://t.co/lmlgp38fgZ\",\n              \"expanded_url\": \"http://youtu.be/gDXEhyuVSDk\",\n              \"display_url\": \"youtu.be/gDXEhyuVSDk\",\n              \"indices\": [\n                99,\n                121\n              ]\n            }\n          ],\n          \"user_mentions\": [\n            {\n              \"screen_name\": \"Lightworker19\",\n              \"name\": \"Lightworker\",\n              \"id\": 238157843,\n              \"id_str\": \"238157843\",\n              \"indices\": [\n                54,\n                68\n              ]\n            }\n          ]\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"possibly_sensitive\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 1,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [\n          {\n            \"url\": \"http://t.co/ZkU4TZCGPG\",\n            \"expanded_url\": \"http://www.tepco.co.jp/nu/fukushima-np/review/images/review1_01.gif\",\n            \"display_url\": \"tepco.co.jp/nu/fukushima-n…\",\n            \"indices\": [\n              32,\n              54\n            ]\n          },\n          {\n            \"url\": \"http://t.co/lmlgp38fgZ\",\n            \"expanded_url\": \"http://youtu.be/gDXEhyuVSDk\",\n            \"display_url\": \"youtu.be/gDXEhyuVSDk\",\n            \"indices\": [\n              114,\n              136\n            ]\n          }\n        ],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"takuramix\",\n            \"name\": \"タクラミックス\",\n            \"id\": 29599253,\n            \"id_str\": \"29599253\",\n            \"indices\": [\n              3,\n              13\n            ]\n          },\n          {\n            \"screen_name\": \"Lightworker19\",\n            \"name\": \"Lightworker\",\n            \"id\": 238157843,\n            \"id_str\": \"238157843\",\n            \"indices\": [\n              69,\n              83\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:03 +0000 2014\",\n      \"id\": 505874873961308160,\n      \"id_str\": \"505874873961308160\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/anayuki_suki\\\" rel=\\\"nofollow\\\">やっぱりアナ雪が好き♥</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2714052962,\n        \"id_str\": \"2714052962\",\n        \"name\": \"やっぱりアナ雪が好き♥\",\n        \"screen_name\": \"anayuki_suki\",\n        \"location\": \"\",\n        \"description\": \"なんだかんだ言ってもやっぱりアナ雪が好きなんですよね～♪ \\r\\n私も好きって人は RT & 相互フォローで みなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 368,\n        \"friends_count\": 1826,\n        \"listed_count\": 1,\n        \"created_at\": \"Thu Aug 07 08:29:13 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 670,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/497299646662705153/KMo3gkv7_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/497299646662705153/KMo3gkv7_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2714052962/1407400477\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"zh\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:03 +0000 2014\",\n      \"id\": 505874873759977500,\n      \"id_str\": \"505874873759977473\",\n      \"text\": \"四川盆地江淮等地将有强降雨 开学日多地将有雨: 　　中新网8月31日电 据中央气象台消息，江淮东部、四川盆地东北部等地今天(31日)又将迎来一场暴雨或大暴雨天气。明天9月1日，是中小学生开学的日子。预计明天，内蒙古中部、... http://t.co/toQgVlXPyH\",\n      \"source\": \"<a href=\\\"http://twitterfeed.com\\\" rel=\\\"nofollow\\\">twitterfeed</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2281979863,\n        \"id_str\": \"2281979863\",\n        \"name\": \"News 24h China\",\n        \"screen_name\": \"news24hchn\",\n        \"location\": \"\",\n        \"description\": \"\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 719,\n        \"friends_count\": 807,\n        \"listed_count\": 7,\n        \"created_at\": \"Wed Jan 08 10:56:04 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": 7200,\n        \"time_zone\": \"Amsterdam\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 94782,\n        \"lang\": \"it\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/452558963754561536/QPID3isM.jpeg\",\n        \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/452558963754561536/QPID3isM.jpeg\",\n        \"profile_background_tile\": true,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/439031926569979904/SlBH9iMg_normal.png\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/439031926569979904/SlBH9iMg_normal.png\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2281979863/1393508427\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"FFFFFF\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [\n          {\n            \"url\": \"http://t.co/toQgVlXPyH\",\n            \"expanded_url\": \"http://news24h.allnews24h.com/FX54\",\n            \"display_url\": \"news24h.allnews24h.com/FX54\",\n            \"indices\": [\n              114,\n              136\n            ]\n          }\n        ],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"zh\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:03 +0000 2014\",\n      \"id\": 505874873248268300,\n      \"id_str\": \"505874873248268288\",\n      \"text\": \"@Take3carnifex それは大変！一大事！命に関わります！\\n是非うちに受診して下さい！\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": 505874353716600800,\n      \"in_reply_to_status_id_str\": \"505874353716600832\",\n      \"in_reply_to_user_id\": 535179785,\n      \"in_reply_to_user_id_str\": \"535179785\",\n      \"in_reply_to_screen_name\": \"Take3carnifex\",\n      \"user\": {\n        \"id\": 226897125,\n        \"id_str\": \"226897125\",\n        \"name\": \"ひかり＠hack\",\n        \"screen_name\": \"hikari_thirteen\",\n        \"location\": \"\",\n        \"description\": \"hackというバンドで、ギターを弾いています。 モンハンとポケモンが好き。 \\nSPRING WATER リードギター(ヘルプ)\\nROCK OUT レギュラーDJ\",\n        \"url\": \"http://t.co/SQLZnvjVxB\",\n        \"entities\": {\n          \"url\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/SQLZnvjVxB\",\n                \"expanded_url\": \"http://s.ameblo.jp/hikarihikarimay\",\n                \"display_url\": \"s.ameblo.jp/hikarihikarimay\",\n                \"indices\": [\n                  0,\n                  22\n                ]\n              }\n            ]\n          },\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 296,\n        \"friends_count\": 348,\n        \"listed_count\": 3,\n        \"created_at\": \"Wed Dec 15 10:51:51 +0000 2010\",\n        \"favourites_count\": 33,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Tokyo\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 3293,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"131516\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme14/bg.gif\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme14/bg.gif\",\n        \"profile_background_tile\": true,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000504584690/8ccba98eda8c0fd1d15a74e401f621d1_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000504584690/8ccba98eda8c0fd1d15a74e401f621d1_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/226897125/1385551752\",\n        \"profile_link_color\": \"009999\",\n        \"profile_sidebar_border_color\": \"EEEEEE\",\n        \"profile_sidebar_fill_color\": \"EFEFEF\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"Take3carnifex\",\n            \"name\": \"Take3\",\n            \"id\": 535179785,\n            \"id_str\": \"535179785\",\n            \"indices\": [\n              0,\n              14\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:03 +0000 2014\",\n      \"id\": 505874873223110660,\n      \"id_str\": \"505874873223110656\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/imadokijoshiko\\\" rel=\\\"nofollow\\\">今どき女子高生の謎w</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2744236873,\n        \"id_str\": \"2744236873\",\n        \"name\": \"今どき女子高生の謎w\",\n        \"screen_name\": \"imadokijoshiko\",\n        \"location\": \"\",\n        \"description\": \"思わず耳を疑う男性の方の夢を壊してしまう、\\r\\n女子高生達のディープな世界を見てください☆  \\r\\nおもしろいと思ったら RT & 相互フォローでお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 79,\n        \"friends_count\": 973,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 19 07:06:47 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 354,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501627015980535808/avWBgkDh_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501627015980535808/avWBgkDh_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2744236873/1408432455\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:02 +0000 2014\",\n      \"id\": 505874872463925250,\n      \"id_str\": \"505874872463925248\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/risou_dansei\\\" rel=\\\"nofollow\\\">私の理想の男性像</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2761782601,\n        \"id_str\": \"2761782601\",\n        \"name\": \"私の理想の男性像\",\n        \"screen_name\": \"risou_dansei\",\n        \"location\": \"\",\n        \"description\": \"こんな男性♥ ほんとにいるのかしら!? \\r\\n「いたらいいのになぁ」っていう理想の男性像をを、私目線でつぶやきます。 \\r\\nいいなと思った人は RT & フォローお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 69,\n        \"friends_count\": 974,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Aug 24 08:03:32 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 208,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/503452833719410688/tFU509Yk_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/503452833719410688/tFU509Yk_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2761782601/1408867519\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:02 +0000 2014\",\n      \"id\": 505874871713157100,\n      \"id_str\": \"505874871713157120\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/gekiatu_6byou\\\" rel=\\\"nofollow\\\">激アツ★6秒動画</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2725690658,\n        \"id_str\": \"2725690658\",\n        \"name\": \"激アツ★6秒動画\",\n        \"screen_name\": \"gekiatu_6byou\",\n        \"location\": \"\",\n        \"description\": \"話題の６秒動画！ \\r\\n思わず「ほんとかよっ」てツッコんでしまう内容のオンパレード！ \\r\\nおもしろかったら、是非 RT ＆ フォローお願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 195,\n        \"friends_count\": 494,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 12 08:17:29 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 477,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/499107997444886528/3rl6FrIk_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/499107997444886528/3rl6FrIk_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2725690658/1407832963\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:02 +0000 2014\",\n      \"id\": 505874871616671740,\n      \"id_str\": \"505874871616671744\",\n      \"text\": \"爆笑ｗｗ珍解答集！\\n先生のツメの甘さと生徒のセンスを感じる一問一答だとFBでも話題！！\\nうどん天下一決定戦ウィンドウズ9三重高校竹内由恵アナ花火保険\\nhttp://t.co/jRWJt8IrSB http://t.co/okrAoxSbt0\",\n      \"source\": \"<a href=\\\"https://twitter.com/waraeru_kan\\\" rel=\\\"nofollow\\\">笑える博物館</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2748747362,\n        \"id_str\": \"2748747362\",\n        \"name\": \"笑える博物館\",\n        \"screen_name\": \"waraeru_kan\",\n        \"location\": \"\",\n        \"description\": \"\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 19,\n        \"friends_count\": 10,\n        \"listed_count\": 0,\n        \"created_at\": \"Wed Aug 20 11:11:04 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 15137,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png\",\n        \"profile_image_url_https\": \"https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": true,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [\n          {\n            \"url\": \"http://t.co/jRWJt8IrSB\",\n            \"expanded_url\": \"http://bit.ly/1qBa1nl\",\n            \"display_url\": \"bit.ly/1qBa1nl\",\n            \"indices\": [\n              75,\n              97\n            ]\n          }\n        ],\n        \"user_mentions\": [],\n        \"media\": [\n          {\n            \"id\": 505874871344066560,\n            \"id_str\": \"505874871344066560\",\n            \"indices\": [\n              98,\n              120\n            ],\n            \"media_url\": \"http://pbs.twimg.com/media/BwU6g-dCcAALxAW.png\",\n            \"media_url_https\": \"https://pbs.twimg.com/media/BwU6g-dCcAALxAW.png\",\n            \"url\": \"http://t.co/okrAoxSbt0\",\n            \"display_url\": \"pic.twitter.com/okrAoxSbt0\",\n            \"expanded_url\": \"http://twitter.com/waraeru_kan/status/505874871616671744/photo/1\",\n            \"type\": \"photo\",\n            \"sizes\": {\n              \"small\": {\n                \"w\": 340,\n                \"h\": 425,\n                \"resize\": \"fit\"\n              },\n              \"thumb\": {\n                \"w\": 150,\n                \"h\": 150,\n                \"resize\": \"crop\"\n              },\n              \"large\": {\n                \"w\": 600,\n                \"h\": 750,\n                \"resize\": \"fit\"\n              },\n              \"medium\": {\n                \"w\": 600,\n                \"h\": 750,\n                \"resize\": \"fit\"\n              }\n            }\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:02 +0000 2014\",\n      \"id\": 505874871268540400,\n      \"id_str\": \"505874871268540416\",\n      \"text\": \"@nasan_arai \\n名前→なーさん\\n第一印象→誰。(´･_･`)\\n今の印象→れいら♡\\nLINE交換できる？→してる(｢･ω･)｢\\n好きなところ→可愛い優しい優しい優しい\\n最後に一言→なーさん好き〜(´･_･`)♡GEM現場おいでね(´･_･`)♡\\n\\n#ふぁぼした人にやる\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": 1717603286,\n      \"in_reply_to_user_id_str\": \"1717603286\",\n      \"in_reply_to_screen_name\": \"nasan_arai\",\n      \"user\": {\n        \"id\": 2417626784,\n        \"id_str\": \"2417626784\",\n        \"name\": \"✩.ゆきଘ(*´꒳`)\",\n        \"screen_name\": \"Ymaaya_gem\",\n        \"location\": \"\",\n        \"description\": \"⁽⁽٩( ᐖ )۶⁾⁾ ❤︎ 武 田 舞 彩 ❤︎ ₍₍٩( ᐛ )۶₎₎\",\n        \"url\": \"http://t.co/wR0Qb76TbB\",\n        \"entities\": {\n          \"url\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/wR0Qb76TbB\",\n                \"expanded_url\": \"http://twpf.jp/Ymaaya_gem\",\n                \"display_url\": \"twpf.jp/Ymaaya_gem\",\n                \"indices\": [\n                  0,\n                  22\n                ]\n              }\n            ]\n          },\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 198,\n        \"friends_count\": 245,\n        \"listed_count\": 1,\n        \"created_at\": \"Sat Mar 29 16:03:06 +0000 2014\",\n        \"favourites_count\": 3818,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": true,\n        \"verified\": false,\n        \"statuses_count\": 8056,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/505516858816987136/4gFGjHzu_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/505516858816987136/4gFGjHzu_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2417626784/1407764793\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [\n          {\n            \"text\": \"ふぁぼした人にやる\",\n            \"indices\": [\n              128,\n              138\n            ]\n          }\n        ],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"nasan_arai\",\n            \"name\": \"なーさん\",\n            \"id\": 1717603286,\n            \"id_str\": \"1717603286\",\n            \"indices\": [\n              0,\n              11\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:02 +0000 2014\",\n      \"id\": 505874871218225150,\n      \"id_str\": \"505874871218225152\",\n      \"text\": \"\\\"ソードマスター\\\"剣聖カミイズミ (CV:緑川光)-「ソードマスター」のアスタリスク所持者\\n第一師団団長にして「剣聖」の称号を持つ剣士。イデアの剣の師匠。 \\n敵味方からも尊敬される一流の武人。\",\n      \"source\": \"<a href=\\\"http://twittbot.net/\\\" rel=\\\"nofollow\\\">twittbot.net</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 1435517814,\n        \"id_str\": \"1435517814\",\n        \"name\": \"俺、関係ないよ？\",\n        \"screen_name\": \"BDFF_LOVE\",\n        \"location\": \"ルクセンダルクorリングアベルさんの隣\",\n        \"description\": \"自分なりに生きる人、最後まであきらめないの。でも、フォローありがとう…。@ringo_BDFFLOVE ←は、妹です。時々、会話します。「現在BOTで、BDFFのこと呟くよ！」夜は、全滅　「BDFFプレイ中」詳しくは、ツイプロみてください！(絶対)\",\n        \"url\": \"http://t.co/5R4dzpbWX2\",\n        \"entities\": {\n          \"url\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/5R4dzpbWX2\",\n                \"expanded_url\": \"http://twpf.jp/BDFF_LOVE\",\n                \"display_url\": \"twpf.jp/BDFF_LOVE\",\n                \"indices\": [\n                  0,\n                  22\n                ]\n              }\n            ]\n          },\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 1066,\n        \"friends_count\": 1799,\n        \"listed_count\": 6,\n        \"created_at\": \"Fri May 17 12:33:23 +0000 2013\",\n        \"favourites_count\": 1431,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Irkutsk\",\n        \"geo_enabled\": true,\n        \"verified\": false,\n        \"statuses_count\": 6333,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/505696320380612608/qvaxb_zx_normal.png\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/505696320380612608/qvaxb_zx_normal.png\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1435517814/1409401948\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:02 +0000 2014\",\n      \"id\": 505874871130136600,\n      \"id_str\": \"505874871130136576\",\n      \"text\": \"闇「リンと付き合うに当たって歳の差以外にもいろいろ壁があったんだよ。愛し隊の妨害とか風紀厨の生徒会長とか…」\\n一号「リンちゃんを泣かせたらシメるかんね！」\\n二号「リンちゃんにやましい事したら×す…」\\n執行部「不純な交際は僕が取り締まろうじゃないか…」\\n闇「（消される）」\",\n      \"source\": \"<a href=\\\"http://twittbot.net/\\\" rel=\\\"nofollow\\\">twittbot.net</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2386208737,\n        \"id_str\": \"2386208737\",\n        \"name\": \"闇未来Bot\",\n        \"screen_name\": \"StxRinFbot\",\n        \"location\": \"DIVAルーム\",\n        \"description\": \"ProjectDIVAのモジュール・ストレンジダーク×鏡音リンFutureStyleの自己満足非公式Bot　マセレン仕様。CP要素あります。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 7,\n        \"friends_count\": 2,\n        \"listed_count\": 0,\n        \"created_at\": \"Thu Mar 13 02:58:09 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 4876,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/443948925351755776/6rmljL5C_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/443948925351755776/6rmljL5C_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2386208737/1396259004\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:02 +0000 2014\",\n      \"id\": 505874870933016600,\n      \"id_str\": \"505874870933016576\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/suitestengoku\\\" rel=\\\"nofollow\\\">絶品!!スイーツ天国</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2725681663,\n        \"id_str\": \"2725681663\",\n        \"name\": \"絶品!!スイーツ天国\",\n        \"screen_name\": \"suitestengoku\",\n        \"location\": \"\",\n        \"description\": \"美味しそうなスイーツって、見てるだけで幸せな気分になれますね♪\\r\\nそんな素敵なスイーツに出会いたいです。\\r\\n食べたいと思ったら是非 RT ＆ フォローお願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 401,\n        \"friends_count\": 1877,\n        \"listed_count\": 1,\n        \"created_at\": \"Tue Aug 12 07:43:52 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 554,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/499099533507178496/g5dNpArt_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/499099533507178496/g5dNpArt_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2725681663/1407829743\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:02 +0000 2014\",\n      \"id\": 505874870148669440,\n      \"id_str\": \"505874870148669440\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/dengeki_omoro\\\" rel=\\\"nofollow\\\">電車厳禁!!おもしろ話</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2699667800,\n        \"id_str\": \"2699667800\",\n        \"name\": \"電車厳禁!!おもしろ話w\",\n        \"screen_name\": \"dengeki_omoro\",\n        \"location\": \"\",\n        \"description\": \"日常のオモシロくて笑える場面を探します♪\\r\\n面白かったらRT & 相互フォローでみなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 461,\n        \"friends_count\": 1919,\n        \"listed_count\": 0,\n        \"created_at\": \"Sat Aug 02 02:16:32 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 728,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/495400387961036800/BBMb_hcG_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/495400387961036800/BBMb_hcG_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2699667800/1406947654\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:02 +0000 2014\",\n      \"id\": 505874869339189250,\n      \"id_str\": \"505874869339189249\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/ketueki_face\\\" rel=\\\"nofollow\\\">笑えるwwランキング2</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2695745652,\n        \"id_str\": \"2695745652\",\n        \"name\": \"笑えるwwランキング\",\n        \"screen_name\": \"wara_runk\",\n        \"location\": \"\",\n        \"description\": \"知ってると使えるランキングを探そう。\\r\\n面白かったらRT & 相互フォローでみなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 314,\n        \"friends_count\": 1943,\n        \"listed_count\": 1,\n        \"created_at\": \"Thu Jul 31 13:51:57 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 737,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/494844659856728064/xBQfnm5J_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/494844659856728064/xBQfnm5J_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2695745652/1406815103\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:02 +0000 2014\",\n      \"id\": 505874868533854200,\n      \"id_str\": \"505874868533854209\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/sunikar_daisuki\\\" rel=\\\"nofollow\\\">スニーカー大好き★図鑑</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2707963890,\n        \"id_str\": \"2707963890\",\n        \"name\": \"スニーカー大好き★図鑑\",\n        \"screen_name\": \"sunikar_daisuki\",\n        \"location\": \"\",\n        \"description\": \"スニーカー好きを見つけて仲間になろう♪\\r\\n気に入ったら RT & 相互フォローで みなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 394,\n        \"friends_count\": 1891,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 05 01:54:28 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 642,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/496474952631996416/f0C_u3_u_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/496474952631996416/f0C_u3_u_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2707963890/1407203869\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"zh\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:01 +0000 2014\",\n      \"id\": 505874867997380600,\n      \"id_str\": \"505874867997380608\",\n      \"text\": \"\\\"@BelloTexto: ¿Quieres ser feliz? \\n一\\\"No stalkees\\\" \\n一\\\"No stalkees\\\" \\n一\\\"No stalkees\\\" \\n一\\\"No stalkees\\\" \\n一\\\"No stalkees\\\" \\n一\\\"No stalkees\\\".\\\"\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2249378935,\n        \"id_str\": \"2249378935\",\n        \"name\": \"Maggie Becerril \",\n        \"screen_name\": \"maggdesie\",\n        \"location\": \"\",\n        \"description\": \"cambiando la vida de las personas.\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 120,\n        \"friends_count\": 391,\n        \"listed_count\": 0,\n        \"created_at\": \"Mon Dec 16 21:56:49 +0000 2013\",\n        \"favourites_count\": 314,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 1657,\n        \"lang\": \"es\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/505093371665604608/K0x_LV2y_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/505093371665604608/K0x_LV2y_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2249378935/1409258479\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"BelloTexto\",\n            \"name\": \"Indirectas... ✉\",\n            \"id\": 833083404,\n            \"id_str\": \"833083404\",\n            \"indices\": [\n              1,\n              12\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"zh\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:01 +0000 2014\",\n      \"id\": 505874867720183800,\n      \"id_str\": \"505874867720183808\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/iseiuragao\\\" rel=\\\"nofollow\\\">ザ・異性の裏の顔</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2719746578,\n        \"id_str\": \"2719746578\",\n        \"name\": \"ザ・異性の裏の顔\",\n        \"screen_name\": \"iseiuragao\",\n        \"location\": \"\",\n        \"description\": \"異性について少し学ぶことで、必然的にモテるようになる！？　相手を理解することで見えてくるもの「それは・・・●●」　いい内容だと思ったら RT & フォローもお願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 238,\n        \"friends_count\": 1922,\n        \"listed_count\": 0,\n        \"created_at\": \"Sat Aug 09 17:18:43 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 532,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/498157077726900224/tW8q4di__normal.png\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/498157077726900224/tW8q4di__normal.png\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2719746578/1407604947\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:01 +0000 2014\",\n      \"id\": 505874866910687200,\n      \"id_str\": \"505874866910687233\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/bijyoalbum\\\" rel=\\\"nofollow\\\">超w美女☆アルバム</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2744054334,\n        \"id_str\": \"2744054334\",\n        \"name\": \"超w美女☆アルバム\",\n        \"screen_name\": \"bijyoalbum\",\n        \"location\": \"\",\n        \"description\": \"「おお～っ！いいね～」って、思わず言ってしまう、美女を見つけます☆ \\r\\nタイプだと思ったら RT & 相互フォローでお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 45,\n        \"friends_count\": 966,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 19 05:36:48 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 352,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501604413312491520/GP66eKWr_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501604413312491520/GP66eKWr_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2744054334/1408426814\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:01 +0000 2014\",\n      \"id\": 505874866105376800,\n      \"id_str\": \"505874866105376769\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/jyoshiuraseitai\\\" rel=\\\"nofollow\\\">男に見せない女子の裏生態</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2744261238,\n        \"id_str\": \"2744261238\",\n        \"name\": \"男に見せない女子の裏生態\",\n        \"screen_name\": \"jyoshiuraseitai\",\n        \"location\": \"\",\n        \"description\": \"男の知らない女子ならではのあるある☆ \\r\\nそんな生々しい女子の生態をつぶやきます。 \\r\\nわかる～って人は RT & フォローでお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 203,\n        \"friends_count\": 967,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 19 08:01:28 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 348,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501641354804346880/Uh1-n1LD_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501641354804346880/Uh1-n1LD_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2744261238/1408435630\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:01 +0000 2014\",\n      \"id\": 505874865354584060,\n      \"id_str\": \"505874865354584064\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/soubutu_seitai\\\" rel=\\\"nofollow\\\">驚きの動物たちの生態</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2759403146,\n        \"id_str\": \"2759403146\",\n        \"name\": \"驚きの動物たちの生態\",\n        \"screen_name\": \"soubutu_seitai\",\n        \"location\": \"\",\n        \"description\": \"「おお～っ」と 言われるような、動物の生態をツイートします♪ \\r\\n知っていると、あなたも人気者に!? \\r\\nおもしろかったら RT & フォローを、お願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 67,\n        \"friends_count\": 954,\n        \"listed_count\": 0,\n        \"created_at\": \"Sat Aug 23 16:39:31 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 219,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/503220468128567296/Z8mGDIBS_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/503220468128567296/Z8mGDIBS_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2759403146/1408812130\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:01 +0000 2014\",\n      \"id\": 505874864603820000,\n      \"id_str\": \"505874864603820032\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/mote_woman\\\" rel=\\\"nofollow\\\">モテ女子★ファションの秘密</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2706659820,\n        \"id_str\": \"2706659820\",\n        \"name\": \"モテ女子★ファションの秘密\",\n        \"screen_name\": \"mote_woman\",\n        \"location\": \"\",\n        \"description\": \"オシャレかわいい♥モテ度UPの注目アイテムを見つけます。\\r\\n気に入ったら RT & 相互フォローで みなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 217,\n        \"friends_count\": 1806,\n        \"listed_count\": 0,\n        \"created_at\": \"Mon Aug 04 14:30:24 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 682,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/496303370936668161/s7xP8rTy_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/496303370936668161/s7xP8rTy_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2706659820/1407163059\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:00 +0000 2014\",\n      \"id\": 505874863874007040,\n      \"id_str\": \"505874863874007040\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/danjyonotigai1\\\" rel=\\\"nofollow\\\">男女の違いを解明する</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2761896468,\n        \"id_str\": \"2761896468\",\n        \"name\": \"男女の違いを解明する\",\n        \"screen_name\": \"danjyonotigai1\",\n        \"location\": \"\",\n        \"description\": \"意外と理解できていない男女それぞれの事情。 \\r\\n「えっ　マジで!?」と驚くような、男女の習性をつぶやきます♪ ためになったら、是非 RT ＆ フォローで、お願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 82,\n        \"friends_count\": 992,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Aug 24 09:47:44 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 237,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/503479057380413441/zDLu5Z9o_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/503479057380413441/zDLu5Z9o_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2761896468/1408873803\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:00 +0000 2014\",\n      \"id\": 505874862900924400,\n      \"id_str\": \"505874862900924416\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/kamihassou\\\" rel=\\\"nofollow\\\">神レベル★極限の発想</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2744950735,\n        \"id_str\": \"2744950735\",\n        \"name\": \"神レベル★極限の発想\",\n        \"screen_name\": \"kamihassou\",\n        \"location\": \"\",\n        \"description\": \"見ているだけで、本気がビシバシ伝わってきます！ \\r\\n人生のヒントになるような、そんな究極の発想を集めています。 \\r\\nいいなと思ったら RT & 相互フォローで、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 84,\n        \"friends_count\": 992,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 19 13:36:05 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 343,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501725053189226496/xZNOTYz2_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501725053189226496/xZNOTYz2_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2744950735/1408455571\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:00 +0000 2014\",\n      \"id\": 505874862397591550,\n      \"id_str\": \"505874862397591552\",\n      \"text\": \"@kaoritoxx そうよ！あたしはそう思うようにしておる。いま職場一やけとる気がする(°_°)！満喫幸せ焼け！！wあー、なるほどね！毎回そうだよね！ティアラちゃんみにいってるもんね♡五月と九月恐ろしい、、、\\nハリポタエリアはいった？？\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": 505838547308277760,\n      \"in_reply_to_status_id_str\": \"505838547308277761\",\n      \"in_reply_to_user_id\": 796000214,\n      \"in_reply_to_user_id_str\": \"796000214\",\n      \"in_reply_to_screen_name\": \"kaoritoxx\",\n      \"user\": {\n        \"id\": 2256249487,\n        \"id_str\": \"2256249487\",\n        \"name\": \"はあちゃん@海賊同盟中\",\n        \"screen_name\": \"onepiece_24\",\n        \"location\": \"どえすえろぉたんの助手兼ね妹(願望)\",\n        \"description\": \"ONE PIECE愛しすぎて今年２３ちゃい(歴１４年目)ゾロ様に一途だったのにロー、このやろー。ロビンちゃんが幸せになればいい。ルフィは無条件にすき。ゾロビン、ローロビ、ルロビ♡usj、声優さん、コナン、進撃、クレしん、H x Hも好き♩\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 415,\n        \"friends_count\": 384,\n        \"listed_count\": 3,\n        \"created_at\": \"Sat Dec 21 09:37:25 +0000 2013\",\n        \"favourites_count\": 1603,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 9636,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501686340564418561/hMQFN4vD_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501686340564418561/hMQFN4vD_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2256249487/1399987924\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"kaoritoxx\",\n            \"name\": \"かおちゃん\",\n            \"id\": 796000214,\n            \"id_str\": \"796000214\",\n            \"indices\": [\n              0,\n              10\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:00 +0000 2014\",\n      \"id\": 505874861973991400,\n      \"id_str\": \"505874861973991424\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/renai_sennin\\\" rel=\\\"nofollow\\\">恋愛仙人</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2698885082,\n        \"id_str\": \"2698885082\",\n        \"name\": \"恋愛仙人\",\n        \"screen_name\": \"renai_sennin\",\n        \"location\": \"\",\n        \"description\": \"豊富でステキな恋愛経験を、シェアしましょう。\\r\\n面白かったらRT & 相互フォローでみなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 618,\n        \"friends_count\": 1847,\n        \"listed_count\": 1,\n        \"created_at\": \"Fri Aug 01 18:09:38 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 726,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/495272204641132544/GNA18aOg_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/495272204641132544/GNA18aOg_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2698885082/1406917096\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:00 +0000 2014\",\n      \"id\": 505874861881700350,\n      \"id_str\": \"505874861881700353\",\n      \"text\": \"@itsukibot_ 一稀の俺のソーセージをペロペロする音はデカイ\",\n      \"source\": \"<a href=\\\"http://jigtwi.jp/?p=1\\\" rel=\\\"nofollow\\\">jigtwi</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": 505871017428795400,\n      \"in_reply_to_status_id_str\": \"505871017428795392\",\n      \"in_reply_to_user_id\": 141170845,\n      \"in_reply_to_user_id_str\": \"141170845\",\n      \"in_reply_to_screen_name\": \"itsukibot_\",\n      \"user\": {\n        \"id\": 2184752048,\n        \"id_str\": \"2184752048\",\n        \"name\": \"アンドー\",\n        \"screen_name\": \"55dakedayo\",\n        \"location\": \"\",\n        \"description\": \"\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 15,\n        \"friends_count\": 24,\n        \"listed_count\": 0,\n        \"created_at\": \"Sat Nov 09 17:42:22 +0000 2013\",\n        \"favourites_count\": 37249,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Irkutsk\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 21070,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png\",\n        \"profile_image_url_https\": \"https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": true,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"itsukibot_\",\n            \"name\": \"前田一稀\",\n            \"id\": 141170845,\n            \"id_str\": \"141170845\",\n            \"indices\": [\n              0,\n              11\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:00 +0000 2014\",\n      \"id\": 505874861185437700,\n      \"id_str\": \"505874861185437697\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/densetunodorama\\\" rel=\\\"nofollow\\\">あの伝説の名ドラマ＆名場面</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2706951979,\n        \"id_str\": \"2706951979\",\n        \"name\": \"あの伝説の名ドラマ＆名場面\",\n        \"screen_name\": \"densetunodorama\",\n        \"location\": \"\",\n        \"description\": \"誰にでも記憶に残る、ドラマの名場面があると思います。そんな感動のストーリーを、もう一度わかちあいたいです。\\r\\n「これ知ってる！」とか「あ～懐かしい」と思ったら RT & 相互フォローでみなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 300,\n        \"friends_count\": 1886,\n        \"listed_count\": 0,\n        \"created_at\": \"Mon Aug 04 16:38:25 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 694,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/496335892152209408/fKzb8Nv3_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/496335892152209408/fKzb8Nv3_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2706951979/1407170704\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:29:00 +0000 2014\",\n      \"id\": 505874860447260700,\n      \"id_str\": \"505874860447260672\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/tabetaicake1\\\" rel=\\\"nofollow\\\">マジで食べたい♥ケーキ特集</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2724328646,\n        \"id_str\": \"2724328646\",\n        \"name\": \"マジで食べたい♥ケーキ特集\",\n        \"screen_name\": \"tabetaicake1\",\n        \"location\": \"\",\n        \"description\": \"女性の目線から見た、美味しそうなケーキを探し求めています。\\r\\n見てるだけで、あれもコレも食べたくなっちゃう♪\\r\\n美味しそうだと思ったら、是非 RT ＆ フォローお願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 158,\n        \"friends_count\": 1907,\n        \"listed_count\": 0,\n        \"created_at\": \"Mon Aug 11 17:15:22 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 493,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/498881289844293632/DAa9No9M_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/498881289844293632/DAa9No9M_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2724328646/1407777704\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:59 +0000 2014\",\n      \"id\": 505874859662925800,\n      \"id_str\": \"505874859662925824\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/adi_mania11\\\" rel=\\\"nofollow\\\">アディダス★マニア</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2704003662,\n        \"id_str\": \"2704003662\",\n        \"name\": \"アディダス★マニア\",\n        \"screen_name\": \"adi_mania11\",\n        \"location\": \"\",\n        \"description\": \"素敵なアディダスのアイテムを見つけたいです♪\\r\\n気に入ってもらえたららRT & 相互フォローで みなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 340,\n        \"friends_count\": 1851,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Aug 03 12:26:37 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 734,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/495911561781727235/06QAMVrR_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/495911561781727235/06QAMVrR_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2704003662/1407069046\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:59 +0000 2014\",\n      \"id\": 505874858920513540,\n      \"id_str\": \"505874858920513537\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/moe_pet1\\\" rel=\\\"nofollow\\\">萌えペット大好き</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2719061228,\n        \"id_str\": \"2719061228\",\n        \"name\": \"萌えペット大好き\",\n        \"screen_name\": \"moe_pet1\",\n        \"location\": \"\",\n        \"description\": \"かわいいペットを見るのが趣味です♥そんな私と一緒にいやされたい人いませんか？かわいいと思ったら RT & フォローもお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 289,\n        \"friends_count\": 1812,\n        \"listed_count\": 0,\n        \"created_at\": \"Sat Aug 09 10:20:25 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 632,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/498051549537386496/QizThq7N_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/498051549537386496/QizThq7N_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2719061228/1407581287\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:59 +0000 2014\",\n      \"id\": 505874858115219460,\n      \"id_str\": \"505874858115219456\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/renaikyoukasyo\\\" rel=\\\"nofollow\\\">恋愛の教科書　</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2744344514,\n        \"id_str\": \"2744344514\",\n        \"name\": \"恋愛の教科書\",\n        \"screen_name\": \"renaikyoukasyo\",\n        \"location\": \"\",\n        \"description\": \"もっと早く知っとくべきだった～！知っていればもっと上手くいく♪ \\r\\n今すぐ役立つ恋愛についての雑学やマメ知識をお届けします。 \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 124,\n        \"friends_count\": 955,\n        \"listed_count\": 0,\n        \"created_at\": \"Tue Aug 19 08:32:45 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 346,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501655512018997248/7SznYGWi_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501655512018997248/7SznYGWi_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2744344514/1408439001\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:59 +0000 2014\",\n      \"id\": 505874857335074800,\n      \"id_str\": \"505874857335074816\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/omorogakusei\\\" rel=\\\"nofollow\\\">オモロすぎる★学生の日常</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2699365116,\n        \"id_str\": \"2699365116\",\n        \"name\": \"オモロすぎる★学生の日常\",\n        \"screen_name\": \"omorogakusei\",\n        \"location\": \"\",\n        \"description\": \"楽しすぎる学生の日常を探していきます。\\r\\n面白かったらRT & 相互フォローでみなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 289,\n        \"friends_count\": 1156,\n        \"listed_count\": 2,\n        \"created_at\": \"Fri Aug 01 23:35:18 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 770,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/495353473886478336/S-4B_RVl_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/495353473886478336/S-4B_RVl_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2699365116/1406936481\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:59 +0000 2014\",\n      \"id\": 505874856605257700,\n      \"id_str\": \"505874856605257728\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/akogareinteria\\\" rel=\\\"nofollow\\\">憧れの★インテリア図鑑</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2721907602,\n        \"id_str\": \"2721907602\",\n        \"name\": \"憧れの★インテリア図鑑\",\n        \"screen_name\": \"akogareinteria\",\n        \"location\": \"\",\n        \"description\": \"自分の住む部屋もこんなふうにしてみたい♪　\\r\\nそんな素敵なインテリアを、日々探していますw　\\r\\nいいなと思ったら RT & 相互フォローお願いします。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 298,\n        \"friends_count\": 1925,\n        \"listed_count\": 0,\n        \"created_at\": \"Sun Aug 10 15:59:13 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 540,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/498499374423343105/Wi_izHvT_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/498499374423343105/Wi_izHvT_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2721907602/1407686543\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:59 +0000 2014\",\n      \"id\": 505874856089378800,\n      \"id_str\": \"505874856089378816\",\n      \"text\": \"天冥の標 VI 宿怨 PART1 / 小川 一水\\nhttp://t.co/fXIgRt4ffH\\n \\n#キンドル #天冥の標VI宿怨PART1\",\n      \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">waromett</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 1953404612,\n        \"id_str\": \"1953404612\",\n        \"name\": \"わろめっと\",\n        \"screen_name\": \"waromett\",\n        \"location\": \"\",\n        \"description\": \"たのしいついーとしょうかい\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 16980,\n        \"friends_count\": 16983,\n        \"listed_count\": 18,\n        \"created_at\": \"Fri Oct 11 05:49:57 +0000 2013\",\n        \"favourites_count\": 3833,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Tokyo\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 98655,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"352726\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme5/bg.gif\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme5/bg.gif\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000578908101/14c4744c7aa34b1f8bbd942b78e59385_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000578908101/14c4744c7aa34b1f8bbd942b78e59385_normal.jpeg\",\n        \"profile_link_color\": \"D02B55\",\n        \"profile_sidebar_border_color\": \"829D5E\",\n        \"profile_sidebar_fill_color\": \"99CC33\",\n        \"profile_text_color\": \"3E4415\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [\n          {\n            \"text\": \"キンドル\",\n            \"indices\": [\n              50,\n              55\n            ]\n          },\n          {\n            \"text\": \"天冥の標VI宿怨PART1\",\n            \"indices\": [\n              56,\n              70\n            ]\n          }\n        ],\n        \"symbols\": [],\n        \"urls\": [\n          {\n            \"url\": \"http://t.co/fXIgRt4ffH\",\n            \"expanded_url\": \"http://j.mp/1kHBOym\",\n            \"display_url\": \"j.mp/1kHBOym\",\n            \"indices\": [\n              25,\n              47\n            ]\n          }\n        ],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"zh\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:58 +0000 2014\",\n      \"id\": 505874855770599400,\n      \"id_str\": \"505874855770599425\",\n      \"text\": \"四川盆地江淮等地将有强降雨 开学日多地将有雨: 　　中新网8月31日电 据中央气象台消息，江淮东部、四川盆地东北部等地今天(31日)又将迎来一场暴雨或大暴雨天气。明天9月1日，是中小学生开学的日子。预计明天，内蒙古中部、... http://t.co/RNdqIHmTby\",\n      \"source\": \"<a href=\\\"http://twitterfeed.com\\\" rel=\\\"nofollow\\\">twitterfeed</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 402427654,\n        \"id_str\": \"402427654\",\n        \"name\": \"中国新闻\",\n        \"screen_name\": \"zhongwenxinwen\",\n        \"location\": \"\",\n        \"description\": \"中国的新闻，世界的新闻。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 2429,\n        \"friends_count\": 15,\n        \"listed_count\": 29,\n        \"created_at\": \"Tue Nov 01 01:56:43 +0000 2011\",\n        \"favourites_count\": 0,\n        \"utc_offset\": -28800,\n        \"time_zone\": \"Alaska\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 84564,\n        \"lang\": \"zh-cn\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"709397\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme6/bg.gif\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme6/bg.gif\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/2700523149/5597e347b2eb880425faef54287995f2_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/2700523149/5597e347b2eb880425faef54287995f2_normal.jpeg\",\n        \"profile_link_color\": \"FF3300\",\n        \"profile_sidebar_border_color\": \"86A4A6\",\n        \"profile_sidebar_fill_color\": \"A0C5C7\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [\n          {\n            \"url\": \"http://t.co/RNdqIHmTby\",\n            \"expanded_url\": \"http://bit.ly/1tOdNsI\",\n            \"display_url\": \"bit.ly/1tOdNsI\",\n            \"indices\": [\n              114,\n              136\n            ]\n          }\n        ],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"zh\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:58 +0000 2014\",\n      \"id\": 505874854877200400,\n      \"id_str\": \"505874854877200384\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/LDH_daisuki1\\\" rel=\\\"nofollow\\\">LDH ★大好き応援団</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2700961603,\n        \"id_str\": \"2700961603\",\n        \"name\": \"LDH ★大好き応援団\",\n        \"screen_name\": \"LDH_daisuki1\",\n        \"location\": \"\",\n        \"description\": \"LDHファンは、全員仲間です♪\\r\\n面白かったらRT & 相互フォローでみなさん、お願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 458,\n        \"friends_count\": 1895,\n        \"listed_count\": 0,\n        \"created_at\": \"Sat Aug 02 14:23:46 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 735,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/495578007298252800/FOZflgYu_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/495578007298252800/FOZflgYu_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2700961603/1406989928\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:58 +0000 2014\",\n      \"id\": 505874854147407900,\n      \"id_str\": \"505874854147407872\",\n      \"text\": \"RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…\",\n      \"source\": \"<a href=\\\"https://twitter.com/anime_toshiden1\\\" rel=\\\"nofollow\\\">マジ!?怖いアニメ都市伝説</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2719489172,\n        \"id_str\": \"2719489172\",\n        \"name\": \"マジ!?怖いアニメ都市伝説\",\n        \"screen_name\": \"anime_toshiden1\",\n        \"location\": \"\",\n        \"description\": \"あなたの知らない、怖すぎるアニメの都市伝説を集めています。\\r\\n「え～知らなかったよww]」って人は RT & フォローお願いします♪\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 377,\n        \"friends_count\": 1911,\n        \"listed_count\": 1,\n        \"created_at\": \"Sat Aug 09 14:41:15 +0000 2014\",\n        \"favourites_count\": 0,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 536,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/498118027322208258/h7XOTTSi_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/498118027322208258/h7XOTTSi_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2719489172/1407595513\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:06 +0000 2014\",\n        \"id\": 505871615125491700,\n        \"id_str\": \"505871615125491712\",\n        \"text\": \"一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介\",\n        \"source\": \"<a href=\\\"https://twitter.com/shiawaseomamori\\\" rel=\\\"nofollow\\\">幸せの☆お守り</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2745121514,\n          \"id_str\": \"2745121514\",\n          \"name\": \"幸せの☆お守り\",\n          \"screen_name\": \"shiawaseomamori\",\n          \"location\": \"\",\n          \"description\": \"自分が幸せだと周りも幸せにできる！ \\r\\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \\r\\nいいなと思ったら RT & 相互フォローで、お願いします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 213,\n          \"friends_count\": 991,\n          \"listed_count\": 0,\n          \"created_at\": \"Tue Aug 19 14:45:19 +0000 2014\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 349,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2745121514/1408459730\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 58,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 58,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"shiawaseomamori\",\n            \"name\": \"幸せの☆お守り\",\n            \"id\": 2745121514,\n            \"id_str\": \"2745121514\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:58 +0000 2014\",\n      \"id\": 505874854134820860,\n      \"id_str\": \"505874854134820864\",\n      \"text\": \"@vesperia1985 おはよー！\\n今日までなのですよ…！！明日一生来なくていい\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": 505868030329364500,\n      \"in_reply_to_status_id_str\": \"505868030329364480\",\n      \"in_reply_to_user_id\": 2286548834,\n      \"in_reply_to_user_id_str\": \"2286548834\",\n      \"in_reply_to_screen_name\": \"vesperia1985\",\n      \"user\": {\n        \"id\": 2389045190,\n        \"id_str\": \"2389045190\",\n        \"name\": \"りいこ\",\n        \"screen_name\": \"riiko_dq10\",\n        \"location\": \"\",\n        \"description\": \"サマーエルフです、りいこです。えるおくんラブです！随時ふれぼしゅ〜〜(っ˘ω˘c )＊日常のどうでもいいことも呟いてますがよろしくね〜\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 67,\n        \"friends_count\": 69,\n        \"listed_count\": 0,\n        \"created_at\": \"Fri Mar 14 13:02:27 +0000 2014\",\n        \"favourites_count\": 120,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 324,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/503906346815610881/BfSrCoBr_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/503906346815610881/BfSrCoBr_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2389045190/1409232058\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"vesperia1985\",\n            \"name\": \"ユーリ\",\n            \"id\": 2286548834,\n            \"id_str\": \"2286548834\",\n            \"indices\": [\n              0,\n              13\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:58 +0000 2014\",\n      \"id\": 505874853778685950,\n      \"id_str\": \"505874853778685952\",\n      \"text\": \"【映画パンフレット】　永遠の０ （永遠のゼロ）　監督　山崎貴　キャスト　岡田准一、三浦春馬、井上真央東宝(2)11点の新品／中古品を見る: ￥ 500より\\n(この商品の現在のランクに関する正式な情報については、アートフレーム... http://t.co/4hbyB1rbQ7\",\n      \"source\": \"<a href=\\\"http://ifttt.com\\\" rel=\\\"nofollow\\\">IFTTT</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 1319883571,\n        \"id_str\": \"1319883571\",\n        \"name\": \"森林木工家具製作所\",\n        \"screen_name\": \"Furniturewood\",\n        \"location\": \"沖縄\",\n        \"description\": \"家具（かぐ、Furniture）は、家財道具のうち家の中に据え置いて利用する比較的大型の道具類、または元々家に作り付けられている比較的大型の道具類をさす。なお、日本の建築基準法上は、作り付け家具は、建築確認及び完了検査の対象となるが、後から置かれるものについては対象外である。\",\n        \"url\": \"http://t.co/V4oyL0xtZk\",\n        \"entities\": {\n          \"url\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/V4oyL0xtZk\",\n                \"expanded_url\": \"http://astore.amazon.co.jp/furniturewood-22\",\n                \"display_url\": \"astore.amazon.co.jp/furniturewood-…\",\n                \"indices\": [\n                  0,\n                  22\n                ]\n              }\n            ]\n          },\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 677,\n        \"friends_count\": 743,\n        \"listed_count\": 1,\n        \"created_at\": \"Mon Apr 01 07:55:14 +0000 2013\",\n        \"favourites_count\": 0,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Irkutsk\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 17210,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/3460466135/c67d9df9b760787b9ed284fe80b1dd31_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/3460466135/c67d9df9b760787b9ed284fe80b1dd31_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1319883571/1364804982\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [\n          {\n            \"url\": \"http://t.co/4hbyB1rbQ7\",\n            \"expanded_url\": \"http://ift.tt/1kT55bk\",\n            \"display_url\": \"ift.tt/1kT55bk\",\n            \"indices\": [\n              116,\n              138\n            ]\n          }\n        ],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:58 +0000 2014\",\n      \"id\": 505874852754907140,\n      \"id_str\": \"505874852754907136\",\n      \"text\": \"RT @siranuga_hotoke: ゴキブリは一世帯に平均して480匹いる。\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 413944345,\n        \"id_str\": \"413944345\",\n        \"name\": \"泥酔イナバウアー\",\n        \"screen_name\": \"Natade_co_co_21\",\n        \"location\": \"\",\n        \"description\": \"君の瞳にうつる僕に乾杯。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 298,\n        \"friends_count\": 300,\n        \"listed_count\": 4,\n        \"created_at\": \"Wed Nov 16 12:52:46 +0000 2011\",\n        \"favourites_count\": 3125,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 12237,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"FFF04D\",\n        \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/378800000115928444/9bf5fa13385cc80bfeb097e51af9862a.jpeg\",\n        \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/378800000115928444/9bf5fa13385cc80bfeb097e51af9862a.jpeg\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/500849752351600640/lMQqIzYj_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/500849752351600640/lMQqIzYj_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/413944345/1403511193\",\n        \"profile_link_color\": \"0099CC\",\n        \"profile_sidebar_border_color\": \"000000\",\n        \"profile_sidebar_fill_color\": \"F6FFD1\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sat Aug 30 23:24:23 +0000 2014\",\n        \"id\": 505858599411666940,\n        \"id_str\": \"505858599411666944\",\n        \"text\": \"ゴキブリは一世帯に平均して480匹いる。\",\n        \"source\": \"<a href=\\\"http://twittbot.net/\\\" rel=\\\"nofollow\\\">twittbot.net</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 2243896200,\n          \"id_str\": \"2243896200\",\n          \"name\": \"知らぬが仏bot\",\n          \"screen_name\": \"siranuga_hotoke\",\n          \"location\": \"奈良・京都辺り\",\n          \"description\": \"知らぬが仏な情報をお伝えします。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 3288,\n          \"friends_count\": 3482,\n          \"listed_count\": 7,\n          \"created_at\": \"Fri Dec 13 13:16:35 +0000 2013\",\n          \"favourites_count\": 0,\n          \"utc_offset\": null,\n          \"time_zone\": null,\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 1570,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000866399372/ypy5NnPe_normal.png\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000866399372/ypy5NnPe_normal.png\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/2243896200/1386997755\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 1,\n        \"favorite_count\": 0,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 1,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"siranuga_hotoke\",\n            \"name\": \"知らぬが仏bot\",\n            \"id\": 2243896200,\n            \"id_str\": \"2243896200\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:58 +0000 2014\",\n      \"id\": 505874852603908100,\n      \"id_str\": \"505874852603908096\",\n      \"text\": \"RT @UARROW_Y: ようかい体操第一を踊る国見英 http://t.co/SXoYWH98as\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 2463035136,\n        \"id_str\": \"2463035136\",\n        \"name\": \"や\",\n        \"screen_name\": \"yae45\",\n        \"location\": \"\",\n        \"description\": \"きもちわるいことつぶやく用\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 4,\n        \"friends_count\": 30,\n        \"listed_count\": 0,\n        \"created_at\": \"Fri Apr 25 10:49:20 +0000 2014\",\n        \"favourites_count\": 827,\n        \"utc_offset\": 32400,\n        \"time_zone\": \"Irkutsk\",\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 390,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/505345820137234433/csFeRxPm_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/505345820137234433/csFeRxPm_normal.jpeg\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"ja\"\n        },\n        \"created_at\": \"Sun Aug 31 00:16:45 +0000 2014\",\n        \"id\": 505871779949051900,\n        \"id_str\": \"505871779949051904\",\n        \"text\": \"ようかい体操第一を踊る国見英 http://t.co/SXoYWH98as\",\n        \"source\": \"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 1261662588,\n          \"id_str\": \"1261662588\",\n          \"name\": \"ゆう矢\",\n          \"screen_name\": \"UARROW_Y\",\n          \"location\": \"つくり出そう国影の波 広げよう国影の輪\",\n          \"description\": \"HQ!! 成人済腐女子。日常ツイート多いです。赤葦京治夢豚クソツイ含みます注意。フォローをお考えの際はプロフご一読お願い致します。FRBお気軽に\",\n          \"url\": \"http://t.co/LFX2XOzb0l\",\n          \"entities\": {\n            \"url\": {\n              \"urls\": [\n                {\n                  \"url\": \"http://t.co/LFX2XOzb0l\",\n                  \"expanded_url\": \"http://twpf.jp/UARROW_Y\",\n                  \"display_url\": \"twpf.jp/UARROW_Y\",\n                  \"indices\": [\n                    0,\n                    22\n                  ]\n                }\n              ]\n            },\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 265,\n          \"friends_count\": 124,\n          \"listed_count\": 12,\n          \"created_at\": \"Tue Mar 12 10:42:17 +0000 2013\",\n          \"favourites_count\": 6762,\n          \"utc_offset\": 32400,\n          \"time_zone\": \"Tokyo\",\n          \"geo_enabled\": true,\n          \"verified\": false,\n          \"statuses_count\": 55946,\n          \"lang\": \"ja\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"C0DEED\",\n          \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n          \"profile_background_tile\": false,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1261662588/1408618604\",\n          \"profile_link_color\": \"0084B4\",\n          \"profile_sidebar_border_color\": \"C0DEED\",\n          \"profile_sidebar_fill_color\": \"DDEEF6\",\n          \"profile_text_color\": \"333333\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": true,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 29,\n        \"favorite_count\": 54,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [\n            {\n              \"url\": \"http://t.co/SXoYWH98as\",\n              \"expanded_url\": \"http://twitter.com/UARROW_Y/status/505871779949051904/photo/1\",\n              \"display_url\": \"pic.twitter.com/SXoYWH98as\",\n              \"indices\": [\n                15,\n                37\n              ]\n            }\n          ],\n          \"user_mentions\": []\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"possibly_sensitive\": false,\n        \"lang\": \"ja\"\n      },\n      \"retweet_count\": 29,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [\n          {\n            \"url\": \"http://t.co/SXoYWH98as\",\n            \"expanded_url\": \"http://twitter.com/UARROW_Y/status/505871779949051904/photo/1\",\n            \"display_url\": \"pic.twitter.com/SXoYWH98as\",\n            \"indices\": [\n              29,\n              51\n            ]\n          }\n        ],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"UARROW_Y\",\n            \"name\": \"ゆう矢\",\n            \"id\": 1261662588,\n            \"id_str\": \"1261662588\",\n            \"indices\": [\n              3,\n              12\n            ]\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"ja\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"zh\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:57 +0000 2014\",\n      \"id\": 505874848900341760,\n      \"id_str\": \"505874848900341760\",\n      \"text\": \"RT @fightcensorship: 李克強總理的臉綠了！在前日南京青奧會閉幕式，觀眾席上一名貪玩韓國少年運動員，竟斗膽用激光筆射向中國總理李克強的臉。http://t.co/HLX9mHcQwe http://t.co/fVVOSML5s8\",\n      \"source\": \"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 889332218,\n        \"id_str\": \"889332218\",\n        \"name\": \"民權初步\",\n        \"screen_name\": \"JoeyYoungkm\",\n        \"location\": \"km/cn\",\n        \"description\": \"经历了怎样的曲折才从追求“一致通过”发展到今天人们接受“过半数通过”，正是人们认识到对“一致”甚至是“基本一致”的追求本身就会变成一种独裁。\",\n        \"url\": null,\n        \"entities\": {\n          \"description\": {\n            \"urls\": []\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 313,\n        \"friends_count\": 46,\n        \"listed_count\": 0,\n        \"created_at\": \"Thu Oct 18 17:21:17 +0000 2012\",\n        \"favourites_count\": 24,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 15707,\n        \"lang\": \"en\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"C0DEED\",\n        \"profile_background_image_url\": \"http://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_image_url_https\": \"https://abs.twimg.com/images/themes/theme1/bg.png\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/378800000563062033/a7e8274752ce36a6cd5bad971ec7d416_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/378800000563062033/a7e8274752ce36a6cd5bad971ec7d416_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/889332218/1388896916\",\n        \"profile_link_color\": \"0084B4\",\n        \"profile_sidebar_border_color\": \"C0DEED\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": true,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweeted_status\": {\n        \"metadata\": {\n          \"result_type\": \"recent\",\n          \"iso_language_code\": \"zh\"\n        },\n        \"created_at\": \"Sat Aug 30 23:56:27 +0000 2014\",\n        \"id\": 505866670356070400,\n        \"id_str\": \"505866670356070401\",\n        \"text\": \"李克強總理的臉綠了！在前日南京青奧會閉幕式，觀眾席上一名貪玩韓國少年運動員，竟斗膽用激光筆射向中國總理李克強的臉。http://t.co/HLX9mHcQwe http://t.co/fVVOSML5s8\",\n        \"source\": \"<a href=\\\"http://twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client</a>\",\n        \"truncated\": false,\n        \"in_reply_to_status_id\": null,\n        \"in_reply_to_status_id_str\": null,\n        \"in_reply_to_user_id\": null,\n        \"in_reply_to_user_id_str\": null,\n        \"in_reply_to_screen_name\": null,\n        \"user\": {\n          \"id\": 67661086,\n          \"id_str\": \"67661086\",\n          \"name\": \"※范强※法特姗瑟希蒲※\",\n          \"screen_name\": \"fightcensorship\",\n          \"location\": \"Middle of Nowhere\",\n          \"description\": \"被人指责“封建”、“落后”、“保守”的代表，当代红卫兵攻击对象。致力于言论自由，人权； 倡导资讯公开，反对网络封锁。既不是精英分子，也不是意见领袖，本推言论不代表任何国家、党派和组织，也不标榜伟大、光荣和正确。\",\n          \"url\": null,\n          \"entities\": {\n            \"description\": {\n              \"urls\": []\n            }\n          },\n          \"protected\": false,\n          \"followers_count\": 7143,\n          \"friends_count\": 779,\n          \"listed_count\": 94,\n          \"created_at\": \"Fri Aug 21 17:16:22 +0000 2009\",\n          \"favourites_count\": 364,\n          \"utc_offset\": 28800,\n          \"time_zone\": \"Singapore\",\n          \"geo_enabled\": false,\n          \"verified\": false,\n          \"statuses_count\": 16751,\n          \"lang\": \"en\",\n          \"contributors_enabled\": false,\n          \"is_translator\": false,\n          \"is_translation_enabled\": false,\n          \"profile_background_color\": \"FFFFFF\",\n          \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/611138516/toeccqnahbpmr0sw9ybv.jpeg\",\n          \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/611138516/toeccqnahbpmr0sw9ybv.jpeg\",\n          \"profile_background_tile\": true,\n          \"profile_image_url\": \"http://pbs.twimg.com/profile_images/3253137427/3524557d21ef2c04871e985d4d136bdb_normal.jpeg\",\n          \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/3253137427/3524557d21ef2c04871e985d4d136bdb_normal.jpeg\",\n          \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/67661086/1385608347\",\n          \"profile_link_color\": \"ED1313\",\n          \"profile_sidebar_border_color\": \"FFFFFF\",\n          \"profile_sidebar_fill_color\": \"E0FF92\",\n          \"profile_text_color\": \"000000\",\n          \"profile_use_background_image\": true,\n          \"default_profile\": false,\n          \"default_profile_image\": false,\n          \"following\": false,\n          \"follow_request_sent\": false,\n          \"notifications\": false\n        },\n        \"geo\": null,\n        \"coordinates\": null,\n        \"place\": null,\n        \"contributors\": null,\n        \"retweet_count\": 4,\n        \"favorite_count\": 2,\n        \"entities\": {\n          \"hashtags\": [],\n          \"symbols\": [],\n          \"urls\": [\n            {\n              \"url\": \"http://t.co/HLX9mHcQwe\",\n              \"expanded_url\": \"http://is.gd/H3OgTO\",\n              \"display_url\": \"is.gd/H3OgTO\",\n              \"indices\": [\n                57,\n                79\n              ]\n            }\n          ],\n          \"user_mentions\": [],\n          \"media\": [\n            {\n              \"id\": 505866668485386240,\n              \"id_str\": \"505866668485386241\",\n              \"indices\": [\n                80,\n                102\n              ],\n              \"media_url\": \"http://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg\",\n              \"media_url_https\": \"https://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg\",\n              \"url\": \"http://t.co/fVVOSML5s8\",\n              \"display_url\": \"pic.twitter.com/fVVOSML5s8\",\n              \"expanded_url\": \"http://twitter.com/fightcensorship/status/505866670356070401/photo/1\",\n              \"type\": \"photo\",\n              \"sizes\": {\n                \"large\": {\n                  \"w\": 640,\n                  \"h\": 554,\n                  \"resize\": \"fit\"\n                },\n                \"medium\": {\n                  \"w\": 600,\n                  \"h\": 519,\n                  \"resize\": \"fit\"\n                },\n                \"thumb\": {\n                  \"w\": 150,\n                  \"h\": 150,\n                  \"resize\": \"crop\"\n                },\n                \"small\": {\n                  \"w\": 340,\n                  \"h\": 294,\n                  \"resize\": \"fit\"\n                }\n              }\n            }\n          ]\n        },\n        \"favorited\": false,\n        \"retweeted\": false,\n        \"possibly_sensitive\": false,\n        \"lang\": \"zh\"\n      },\n      \"retweet_count\": 4,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [],\n        \"symbols\": [],\n        \"urls\": [\n          {\n            \"url\": \"http://t.co/HLX9mHcQwe\",\n            \"expanded_url\": \"http://is.gd/H3OgTO\",\n            \"display_url\": \"is.gd/H3OgTO\",\n            \"indices\": [\n              78,\n              100\n            ]\n          }\n        ],\n        \"user_mentions\": [\n          {\n            \"screen_name\": \"fightcensorship\",\n            \"name\": \"※范强※法特姗瑟希蒲※\",\n            \"id\": 67661086,\n            \"id_str\": \"67661086\",\n            \"indices\": [\n              3,\n              19\n            ]\n          }\n        ],\n        \"media\": [\n          {\n            \"id\": 505866668485386240,\n            \"id_str\": \"505866668485386241\",\n            \"indices\": [\n              101,\n              123\n            ],\n            \"media_url\": \"http://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg\",\n            \"media_url_https\": \"https://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg\",\n            \"url\": \"http://t.co/fVVOSML5s8\",\n            \"display_url\": \"pic.twitter.com/fVVOSML5s8\",\n            \"expanded_url\": \"http://twitter.com/fightcensorship/status/505866670356070401/photo/1\",\n            \"type\": \"photo\",\n            \"sizes\": {\n              \"large\": {\n                \"w\": 640,\n                \"h\": 554,\n                \"resize\": \"fit\"\n              },\n              \"medium\": {\n                \"w\": 600,\n                \"h\": 519,\n                \"resize\": \"fit\"\n              },\n              \"thumb\": {\n                \"w\": 150,\n                \"h\": 150,\n                \"resize\": \"crop\"\n              },\n              \"small\": {\n                \"w\": 340,\n                \"h\": 294,\n                \"resize\": \"fit\"\n              }\n            },\n            \"source_status_id\": 505866670356070400,\n            \"source_status_id_str\": \"505866670356070401\"\n          }\n        ]\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"zh\"\n    },\n    {\n      \"metadata\": {\n        \"result_type\": \"recent\",\n        \"iso_language_code\": \"ja\"\n      },\n      \"created_at\": \"Sun Aug 31 00:28:56 +0000 2014\",\n      \"id\": 505874847260352500,\n      \"id_str\": \"505874847260352513\",\n      \"text\": \"【マイリスト】【彩りりあ】妖怪体操第一　踊ってみた【反転】 http://t.co/PjL9if8OZC #sm24357625\",\n      \"source\": \"<a href=\\\"http://www.nicovideo.jp/\\\" rel=\\\"nofollow\\\">ニコニコ動画</a>\",\n      \"truncated\": false,\n      \"in_reply_to_status_id\": null,\n      \"in_reply_to_status_id_str\": null,\n      \"in_reply_to_user_id\": null,\n      \"in_reply_to_user_id_str\": null,\n      \"in_reply_to_screen_name\": null,\n      \"user\": {\n        \"id\": 1609789375,\n        \"id_str\": \"1609789375\",\n        \"name\": \"食いしん坊前ちゃん\",\n        \"screen_name\": \"2no38mae\",\n        \"location\": \"ニノと二次元の間\",\n        \"description\": \"ニコ動で踊り手やってます!!応援本当に嬉しいですありがとうございます!!　ぽっちゃりだけど前向きに頑張る腐女子です。嵐と弱虫ペダルが大好き！【お返事】りぷ(基本は)”○”　DM (同業者様を除いて)”×”　動画の転載は絶対にやめてください。 ブログ→http://t.co/8E91tqoeKX　　\",\n        \"url\": \"http://t.co/ulD2e9mcwb\",\n        \"entities\": {\n          \"url\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/ulD2e9mcwb\",\n                \"expanded_url\": \"http://www.nicovideo.jp/mylist/37917495\",\n                \"display_url\": \"nicovideo.jp/mylist/37917495\",\n                \"indices\": [\n                  0,\n                  22\n                ]\n              }\n            ]\n          },\n          \"description\": {\n            \"urls\": [\n              {\n                \"url\": \"http://t.co/8E91tqoeKX\",\n                \"expanded_url\": \"http://ameblo.jp/2no38mae/\",\n                \"display_url\": \"ameblo.jp/2no38mae/\",\n                \"indices\": [\n                  125,\n                  147\n                ]\n              }\n            ]\n          }\n        },\n        \"protected\": false,\n        \"followers_count\": 560,\n        \"friends_count\": 875,\n        \"listed_count\": 11,\n        \"created_at\": \"Sun Jul 21 05:09:43 +0000 2013\",\n        \"favourites_count\": 323,\n        \"utc_offset\": null,\n        \"time_zone\": null,\n        \"geo_enabled\": false,\n        \"verified\": false,\n        \"statuses_count\": 3759,\n        \"lang\": \"ja\",\n        \"contributors_enabled\": false,\n        \"is_translator\": false,\n        \"is_translation_enabled\": false,\n        \"profile_background_color\": \"F2C6E4\",\n        \"profile_background_image_url\": \"http://pbs.twimg.com/profile_background_images/378800000029400927/114b242f5d838ec7cb098ea5db6df413.jpeg\",\n        \"profile_background_image_url_https\": \"https://pbs.twimg.com/profile_background_images/378800000029400927/114b242f5d838ec7cb098ea5db6df413.jpeg\",\n        \"profile_background_tile\": false,\n        \"profile_image_url\": \"http://pbs.twimg.com/profile_images/487853237723095041/LMBMGvOc_normal.jpeg\",\n        \"profile_image_url_https\": \"https://pbs.twimg.com/profile_images/487853237723095041/LMBMGvOc_normal.jpeg\",\n        \"profile_banner_url\": \"https://pbs.twimg.com/profile_banners/1609789375/1375752225\",\n        \"profile_link_color\": \"FF9EDD\",\n        \"profile_sidebar_border_color\": \"FFFFFF\",\n        \"profile_sidebar_fill_color\": \"DDEEF6\",\n        \"profile_text_color\": \"333333\",\n        \"profile_use_background_image\": true,\n        \"default_profile\": false,\n        \"default_profile_image\": false,\n        \"following\": false,\n        \"follow_request_sent\": false,\n        \"notifications\": false\n      },\n      \"geo\": null,\n      \"coordinates\": null,\n      \"place\": null,\n      \"contributors\": null,\n      \"retweet_count\": 0,\n      \"favorite_count\": 0,\n      \"entities\": {\n        \"hashtags\": [\n          {\n            \"text\": \"sm24357625\",\n            \"indices\": [\n              53,\n              64\n            ]\n          }\n        ],\n        \"symbols\": [],\n        \"urls\": [\n          {\n            \"url\": \"http://t.co/PjL9if8OZC\",\n            \"expanded_url\": \"http://nico.ms/sm24357625\",\n            \"display_url\": \"nico.ms/sm24357625\",\n            \"indices\": [\n              30,\n              52\n            ]\n          }\n        ],\n        \"user_mentions\": []\n      },\n      \"favorited\": false,\n      \"retweeted\": false,\n      \"possibly_sensitive\": false,\n      \"lang\": \"ja\"\n    }\n  ],\n  \"search_metadata\": {\n    \"completed_in\": 0.087,\n    \"max_id\": 505874924095815700,\n    \"max_id_str\": \"505874924095815681\",\n    \"next_results\": \"?max_id=505874847260352512&q=%E4%B8%80&count=100&include_entities=1\",\n    \"query\": \"%E4%B8%80\",\n    \"refresh_url\": \"?since_id=505874924095815681&q=%E4%B8%80&include_entities=1\",\n    \"count\": 100,\n    \"since_id\": 0,\n    \"since_id_str\": \"0\"\n  }\n}"
  },
  {
    "path": "testdata/update-center.json",
    "content": "{\"connectionCheckUrl\":\"http://www.google.com/\",\"core\":{\"buildDate\":\"Jan 07, 2013\",\"name\":\"core\",\"sha1\":\"BOXijYYVSuxWoki+9fV0FLU4df0=\",\"url\":\"http://updates.jenkins-ci.org/download/war/1.498/jenkins.war\",\"version\":\"1.498\"},\"id\":\"default\",\"plugins\":{\"AdaptivePlugin\":{\"buildDate\":\"Mar 03, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"magnayn\",\"email\":\"nigel.magnay@gmail.com\",\"name\":\"Nigel Magnay\"}],\"excerpt\":\"This (experimental) plug-in exposes the jenkins build extension points (SCM, Build, Publish) to a groovy scripting environment that has some DSL-style extensions for ease of development.\",\"gav\":\"jenkins:AdaptivePlugin:0.1\",\"labels\":[\"misc\",\"buildwrapper\"],\"name\":\"AdaptivePlugin\",\"releaseTimestamp\":\"2011-03-03T16:49:24.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"il8z91iDnqVMu78Ghj8q2swCpdk=\",\"title\":\"Jenkins Adaptive Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/AdaptivePlugin/0.1/AdaptivePlugin.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Adaptive+Plugin\"},\"AnchorChain\":{\"buildDate\":\"Mar 11, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"direvius\",\"email\":\"direvius@gmail.com\",\"name\":\"Alexey Lavrenuke\"}],\"excerpt\":\"This plugin allows you to add some links from a text file to the sidebar at every build. \",\"gav\":\"org.jenkins-ci.plugins:AnchorChain:1.0\",\"labels\":[\"report\"],\"name\":\"AnchorChain\",\"releaseTimestamp\":\"2012-03-11T21:59:06.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"rY1W96ad9TJI1F3phFG8X4LE26Q=\",\"title\":\"AnchorChain plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/AnchorChain/1.0/AnchorChain.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/AnchorChain+plugin\"},\"BlameSubversion\":{\"buildDate\":\"Jan 04, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tangjinou\",\"email\":\"tangjinou@gmail.com\",\"name\":\"Developer Guy\"}],\"excerpt\":\"This plug-in provides utilities for getting svn info from upstream job to downstream job\",\"gav\":\"org.jvnet.hudson.plugins:BlameSubversion:1.200\",\"labels\":[\"scm\"],\"name\":\"BlameSubversion\",\"previousTimestamp\":\"2010-11-02T00:15:06.00Z\",\"previousVersion\":\"1.25\",\"releaseTimestamp\":\"2013-01-04T22:34:40.00Z\",\"requiredCore\":\"1.355\",\"scm\":\"github.com\",\"sha1\":\"9tDzZ/EpFwOi4aKFTyhF4UqQU/Y=\",\"title\":\"BlameSubversion\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/BlameSubversion/1.200/BlameSubversion.hpi\",\"version\":\"1.200\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/BlameSubversion\"},\"BlazeMeterJenkinsPlugin\":{\"buildDate\":\"Oct 30, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"doron-bloch\",\"name\":\"Doron Bloch\"}],\"excerpt\":\"This plugin allows you to load test your site using <a href='http://blazemeter.com'>BlazeMeter<\\/a>. Jenkins will show a report generated by the test. It includes the feature of setting the final build status as good, unstable or failed, based on the reported error percentage, and response time.\",\"gav\":\"com.blazemeter.plugins:BlazeMeterJenkinsPlugin:1.02-beta-3\",\"labels\":[\"post-build\"],\"name\":\"BlazeMeterJenkinsPlugin\",\"previousTimestamp\":\"2012-10-16T21:10:04.00Z\",\"previousVersion\":\"1.01-beta-2\",\"releaseTimestamp\":\"2012-10-30T15:27:40.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"JAuWkRs53ZmU/PZTOGrXzjIq1z4=\",\"title\":\"BlazeMeter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/BlazeMeterJenkinsPlugin/1.02-beta-3/BlazeMeterJenkinsPlugin.hpi\",\"version\":\"1.02-beta-3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/BlazeMeter+Plugin\"},\"ColumnPack-plugin\":{\"buildDate\":\"Dec 21, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"hanabi\",\"email\":\"jenkins@hanabi.se\",\"name\":\"Marcus Jacobsson\"}],\"excerpt\":\"\",\"gav\":\"ColumnPack:ColumnPack-plugin:1.0.3\",\"name\":\"ColumnPack-plugin\",\"releaseTimestamp\":\"2012-12-21T19:19:32.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"RoNLlUKA0CSwNQY14gEGKnmu9s4=\",\"title\":\"ColumnPack-plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ColumnPack-plugin/1.0.3/ColumnPack-plugin.hpi\",\"version\":\"1.0.3\"},\"ColumnsPlugin\":{\"buildDate\":\"Dec 21, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"hanabi\",\"email\":\"jenkins@hanabi.se\",\"name\":\"Marcus Jacobsson\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:ColumnsPlugin:1.0\",\"name\":\"ColumnsPlugin\",\"releaseTimestamp\":\"2012-12-21T20:34:38.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"NGboN/IG0e5vCYmKoFlaHEK+Dc8=\",\"title\":\"Columns Pack\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ColumnsPlugin/1.0/ColumnsPlugin.hpi\",\"version\":\"1.0\"},\"Exclusion\":{\"buildDate\":\"Nov 08, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"anthonyRoux\",\"email\":\"m.roux.a@gmail.com\",\"name\":\"Anthony Roux\"}],\"excerpt\":\"This plugin manages exclusion between jobs. \",\"gav\":\"org.jenkins-ci.plugins:Exclusion:0.8\",\"labels\":[\"builder\"],\"name\":\"Exclusion\",\"previousTimestamp\":\"2012-07-07T23:26:36.00Z\",\"previousVersion\":\"0.7\",\"releaseTimestamp\":\"2012-11-08T06:08:50.00Z\",\"requiredCore\":\"1.489\",\"scm\":\"github.com\",\"sha1\":\"yaw61kkbvMqaYk/LymokK75LZf4=\",\"title\":\"Exclusion-Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/Exclusion/0.8/Exclusion.hpi\",\"version\":\"0.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Exclusion-Plugin\"},\"LavaLampNotifier\":{\"buildDate\":\"Nov 13, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"edrandall\",\"name\":\"Ed Randall\"}],\"excerpt\":\"Indicate Job status using a Lava Lamp\",\"gav\":\"org.jvnet.hudson.plugins.lavalamp:LavaLampNotifier:1.4\",\"labels\":[\"notifier\"],\"name\":\"LavaLampNotifier\",\"previousTimestamp\":\"2010-11-13T17:40:26.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2010-11-14T02:04:48.00Z\",\"requiredCore\":\"1.355\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"gvAVSXpI34jKS8l9229JA/CR9/g=\",\"title\":\"Lava Lamp Notifier\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/LavaLampNotifier/1.4/LavaLampNotifier.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Lava+Lamp+Notifier\"},\"Matrix-sorter-plugin\":{\"buildDate\":\"May 31, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"lvotypko\",\"email\":\"lvotypko@redhat.com\",\"name\":\"Lucie Votypkova\"}],\"excerpt\":\"This plugin enable sorting the matrix configurations \",\"gav\":\"org.jenkins-ci.plugins:Matrix-sorter-plugin:1.1\",\"labels\":[],\"name\":\"Matrix-sorter-plugin\",\"previousTimestamp\":\"2012-04-12T11:27:22.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-05-31T19:52:34.00Z\",\"requiredCore\":\"1.439\",\"scm\":\"github.com\",\"sha1\":\"dArbofexSr5aGpw2Ojq7N6Psblc=\",\"title\":\"Matrix configuration sorter plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/Matrix-sorter-plugin/1.1/Matrix-sorter-plugin.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Matrix+configuration+sorter+plugin\"},\"PrioritySorter\":{\"buildDate\":\"May 24, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"bklarson\",\"email\":\"bklarson@gmail.com\",\"name\":\"Brad Larson\"}],\"excerpt\":\"This plugin allows for the build queue to be sorted based on pre-assigned priorities for each job.\",\"gav\":\"hudson.queueSorter:PrioritySorter:1.3\",\"labels\":[\"misc\",\"listview-column\"],\"name\":\"PrioritySorter\",\"previousTimestamp\":\"2011-02-05T21:48:26.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-05-25T02:58:28.00Z\",\"requiredCore\":\"1.343\",\"scm\":\"github.com\",\"sha1\":\"OrRqNLQvKOlxhhCowddAxxDOIVQ=\",\"title\":\"Priority Sorter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/PrioritySorter/1.3/PrioritySorter.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Priority+Sorter+Plugin\"},\"SCTMExecutor\":{\"buildDate\":\"Mar 06, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tofuAtjava\",\"email\":\"tfuerer.javanet@googlemail.com\",\"name\":\"Thomas Fuerer\"}],\"excerpt\":\"This plugin will let users use Borland's SilkCentral Test Manager 2008 R2 or later.\",\"gav\":\"hudson.plugins.sctmexecutor:SCTMExecutor:1.5.1\",\"labels\":[\"builder\"],\"name\":\"SCTMExecutor\",\"previousTimestamp\":\"2010-03-02T04:15:34.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2010-03-07T01:47:22.00Z\",\"requiredCore\":\"1.345\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"AGNsn4d8rgDz5CgMkVLpdNpdQRo=\",\"title\":\"SCTMExecutor\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/SCTMExecutor/1.5.1/SCTMExecutor.hpi\",\"version\":\"1.5.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SCTMExecutor\"},\"SSSCM\":{\"buildDate\":\"Sep 08, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"richscze\"}],\"excerpt\":\"\",\"gav\":\"ssscm:SSSCM:1.0\",\"name\":\"SSSCM\",\"releaseTimestamp\":\"2011-09-08T20:30:30.00Z\",\"requiredCore\":\"1.323\",\"scm\":\"github.com\",\"sha1\":\"2AFol0miyOne08ZFgYzjRkz1ktw=\",\"title\":\"SSSCM\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/SSSCM/1.0/SSSCM.hpi\",\"version\":\"1.0\"},\"Schmant\":{\"buildDate\":\"Dec 15, 2009\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kalle\"}],\"excerpt\":\"The Schmant plugin enables Hudson to run <a href='http://www.schmant.org'>Schmant<\\/a> build scripts.\",\"gav\":\"org.schmant.hudson:Schmant:1.1.4\",\"labels\":[\"builder\"],\"name\":\"Schmant\",\"previousTimestamp\":\"2009-04-01T15:28:56.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2009-12-15T16:01:08.00Z\",\"requiredCore\":\"1.337\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"WGFojc2aUe6CNQQGIWlKC+lbW4o=\",\"title\":\"Schmant Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/Schmant/1.1.4/Schmant.hpi\",\"version\":\"1.1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Schmant+Plugin\"},\"Surround-SCM-plugin\":{\"buildDate\":\"Oct 26, 2011\",\"dependencies\":[],\"developers\":[{\"email\":\"klimad@seapine.com\",\"name\":\"Dan Klima\"}],\"excerpt\":\"This plugin integrates with <a href='http://www.seapine.com'>Seapine <\\/a>Software's <a href='http://www.seapine.com/scmissuetracking.html'>Surround SCM<\\/a>. \",\"gav\":\"org.jvnet.hudson.plugins:Surround-SCM-plugin:1.1\",\"labels\":[\"scm\"],\"name\":\"Surround-SCM-plugin\",\"previousTimestamp\":\"2011-06-07T15:50:06.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-10-26T19:57:06.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"github.com\",\"sha1\":\"olohjjuefWCDLF+Lv/89wBC/l4c=\",\"title\":\"Surround SCM Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/Surround-SCM-plugin/1.1/Surround-SCM-plugin.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Surround+SCM+Plugin\"},\"TwilioNotifier\":{\"buildDate\":\"Dec 27, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"christer\",\"email\":\"christer.fahlgren@gmail.com\",\"name\":\"Christer Fahlgren\"}],\"excerpt\":\"The Twilio Notifier Plugin is a plugin that can send build status notifications as Text messages and phone calls using <a href='http://www.twilio.com/'>Twilio<\\/a>. \",\"gav\":\"com.twilio.jenkins:TwilioNotifier:0.2.1\",\"labels\":[],\"name\":\"TwilioNotifier\",\"previousTimestamp\":\"2011-12-27T15:57:30.00Z\",\"previousVersion\":\"0.2.0\",\"releaseTimestamp\":\"2011-12-27T16:01:44.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"H1vq0/9tFtMVw8+kUlL2W8TkSjE=\",\"title\":\"Twilio Notifier Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/TwilioNotifier/0.2.1/TwilioNotifier.hpi\",\"version\":\"0.2.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Twilio+Notifier+Plugin\"},\"URLSCM\":{\"buildDate\":\"Nov 02, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mdonohue\",\"name\":\"Michael Donohue\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"This plugin allows the use of URLs as an SCM.\",\"gav\":\"org.jvnet.hudson.plugins:URLSCM:1.6\",\"labels\":[\"scm\"],\"name\":\"URLSCM\",\"previousTimestamp\":\"2010-01-27T14:48:14.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2011-11-02T14:15:14.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"aglxMDptHgY5Xk31EXgB8NafzKU=\",\"title\":\"URL SCM\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/URLSCM/1.6/URLSCM.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/URL+SCM\"},\"WebSVN2\":{\"buildDate\":\"Sep 23, 2010\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.11\"}],\"developers\":[{\"name\":\"Andreas Mandel\"}],\"excerpt\":\"This plugin integrates <a href='http://www.websvn.info/'>WebSVN<\\/a> Version 2 browser interface for Subversion with Hudson.\",\"gav\":\"org.jvnet.hudson.plugins:WebSVN2:0.9\",\"labels\":[],\"name\":\"WebSVN2\",\"releaseTimestamp\":\"2010-09-23T10:08:16.00Z\",\"requiredCore\":\"1.376\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"X/gdcrPYhTMObY3tJ6kRRQpO0vk=\",\"title\":\"WebSVN2 Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/WebSVN2/0.9/WebSVN2.hpi\",\"version\":\"0.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/WebSVN2+Plugin\"},\"accurev\":{\"buildDate\":\"Aug 19, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"statler\",\"name\":\"Scott Tatum\"},{\"developerId\":\"helterscelter\",\"name\":\"Clint Martin\"}],\"excerpt\":\"This plugin allows you to use <a href='http://www.accurev.com/'>AccuRev<\\/a> as a SCM.\",\"gav\":\"org.jvnet.hudson.plugins:accurev:0.6.18\",\"labels\":[\"scm\"],\"name\":\"accurev\",\"previousTimestamp\":\"2011-08-19T15:50:38.00Z\",\"previousVersion\":\"0.6.17\",\"releaseTimestamp\":\"2011-08-19T16:36:10.00Z\",\"requiredCore\":\"1.345\",\"scm\":\"github.com\",\"sha1\":\"uW5HHPyxF/XfUW0RDoFk2NDVx/A=\",\"title\":\"Accurev Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/accurev/0.6.18/accurev.hpi\",\"version\":\"0.6.18\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Accurev+Plugin\"},\"active-directory\":{\"buildDate\":\"Nov 06, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"With this plugin, you can configure Jenkins to authenticate the username and the password through Active Directory.\",\"gav\":\"org.jenkins-ci.plugins:active-directory:1.30\",\"labels\":[\"user\"],\"name\":\"active-directory\",\"previousTimestamp\":\"2012-06-06T22:52:54.00Z\",\"previousVersion\":\"1.29\",\"releaseTimestamp\":\"2012-11-06T14:38:54.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"m5fljiln7rWMSG2fOYgEZVrwh2M=\",\"title\":\"Active Directory plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/active-directory/1.30/active-directory.hpi\",\"version\":\"1.30\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Active+Directory+plugin\"},\"additional-identities-plugin\":{\"buildDate\":\"Sep 27, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"nicolas\"}],\"excerpt\":\"\",\"gav\":\"com.cloudbees.jenkins.plugins:additional-identities-plugin:1.0\",\"name\":\"additional-identities-plugin\",\"releaseTimestamp\":\"2012-09-27T19:51:54.00Z\",\"requiredCore\":\"1.480\",\"scm\":\"github.com\",\"sha1\":\"BVh9AQHpW+BU5fPRaOvpB6pnh00=\",\"title\":\"additional-identities-plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/additional-identities-plugin/1.0/additional-identities-plugin.hpi\",\"version\":\"1.0\"},\"all-changes\":{\"buildDate\":\"Sep 18, 2011\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.4\"},{\"name\":\"parameterized-trigger\",\"optional\":true,\"version\":\"2.10\"},{\"name\":\"email-ext\",\"optional\":true,\"version\":\"2.14\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.417\"},{\"name\":\"git\",\"optional\":true,\"version\":\"1.1.11\"},{\"name\":\"subversion\",\"optional\":true,\"version\":\"1.31\"}],\"developers\":[{\"developerId\":\"wolfs\",\"name\":\"Stefan Wolf\"}],\"excerpt\":\"Shows all changes which influenced the builds of a project.\",\"gav\":\"org.jenkins-ci.plugins:all-changes:1.3\",\"labels\":[\"ui\",\"report\"],\"name\":\"all-changes\",\"previousTimestamp\":\"2011-08-31T02:22:42.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-09-18T22:15:30.00Z\",\"requiredCore\":\"1.417\",\"scm\":\"github.com\",\"sha1\":\"vMtuVcwKCzI9FTuYX2zrW60m2dI=\",\"title\":\"All Changes Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/all-changes/1.3/all-changes.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/All+Changes+Plugin\"},\"analysis-collector\":{\"buildDate\":\"Oct 05, 2012\",\"dependencies\":[{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.2\"},{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.48\"},{\"name\":\"tasks\",\"optional\":true,\"version\":\"4.33\"},{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"},{\"name\":\"dry\",\"optional\":true,\"version\":\"2.31\"},{\"name\":\"checkstyle\",\"optional\":true,\"version\":\"3.30\"},{\"name\":\"warnings\",\"optional\":true,\"version\":\"4.15\"},{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.409\"},{\"name\":\"pmd\",\"optional\":true,\"version\":\"3.31\"},{\"name\":\"findbugs\",\"optional\":true,\"version\":\"4.43\"}],\"developers\":[{\"developerId\":\"drulli\",\"email\":\"ullrich.hafner@gmail.com\",\"name\":\"Ulli Hafner\"}],\"excerpt\":\"This plug-in is an add-on for the plug-ins <a href='Checkstyle Plugin'>Checkstyle<\\/a>, <a href='DRY Plugin'>Dry<\\/a>, <a href='FindBugs Plugin'>FindBugs<\\/a>, <a href='PMD Plugin'>PMD<\\/a>, <a href='Task Scanner Plugin'>Task Scanner<\\/a>, and <a href='Warnings Plugin'>Warnings<\\/a>: the plug-in collects the different analysis results and shows the results in a combined trend graph. Additionally, the plug-in provides health reporting and build stability based on these combined results. \",\"gav\":\"org.jvnet.hudson.plugins:analysis-collector:1.34\",\"labels\":[\"maven\",\"report\"],\"name\":\"analysis-collector\",\"previousTimestamp\":\"2012-09-10T23:02:18.00Z\",\"previousVersion\":\"1.33\",\"releaseTimestamp\":\"2012-10-05T16:13:42.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"GlfzWsS93EsrHKywcepSk+wHccQ=\",\"title\":\"Analysis Collector Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/analysis-collector/1.34/analysis-collector.hpi\",\"version\":\"1.34\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Analysis+Collector+Plugin\"},\"analysis-core\":{\"buildDate\":\"Oct 05, 2012\",\"dependencies\":[{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.2\"},{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"},{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.409\"}],\"developers\":[{\"developerId\":\"drulli\",\"email\":\"ullrich.hafner@gmail.com\",\"name\":\"Ulli Hafner\"}],\"excerpt\":\"This plug-in provides utilities for the static code analysis plug-ins.\",\"gav\":\"org.jvnet.hudson.plugins:analysis-core:1.48\",\"labels\":[\"maven\",\"report\"],\"name\":\"analysis-core\",\"previousTimestamp\":\"2012-09-10T22:54:40.00Z\",\"previousVersion\":\"1.47\",\"releaseTimestamp\":\"2012-10-05T15:42:42.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"YcAMz4Dr+s6d1OIlRguLwJtZPBk=\",\"title\":\"Static Code Analysis Plug-ins\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/analysis-core/1.48/analysis-core.hpi\",\"version\":\"1.48\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Static+Code+Analysis+Plug-ins\"},\"android-emulator\":{\"buildDate\":\"Nov 29, 2012\",\"dependencies\":[{\"name\":\"port-allocator\",\"optional\":false,\"version\":\"1.5\"}],\"developers\":[{\"developerId\":\"orrc\",\"email\":\"chris@orr.me.uk\",\"name\":\"Christopher Orr\"}],\"excerpt\":\"Lets you automatically generate, launch and interact with an <a href='http://developer.android.com/'>Android<\\/a> emulator during a build, with the emulator logs being captured as artifacts. \",\"gav\":\"org.jvnet.hudson.plugins:android-emulator:2.7.1\",\"labels\":[\"buildwrapper\",\"android\"],\"name\":\"android-emulator\",\"previousTimestamp\":\"2012-11-27T02:31:42.00Z\",\"previousVersion\":\"2.7\",\"releaseTimestamp\":\"2012-11-29T06:24:06.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"github.com\",\"sha1\":\"yLCL6sRrqqyQI9oUh5wuClQc3tE=\",\"title\":\"Android Emulator Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/android-emulator/2.7.1/android-emulator.hpi\",\"version\":\"2.7.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Android+Emulator+Plugin\"},\"android-lint\":{\"buildDate\":\"Dec 30, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.409\"},{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.1\"},{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"1.8.1\"},{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.43\"}],\"developers\":[{\"developerId\":\"orrc\",\"email\":\"chris@orr.me.uk\",\"name\":\"Christopher Orr\"}],\"excerpt\":\"Parses output from the Android lint tool and displays the results for analysis.\",\"gav\":\"org.jvnet.hudson.plugins:android-lint:2.0.2\",\"labels\":[\"report\",\"android\"],\"name\":\"android-lint\",\"previousTimestamp\":\"2012-11-14T05:33:38.00Z\",\"previousVersion\":\"2.0.1\",\"releaseTimestamp\":\"2012-12-30T18:29:38.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"fvpV8ArgbCX6f7HtPtB3HJ81SA8=\",\"title\":\"Android Lint Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/android-lint/2.0.2/android-lint.hpi\",\"version\":\"2.0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Android+Lint+Plugin\"},\"ansicolor\":{\"buildDate\":\"Jun 07, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"dblock\",\"email\":\"dblock@dblock.org\",\"name\":\"Daniel Doubrovkine\"}],\"excerpt\":\"This plugin adds support for ANSI escape sequences, including color, to Console Output.\",\"gav\":\"org.jvnet.hudson.plugins:ansicolor:0.3.1\",\"labels\":[\"misc\"],\"name\":\"ansicolor\",\"previousTimestamp\":\"2012-06-05T00:44:00.00Z\",\"previousVersion\":\"0.3.0\",\"releaseTimestamp\":\"2012-06-07T15:06:24.00Z\",\"requiredCore\":\"1.374\",\"scm\":\"github.com\",\"sha1\":\"Jy6C6rKHdLexkR1WGLhr28jsQvY=\",\"title\":\"AnsiColor Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ansicolor/0.3.1/ansicolor.hpi\",\"version\":\"0.3.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/AnsiColor+Plugin\"},\"ant\":{\"buildDate\":\"Sep 19, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin adds <a href='http://ant.apache.org/'>Apache Ant<\\/a> support to Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:ant:1.1\",\"labels\":[\"builder\"],\"name\":\"ant\",\"previousTimestamp\":\"2011-09-19T13:40:12.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-09-19T16:52:24.00Z\",\"requiredCore\":\"1.431\",\"scm\":\"github.com\",\"sha1\":\"VZ8Zs0wp22C/HbhU0ZWEvA9RgCw=\",\"title\":\"Ant Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ant/1.1/ant.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Ant+Plugin\"},\"antexec\":{\"buildDate\":\"Aug 28, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424\"}],\"developers\":[{\"developerId\":\"svasek\",\"email\":\"svasek@gmail.com\",\"name\":\"Milos Svasek\"}],\"excerpt\":\"This plugin makes it possible to run Apache Ant code directly from Jenkins-CI. \",\"gav\":\"org.jenkins-ci.plugins:antexec:1.6\",\"labels\":[],\"name\":\"antexec\",\"previousTimestamp\":\"2012-06-21T13:04:44.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2012-08-28T20:59:38.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"cIl0WIHedkip9awfovx4k6Y5YPQ=\",\"title\":\"AntExec plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/antexec/1.6/antexec.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/AntExec+plugin\"},\"any-buildstep\":{\"buildDate\":\"Nov 14, 2011\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.4\"},{\"name\":\"run-condition\",\"optional\":false,\"version\":\"0.5\"},{\"name\":\"conditional-buildstep\",\"optional\":false,\"version\":\"0.2\"},{\"name\":\"flexible-publish\",\"optional\":false,\"version\":\"0.7\"}],\"developers\":[{\"developerId\":\"bap\",\"email\":\"bap-jenkins@BapIT.co.uk\",\"name\":\"Bap\"}],\"excerpt\":\"Use publishers as builders and builders as publishers. Adds builders to the actions available in the [Flexible Publish Plugin] and publishers to the list of builders available in the [Conditional BuildStep Plugin]. \",\"gav\":\"org.jenkins-ci.plugins:any-buildstep:0.1\",\"labels\":[\"builder\",\"post-build\"],\"name\":\"any-buildstep\",\"releaseTimestamp\":\"2011-11-14T23:43:44.00Z\",\"requiredCore\":\"1.408\",\"scm\":\"github.com\",\"sha1\":\"46R/wmiCUngBl8Zrt4cRwvGbJuI=\",\"title\":\"Any Build Step Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/any-buildstep/0.1/any-buildstep.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Any+Build+Step+Plugin\"},\"anything-goes-formatter\":{\"buildDate\":\"Mar 14, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"email\":\"kk@kohsuke.org\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:anything-goes-formatter:1.0\",\"name\":\"anything-goes-formatter\",\"releaseTimestamp\":\"2012-03-14T15:50:52.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"P+91IIgNJvsFUhaxCZLaZPG0VI0=\",\"title\":\"anything-goes-formatter\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/anything-goes-formatter/1.0/anything-goes-formatter.hpi\",\"version\":\"1.0\"},\"appaloosa-plugin\":{\"buildDate\":\"Aug 01, 2012\",\"dependencies\":[{\"name\":\"promoted-builds\",\"optional\":true,\"version\":\"2.4\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.399\"}],\"developers\":[{\"developerId\":\"aheritier\",\"email\":\"aheritier@apache.org\",\"name\":\"Arnaud Heritier\"},{\"developerId\":\"joel1di1\",\"email\":\"joel1di1@gmail.com\",\"name\":\"Benoit Lafontaine\"}],\"excerpt\":\"Publish your mobile applications (Android, iOS, ...) to the&nbsp;<a href='http://www.appaloosa-store.com'>appaloosa-store.com<\\/a>&nbsp;platform.\",\"gav\":\"org.jenkins-ci.plugins:appaloosa-plugin:1.3.1\",\"labels\":[\"upload\",\"ios\",\"android\"],\"name\":\"appaloosa-plugin\",\"previousTimestamp\":\"2012-05-05T23:56:14.00Z\",\"previousVersion\":\"1.3.0\",\"releaseTimestamp\":\"2012-08-01T17:55:32.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"CFNh6itZKYm47esb9BloMyltpRo=\",\"title\":\"Appaloosa Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/appaloosa-plugin/1.3.1/appaloosa-plugin.hpi\",\"version\":\"1.3.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Appaloosa+Plugin\"},\"application-director-plugin\":{\"buildDate\":\"Nov 25, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jfullam\",\"email\":\"jonathanfullam@gmail.com\",\"name\":\"Jonathan Fullam\"}],\"excerpt\":\"Integrates Jenkins to vFabric Application Director\",\"gav\":\"org.jenkins-ci.plugins:application-director-plugin:1.3\",\"labels\":[\"buildwrapper\"],\"name\":\"application-director-plugin\",\"previousTimestamp\":\"2012-11-25T00:48:32.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-11-25T23:15:18.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"RnI/LBtk2Inxndos34t6fY4I+mE=\",\"title\":\"vFabric Application Director Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/application-director-plugin/1.3/application-director-plugin.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/vFabric+Application+Director+Plugin\"},\"artifact-diff-plugin\":{\"buildDate\":\"Nov 06, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"olivergondza\",\"name\":\"Oliver Gondža\"}],\"excerpt\":\"Plugin can compare content of an artifact identified by its relative path among different builds. \",\"gav\":\"org.jenkins-ci.plugins:artifact-diff-plugin:1.1\",\"labels\":[],\"name\":\"artifact-diff-plugin\",\"previousTimestamp\":\"2012-09-10T17:16:56.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-11-06T18:51:56.00Z\",\"requiredCore\":\"1.461\",\"scm\":\"github.com\",\"sha1\":\"e7dRUwgfc/oqzgrkVu/LslKQrpU=\",\"title\":\"Artifact Diff Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/artifact-diff-plugin/1.1/artifact-diff-plugin.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Artifact+Diff+Plugin\"},\"artifactdeployer\":{\"buildDate\":\"Dec 23, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424\"}],\"developers\":[{\"developerId\":\"gbois\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin makes it possible to copy artifacts to remote locations.\",\"gav\":\"org.jenkins-ci.plugins:artifactdeployer:0.26\",\"labels\":[\"upload\"],\"name\":\"artifactdeployer\",\"previousTimestamp\":\"2012-11-04T04:53:00.00Z\",\"previousVersion\":\"0.25\",\"releaseTimestamp\":\"2012-12-23T05:51:30.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"iBCrmNqQriqPcRgUy1Ccuxp4iEA=\",\"title\":\"ArtifactDeployer Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/artifactdeployer/0.26/artifactdeployer.hpi\",\"version\":\"0.26\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/ArtifactDeployer+Plugin\"},\"artifactory\":{\"buildDate\":\"Oct 15, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.428\"},{\"name\":\"jira\",\"optional\":true,\"version\":\"1.29\"},{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.37\"},{\"name\":\"git\",\"optional\":true,\"version\":\"1.1.14\"},{\"name\":\"ivy\",\"optional\":true,\"version\":\"1.17\"},{\"name\":\"perforce\",\"optional\":true,\"version\":\"1.3.7\"},{\"name\":\"gradle\",\"optional\":true,\"version\":\"1.15\"}],\"developers\":[{\"developerId\":\"yossis\",\"email\":\"yossis@jfrog.org\",\"name\":\"Yossi Shaul\"}],\"excerpt\":\"This plugin allows deploying Maven 2, Maven 3, Ivy and Gradle artifacts and build info to the Artifactory artifacts manager.\",\"gav\":\"org.jenkins-ci.plugins:artifactory:2.1.3\",\"labels\":[\"upload\",\"report\",\"buildwrapper\"],\"name\":\"artifactory\",\"previousTimestamp\":\"2012-08-08T11:26:10.00Z\",\"previousVersion\":\"2.1.2\",\"releaseTimestamp\":\"2012-10-15T23:38:30.00Z\",\"requiredCore\":\"1.428\",\"scm\":\"github.com\",\"sha1\":\"iyHLJMtt3AgT+Ut9BDlfzcP3Nhk=\",\"title\":\"Artifactory Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/artifactory/2.1.3/artifactory.hpi\",\"version\":\"2.1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Artifactory+Plugin\"},\"asakusa-satellite-plugin\":{\"buildDate\":\"Oct 23, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"suer\",\"email\":\"suetsugu.r@gmail.com\",\"name\":\"Ryo SUETSUGU\"}],\"excerpt\":\"This plugin notifies <a href='https://github.com/codefirst/AsakusaSatellite'>AsakusaSatellite<\\/a> of build results. \",\"gav\":\"org.codefirst.jenkins.asakusasatellite:asakusa-satellite-plugin:0.1.1\",\"labels\":[\"notifier\"],\"name\":\"asakusa-satellite-plugin\",\"previousTimestamp\":\"2012-10-23T04:22:24.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2012-10-23T20:35:50.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"UQMnOOD1ObzOU2XNOoTAExRKx3U=\",\"title\":\"AsakusaSatellite Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/asakusa-satellite-plugin/0.1.1/asakusa-satellite-plugin.hpi\",\"version\":\"0.1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/AsakusaSatellite+Plugin\"},\"assembla\":{\"buildDate\":\"Oct 07, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"droidev82\",\"email\":\"simon@lmitsoftware.com\",\"name\":\"Simone Ardissone\"}],\"excerpt\":\"This plugin integrates&nbsp;<a href='http://www.assembla.com'>Assembla<\\/a>&nbsp;to Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:assembla:1.2\",\"labels\":[\"external\"],\"name\":\"assembla\",\"releaseTimestamp\":\"2011-10-07T21:02:02.00Z\",\"requiredCore\":\"1.427\",\"scm\":\"github.com\",\"sha1\":\"ewKkpcS8nXxQaAVQ/nRuYvr0oTs=\",\"title\":\"Assembla plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/assembla/1.2/assembla.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Assembla+plugin\"},\"assembla-auth\":{\"buildDate\":\"Nov 22, 2012\",\"compatibleSinceVersion\":\"0.3\",\"dependencies\":[],\"developers\":[{\"developerId\":\"www.assembla.com\",\"name\":\"Assembla\"},{\"developerId\":\"damir_assembla\",\"name\":\"Damir Milovic\"},{\"developerId\":\"titas\",\"name\":\"Titas Norkunas\"},{\"developerId\":\"mpchlets\",\"name\":\"Michael Chletsos\"}],\"excerpt\":\"A Jenkins authentication plugin that delegates to Assembla oAuth\",\"gav\":\"org.jenkins-ci.plugins:assembla-auth:1.03\",\"labels\":[\"external\",\"user\"],\"name\":\"assembla-auth\",\"previousTimestamp\":\"2012-11-19T11:04:56.00Z\",\"previousVersion\":\"1.02\",\"releaseTimestamp\":\"2012-11-22T16:10:18.00Z\",\"requiredCore\":\"1.431\",\"scm\":\"git.assembla.com\",\"sha1\":\"MAJwcTAVXdFnXMkTy82gG6WVM4c=\",\"title\":\"Assembla Auth Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/assembla-auth/1.03/assembla-auth.hpi\",\"version\":\"1.03\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Assembla+Auth+Plugin\"},\"associated-files\":{\"buildDate\":\"Aug 27, 2012\",\"dependencies\":[],\"developers\":[],\"excerpt\":\"This plugin allows for marking files or directories outside of Jenkins as related to a build.\",\"gav\":\"org.jenkinsci.plugins:associated-files:0.2.1\",\"labels\":[\"post-build\"],\"name\":\"associated-files\",\"previousTimestamp\":\"2012-03-23T17:51:00.00Z\",\"previousVersion\":\"0.2.0\",\"releaseTimestamp\":\"2012-08-27T12:36:20.00Z\",\"requiredCore\":\"1.420\",\"scm\":\"github.com\",\"sha1\":\"TXHl3auAG4wvX6g1vuwpxX6rtu8=\",\"title\":\"Associated Files Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/associated-files/0.2.1/associated-files.hpi\",\"version\":\"0.2.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Associated+Files+Plugin\"},\"async-http-client\":{\"buildDate\":\"Dec 18, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stephenc\",\"name\":\"Stephen Connolly\"}],\"excerpt\":\"This plugin provides a shared dependency on the ning.com async-http-client library so that other plugins can co-operate when using this library. \",\"gav\":\"org.jenkins-ci.plugins:async-http-client:1.7.8\",\"labels\":[\"library\"],\"name\":\"async-http-client\",\"previousTimestamp\":\"2012-05-11T16:04:24.00Z\",\"previousVersion\":\"1.7.4-1\",\"releaseTimestamp\":\"2012-12-18T15:44:54.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"U4lhSsu4ufgFkujWE4P5ZfWGOxk=\",\"title\":\"Async Http Client Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/async-http-client/1.7.8/async-http-client.hpi\",\"version\":\"1.7.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Async+Http+Client+Plugin\"},\"async-job\":{\"buildDate\":\"Nov 21, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"Library plugin for custom job types that model external asynchronous processes\",\"gav\":\"org.jenkins-ci.plugins:async-job:1.3\",\"labels\":[],\"name\":\"async-job\",\"previousTimestamp\":\"2012-11-21T16:09:58.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-11-21T16:33:36.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"WaHABPk+pZbS91vn/A9MxuA4CwU=\",\"title\":\"Async Job Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/async-job/1.3/async-job.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Async+Job+Plugin\"},\"audit-trail\":{\"buildDate\":\"Aug 03, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mindless\",\"name\":\"Alan Harder\"}],\"excerpt\":\"Keep a log of who performed particular Jenkins operations, such as configuring jobs.\",\"gav\":\"org.jenkins-ci.plugins:audit-trail:1.7\",\"labels\":[\"user\"],\"name\":\"audit-trail\",\"previousTimestamp\":\"2011-02-24T23:32:28.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2011-08-03T12:01:06.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"HppBhEA8cfWIFnPtMA0iJrwwO28=\",\"title\":\"Audit Trail Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/audit-trail/1.7/audit-trail.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Audit+Trail+Plugin\"},\"avatar\":{\"buildDate\":\"May 24, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"oxcafebabe\",\"email\":\"edward@hurst-frost.net\",\"name\":\"Edward Hurst-Frost\"}],\"excerpt\":\"This plugin allows avatar images to be uploaded and associated with Jenkins users.\",\"gav\":\"net.hurstfrost.jenkins:avatar:1.1\",\"labels\":[\"user\"],\"name\":\"avatar\",\"previousTimestamp\":\"2011-08-07T21:10:34.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-05-24T16:22:40.00Z\",\"requiredCore\":\"1.434\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"o56/TYEopv5tUQQNZRN4muuvxKo=\",\"title\":\"Avatar Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/avatar/1.1/avatar.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Avatar+Plugin\"},\"backlog\":{\"buildDate\":\"Sep 06, 2012\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.11\"},{\"name\":\"git\",\"optional\":true,\"version\":\"1.1.22\"}],\"developers\":[{\"developerId\":\"dragon3\",\"name\":\"Ryuzo Yamamoto\"},{\"developerId\":\"ikikko\",\"name\":\"Tomonari Nakamura\"}],\"excerpt\":\"This plugin integrates <a href='http://www.backlog.jp/'>Backlog<\\/a> to Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:backlog:1.8\",\"labels\":[\"notifier\",\"external\",\"user\",\"upload\"],\"name\":\"backlog\",\"previousTimestamp\":\"2012-03-09T05:04:36.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2012-09-06T04:05:00.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"Exu7kLnh8YpWULrAPmIZf4n5bV0=\",\"title\":\"Backlog Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/backlog/1.8/backlog.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Backlog+Plugin\"},\"backup\":{\"buildDate\":\"Aug 04, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vsellier\",\"name\":\"Vincent Sellier\"},{\"developerId\":\"rseguy\",\"name\":\"Romain Seguy\"}],\"excerpt\":\"Backup plugin allows archiving and restoring your Jenkins (and Hudson) home directory.\",\"gav\":\"org.jvnet.hudson.plugins:backup:1.6.1\",\"labels\":[\"misc\"],\"name\":\"backup\",\"previousTimestamp\":\"2010-12-10T20:48:50.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2011-08-04T15:53:04.00Z\",\"requiredCore\":\"1.375\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"qoj8AeHUNaQvgISsEiJ5SkIPX70=\",\"title\":\"Backup Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/backup/1.6.1/backup.hpi\",\"version\":\"1.6.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Backup+Plugin\"},\"bamboo-notifier\":{\"buildDate\":\"Apr 22, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"asgeirn\",\"email\":\"asgeir@twingine.no\",\"name\":\"Asgeir Storesund Nilsen\"}],\"excerpt\":\"Trigger a Bamboo build upon successful completion of a Hudson job.\",\"gav\":\"hudson.plugins.bamboo:bamboo-notifier:1.1\",\"labels\":[\"notifier\"],\"name\":\"bamboo-notifier\",\"previousTimestamp\":\"2009-12-30T21:05:20.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2010-04-23T03:49:02.00Z\",\"requiredCore\":\"1.355\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"6B/9qHkLC0818IeGfLOo+TAo3I0=\",\"title\":\"Bamboo Notifier\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/bamboo-notifier/1.1/bamboo-notifier.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Bamboo+Notifier\"},\"batch-task\":{\"buildDate\":\"May 01, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"mindless\",\"name\":\"Alan Harder\"}],\"excerpt\":\"This plugin adds batch tasks that are not regularly executed to projects, such as releases, integration, archiving, etc.\",\"gav\":\"org.jenkins-ci.plugins:batch-task:1.16\",\"labels\":[\"post-build\",\"builder\"],\"name\":\"batch-task\",\"previousTimestamp\":\"2012-04-06T01:06:12.00Z\",\"previousVersion\":\"1.15\",\"releaseTimestamp\":\"2012-05-01T23:10:38.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"/oqANM4r4lIsmZ4QJ94MhE5WmhE=\",\"title\":\"Batch Task Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/batch-task/1.16/batch-task.hpi\",\"version\":\"1.16\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Batch+Task+Plugin\"},\"bazaar\":{\"buildDate\":\"Oct 12, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stewart\",\"email\":\"stewart@flamingspork.com\",\"name\":\"Stewart Smith\"}],\"excerpt\":\"This plugin integrates <a href='http://bazaar-vcs.org/'>Bazaar<\\/a> version control system to Jenkins. The plugin requires the Bazaar binary (bzr) to be installed on the target machine.\",\"gav\":\"org.jenkins-ci.plugins:bazaar:1.21\",\"labels\":[\"scm\"],\"name\":\"bazaar\",\"previousTimestamp\":\"2012-08-27T16:26:30.00Z\",\"previousVersion\":\"1.20\",\"releaseTimestamp\":\"2012-10-12T22:34:24.00Z\",\"requiredCore\":\"1.413\",\"scm\":\"github.com\",\"sha1\":\"RAHlxZYARNBQ/VUr/zVFTrJiIeI=\",\"title\":\"Bazaar Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/bazaar/1.21/bazaar.hpi\",\"version\":\"1.21\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Bazaar+Plugin\"},\"beer\":{\"buildDate\":\"Mar 21, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"We all need beer from time to time\",\"gav\":\"org.jenkins-ci.plugins:beer:1.2\",\"labels\":[],\"name\":\"beer\",\"previousTimestamp\":\"2012-01-04T14:43:28.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-03-21T13:59:58.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"FLwF/QynS4lSxqG3eBrGBSkiYxw=\",\"title\":\"Beer Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/beer/1.2/beer.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Beer+Plugin\"},\"bitkeeper\":{\"buildDate\":\"Oct 11, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mdonohue\",\"email\":\"michael.donohue@gmail.com\",\"name\":\"Michael Donohue\"}],\"excerpt\":\"Add BitKeeper support to Jenkins\",\"gav\":\"org.jenkins-ci.plugins:bitkeeper:1.7\",\"labels\":[\"scm\"],\"name\":\"bitkeeper\",\"previousTimestamp\":\"2011-10-09T20:17:14.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2011-10-11T06:26:58.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"08+AUEZVP8/7EgiNj5zTH1jQJHI=\",\"title\":\"BitKeeper Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/bitkeeper/1.7/bitkeeper.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/BitKeeper+Plugin\"},\"blame-upstream-commiters\":{\"buildDate\":\"Sep 15, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"taksan\",\"email\":\"g.takeuchi@gmail.com\",\"name\":\"Gabriel Takeuchi\"},{\"developerId\":\"willemv\",\"name\":\"Willem Verstraeten\"}],\"excerpt\":\"This is a simple plugin that adds a post build action to mail upstream committers when a build fails.\",\"gav\":\"hudson.plugins:blame-upstream-commiters:1.2\",\"labels\":[\"notifier\"],\"name\":\"blame-upstream-commiters\",\"previousTimestamp\":\"2010-01-21T17:26:24.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2010-09-16T01:37:02.00Z\",\"requiredCore\":\"1.375\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"kZeGWhk47OJBs9OJWnGBmnF23yE=\",\"title\":\"Blame Upstream Committers Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/blame-upstream-commiters/1.2/blame-upstream-commiters.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Blame+Upstream+Committers+Plugin\"},\"blink1\":{\"buildDate\":\"Dec 20, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"maripo\",\"email\":\"goda.mariko@gmail.com\",\"name\":\"Maripo GODA\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:blink1:1.1\",\"labels\":[\"notifier\"],\"name\":\"blink1\",\"previousTimestamp\":\"2012-12-17T05:07:30.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-12-21T03:46:06.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"Ga4ZFkUrbwosjuvCmnNSvxG2/oc=\",\"title\":\"Blink1 Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/blink1/1.1/blink1.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Blink1+Plugin\"},\"blitz_io-jenkins\":{\"buildDate\":\"Jun 05, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jeffli\",\"email\":\"jeff.li@spirent.com\",\"name\":\"Jeff Li\"}],\"excerpt\":\"This plugin allows you to run web load tests from the cloud&nbsp;using&nbsp;<a href='http://blitz.io'>Blitz.io<\\/a>.&nbsp; \",\"gav\":\"io.blitz:blitz_io-jenkins:1.04\",\"labels\":[\"external\"],\"name\":\"blitz_io-jenkins\",\"previousTimestamp\":\"2012-06-04T17:08:32.00Z\",\"previousVersion\":\"1.03\",\"releaseTimestamp\":\"2012-06-05T17:33:34.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"N6OPL25lUyGUWNHcBbf0FebR2Ao=\",\"title\":\"Blitz_io\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/blitz_io-jenkins/1.04/blitz_io-jenkins.hpi\",\"version\":\"1.04\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Blitz_io\"},\"brakeman\":{\"buildDate\":\"Mar 21, 2012\",\"dependencies\":[{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.38\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.409\"}],\"developers\":[{\"developerId\":\"presidentbeef\",\"name\":\"Justin Collins\"}],\"excerpt\":\"This plugin reads output from <a href='http://brakemanscanner.org'>Brakeman<\\/a>, a static analysis security vulnerability scanner for Ruby on Rails. \",\"gav\":\"org.jenkins-ci.plugins:brakeman:0.7\",\"labels\":[\"report\",\"ruby\"],\"name\":\"brakeman\",\"previousTimestamp\":\"2011-10-20T19:47:38.00Z\",\"previousVersion\":\"0.5\",\"releaseTimestamp\":\"2012-03-21T21:45:02.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"SiRIW5mFnaSzEEFmNL76bsbC5hg=\",\"title\":\"Brakeman Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/brakeman/0.7/brakeman.hpi\",\"version\":\"0.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Brakeman+Plugin\"},\"browser-axis-plugin\":{\"buildDate\":\"Apr 02, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"lvotypko\",\"email\":\"lvotypko@redhat.com\",\"name\":\"Lucie Votypkova\"}],\"excerpt\":\"This plugin add browser axis to matrix job \",\"gav\":\"org.jenkins-ci.plugins:browser-axis-plugin:1.0\",\"labels\":[],\"name\":\"browser-axis-plugin\",\"releaseTimestamp\":\"2012-04-02T17:33:00.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"JQIsqTmj+FpviQ315kyNHWhtuUg=\",\"title\":\"Browser axis plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/browser-axis-plugin/1.0/browser-axis-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Browser+axis+plugin\"},\"bruceschneier\":{\"buildDate\":\"Oct 15, 2009\",\"dependencies\":[],\"developers\":[{\"developerId\":\"dinomite\",\"email\":\"dstephens@genius.com\",\"name\":\"Drew Stephens\"}],\"excerpt\":\"Displays a picture of Bruce Schneier (instead of Jenkins the butler) and a random Bruce Schneier fact on each build page. \",\"gav\":\"org.jvnet.hudson.plugins:bruceschneier:0.1\",\"labels\":[\"ui\"],\"name\":\"bruceschneier\",\"releaseTimestamp\":\"2009-10-15T20:24:54.00Z\",\"requiredCore\":\"1.328\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"8bQawVNxgl+tjz3BCkELvxZpFuc=\",\"title\":\"BruceSchneier Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/bruceschneier/0.1/bruceschneier.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/BruceSchneier+Plugin\"},\"buckminster\":{\"buildDate\":\"Apr 01, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jutzig\",\"email\":\"mail@jutzig.de\",\"name\":\"Johannes Utzig\"}],\"excerpt\":\"This PlugIn integrates <a href='http://www.eclipse.org/buckminster'>Eclipse Buckminster<\\/a> as a new build step into hudson.\",\"gav\":\"org.jvnet.hudson.plugins:buckminster:1.1.0\",\"labels\":[\"builder\"],\"name\":\"buckminster\",\"previousTimestamp\":\"2011-01-15T05:59:02.00Z\",\"previousVersion\":\"1.0.8\",\"releaseTimestamp\":\"2011-04-01T04:30:56.00Z\",\"requiredCore\":\"1.391\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"cQkGNBqaDceKiVpP1udlH0ubzMk=\",\"title\":\"Buckminster PlugIn\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/buckminster/1.1.0/buckminster.hpi\",\"version\":\"1.1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Buckminster+PlugIn\"},\"buddycloud\":{\"buildDate\":\"Aug 04, 2012\",\"dependencies\":[{\"name\":\"ruby-runtime\",\"optional\":false,\"version\":\"0.10\"},{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"lloyd\"}],\"excerpt\":\"Sends build notifications to a buddycloud instance.\",\"gav\":\"org.jenkins-ci.ruby-plugins:buddycloud:0.2.3\",\"labels\":[\"notifier\"],\"name\":\"buddycloud\",\"previousTimestamp\":\"2012-08-04T16:29:44.00Z\",\"previousVersion\":\"0.2.2\",\"releaseTimestamp\":\"2012-08-04T16:48:12.00Z\",\"requiredCore\":\"1.432\",\"scm\":\"github.com\",\"sha1\":\"ySjScOdtVhNyxVBUTjdXtRvR1o4=\",\"title\":\"Buddycloud Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/buddycloud/0.2.3/buddycloud.hpi\",\"version\":\"0.2.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Buddycloud+Plugin\"},\"bugzilla\":{\"buildDate\":\"Nov 04, 2011\",\"dependencies\":[],\"developers\":[{\"name\":\"New Maintainer Needed\"},{\"developerId\":\"mdonohue\",\"name\":\"mdonohue\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"This plugin integrates <a href='http://www.bugzilla.org/'>Bugzilla<\\/a> into Hudson.\",\"gav\":\"org.jvnet.hudson.plugins:bugzilla:1.5\",\"labels\":[\"external\"],\"name\":\"bugzilla\",\"previousTimestamp\":\"2010-01-30T22:33:34.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2011-11-04T15:27:08.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"I4ZhiTbY4Qm0Vfxb3I23I7ZVHyM=\",\"title\":\"Bugzilla Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/bugzilla/1.5/bugzilla.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Bugzilla+Plugin\"},\"build-blocker-plugin\":{\"buildDate\":\"Jun 25, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ffromm\",\"email\":\"frederik.fromm@gmail.com\",\"name\":\"Frederik Fromm\"}],\"excerpt\":\"This plugin keeps the actual job in the queue if at least one name of currently running jobs is matching with one of the given regular expressions.\",\"gav\":\"org.jenkins-ci.plugins:build-blocker-plugin:1.2\",\"labels\":[\"misc\"],\"name\":\"build-blocker-plugin\",\"previousTimestamp\":\"2012-06-25T01:36:10.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-06-25T17:34:08.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"EYsOQkHe/oRz0Jwa6eoqG298bfs=\",\"title\":\"Build Blocker Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/build-blocker-plugin/1.2/build-blocker-plugin.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Build+Blocker+Plugin\"},\"build-cause-run-condition\":{\"buildDate\":\"Jul 25, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"},{\"name\":\"run-condition\",\"optional\":false,\"version\":\"0.10\"}],\"developers\":[{\"developerId\":\"cjo9900\",\"email\":\"cjo.johnson@gmail.com\",\"name\":\"Chris Johnson\"}],\"excerpt\":\"Build Cause Run condition to select whether to execute a build step or publisher. Used by the [Run Condition Plugin].  \",\"gav\":\"org.jenkins-ci.plugins:build-cause-run-condition:0.1\",\"labels\":[\"runcondition\"],\"name\":\"build-cause-run-condition\",\"releaseTimestamp\":\"2012-07-25T21:43:24.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"my5PF28k9N0wVDymOp7LwHbeDQM=\",\"title\":\"Build Cause Run Condition\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/build-cause-run-condition/0.1/build-cause-run-condition.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Build+Cause+Run+Condition\"},\"build-failure-analyzer\":{\"buildDate\":\"Dec 06, 2012\",\"dependencies\":[{\"name\":\"gerrit-trigger\",\"optional\":true,\"version\":\"2.7.0\"},{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.10\"}],\"developers\":[{\"developerId\":\"rsandell\",\"email\":\"robert.sandell@sonymobile.com\",\"name\":\"Robert Sandell\"},{\"developerId\":\"t_westling\",\"email\":\"tomas.westling@sonymobile.com\",\"name\":\"Tomas Westling\"}],\"excerpt\":\"This plugin analyzes the causes of failed builds and presents the causes on the build page.&nbsp;It does this by using a knowledge base of build failure causes that is built up from scratch. Saving statistics&nbsp;about failure causes is also possible. \",\"gav\":\"com.sonyericsson.jenkins.plugins.bfa:build-failure-analyzer:1.3.0\",\"labels\":[\"post-build\",\"report\"],\"name\":\"build-failure-analyzer\",\"previousTimestamp\":\"2012-11-22T21:22:04.00Z\",\"previousVersion\":\"1.2.0\",\"releaseTimestamp\":\"2012-12-06T17:47:40.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"m0VjdEwVPB8jHZwXs/wkJIfqWSw=\",\"title\":\"Build Failure Analyzer\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/build-failure-analyzer/1.3.0/build-failure-analyzer.hpi\",\"version\":\"1.3.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Build+Failure+Analyzer\"},\"build-flow-plugin\":{\"buildDate\":\"Nov 24, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ndeloof\",\"name\":\"Nicolas De Loof\"},{\"developerId\":\"henryju\",\"name\":\"Julien Henry\"},{\"developerId\":\"mathieuancelin\",\"name\":\"Mathieu Ancelin\"}],\"excerpt\":\"This plugin allows managing Jenkins jobs orchestration using a dedicated DSL, extracting the flow logic from jobs. \",\"gav\":\"com.cloudbees.plugins:build-flow-plugin:0.6\",\"labels\":[\"misc\",\"trigger\"],\"name\":\"build-flow-plugin\",\"previousTimestamp\":\"2012-09-03T16:14:56.00Z\",\"previousVersion\":\"0.5\",\"releaseTimestamp\":\"2012-11-24T16:44:52.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"ob/TMcG9ZgkS0v6JuilFmKgnpXI=\",\"title\":\"Build Flow Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/build-flow-plugin/0.6/build-flow-plugin.hpi\",\"version\":\"0.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugin\"},\"build-keeper-plugin\":{\"buildDate\":\"Apr 16, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"},{\"name\":\"run-condition\",\"optional\":false,\"version\":\"0.8\"}],\"developers\":[{\"developerId\":\"bap\",\"email\":\"bap-jenkins@BapIT.co.uk\",\"name\":\"Bap\"}],\"excerpt\":\"Select a policy for automatically marking builds as \\\"keep forever\\\" to enable long term analysis trending when discarding old builds - or use to protect logs and artifacts from certain builds \",\"gav\":\"org.jenkins-ci.plugins:build-keeper-plugin:1.3\",\"labels\":[\"buildwrapper\"],\"name\":\"build-keeper-plugin\",\"previousTimestamp\":\"2012-01-12T04:07:56.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-04-17T03:10:06.00Z\",\"requiredCore\":\"1.408\",\"scm\":\"github.com\",\"sha1\":\"OqMzcGSJtV6erzuvU28ebESw114=\",\"title\":\"Build Keeper Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/build-keeper-plugin/1.3/build-keeper-plugin.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Build+Keeper+Plugin\"},\"build-metrics\":{\"buildDate\":\"Feb 17, 2012\",\"dependencies\":[{\"name\":\"global-build-stats\",\"optional\":false,\"version\":\"1.2\"}],\"developers\":[{\"developerId\":\"javamllama\",\"email\":\"madeline.goss@gmail.com\",\"name\":\"Maddy Goss\"}],\"excerpt\":\"This plugin uses the results from the <a href='JENKINS:Global Build Stats Plugin'>Global Build Stats Plugin<\\/a>&nbsp;to generate some basic build metrics. &nbsp;It is really useful in combination with the <a href='JENKINS:Sidebar-Link Plugin'>sidebar links plugin<\\/a>. \",\"gav\":\"org.jenkins-ci.plugins:build-metrics:1.0\",\"labels\":[\"report\"],\"name\":\"build-metrics\",\"releaseTimestamp\":\"2012-02-17T18:56:44.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"dZBa2mOxEpW+IQgaG+g5holrW3k=\",\"title\":\"build-metrics-plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/build-metrics/1.0/build-metrics.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/build-metrics-plugin\"},\"build-name-setter\":{\"buildDate\":\"Aug 02, 2011\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.0\"}],\"developers\":[{\"developerId\":\"kohsuke\",\"email\":\"kkawaguchi@cloudbees.com\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin sets the display name of a build to something other than #1, #2, #3, ...\",\"gav\":\"org.jenkins-ci.plugins:build-name-setter:1.3\",\"labels\":[\"buildwrapper\"],\"name\":\"build-name-setter\",\"previousTimestamp\":\"2011-05-23T17:41:42.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-08-02T21:46:14.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"yXpAu0/uO8qZJG6prT/DUy0DKl0=\",\"title\":\"Build Name Setter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/build-name-setter/1.3/build-name-setter.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Build+Name+Setter+Plugin\"},\"build-node-column\":{\"buildDate\":\"Nov 26, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"wadatka\",\"name\":\"Takahisa Wada\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:build-node-column:0.1\",\"labels\":[\"listview-column\"],\"name\":\"build-node-column\",\"releaseTimestamp\":\"2011-11-26T07:39:56.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"WHf29XsvkD/YKxLQt2CYG+4fmL4=\",\"title\":\"Build Node Column Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/build-node-column/0.1/build-node-column.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Build+Node+Column+Plugin\"},\"build-pipeline-plugin\":{\"buildDate\":\"Jul 13, 2012\",\"dependencies\":[{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.2\"},{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.457\"}],\"developers\":[{\"developerId\":\"centrum\",\"email\":\"plugins@centrumsystems.com.au\",\"name\":\"Centrum Systems\"}],\"excerpt\":\"This plugin provides build pipeline functionality to Hudson and Jenkins. This allows a chain of jobs to be visualised in a new view. Manual jobs in the pipeline can be triggered by a user with the appropriate permissions manually confirming.\",\"gav\":\"org.jenkins-ci.plugins:build-pipeline-plugin:1.3.3\",\"name\":\"build-pipeline-plugin\",\"previousTimestamp\":\"2012-07-13T14:04:38.00Z\",\"previousVersion\":\"1.3.2\",\"releaseTimestamp\":\"2012-07-13T15:36:10.00Z\",\"requiredCore\":\"1.457\",\"scm\":\"build-pipeline-plugin.googlecode.com\",\"sha1\":\"ztqNXLLRO3CdiFzWW9YC8zPszOw=\",\"title\":\"Build Pipeline Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/build-pipeline-plugin/1.3.3/build-pipeline-plugin.hpi\",\"version\":\"1.3.3\"},\"build-publisher\":{\"buildDate\":\"Sep 05, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424\"}],\"developers\":[{\"developerId\":\"vjuranek\",\"name\":\"Vojtech Juranek\"}],\"excerpt\":\"This plugin allows records from one Jenkins to be published on another Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:build-publisher:1.13\",\"labels\":[\"upload\"],\"name\":\"build-publisher\",\"previousTimestamp\":\"2012-03-28T14:54:48.00Z\",\"previousVersion\":\"1.12\",\"releaseTimestamp\":\"2012-09-06T03:04:36.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"qZ9xH2rI+RA4B2K6YQWQLa5YSts=\",\"title\":\"Build Publisher Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/build-publisher/1.13/build-publisher.hpi\",\"version\":\"1.13\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Build+Publisher+Plugin\"},\"build-timeout\":{\"buildDate\":\"Oct 28, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin allows you to automatically abort a build if it's taking too long.\",\"gav\":\"org.jenkins-ci.plugins:build-timeout:1.11\",\"labels\":[\"buildwrapper\"],\"name\":\"build-timeout\",\"previousTimestamp\":\"2012-06-17T16:01:42.00Z\",\"previousVersion\":\"1.10\",\"releaseTimestamp\":\"2012-10-28T20:24:46.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"HQQhUtzuI7j9kIKgs9Wb+nIUdDE=\",\"title\":\"Build-timeout Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/build-timeout/1.11/build-timeout.hpi\",\"version\":\"1.11\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Build-timeout+Plugin\"},\"build-user-vars-plugin\":{\"buildDate\":\"Feb 18, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gkonovalenko\",\"email\":\"gkonovalenko@gmail.com\",\"name\":\"Gavriil Konovalenko\"}],\"excerpt\":\"This plugin is used to set user build variables. \",\"gav\":\"org.jenkins-ci.plugins:build-user-vars-plugin:1.1\",\"labels\":[\"buildwrapper\"],\"name\":\"build-user-vars-plugin\",\"previousTimestamp\":\"2012-02-16T07:57:44.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-02-19T01:21:18.00Z\",\"requiredCore\":\"1.450\",\"scm\":\"github.com\",\"sha1\":\"aMQEGn+BqNScvCv7B98MQSZ4ROw=\",\"title\":\"Build User Vars Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/build-user-vars-plugin/1.1/build-user-vars-plugin.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Build+User+Vars+Plugin\"},\"buildcoin-plugin\":{\"buildDate\":\"Sep 05, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"webandtech\",\"email\":\"asevers@gmail.com\",\"name\":\"Aaron Severs\"}],\"excerpt\":\"Sends build info to <a href='http://buildcoin.com/'>Buildcoin<\\/a>, a CI game that rewards users for committing often, keeping the build stable, and using pull requests for code reviews.\",\"gav\":\"com.buildcoin.plugins.jenkins:buildcoin-plugin:1.4\",\"labels\":[\"notifier\",\"external\",\"misc\"],\"name\":\"buildcoin-plugin\",\"previousTimestamp\":\"2012-05-24T12:24:06.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2012-09-06T00:21:18.00Z\",\"requiredCore\":\"1.428\",\"scm\":\"github.com\",\"sha1\":\"nkkwtFaAUM7r1XRpXTNBhb1PkGA=\",\"title\":\"Buildcoin Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/buildcoin-plugin/1.4/buildcoin-plugin.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Buildcoin+Plugin\"},\"buildcontext-capture\":{\"buildDate\":\"Aug 15, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gregory.boissinot@gmail.com\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin makes it possible to capture the build context to ensure traceability and auditability.\",\"gav\":\"org.jenkins-ci.plugins:buildcontext-capture:0.6\",\"labels\":[\"misc\"],\"name\":\"buildcontext-capture\",\"previousTimestamp\":\"2012-05-01T03:06:58.00Z\",\"previousVersion\":\"0.5\",\"releaseTimestamp\":\"2012-08-15T16:34:40.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"WyAqcNQbOPchin307zamdFGjx48=\",\"title\":\"BuildContextCapture Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/buildcontext-capture/0.6/buildcontext-capture.hpi\",\"version\":\"0.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/BuildContextCapture+Plugin\"},\"buildresult-trigger\":{\"buildDate\":\"Aug 06, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"BuildResultTrigger makes it possible to monitor the build results of other jobs. \",\"gav\":\"org.jenkins-ci.plugins:buildresult-trigger:0.9\",\"labels\":[\"trigger\"],\"name\":\"buildresult-trigger\",\"previousTimestamp\":\"2012-06-22T04:18:56.00Z\",\"previousVersion\":\"0.8\",\"releaseTimestamp\":\"2012-08-07T01:54:42.00Z\",\"requiredCore\":\"1.461\",\"scm\":\"github.com\",\"sha1\":\"o4l6mF2EvrB+4YhWBWMbHGT7GWU=\",\"title\":\"BuildResultTrigger Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/buildresult-trigger/0.9/buildresult-trigger.hpi\",\"version\":\"0.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/BuildResultTrigger+Plugin\"},\"buildtriggerbadge\":{\"buildDate\":\"Oct 16, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mpapo\",\"email\":\"mpapo.dev@gmail.com\",\"name\":\"Michael Pailloncy\"},{\"developerId\":\"batmat\",\"email\":\"batmat@batmat.net\",\"name\":\"Baptiste Mathus\"}],\"excerpt\":\"This plugin&nbsp;displays icon(s) representing the cause(s) of a build directly in the build history. It lets you quickly know which cause triggered a build. \",\"gav\":\"org.jenkins-ci.plugins:buildtriggerbadge:0.9\",\"labels\":[\"ui\"],\"name\":\"buildtriggerbadge\",\"previousTimestamp\":\"2012-09-27T01:29:22.00Z\",\"previousVersion\":\"0.8\",\"releaseTimestamp\":\"2012-10-16T11:29:08.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"G+L/F2a6qp+MKhEN8bDG9RwOxIM=\",\"title\":\"Build Trigger Badge Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/buildtriggerbadge/0.9/buildtriggerbadge.hpi\",\"version\":\"0.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Build+Trigger+Badge+Plugin\"},\"built-on-column\":{\"buildDate\":\"Jul 26, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"voorth\",\"email\":\"voorth@xs4all.nl\",\"name\":\"Henk van Voorthuijsen\"}],\"excerpt\":\"Adds a column that shows the actual node the last build was run on. \",\"gav\":\"org.jenkins-ci.plugins:built-on-column:1.1\",\"labels\":[\"listview-column\"],\"name\":\"built-on-column\",\"previousTimestamp\":\"2011-05-01T20:10:02.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-07-26T14:53:14.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"qmhau75igj9lfUb/Qf205PJL/3c=\",\"title\":\"Built-on Column\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/built-on-column/1.1/built-on-column.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Built-on+Column\"},\"bulk-builder\":{\"buildDate\":\"Mar 04, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"swestcott\",\"email\":\"swestcott@gmail.com\",\"name\":\"Simon Westcott\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse farinacci\"}],\"excerpt\":\"Trigger multiple builds with ease. Designed for users with many jobs.\",\"gav\":\"org.jvnet.hudson.plugins:bulk-builder:1.5\",\"labels\":[\"builder\",\"misc\"],\"name\":\"bulk-builder\",\"previousTimestamp\":\"2011-11-13T17:56:38.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2012-03-05T03:15:32.00Z\",\"requiredCore\":\"1.388\",\"scm\":\"github.com\",\"sha1\":\"oxuygc8GHIZWT3EG/OUvZhApg3A=\",\"title\":\"Bulk Builder Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/bulk-builder/1.5/bulk-builder.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Bulk+Builder+Plugin\"},\"caliper-ci\":{\"buildDate\":\"Nov 09, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"brianfromoregon\",\"email\":\"brianfromoregon@gmail.com\",\"name\":\"Brian Harris\"}],\"excerpt\":\"\",\"gav\":\"com.brianfromoregon:caliper-ci:2.3\",\"name\":\"caliper-ci\",\"previousTimestamp\":\"2012-04-01T01:33:56.00Z\",\"previousVersion\":\"2.2\",\"releaseTimestamp\":\"2012-11-09T16:46:10.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"UEeRgDZYzJr3/UbkJSDyzKrP+kU=\",\"title\":\"Caliper CI Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/caliper-ci/2.3/caliper-ci.hpi\",\"version\":\"2.3\"},\"campfire\":{\"buildDate\":\"Dec 01, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424\"}],\"developers\":[{\"developerId\":\"jenslukowski\",\"email\":\"jens.lukowski@softwareschneiderei.de\",\"name\":\"Jens Lukowski\"},{\"developerId\":\"thickpaddy\",\"name\":\"Mark Woods\"},{\"developerId\":\"jkrall\",\"name\":\"Joshua Krall\"},{\"developerId\":\"bgreenlee\",\"name\":\"Brad Greenlee\"},{\"developerId\":\"hpoydar\",\"name\":\"Henry Poydar\"},{\"developerId\":\"mortice\",\"name\":\"Tom Stuart\"},{\"developerId\":\"dbriones\",\"name\":\"Dante Briones\"}],\"excerpt\":\"This plugin allows your team to setup build notifications to be sent to Campfire rooms.\",\"gav\":\"org.jenkins-ci.plugins:campfire:2.6\",\"labels\":[\"notifier\"],\"name\":\"campfire\",\"previousTimestamp\":\"2010-06-30T18:41:34.00Z\",\"previousVersion\":\"2.1\",\"releaseTimestamp\":\"2012-12-02T03:28:14.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"9vgRW9ecP0yH8Rm5XxOhSV02824=\",\"title\":\"Campfire Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/campfire/2.6/campfire.hpi\",\"version\":\"2.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Campfire+Plugin\"},\"caroline\":{\"buildDate\":\"Nov 02, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"email\":\"kk@kohsuke.org\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Interfaces with <a href='https://www.projectcaroline.net/'>Project Caroline<\\/a>.\",\"gav\":\"org.jvnet.hudson.plugins:caroline:1.0\",\"labels\":[],\"name\":\"caroline\",\"releaseTimestamp\":\"2011-11-02T23:47:16.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"upVunUBtgb5H5g74tsO1EdIPiRk=\",\"title\":\"Caroline Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/caroline/1.0/caroline.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Caroline+Plugin\"},\"cas-plugin\":{\"buildDate\":\"Nov 10, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"fcrespel\",\"email\":\"fabien@crespel.net\",\"name\":\"Fabien Crespel\"}],\"excerpt\":\"This plugin enables use of <a href='http://www.jasig.org/cas'>Jasig CAS<\\/a> as an authentication source, for single sign-on and single sign-out support.\",\"gav\":\"org.jenkins-ci.plugins:cas-plugin:1.1.1\",\"labels\":[\"user\"],\"name\":\"cas-plugin\",\"previousTimestamp\":\"2012-09-07T05:09:28.00Z\",\"previousVersion\":\"1.1.0\",\"releaseTimestamp\":\"2012-11-10T06:09:34.00Z\",\"requiredCore\":\"1.470\",\"scm\":\"github.com\",\"sha1\":\"669qS+eHM/zlJsrOQu4avVD1aR0=\",\"title\":\"CAS Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cas-plugin/1.1.1/cas-plugin.hpi\",\"version\":\"1.1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/CAS+Plugin\"},\"cas1\":{\"buildDate\":\"Mar 09, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"david_beutel\",\"email\":\"jbeutel@hawaii.edu\",\"name\":\"J. David Beutel\"}],\"excerpt\":\"This plugin lets Hudson authenticate users via your organization's Central Authentication Service (<a href='http://www.jasig.org/cas'>CAS<\\/a>), for single-sign-on. \",\"gav\":\"org.jvnet.hudson.plugins:cas1:1.0.1\",\"labels\":[\"user\"],\"name\":\"cas1\",\"previousTimestamp\":\"2010-03-05T17:23:56.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2010-03-09T14:55:46.00Z\",\"requiredCore\":\"1.349\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"4HqufRisxkuZQLp7fjix5jMNmgk=\",\"title\":\"CAS1 Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cas1/1.0.1/cas1.hpi\",\"version\":\"1.0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/CAS1+Plugin\"},\"cccc\":{\"buildDate\":\"Nov 24, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin generates the trend report for <a href='http://cccc.sourceforge.net/'>CCCC<\\/a> (C and C+\\\\+ Code Counter).\",\"gav\":\"com.thalesgroup.jenkins-ci.plugins:cccc:0.6\",\"labels\":[\"report\"],\"name\":\"cccc\",\"previousTimestamp\":\"2011-08-14T03:57:30.00Z\",\"previousVersion\":\"0.5\",\"releaseTimestamp\":\"2011-11-25T04:29:22.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"dkJsiKHW6rmqQ0VAEUqlB8kwFls=\",\"title\":\"CCCC Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cccc/0.6/cccc.hpi\",\"version\":\"0.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/CCCC+Plugin\"},\"ccm\":{\"buildDate\":\"Apr 06, 2012\",\"dependencies\":[{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.38\"},{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.1\"},{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"1.8.1\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.409\"}],\"developers\":[{\"developerId\":\"kinow\",\"email\":\"brunodepaulak@yahoo.com.br\",\"name\":\"Bruno P. Kinoshita\"},{\"developerId\":\"cesar1983\",\"email\":\"cesar.fa@gmail.com\",\"name\":\"Cesar Fernandes de Almeida\"}],\"excerpt\":\"This plug-in generates reports on cyclomatic complexity for .NET code. \",\"gav\":\"org.jvnet.hudson.plugins:ccm:3.0\",\"labels\":[\"report\",\"maven\"],\"name\":\"ccm\",\"previousTimestamp\":\"2011-03-12T04:33:58.00Z\",\"previousVersion\":\"2.6.1\",\"releaseTimestamp\":\"2012-04-06T08:45:34.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"Vu27BHx+0u5DW/jIHSW+gaxQ2J8=\",\"title\":\"CCM Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ccm/3.0/ccm.hpi\",\"version\":\"3.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/CCM+Plugin\"},\"changelog-history\":{\"buildDate\":\"Mar 29, 2011\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.23\"}],\"developers\":[{\"developerId\":\"mindless\",\"name\":\"Alan Harder\"}],\"excerpt\":\"This plugin copies change log data to a later build when a build is deleted.\",\"gav\":\"org.jenkins-ci.plugins:changelog-history:1.3\",\"labels\":[\"misc\"],\"name\":\"changelog-history\",\"previousTimestamp\":\"2011-01-17T13:40:12.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-03-30T03:09:10.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"CTD4Qebxb82/kxZ1w5ksSQBZ40s=\",\"title\":\"Change Log History Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/changelog-history/1.3/changelog-history.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Change+Log+History+Plugin\"},\"changes-since-last-success\":{\"buildDate\":\"Jul 04, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ndeloof\",\"name\":\"Nicolas De Loof\"}],\"excerpt\":\"generate changelog for a range of builds\",\"gav\":\"org.jenkins-ci.plugins:changes-since-last-success:0.3\",\"labels\":[],\"name\":\"changes-since-last-success\",\"previousTimestamp\":\"2012-06-29T16:03:20.00Z\",\"previousVersion\":\"0.2\",\"releaseTimestamp\":\"2012-07-04T16:41:58.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"+eNLN76x4awD9aChl71tmYkFj8E=\",\"title\":\"Changes Since Last Success Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/changes-since-last-success/0.3/changes-since-last-success.hpi\",\"version\":\"0.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Changes+Since+Last+Success+Plugin\"},\"checkstyle\":{\"buildDate\":\"Oct 05, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.409\"},{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.48\"},{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"},{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.2\"}],\"developers\":[{\"developerId\":\"drulli\",\"email\":\"ullrich.hafner@gmail.com\",\"name\":\"Ulli Hafner\"}],\"excerpt\":\"This plugin generates the trend report for <a href='http://checkstyle.sourceforge.net/'>Checkstyle<\\/a>, an open source static code analysis program.&nbsp; \",\"gav\":\"org.jvnet.hudson.plugins:checkstyle:3.32\",\"labels\":[\"maven\",\"report\"],\"name\":\"checkstyle\",\"previousTimestamp\":\"2012-09-04T14:41:10.00Z\",\"previousVersion\":\"3.31\",\"releaseTimestamp\":\"2012-10-05T15:49:06.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"pXcn/yt6Wlc14FV/OhgrpF/tJTU=\",\"title\":\"Checkstyle Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/checkstyle/3.32/checkstyle.hpi\",\"version\":\"3.32\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Checkstyle+Plugin\"},\"chosen\":{\"buildDate\":\"Dec 31, 2012\",\"dependencies\":[{\"name\":\"ui-samples-plugin\",\"optional\":true,\"version\":\"1.488\"}],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin packages JavaScript <a href='http://harvesthq.github.com/chosen/'>Chosen<\\/a> library as a Jenkins plugin\",\"gav\":\"org.jenkins-ci.plugins:chosen:1.0\",\"labels\":[],\"name\":\"chosen\",\"releaseTimestamp\":\"2012-12-31T18:02:50.00Z\",\"requiredCore\":\"1.488\",\"scm\":\"github.com\",\"sha1\":\"OWXmtS3vpshYI6XG9TSpNph7A8Y=\",\"title\":\"Chosen plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/chosen/1.0/chosen.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Chosen+plugin\"},\"chrome-frame-plugin\":{\"buildDate\":\"Sep 23, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Provides <a href='http://code.google.com/chrome/chromeframe/'>Google Chrome Frame<\\/a> request for all pages.\",\"gav\":\"org.jenkins-ci.plugins:chrome-frame-plugin:1.1\",\"labels\":[\"page-decorator\"],\"name\":\"chrome-frame-plugin\",\"previousTimestamp\":\"2011-09-22T20:38:12.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-09-23T19:48:58.00Z\",\"requiredCore\":\"1.429\",\"scm\":\"github.com\",\"sha1\":\"cU9qJp/rTvNJ3onkEN9RmHBniqQ=\",\"title\":\"Chrome Frame Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/chrome-frame-plugin/1.1/chrome-frame-plugin.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Chrome+Frame+Plugin\"},\"chromedriver\":{\"buildDate\":\"Dec 21, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin auto-installs <a href='http://code.google.com/p/selenium/wiki/ChromeDriver'>ChromeDriver<\\/a> to every slave.\",\"gav\":\"org.jenkins-ci.plugins:chromedriver:1.0\",\"labels\":[],\"name\":\"chromedriver\",\"releaseTimestamp\":\"2011-12-21T19:21:00.00Z\",\"requiredCore\":\"1.433\",\"scm\":\"github.com\",\"sha1\":\"ltZBEi1nMA5WkPTXoXut6QmNVCM=\",\"title\":\"ChromeDriver plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/chromedriver/1.0/chromedriver.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/ChromeDriver+plugin\"},\"chucknorris\":{\"buildDate\":\"Jan 21, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"cliffano\"}],\"excerpt\":\"Displays a picture of Chuck Norris (instead of Jenkins the butler) and a random Chuck Norris 'The Programmer' fact on each build page.\",\"gav\":\"org.jvnet.hudson.plugins:chucknorris:0.4\",\"labels\":[\"ui\"],\"name\":\"chucknorris\",\"previousTimestamp\":\"2009-12-31T19:59:00.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2010-01-22T03:36:38.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"AL8IQTlgtNuHdIa/y2nSlQJOoy4=\",\"title\":\"ChuckNorris Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/chucknorris/0.4/chucknorris.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/ChuckNorris+Plugin\"},\"ci-game\":{\"buildDate\":\"Sep 17, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.395\"},{\"name\":\"checkstyle\",\"optional\":true,\"version\":\"3.1\"},{\"name\":\"findbugs\",\"optional\":true,\"version\":\"4.0\"},{\"name\":\"violations\",\"optional\":true,\"version\":\"0.5.4\"},{\"name\":\"tasks\",\"optional\":true,\"version\":\"4.0\"},{\"name\":\"pmd\",\"optional\":true,\"version\":\"3.1\"},{\"name\":\"warnings\",\"optional\":true,\"version\":\"3.0\"},{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.0\"}],\"developers\":[{\"developerId\":\"redsolo\",\"email\":\"eramfelt@gmail.com\",\"name\":\"Erik Ramfelt\"},{\"developerId\":\"kutzi\",\"email\":\"kutzi@gmx.de\",\"name\":\"Christoph Kutzinski\"}],\"excerpt\":\"This plugin introduces a game where users gets point on improving the builds.\",\"gav\":\"org.jvnet.hudson.plugins:ci-game:1.19\",\"labels\":[\"misc\",\"maven\"],\"name\":\"ci-game\",\"previousTimestamp\":\"2011-02-18T04:10:04.00Z\",\"previousVersion\":\"1.18\",\"releaseTimestamp\":\"2012-09-17T14:20:18.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"JllQaoS6IxXdyfkm9xEv8+0juBQ=\",\"title\":\"The Continuous Integration Game plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ci-game/1.19/ci-game.hpi\",\"version\":\"1.19\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/The+Continuous+Integration+Game+plugin\"},\"claim\":{\"buildDate\":\"May 04, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"AWPYV\"}],\"excerpt\":\"This plugin allows users to claim failed builds\",\"gav\":\"org.jvnet.hudson.plugins:claim:1.7\",\"labels\":[\"misc\"],\"name\":\"claim\",\"previousTimestamp\":\"2009-11-29T03:34:58.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2010-05-04T12:32:14.00Z\",\"requiredCore\":\"1.347\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"dtq8TgVz2r+hTSELtwpZ0YtOPKs=\",\"title\":\"Claim plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/claim/1.7/claim.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Claim+plugin\"},\"clamav\":{\"buildDate\":\"Sep 06, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ssogabe\",\"name\":\"Seiji Sogabe\"}],\"excerpt\":\"This plugin allows you to check the artifacts with <a href='http://www.clamav.net/lang/en/'>ClamAV<\\/a>, which is  an open source (GPL) antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats. \",\"gav\":\"org.jenkins-ci.plugins:clamav:0.2.1\",\"labels\":[\"external\"],\"name\":\"clamav\",\"previousTimestamp\":\"2011-10-17T03:48:48.00Z\",\"previousVersion\":\"0.2\",\"releaseTimestamp\":\"2012-09-07T00:43:34.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"cKPlJQcxk9cMtCRMfnBimFtztGs=\",\"title\":\"ClamAV Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/clamav/0.2.1/clamav.hpi\",\"version\":\"0.2.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/ClamAV+Plugin\"},\"clang-scanbuild-plugin\":{\"buildDate\":\"Feb 11, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jkennedy1980\",\"email\":\"josh@thosekennedys.com\",\"name\":\"Joshua Kennedy\"}],\"excerpt\":\"This plugin allows you to execute Clang scan-build against Mac or iPhone XCode projects. \",\"gav\":\"jenkins.plugins.clangscanbuild:clang-scanbuild-plugin:1.3.1\",\"labels\":[\"report\",\"ios\"],\"name\":\"clang-scanbuild-plugin\",\"previousTimestamp\":\"2012-02-11T07:07:16.00Z\",\"previousVersion\":\"1.3.0\",\"releaseTimestamp\":\"2012-02-11T18:00:58.00Z\",\"requiredCore\":\"1.403\",\"scm\":\"github.com\",\"sha1\":\"/M0djdCDKqkcLYYbuFezPrkj4Kw=\",\"title\":\"Clang Scan-Build Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/clang-scanbuild-plugin/1.3.1/clang-scanbuild-plugin.hpi\",\"version\":\"1.3.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Clang+Scan-Build+Plugin\"},\"clearcase\":{\"buildDate\":\"Jan 03, 2013\",\"compatibleSinceVersion\":\"1.0\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vlatombe\",\"email\":\"vincent.latombe@gmail.com\",\"name\":\"Vincent Latombe\"}],\"excerpt\":\"Integrates Jenkins with <a href='http://www.ibm.com/software/awdtools/clearcase/'>ClearCase<\\/a>.\",\"gav\":\"org.jenkins-ci.plugins:clearcase:1.3.12\",\"labels\":[\"scm\"],\"name\":\"clearcase\",\"previousTimestamp\":\"2012-10-23T14:01:52.00Z\",\"previousVersion\":\"1.3.11\",\"releaseTimestamp\":\"2013-01-03T16:10:04.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"1qqoUnZC9xEI4T+LS5h6du/TLA4=\",\"title\":\"ClearCase Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/clearcase/1.3.12/clearcase.hpi\",\"version\":\"1.3.12\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/ClearCase+Plugin\"},\"clearcase-release\":{\"buildDate\":\"Feb 17, 2011\",\"dependencies\":[{\"name\":\"clearcase\",\"optional\":false,\"version\":\"1.3.5\"}],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gbois@dev.java.net\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin makes it possible to promote composite baselines or latest baselines to RELEASED promotion level for Clearcase UCM. \",\"gav\":\"org.jvnet.hudson.plugins:clearcase-release:0.3\",\"labels\":[\"buildwrapper\"],\"name\":\"clearcase-release\",\"previousTimestamp\":\"2009-12-07T05:39:28.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2011-02-17T18:36:32.00Z\",\"requiredCore\":\"1.358\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"wJ5JCXLgN+2LYyJM83A+dfmsIUk=\",\"title\":\"ClearCase Release Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/clearcase-release/0.3/clearcase-release.hpi\",\"version\":\"0.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/ClearCase+Release+Plugin\"},\"clearcase-ucm-baseline\":{\"buildDate\":\"Sep 19, 2011\",\"dependencies\":[{\"name\":\"clearcase\",\"optional\":false,\"version\":\"1.3\"}],\"developers\":[{\"developerId\":\"rseguy\",\"email\":\"romain.seguy@gmail.com\",\"name\":\"Romain Seguy\"}],\"excerpt\":\"Allows using ClearCase UCM baselines as the input of builds: When using this SCM, users will be asked at build-time to select the baseline on which the job has to work.\",\"gav\":\"org.jvnet.hudson.plugins:clearcase-ucm-baseline:1.7.4\",\"labels\":[\"scm\"],\"name\":\"clearcase-ucm-baseline\",\"previousTimestamp\":\"2011-02-21T03:35:22.00Z\",\"previousVersion\":\"1.7.3\",\"releaseTimestamp\":\"2011-09-19T22:59:28.00Z\",\"requiredCore\":\"1.375\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"M096rg4dK3BO7jdZAvungMCIqhs=\",\"title\":\"ClearCase UCM Baseline Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/clearcase-ucm-baseline/1.7.4/clearcase-ucm-baseline.hpi\",\"version\":\"1.7.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/ClearCase+UCM+Baseline+Plugin\"},\"clearcase-ucm-plugin\":{\"buildDate\":\"Dec 12, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jes-struck\",\"name\":\"Jes Struck\"},{\"developerId\":\"wolfgarnet\",\"name\":\"Christian Wolfgang\"},{\"developerId\":\"les-praqma\",\"name\":\"Leif Soerensen\"},{\"developerId\":\"lak-praqma\",\"email\":\"support@praqma.net\",\"name\":\"Lars Kruse\"}],\"excerpt\":\"A Praqmatic integration to ClearCase UCM, simplifying continuous integration with Jenkins. \",\"gav\":\"org.jenkins-ci.plugins:clearcase-ucm-plugin:1.3.1\",\"labels\":[\"scm\"],\"name\":\"clearcase-ucm-plugin\",\"previousTimestamp\":\"2012-12-03T15:49:32.00Z\",\"previousVersion\":\"1.3.0\",\"releaseTimestamp\":\"2012-12-12T13:54:06.00Z\",\"requiredCore\":\"1.456\",\"scm\":\"github.com\",\"sha1\":\"c/tRCv3O0/2zzGJR1lhM/ELzmV4=\",\"title\":\"ClearCase UCM Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/clearcase-ucm-plugin/1.3.1/clearcase-ucm-plugin.hpi\",\"version\":\"1.3.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/ClearCase+UCM+Plugin\"},\"clone-workspace-scm\":{\"buildDate\":\"Aug 17, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"abayer\",\"email\":\"andrew.bayer@gmail.com\",\"name\":\"Andrew Bayer\"}],\"excerpt\":\"This plugin makes it possible to archive the workspace from builds of one project and reuse them as the SCM source for another project.\",\"gav\":\"org.jenkins-ci.plugins:clone-workspace-scm:0.5\",\"labels\":[\"scm\"],\"name\":\"clone-workspace-scm\",\"previousTimestamp\":\"2012-02-03T18:05:26.00Z\",\"previousVersion\":\"0.4\",\"releaseTimestamp\":\"2012-08-17T14:42:58.00Z\",\"requiredCore\":\"1.463\",\"scm\":\"github.com\",\"sha1\":\"dnoWGl79y5CQKBYaom02inxJJTU=\",\"title\":\"Clone Workspace SCM Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/clone-workspace-scm/0.5/clone-workspace-scm.hpi\",\"version\":\"0.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Clone+Workspace+SCM+Plugin\"},\"cloudbees-deployer-plugin\":{\"buildDate\":\"Feb 27, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.409\"}],\"developers\":[{\"developerId\":\"olamy\",\"name\":\"Olivier Lamy\"}],\"excerpt\":\"Automatically deploys your application to <a href='http://cloudbees.com/'>CloudBees<\\/a> RUN@Cloud at the end of your build.\",\"gav\":\"org.jenkins-ci.plugins:cloudbees-deployer-plugin:1.7\",\"labels\":[\"maven\",\"external\"],\"name\":\"cloudbees-deployer-plugin\",\"previousTimestamp\":\"2011-08-25T04:43:40.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2012-02-27T18:09:48.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"cCeEIiSkWv7ER6kHfYk1RvI/6dQ=\",\"title\":\"Cloudbees Deployer Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cloudbees-deployer-plugin/1.7/cloudbees-deployer-plugin.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Cloudbees+Deployer+Plugin\"},\"cloudbees-plugin-gateway\":{\"buildDate\":\"Jul 18, 2012\",\"dependencies\":[{\"name\":\"async-http-client\",\"optional\":false,\"version\":\"1.7.2-1\"},{\"name\":\"credentials\",\"optional\":false,\"version\":\"1.3\"}],\"developers\":[{\"developerId\":\"stephenconnolly\",\"name\":\"Stephen Connolly\"}],\"excerpt\":\"This plugin installs free enterprise plugins from CloudBees. The following plugins are automatically installed: * *Folders:*&nbsp;easily organize your jobs * *Backup to Cloud:*&nbsp;backup your Jenkins into CloudBees cloud * *Wasted Minutes:*&nbsp;find out if you are short of slaves and need to add capacity to speed up builds * *CloudBees Status:*&nbsp;find out how much of the free CloudBees Jenkins capacity in the cloud is available for your use  *Note:* You will be asked to register for a free CloudBees account to use these plugins  (This plugin was formerly known as the CloudBees Plugin Gateway plugin) \",\"gav\":\"org.jenkins-ci.plugins:cloudbees-plugin-gateway:1.10\",\"labels\":[\"misc\"],\"name\":\"cloudbees-plugin-gateway\",\"previousTimestamp\":\"2012-07-16T16:56:42.00Z\",\"previousVersion\":\"1.9\",\"releaseTimestamp\":\"2012-07-18T13:20:30.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"+EMel1ej+vgtxaGy5kb/VlGAr6k=\",\"title\":\"CloudBees Free Enterprise Plugins\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cloudbees-plugin-gateway/1.10/cloudbees-plugin-gateway.hpi\",\"version\":\"1.10\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Free+Enterprise+Plugins\"},\"clover\":{\"buildDate\":\"May 13, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"npellow\",\"name\":\"Nick Pellow\"},{\"developerId\":\"olamy\",\"name\":\"Olivier Lamy\"}],\"excerpt\":\"This plugin allows you to capture code coverage reports from <a href='http://atlassian.com/software/clover/'>Clover<\\/a>. Hudson will generate and track code coverage across time. This plugin can be used without the need to modify your build.xml. \",\"gav\":\"org.jenkins-ci.plugins:clover:4.0.6\",\"labels\":[\"report\"],\"name\":\"clover\",\"previousTimestamp\":\"2012-01-19T02:56:58.00Z\",\"previousVersion\":\"4.0.5\",\"releaseTimestamp\":\"2012-05-13T04:29:48.00Z\",\"requiredCore\":\"1.412\",\"scm\":\"github.com\",\"sha1\":\"2P1RWOzhjulyRm9BU0GAxCUEIF8=\",\"title\":\"Clover Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/clover/4.0.6/clover.hpi\",\"version\":\"4.0.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Clover+Plugin\"},\"cloverphp\":{\"buildDate\":\"Oct 21, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ssogabe\",\"name\":\"Seiji Sogabe\"}],\"excerpt\":\"This plugin allows you to capture code coverage reports from *PHPUnit*. For more information on how to set up PHP projects with Jenkins have a look at the <a href='http://jenkins-php.org/'>Template for Jenkins Jobs for PHP Projects<\\/a>. \",\"gav\":\"org.jenkins-ci.plugins:cloverphp:0.3.2\",\"labels\":[\"report\"],\"name\":\"cloverphp\",\"previousTimestamp\":\"2011-07-29T01:12:48.00Z\",\"previousVersion\":\"0.3.1\",\"releaseTimestamp\":\"2011-10-22T01:53:46.00Z\",\"requiredCore\":\"1.408\",\"scm\":\"github.com\",\"sha1\":\"m9x+Aop7tK6oA8cdnsRpepTZE8s=\",\"title\":\"Clover PHP Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cloverphp/0.3.2/cloverphp.hpi\",\"version\":\"0.3.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Clover+PHP+Plugin\"},\"cmakebuilder\":{\"buildDate\":\"Apr 17, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vvk\"}],\"excerpt\":\"This plugin can be used to build <a href='http://cmake.org/'>cmake<\\/a> based projects within Hudson.\",\"gav\":\"hudson.plugins.cmake:cmakebuilder:1.9\",\"labels\":[\"builder\"],\"name\":\"cmakebuilder\",\"previousTimestamp\":\"2011-04-16T21:23:58.00Z\",\"previousVersion\":\"1.8.1\",\"releaseTimestamp\":\"2011-04-17T16:50:34.00Z\",\"requiredCore\":\"1.343\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"YdlZ3Z0nIP5nSVr0l+uorqH5fVA=\",\"title\":\"cmakebuilder Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cmakebuilder/1.9/cmakebuilder.hpi\",\"version\":\"1.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/cmakebuilder+Plugin\"},\"cmvc\":{\"buildDate\":\"Aug 27, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gawab\",\"email\":\"fuechi@ciandt.com\",\"name\":\"Fábio Franco Uechi\"}],\"excerpt\":\"This plugin integrates <a href='http://www.redbooks.ibm.com/abstracts/gg244178.html'>CMVC<\\/a> to Hudson. \",\"gav\":\"org.jenkins-ci.plugins:cmvc:0.4\",\"labels\":[\"scm\"],\"name\":\"cmvc\",\"previousTimestamp\":\"2009-12-29T20:19:14.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2011-08-27T13:08:28.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"IwFWF5TxVmre5/uPpUsJ4wR9xks=\",\"title\":\"CMVC Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cmvc/0.4/cmvc.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/CMVC+Plugin\"},\"cobertura\":{\"buildDate\":\"Dec 15, 2012\",\"dependencies\":[{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.4\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424\"}],\"developers\":[{\"developerId\":\"stephenconnolly\",\"email\":\"stephenconnolly@dev.java.net\",\"name\":\"Stephen Connolly\"},{\"developerId\":\"manuel_carrasco\",\"email\":\"manolo@apache\",\"name\":\"Manuel Carrasco Monino\"},{\"developerId\":\"ssogabe\",\"email\":\"s.sogabe@gmail.com\",\"name\":\"Seiji Sogabe\"}],\"excerpt\":\"This plugin allows you to capture code coverage report from <a href='http://cobertura.sourceforge.net/'>Cobertura<\\/a>. Jenkins will generate the trend report of coverage. \",\"gav\":\"org.jenkins-ci.plugins:cobertura:1.8\",\"labels\":[\"maven\",\"report\"],\"name\":\"cobertura\",\"previousTimestamp\":\"2012-10-17T13:36:12.00Z\",\"previousVersion\":\"1.7.1\",\"releaseTimestamp\":\"2012-12-15T17:36:08.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"uCY6nfLUB0U5qH+AvWy6i/vwFnY=\",\"title\":\"Cobertura Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cobertura/1.8/cobertura.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Cobertura+Plugin\"},\"cocoapods-integration\":{\"buildDate\":\"Nov 16, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ljanzik\",\"email\":\"leif.janzik@gmail.com\",\"name\":\"Leif Janzik\"}],\"excerpt\":\"A plugin for the Jenkins Continous Integration Server to excecute CocoaPods goals during a build\",\"gav\":\"com.thoughtsonmobile:cocoapods-integration:0.2.0\",\"name\":\"cocoapods-integration\",\"previousTimestamp\":\"2012-11-09T00:00:44.00Z\",\"previousVersion\":\"0.1.1\",\"releaseTimestamp\":\"2012-11-16T17:04:32.00Z\",\"requiredCore\":\"1.480\",\"scm\":\"github.com\",\"sha1\":\"GzH3wqVWk+Sceu7aaJCjCmd5G5k=\",\"title\":\"CocoaPods Jenkins Integration\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cocoapods-integration/0.2.0/cocoapods-integration.hpi\",\"version\":\"0.2.0\"},\"codecover\":{\"buildDate\":\"Nov 04, 2011\",\"dependencies\":[{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.1\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.400\"}],\"developers\":[{\"developerId\":\"kbonnette\",\"email\":\"kane.bonnette@paperhost.com\",\"name\":\"Kane Bonnette\"}],\"excerpt\":\"This plugin allows you to capture code coverage report from <a href='http://codecover.org/'>CodeCover<\\/a>. Jenkins will generate the trend report of coverage. \",\"gav\":\"org.jenkins-ci.plugins:codecover:1.1\",\"labels\":[\"report\"],\"name\":\"codecover\",\"releaseTimestamp\":\"2011-11-04T15:32:48.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"a4YmbqXIiaEQtD2oQvQB1AsP21E=\",\"title\":\"CodeCover Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/codecover/1.1/codecover.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/CodeCover+Plugin\"},\"codescanner\":{\"buildDate\":\"Jan 03, 2011\",\"dependencies\":[{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.10\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.357\"}],\"developers\":[{\"developerId\":\"lkz633\",\"name\":\"Maximilian Odendahl\"}],\"excerpt\":\"This plugin generates the trend report for <a href='http://carbidehelp.nokia.com/help/index.jsp?topic=/com.nokia.carbide.cpp.codescanner/html/codescanner.htm'>Codescanner<\\/a>, a tool which uses static analysis to look for bugs, hints and other useful information in Symbian C++ source code. \",\"gav\":\"org.jvnet.hudson.plugins:codescanner:0.11\",\"labels\":[\"report\"],\"name\":\"codescanner\",\"previousTimestamp\":\"2010-03-18T21:26:20.00Z\",\"previousVersion\":\"0.10\",\"releaseTimestamp\":\"2011-01-03T16:15:00.00Z\",\"requiredCore\":\"1.357\",\"scm\":\"svn.java.net\",\"sha1\":\"NGNsgXJAt3bJzHTeT/UZRtXVffs=\",\"title\":\"CodeScanner Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/codescanner/0.11/codescanner.hpi\",\"version\":\"0.11\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/CodeScanner+Plugin\"},\"collabnet\":{\"buildDate\":\"Mar 12, 2011\",\"dependencies\":[{\"name\":\"promoted-builds\",\"optional\":false,\"version\":\"1.11\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.363\"},{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.23\"}],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"The CollabNet Plugin is an integration with <a href='http://www.open.collab.net/products/sfee/'>CollabNet TeamForge<\\/a>.\",\"gav\":\"org.jenkins-ci.plugins:collabnet:1.1.6\",\"labels\":[\"external\"],\"name\":\"collabnet\",\"previousTimestamp\":\"2010-04-22T13:23:52.00Z\",\"previousVersion\":\"1.1.5\",\"releaseTimestamp\":\"2011-03-12T14:43:40.00Z\",\"requiredCore\":\"1.397\",\"scm\":\"github.com\",\"sha1\":\"hHH49XM2bW5GG6W6OqbIrkD2KM8=\",\"title\":\"CollabNet Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/collabnet/1.1.6/collabnet.hpi\",\"version\":\"1.1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/CollabNet+Plugin\"},\"collapsing-console-sections\":{\"buildDate\":\"Nov 11, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"dty\",\"name\":\"Dean Yu\"}],\"excerpt\":\"This plugin allows the creation of sections in build consoles.\",\"gav\":\"org.jvnet.hudson.plugins:collapsing-console-sections:1.3\",\"labels\":[\"ui\"],\"name\":\"collapsing-console-sections\",\"previousTimestamp\":\"2010-11-05T05:33:20.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2010-11-12T04:38:22.00Z\",\"requiredCore\":\"1.381\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"mWd2RIBwl4VIVwJ+JX+thbwv7TM=\",\"title\":\"Collapsing Console Sections Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/collapsing-console-sections/1.3/collapsing-console-sections.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Collapsing+Console+Sections+Plugin\"},\"compact-columns\":{\"buildDate\":\"Sep 17, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jacob_robertson\",\"email\":\"jacob.robertson.work@gmail.com\",\"name\":\"Jacob Robertson\"}],\"excerpt\":\"More compact columns for showing last success and failure. Easier to understand, and takes less room in your view. \",\"gav\":\"org.jvnet.hudson.plugins:compact-columns:1.9\",\"labels\":[\"ui\",\"listview-column\"],\"name\":\"compact-columns\",\"previousTimestamp\":\"2011-08-06T18:40:32.00Z\",\"previousVersion\":\"1.8\",\"releaseTimestamp\":\"2011-09-18T00:30:30.00Z\",\"requiredCore\":\"1.349\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"ZahBoJCogVQYxrcuAnfGhVzTxfc=\",\"title\":\"Compact Columns\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/compact-columns/1.9/compact-columns.hpi\",\"version\":\"1.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Compact+Columns\"},\"computer-queue-plugin\":{\"buildDate\":\"Sep 20, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"lvotypko\",\"email\":\"lvotypko@redhat.com\",\"name\":\"Lucie Votypkova\"}],\"excerpt\":\"This plug-in display the queue for given computer in it's page \",\"gav\":\"jenkins.ci.plugins.computerqueue:computer-queue-plugin:1.3\",\"labels\":[],\"name\":\"computer-queue-plugin\",\"previousTimestamp\":\"2012-08-20T18:30:20.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-09-20T16:52:06.00Z\",\"requiredCore\":\"1.437\",\"scm\":\"github.com\",\"sha1\":\"t00aW+6JqVnfjYtQTKvNfUPS3x0=\",\"title\":\"Computer queue plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/computer-queue-plugin/1.3/computer-queue-plugin.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Computer+queue+plugin\"},\"concordionpresenter\":{\"buildDate\":\"Aug 13, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"rjohnst\",\"email\":\"rob@rjohnst.com\",\"name\":\"Rob Johnston\"}],\"excerpt\":\"This plugin publishes <a href='http://www.concordion.org'>Concordion<\\/a> test reports for each build\",\"gav\":\"org.jenkins-ci.plugins:concordionpresenter:0.7\",\"labels\":[\"report\"],\"name\":\"concordionpresenter\",\"previousTimestamp\":\"2010-07-07T02:45:38.00Z\",\"previousVersion\":\"0.6\",\"releaseTimestamp\":\"2011-08-13T12:22:30.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"PIqeFs0L9RLWPIRYRc8xzbVJoNA=\",\"title\":\"Concordion Presenter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/concordionpresenter/0.7/concordionpresenter.hpi\",\"version\":\"0.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Concordion+Presenter+Plugin\"},\"conditional-buildstep\":{\"buildDate\":\"Nov 01, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"},{\"name\":\"run-condition\",\"optional\":false,\"version\":\"0.10\"}],\"developers\":[{\"developerId\":\"imod\",\"name\":\"Dominik Bartholdi\"},{\"developerId\":\"bap\",\"email\":\"bap-jenkins@BapIT.co.uk\",\"name\":\"Bap\"}],\"excerpt\":\"A buildstep wrapping any number of other buildsteps, controlling there execution based on a defined condition. \",\"gav\":\"org.jenkins-ci.plugins:conditional-buildstep:1.2.1\",\"labels\":[\"builder\"],\"name\":\"conditional-buildstep\",\"previousTimestamp\":\"2012-10-11T23:31:38.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-11-01T17:54:18.00Z\",\"requiredCore\":\"1.420\",\"scm\":\"github.com\",\"sha1\":\"gixu91mUWEHKBLtxaFjrHMqfvek=\",\"title\":\"Conditional BuildStep Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/conditional-buildstep/1.2.1/conditional-buildstep.hpi\",\"version\":\"1.2.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Conditional+BuildStep+Plugin\"},\"config-autorefresh-plugin\":{\"buildDate\":\"Jun 23, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Provide a way to configure the auto-refresh rate from the Jenkins UI.\",\"gav\":\"org.jenkins-ci.plugins:config-autorefresh-plugin:1.0\",\"labels\":[\"misc\"],\"name\":\"config-autorefresh-plugin\",\"releaseTimestamp\":\"2011-06-23T13:29:04.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"B3XzainxaQsI5zqnsBCanQSFxW8=\",\"title\":\"Config AutoRefresh Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/config-autorefresh-plugin/1.0/config-autorefresh-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Config+AutoRefresh+Plugin\"},\"config-file-provider\":{\"buildDate\":\"Dec 12, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"olamy\",\"name\":\"Olivier Lamy\"},{\"developerId\":\"imod\",\"name\":\"Dominik Bartholdi\"}],\"excerpt\":\"Ability to provide configuration files (e.g. settings.xml for maven, XML, groovy, custom files,...) loaded trough the UI which will be copy to the job workspace\",\"gav\":\"org.jenkins-ci.plugins:config-file-provider:2.4\",\"labels\":[\"maven\",\"external\",\"groovy-related\"],\"name\":\"config-file-provider\",\"previousTimestamp\":\"2012-11-20T00:28:42.00Z\",\"previousVersion\":\"2.3\",\"releaseTimestamp\":\"2012-12-13T00:43:22.00Z\",\"requiredCore\":\"1.491\",\"scm\":\"github.com\",\"sha1\":\"MDgFT6QME4d/6hAAZ6Z1M7VmzMo=\",\"title\":\"Config File Provider Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/config-file-provider/2.4/config-file-provider.hpi\",\"version\":\"2.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Config+File+Provider+Plugin\"},\"config-rotator\":{\"buildDate\":\"Dec 13, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"wolfgarnet\",\"email\":\"support@praqma.net\",\"name\":\"Christian Wolfgang\"},{\"developerId\":\"buep\",\"email\":\"support@praqma.net\",\"name\":\"Bue Petersen\"},{\"developerId\":\"MadsNielsen\",\"email\":\"support@praqma.net\",\"name\":\"Mads Nielsen\"}],\"excerpt\":\"Automatic try-out of possible configurations. Monitors the SCM for newer versions of components and tests if compliant. Only available using ClearCaseUCM as SCM\",\"gav\":\"net.praqma:config-rotator:1.0.2\",\"labels\":[],\"name\":\"config-rotator\",\"previousTimestamp\":\"2012-07-18T15:57:02.00Z\",\"previousVersion\":\"1.0.1\",\"releaseTimestamp\":\"2012-12-13T16:16:42.00Z\",\"requiredCore\":\"1.456\",\"scm\":\"github.com\",\"sha1\":\"3MJqyTd/TRleYLLblbEuKjcw34M=\",\"title\":\"Config Rotator Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/config-rotator/1.0.2/config-rotator.hpi\",\"version\":\"1.0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Config+Rotator+Plugin\"},\"configurationslicing\":{\"buildDate\":\"Oct 28, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.395\"},{\"name\":\"ant\",\"optional\":true,\"version\":\"1.1\"},{\"name\":\"groovy\",\"optional\":true,\"version\":\"1.9\"},{\"name\":\"email-ext\",\"optional\":true,\"version\":\"2.7\"},{\"name\":\"build-timeout\",\"optional\":true,\"version\":\"1.6\"},{\"name\":\"PrioritySorter\",\"optional\":true,\"version\":\"1.3\"},{\"name\":\"timestamper\",\"optional\":true,\"version\":\"1.2.2\"},{\"name\":\"jython\",\"optional\":true,\"version\":\"1.9\"},{\"name\":\"python\",\"optional\":true,\"version\":\"1.2\"},{\"name\":\"gradle\",\"optional\":true,\"version\":\"1.12\"},{\"name\":\"ws-cleanup\",\"optional\":true,\"version\":\"0.10\"}],\"developers\":[{\"developerId\":\"jacob_robertson\",\"email\":\"jacob.robertson.work@gmail.com\",\"name\":\"Jacob Robertson\"}],\"excerpt\":\"Perform mass configuration of select project properties, including email, timer, discard old builds, and Maven configuration. \",\"gav\":\"org.jvnet.hudson.plugins:configurationslicing:1.36\",\"labels\":[\"misc\",\"builder\"],\"name\":\"configurationslicing\",\"previousTimestamp\":\"2012-10-27T12:06:50.00Z\",\"previousVersion\":\"1.35\",\"releaseTimestamp\":\"2012-10-28T12:33:58.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"aiVonFh41txd21kiQSkhktEs49M=\",\"title\":\"Configuration Slicing Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/configurationslicing/1.36/configurationslicing.hpi\",\"version\":\"1.36\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Configuration+Slicing+Plugin\"},\"configure-job-column-plugin\":{\"buildDate\":\"May 30, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Provide a fast-path configure job link available for views.\",\"gav\":\"org.jenkins-ci.plugins:configure-job-column-plugin:1.0\",\"labels\":[\"listview-column\",\"ui\",\"misc\"],\"name\":\"configure-job-column-plugin\",\"releaseTimestamp\":\"2012-05-31T02:36:24.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"p8yOFqsuzF0mA9Qu5fGYtl1EfXo=\",\"title\":\"Configure Job Column Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/configure-job-column-plugin/1.0/configure-job-column-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Configure+Job+Column+Plugin\"},\"confluence-publisher\":{\"buildDate\":\"Jun 25, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jhansche\",\"email\":\"jhansche@myyearbook.com\",\"name\":\"Joe Hansche\"}],\"excerpt\":\"This plugin allows you to publish build artifacts as attachments to an <a href='http://www.atlassian.com/'>Atlassian<\\/a> <a href='http://www.atlassian.com/software/confluence/'>Confluence<\\/a> wiki page. \",\"gav\":\"org.jenkins-ci.plugins:confluence-publisher:1.7.1\",\"labels\":[\"upload\",\"external\"],\"name\":\"confluence-publisher\",\"previousTimestamp\":\"2012-05-29T18:29:34.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2012-06-25T16:57:18.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"FWUL+NS8LS2IDlMOjlKne1kj7N0=\",\"title\":\"Confluence Publisher Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/confluence-publisher/1.7.1/confluence-publisher.hpi\",\"version\":\"1.7.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Confluence+Publisher+Plugin\"},\"console-column-plugin\":{\"buildDate\":\"Oct 15, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Provide a fast-path console link available for views.\",\"gav\":\"org.jenkins-ci.plugins:console-column-plugin:1.5\",\"labels\":[\"listview-column\",\"ui\"],\"name\":\"console-column-plugin\",\"previousTimestamp\":\"2011-10-12T11:56:20.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2011-10-15T18:52:30.00Z\",\"requiredCore\":\"1.420\",\"scm\":\"github.com\",\"sha1\":\"mtd/5cTNMwFDXjDLSl3GeRdwyZY=\",\"title\":\"Console Column Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/console-column-plugin/1.5/console-column-plugin.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Console+Column+Plugin\"},\"copy-data-to-workspace-plugin\":{\"buildDate\":\"Feb 24, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"nzhelyakov\",\"email\":\"nzhelyakov@gmail.com\",\"name\":\"Nikita Zhelyakov\"}],\"excerpt\":\"Copies data to workspace directory for each project build. \",\"gav\":\"org.jvnet.hudson.plugins:copy-data-to-workspace-plugin:1.0\",\"labels\":[\"buildwrapper\"],\"name\":\"copy-data-to-workspace-plugin\",\"releaseTimestamp\":\"2011-02-25T00:46:20.00Z\",\"requiredCore\":\"1.366\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"o1H9UdRKji2M3qV9S15s84tGq3g=\",\"title\":\"Copy Data To Workspace Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/copy-data-to-workspace-plugin/1.0/copy-data-to-workspace-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Copy+Data+To+Workspace+Plugin\"},\"copy-project-link\":{\"buildDate\":\"Feb 10, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vjuranek\",\"name\":\"Vojtech Juranek\"}],\"excerpt\":\"This plugin adds the \\\"Copy project\\\" link into left side panel in the main project page.\",\"gav\":\"hudson.plugins.copyProjectLink:copy-project-link:1.0\",\"labels\":[\"ui\"],\"name\":\"copy-project-link\",\"releaseTimestamp\":\"2011-02-10T19:18:08.00Z\",\"requiredCore\":\"1.391\",\"scm\":\"github.com\",\"sha1\":\"GXTRqgVz2HJiE+07wnBaMQnL5I0=\",\"title\":\"Copy project link plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/copy-project-link/1.0/copy-project-link.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Copy+project+link+plugin\"},\"copy-to-slave\":{\"buildDate\":\"Jan 17, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"rseguy\",\"email\":\"romain.seguy@gmail.com\",\"name\":\"Romain Seguy\"}],\"excerpt\":\"This plugin allows to copy a set of files, from a location somewhere on the master node, to jobs' workspaces. It also allows to copy files back from the workspaces of jobs located on a slave node to their workspaces on the master one.\",\"gav\":\"org.jenkins-ci.plugins:copy-to-slave:1.4\",\"labels\":[\"slaves\",\"notifier\",\"buildwrapper\"],\"name\":\"copy-to-slave\",\"previousTimestamp\":\"2011-03-02T23:57:58.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2012-01-17T22:48:28.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"8v72Qrok05cnSLV39Jb1PZTWhfo=\",\"title\":\"Copy To Slave Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/copy-to-slave/1.4/copy-to-slave.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Copy+To+Slave+Plugin\"},\"copyartifact\":{\"buildDate\":\"Nov 06, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.424\"}],\"developers\":[{\"developerId\":\"mindless\",\"name\":\"Alan Harder\"}],\"excerpt\":\"Adds a build step to copy artifacts from another project.\",\"gav\":\"org.jenkins-ci.plugins:copyartifact:1.25\",\"labels\":[\"builder\",\"parameter\"],\"name\":\"copyartifact\",\"previousTimestamp\":\"2012-10-03T20:31:38.00Z\",\"previousVersion\":\"1.24\",\"releaseTimestamp\":\"2012-11-06T14:49:58.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"TxuAEhVAoTnx0lxJ6VaisoHRlmw=\",\"title\":\"Copy Artifact Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/copyartifact/1.25/copyartifact.hpi\",\"version\":\"1.25\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Copy+Artifact+Plugin\"},\"countjobs-viewstabbar\":{\"buildDate\":\"Jan 11, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ilbors\",\"name\":\"Ignacio Albors\"}],\"excerpt\":\"This plugin shows a Views TabBar like the original one but it adds how many jobs has each view in every tab title.\",\"gav\":\"ws.albors:countjobs-viewstabbar:1.0.0\",\"labels\":[\"misc\",\"ui\"],\"name\":\"countjobs-viewstabbar\",\"releaseTimestamp\":\"2012-01-11T05:27:16.00Z\",\"requiredCore\":\"1.428\",\"scm\":\"github.com\",\"sha1\":\"RnukVLYGfy/xyENjvUUxckTu2Jc=\",\"title\":\"Countjobs Viewstabbar\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/countjobs-viewstabbar/1.0.0/countjobs-viewstabbar.hpi\",\"version\":\"1.0.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Countjobs+Viewstabbar\"},\"covcomplplot\":{\"buildDate\":\"Aug 13, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"junoyoon\",\"email\":\"junoyoon@gmail.com\",\"name\":\"JunHo Yoon\"}],\"excerpt\":\"This plugin shows the coverage/complexity scatter plot from Clover or Cobertura plugin results.\",\"gav\":\"org.jenkins-ci.plugins:covcomplplot:1.1.1\",\"labels\":[\"report\"],\"name\":\"covcomplplot\",\"previousTimestamp\":\"2010-10-21T15:20:02.00Z\",\"previousVersion\":\"1.1.0\",\"releaseTimestamp\":\"2011-08-13T14:21:10.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"CboIlIImnrdoYnYhXgihm8zyL6o=\",\"title\":\"Coverage Complexity Scatter Plot PlugIn\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/covcomplplot/1.1.1/covcomplplot.hpi\",\"version\":\"1.1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Coverage+Complexity+Scatter+Plot+PlugIn\"},\"coverity\":{\"buildDate\":\"May 24, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"joshvinson\",\"name\":\"Josh Vinson\"}],\"excerpt\":\"This plugin integrates Jenkins with the <a href='http://coverity.com/products/coverity-integrity-manager.html'>Coverity Integrity Manager<\\/a> and <a href='http://coverity.com/products/static-analysis.html'>Coverity Static Analysis<\\/a> tools.  Official build located at:&nbsp;<a href='https://jenkins.ci.cloudbees.com/job/plugins/job/coverity/'>https://jenkins.ci.cloudbees.com/job/plugins/job/coverity/<\\/a> \",\"gav\":\"org.jenkins-ci.plugins:coverity:1.1.3\",\"labels\":[\"buildwrapper\",\"report\"],\"name\":\"coverity\",\"previousTimestamp\":\"2012-04-02T20:16:18.00Z\",\"previousVersion\":\"1.1.2\",\"releaseTimestamp\":\"2012-05-24T15:02:20.00Z\",\"requiredCore\":\"1.409.2\",\"scm\":\"github.com\",\"sha1\":\"fBoPftbhucx3aWNWcLO3wAu4Qv0=\",\"title\":\"Coverity Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/coverity/1.1.3/coverity.hpi\",\"version\":\"1.1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Coverity+Plugin\"},\"cppcheck\":{\"buildDate\":\"Dec 19, 2012\",\"dependencies\":[{\"name\":\"ivy\",\"optional\":true,\"version\":\"1.19\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.410\"}],\"developers\":[{\"developerId\":\"gbois\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin records <a href='http://cppcheck.wiki.sourceforge.net/'>CppCheck<\\/a> reports in Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:cppcheck:1.13\",\"labels\":[\"report\"],\"name\":\"cppcheck\",\"previousTimestamp\":\"2012-11-23T03:01:08.00Z\",\"previousVersion\":\"1.12\",\"releaseTimestamp\":\"2012-12-20T04:27:18.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"wAWZgiAE5L8+EHDEj6SQxpxBE9A=\",\"title\":\"Cppcheck Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cppcheck/1.13/cppcheck.hpi\",\"version\":\"1.13\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Cppcheck+Plugin\"},\"cppncss\":{\"buildDate\":\"Feb 18, 2011\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.358\"}],\"developers\":[{\"developerId\":\"holywen\",\"email\":\"shaohua-holy.wen@nsn.com\",\"name\":\"Shaohua Wen\"}],\"excerpt\":\"This plugin allows you to use <a href='http://cppncss.sourceforge.net/'>CppNCSS<\\/a> build reporting tool.\",\"gav\":\"org.jvnet.hudson.plugins:cppncss:1.1\",\"labels\":[\"report\"],\"name\":\"cppncss\",\"previousTimestamp\":\"2010-06-03T20:44:40.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-02-18T17:17:08.00Z\",\"requiredCore\":\"1.358\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"ASJbOA48B7oGDuDIi+kn8WNFMp0=\",\"title\":\"CPPNCSS Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cppncss/1.1/cppncss.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/CPPNCSS+Plugin\"},\"cpptest\":{\"buildDate\":\"May 29, 2011\",\"dependencies\":[{\"name\":\"xunit\",\"optional\":false,\"version\":\"1.17\"},{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.21\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.410\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.395\"}],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gbois@dev.java.net\",\"name\":\"Gregory Boissinot\"},{\"developerId\":\"NQH\",\"email\":\"quanghuycvut@yahoo.com\",\"name\":\"N. Q. Huy\"}],\"excerpt\":\"This plugin allows you publish <a href='http://www.parasoft.com/jsp/products/home.jsp?product=Wizard&'>Parasoft C++test<\\/a> test results.  This plugin makes it possible to import Parasoft C++test reports from each build into Hudson so they are displayed with a trend graph and details about which tests that failed. \",\"gav\":\"com.thalesgroup.jenkins-ci.plugins:cpptest:0.9\",\"labels\":[\"report\"],\"name\":\"cpptest\",\"previousTimestamp\":\"2010-10-12T07:25:48.00Z\",\"previousVersion\":\"0.8\",\"releaseTimestamp\":\"2011-05-29T20:27:58.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"Mux1eV/aMsRoShdxLsmLKgMRbng=\",\"title\":\"Cpptest Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cpptest/0.9/cpptest.hpi\",\"version\":\"0.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Cpptest+Plugin\"},\"crap4j\":{\"buildDate\":\"Aug 01, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"dlindner\",\"name\":\"Daniel Lindner\"}],\"excerpt\":\"This plugin reads the \\\"crappy methods\\\" report from <a href='http://crap4j.org/'>Crap4J<\\/a>. Hudson will generate the trend report of crap percentage and provide detailed information about changes.\",\"gav\":\"org.jvnet.hudson.plugins:crap4j:0.8\",\"labels\":[\"report\"],\"name\":\"crap4j\",\"previousTimestamp\":\"2009-12-30T14:49:48.00Z\",\"previousVersion\":\"0.7\",\"releaseTimestamp\":\"2010-08-02T01:32:16.00Z\",\"requiredCore\":\"1.368\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"lXwrGF5f94qHOX7doKwrGyiLWoc=\",\"title\":\"Crap4J Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/crap4j/0.8/crap4j.hpi\",\"version\":\"0.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Crap4J+Plugin\"},\"create-fingerprint\":{\"buildDate\":\"Dec 31, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"marcsanfacon\",\"email\":\"marc.sanfacon@gmail.com\",\"name\":\"Marc Sanfacon\"}],\"excerpt\":\"Adds the ability to generate fingerprints as build steps instead of waiting for a build to complete. \",\"gav\":\"org.jenkins-ci.plugins:create-fingerprint:1.2\",\"labels\":[\"builder\"],\"name\":\"create-fingerprint\",\"previousTimestamp\":\"2011-11-26T21:11:58.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2011-12-31T15:02:48.00Z\",\"requiredCore\":\"1.440\",\"scm\":\"github.com\",\"sha1\":\"eTmOEC36FyDg0co1ceOp9C0Z7WI=\",\"title\":\"Fingerprint Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/create-fingerprint/1.2/create-fingerprint.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint+Plugin\"},\"create-fingerprint-plugin\":{\"buildDate\":\"Nov 26, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"marcsanfacon\",\"email\":\"marc.sanfacon@gmail.com\",\"name\":\"Marc Sanfacon\"}],\"excerpt\":\"Adds the ability to generate fingerprints as build steps instead of waiting for a build to complete. \",\"gav\":\"org.jenkins-ci.plugins:create-fingerprint-plugin:1.0\",\"labels\":[\"builder\"],\"name\":\"create-fingerprint-plugin\",\"releaseTimestamp\":\"2011-11-26T15:46:06.00Z\",\"requiredCore\":\"1.440\",\"scm\":\"github.com\",\"sha1\":\"09eL9WB6NSobjvWfic5rU056WMA=\",\"title\":\"Fingerprint Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/create-fingerprint-plugin/1.0/create-fingerprint-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint+Plugin\"},\"createjobadvanced\":{\"buildDate\":\"Oct 07, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.420\"}],\"developers\":[{\"developerId\":\"bertrandgressier\",\"email\":\"bertrand.gressier@gmail.com\",\"name\":\"Bertrand Gressier\"}],\"excerpt\":\"This plugin extends creating job. When you create a job, it automatically adds all permissions for the creator. \",\"gav\":\"org.jenkins-ci.plugins:createjobadvanced:1.7\",\"labels\":[\"user\"],\"name\":\"createjobadvanced\",\"previousTimestamp\":\"2011-08-05T18:08:52.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2012-10-07T14:39:16.00Z\",\"requiredCore\":\"1.420\",\"scm\":\"github.com\",\"sha1\":\"Sfk97M5W+nQKQQROgots6FY1K/o=\",\"title\":\"Create Job Advanced Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/createjobadvanced/1.7/createjobadvanced.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Create+Job+Advanced+Plugin\"},\"credentials\":{\"buildDate\":\"May 11, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stephenconnolly\",\"name\":\"Stephen Connolly\"}],\"excerpt\":\"This plugin allows you to store credentials in Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:credentials:1.3.1\",\"labels\":[],\"name\":\"credentials\",\"previousTimestamp\":\"2012-02-27T20:39:48.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2012-05-11T16:10:18.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"TbBn+BpyQTS8Fhoeyj3D7NTZWBc=\",\"title\":\"Credentials Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/credentials/1.3.1/credentials.hpi\",\"version\":\"1.3.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Credentials+Plugin\"},\"cron_column\":{\"buildDate\":\"Jul 06, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"eelco_de_vlieger\",\"email\":\"eelcodevlieger@hotmail.com\",\"name\":\"Eelco de Vlieger\"}],\"excerpt\":\"View column showing the cron trigger expressions that can be configured on a job (Subversion, Scheduled Builds, etc.)\",\"gav\":\"org.jvnet.hudson.plugins:cron_column:1.003\",\"labels\":[\"listview-column\"],\"name\":\"cron_column\",\"previousTimestamp\":\"2010-04-16T19:51:28.00Z\",\"previousVersion\":\"1.002\",\"releaseTimestamp\":\"2010-07-06T15:26:34.00Z\",\"requiredCore\":\"1.350\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"wxeNGb6yQzX6gzcYSzC08CJ65II=\",\"title\":\"Cron Column Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cron_column/1.003/cron_column.hpi\",\"version\":\"1.003\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Cron+Column+Plugin\"},\"crowd\":{\"buildDate\":\"Aug 05, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"nbudin\",\"name\":\"Nat Budin\"},{\"developerId\":\"justinedelson\",\"name\":\"Justin Edelson\"}],\"excerpt\":\"This plugin enables use of <a href='http://www.atlassian.com/crowd'>Atlassian Crowd<\\/a> as an authentication source.\",\"gav\":\"com.ds.tools.hudson:crowd:1.2\",\"labels\":[\"user\"],\"name\":\"crowd\",\"previousTimestamp\":\"2010-01-30T22:58:06.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2011-08-05T12:14:24.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"FlNYLD4WehRNrWrkmte84TBWlaY=\",\"title\":\"Crowd Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/crowd/1.2/crowd.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Crowd+Plugin\"},\"crowd2\":{\"buildDate\":\"Aug 23, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"theit\",\"email\":\"theit@gmx.de\",\"name\":\"Thorsten Heit\"}],\"excerpt\":\"This plugin enables use of <a href='http://www.atlassian.com/software/crowd'>Atlassian Crowd<\\/a> >= 2.1.x as an authentication source.\",\"gav\":\"org.jenkins-ci.plugins:crowd2:1.5\",\"labels\":[\"user\"],\"name\":\"crowd2\",\"previousTimestamp\":\"2011-11-25T20:23:32.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2012-08-23T17:48:24.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"zSXuGYjDGUWO9qDveBTj+S9jxH8=\",\"title\":\"Crowd 2 Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/crowd2/1.5/crowd2.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Crowd+2+Plugin\"},\"custom-job-icon\":{\"buildDate\":\"Oct 22, 2012\",\"dependencies\":[{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.447\"},{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.3\"}],\"developers\":[{\"developerId\":\"jcsirot\",\"email\":\"sirot@chelonix.com\",\"name\":\"Jean-Christophe Sirot\"}],\"excerpt\":\"This plugin allows to configure a custom icon for each job in order to improve the job visibility on the dashboard.\",\"gav\":\"org.jenkins-ci.plugins:custom-job-icon:0.2\",\"labels\":[\"ui\",\"listview-column\"],\"name\":\"custom-job-icon\",\"previousTimestamp\":\"2012-08-10T03:24:46.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2012-10-22T15:01:06.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"zLYzRNQZmAwAkHgRyQ5GccxmVUA=\",\"title\":\"Custom Job Icon Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/custom-job-icon/0.2/custom-job-icon.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Custom+Job+Icon+Plugin\"},\"custom-tools-plugin\":{\"buildDate\":\"Feb 13, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"recampbell\",\"email\":\"ryan.campbell@gmail.com\",\"name\":\"Ryan Campbell\"}],\"excerpt\":\"A generic tool installer. You define how tools get installed, and the plugin will automatically install them when needed.&nbsp;\",\"gav\":\"com.cloudbees.jenkins.plugins:custom-tools-plugin:0.1\",\"labels\":[\"buildwrapper\"],\"name\":\"custom-tools-plugin\",\"releaseTimestamp\":\"2012-02-13T18:54:48.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"C1mOyP2Hfq7k7nf/ycLz/iJx4Mo=\",\"title\":\"Custom Tools Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/custom-tools-plugin/0.1/custom-tools-plugin.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Custom+Tools+Plugin\"},\"cvs\":{\"buildDate\":\"Nov 05, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"mc1arke\",\"name\":\"Michael Clarke\"}],\"excerpt\":\"This bundled plugin integrates Jenkins with CVS version control system.\",\"gav\":\"org.jenkins-ci.plugins:cvs:2.7\",\"labels\":[\"scm\"],\"name\":\"cvs\",\"previousTimestamp\":\"2012-09-22T23:19:36.00Z\",\"previousVersion\":\"2.6\",\"releaseTimestamp\":\"2012-11-06T00:45:30.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"zTpvXtAiby+IYc0XvNXs1y4dOJg=\",\"title\":\"CVS Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cvs/2.7/cvs.hpi\",\"version\":\"2.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/CVS+Plugin\"},\"cvs-tag\":{\"buildDate\":\"Nov 03, 2011\",\"dependencies\":[{\"name\":\"cvs\",\"optional\":false,\"version\":\"1.3\"}],\"developers\":[{\"developerId\":\"btrim\",\"email\":\"trimbybj@gmail.com\",\"name\":\"Brad Trimby\"},{\"developerId\":\"draco2k8\",\"email\":\"draco2k4@yahoo.com\",\"name\":\"Brendt Lucas\"},{\"developerId\":\"derekmahar\",\"email\":\"derek@derekmahar.ca\",\"name\":\"Derek Mahar\"}],\"excerpt\":\"This plugin will perform CVS tagging (cvs rtag when possible) after a job has been built successfully.\",\"gav\":\"org.jenkins-ci.plugins:cvs-tag:1.7\",\"labels\":[\"post-build\",\"scm-related\"],\"name\":\"cvs-tag\",\"previousTimestamp\":\"2011-04-30T04:36:18.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2011-11-04T02:40:52.00Z\",\"requiredCore\":\"1.421\",\"scm\":\"github.com\",\"sha1\":\"xU34I1C6YcpwlR0j5exvWMiRfmI=\",\"title\":\"CVS Tagging Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cvs-tag/1.7/cvs-tag.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/CVS+Tagging+Plugin\"},\"cygpath\":{\"buildDate\":\"Nov 07, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin performs Cygwin path conversion before forking new processes\",\"gav\":\"org.jenkins-ci.plugins:cygpath:1.5\",\"labels\":[\"misc\"],\"name\":\"cygpath\",\"previousTimestamp\":\"2011-11-08T03:05:32.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2011-11-08T03:33:34.00Z\",\"requiredCore\":\"1.418\",\"scm\":\"github.com\",\"sha1\":\"OvtjQn0IRxNBlg+kG9XXc3Io2Is=\",\"title\":\"Cygpath Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/cygpath/1.5/cygpath.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Cygpath+Plugin\"},\"darcs\":{\"buildDate\":\"Apr 19, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"weltraumschaf\",\"email\":\"ich@weltraumschaf.de\",\"name\":\"Sven Strittmatter\"},{\"developerId\":\"ralphlange\",\"email\":\"ralph.lange@gmx.de\",\"name\":\"Ralph Lange\"}],\"excerpt\":\"This plugin integrates <a href='http://darcs.net'>Darcs<\\/a> version control system to Jenkins. The plugin requires the Darcs binary (darcs) to be installed on the target machine. \",\"gav\":\"org.jenkins-ci.plugins:darcs:0.3.5\",\"labels\":[\"scm\"],\"name\":\"darcs\",\"previousTimestamp\":\"2011-03-30T04:21:54.00Z\",\"previousVersion\":\"0.3.4\",\"releaseTimestamp\":\"2011-04-20T01:42:42.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"WgdqpfwTKOMMnc58HQb6vHoVmn0=\",\"title\":\"Darcs Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/darcs/0.3.5/darcs.hpi\",\"version\":\"0.3.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Darcs+Plugin\"},\"dashboard-view\":{\"buildDate\":\"Nov 12, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424\"}],\"developers\":[{\"developerId\":\"petehayes\",\"email\":\"petehayes@gmail.com\",\"name\":\"Peter Hayes\"},{\"developerId\":\"mambu\",\"email\":\"marco.ambu+jenkins@gmail.com\",\"name\":\"Marco Ambu\"}],\"excerpt\":\"This plugin contributes a new view implementation that provides a dashboard / portal-like view for your Jenkins instance. \",\"gav\":\"org.jenkins-ci.plugins:dashboard-view:2.4\",\"labels\":[\"ui\"],\"name\":\"dashboard-view\",\"previousTimestamp\":\"2012-07-17T18:33:16.00Z\",\"previousVersion\":\"2.3\",\"releaseTimestamp\":\"2012-11-13T00:51:46.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"WjHl1hx5+lzl0XSDjonpuBxhwPM=\",\"title\":\"Dashboard View\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/dashboard-view/2.4/dashboard-view.hpi\",\"version\":\"2.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Dashboard+View\"},\"database\":{\"buildDate\":\"Dec 14, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This library plugin allows other plugins to connect to RDBMS in an uniform fashion.\",\"gav\":\"org.jenkins-ci.plugins:database:1.1\",\"labels\":[\"database\",\"library\"],\"name\":\"database\",\"previousTimestamp\":\"2012-12-15T00:06:48.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-12-15T00:31:42.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"bdoV5TGNY4E4l25PyoAJygU2JqQ=\",\"title\":\"Database Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/database/1.1/database.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Database+Plugin\"},\"database-drizzle\":{\"buildDate\":\"Dec 17, 2012\",\"dependencies\":[{\"name\":\"database\",\"optional\":false,\"version\":\"1.1\"}],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:database-drizzle:1.0\",\"name\":\"database-drizzle\",\"releaseTimestamp\":\"2012-12-17T15:47:20.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"SANSCQjImmlkjeipIbAQTgxKBIc=\",\"title\":\"database-drizzle\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/database-drizzle/1.0/database-drizzle.hpi\",\"version\":\"1.0\"},\"database-h2\":{\"buildDate\":\"Dec 14, 2012\",\"dependencies\":[{\"name\":\"database\",\"optional\":false,\"version\":\"1.0\"}],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This is a driver plugin for [Database plugin] that adds <a href='http://h2database.com/'>H2 database<\\/a> driver\",\"gav\":\"org.jenkins-ci.plugins:database-h2:1.0\",\"labels\":[\"library\",\"database\"],\"name\":\"database-h2\",\"releaseTimestamp\":\"2012-12-15T00:18:30.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"a4gdunjcpVi1o4DhoO99cCAZ/bs=\",\"title\":\"H2 Database Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/database-h2/1.0/database-h2.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/H2+Database+Plugin\"},\"database-mysql\":{\"buildDate\":\"Dec 14, 2012\",\"dependencies\":[{\"name\":\"database\",\"optional\":false,\"version\":\"1.1\"}],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This is a driver plugin for [Database plugin] that adds <a href='http://www.mysql.com/'>MySQL database<\\/a> driver\",\"gav\":\"org.jenkins-ci.plugins:database-mysql:1.0\",\"labels\":[\"database\",\"library\"],\"name\":\"database-mysql\",\"releaseTimestamp\":\"2012-12-15T00:32:58.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"Klx+BS7DgwWtV6NHTNuye1UoOAo=\",\"title\":\"MySQL Database Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/database-mysql/1.0/database-mysql.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/MySQL+Database+Plugin\"},\"database-postgresql\":{\"buildDate\":\"Dec 14, 2012\",\"dependencies\":[{\"name\":\"database\",\"optional\":false,\"version\":\"1.1\"}],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This is a driver plugin for [Database plugin] that adds <a href='http://www.postgresql.org/'>PostgreSQL database<\\/a> driver\",\"gav\":\"org.jenkins-ci.plugins:database-postgresql:1.0\",\"labels\":[\"library\",\"database\"],\"name\":\"database-postgresql\",\"releaseTimestamp\":\"2012-12-15T00:34:34.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"nsz1kPOIJRUPNKcQBysTHEEECn8=\",\"title\":\"PostgreSQL Database Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/database-postgresql/1.0/database-postgresql.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PostgreSQL+Database+Plugin\"},\"dbCharts\":{\"buildDate\":\"Feb 17, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ptab\",\"email\":\"piotr.tabor@gmail.com\",\"name\":\"Piotr Tabor\"}],\"excerpt\":\"Add charts based on JDBC database data series.\",\"gav\":\"org.jvnet.hudson.plugins:dbCharts:0.4\",\"labels\":[\"ui\",\"report\"],\"name\":\"dbCharts\",\"previousTimestamp\":\"2010-03-15T21:07:28.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2011-02-17T16:30:02.00Z\",\"requiredCore\":\"1.358\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"V+rZd9ht1z8SbGmaTjZ2Hge65aQ=\",\"title\":\"dbCharts Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/dbCharts/0.4/dbCharts.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/dbCharts+Plugin\"},\"debian-package-builder\":{\"buildDate\":\"Nov 30, 2012\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.42\"}],\"developers\":[{\"developerId\":\"pupssman\",\"email\":\"pupssman@yandex-team.ru\",\"name\":\"Ivan Kalinin\"},{\"developerId\":\"mavlyutov\",\"email\":\"mavlyutov@yandex-team.ru\",\"name\":\"Marat Mavlyutov\"}],\"excerpt\":\"This plugin helps building debian (.deb) packages \",\"gav\":\"ru.yandex.jenkins.plugins.debuilder:debian-package-builder:1.4.1\",\"labels\":[\"builder\",\"post-build\"],\"name\":\"debian-package-builder\",\"previousTimestamp\":\"2012-11-07T17:30:30.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2012-12-01T00:49:28.00Z\",\"requiredCore\":\"1.486\",\"scm\":\"github.com\",\"sha1\":\"sw2Uu123MczuZ1VVlVF5xN2XeW8=\",\"title\":\"Debian Package Builder Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/debian-package-builder/1.4.1/debian-package-builder.hpi\",\"version\":\"1.4.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Debian+Package+Builder+Plugin\"},\"delete-log-plugin\":{\"buildDate\":\"Apr 30, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"lvotypko\",\"email\":\"lvotypko@redhat.com\",\"name\":\"Lucie Votypkova\"}],\"excerpt\":\"Delele log of a build \",\"gav\":\"org.jenkins-ci.plugins:delete-log-plugin:1.0\",\"labels\":[],\"name\":\"delete-log-plugin\",\"releaseTimestamp\":\"2012-04-30T09:19:08.00Z\",\"requiredCore\":\"1.461\",\"scm\":\"github.com\",\"sha1\":\"LpyHRmwF80Ok48m9xkvd7vF1bps=\",\"title\":\"Delete log plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/delete-log-plugin/1.0/delete-log-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Delete+log+plugin\"},\"delta-cloud\":{\"buildDate\":\"Sep 20, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vjuranek\"}],\"excerpt\":\"This plugin allows to use <a href='http://incubator.apache.org/deltacloud/'>Delta Cloud API<\\/a> for provisioning new slaves and therefore allows you to decouple your Jenkins instance from cloud provider\",\"gav\":\"org.jenkins-ci.plugins:delta-cloud:1.0.1\",\"labels\":[\"cluster\"],\"name\":\"delta-cloud\",\"previousTimestamp\":\"2011-09-19T19:15:48.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-09-20T15:15:32.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"lLVnoLOfAOB0ldDUL0v2T1CXtBc=\",\"title\":\"Delta Cloud API plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/delta-cloud/1.0.1/delta-cloud.hpi\",\"version\":\"1.0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Delta+Cloud+API+plugin\"},\"dependency-queue-plugin\":{\"buildDate\":\"Jul 20, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"lshatzer\",\"email\":\"larrys@gmail.com\",\"name\":\"Larry Shatzer, Jr.\"}],\"excerpt\":\"This plugin will make sure the order of dependencies is honored in the build queue.\",\"gav\":\"org.jenkins-ci.plugins:dependency-queue-plugin:1.1\",\"labels\":[\"misc\"],\"name\":\"dependency-queue-plugin\",\"previousTimestamp\":\"2012-05-18T16:46:30.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-07-20T11:37:14.00Z\",\"requiredCore\":\"1.427\",\"scm\":\"github.com\",\"sha1\":\"O3CVdrVAqxETlPT3Z8SiAiHWvuc=\",\"title\":\"Dependency Queue Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/dependency-queue-plugin/1.1/dependency-queue-plugin.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Dependency+Queue+Plugin\"},\"dependencyanalyzer\":{\"buildDate\":\"Feb 14, 2011\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.377\"}],\"developers\":[{\"developerId\":\"vsellier\",\"name\":\"Vincent Sellier\"}],\"excerpt\":\"This plugin parses dependency:analyze goal from maven build logs and generates a dependency report\",\"gav\":\"org.jvnet.hudson.plugins:dependencyanalyzer:0.6\",\"labels\":[\"maven\",\"report\"],\"name\":\"dependencyanalyzer\",\"previousTimestamp\":\"2010-02-15T14:23:26.00Z\",\"previousVersion\":\"0.5\",\"releaseTimestamp\":\"2011-02-14T21:18:36.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"YqhhubcDUAU1Sd9KxRAZm3zez1Q=\",\"title\":\"Dependency Analyzer Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/dependencyanalyzer/0.6/dependencyanalyzer.hpi\",\"version\":\"0.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Dependency+Analyzer+Plugin\"},\"depgraph-view\":{\"buildDate\":\"Dec 01, 2012\",\"dependencies\":[{\"name\":\"copyartifact\",\"optional\":true,\"version\":\"1.18\"},{\"name\":\"jquery\",\"optional\":false,\"version\":\"1.7.2-1\"},{\"name\":\"parameterized-trigger\",\"optional\":true,\"version\":\"2.11\"},{\"name\":\"jquery-ui\",\"optional\":false,\"version\":\"1.0.2\"}],\"developers\":[{\"developerId\":\"wolfs\",\"name\":\"Stefan Wolf\"}],\"excerpt\":\"Shows a dependency graph of the projects using graphviz. Requires a graphviz installation on the server.\",\"gav\":\"org.jenkins-ci.plugins:depgraph-view:0.10\",\"labels\":[\"report\",\"ui\",\"misc\"],\"name\":\"depgraph-view\",\"previousTimestamp\":\"2012-11-22T18:22:54.00Z\",\"previousVersion\":\"0.9\",\"releaseTimestamp\":\"2012-12-02T03:51:30.00Z\",\"requiredCore\":\"1.480\",\"scm\":\"github.com\",\"sha1\":\"o9SnofNhqhVQB29O1xkxc1EAunM=\",\"title\":\"Dependency Graph View Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/depgraph-view/0.10/depgraph-view.hpi\",\"version\":\"0.10\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Dependency+Graph+View+Plugin\"},\"deploy\":{\"buildDate\":\"Jun 11, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"edobm\",\"name\":\"Meikel Bode\"}],\"excerpt\":\"This plugin takes a war/ear file and deploys that to a running remote application server at the end of a build\",\"gav\":\"org.jenkins-ci.plugins:deploy:1.9\",\"labels\":[\"upload\"],\"name\":\"deploy\",\"previousTimestamp\":\"2011-06-28T21:46:48.00Z\",\"previousVersion\":\"1.8\",\"releaseTimestamp\":\"2012-06-11T13:26:30.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"dyTzLnkvj4lR66qGOUjdYdqbIhE=\",\"title\":\"Deploy Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/deploy/1.9/deploy.hpi\",\"version\":\"1.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Deploy+Plugin\"},\"deploy-websphere\":{\"buildDate\":\"Jun 02, 2010\",\"dependencies\":[{\"name\":\"deploy\",\"optional\":false,\"version\":\"1.5\"}],\"developers\":[{\"developerId\":\"asanso\",\"name\":\"Antonio Sanso\"}],\"excerpt\":\"This plugin is an extension of the <a href='https://wiki.jenkins-ci.org/display/JENKINS/Deploy+Plugin'>Deploy Plugin<\\/a>. It takes a war/ear file and deploys that to a running remote WebSphere Application Server at the end of a build.\",\"gav\":\"org.jvnet.hudson.plugins:deploy-websphere:1.0\",\"labels\":[\"upload\"],\"name\":\"deploy-websphere\",\"releaseTimestamp\":\"2010-06-03T02:39:10.00Z\",\"requiredCore\":\"1.343\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"PAhTdc2WHUet0ZfHOj9DhcFeKK8=\",\"title\":\"Deploy WebSphere Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/deploy-websphere/1.0/deploy-websphere.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Deploy+WebSphere+Plugin\"},\"deployed-on-column\":{\"buildDate\":\"Dec 17, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424\"}],\"developers\":[{\"developerId\":\"stephenconnolly\",\"name\":\"Stephen Connolly\"}],\"excerpt\":\"This plugin provides a column that acts as a container for build actions that record deployment of build artifacts to remote servers, such as deployment of web applications to servers, etc. The plugin also provides an extension point for other plugins to contribute their build actions. \",\"gav\":\"org.jenkins-ci.plugins:deployed-on-column:1.5\",\"labels\":[],\"name\":\"deployed-on-column\",\"previousTimestamp\":\"2012-12-17T22:32:16.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2012-12-17T22:40:44.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"6ZZtcFiB7sRvQxMi43Rjj4s3Ofk=\",\"title\":\"Deployed on Column Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/deployed-on-column/1.5/deployed-on-column.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Deployed+on+Column+Plugin\"},\"deploygate-plugin\":{\"buildDate\":\"Jan 06, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"bols-blue\",\"email\":\"bols-blue@lnc.jp\",\"name\":\"Hisayoshi Suehiro\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins.deploygate:deploygate-plugin:1.2\",\"name\":\"deploygate-plugin\",\"releaseTimestamp\":\"2013-01-06T21:50:56.00Z\",\"requiredCore\":\"1.480\",\"scm\":\"github.com\",\"sha1\":\"OmU2a19P0H/8FMpeQGLlsvgnDxo=\",\"title\":\"deploygate-plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/deploygate-plugin/1.2/deploygate-plugin.hpi\",\"version\":\"1.2\"},\"description-column-plugin\":{\"buildDate\":\"Aug 26, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"noirbizarre\",\"email\":\"noirbizarre+jenkins@gmail.com\",\"name\":\"Axel Haustant\"}],\"excerpt\":\"Provide job description column for views.\",\"gav\":\"org.jenkins-ci.plugins:description-column-plugin:1.3\",\"labels\":[\"listview-column\"],\"name\":\"description-column-plugin\",\"previousTimestamp\":\"2011-08-20T19:12:16.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-08-27T01:56:50.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"snbs4E4kUVEwJzqfbDqW23fM1Vg=\",\"title\":\"Description Column Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/description-column-plugin/1.3/description-column-plugin.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Description+Column+Plugin\"},\"description-setter\":{\"buildDate\":\"Mar 26, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"huybrechts\",\"name\":\"Tom Huybrechts\"}],\"excerpt\":\"This plugin sets the description for each build, based upon a <a href='http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/Pattern.html'>RegEx<\\/a> test of the build log file.\",\"gav\":\"org.jenkins-ci.plugins:description-setter:1.8\",\"labels\":[\"post-build\"],\"name\":\"description-setter\",\"previousTimestamp\":\"2011-01-01T03:55:32.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2011-03-27T02:12:18.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"1Yuo/8dwApgCXtrV1awg0LW7B9U=\",\"title\":\"Description Setter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/description-setter/1.8/description-setter.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Description+Setter+Plugin\"},\"devstack\":{\"buildDate\":\"Sep 17, 2012\",\"dependencies\":[{\"name\":\"ruby-runtime\",\"optional\":false,\"version\":\"0.10\"},{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"tim\"}],\"excerpt\":\"Deploys Devstack Onto OpenStack\",\"gav\":\"org.jenkins-ci.ruby-plugins:devstack:0.0.6\",\"name\":\"devstack\",\"releaseTimestamp\":\"2012-09-18T02:14:48.00Z\",\"requiredCore\":\"1.432\",\"scm\":\"github.com\",\"sha1\":\"6g2yigG70T2w6ZPnBHw/cGEGDgY=\",\"title\":\"DevStack Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/devstack/0.0.6/devstack.hpi\",\"version\":\"0.0.6\"},\"dimensionsscm\":{\"buildDate\":\"Mar 09, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"TPayne\",\"email\":\"tpayne@serena.com\",\"name\":\"Tim Payne\"}],\"excerpt\":\"This plugin integrates Hudson with <a href='http://www.serena.com/products/dimensions-cm-configuration-management/index.html'>Dimensions<\\/a>, the Serena CM solution.  *{_}Please note - the maintainer for this plugin is no longer myself (TPayne), but is being changed. Until it has been updated, please forward any issues to Paul Caruana (pcaruana@serena.com)._* \",\"gav\":\"org.jenkins-ci.plugins:dimensionsscm:0.8.1\",\"labels\":[\"post-build\",\"upload\",\"notifier\",\"scm\"],\"name\":\"dimensionsscm\",\"previousTimestamp\":\"2011-03-03T02:22:14.00Z\",\"previousVersion\":\"0.7.11\",\"releaseTimestamp\":\"2011-03-10T01:54:12.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"mJoMpT6n4z13TnSRgJOWOjEK/HY=\",\"title\":\"Dimensions Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/dimensionsscm/0.8.1/dimensionsscm.hpi\",\"version\":\"0.8.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Dimensions+Plugin\"},\"disk-usage\":{\"buildDate\":\"Sep 04, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.409\"}],\"developers\":[{\"developerId\":\"vjuranek\",\"name\":\"Vojtech Juranek\"}],\"excerpt\":\"This plugin records disk usage. \",\"gav\":\"org.jenkins-ci.plugins:disk-usage:0.18\",\"labels\":[\"report\"],\"name\":\"disk-usage\",\"previousTimestamp\":\"2012-05-24T14:51:34.00Z\",\"previousVersion\":\"0.17\",\"releaseTimestamp\":\"2012-09-04T21:37:26.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"jYREXyuRByP47xXGVp+p7mT+Qfw=\",\"title\":\"Disk Usage Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/disk-usage/0.18/disk-usage.hpi\",\"version\":\"0.18\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Disk+Usage+Plugin\"},\"display-upstream-changes\":{\"buildDate\":\"Mar 29, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"rpetti\",\"name\":\"Rob Petti\"}],\"excerpt\":\"Displays all upstream changes on a build's summary page.\",\"gav\":\"org.jvnet.hudson.plugins:display-upstream-changes:0.1\",\"labels\":[],\"name\":\"display-upstream-changes\",\"releaseTimestamp\":\"2012-03-29T18:04:46.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"jBpY0c6s+JYHa/5ZUgfA+pSjvBA=\",\"title\":\"Display Upstream Changes Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/display-upstream-changes/0.1/display-upstream-changes.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Display+Upstream+Changes+Plugin\"},\"distTest\":{\"buildDate\":\"Jan 20, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mnovak\",\"email\":\"novak.miroslav95@gmail.com\",\"name\":\"Miroslav Novak\"}],\"excerpt\":\"This plugin allows distribute JUnit tests to all slaves in a specified label for a project.\",\"gav\":\"org.jvnet.hudson.plugins:distTest:1.0\",\"labels\":[\"builder\"],\"name\":\"distTest\",\"releaseTimestamp\":\"2011-01-20T16:20:14.00Z\",\"requiredCore\":\"1.350\",\"scm\":\"svn.java.net\",\"sha1\":\"khlRX3YLAm9vVzflVYoZM+YOzj4=\",\"title\":\"DistTest Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/distTest/1.0/distTest.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/DistTest+Plugin\"},\"distfork\":{\"buildDate\":\"Feb 25, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"Turns a Jenkins cluster into a general purpose batch job execution environment through an SSH-like CLI.\",\"gav\":\"org.jenkins-ci.plugins:distfork:1.3\",\"labels\":[\"cluster\",\"cli\"],\"name\":\"distfork\",\"previousTimestamp\":\"2011-02-22T11:50:32.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-02-25T21:40:32.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"B4MetviGPmQnbROeeKQVHQiaenI=\",\"title\":\"DistFork Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/distfork/1.3/distfork.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/DistFork+Plugin\"},\"doclinks\":{\"buildDate\":\"Oct 19, 2011\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.319\"}],\"developers\":[{\"developerId\":\"jesse\"}],\"excerpt\":\"This plugin allows you to publish your documents that are created in the build steps.\",\"gav\":\"org.jenkinsci.plugins:doclinks:0.5\",\"labels\":[\"ui\",\"post-build\"],\"name\":\"doclinks\",\"previousTimestamp\":\"2011-01-15T18:02:06.00Z\",\"previousVersion\":\"0.4\",\"releaseTimestamp\":\"2011-10-19T13:17:14.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"github.com\",\"sha1\":\"2W+ANdUpsnfiOEQIymMk3f4dHw4=\",\"title\":\"DocLinks Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/doclinks/0.5/doclinks.hpi\",\"version\":\"0.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/DocLinks+Plugin\"},\"dos-trigger\":{\"buildDate\":\"Aug 20, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"pellet\",\"email\":\"benpettit@digimulti.com\",\"name\":\"Ben Pettit\"},{\"developerId\":\"tombrus\",\"email\":\"tombrus@gmail.com\",\"name\":\"Tom Brus\"}],\"excerpt\":\"This plugin allows to trigger a build with a DOS script.\",\"gav\":\"org.jenkins-ci.plugins:dos-trigger:1.23\",\"labels\":[\"trigger\"],\"name\":\"dos-trigger\",\"previousTimestamp\":\"2011-06-02T21:41:26.00Z\",\"previousVersion\":\"1.21\",\"releaseTimestamp\":\"2011-08-20T14:45:52.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"snUuDMD0Djp+KIkiskFF5DK5qkY=\",\"title\":\"DOS Trigger\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/dos-trigger/1.23/dos-trigger.hpi\",\"version\":\"1.23\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/DOS+Trigger\"},\"downstream-buildview\":{\"buildDate\":\"Aug 02, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"shinodkm\",\"email\":\"shinodkm@gmail.com\",\"name\":\"Shinod Mohandas\"},{\"email\":\"rajesh.nair.mit@gmail.com\",\"name\":\"Rajesh Nair\"}],\"excerpt\":\"This plugin allows you to view the full status all the downstream builds so that we can graphically see that everything for this build has been completed successfully.\",\"gav\":\"org.jvnet.hudson.plugins:downstream-buildview:1.8\",\"labels\":[\"report\",\"ui\",\"misc\"],\"name\":\"downstream-buildview\",\"previousTimestamp\":\"2012-04-03T01:50:50.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2012-08-02T16:28:06.00Z\",\"requiredCore\":\"1.424.3\",\"scm\":\"github.com\",\"sha1\":\"ZQLMDEhMEelhf2v2zZop4DNsHFc=\",\"title\":\"Downstream buildview plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/downstream-buildview/1.8/downstream-buildview.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Downstream+buildview+plugin\"},\"downstream-ext\":{\"buildDate\":\"Feb 09, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kutzi\",\"email\":\"kutzi@gmx.de\",\"name\":\"Christoph Kutzinski\"}],\"excerpt\":\"This plugin supports extended configuration for triggering downstream builds: * trigger build only if downstream job has SCM changes * trigger build if upstream build result is better/equal/worse than any given result (SUCCESS, UNSTABLE, FAILURE, ABORTED) * for Matrix (alias multi-configuration) jobs you can decide which part of the job should trigger the downstream job: parent only, configurations only or both   \",\"gav\":\"org.jenkins-ci.plugins:downstream-ext:1.7\",\"labels\":[\"trigger\"],\"name\":\"downstream-ext\",\"previousTimestamp\":\"2010-03-28T17:08:36.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2012-02-09T21:51:36.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"eg2/YiPf3qXLYoRZGfoK5oDHB1o=\",\"title\":\"Downstream-Ext Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/downstream-ext/1.7/downstream-ext.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Downstream-Ext+Plugin\"},\"doxygen\":{\"buildDate\":\"Apr 27, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin publishes HTML reports generated by the <a href='http://www.stack.nl/~dimitri/doxygen/'>Doxygen<\\/a> tool. \",\"gav\":\"org.jenkins-ci.plugins:doxygen:0.11\",\"labels\":[\"report\",\"maven\"],\"name\":\"doxygen\",\"previousTimestamp\":\"2012-02-27T06:57:46.00Z\",\"previousVersion\":\"0.10\",\"releaseTimestamp\":\"2012-04-27T04:52:16.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"UScLSyRpdoOXgulkNUVXpn+NVfg=\",\"title\":\"Doxygen Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/doxygen/0.11/doxygen.hpi\",\"version\":\"0.11\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Doxygen+Plugin\"},\"drmemory-plugin\":{\"buildDate\":\"Feb 25, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"wolfgarnet\",\"email\":\"coolers@praqma.net\",\"name\":\"Christian Wolfgang\"}],\"excerpt\":\"Integrates Dr. Memory with Jenkins\",\"gav\":\"net.praqma:drmemory-plugin:0.1.1\",\"labels\":[\"report\",\"builder\",\"post-build\"],\"name\":\"drmemory-plugin\",\"previousTimestamp\":\"2012-02-24T10:30:14.00Z\",\"previousVersion\":\"0.1.0\",\"releaseTimestamp\":\"2012-02-25T12:34:06.00Z\",\"requiredCore\":\"1.450\",\"scm\":\"github.com\",\"sha1\":\"o8Kb8rqKP2IXH5k1dsfc0oLY5zg=\",\"title\":\"drmemory plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/drmemory-plugin/0.1.1/drmemory-plugin.hpi\",\"version\":\"0.1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/drmemory+plugin\"},\"dropdown-viewstabbar-plugin\":{\"buildDate\":\"Jul 22, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"This plugin provides an alternate rendering of the Views bar which runs along the top of all views. This plugin is useful for instances which have a very large number of views and want a compact rendering.\",\"gav\":\"org.jenkins-ci.plugins:dropdown-viewstabbar-plugin:1.6\",\"labels\":[\"misc\",\"ui\"],\"name\":\"dropdown-viewstabbar-plugin\",\"previousTimestamp\":\"2012-04-28T00:43:22.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2012-07-22T22:19:06.00Z\",\"requiredCore\":\"1.455\",\"scm\":\"github.com\",\"sha1\":\"yMgx12Xj5P+kmzu8rf5hZBU2OC4=\",\"title\":\"DropDown ViewsTabBar Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/dropdown-viewstabbar-plugin/1.6/dropdown-viewstabbar-plugin.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/DropDown+ViewsTabBar+Plugin\"},\"dry\":{\"buildDate\":\"Oct 05, 2012\",\"dependencies\":[{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.48\"},{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.409\"},{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.2\"},{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"drulli\",\"email\":\"ullrich.hafner@gmail.com\",\"name\":\"Ulli Hafner\"}],\"excerpt\":\"This plugin generates the trend report for duplicate code checkers like <a href='http://pmd.sourceforge.net/cpd.html'>CPD<\\/a> or <a href='http://www.harukizaemon.com/simian/'>Simian<\\/a>. \",\"gav\":\"org.jvnet.hudson.plugins:dry:2.33\",\"labels\":[\"maven\",\"report\"],\"name\":\"dry\",\"previousTimestamp\":\"2012-09-04T14:57:46.00Z\",\"previousVersion\":\"2.32\",\"releaseTimestamp\":\"2012-10-05T15:51:54.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"w+LArI2XClTzB0XUDam57c+qhLA=\",\"title\":\"DRY Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/dry/2.33/dry.hpi\",\"version\":\"2.33\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/DRY+Plugin\"},\"dry-run\":{\"buildDate\":\"Sep 16, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.410\"}],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gregory.boissinot@gmail.com\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plug-in makes it possible to show all the job tasks (builders, publishers, ...) to be executed as part of a build job. \",\"gav\":\"org.jenkins-ci.plugins:dry-run:0.9\",\"labels\":[],\"name\":\"dry-run\",\"previousTimestamp\":\"2012-02-06T22:21:26.00Z\",\"previousVersion\":\"0.8\",\"releaseTimestamp\":\"2012-09-17T02:42:54.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"4BuqvLI+ZnTPD/TKFZvglOTOcr8=\",\"title\":\"DryRun Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/dry-run/0.9/dry-run.hpi\",\"version\":\"0.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/DryRun+Plugin\"},\"dtkit\":{\"buildDate\":\"Dec 08, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gregory.boissinot@gmail.com\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin makes it possible to convert outputs from the metric tools execution into unified outputs.\",\"gav\":\"org.jenkins-ci.plugins:dtkit:1.9\",\"labels\":[\"builder\"],\"name\":\"dtkit\",\"previousTimestamp\":\"2012-11-27T02:50:18.00Z\",\"previousVersion\":\"1.8\",\"releaseTimestamp\":\"2012-12-08T15:25:52.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"wq8cNe3yYv/17dv1iT63gHq0YCc=\",\"title\":\"DTKit Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/dtkit/1.9/dtkit.hpi\",\"version\":\"1.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/DTKit+Plugin\"},\"dumpinfo-buildwrapper-plugin\":{\"buildDate\":\"Jan 30, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Dumps vital information about the Hudson instance into the job log. This plugin is useful for historical and audit purposes, where you can see what versions of Hudson, slaves, and plugins were around at the time of a build.\",\"gav\":\"org.jvnet.hudson.plugins:dumpinfo-buildwrapper-plugin:1.1\",\"labels\":[\"buildwrapper\",\"misc\"],\"name\":\"dumpinfo-buildwrapper-plugin\",\"previousTimestamp\":\"2011-01-28T01:02:24.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-01-30T14:41:14.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"92iZEr3drLGGGRUKgrRjVdExraQ=\",\"title\":\"DumpInfo BuildWrapper Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/dumpinfo-buildwrapper-plugin/1.1/dumpinfo-buildwrapper-plugin.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/DumpInfo+BuildWrapper+Plugin\"},\"dynamic-axis\":{\"buildDate\":\"Nov 13, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kckane\",\"email\":\"kckane@silvermaplesolutions.ca\",\"name\":\"Kevin Kane\"}],\"excerpt\":\"This plugin allows you to define a matrix build axis that is dynamically populated from an environment variable: \",\"gav\":\"org.jenkins-ci.plugins:dynamic-axis:1.0.1\",\"labels\":[\"buildwrapper\"],\"name\":\"dynamic-axis\",\"releaseTimestamp\":\"2012-11-13T20:41:20.00Z\",\"requiredCore\":\"1.477\",\"scm\":\"github.com\",\"sha1\":\"iPcyG43BojcgM4oSNayqxfIbvnM=\",\"title\":\"DynamicAxis Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/dynamic-axis/1.0.1/dynamic-axis.hpi\",\"version\":\"1.0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/DynamicAxis+Plugin\"},\"dynamicparameter\":{\"buildDate\":\"Oct 01, 2012\",\"dependencies\":[{\"name\":\"scriptler\",\"optional\":false,\"version\":\"2.2\"},{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"dimitarp\",\"name\":\"Dimitar Popov\"},{\"developerId\":\"baranowski\",\"name\":\"Christian Baranowski\"}],\"excerpt\":\"This plugin allows dynamic generation of default build parameter values.\",\"gav\":\"com.seitenbau.jenkins.plugins:dynamicparameter:0.2.0\",\"labels\":[\"parameter\"],\"name\":\"dynamicparameter\",\"previousTimestamp\":\"2012-04-03T20:52:50.00Z\",\"previousVersion\":\"0.1.1\",\"releaseTimestamp\":\"2012-10-01T21:05:18.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"PvBopa8m/P/nVU6N75KiDVj3kOU=\",\"title\":\"Jenkins Dynamic Parameter Plug-in\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/dynamicparameter/0.2.0/dynamicparameter.hpi\",\"version\":\"0.2.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Dynamic+Parameter+Plug-in\"},\"easyant\":{\"buildDate\":\"Jan 31, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jboudart\",\"name\":\"Jean Louis Boudart\"}],\"excerpt\":\"This plugin allows Hudson to invoke <a href='http://www.easyant.org'>EasyAnt<\\/a> build script as the main build step.\",\"gav\":\"org.jvnet.hudson.plugins:easyant:1.1\",\"labels\":[\"builder\"],\"name\":\"easyant\",\"previousTimestamp\":\"2009-03-30T12:22:08.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2010-01-31T13:49:56.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"w2JIOKAlcG3bQIMrSJJXKtgvddM=\",\"title\":\"EasyAnt Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/easyant/1.1/easyant.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/EasyAnt+Plugin\"},\"ec2\":{\"buildDate\":\"Sep 12, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"francisu\",\"email\":\"francis@oaklandsoftware.com\",\"name\":\"Francis Upton IV\"},{\"developerId\":\"kohsuke\",\"email\":\"kkawaguchi@cloudbees.com\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"Allow Jenkins to start slaves on <a href='http://aws.amazon.com/ec2/'>EC2<\\/a> or <a href='http://www.ubuntu.com/cloud/private'>Ubuntu Enterprise Cloud<\\/a> (Eucalyptus) on demand, and kill them as they get unused.\",\"gav\":\"org.jenkins-ci.plugins:ec2:1.17\",\"labels\":[\"cluster\"],\"name\":\"ec2\",\"previousTimestamp\":\"2012-05-26T18:19:16.00Z\",\"previousVersion\":\"1.16\",\"releaseTimestamp\":\"2012-09-12T21:34:08.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"5tAQN8tgmW2pHPDXEyxZMy0BRXI=\",\"title\":\"Amazon EC2 Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ec2/1.17/ec2.hpi\",\"version\":\"1.17\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Amazon+EC2+Plugin\"},\"eclipse-update-site\":{\"buildDate\":\"Sep 27, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This library plugin combines Eclipse update sites from all the installed plugins and expose it as a single update site.\",\"gav\":\"org.jenkins-ci.plugins:eclipse-update-site:1.2\",\"labels\":[\"library\"],\"name\":\"eclipse-update-site\",\"previousTimestamp\":\"2012-09-11T22:28:24.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-09-27T19:54:44.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"rW1t3oyaM3X6hSUMXUT4lxoE3oE=\",\"title\":\"Eclipse Update Site Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/eclipse-update-site/1.2/eclipse-update-site.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Eclipse+Update+Site+Plugin\"},\"eggplant-plugin\":{\"buildDate\":\"Nov 05, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jonathanosx\",\"email\":\"jonathan.gillaspie@testplant.com\",\"name\":\"Jonathan Gillaspie\"},{\"developerId\":\"allen_fisher\",\"email\":\"allen.fisher@gmail.com\",\"name\":\"Allen Fisher\"},{\"developerId\":\"ryantestplant\",\"email\":\"ryan.daubert@testplant.com\",\"name\":\"Ryan Daubert\"}],\"excerpt\":\"This plugin calls eggPlant scripts as a Jenkins Build Action and returns the results to Jenkins for review or further processing.\",\"gav\":\"org.jenkins-ci.plugins:eggplant-plugin:1.3\",\"labels\":[\"builder\"],\"name\":\"eggplant-plugin\",\"previousTimestamp\":\"2012-02-02T00:40:00.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-11-05T17:26:46.00Z\",\"requiredCore\":\"1.427\",\"scm\":\"github.com\",\"sha1\":\"2bj5sgDzq/D4qzWj8DbUECgbPV0=\",\"title\":\"eggPlant-plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/eggplant-plugin/1.3/eggplant-plugin.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/eggPlant-plugin\"},\"elOyente\":{\"buildDate\":\"Dec 12, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"isabel\",\"email\":\"isabel.fd@gmail.com\",\"name\":\"Isabel Fernández Díaz\"},{\"developerId\":\"juanluis\",\"email\":\"jlpardo87@gmail.com\",\"name\":\"Juan Luis Pardo González\"},{\"developerId\":\"vanderhallenf\",\"email\":\"frank.vanderhallen@gmail.com\",\"name\":\"Frank Vanderhallen\"}],\"excerpt\":\"This plug-in adds job triggering based on XMPP Pub/Sub events.\",\"gav\":\"com.technicolor:elOyente:1.0\",\"labels\":[\"trigger\"],\"name\":\"elOyente\",\"releaseTimestamp\":\"2012-12-12T16:59:28.00Z\",\"requiredCore\":\"1.492\",\"scm\":\"github.com\",\"sha1\":\"TMQJ4tbdYyllwx0mClWWPlRlk7c=\",\"title\":\"El Oyente Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/elOyente/1.0/elOyente.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/El+Oyente+Plugin\"},\"email-ext\":{\"buildDate\":\"Dec 13, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.480\"},{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"},{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"analysis-core\",\"optional\":true,\"version\":\"1.41\"}],\"developers\":[{\"developerId\":\"ashlux\",\"email\":\"ashlux@gmail.com\",\"name\":\"Ash Lux\"},{\"developerId\":\"kdsweeney\",\"name\":\"Kyle Sweeney\"},{\"developerId\":\"krwalker\",\"email\":\"krwalker@stellarscience.com\",\"name\":\"K. R. Walker\"},{\"developerId\":\"ssogabe\",\"email\":\"s.sogabe@gmail.com\",\"name\":\"Seiji Sogabe\"},{\"developerId\":\"slide\",\"email\":\"slide.o.mix@gmail.com\",\"name\":\"Alex Earl\"}],\"excerpt\":\"This plugin allows you to configure every aspect of email notifications. You can customize when an email is sent, who should receive it, and what the email says.\",\"gav\":\"org.jenkins-ci.plugins:email-ext:2.25\",\"labels\":[\"notifier\"],\"name\":\"email-ext\",\"previousTimestamp\":\"2012-07-20T12:21:42.00Z\",\"previousVersion\":\"2.24.1\",\"releaseTimestamp\":\"2012-12-13T08:18:16.00Z\",\"requiredCore\":\"1.480\",\"scm\":\"github.com\",\"sha1\":\"nWICrmjm7Txe5/lhJSw1Kq5L8Wc=\",\"title\":\"Email-ext plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/email-ext/2.25/email-ext.hpi\",\"version\":\"2.25\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+plugin\"},\"embeddable-build-status\":{\"buildDate\":\"May 09, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin allows Jenkins to&nbsp;expose the current status of your build as an image in a fixed URL. You  can put this URL into other sites (such as GitHub README) so that  people can see the current state of the build. \",\"gav\":\"org.jenkins-ci.plugins:embeddable-build-status:1.0\",\"labels\":[\"ui\"],\"name\":\"embeddable-build-status\",\"releaseTimestamp\":\"2012-05-09T15:02:30.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"1L4k6nZ6RFUNCsmcJRulpAAoRZ8=\",\"title\":\"Embeddable Build Status Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/embeddable-build-status/1.0/embeddable-build-status.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Embeddable+Build+Status+Plugin\"},\"emma\":{\"buildDate\":\"Jul 05, 2012\",\"dependencies\":[{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.1\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.447\"}],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"stephenconnolly\",\"name\":\"Stephen Connolly\"},{\"developerId\":\"manolo\",\"email\":\"manolo@apache.org\",\"name\":\"Manuel Carrasco Monino\"}],\"excerpt\":\"This plugin allows you to capture code coverage report from <a href='http://emma.sf.net/'>Emma<\\/a>. Jenkins will generate the trend report of coverage. \",\"gav\":\"org.jenkins-ci.plugins:emma:1.29\",\"labels\":[\"report\"],\"name\":\"emma\",\"previousTimestamp\":\"2012-05-22T02:42:12.00Z\",\"previousVersion\":\"1.28\",\"releaseTimestamp\":\"2012-07-05T19:49:52.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"hia/Z09EJoxlfEOqQ3mi1QAVuo0=\",\"title\":\"Emma Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/emma/1.29/emma.hpi\",\"version\":\"1.29\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Emma+Plugin\"},\"emmacoveragecolumn\":{\"buildDate\":\"Oct 10, 2011\",\"dependencies\":[{\"name\":\"emma\",\"optional\":false,\"version\":\"1.25\"}],\"developers\":[{\"developerId\":\"danebert\",\"email\":\"mathin@mathin.com\",\"name\":\"Dan Ebert\"}],\"excerpt\":\"Allows you to add a column that displays line coverage percentages based on EMMA.\",\"gav\":\"org.jenkins-ci.plugins:emmacoveragecolumn:0.0.4\",\"labels\":[\"listview-column\"],\"name\":\"emmacoveragecolumn\",\"previousTimestamp\":\"2011-10-07T20:51:46.00Z\",\"previousVersion\":\"0.0.3\",\"releaseTimestamp\":\"2011-10-10T17:39:24.00Z\",\"requiredCore\":\"1.434\",\"scm\":\"github.com\",\"sha1\":\"2fbw7e2SKaDM3AwyM+vqQ9Vczmc=\",\"title\":\"Emma Coverage Column\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/emmacoveragecolumn/0.0.4/emmacoveragecolumn.hpi\",\"version\":\"0.0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Emma+Coverage+Column\"},\"emotional-hudson\":{\"buildDate\":\"Nov 19, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"masanobuimai\",\"name\":\"Masanobu Imai\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"This funny plugin changes the expression of Mr. Hudson in the background when your builds fail.\",\"gav\":\"org.jvnet.hudson.plugins:emotional-hudson:1.3\",\"labels\":[\"ui\"],\"name\":\"emotional-hudson\",\"previousTimestamp\":\"2010-04-16T20:32:40.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-11-20T01:45:42.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"S9yHTNQquKBhEhCV20aSa8piIX8=\",\"title\":\"Emotional Hudson Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/emotional-hudson/1.3/emotional-hudson.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Emotional+Hudson+Plugin\"},\"emotional-jenkins-plugin\":{\"buildDate\":\"Aug 06, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"masanobuimai\",\"name\":\"Masanobu Imai\"}],\"excerpt\":\"This funny plugin changes the expression of Mr. Jenkins in the background when your builds fail.\",\"gav\":\"org.jenkins-ci.plugins:emotional-jenkins-plugin:1.1\",\"labels\":[\"ui\"],\"name\":\"emotional-jenkins-plugin\",\"releaseTimestamp\":\"2011-08-07T02:30:52.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"LsLBtxsOKA0RF/XA1m/alYBDkjg=\",\"title\":\"Emotional Jenkins Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/emotional-jenkins-plugin/1.1/emotional-jenkins-plugin.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Emotional+Jenkins+Plugin\"},\"envfile\":{\"buildDate\":\"Aug 05, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ajoajoajo\",\"email\":\"ajoajoajo@gmail.com\",\"name\":\"Anders Johansson\"}],\"excerpt\":\"This plugin enables you to set environment variables via a file. The file's format must be the standard <a href='http://en.wikipedia.org/wiki/.properties'>Java property file format<\\/a>.  Superseded by the [EnvInject Plugin]?  The property file is always retrieved from the file system of the Jenkins master node, even in distributed setups with slave nodes.  You can reference already defined environment variables both to specify the path to the property file, in a job's configuration, and in property values, in the property file.\",\"gav\":\"org.jenkins-ci.plugins:envfile:1.2\",\"labels\":[\"buildwrapper\",\"envfile\"],\"name\":\"envfile\",\"previousTimestamp\":\"2010-10-20T14:59:24.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2011-08-05T19:16:30.00Z\",\"requiredCore\":\"1.403\",\"scm\":\"github.com\",\"sha1\":\"4sV96798yzxtkfoYEiW6EdEYqgg=\",\"title\":\"Envfile Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/envfile/1.2/envfile.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Envfile+Plugin\"},\"envinject\":{\"buildDate\":\"Dec 28, 2012\",\"dependencies\":[{\"name\":\"ivy\",\"optional\":true,\"version\":\"1.21\"},{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.444\"}],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gregory.boissinot@gmail.com\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin makes it possible to have an isolated environment for your jobs.\",\"gav\":\"org.jenkins-ci.plugins:envinject:1.78\",\"labels\":[\"buildwrapper\",\"builder\"],\"name\":\"envinject\",\"previousTimestamp\":\"2012-12-28T00:43:44.00Z\",\"previousVersion\":\"1.77\",\"releaseTimestamp\":\"2012-12-29T01:05:50.00Z\",\"requiredCore\":\"1.444\",\"scm\":\"github.com\",\"sha1\":\"gsUlmEQYWxno3VdNmbkADfC42CY=\",\"title\":\"EnvInject Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/envinject/1.78/envinject.hpi\",\"version\":\"1.78\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/EnvInject+Plugin\"},\"environment-script\":{\"buildDate\":\"Aug 09, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jorgenpt\",\"email\":\"jorgen.tjerno@mylookout.com\",\"name\":\"Jørgen P. Tjernø\"}],\"excerpt\":\"Allows you to run a script before each build that generates environment variables for it.\",\"gav\":\"com.lookout.jenkins:environment-script:1.1.2\",\"labels\":[\"buildwrapper\"],\"name\":\"environment-script\",\"previousTimestamp\":\"2012-08-09T01:13:00.00Z\",\"previousVersion\":\"1.1.1\",\"releaseTimestamp\":\"2012-08-09T16:03:36.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"Ybq+a0eRvgo+pGq0rsZz/LSrLws=\",\"title\":\"Environment Script Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/environment-script/1.1.2/environment-script.hpi\",\"version\":\"1.1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Environment+Script+Plugin\"},\"escaped-markup-plugin\":{\"buildDate\":\"Apr 23, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ssogabe\",\"email\":\"s.sogabe@gmail.com\",\"name\":\"Seiji Sogabe\"}],\"excerpt\":\"This plugin escapes the description of project, user, view, and build to prevent from XSS. \",\"gav\":\"org.jenkins-ci.plugins:escaped-markup-plugin:0.1\",\"labels\":[\"ui\"],\"name\":\"escaped-markup-plugin\",\"releaseTimestamp\":\"2011-04-23T14:16:40.00Z\",\"requiredCore\":\"1.408\",\"scm\":\"github.com\",\"sha1\":\"+Ze69qQ2ZCZjQbsYAmz0VQh08Co=\",\"title\":\"Escaped Markup Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/escaped-markup-plugin/0.1/escaped-markup-plugin.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Escaped+Markup+Plugin\"},\"excludeMatrixParent\":{\"buildDate\":\"Jun 08, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vjuranek\",\"name\":\"Vojtech Juranek\"}],\"excerpt\":\"This plugin exclude flyweight task to be run on given slave.&nbsp;\",\"gav\":\"hudson.plugins.excludeMatrixParent:excludeMatrixParent:1.1\",\"labels\":[\"slaves\"],\"name\":\"excludeMatrixParent\",\"previousTimestamp\":\"2011-02-10T19:23:42.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-06-08T14:23:24.00Z\",\"requiredCore\":\"1.391\",\"scm\":\"github.com\",\"sha1\":\"oW8+KSu5GgLQQReeFCMUzdEfKHQ=\",\"title\":\"Exclude flyweight tasks\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/excludeMatrixParent/1.1/excludeMatrixParent.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Exclude+flyweight+tasks\"},\"exclusive-execution\":{\"buildDate\":\"Jul 31, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mambu\",\"email\":\"marco.ambu+jenkins@gmail.com\",\"name\":\"Marco Ambu\"},{\"developerId\":\"sata_\",\"email\":\"sam@tavakoli.se\",\"name\":\"Sam Tavakoli\"}],\"excerpt\":\"Allows a job to be executed when no other jobs are running.\",\"gav\":\"org.jenkins-ci.plugins:exclusive-execution:0.7\",\"labels\":[\"buildwrapper\"],\"name\":\"exclusive-execution\",\"previousTimestamp\":\"2011-02-25T22:27:36.00Z\",\"previousVersion\":\"0.6\",\"releaseTimestamp\":\"2011-07-31T19:37:56.00Z\",\"requiredCore\":\"1.420\",\"scm\":\"github.com\",\"sha1\":\"i11F5+JFot2crUuXylOt8lqfhBw=\",\"title\":\"Exclusive Execution Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/exclusive-execution/0.7/exclusive-execution.hpi\",\"version\":\"0.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Exclusive+Execution+Plugin\"},\"extended-choice-parameter\":{\"buildDate\":\"Jan 07, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vimil\",\"name\":\"Vimil Saju\"}],\"excerpt\":\"Adds extended functionality to Choice parameter.\",\"gav\":\"org.jenkins-ci.plugins:extended-choice-parameter:0.20\",\"labels\":[\"parameter\"],\"name\":\"extended-choice-parameter\",\"previousTimestamp\":\"2013-01-08T03:01:02.00Z\",\"previousVersion\":\"0.19\",\"releaseTimestamp\":\"2013-01-08T03:29:00.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"YdihF/CWtKA1KtHpsdXIvxdgUIc=\",\"title\":\"Extended Choice Parameter plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/extended-choice-parameter/0.20/extended-choice-parameter.hpi\",\"version\":\"0.20\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Extended+Choice+Parameter+plugin\"},\"extended-read-permission\":{\"buildDate\":\"Oct 05, 2009\",\"dependencies\":[],\"developers\":[{\"developerId\":\"dty\",\"name\":\"Dean Yu\"}],\"excerpt\":\"This plugin enables the Extended Read permission in Hudson 1.324 and newer.  \",\"gav\":\"org.jvnet.hudson.plugins:extended-read-permission:1.0\",\"labels\":[\"user\"],\"name\":\"extended-read-permission\",\"releaseTimestamp\":\"2009-10-05T20:45:22.00Z\",\"requiredCore\":\"1.324\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"8HrQOxL0G4XTY9YkLXnutPCnyYs=\",\"title\":\"Extended Read Permission Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/extended-read-permission/1.0/extended-read-permission.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Extended+Read+Permission+Plugin\"},\"extensible-choice-parameter\":{\"buildDate\":\"Jan 06, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ikedam\",\"name\":\"IKEDA Yasuyuki\"}],\"excerpt\":\"This plugin adds \\\"Extensible Choice\\\" as a build parameter.\",\"gav\":\"jp.ikedam.jenkins.plugins:extensible-choice-parameter:1.0.0\",\"labels\":[\"parameter\"],\"name\":\"extensible-choice-parameter\",\"releaseTimestamp\":\"2013-01-06T23:09:12.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"lf002AE9c2qxF5a+vmWX2oqGwqs=\",\"title\":\"Extensible Choice Parameter plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/extensible-choice-parameter/1.0.0/extensible-choice-parameter.hpi\",\"version\":\"1.0.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Extensible+Choice+Parameter+plugin\"},\"extension-filter\":{\"buildDate\":\"Oct 25, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ndeloof\",\"email\":\"nicolas.deloof@gmail.com\",\"name\":\"Nicolas De Loof\"}],\"excerpt\":\"This plugin allows to filter features available on a Jenkins instance by disabling some Extensions/Descriptors. \",\"gav\":\"org.jenkins-ci.plugins:extension-filter:1.0\",\"labels\":[],\"name\":\"extension-filter\",\"releaseTimestamp\":\"2012-10-25T18:26:18.00Z\",\"requiredCore\":\"1.472\",\"scm\":\"github.com\",\"sha1\":\"LddTtmowN9YDTbf8Cr6v9r+IAss=\",\"title\":\"Extension Filter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/extension-filter/1.0/extension-filter.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Extension+Filter+Plugin\"},\"external-monitor-job\":{\"buildDate\":\"Aug 06, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jglick\"}],\"excerpt\":\"Adds the ability to monitor the result of externally executed jobs.\",\"gav\":\"org.jenkins-ci.plugins:external-monitor-job:1.1\",\"labels\":[\"misc\",\"external\"],\"name\":\"external-monitor-job\",\"previousTimestamp\":\"2012-06-06T01:04:10.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-08-07T00:54:36.00Z\",\"requiredCore\":\"1.468\",\"scm\":\"github.com\",\"sha1\":\"k0RSxsS9r5EgOH5Qc7d6wUPPKy0=\",\"title\":\"Monitoring external jobs\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/external-monitor-job/1.1/external-monitor-job.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Monitoring+external+jobs\"},\"externalresource-dispatcher\":{\"buildDate\":\"Nov 22, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424\"},{\"name\":\"metadata\",\"optional\":false,\"version\":\"1.0b\"}],\"developers\":[{\"developerId\":\"rsandell\",\"email\":\"robert.sandell@sonymobile.com\",\"name\":\"Robert Sandell\"},{\"developerId\":\"t_westling\",\"email\":\"tomas.westling@sonymobile.com\",\"name\":\"Tomas Westling\"}],\"excerpt\":\"This plugin adds support for external resources in Jenkins. An external resource is something external attached to a Jenkins slave and can be locked by a build, which thus gets exclusive access to it, then released after the build is done. Examples of external resources are phones, printers and USB christmas trees. \",\"gav\":\"com.sonyericsson.jenkins.plugins.externalresource:externalresource-dispatcher:1.0b\",\"labels\":[\"slaves\",\"cli\",\"android\"],\"name\":\"externalresource-dispatcher\",\"releaseTimestamp\":\"2012-11-22T22:21:32.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"CFtzp803WnPc9vVSmrooKp02/+E=\",\"title\":\"External Resource Dispatcher\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/externalresource-dispatcher/1.0b/externalresource-dispatcher.hpi\",\"version\":\"1.0b\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/External+Resource+Dispatcher\"},\"extra-columns\":{\"buildDate\":\"Oct 17, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"fredg\",\"name\":\"Fred G.\"}],\"excerpt\":\"This is a general listview-column plugin that currently contains the following columns: Test Result, Configure Project button, Disable/Enable Project button, Project Description, Build Description, SCM Type.\",\"gav\":\"org.jenkins-ci.plugins:extra-columns:1.6\",\"labels\":[\"listview-column\"],\"name\":\"extra-columns\",\"previousTimestamp\":\"2012-06-27T06:07:54.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2012-10-17T05:00:50.00Z\",\"requiredCore\":\"1.417\",\"scm\":\"github.com\",\"sha1\":\"bLCn+Jad3UTA15hlDRotB/crBsE=\",\"title\":\"Extra Columns Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/extra-columns/1.6/extra-columns.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Extra+Columns+Plugin\"},\"ezwall\":{\"buildDate\":\"Feb 26, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"noirbizarre\",\"email\":\"noirbizarre+jenkins@gmail.com\",\"name\":\"Axel Haustant\"}],\"excerpt\":\"Add a button to display a fullscreen buildwall on each view.\",\"gav\":\"org.jenkins-ci.plugins:ezwall:0.2\",\"labels\":[\"ui\",\"report\"],\"name\":\"ezwall\",\"previousTimestamp\":\"2012-02-18T23:24:18.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2012-02-26T10:30:24.00Z\",\"requiredCore\":\"1.440\",\"scm\":\"github.com\",\"sha1\":\"j+3oXCLJOQlDKbX8znqAZ6QUlzg=\",\"title\":\"EzWall Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ezwall/0.2/ezwall.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/EzWall+Plugin\"},\"fail-the-build-plugin\":{\"buildDate\":\"Jul 18, 2011\",\"compatibleSinceVersion\":\"0.3\",\"dependencies\":[],\"developers\":[{\"developerId\":\"bap\",\"email\":\"bap-jenkins@BapIT.co.uk\",\"name\":\"Bap\"}],\"excerpt\":\"Set or change the build result to test job configurations - notifiers, publishers, promotions, build pipelines, etc. \",\"gav\":\"org.jenkins-ci.plugins:fail-the-build-plugin:1.0\",\"labels\":[\"builder\"],\"name\":\"fail-the-build-plugin\",\"releaseTimestamp\":\"2011-07-18T23:19:24.00Z\",\"requiredCore\":\"1.396\",\"scm\":\"github.com\",\"sha1\":\"0MU2dYZlY2ppCyoz+CYlAFiJ5mE=\",\"title\":\"Fail The Build Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/fail-the-build-plugin/1.0/fail-the-build-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Fail+The+Build+Plugin\"},\"favorite\":{\"buildDate\":\"Sep 11, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"lshatzer\",\"email\":\"larrys@gmail.com\",\"name\":\"Larry Shatzer, Jr.\"}],\"excerpt\":\"This plugin allows you to mark a job a favorite.\",\"gav\":\"org.jvnet.hudson.plugins:favorite:1.13\",\"labels\":[\"user\",\"misc\",\"ui\",\"listview-column\"],\"name\":\"favorite\",\"previousTimestamp\":\"2012-09-10T15:25:06.00Z\",\"previousVersion\":\"1.12\",\"releaseTimestamp\":\"2012-09-11T12:22:14.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"iUEzpnHrgQPBcrpsWhtrWB9c72g=\",\"title\":\"Favorite Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/favorite/1.13/favorite.hpi\",\"version\":\"1.13\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Favorite+Plugin\"},\"favorite-view\":{\"buildDate\":\"Feb 07, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tom\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:favorite-view:1.0\",\"labels\":[\"ui\"],\"name\":\"favorite-view\",\"releaseTimestamp\":\"2012-02-08T00:16:38.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"lWM1FpD9J93rASFcHQIaoI8yKnc=\",\"title\":\"Favorite View Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/favorite-view/1.0/favorite-view.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Favorite+View+Plugin\"},\"file-leak-detector\":{\"buildDate\":\"Apr 03, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"Runtime diagnosis tool for \\\"too many open files\\\" problem.\",\"gav\":\"com.cloudbees.jenkins.plugins:file-leak-detector:1.2\",\"labels\":[\"misc\"],\"name\":\"file-leak-detector\",\"previousTimestamp\":\"2012-04-03T14:51:56.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-04-03T16:53:24.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"luVIulwtAULMdmHMROgD1z4Eozk=\",\"title\":\"File Leak Detector Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/file-leak-detector/1.2/file-leak-detector.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/File+Leak+Detector+Plugin\"},\"files-found-trigger\":{\"buildDate\":\"Aug 17, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stevengbrown\",\"email\":\"StevenGBrown@gmail.com\",\"name\":\"Steven Brown\"}],\"excerpt\":\"Build trigger that polls one or more directories and starts a build if certain files are found within those directories. \",\"gav\":\"org.jenkins-ci.plugins:files-found-trigger:1.3\",\"labels\":[\"trigger\"],\"name\":\"files-found-trigger\",\"previousTimestamp\":\"2011-03-07T01:52:44.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-08-18T02:38:22.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"odoxgB/WNvTAsxzx25GDiKlCDS0=\",\"title\":\"Files Found Trigger\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/files-found-trigger/1.3/files-found-trigger.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Files+Found+Trigger\"},\"filesystem_scm\":{\"buildDate\":\"Dec 05, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"samngms\",\"email\":\"samngms@yahoo.com\",\"name\":\"Sam NG\"},{\"developerId\":\"kutzi\",\"email\":\"kutzi@gmx.de\",\"name\":\"Christoph Kutzinski\"}],\"excerpt\":\"Use File System as SCM.\",\"gav\":\"hudson.plugins.filesystem_scm:filesystem_scm:1.20\",\"labels\":[\"scm\"],\"name\":\"filesystem_scm\",\"previousTimestamp\":\"2011-04-02T16:14:38.00Z\",\"previousVersion\":\"1.10\",\"releaseTimestamp\":\"2011-12-06T00:49:42.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"cOAR5kIPaGDd6prDZ8DBFCY9zzA=\",\"title\":\"File System SCM\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/filesystem_scm/1.20/filesystem_scm.hpi\",\"version\":\"1.20\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/File+System+SCM\"},\"findbugs\":{\"buildDate\":\"Oct 05, 2012\",\"dependencies\":[{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.2\"},{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"},{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.48\"},{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.409\"}],\"developers\":[{\"developerId\":\"drulli\",\"email\":\"ullrich.hafner@gmail.com\",\"name\":\"Ulli Hafner\"}],\"excerpt\":\"This plugin generates the trend report for <a href='http://findbugs.sourceforge.net/'>FindBugs<\\/a>, an open source program which uses static analysis to  look for bugs in Java code.&nbsp; \",\"gav\":\"org.jvnet.hudson.plugins:findbugs:4.45\",\"labels\":[\"maven\",\"report\"],\"name\":\"findbugs\",\"previousTimestamp\":\"2012-09-04T15:09:10.00Z\",\"previousVersion\":\"4.44\",\"releaseTimestamp\":\"2012-10-05T15:55:50.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"2eXdJciGAFQeuL49+hmmdsXmrnk=\",\"title\":\"FindBugs Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/findbugs/4.45/findbugs.hpi\",\"version\":\"4.45\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/FindBugs+Plugin\"},\"fitnesse\":{\"buildDate\":\"Dec 10, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"prime8\",\"email\":\"tim bacon @at@ gmail dotcom\",\"name\":\"timbacon\"}],\"excerpt\":\"This plugin can be used to both execute and report on <a href='http://fitnesse.org'>Fitnesse<\\/a> tests so that they can be integrated into a Jenkins build.\",\"gav\":\"org.jenkins-ci.plugins:fitnesse:1.8\",\"labels\":[\"report\",\"builder\"],\"name\":\"fitnesse\",\"previousTimestamp\":\"2012-05-18T18:15:20.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2012-12-10T05:13:18.00Z\",\"requiredCore\":\"1.401\",\"scm\":\"github.com\",\"sha1\":\"zxwJRSrQjbe//gcL1CD30ps39k8=\",\"title\":\"Fitnesse Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/fitnesse/1.8/fitnesse.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Fitnesse+Plugin\"},\"flashlog-plugin\":{\"buildDate\":\"Jan 06, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ddragosd\",\"email\":\"ddragosd@gmail.com\",\"name\":\"Dragos Dascalita Haut\"}],\"excerpt\":\"Captures Adobe Flash Player logs during a Hudson build in order to save them as build artifacts. Useful to debug unit tests or integration tests.\",\"gav\":\"org.jvnet.hudson.plugins:flashlog-plugin:1.0\",\"labels\":[\"report\"],\"name\":\"flashlog-plugin\",\"releaseTimestamp\":\"2011-01-06T17:07:52.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"F4KFOvCOMEx+gNvZ1hb0UY5aBas=\",\"title\":\"FlashLog Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/flashlog-plugin/1.0/flashlog-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/FlashLog+Plugin\"},\"flexible-publish\":{\"buildDate\":\"Jul 03, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"},{\"name\":\"run-condition\",\"optional\":false,\"version\":\"0.7\"}],\"developers\":[{\"developerId\":\"bap\",\"email\":\"bap-jenkins@BapIT.co.uk\",\"name\":\"Bap\"}],\"excerpt\":\"Use a publisher more than once. Select the execution order of the publishers. Use <a href='Run Condition Plugin'>run conditions<\\/a> to decide whether a publisher should be run. \",\"gav\":\"org.jenkins-ci.plugins:flexible-publish:0.10\",\"labels\":[\"post-build\"],\"name\":\"flexible-publish\",\"previousTimestamp\":\"2012-02-15T02:09:28.00Z\",\"previousVersion\":\"0.9\",\"releaseTimestamp\":\"2012-07-04T01:06:14.00Z\",\"requiredCore\":\"1.408\",\"scm\":\"github.com\",\"sha1\":\"rdRaAiqUyPltuga3zuYtbwPn2VI=\",\"title\":\"Flexible Publish Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/flexible-publish/0.10/flexible-publish.hpi\",\"version\":\"0.10\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Flexible+Publish+Plugin\"},\"flexteam\":{\"buildDate\":\"Nov 03, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mindless\",\"email\":\"alan.harder@gmail.com\",\"name\":\"Alan Harder\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"\",\"gav\":\"org.jvnet.hudson.plugins:flexteam:1.1\",\"name\":\"flexteam\",\"releaseTimestamp\":\"2011-11-03T18:58:46.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"C9cBIUV6zcpcsSPLFg0lXbzEebc=\",\"title\":\"FlexTeam Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/flexteam/1.1/flexteam.hpi\",\"version\":\"1.1\"},\"fogbugz\":{\"buildDate\":\"Jan 19, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"pliljenberg\",\"email\":\"pliljenberg@gmail.com\",\"name\":\"Peter Liljenberg\"}],\"excerpt\":\"This plugin integrates&nbsp;<a href='http://www.fogcreek.com/fogbugz/'>FogBugz<\\/a>&nbsp;with Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:fogbugz:1.0\",\"labels\":[\"external\",\"scm-related\",\"misc\"],\"name\":\"fogbugz\",\"releaseTimestamp\":\"2012-01-20T03:44:04.00Z\",\"requiredCore\":\"1.448\",\"scm\":\"github.com\",\"sha1\":\"JLWW5ABU0MrJSAaMmCLfZGJH3GQ=\",\"title\":\"Fogbugz Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/fogbugz/1.0/fogbugz.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Fogbugz+Plugin\"},\"form-element-path\":{\"buildDate\":\"Jun 22, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin adds distinctive {{path}} attributes to every form elements inside Jenkins so that automated test programs like Selenium can be used more effectively to automate/test Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:form-element-path:1.0\",\"labels\":[],\"name\":\"form-element-path\",\"releaseTimestamp\":\"2012-06-22T19:15:06.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"Gno1/5hlwdUg2MB7rKBNLtzPDHI=\",\"title\":\"Form Element Path Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/form-element-path/1.0/form-element-path.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Form+Element+Path+Plugin\"},\"fortify360\":{\"buildDate\":\"Nov 28, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"samn\"}],\"excerpt\":\"Fortify 360 FPR post-processing and uploading to Fortify 360 Server\",\"gav\":\"org.jvnet.hudson.plugins.fortify360:fortify360:3.6\",\"labels\":[\"report\",\"external\"],\"name\":\"fortify360\",\"previousTimestamp\":\"2012-05-26T20:03:40.00Z\",\"previousVersion\":\"2.4\",\"releaseTimestamp\":\"2012-11-28T22:48:04.00Z\",\"requiredCore\":\"1.323\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"D/HQHma4CqrQl1DaLefW8BCwCts=\",\"title\":\"Fortify 360 Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/fortify360/3.6/fortify360.hpi\",\"version\":\"3.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Fortify+360+Plugin\"},\"fstrigger\":{\"buildDate\":\"Aug 03, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gregory.boissinot@gmail.com\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"FSTrigger provides polling mechanisms to monitor a file system and trigger a build if a file or a set of files have changed.\",\"gav\":\"org.jenkins-ci.plugins:fstrigger:0.34\",\"labels\":[\"trigger\"],\"name\":\"fstrigger\",\"previousTimestamp\":\"2012-06-22T02:45:40.00Z\",\"previousVersion\":\"0.33\",\"releaseTimestamp\":\"2012-08-03T18:01:34.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"t/swQpTgfMZqxg+WtJFVDSr6vnM=\",\"title\":\"FSTrigger Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/fstrigger/0.34/fstrigger.hpi\",\"version\":\"0.34\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/FSTrigger+Plugin\"},\"ftppublisher\":{\"buildDate\":\"Jul 13, 2011\",\"compatibleSinceVersion\":\"1.0\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jacob\"}],\"excerpt\":\"This plugin can be used to upload project artifacts and whole directories to an ftp server.\",\"gav\":\"org.jvnet.hudson.plugins:ftppublisher:1.2\",\"labels\":[\"upload\"],\"name\":\"ftppublisher\",\"previousTimestamp\":\"2011-07-05T22:52:08.00Z\",\"previousVersion\":\"1.1.4\",\"releaseTimestamp\":\"2011-07-13T22:45:12.00Z\",\"requiredCore\":\"1.349\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"zDbyUSuiDuAkPwYLMkBlPITrAnc=\",\"title\":\"FTP-Publisher Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ftppublisher/1.2/ftppublisher.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/FTP-Publisher+Plugin\"},\"gallio\":{\"buildDate\":\"Oct 12, 2011\",\"dependencies\":[{\"name\":\"xunit\",\"optional\":false,\"version\":\"1.23\"}],\"developers\":[{\"developerId\":\"pmiossec\",\"name\":\"Philippe Miossec\"},{\"developerId\":\"gbois\",\"email\":\"gbois@dev.java.net\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin makes it possible to publish <a href='http://www.gallio.org/'>Gallio<\\/a>/<a href='http://www.mbunit.com/'>MbUnit<\\/a> test results\",\"gav\":\"org.jenkins-ci.plugins:gallio:1.6\",\"labels\":[\"report\"],\"name\":\"gallio\",\"previousTimestamp\":\"2011-05-16T03:29:18.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2011-10-13T03:53:08.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"1MYwLJ/ydWFpVJ9SqS8Tz4lq4oY=\",\"title\":\"Gallio Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/gallio/1.6/gallio.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Gallio+Plugin\"},\"gant\":{\"buildDate\":\"Jan 29, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin allows Hudson to invoke <a href='http://groovy.codehaus.org/Gant'>Gant<\\/a> build script as the main build step.\",\"gav\":\"org.jvnet.hudson.plugins:gant:1.2\",\"labels\":[\"builder\"],\"name\":\"gant\",\"previousTimestamp\":\"2008-07-07T22:44:12.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2010-01-30T02:34:50.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"EbRJgnSdzfxWxHLmm3puSM6fXRU=\",\"title\":\"Gant Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/gant/1.2/gant.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Gant+Plugin\"},\"gatling\":{\"buildDate\":\"Dec 20, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"slandelle@excilys.com\",\"name\":\"Stephane Landelle\"},{\"developerId\":\"pdalpra\",\"email\":\"pdalpra@excilys.com\",\"name\":\"Pierre Dal-Pra\"},{\"developerId\":\"blemale@excilys.com>\",\"name\":\"Bastien Lemale\"},{\"developerId\":\"gcoutant@excilys.com>\",\"name\":\"Grégory Coutant\"}],\"excerpt\":\"This plugin integrates <a href='http://gatling-tool.org'>Gatling<\\/a>, an Open Source stress tool, with Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:gatling:1.0.0\",\"labels\":[\"external\",\"report\"],\"name\":\"gatling\",\"releaseTimestamp\":\"2012-12-20T20:52:10.00Z\",\"requiredCore\":\"1.494\",\"scm\":\"github.com\",\"sha1\":\"buE7nBbuynkF3mTldW0/l4QFtP0=\",\"title\":\"Gatling Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/gatling/1.0.0/gatling.hpi\",\"version\":\"1.0.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Gatling+Plugin\"},\"gcal\":{\"buildDate\":\"Nov 04, 2011\",\"dependencies\":[],\"developers\":[{\"name\":\"Arnaud Lacour\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"This plugin publishes build records over to <a href='http://www.google.com/calendar/'>Google Calendar<\\/a>\",\"gav\":\"org.jvnet.hudson.plugins:gcal:0.4\",\"labels\":[\"external\",\"notifier\"],\"name\":\"gcal\",\"previousTimestamp\":\"2009-12-29T00:04:52.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2011-11-04T16:29:46.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"pV42CD4Q5IHFVcG6t7TbEmyTREE=\",\"title\":\"Google Calendar Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/gcal/0.4/gcal.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Google+Calendar+Plugin\"},\"gcm-notification\":{\"buildDate\":\"Nov 20, 2012\",\"dependencies\":[{\"name\":\"instant-messaging\",\"optional\":false,\"version\":\"1.23\"},{\"name\":\"analysis-core\",\"optional\":true,\"version\":\"1.0\"},{\"name\":\"jquery\",\"optional\":false,\"version\":\"1.7.2-1\"},{\"name\":\"ci-game\",\"optional\":true,\"version\":\"1.16\"}],\"developers\":[{\"developerId\":\"orrc\",\"email\":\"chris@orr.me.uk\",\"name\":\"Christopher Orr\"}],\"excerpt\":\"Sends build notifications to Android devices using the Google Cloud Messaging service.\",\"gav\":\"org.jenkins-ci.plugins:gcm-notification:1.0\",\"labels\":[\"notifier\",\"android\"],\"name\":\"gcm-notification\",\"releaseTimestamp\":\"2012-11-20T06:43:02.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"a9ppScyuzXAzq+KfKuu4zFk1pmY=\",\"title\":\"GCM Notification Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/gcm-notification/1.0/gcm-notification.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/GCM+Notification+Plugin\"},\"gerrit\":{\"buildDate\":\"Oct 20, 2010\",\"dependencies\":[{\"name\":\"git\",\"optional\":false,\"version\":\"1.0\"}],\"developers\":[{\"developerId\":\"jyrkiput\",\"name\":\"Jyrki Puttonen\"}],\"excerpt\":\"This plugin integrates <a href='http://gerrit.googlecode.com/'>Gerrit Code Review<\\/a> to Jenkins.\",\"gav\":\"org.jvnet.hudson.plugins:gerrit:0.7\",\"labels\":[\"post-build\",\"external\"],\"name\":\"gerrit\",\"previousTimestamp\":\"2010-08-22T19:23:24.00Z\",\"previousVersion\":\"0.6\",\"releaseTimestamp\":\"2010-10-21T00:36:50.00Z\",\"requiredCore\":\"1.362\",\"scm\":\"github.com\",\"sha1\":\"pvDZ2nwas9MxwnshQBR3JFaGYbU=\",\"title\":\"Gerrit Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/gerrit/0.7/gerrit.hpi\",\"version\":\"0.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Gerrit+Plugin\"},\"gerrit-trigger\":{\"buildDate\":\"Dec 05, 2012\",\"dependencies\":[{\"name\":\"rebuild\",\"optional\":true,\"version\":\"1.1\"},{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.10\"}],\"developers\":[{\"developerId\":\"rsandell\",\"email\":\"robert.sandell@sonymobile.com\",\"name\":\"Robert Sandell\"},{\"developerId\":\"twestling\",\"email\":\"tomas.westling@sonymobile.com\",\"name\":\"Tomas Westling\"}],\"excerpt\":\"This plugin integrates Jenkins to <a href='http://code.google.com/p/gerrit/'>Gerrit<\\/a> code review for triggering builds when a \\\"patch set\\\" is created. \\\\\\\\  \",\"gav\":\"com.sonyericsson.hudson.plugins.gerrit:gerrit-trigger:2.7.0\",\"labels\":[\"trigger\"],\"name\":\"gerrit-trigger\",\"previousTimestamp\":\"2012-09-19T18:29:34.00Z\",\"previousVersion\":\"2.6.0\",\"releaseTimestamp\":\"2012-12-05T18:06:32.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"l3DEqfrC4B+nVJPlosa4v3tQI6Y=\",\"title\":\"Gerrit Trigger\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/gerrit-trigger/2.7.0/gerrit-trigger.hpi\",\"version\":\"2.7.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Gerrit+Trigger\"},\"ghprb\":{\"buildDate\":\"Nov 14, 2012\",\"dependencies\":[{\"name\":\"github-api\",\"optional\":false,\"version\":\"1.28\"},{\"name\":\"github\",\"optional\":false,\"version\":\"1.4\"},{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.17\"}],\"developers\":[{\"developerId\":\"janinko\",\"email\":\"jbrazdil@redhat.com\",\"name\":\"Honza Brázdil\"}],\"excerpt\":\"This plugin builds pull requests in github and report results.\",\"gav\":\"org.jenkins-ci.plugins:ghprb:1.4\",\"labels\":[\"trigger\"],\"name\":\"ghprb\",\"previousTimestamp\":\"2012-10-22T20:11:08.00Z\",\"previousVersion\":\"1.3.2\",\"releaseTimestamp\":\"2012-11-14T21:54:22.00Z\",\"requiredCore\":\"1.476\",\"scm\":\"github.com\",\"sha1\":\"diNeo5WnPmbiE/IWlvkhJKpfv88=\",\"title\":\"GitHub pull request builder plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ghprb/1.4/ghprb.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/GitHub+pull+request+builder+plugin\"},\"girls\":{\"buildDate\":\"Apr 27, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jessicayk\",\"name\":\"Jessica Yoshie Kussuda\"}],\"excerpt\":\"Like [ChuckNorris Plugin] but with different pictures. Answering to requests and for study a little how the plugins work. \",\"gav\":\"org.jvnet.hudson.plugins:girls:1.0.0\",\"labels\":[\"ui\"],\"name\":\"girls\",\"releaseTimestamp\":\"2010-04-28T00:30:10.00Z\",\"requiredCore\":\"1.353\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"H8+WlqVQ5rW/9hvYjhJ0k09Ljt0=\",\"title\":\"Girls Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/girls/1.0.0/girls.hpi\",\"version\":\"1.0.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Girls+Plugin\"},\"git\":{\"buildDate\":\"Nov 13, 2012\",\"dependencies\":[{\"name\":\"multiple-scms\",\"optional\":true,\"version\":\"0.2\"},{\"name\":\"parameterized-trigger\",\"optional\":true,\"version\":\"2.4\"},{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"ndeloof\",\"email\":\"nicolas.deloof@gmail.com\",\"name\":\"Nicolas De Loof\"}],\"excerpt\":\"This plugin allows use of <a href='http://git-scm.com/'>Git<\\/a> as a build SCM. Git 1.3.3 or newer is required.\",\"gav\":\"org.jenkinsci.plugins:git:1.1.26\",\"labels\":[\"scm\"],\"name\":\"git\",\"previousTimestamp\":\"2012-10-13T15:04:36.00Z\",\"previousVersion\":\"1.1.25\",\"releaseTimestamp\":\"2012-11-14T03:01:00.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"2OWVf1qWIur+xLVlqvTBy5xgT3s=\",\"title\":\"Git Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/git/1.1.26/git.hpi\",\"version\":\"1.1.26\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Git+Plugin\"},\"git-notes\":{\"buildDate\":\"Apr 23, 2012\",\"dependencies\":[{\"name\":\"ruby-runtime\",\"optional\":false,\"version\":\"0.10\"}],\"developers\":[{\"developerId\":\"bright\"}],\"excerpt\":\"Add git-notes with Jenkins build status!\",\"gav\":\"org.jenkins-ci.ruby-plugins:git-notes:0.0.4\",\"labels\":[],\"name\":\"git-notes\",\"previousTimestamp\":\"2012-03-30T20:25:34.00Z\",\"previousVersion\":\"0.0.2\",\"releaseTimestamp\":\"2012-04-23T20:57:58.00Z\",\"requiredCore\":\"1.432\",\"scm\":\"github.com\",\"sha1\":\"zijNvkz/zrmJOIzFraSJX2Q31zg=\",\"title\":\"git-notes Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/git-notes/0.0.4/git-notes.hpi\",\"version\":\"0.0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/git-notes+Plugin\"},\"git-parameter\":{\"buildDate\":\"Feb 21, 2012\",\"dependencies\":[{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.15\"}],\"developers\":[{\"developerId\":\"lukanus\",\"name\":\"Łukasz Miłkowski\"}],\"excerpt\":\"This plugin allows you to choose between Git tags or sha1 of your SCM repository so Git Plugin installed is required.\",\"gav\":\"org.jenkins-ci.plugins:git-parameter:0.2\",\"labels\":[\"scm-related\",\"parameter\"],\"name\":\"git-parameter\",\"previousTimestamp\":\"2011-11-01T03:12:24.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2012-02-21T09:03:44.00Z\",\"requiredCore\":\"1.451\",\"scm\":\"github.com\",\"sha1\":\"1nO8G+BvV28LI0b8711WocE7af4=\",\"title\":\"Git Parameter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/git-parameter/0.2/git-parameter.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Git+Parameter+Plugin\"},\"git-server\":{\"buildDate\":\"Aug 30, 2012\",\"dependencies\":[{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.17\"}],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin is a library plugin for other plugins to add git server functionality to Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:git-server:1.1\",\"labels\":[\"library\"],\"name\":\"git-server\",\"previousTimestamp\":\"2012-08-27T15:36:50.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-08-30T15:33:44.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"2ZgryoENLIWeTxOzsCfifvZWG9U=\",\"title\":\"Git Server Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/git-server/1.1/git-server.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Git+Server+Plugin\"},\"git-userContent\":{\"buildDate\":\"Aug 29, 2012\",\"dependencies\":[{\"name\":\"git-server\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.17\"}],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin exposes $JENKINS_HOME/userContent as Git repository.\",\"gav\":\"org.jenkins-ci.plugins:git-userContent:1.3\",\"labels\":[],\"name\":\"git-userContent\",\"previousTimestamp\":\"2012-08-29T21:43:16.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-08-29T21:59:54.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"XcqMQciZT0PQFLZK1gbGCeycv8o=\",\"title\":\"Git userContent plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/git-userContent/1.3/git-userContent.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Git+userContent+plugin\"},\"github\":{\"buildDate\":\"Jun 13, 2012\",\"dependencies\":[{\"name\":\"github-api\",\"optional\":false,\"version\":\"1.28\"},{\"name\":\"multiple-scms\",\"optional\":true,\"version\":\"0.2\"},{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.17\"}],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"juretta\",\"name\":\"Stefan Saasen\"}],\"excerpt\":\"This plugin integrates Jenkins with <a href='http://github.com/'>Github<\\/a> projects.\",\"gav\":\"com.coravy.hudson.plugins.github:github:1.4\",\"labels\":[\"external\"],\"name\":\"github\",\"previousTimestamp\":\"2012-05-31T18:07:50.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2012-06-13T13:06:40.00Z\",\"requiredCore\":\"1.445\",\"scm\":\"github.com\",\"sha1\":\"JVtmW2eswoGRwYm8AdnhYx1dxRM=\",\"title\":\"GitHub Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/github/1.4/github.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/GitHub+Plugin\"},\"github-api\":{\"buildDate\":\"Jan 07, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"Johno Crawford\"}],\"excerpt\":\"This plugin is a library plugin used by other GitHub related plugins to share the same libraries. This plugin does not have any user visible feature by itself. There's no need to install this plugin manually, although you want to keep it up to date.\",\"gav\":\"org.jenkins-ci.plugins:github-api:1.34\",\"labels\":[\"library\"],\"name\":\"github-api\",\"previousTimestamp\":\"2012-09-13T20:43:54.00Z\",\"previousVersion\":\"1.33\",\"releaseTimestamp\":\"2013-01-07T19:27:32.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"v5PJxebX1xsuM19YpU5ywumRkC0=\",\"title\":\"GitHub API Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/github-api/1.34/github-api.hpi\",\"version\":\"1.34\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/GitHub+API+Plugin\"},\"github-oauth\":{\"buildDate\":\"Jun 13, 2012\",\"compatibleSinceVersion\":\"0.3\",\"dependencies\":[{\"name\":\"github-api\",\"optional\":false,\"version\":\"1.28\"}],\"developers\":[{\"developerId\":\"mocleiri\",\"name\":\"Michael O'Cleirigh\"}],\"excerpt\":\"Authentication of users is delegated to Github using the OAuth protocol.&nbsp;  Authorization is based on the characteristics of the users Github user data that is retrieved through the Github API (effectively as the authenticated user). \",\"gav\":\"org.jenkins-ci.plugins:github-oauth:0.12\",\"labels\":[\"user\"],\"name\":\"github-oauth\",\"previousTimestamp\":\"2012-03-22T01:53:40.00Z\",\"previousVersion\":\"0.11\",\"releaseTimestamp\":\"2012-06-13T13:00:12.00Z\",\"requiredCore\":\"1.431\",\"scm\":\"github.com\",\"sha1\":\"cAOjdw5d3oQVPo4bXkj9QAo1EiE=\",\"title\":\"Github OAuth Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/github-oauth/0.12/github-oauth.hpi\",\"version\":\"0.12\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Github+OAuth+Plugin\"},\"github-sqs-plugin\":{\"buildDate\":\"Nov 23, 2012\",\"dependencies\":[{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.17\"},{\"name\":\"github-api\",\"optional\":false,\"version\":\"1.28\"},{\"name\":\"multiple-scms\",\"optional\":true,\"version\":\"0.2\"},{\"name\":\"github\",\"optional\":false,\"version\":\"1.3\"}],\"developers\":[{\"developerId\":\"aaronwalker\",\"name\":\"Aaron Walker\"}],\"excerpt\":\"This plugin integrates Jenkins with <a href='http://github.com/'>Github<\\/a> projects via <a href='http://aws.amazon.com/sqs/'>Amazon's Simple Queue Service<\\/a>\",\"gav\":\"com.base2services.jenkins:github-sqs-plugin:1.3\",\"labels\":[\"trigger\",\"external\"],\"name\":\"github-sqs-plugin\",\"previousTimestamp\":\"2012-11-22T19:45:54.00Z\",\"previousVersion\":\"1.2.1\",\"releaseTimestamp\":\"2012-11-23T17:43:00.00Z\",\"requiredCore\":\"1.451\",\"scm\":\"github.com\",\"sha1\":\"5AOp3W2vlnY3cYJo/3oaaYUkAuM=\",\"title\":\"GitHub SQS Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/github-sqs-plugin/1.3/github-sqs-plugin.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/GitHub+SQS+Plugin\"},\"gitlab-hook\":{\"buildDate\":\"Dec 11, 2012\",\"dependencies\":[{\"name\":\"ruby-runtime\",\"optional\":false,\"version\":\"0.10\"},{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.26\"}],\"developers\":[{\"developerId\":\"elvanja\"}],\"excerpt\":\"Enables Gitlab web hooks to be used to trigger SMC polling on Gitlab projects\",\"gav\":\"org.jenkins-ci.ruby-plugins:gitlab-hook:0.2.5\",\"labels\":[\"scm-related\"],\"name\":\"gitlab-hook\",\"previousTimestamp\":\"2012-12-08T03:21:46.00Z\",\"previousVersion\":\"0.2.4\",\"releaseTimestamp\":\"2012-12-11T20:49:36.00Z\",\"requiredCore\":\"1.432\",\"scm\":\"github.com\",\"sha1\":\"YzSXkyswUSlx+MdmwxTl+inZn5c=\",\"title\":\"Gitlab Hook Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/gitlab-hook/0.2.5/gitlab-hook.hpi\",\"version\":\"0.2.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Gitlab+Hook+Plugin\"},\"gitorious\":{\"buildDate\":\"Oct 13, 2012\",\"dependencies\":[{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.24\"}],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"Integration Jenkins with <a href='http://gitorious.org/'>Gitorious<\\/a>\",\"gav\":\"org.jenkins-ci.plugins:gitorious:1.0\",\"labels\":[],\"name\":\"gitorious\",\"releaseTimestamp\":\"2012-10-13T14:59:24.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"9aCHpCZviIdJwh7YuMFnEiSNtF8=\",\"title\":\"Gitorious Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/gitorious/1.0/gitorious.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Gitorious+Plugin\"},\"global-build-stats\":{\"buildDate\":\"Apr 05, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"fcamblor\",\"email\":\"fcamblor+wikihudson@gmail.com\",\"name\":\"Frederic Camblor\"}],\"excerpt\":\"Global build stats plugin will allow to gather and display global build result statistics. It is a useful tool allowing to display global hudson build trend over time.\",\"gav\":\"org.jenkins-ci.plugins:global-build-stats:1.3\",\"labels\":[\"report\"],\"name\":\"global-build-stats\",\"previousTimestamp\":\"2011-08-25T07:46:46.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-04-06T01:34:38.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"0vZtHB11OPpOu10xcfWXWnvAC3s=\",\"title\":\"Global Build Stats Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/global-build-stats/1.3/global-build-stats.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Global+Build+Stats+Plugin\"},\"global-variable-string-parameter\":{\"buildDate\":\"Nov 02, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"pmaccamp\",\"email\":\"pmaccamp@sbcglobal.net\",\"name\":\"Patrick McKeown\"},{\"developerId\":\"marsbar\",\"name\":\"Mario Vuong\"}],\"excerpt\":\"Provides a parameter with support for global node properties via $VARIABLE or $\\\\{VARIABLE} \",\"gav\":\"org.jenkins-ci.plugins:global-variable-string-parameter:1.1\",\"labels\":[\"parameter\"],\"name\":\"global-variable-string-parameter\",\"releaseTimestamp\":\"2012-11-02T05:21:38.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"Pp8d9F1YOZv0qw/BUSsUCMj9Ba4=\",\"title\":\"Global Variable String Parameter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/global-variable-string-parameter/1.1/global-variable-string-parameter.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Global+Variable+String+Parameter+Plugin\"},\"gnat\":{\"buildDate\":\"Oct 11, 2012\",\"dependencies\":[{\"name\":\"xunit\",\"optional\":false,\"version\":\"1.39\"}],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gregory.boissinot@gmail.com\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin makes it possible to integrate <a href='http://www.adacore.com/home/products/gnatpro/toolsuite/tool_partners/'>Gnat<\\/a> features for ADA languages in Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:gnat:0.14\",\"labels\":[\"report\"],\"name\":\"gnat\",\"previousTimestamp\":\"2012-02-15T04:34:40.00Z\",\"previousVersion\":\"0.13\",\"releaseTimestamp\":\"2012-10-11T22:45:40.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"lSvvdGIK13pLiOLEkyjEOug+YUE=\",\"title\":\"Gnat Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/gnat/0.14/gnat.hpi\",\"version\":\"0.14\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Gnat+Plugin\"},\"googleanalytics\":{\"buildDate\":\"Nov 23, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"erik\"}],\"excerpt\":\"This plugin decorates all web pages with the Google Analytics tracking script\",\"gav\":\"org.jvnet.hudson.plugins:googleanalytics:1.3\",\"labels\":[\"page-decorator\"],\"name\":\"googleanalytics\",\"previousTimestamp\":\"2009-08-25T04:44:02.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-11-23T23:16:40.00Z\",\"requiredCore\":\"1.323\",\"scm\":\"github.com\",\"sha1\":\"K8jV5dPn/543wX4bX0OJTGikJ3Y=\",\"title\":\"Google Analytics Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/googleanalytics/1.3/googleanalytics.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Google+Analytics+Plugin\"},\"googlecode\":{\"buildDate\":\"Apr 09, 2012\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.36\"}],\"developers\":[{\"developerId\":\"redsolo\",\"email\":\"eramfelt@gmail.com\",\"name\":\"Erik Ramfelt\"}],\"excerpt\":\"This plugin creates links from Jenkins projects to <a href='http://code.google.com'>Google Code<\\/a> instances.\",\"gav\":\"org.jenkins-ci.plugins:googlecode:1.7\",\"labels\":[\"external\"],\"name\":\"googlecode\",\"previousTimestamp\":\"2011-03-04T23:06:06.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2012-04-09T13:28:24.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"1gYG/nA/fgde/jq/B3FSOY14NOk=\",\"title\":\"Google Code Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/googlecode/1.7/googlecode.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Google+Code+Plugin\"},\"gradle\":{\"buildDate\":\"Nov 26, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin makes it possible to invoke <a href='http://www.gradle.org/'>Gradle<\\/a> build script as the main build step.\",\"gav\":\"org.jenkins-ci.plugins:gradle:1.21\",\"labels\":[\"builder\"],\"name\":\"gradle\",\"previousTimestamp\":\"2012-09-20T03:54:44.00Z\",\"previousVersion\":\"1.20\",\"releaseTimestamp\":\"2012-11-27T03:16:28.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"roa0zU6S5WZnHqAB7h7GVonwZTk=\",\"title\":\"Gradle Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/gradle/1.21/gradle.hpi\",\"version\":\"1.21\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Gradle+Plugin\"},\"grails\":{\"buildDate\":\"Jul 18, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jeffg2one\",\"name\":\"Jeff Brown\"},{\"developerId\":\"kiy0taka\",\"name\":\"Kiyotaka Oku\"}],\"excerpt\":\"This plugin allows Jenkins to invoke Grails tasks as build steps.\",\"gav\":\"org.jvnet.hudson.plugins:grails:1.6.3\",\"labels\":[\"builder\"],\"name\":\"grails\",\"previousTimestamp\":\"2012-05-18T18:47:30.00Z\",\"previousVersion\":\"1.6.2\",\"releaseTimestamp\":\"2012-07-18T18:10:56.00Z\",\"requiredCore\":\"1.425\",\"scm\":\"github.com\",\"sha1\":\"CO/Kl9a6Zpu+9uC25gUOqL3Omds=\",\"title\":\"Grails Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/grails/1.6.3/grails.hpi\",\"version\":\"1.6.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Grails+Plugin\"},\"gravatar\":{\"buildDate\":\"Nov 18, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"redsolo\",\"email\":\"eramfelt@gmail.com\",\"name\":\"Erik Ramfelt\"}],\"excerpt\":\"This plugins shows <a href='http://gravatar.com/'>Gravatar<\\/a> avatars instead of the generic user image.\",\"gav\":\"org.jenkins-ci.plugins:gravatar:1.1\",\"labels\":[\"user\",\"ui\"],\"name\":\"gravatar\",\"releaseTimestamp\":\"2011-11-18T11:38:42.00Z\",\"requiredCore\":\"1.434\",\"scm\":\"github.com\",\"sha1\":\"hC/9amrpcbltZRJHRGqqXVsWAUA=\",\"title\":\"Gravatar plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/gravatar/1.1/gravatar.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Gravatar+plugin\"},\"greenballs\":{\"buildDate\":\"May 07, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"asgeirn\",\"email\":\"asgeir@twingine.no\",\"name\":\"Asgeir Storesund Nilsen\"}],\"excerpt\":\"Changes Hudson to use green balls instead of blue for successful builds\",\"gav\":\"org.jvnet.hudson.plugins:greenballs:1.12\",\"labels\":[\"ui\"],\"name\":\"greenballs\",\"previousTimestamp\":\"2011-09-10T18:51:30.00Z\",\"previousVersion\":\"1.11\",\"releaseTimestamp\":\"2012-05-07T21:29:28.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"MPqqs7ZYTcm1F5pz9wMOayfh8G0=\",\"title\":\"Green Balls\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/greenballs/1.12/greenballs.hpi\",\"version\":\"1.12\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Green+Balls\"},\"grinder\":{\"buildDate\":\"Jan 15, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"BatemanSW\"}],\"excerpt\":\"This plugin reads output result files from <a href='http://grinder.sourceforge.net/'>Grinder<\\/a> performance tests, and will generate reports showing test results for every build and trend reports showing performance results across builds.\",\"gav\":\"org.jvnet.hudson.plugins:grinder:1.4\",\"labels\":[\"report\"],\"name\":\"grinder\",\"previousTimestamp\":\"2009-12-30T04:26:38.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2010-01-15T16:45:28.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"XlTSwxFBO6UfqMlF5eGocJ29h6g=\",\"title\":\"Grinder Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/grinder/1.4/grinder.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Grinder+Plugin\"},\"groovy\":{\"buildDate\":\"Mar 08, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.4\"}],\"developers\":[{\"developerId\":\"vjuranek\",\"name\":\"Vojtech Juranek\"}],\"excerpt\":\"This plugin adds the ability to directly execute Groovy code.\",\"gav\":\"org.jenkins-ci.plugins:groovy:1.12\",\"labels\":[\"builder\",\"groovy-related\"],\"name\":\"groovy\",\"previousTimestamp\":\"2012-02-27T02:58:04.00Z\",\"previousVersion\":\"1.11\",\"releaseTimestamp\":\"2012-03-08T21:48:58.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"rO0nG2xE5RPG2/eDPzYcbX8tC04=\",\"title\":\"Groovy plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/groovy/1.12/groovy.hpi\",\"version\":\"1.12\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Groovy+plugin\"},\"groovy-postbuild\":{\"buildDate\":\"Aug 22, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"wolfs\",\"name\":\"Stefan Wolf\"},{\"developerId\":\"beryx\",\"name\":\"Serban Iordache\"}],\"excerpt\":\"This plugin executes a groovy script in the Jenkins JVM. Typically, the script checks some conditions and changes accordingly the build result, puts badges next to the build in the build history and/or displays information on the build summary page.\",\"gav\":\"org.jvnet.hudson.plugins:groovy-postbuild:1.8\",\"labels\":[\"post-build\",\"groovy-related\"],\"name\":\"groovy-postbuild\",\"previousTimestamp\":\"2012-05-02T19:56:08.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2012-08-22T16:03:14.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"uWryTtC4mZPwLfmZ8JjHHT1tZDo=\",\"title\":\"Groovy Postbuild Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/groovy-postbuild/1.8/groovy-postbuild.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Postbuild+Plugin\"},\"groovy-remote\":{\"buildDate\":\"Sep 12, 2012\",\"dependencies\":[],\"developers\":[],\"excerpt\":\"This plugin provides <a href='http://groovy.codehaus.org/modules/remote/'>Groovy Remote Control<\\/a>'s receiver, and allows to control external application from Jenkins.\",\"gav\":\"org.jenkinsci.plugins:groovy-remote:0.2\",\"labels\":[\"builder\",\"groovy-related\"],\"name\":\"groovy-remote\",\"previousTimestamp\":\"2012-08-09T17:27:08.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2012-09-13T00:30:50.00Z\",\"requiredCore\":\"1.475\",\"scm\":\"github.com\",\"sha1\":\"0rhRQWmdaOqU8FN2UZCM2htpB/M=\",\"title\":\"Groovy Remote Control Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/groovy-remote/0.2/groovy-remote.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Remote+Control+Plugin\"},\"groovyaxis\":{\"buildDate\":\"Jan 04, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"emanuelez\",\"email\":\"emanuelez@gmail.com\",\"name\":\"Emanuele Zattin\"}],\"excerpt\":\"This plugin allows to have scriptable axes for Matrix Jobs.\",\"gav\":\"org.jenkins-ci.plugins:groovyaxis:0.3\",\"labels\":[\"misc\"],\"name\":\"groovyaxis\",\"previousTimestamp\":\"2011-06-08T03:58:30.00Z\",\"previousVersion\":\"0.2\",\"releaseTimestamp\":\"2013-01-04T15:59:46.00Z\",\"requiredCore\":\"1.472\",\"scm\":\"github.com\",\"sha1\":\"rhp30tEZ3HrLU/OHNJmuDwfMgB4=\",\"title\":\"GroovyAxis\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/groovyaxis/0.3/groovyaxis.hpi\",\"version\":\"0.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/GroovyAxis\"},\"growl\":{\"buildDate\":\"Jun 12, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"sbower\",\"email\":\"sbower@advws.net\",\"name\":\"Shawn Bower\"}],\"excerpt\":\"Sends <a href='http://growl.info/'>Growl<\\/a> notification.\",\"gav\":\"org.jenkins-ci.plugins:growl:1.1\",\"labels\":[\"notifier\"],\"name\":\"growl\",\"previousTimestamp\":\"2010-10-09T04:38:06.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-06-13T01:15:20.00Z\",\"requiredCore\":\"1.414\",\"scm\":\"github.com\",\"sha1\":\"NqahIAJnefwd9tvZ/T9mREAnh8E=\",\"title\":\"Growl Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/growl/1.1/growl.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Growl+Plugin\"},\"hadoop\":{\"buildDate\":\"Jun 29, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"olamy\"}],\"excerpt\":\"This plugin makes Hudson cluster act as a Hadoop cluster without any configuration.\",\"gav\":\"org.jenkins-ci.plugins:hadoop:1.4\",\"labels\":[\"cluster\"],\"name\":\"hadoop\",\"previousTimestamp\":\"2009-09-02T18:44:44.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2011-06-30T03:59:20.00Z\",\"requiredCore\":\"1.403\",\"scm\":\"github.com\",\"sha1\":\"S4P+I7mwmD4wGaps43neIfH/fJg=\",\"title\":\"Hadoop Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/hadoop/1.4/hadoop.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Hadoop+Plugin\"},\"harvest\":{\"buildDate\":\"Aug 22, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gliptak\",\"name\":\"Gábor Lipták\"}],\"excerpt\":\"This plugin allows you to use <a href='http://www.ca.com/us/products/product.aspx?id=255'>CA Harvest<\\/a> as a SCM.\",\"gav\":\"org.jenkins-ci.plugins:harvest:0.5\",\"labels\":[\"scm\"],\"name\":\"harvest\",\"previousTimestamp\":\"2011-05-30T13:16:32.00Z\",\"previousVersion\":\"0.4.2\",\"releaseTimestamp\":\"2011-08-22T22:20:54.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"EiNjfGkzWp4Jue9c3F9ZV2cJrRY=\",\"title\":\"Harvest Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/harvest/0.5/harvest.hpi\",\"version\":\"0.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Harvest+Plugin\"},\"heavy-job\":{\"buildDate\":\"Sep 26, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin allows you to define \\\"weight\\\" on each job, and making each job consume that many executors (instead of just one.)\",\"gav\":\"org.jvnet.hudson.plugins:heavy-job:1.0\",\"labels\":[\"misc\"],\"name\":\"heavy-job\",\"releaseTimestamp\":\"2010-09-26T15:51:08.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"sDBzy/rS8uh6D7lIT1TERQT9ie4=\",\"title\":\"Heavy Job Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/heavy-job/1.0/heavy-job.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Heavy+Job+Plugin\"},\"heroku-jenkins-plugin\":{\"buildDate\":\"Oct 28, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ryanbrainard\",\"name\":\"Ryan Brainard\"}],\"excerpt\":\"Build tasks for interacting with <a href='http://heroku.com'>Heroku<\\/a>&nbsp;including deployment, scaling dynos, running processes, and more. \",\"gav\":\"com.heroku:heroku-jenkins-plugin:0.7.1-BETA\",\"labels\":[\"post-build\",\"external\",\"upload\"],\"name\":\"heroku-jenkins-plugin\",\"previousTimestamp\":\"2012-08-24T03:09:00.00Z\",\"previousVersion\":\"0.7-BETA\",\"releaseTimestamp\":\"2012-10-28T22:21:44.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"VTe4ezg2aZh2BzNxj0S+s3r2UrQ=\",\"title\":\"Heroku Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/heroku-jenkins-plugin/0.7.1-BETA/heroku-jenkins-plugin.hpi\",\"version\":\"0.7.1-BETA\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Heroku+Plugin\"},\"hgca\":{\"buildDate\":\"May 06, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"abayer\",\"email\":\"andrew.bayer@gmail.com\",\"name\":\"Andrew Bayer\"}],\"excerpt\":\"This plugin allows the administrator to specify pairs of patterns and URLs, both globally and on a per-job level, to use for marking up changelog text.\",\"gav\":\"org.jvnet.hudson.plugins:hgca:1.3\",\"labels\":[\"external\"],\"name\":\"hgca\",\"previousTimestamp\":\"2010-04-05T19:12:36.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2010-05-06T19:33:40.00Z\",\"requiredCore\":\"1.324\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"ph8hqopM+L/rfNC4/tJXAfEfNzI=\",\"title\":\"HGCA Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/hgca/1.3/hgca.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/HGCA+Plugin\"},\"hipchat\":{\"buildDate\":\"Mar 11, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.319\"}],\"developers\":[{\"developerId\":\"dholst\"}],\"excerpt\":\"This plugin allows your team to setup build notifications to be sent to HipChat rooms.\",\"gav\":\"org.jvnet.hudson.plugins:hipchat:0.1.4\",\"labels\":[\"notifier\"],\"name\":\"hipchat\",\"previousTimestamp\":\"2012-02-27T19:31:34.00Z\",\"previousVersion\":\"0.1.3\",\"releaseTimestamp\":\"2012-03-11T23:33:50.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"github.com\",\"sha1\":\"VCfHKpKml+ZITF/MhAO70cq1x/Y=\",\"title\":\"HipChat Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/hipchat/0.1.4/hipchat.hpi\",\"version\":\"0.1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/HipChat+Plugin\"},\"hipchat-plugin\":{\"buildDate\":\"Jan 21, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.319\"}],\"developers\":[{\"developerId\":\"dholst\"}],\"excerpt\":\"A Build status publisher that notifies channels on a HipChat server\",\"gav\":\"com.github.jlewallen.jenkins.plugins:hipchat-plugin:0.1.0\",\"name\":\"hipchat-plugin\",\"releaseTimestamp\":\"2012-01-21T17:44:38.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"github.com\",\"sha1\":\"peU7l1dGVfNNMJKKXfOhb8mz7a0=\",\"title\":\"Jenkins HipChat Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/hipchat-plugin/0.1.0/hipchat-plugin.hpi\",\"version\":\"0.1.0\"},\"hockeyapp\":{\"buildDate\":\"Jan 07, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ohoeltke\",\"email\":\"ohoeltke@gmail.com\",\"name\":\"Oliver Hoeltke\"}],\"excerpt\":\"Lets you publish your .ipa and .dsym files to &nbsp;<a href='http://www.hockeyapp.net'>www.hockeyapp.net<\\/a> \",\"gav\":\"org.jenkins-ci.plugins:hockeyapp:1.0.3\",\"labels\":[\"upload\",\"ios\"],\"name\":\"hockeyapp\",\"previousTimestamp\":\"2012-12-05T14:41:46.00Z\",\"previousVersion\":\"1.0.2\",\"releaseTimestamp\":\"2013-01-07T19:25:32.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"KTj+TZdnvn6R3nUUaL1RVI2oOQg=\",\"title\":\"Hockeyapp Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/hockeyapp/1.0.3/hockeyapp.hpi\",\"version\":\"1.0.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Hockeyapp+Plugin\"},\"hp-application-automation-tools-plugin\":{\"buildDate\":\"Dec 02, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ofirshaked\",\"email\":\"ofir.shaked@hp.com\",\"name\":\"Ofir Shaked\"},{\"developerId\":\"amitb\",\"email\":\"amit.bezalel@hp.com\",\"name\":\"Amit Bezalel\"},{\"email\":\"liron.tzabari@hp.com\",\"name\":\"Liron Tzabari\"}],\"excerpt\":\"This plugin allows Jenkins to trigger HP tests such as:Test Sets on Application Lifecycle Management, tests saved on the file system from Unified Functional Testing, QuickTest Professional, and Service Test.\",\"gav\":\"org.jenkins-ci.plugins:hp-application-automation-tools-plugin:1.0.2\",\"labels\":[],\"name\":\"hp-application-automation-tools-plugin\",\"previousTimestamp\":\"2012-11-26T15:51:46.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-12-02T19:31:42.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"Tgv0Q8zu+mhokBNb+mWNdoZxk4g=\",\"title\":\"HP Application Automation Tools\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/hp-application-automation-tools-plugin/1.0.2/hp-application-automation-tools-plugin.hpi\",\"version\":\"1.0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/HP+Application+Automation+Tools\"},\"hsts-filter-plugin\":{\"buildDate\":\"Sep 26, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Provides a very simple filter which adds a response header indicating that <a href='http://tools.ietf.org/html/draft-hodges-strict-transport-sec-02'>HTTP Strict Transport Security<\\/a> (HSTS) response headers should be sent.\",\"gav\":\"org.jenkins-ci.plugins:hsts-filter-plugin:1.0\",\"labels\":[\"page-decorator\",\"misc\"],\"name\":\"hsts-filter-plugin\",\"releaseTimestamp\":\"2011-09-27T02:05:36.00Z\",\"requiredCore\":\"1.429\",\"scm\":\"github.com\",\"sha1\":\"YTtcCuLLVggnk+/s+6zW/7OpxOA=\",\"title\":\"HSTS Filter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/hsts-filter-plugin/1.0/hsts-filter-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/HSTS+Filter+Plugin\"},\"html-audio-notifier\":{\"buildDate\":\"Nov 25, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"larshvile\",\"email\":\"lars@hulte.net\",\"name\":\"Lars Hvile\"}],\"excerpt\":\"Plays audio-notifications directly in the browser when builds fail\",\"gav\":\"jenkins.plugins.htmlaudio:html-audio-notifier:0.4\",\"labels\":[\"notifier\"],\"name\":\"html-audio-notifier\",\"previousTimestamp\":\"2011-10-15T18:08:02.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2011-11-26T00:52:22.00Z\",\"requiredCore\":\"1.425\",\"scm\":\"github.com\",\"sha1\":\"1lWpujRmmhKwomBKQAM3XpBacK4=\",\"title\":\"Html Audio Notifier\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/html-audio-notifier/0.4/html-audio-notifier.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Html+Audio+Notifier\"},\"html5-notifier-plugin\":{\"buildDate\":\"Apr 06, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Provides <a href='http://dev.w3.org/2006/webapi/WebNotifications/publish/Notifications.html'>W3C Web Notifications<\\/a> support for builds.\",\"gav\":\"org.jenkins-ci.plugins:html5-notifier-plugin:1.2\",\"labels\":[\"page-decorator\",\"notifier\"],\"name\":\"html5-notifier-plugin\",\"previousTimestamp\":\"2012-02-02T20:06:56.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-04-06T12:22:36.00Z\",\"requiredCore\":\"1.455\",\"scm\":\"github.com\",\"sha1\":\"QQU+7Yu9gTsM1+tlZ1G3UCHemAE=\",\"title\":\"HTML5 Notifier Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/html5-notifier-plugin/1.2/html5-notifier-plugin.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/HTML5+Notifier+Plugin\"},\"htmlpublisher\":{\"buildDate\":\"Dec 10, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mcrooney\",\"name\":\"Michael Rooney\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:htmlpublisher:1.2\",\"labels\":[\"upload\"],\"name\":\"htmlpublisher\",\"previousTimestamp\":\"2012-12-07T17:46:24.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-12-10T18:45:58.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"vRkwYavnDrH0p6Mn+eNcg/GKp9c=\",\"title\":\"HTML Publisher Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/htmlpublisher/1.2/htmlpublisher.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/HTML+Publisher+Plugin\"},\"http_request\":{\"buildDate\":\"Dec 09, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"janario\",\"email\":\"janarioliver@gmail.com\",\"name\":\"Janario Oliveira\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:http_request:1.7\",\"labels\":[\"builder\"],\"name\":\"http_request\",\"previousTimestamp\":\"2012-11-26T01:05:16.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2012-12-10T02:06:16.00Z\",\"requiredCore\":\"1.488\",\"scm\":\"github.com\",\"sha1\":\"Myo6m5JHMHQYFuDkKuHFVrHCFb8=\",\"title\":\"HTTP Request Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/http_request/1.7/http_request.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/HTTP+Request+Plugin\"},\"hudson-logaction-plugin\":{\"buildDate\":\"Feb 05, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tspengler\",\"name\":\"Thomas Spengler\"}],\"excerpt\":\"This plugin start action on pattern in the Joboutput, but this is centralized configured\",\"gav\":\"de.fspengler.hudson.plugin:hudson-logaction-plugin:1.1\",\"name\":\"hudson-logaction-plugin\",\"previousTimestamp\":\"2009-04-02T16:56:30.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2010-02-05T15:28:54.00Z\",\"requiredCore\":\"1.318\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"JaRElwvfjqRso55tt+qd2MuuttM=\",\"title\":\"Hudson Centralized Job(Re)Action\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/hudson-logaction-plugin/1.1/hudson-logaction-plugin.hpi\",\"version\":\"1.1\"},\"hudson-pview-plugin\":{\"buildDate\":\"Jan 03, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tspengler\",\"email\":\"tom@fspengler.de\",\"name\":\"Thomas Spengler\"}],\"excerpt\":\"This plugin gives every user, also non administrative one the possibility to create his own view and to use a pseudo tree-view where every user can administer it's own delimiter which is used as path delimiter\",\"gav\":\"de.fspengler.hudson.pview:hudson-pview-plugin:1.8\",\"labels\":[\"user\",\"ui\"],\"name\":\"hudson-pview-plugin\",\"previousTimestamp\":\"2010-01-13T04:51:14.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2011-01-03T21:23:04.00Z\",\"requiredCore\":\"1.357\",\"scm\":\"svn.java.net\",\"sha1\":\"VKJ1X1bfi45x6w9N5rZl3kIw/Ko=\",\"title\":\"Hudson Personal View\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/hudson-pview-plugin/1.8/hudson-pview-plugin.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Hudson+Personal+View\"},\"hudson-wsclean-plugin\":{\"buildDate\":\"Jan 06, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tspengler\",\"name\":\"Thomas Spengler\"}],\"excerpt\":\"This plugin allows you to cleanup workspaces on unused slaves in the same slavegroup.\",\"gav\":\"de.jamba.hudson.plugin.wsclean:hudson-wsclean-plugin:1.0.4\",\"labels\":[\"buildwrapper\"],\"name\":\"hudson-wsclean-plugin\",\"previousTimestamp\":\"2009-10-12T19:33:54.00Z\",\"previousVersion\":\"1.0.3\",\"releaseTimestamp\":\"2010-01-07T02:51:32.00Z\",\"requiredCore\":\"1.328\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"4GulizdnzLipjuwRF50l+8MC8yU=\",\"title\":\"Hudson Distributed Workspace Clean plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/hudson-wsclean-plugin/1.0.4/hudson-wsclean-plugin.hpi\",\"version\":\"1.0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Hudson+Distributed+Workspace+Clean+plugin\"},\"hudsontrayapp\":{\"buildDate\":\"Jan 10, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"davyboyhayes\",\"name\":\"David Hayes\"}],\"excerpt\":\"With this plugin, you can monitor your Hudson server from the comfort of you desktop tray, and even run programs when things change (or not).\",\"gav\":\"org.jvnet.hudson.plugins.hudsontrayapp:hudsontrayapp:0.7.3\",\"labels\":[\"external\"],\"name\":\"hudsontrayapp\",\"releaseTimestamp\":\"2010-01-10T15:15:24.00Z\",\"requiredCore\":\"1.318\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"kSJAtcXBsmDD4AxWuEboitcYCzE=\",\"title\":\"Hudson Tray Application\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/hudsontrayapp/0.7.3/hudsontrayapp.hpi\",\"version\":\"0.7.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Hudson+Tray+Application\"},\"ikachan\":{\"buildDate\":\"Jun 04, 2012\",\"dependencies\":[{\"name\":\"ruby-runtime\",\"optional\":false,\"version\":\"0.10\"},{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.11\"}],\"developers\":[{\"developerId\":\"usr0600239\"}],\"excerpt\":\"Publisher for an IRC bot named Ikachan.\",\"gav\":\"org.jenkins-ci.ruby-plugins:ikachan:0.0.1\",\"name\":\"ikachan\",\"releaseTimestamp\":\"2012-06-05T01:55:10.00Z\",\"requiredCore\":\"1.432\",\"scm\":\"github.com\",\"sha1\":\"DoVDQcH5vaSvHtnTS2GA7AQNydA=\",\"title\":\"Ikachan Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ikachan/0.0.1/ikachan.hpi\",\"version\":\"0.0.1\"},\"image-gallery\":{\"buildDate\":\"Sep 21, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kinow\",\"email\":\"brunodepaulak@yahoo.com.br\",\"name\":\"Bruno P. Kinoshita\"}],\"excerpt\":\"This plug-in reads a job workspace and collects images to produce an image gallery using <a href='http://www.jacklmoore.com/colorbox'>colorbox<\\/a> lightbox Javascript library. \",\"gav\":\"com.tupilabs.image_gallery:image-gallery:1.0\",\"labels\":[\"report\"],\"name\":\"image-gallery\",\"previousTimestamp\":\"2012-08-08T01:29:48.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2012-09-21T21:43:12.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"djwP4FFX04fsopZIyMGYPhuSytw=\",\"title\":\"Image Gallery Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/image-gallery/1.0/image-gallery.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Image+Gallery+Plugin\"},\"instant-messaging\":{\"buildDate\":\"Jan 01, 2013\",\"dependencies\":[{\"name\":\"analysis-core\",\"optional\":true,\"version\":\"1.0\"},{\"name\":\"ci-game\",\"optional\":true,\"version\":\"1.16\"}],\"developers\":[{\"developerId\":\"kutzi\",\"email\":\"kutzi@gmx.de\",\"name\":\"Christoph Kutzinski\"},{\"developerId\":\"kohsuke\",\"email\":\"kk@kohsuke.org\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin provides generic support for build notifications and a 'bot' via instant messaging protocols.\",\"gav\":\"org.jvnet.hudson.plugins:instant-messaging:1.25\",\"labels\":[\"notifier\"],\"name\":\"instant-messaging\",\"previousTimestamp\":\"2012-12-15T16:11:44.00Z\",\"previousVersion\":\"1.24\",\"releaseTimestamp\":\"2013-01-02T01:39:40.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"xj/wpeIY+tsOvZBgTQZhmM/3B8E=\",\"title\":\"Instant Messaging Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/instant-messaging/1.25/instant-messaging.hpi\",\"version\":\"1.25\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Instant+Messaging+Plugin\"},\"integrity-plugin\":{\"buildDate\":\"Sep 11, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"cdsouza\",\"email\":\"cdsouza@ptc.com\",\"name\":\"Cletus D'Souza\"}],\"excerpt\":\"This Jenkins plugin provides SCM integration capabilities to <a href='http://www.mks.com/platform/our-product'>PTC Integrity<\\/a> for <a href='http://www.mks.com/solutions/discipline/scm/scm-overview'>Configuration Management<\\/a>. \",\"gav\":\"org.jenkins-ci.plugins:integrity-plugin:1.16\",\"labels\":[\"scm\"],\"name\":\"integrity-plugin\",\"previousTimestamp\":\"2012-08-11T03:07:56.00Z\",\"previousVersion\":\"1.15\",\"releaseTimestamp\":\"2012-09-11T21:52:54.00Z\",\"requiredCore\":\"1.481\",\"scm\":\"github.com\",\"sha1\":\"eLeLiBuBiFPjXiD5BMRBx4+E4Ok=\",\"title\":\"PTC Integrity Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/integrity-plugin/1.16/integrity-plugin.hpi\",\"version\":\"1.16\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PTC+Integrity+Plugin\"},\"ion-deployer-plugin\":{\"buildDate\":\"Feb 20, 2012\",\"dependencies\":[{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.451\"}],\"developers\":[{\"developerId\":\"jeluard\",\"name\":\"Julien Eluard\"}],\"excerpt\":\"Deploy your <a href='http://www.mulesoft.org/'>mule application<\\/a> on <a href='http://muleion.com'>iON<\\/a> at the end of your build. \",\"gav\":\"org.jenkins-ci.plugins:ion-deployer-plugin:0.9\",\"labels\":[\"maven\",\"external\",\"post-build\"],\"name\":\"ion-deployer-plugin\",\"releaseTimestamp\":\"2012-02-20T23:41:36.00Z\",\"requiredCore\":\"1.451\",\"scm\":\"github.com\",\"sha1\":\"DTehlzpE1so/n4FKjL17mweTDsc=\",\"title\":\"iON Deployer Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ion-deployer-plugin/0.9/ion-deployer-plugin.hpi\",\"version\":\"0.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/iON+Deployer+Plugin\"},\"ios-device-connector\":{\"buildDate\":\"Oct 10, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin lists up all the iOS devices connected to the master and all the Jenkins slaves, and provide operations to them.\",\"gav\":\"org.jenkins-ci.plugins:ios-device-connector:1.2\",\"labels\":[\"builder\",\"ios\"],\"name\":\"ios-device-connector\",\"previousTimestamp\":\"2012-10-08T17:04:26.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-10-10T14:27:30.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"B2z2wTyA8l5uwz9HqD+xhG9Hjns=\",\"title\":\"iOS Device Connector Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ios-device-connector/1.2/ios-device-connector.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/iOS+Device+Connector+Plugin\"},\"iphoneview\":{\"buildDate\":\"Mar 27, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"sogabe\",\"email\":\"sogabe@dev.java.net\",\"name\":\"Seiji Sogabe\"}],\"excerpt\":\"This plugin allows you to view the status of your jobs via iPhone or iPod touch. \",\"gav\":\"org.jvnet.hudson.plugins:iphoneview:0.2\",\"labels\":[\"ui\"],\"name\":\"iphoneview\",\"previousTimestamp\":\"2010-03-21T17:45:12.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2010-03-27T23:42:02.00Z\",\"requiredCore\":\"1.352\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"nh82LEmYxlfBmqxOPukiN+QekNM=\",\"title\":\"iPhoneView Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/iphoneview/0.2/iphoneview.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/iPhoneView+Plugin\"},\"ipmessenger-plugin\":{\"buildDate\":\"May 12, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"nabedge\",\"name\":\"nabedge\"}],\"excerpt\":\"Sends build notifications to IPMessenger client. See http://ipmsg.org/ about IPMessenger\",\"gav\":\"org.jenkins-ci.plugins:ipmessenger-plugin:1.2\",\"labels\":[\"notifier\"],\"name\":\"ipmessenger-plugin\",\"previousTimestamp\":\"2012-05-08T03:19:54.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-05-13T03:59:24.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"S2J4Kjc2YI1xXbYWHpZ/guOmTjw=\",\"title\":\"IPMessenger Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ipmessenger-plugin/1.2/ipmessenger-plugin.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/IPMessenger+Plugin\"},\"ircbot\":{\"buildDate\":\"Dec 15, 2012\",\"dependencies\":[{\"name\":\"instant-messaging\",\"optional\":false,\"version\":\"1.24\"},{\"name\":\"analysis-core\",\"optional\":true,\"version\":\"1.0\"},{\"name\":\"ci-game\",\"optional\":true,\"version\":\"1.16\"}],\"developers\":[{\"developerId\":\"kutzi\",\"email\":\"kutzi@gmx.de\",\"name\":\"Christoph Kutzinski\"}],\"excerpt\":\"This plugin enables Jenkins to send build notífications via IRC and lets you interact with Jenkins via an IRC bot.  Note that you also need to install the <a href='http://wiki.jenkins-ci.org/display/HUDSON/Instant+Messaging+Plugin'>instant-messaging plugin<\\/a> .\",\"gav\":\"org.jvnet.hudson.plugins:ircbot:2.21\",\"labels\":[\"trigger\",\"notifier\"],\"name\":\"ircbot\",\"previousTimestamp\":\"2012-10-13T21:21:42.00Z\",\"previousVersion\":\"2.20\",\"releaseTimestamp\":\"2012-12-15T16:18:20.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"xkJmi5JpHpd4P6KNRFeMYCvCgLw=\",\"title\":\"IRC Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ircbot/2.21/ircbot.hpi\",\"version\":\"2.21\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/IRC+Plugin\"},\"ivy\":{\"buildDate\":\"Feb 06, 2012\",\"dependencies\":[{\"name\":\"nant\",\"optional\":true,\"version\":\"1.4.1\"}],\"developers\":[{\"developerId\":\"hibou\"},{\"developerId\":\"martinficker\",\"name\":\"Martin Ficker\"},{\"developerId\":\"jmetcalf\"},{\"developerId\":\"tbingaman\",\"name\":\"Timothy Bingaman\"},{\"developerId\":\"gboissinot\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin automatically configures a build to trigger other builds based on dependency configuration via <a href='http://ant.apache.org/ivy'>Apache Ivy<\\/a>.\",\"gav\":\"org.jenkins-ci.plugins:ivy:1.21\",\"labels\":[\"trigger\"],\"name\":\"ivy\",\"previousTimestamp\":\"2011-11-16T07:04:48.00Z\",\"previousVersion\":\"1.20\",\"releaseTimestamp\":\"2012-02-06T13:33:42.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"uiMZfg29zqtWdyiccZZ4GJrvjGs=\",\"title\":\"Ivy Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ivy/1.21/ivy.hpi\",\"version\":\"1.21\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Ivy+Plugin\"},\"ivy-report\":{\"buildDate\":\"Feb 17, 2012\",\"dependencies\":[{\"name\":\"ivy\",\"optional\":false,\"version\":\"1.15\"}],\"developers\":[{\"developerId\":\"cchabanois\",\"email\":\"cchabanois@gmail.com\",\"name\":\"Cedric Chabanois\"}],\"excerpt\":\"This plugin publishes <a href='http://ant.apache.org/ivy'>Apache Ivy<\\/a> reports for each build. \",\"gav\":\"org.jenkins-ci.plugins:ivy-report:1.2\",\"labels\":[],\"name\":\"ivy-report\",\"previousTimestamp\":\"2012-02-16T12:01:48.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-02-18T03:03:36.00Z\",\"requiredCore\":\"1.420\",\"scm\":\"github.com\",\"sha1\":\"wFYRVvmvk3JPqzMi1hEL9Uz+2fU=\",\"title\":\"Ivy Report Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ivy-report/1.2/ivy-report.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Ivy+Report+Plugin\"},\"ivytrigger\":{\"buildDate\":\"Nov 19, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gregory.boissinot@gmail.com\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"IvyTrigger provides polling mechanisms to poll an Ivy file and triggers a build if an Ivy dependency version has changed.\",\"gav\":\"org.jenkins-ci.plugins:ivytrigger:0.24\",\"labels\":[\"trigger\"],\"name\":\"ivytrigger\",\"previousTimestamp\":\"2012-09-11T04:33:58.00Z\",\"previousVersion\":\"0.23\",\"releaseTimestamp\":\"2012-11-20T03:57:02.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"kx6bkBYL2sksBmTcCK9QBEceWOU=\",\"title\":\"IvyTrigger Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ivytrigger/0.24/ivytrigger.hpi\",\"version\":\"0.24\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/IvyTrigger+Plugin\"},\"jabber\":{\"buildDate\":\"Dec 15, 2012\",\"dependencies\":[{\"name\":\"analysis-core\",\"optional\":true,\"version\":\"1.0\"},{\"name\":\"ci-game\",\"optional\":true,\"version\":\"1.16\"},{\"name\":\"instant-messaging\",\"optional\":false,\"version\":\"1.24\"}],\"developers\":[{\"developerId\":\"kutzi\",\"email\":\"kutzi@gmx.de\",\"name\":\"Christoph Kutzinski\"}],\"excerpt\":\"Integrates Jenkins with the Jabber/XMPP instant messaging protocol. Note that you also need to install the <a href='http://wiki.jenkins-ci.org/display/JENKINS/Instant+Messaging+Plugin'>instant-messaging plugin<\\/a>. \",\"gav\":\"org.jvnet.hudson.plugins:jabber:1.25\",\"labels\":[\"trigger\",\"notifier\"],\"name\":\"jabber\",\"previousTimestamp\":\"2012-10-13T21:26:16.00Z\",\"previousVersion\":\"1.24\",\"releaseTimestamp\":\"2012-12-15T16:24:42.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"9+eXyp28QJA44oJdDqZ3Uwe/7S4=\",\"title\":\"Jabber Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jabber/1.25/jabber.hpi\",\"version\":\"1.25\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Jabber+Plugin\"},\"jacoco\":{\"buildDate\":\"Nov 17, 2012\",\"dependencies\":[{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.1\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424.6\"}],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"stephenconnolly\",\"name\":\"Stephen Connolly\"},{\"developerId\":\"manolo\",\"email\":\"manolo@apache.org\",\"name\":\"Manuel Carrasco Monino\"},{\"developerId\":\"jfuerth\",\"name\":\"Jonathan Fuerth\"},{\"developerId\":\"kingargyle\",\"name\":\"David Carver\"},{\"developerId\":\"ognjenb\",\"name\":\"Ognjen Bubalo\"}],\"excerpt\":\"This plugin allows you to capture code coverage report from JaCoCo. Jenkins will generate the trend report of coverage.  This plugin is fork of the [Emma Plugin]. Big part of the code structure comes from it, however, it is completely refactored. \",\"gav\":\"org.jenkins-ci.plugins:jacoco:1.0.9\",\"labels\":[\"report\"],\"name\":\"jacoco\",\"previousTimestamp\":\"2012-10-15T16:44:06.00Z\",\"previousVersion\":\"1.0.8\",\"releaseTimestamp\":\"2012-11-17T16:09:34.00Z\",\"requiredCore\":\"1.424.6\",\"scm\":\"github.com\",\"sha1\":\"M1eEllRpkIFjplP2/myvdIIfTgw=\",\"title\":\"JaCoCo Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jacoco/1.0.9/jacoco.hpi\",\"version\":\"1.0.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JaCoCo+Plugin\"},\"japex\":{\"buildDate\":\"Feb 14, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin adds <a href='https://japex.dev.java.net/'>Japex<\\/a> support so that Jenkins can display trend reports and other useful metrics.\",\"gav\":\"org.jvnet.hudson.plugins:japex:1.7\",\"labels\":[\"report\"],\"name\":\"japex\",\"previousTimestamp\":\"2009-12-30T17:14:18.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2011-02-14T19:06:54.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"Cwnz6S3GT+nNvQWAHtbW69Ymj0Y=\",\"title\":\"Japex Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/japex/1.7/japex.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Japex+Plugin\"},\"javadoc\":{\"buildDate\":\"Sep 19, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin adds Javadoc support to Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:javadoc:1.0\",\"labels\":[],\"name\":\"javadoc\",\"releaseTimestamp\":\"2011-09-19T16:58:34.00Z\",\"requiredCore\":\"1.431\",\"scm\":\"github.com\",\"sha1\":\"Brf5LTIRj9konD9o37NqUvy5Fic=\",\"title\":\"Javadoc Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/javadoc/1.0/javadoc.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Javadoc+Plugin\"},\"javancss\":{\"buildDate\":\"Jun 11, 2011\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.413\"}],\"developers\":[{\"developerId\":\"stephenconnolly\",\"name\":\"Stephen Connolly\"}],\"excerpt\":\"This plugin allows you to use <a href='http://www.kclee.de/clemens/java/javancss/'>JavaNCSS<\\/a> build reporting tool.\",\"gav\":\"org.jenkins-ci.plugins:javancss:1.1\",\"labels\":[\"report\"],\"name\":\"javancss\",\"previousTimestamp\":\"2010-06-01T20:07:30.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-06-11T23:01:42.00Z\",\"requiredCore\":\"1.413\",\"scm\":\"github.com\",\"sha1\":\"0jV7Ovyi4H4L5Wryc42Qh2k5wL8=\",\"title\":\"JavaNCSS Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/javancss/1.1/javancss.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JavaNCSS+Plugin\"},\"javanet\":{\"buildDate\":\"Dec 29, 2009\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.7\"}],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin extends Hudson for projects hosted on java.net by providing various capabilities\",\"gav\":\"org.jvnet.hudson.plugins:javanet:1.3\",\"labels\":[\"external\"],\"name\":\"javanet\",\"previousTimestamp\":\"2008-05-23T09:22:40.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2009-12-29T20:35:06.00Z\",\"requiredCore\":\"1.325\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"HhNr+0/UTPJcIIVK4SAIkAez6tE=\",\"title\":\"Java.net Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/javanet/1.3/javanet.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Java.net+Plugin\"},\"javanet-uploader\":{\"buildDate\":\"Dec 29, 2009\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin uses <a href='https://javanettasks.dev.java.net/'>java.net tasks library<\\/a> to make Hudson capable of posting artifacts to java.net\",\"gav\":\"org.jvnet.hudson.plugins:javanet-uploader:1.7\",\"labels\":[\"external\",\"upload\"],\"name\":\"javanet-uploader\",\"previousTimestamp\":\"2009-06-18T22:17:46.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2009-12-29T21:02:46.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"mUdi22mBZNoETMRXISlq4XL5EXM=\",\"title\":\"java.net uploader Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/javanet-uploader/1.7/javanet-uploader.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/java.net+uploader+Plugin\"},\"javatest-report\":{\"buildDate\":\"Feb 14, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ramapulavarthi\",\"name\":\"Rama Pulavarthi\"}],\"excerpt\":\"This plugin enables Jenkins to load test output from <a href='http://java.sun.com/developer/technicalArticles/JCPtools2/'>JavaTest<\\/a> test harness, which is commonly used by TCK tests for various JSRs.\",\"gav\":\"org.jvnet.hudson.plugins:javatest-report:1.4\",\"labels\":[\"report\"],\"name\":\"javatest-report\",\"previousTimestamp\":\"2010-01-31T17:12:44.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2011-02-14T18:14:32.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"Uf+6aAX/xO4o9uICgdv4+c1j4nk=\",\"title\":\"JavaTest Report Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/javatest-report/1.4/javatest-report.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JavaTest+Report+Plugin\"},\"jboss\":{\"buildDate\":\"Nov 04, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"JulB4\",\"email\":\"JulB4@dev.java.net\",\"name\":\"Juliusz Brzostek\"}],\"excerpt\":\"This  plugin allows to manage a <a href='http://en.wikipedia.org/wiki/JBoss_application_server'>JBoss Application Server<\\/a> during build procedure. \",\"gav\":\"org.jenkins-ci.plugins:jboss:1.0.5\",\"labels\":[\"misc\",\"builder\"],\"name\":\"jboss\",\"previousTimestamp\":\"2011-08-20T14:34:20.00Z\",\"previousVersion\":\"1.0.4\",\"releaseTimestamp\":\"2011-11-04T20:12:50.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"08xwWJsdwME3cpCv8pKym/DXXZ8=\",\"title\":\"JBoss Management Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jboss/1.0.5/jboss.hpi\",\"version\":\"1.0.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JBoss+Management+Plugin\"},\"jcaptcha-plugin\":{\"buildDate\":\"Jul 21, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"JCaptcha provider of Jenkins' CaptchaSupport extension point.\",\"gav\":\"org.jenkins-ci.plugins:jcaptcha-plugin:1.1\",\"labels\":[\"misc\"],\"name\":\"jcaptcha-plugin\",\"previousTimestamp\":\"2011-06-09T03:49:34.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-07-22T02:54:50.00Z\",\"requiredCore\":\"1.420\",\"scm\":\"github.com\",\"sha1\":\"4vbTiLFQDMH98DHDbumn7127UNw=\",\"title\":\"JCaptcha Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jcaptcha-plugin/1.1/jcaptcha-plugin.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JCaptcha+Plugin\"},\"jclouds-jenkins\":{\"buildDate\":\"Sep 17, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"sdirector\",\"email\":\"mordred@inaugust.com\",\"name\":\"Monty Taylor\"},{\"developerId\":\"jclouds\",\"email\":\"adrian@jclouds.org\",\"name\":\"Adrian Cole\"},{\"developerId\":\"vijaykiran\",\"email\":\"mail@vijaykiran.com\",\"name\":\"Vijay Kiran\"},{\"developerId\":\"abayer\",\"email\":\"andrew.bayer@gmail.com\",\"name\":\"Andrew Bayer\"}],\"excerpt\":\"This plugin uses <a href='http://jclouds.org/'>JClouds<\\/a> to provide slave launching on most of the currently usable Cloud infrastructures.\",\"gav\":\"org.jenkins-ci.plugins:jclouds-jenkins:2.3.1\",\"labels\":[\"cluster\"],\"name\":\"jclouds-jenkins\",\"previousTimestamp\":\"2012-08-31T16:49:34.00Z\",\"previousVersion\":\"2.3\",\"releaseTimestamp\":\"2012-09-17T14:00:34.00Z\",\"requiredCore\":\"1.457\",\"scm\":\"github.com\",\"sha1\":\"N3KFajrhGE+rpBjyOmgz9vH23uo=\",\"title\":\"JClouds Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jclouds-jenkins/2.3.1/jclouds-jenkins.hpi\",\"version\":\"2.3.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JClouds+Plugin\"},\"jdepend\":{\"buildDate\":\"Feb 14, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"cflewis\",\"email\":\"chris@cflewis.com\",\"name\":\"Chris Lewis\"}],\"excerpt\":\"The JDepend Plugin is a plugin to generate JDepend reports for builds.\",\"gav\":\"org.jvnet.hudson.plugins:jdepend:1.2.3\",\"labels\":[\"report\"],\"name\":\"jdepend\",\"previousTimestamp\":\"2009-09-17T19:18:24.00Z\",\"previousVersion\":\"1.2.2\",\"releaseTimestamp\":\"2011-02-14T18:04:38.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"g/0fc7a7C+vEd5BVQJ5gbGFWgwU=\",\"title\":\"JDepend Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jdepend/1.2.3/jdepend.hpi\",\"version\":\"1.2.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JDepend+Plugin\"},\"jenkins-cloudformation-plugin\":{\"buildDate\":\"Sep 20, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"edovale\",\"email\":\"edovale@gmail.com\",\"name\":\"Erick Dovale\"}],\"excerpt\":\"A plugin that allows for the creation of cloud formation stacks before running the build and the deletion of them after the build is completed. \",\"gav\":\"org.jenkins-ci.plugins:jenkins-cloudformation-plugin:0.10\",\"labels\":[\"buildwrapper\",\"external\",\"notifier\"],\"name\":\"jenkins-cloudformation-plugin\",\"previousTimestamp\":\"2012-02-19T23:36:24.00Z\",\"previousVersion\":\"0.9\",\"releaseTimestamp\":\"2012-09-20T14:56:34.00Z\",\"requiredCore\":\"1.414\",\"scm\":\"github.com\",\"sha1\":\"02dRrRVnjeLdxVmivWOvRNvvHVw=\",\"title\":\"AWS Cloudformation Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jenkins-cloudformation-plugin/0.10/jenkins-cloudformation-plugin.hpi\",\"version\":\"0.10\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/AWS+Cloudformation+Plugin\"},\"jenkins-flowdock-plugin\":{\"buildDate\":\"Sep 14, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"anttipitkanen\",\"email\":\"antti@flowdock.com\",\"name\":\"Antti Pitkanen\"}],\"excerpt\":\"Posts build notifications to your flow\",\"gav\":\"com.flowdock.jenkins:jenkins-flowdock-plugin:1.0.7\",\"name\":\"jenkins-flowdock-plugin\",\"previousTimestamp\":\"2012-09-06T18:54:26.00Z\",\"previousVersion\":\"1.0.6\",\"releaseTimestamp\":\"2012-09-14T19:29:32.00Z\",\"requiredCore\":\"1.478\",\"scm\":\"github.com\",\"sha1\":\"ITvApYw7z1DUQK38eD/MnBWA0HE=\",\"title\":\"Flowdock plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jenkins-flowdock-plugin/1.0.7/jenkins-flowdock-plugin.hpi\",\"version\":\"1.0.7\"},\"jenkins-jira-issue-updater\":{\"buildDate\":\"Sep 04, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"laszlomiklosik\",\"email\":\"laszlo.miklosik@gmail.com\",\"name\":\"Laszlo Miklosik\"}],\"excerpt\":\"This is a Jenkins plugin which updates issues in Atlassian Jira (by changing their status and adding a comment) as part of a Jenkins job. \",\"gav\":\"info.bluefloyd.jenkins:jenkins-jira-issue-updater:1.3\",\"labels\":[\"external\"],\"name\":\"jenkins-jira-issue-updater\",\"previousTimestamp\":\"2012-09-04T03:28:58.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-09-05T01:18:22.00Z\",\"requiredCore\":\"1.437\",\"scm\":\"github.com\",\"sha1\":\"OrukTyxt0mksPV06/X59Rc29w4A=\",\"title\":\"Jira Issue Updater Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jenkins-jira-issue-updater/1.3/jenkins-jira-issue-updater.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Jira+Issue+Updater+Plugin\"},\"jenkins-leiningen\":{\"buildDate\":\"Sep 07, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"pyr\",\"email\":\"pyr@spootnik.org\",\"name\":\"Pierre-Yves Ritschard\"}],\"excerpt\":\"This plugin allows building projects using <a href='http://leiningen.org/'>leiningen<\\/a>. \",\"gav\":\"org.spootnik:jenkins-leiningen:0.5.1\",\"labels\":[\"builder\"],\"name\":\"jenkins-leiningen\",\"releaseTimestamp\":\"2012-09-07T13:05:40.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"/J7AcQNGifoTvU47hWJ9UTM7zVM=\",\"title\":\"leiningen plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jenkins-leiningen/0.5.1/jenkins-leiningen.hpi\",\"version\":\"0.5.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/leiningen+plugin\"},\"jenkins-multijob-plugin\":{\"buildDate\":\"Nov 19, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"alex-n\",\"email\":\"alex@tikalk.com\",\"name\":\"Alex Nickolaevsky\"},{\"developerId\":\"ronil\",\"email\":\"roni@tikalk.com\",\"name\":\"Roni Licht\"},{\"developerId\":\"itaior\",\"email\":\"itai@tikalk.com\",\"name\":\"Itai Or\"}],\"excerpt\":\"This <a href='http://www.tikalk.com/java/forums/tikal-multijob-plugin-official-version'>plugin<\\/a>, created by <a href='http://www.tikalk.com'>Tikal<\\/a> ALM team, gives the option to define complex and hierarchical jobs structure in Jenkins. \",\"gav\":\"org.jenkins-ci.plugins:jenkins-multijob-plugin:1.7\",\"labels\":[\"misc\"],\"name\":\"jenkins-multijob-plugin\",\"previousTimestamp\":\"2012-11-01T03:03:16.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2012-11-20T03:33:00.00Z\",\"requiredCore\":\"1.465\",\"scm\":\"github.com\",\"sha1\":\"1vLaI7J3HDcnXEiw+selKaI8JzA=\",\"title\":\"Multijob Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jenkins-multijob-plugin/1.7/jenkins-multijob-plugin.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Multijob+Plugin\"},\"jenkins-tag-cloud-plugin\":{\"buildDate\":\"Jul 03, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"cvanes\",\"email\":\"cvanes@gmail.com\",\"name\":\"Chris van Es\"}],\"excerpt\":\"Plugin which generates a tag cloud from source code.\",\"gav\":\"org.jenkins-ci.plugins:jenkins-tag-cloud-plugin:1.6\",\"labels\":[\"misc\"],\"name\":\"jenkins-tag-cloud-plugin\",\"previousTimestamp\":\"2012-04-15T09:43:28.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2012-07-03T15:31:22.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"kMIRpde1Ck+jmM61yXZZ1bac9ss=\",\"title\":\"Tag Cloud Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jenkins-tag-cloud-plugin/1.6/jenkins-tag-cloud-plugin.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Tag+Cloud+Plugin\"},\"jenkins-testswarm-plugin\":{\"buildDate\":\"Oct 02, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"keivnnilson\",\"name\":\"Kevin Nilson\"}],\"excerpt\":\"\",\"gav\":\"com.javaclimber.jenkins.testswarmplugin:jenkins-testswarm-plugin:1.2\",\"name\":\"jenkins-testswarm-plugin\",\"releaseTimestamp\":\"2012-10-02T04:14:10.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"il4+Q/8yWZO1vDD5pxU/4kwKAiA=\",\"title\":\"jenkins-testswarm-plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jenkins-testswarm-plugin/1.2/jenkins-testswarm-plugin.hpi\",\"version\":\"1.2\"},\"jenkinswalldisplay\":{\"buildDate\":\"Oct 11, 2012\",\"dependencies\":[{\"name\":\"nested-view\",\"optional\":true,\"version\":\"1.8\"}],\"developers\":[{\"developerId\":\"pellepelster\",\"email\":\"pellepelster@gmail.com\",\"name\":\"Christian Pelster\"}],\"excerpt\":\"This plugin provides a website that monitors jobs in a way suitable for public wall displays.\",\"gav\":\"org.jenkins-ci.plugins:jenkinswalldisplay:0.6.15\",\"labels\":[\"ui\"],\"name\":\"jenkinswalldisplay\",\"previousTimestamp\":\"2012-10-11T23:32:48.00Z\",\"previousVersion\":\"0.6.14\",\"releaseTimestamp\":\"2012-10-12T00:08:32.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"UFU9AufIT26aaJxFX/wWmBbdbto=\",\"title\":\"Wall Display Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jenkinswalldisplay/0.6.15/jenkinswalldisplay.hpi\",\"version\":\"0.6.15\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Wall+Display+Plugin\"},\"jenkinswalldisplay-pom\":{\"buildDate\":\"Nov 13, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"pellepelster\",\"email\":\"pellepelster@gmail.com\",\"name\":\"Christian Pelster\"}],\"excerpt\":\"This plugin provides a website that monitors jobs in a way suitable for public wall displays.\",\"gav\":\"org.jenkins-ci.plugins:jenkinswalldisplay-pom:0.6.2\",\"labels\":[\"ui\"],\"name\":\"jenkinswalldisplay-pom\",\"releaseTimestamp\":\"2011-11-14T02:05:58.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"Gbd7IngzepF57Tm1hzfe6iGQNTc=\",\"title\":\"Wall Display Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jenkinswalldisplay-pom/0.6.2/jenkinswalldisplay-pom.hpi\",\"version\":\"0.6.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Wall+Display+Plugin\"},\"jenkow-plugin\":{\"buildDate\":\"Nov 27, 2012\",\"dependencies\":[{\"name\":\"async-job\",\"optional\":false,\"version\":\"1.3\"},{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.17\"},{\"name\":\"git-server\",\"optional\":false,\"version\":\"1.1\"},{\"name\":\"eclipse-update-site\",\"optional\":false,\"version\":\"1.2\"}],\"developers\":[{\"developerId\":\"m2spring\",\"email\":\"mspring@cisco.com\",\"name\":\"Max Spring\"},{\"developerId\":\"chikkala\",\"email\":\"schikkal@cisco.com\",\"name\":\"Srinivasan Chikkala\"}],\"excerpt\":\"Integration of the <a href='http://activiti.org/'>Activiti BPMN Workflow Engine<\\/a> into Jenkins.\",\"gav\":\"com.cisco.step.jenkins.plugins:jenkow-plugin:0.2.5\",\"labels\":[\"trigger\",\"misc\"],\"name\":\"jenkow-plugin\",\"previousTimestamp\":\"2012-09-27T20:32:20.00Z\",\"previousVersion\":\"0.2.4\",\"releaseTimestamp\":\"2012-11-27T20:23:54.00Z\",\"requiredCore\":\"1.455\",\"scm\":\"github.com\",\"sha1\":\"+H+Zf0EivXsO+j04uYHHYhovY+A=\",\"title\":\"Jenkow Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jenkow-plugin/0.2.5/jenkow-plugin.hpi\",\"version\":\"0.2.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Jenkow+Plugin\"},\"jigomerge\":{\"buildDate\":\"Jul 08, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vberetti\",\"name\":\"Vincent Beretti\"}],\"excerpt\":\"This plugin adds the ability to directly merge Subversion branches in Jenkins. See&nbsp;<a href='http://code.google.com/p/jigomerge/'>http://code.google.com/p/jigomerge/<\\/a>\",\"gav\":\"org.jenkins-ci.plugins:jigomerge:0.7\",\"labels\":[\"builder\"],\"name\":\"jigomerge\",\"previousTimestamp\":\"2011-04-30T16:16:56.00Z\",\"previousVersion\":\"0.6\",\"releaseTimestamp\":\"2011-07-08T21:15:30.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"GRxJX0VOdCNLKl3P7cwzqdH1zr8=\",\"title\":\"Jigomerge plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jigomerge/0.7/jigomerge.hpi\",\"version\":\"0.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Jigomerge+plugin\"},\"jira\":{\"buildDate\":\"Jul 29, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424\"}],\"developers\":[{\"developerId\":\"olamy\",\"name\":\"Olivier Lamy\"}],\"excerpt\":\"This plugin integrates <a href='http://www.atlassian.com/software/jira/'>Atlassian JIRA<\\/a> to Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:jira:1.35\",\"labels\":[\"maven\",\"external\"],\"name\":\"jira\",\"previousTimestamp\":\"2012-06-11T17:55:00.00Z\",\"previousVersion\":\"1.34\",\"releaseTimestamp\":\"2012-07-30T03:23:22.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"PJgE3+qrqSjvTo+T972yrgXrGxc=\",\"title\":\"JIRA Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jira/1.35/jira.hpi\",\"version\":\"1.35\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JIRA+Plugin\"},\"job-dsl\":{\"buildDate\":\"Jan 07, 2013\",\"dependencies\":[],\"developers\":[],\"excerpt\":\"The job-dsl-plugin allows the programmatic creation of projects using a DSL. Pushing job creation into a script allows you to automate and standardize your Jenkins installation, unlike anything possible before. \",\"gav\":\"org.jenkinsci.plugins:job-dsl:1.11\",\"labels\":[\"builder\"],\"name\":\"job-dsl\",\"previousTimestamp\":\"2012-11-13T23:09:00.00Z\",\"previousVersion\":\"1.9\",\"releaseTimestamp\":\"2013-01-07T15:18:32.00Z\",\"requiredCore\":\"1.456\",\"scm\":\"github.com\",\"sha1\":\"efr4JFA0vUUirWInI/sl7Rp8vpA=\",\"title\":\"Job DSL Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/job-dsl/1.11/job-dsl.hpi\",\"version\":\"1.11\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Job+DSL+Plugin\"},\"job-exporter\":{\"buildDate\":\"Jan 27, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"m31\",\"email\":\"michael@meyling.com\",\"name\":\"Michael Meyling\"}],\"excerpt\":\"Adds a build step that exports runtime parameters into a properties file (e.g who triggered the build, what is her email address...). This information can be read by other build steps.\",\"gav\":\"org.jenkins-ci.plugins:job-exporter:0.4\",\"labels\":[\"builder\"],\"name\":\"job-exporter\",\"previousTimestamp\":\"2011-03-23T02:31:20.00Z\",\"previousVersion\":\"0.3.1\",\"releaseTimestamp\":\"2012-01-27T14:48:32.00Z\",\"requiredCore\":\"1.433\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"2SC4lvJtUwtW5e6ImdSJafagjJk=\",\"title\":\"Job Exporter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/job-exporter/0.4/job-exporter.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Job+Exporter+Plugin\"},\"job-import-plugin\":{\"buildDate\":\"Jul 20, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Import jobs from another Jenkins instance.\",\"gav\":\"org.jenkins-ci.plugins:job-import-plugin:1.0\",\"labels\":[\"misc\"],\"name\":\"job-import-plugin\",\"releaseTimestamp\":\"2011-07-21T03:44:40.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"er5mTVmSXct8aVcOVSdTO8xafbY=\",\"title\":\"Job Import Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/job-import-plugin/1.0/job-import-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Job+Import+Plugin\"},\"job-log-logger-plugin\":{\"buildDate\":\"Jan 17, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Write the job log to the underlying logging system.\",\"gav\":\"org.jenkins-ci.plugins:job-log-logger-plugin:1.0\",\"labels\":[\"misc\",\"buildwrapper\"],\"name\":\"job-log-logger-plugin\",\"releaseTimestamp\":\"2012-01-17T05:14:12.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"ikHWj/fSsoafQKcxjIV9Ov5UOm0=\",\"title\":\"Job Log Logger Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/job-log-logger-plugin/1.0/job-log-logger-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Job+Log+Logger+Plugin\"},\"job-poll-action-plugin\":{\"buildDate\":\"Mar 07, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Provides an easy mechanism to force a job to poll for SCM changes.\",\"gav\":\"org.jenkins-ci.plugins:job-poll-action-plugin:1.0\",\"labels\":[\"misc\",\"trigger\"],\"name\":\"job-poll-action-plugin\",\"releaseTimestamp\":\"2012-03-08T03:26:34.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"qehDx0VLMjyHlb/uULkO2hKvaxU=\",\"title\":\"Job Poll Action Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/job-poll-action-plugin/1.0/job-poll-action-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Job+Poll+Action+Plugin\"},\"job-strongauth-simple\":{\"buildDate\":\"Dec 17, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kkkon\",\"name\":\"KK.Kon\"}],\"excerpt\":\"This plugin allows you to safety builds for job, when multi-people approved \",\"gav\":\"org.jenkins-ci.plugins:job-strongauth-simple:0.5\",\"labels\":[\"builder\"],\"name\":\"job-strongauth-simple\",\"previousTimestamp\":\"2012-12-08T15:46:30.00Z\",\"previousVersion\":\"0.4\",\"releaseTimestamp\":\"2012-12-17T16:58:00.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"gwM1pQC1RLQKw7GCP8q6aYvfuh4=\",\"title\":\"Job StrongAuthSimple Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/job-strongauth-simple/0.5/job-strongauth-simple.hpi\",\"version\":\"0.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Job+StrongAuthSimple+Plugin\"},\"jobConfigHistory\":{\"buildDate\":\"Nov 19, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stefanbrausch\",\"email\":\"stefanbrausch@dev.java.net\",\"name\":\"Stefan Brausch\"},{\"developerId\":\"mfriedenhagen\",\"email\":\"mfriedenhagen@gmail.com\",\"name\":\"Mirko Friedenhagen\"},{\"developerId\":\"kstutz\",\"email\":\"kathi.stutz@1und1.de\",\"name\":\"Kathi Stutz\"}],\"excerpt\":\"Saves copies of all job and system configurations.\",\"gav\":\"org.jenkins-ci.plugins:jobConfigHistory:2.0\",\"labels\":[\"ui\",\"misc\"],\"name\":\"jobConfigHistory\",\"previousTimestamp\":\"2012-02-01T03:17:22.00Z\",\"previousVersion\":\"1.13\",\"releaseTimestamp\":\"2012-11-19T16:16:48.00Z\",\"requiredCore\":\"1.427\",\"scm\":\"github.com\",\"sha1\":\"mb4XoK5QUFv2gC1ppju6yoHnYSo=\",\"title\":\"JobConfigHistory Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jobConfigHistory/2.0/jobConfigHistory.hpi\",\"version\":\"2.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JobConfigHistory+Plugin\"},\"jobgenerator\":{\"buildDate\":\"Jan 09, 2013\",\"dependencies\":[{\"name\":\"parameterized-trigger\",\"optional\":true,\"version\":\"2.16\"},{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"},{\"name\":\"run-condition\",\"optional\":false,\"version\":\"0.10\"}],\"developers\":[{\"developerId\":\"syl20bnr\",\"email\":\"sylvain.benner@gmail.com\",\"name\":\"Sylvain Benner\"}],\"excerpt\":\"This plugin adds a new job type \\\"Job Generator\\\" which can generate new projects when executed.\",\"gav\":\"org.jenkins-ci.plugins:jobgenerator:1.08\",\"labels\":[\"misc\",\"parameter\"],\"name\":\"jobgenerator\",\"previousTimestamp\":\"2012-12-13T00:55:12.00Z\",\"previousVersion\":\"1.07\",\"releaseTimestamp\":\"2013-01-09T05:50:32.00Z\",\"requiredCore\":\"1.489\",\"scm\":\"github.com\",\"sha1\":\"VqOYowG7L5Vw9LHy1pLEBAsR88c=\",\"title\":\"Job Generator Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jobgenerator/1.08/jobgenerator.hpi\",\"version\":\"1.08\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Job+Generator+Plugin\"},\"jobrevision\":{\"buildDate\":\"Jan 03, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin enables users to set a revision (a version) for the Jenkins job.\",\"gav\":\"org.jenkins-ci.plugins:jobrevision:0.6\",\"labels\":[\"buildwrapper\"],\"name\":\"jobrevision\",\"previousTimestamp\":\"2011-05-17T01:55:38.00Z\",\"previousVersion\":\"0.5\",\"releaseTimestamp\":\"2012-01-03T06:10:46.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"q8lTZoa/FC+Yko0SuF7Abii8gYM=\",\"title\":\"JobRevision Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jobrevision/0.6/jobrevision.hpi\",\"version\":\"0.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JobRevision+Plugin\"},\"jobtype-column\":{\"buildDate\":\"Nov 22, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mindless\",\"email\":\"alan.harder@gmail.com\",\"name\":\"Alan Harder\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Adds column showing job type that can be configured in views.\",\"gav\":\"org.jenkins-ci.plugins:jobtype-column:1.3\",\"labels\":[\"listview-column\"],\"name\":\"jobtype-column\",\"previousTimestamp\":\"2011-12-10T05:01:38.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-11-22T05:39:46.00Z\",\"requiredCore\":\"1.465\",\"scm\":\"github.com\",\"sha1\":\"qysh5vJKwHhY17LMuR6H8y//vlg=\",\"title\":\"Job Type Column Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jobtype-column/1.3/jobtype-column.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Job+Type+Column+Plugin\"},\"join\":{\"buildDate\":\"May 03, 2012\",\"dependencies\":[{\"name\":\"downstream-ext\",\"optional\":true,\"version\":\"1.7\"},{\"name\":\"parameterized-trigger\",\"optional\":true,\"version\":\"2.13\"},{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.424\"},{\"name\":\"copyarchiver\",\"optional\":true,\"version\":\"0.5.1\"}],\"developers\":[{\"developerId\":\"mdonohue\",\"name\":\"Michael Donohue\"},{\"developerId\":\"wolfs\",\"name\":\"Stefan Wolf\"}],\"excerpt\":\"This plugin allows a job to be run after all the immediate downstream jobs have completed.\",\"gav\":\"org.jenkins-ci.plugins:join:1.15\",\"labels\":[\"trigger\"],\"name\":\"join\",\"previousTimestamp\":\"2012-04-06T02:00:36.00Z\",\"previousVersion\":\"1.14\",\"releaseTimestamp\":\"2012-05-03T15:32:50.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"SnyeBC16Q5qMWN+3iKHeCDffmuc=\",\"title\":\"Join Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/join/1.15/join.hpi\",\"version\":\"1.15\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Join+Plugin\"},\"jprt\":{\"buildDate\":\"Nov 04, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"email\":\"kk@kohsuke.org\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"\",\"gav\":\"org.jvnet.hudson.plugins:jprt:1.0\",\"name\":\"jprt\",\"releaseTimestamp\":\"2011-11-04T17:25:44.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"YMOe/KblCN57oAOgNmh6VLIzFxk=\",\"title\":\"JPRT Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jprt/1.0/jprt.hpi\",\"version\":\"1.0\"},\"jquery\":{\"buildDate\":\"Nov 15, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kiy0taka\",\"name\":\"Kiyotaka Oku\"},{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin is a library plugin for other plugins to share common jQuery. It also allows users to use jQuery on each view descriptions.\",\"gav\":\"org.jenkins-ci.plugins:jquery:1.7.2-1\",\"labels\":[\"ui\",\"library\"],\"name\":\"jquery\",\"previousTimestamp\":\"2012-06-14T22:22:24.00Z\",\"previousVersion\":\"1.7.2-0\",\"releaseTimestamp\":\"2012-11-16T01:14:04.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"UhqjwZK9YkLzvHoGZkYWAA8cshI=\",\"title\":\"jQuery Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jquery/1.7.2-1/jquery.hpi\",\"version\":\"1.7.2-1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/jQuery+Plugin\"},\"jquery-ui\":{\"buildDate\":\"Feb 27, 2011\",\"dependencies\":[{\"name\":\"jquery\",\"optional\":false,\"version\":\"1.0.2\"}],\"developers\":[{\"developerId\":\"kiy0taka\",\"name\":\"Kiyotaka Oku\"}],\"excerpt\":\"This plugin allows you to use jQuery UI on each view descriptions.\",\"gav\":\"org.jenkins-ci.plugins:jquery-ui:1.0.2\",\"labels\":[\"ui\"],\"name\":\"jquery-ui\",\"previousTimestamp\":\"2011-02-23T02:37:36.00Z\",\"previousVersion\":\"1.0.1\",\"releaseTimestamp\":\"2011-02-27T14:16:22.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"ViCgK4dU7QhkDfxlrK5m2Bw89og=\",\"title\":\"jQuery UI Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jquery-ui/1.0.2/jquery-ui.hpi\",\"version\":\"1.0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/jQuery+UI+Plugin\"},\"jsgames\":{\"buildDate\":\"Aug 05, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"cliffano\",\"email\":\"blah@cliffano.com\",\"name\":\"Cliffano Subagio\"}],\"excerpt\":\"Play some JavaScript games from the comfort of your Jenkins instance.\",\"gav\":\"org.jenkins-ci.plugins:jsgames:0.2\",\"labels\":[],\"name\":\"jsgames\",\"previousTimestamp\":\"2010-08-01T19:42:00.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2011-08-05T19:37:08.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"Hf5Xs8mph2L8KMF/J8MMt6nsgdk=\",\"title\":\"JSGames Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jsgames/0.2/jsgames.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JSGames+Plugin\"},\"jslint\":{\"buildDate\":\"Jan 03, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gavd\",\"email\":\"gavin.davies@boxuk.com\",\"name\":\"Gavin Davies\"}],\"excerpt\":\"Lint JavaScript files, outputting to checkstyle format. Supports all JSLint options. Developed by Box UK.\",\"gav\":\"org.jenkins-ci.plugins:jslint:0.7.6\",\"labels\":[\"misc\"],\"name\":\"jslint\",\"previousTimestamp\":\"2013-01-03T20:22:38.00Z\",\"previousVersion\":\"0.7.5\",\"releaseTimestamp\":\"2013-01-03T20:29:06.00Z\",\"requiredCore\":\"1.474\",\"scm\":\"github.com\",\"sha1\":\"jEMfwBcXR7sVqI74SlNY+ZwxO9g=\",\"title\":\"JSLint plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jslint/0.7.6/jslint.hpi\",\"version\":\"0.7.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JSLint+plugin\"},\"jsoup\":{\"buildDate\":\"Sep 17, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stephenc\",\"name\":\"Stephen Connolly\"}],\"excerpt\":\"This plugin provides a shared dependency on the jsoup library so that other plugins can co-operate when using this library.\",\"gav\":\"org.jenkins-ci.plugins:jsoup:1.6.3\",\"labels\":[],\"name\":\"jsoup\",\"releaseTimestamp\":\"2012-09-17T20:39:06.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"8ikQk817DT/9kj78e8xTq950Olk=\",\"title\":\"JSoup Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jsoup/1.6.3/jsoup.hpi\",\"version\":\"1.6.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JSoup+Plugin\"},\"jsunit\":{\"buildDate\":\"May 15, 2011\",\"dependencies\":[{\"name\":\"xunit\",\"optional\":false,\"version\":\"1.17\"}],\"developers\":[{\"developerId\":\"ricktw\",\"email\":\"r.oosterholt@gmail.com\",\"name\":\"Rick Oosterholt\"},{\"developerId\":\"gbois\",\"email\":\"gregory.boissinot@gmail.com\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin allows you publish <a href='http://www.jsunit.net/'>JSUnit<\\/a> test results \",\"gav\":\"org.jenkins-ci.plugins:jsunit:1.5\",\"labels\":[\"report\"],\"name\":\"jsunit\",\"previousTimestamp\":\"2011-04-01T05:16:00.00Z\",\"previousVersion\":\"1.4.2\",\"releaseTimestamp\":\"2011-05-16T03:27:22.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"jdoq+tEDly4shNVPMgQJ2oHa4Cs=\",\"title\":\"JSUnit plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jsunit/1.5/jsunit.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JSUnit+plugin\"},\"jswidgets\":{\"buildDate\":\"Jun 15, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mfriedenhagen\",\"email\":\"mfriedenhagen@gmail.com\",\"name\":\"Mirko Friedenhagen\"}],\"excerpt\":\"Allows embedding various statistics available from Jenkins in your via javascript-snippets ala ohloh.net.\",\"gav\":\"org.jenkins-ci.plugins:jswidgets:1.9\",\"labels\":[\"ui\"],\"name\":\"jswidgets\",\"previousTimestamp\":\"2011-02-16T02:51:02.00Z\",\"previousVersion\":\"1.8\",\"releaseTimestamp\":\"2012-06-16T01:20:10.00Z\",\"requiredCore\":\"1.424.6\",\"scm\":\"github.com\",\"sha1\":\"8VrYeQWlVHqo4zpbWRRMhloBlFM=\",\"title\":\"JSWidgets Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jswidgets/1.9/jswidgets.hpi\",\"version\":\"1.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JSWidgets+Plugin\"},\"junit-attachments\":{\"buildDate\":\"Dec 02, 2012\",\"dependencies\":[{\"name\":\"jquery\",\"optional\":false,\"version\":\"1.7.2-1\"}],\"developers\":[{\"developerId\":\"huybrechts\",\"name\":\"Tom Huybrechts\"},{\"developerId\":\"orrc\",\"email\":\"chris@orr.me.uk\",\"name\":\"Christopher Orr\"}],\"excerpt\":\"This plugin can archive certain files (attachments) together with your JUnit results.\",\"gav\":\"org.jenkins-ci.plugins:junit-attachments:1.3\",\"labels\":[\"report\"],\"name\":\"junit-attachments\",\"previousTimestamp\":\"2011-12-19T23:31:44.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-12-03T02:26:02.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"jMVSKozdQMSmYL8JF4b2RC4diPw=\",\"title\":\"JUnit Attachments Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/junit-attachments/1.3/junit-attachments.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/JUnit+Attachments+Plugin\"},\"jython\":{\"buildDate\":\"Dec 20, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jackgene\",\"email\":\"jackgene@java.net\",\"name\":\"Jack Leow\"},{\"developerId\":\"rtyler\",\"email\":\"tyler@slide.com\",\"name\":\"R. Tyler Ballance\"}],\"excerpt\":\"Adds the ability to execute Jython script\",\"gav\":\"org.jvnet.hudson.plugins:jython:1.9\",\"labels\":[\"builder\"],\"name\":\"jython\",\"previousTimestamp\":\"2011-12-16T05:27:04.00Z\",\"previousVersion\":\"1.8\",\"releaseTimestamp\":\"2011-12-20T05:44:30.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"github.com\",\"sha1\":\"9U3sTmSg5s5Rwr+HmV+CdVMQ0Qs=\",\"title\":\"Jython Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/jython/1.9/jython.hpi\",\"version\":\"1.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Jython+Plugin\"},\"kagemai\":{\"buildDate\":\"Dec 29, 2009\",\"dependencies\":[],\"developers\":[{\"developerId\":\"yamkazu\"}],\"excerpt\":\"This plugin integrates <a href='http://www.daifukuya.com/kagemai/'>Kagemai<\\/a> to Hudson.\",\"gav\":\"org.jvnet.hudson.plugins:kagemai:1.3\",\"labels\":[\"external\"],\"name\":\"kagemai\",\"previousTimestamp\":\"2009-03-04T05:43:20.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2009-12-29T05:16:58.00Z\",\"requiredCore\":\"1.324\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"tbzjjid8VTIw+JvmX+iBRpO+je8=\",\"title\":\"Kagemai Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/kagemai/1.3/kagemai.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Kagemai+Plugin\"},\"karotz\":{\"buildDate\":\"Jul 31, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"sogabe\",\"email\":\"s.sogabe@gmail.com\",\"name\":\"Seiji Sogabe\"}],\"excerpt\":\"This plugin aims to publish build results to your <a href='http://www.karotz.com/'>Karotz<\\/a>. \",\"gav\":\"org.jenkins-ci.plugins:karotz:0.2\",\"labels\":[\"notifier\"],\"name\":\"karotz\",\"previousTimestamp\":\"2011-12-23T17:45:56.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2012-07-31T08:17:20.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"yy4+fUnJy1gpaFGxBRf6vjND03g=\",\"title\":\"Karotz Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/karotz/0.2/karotz.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Karotz+Plugin\"},\"keepSlaveOffline\":{\"buildDate\":\"Feb 10, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vjuranek\",\"name\":\"Vojtech Juranek\"}],\"excerpt\":\"&nbsp; This plugin allows to keep given slave offline after Jenkins restart.\",\"gav\":\"hudson.plugins.keepSlaveOffline:keepSlaveOffline:1.0\",\"labels\":[\"slaves\"],\"name\":\"keepSlaveOffline\",\"releaseTimestamp\":\"2011-02-10T19:27:06.00Z\",\"requiredCore\":\"1.391\",\"scm\":\"github.com\",\"sha1\":\"AX3TuzSE9BNUo5wiCbdqbPQXDkA=\",\"title\":\"Keep slave offline\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/keepSlaveOffline/1.0/keepSlaveOffline.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Keep+slave+offline\"},\"keyboard-shortcuts-plugin\":{\"buildDate\":\"Apr 03, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Provides keyboard shortcuts to quickly and efficiently navigate and manage Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:keyboard-shortcuts-plugin:1.2\",\"labels\":[\"misc\",\"ui\"],\"name\":\"keyboard-shortcuts-plugin\",\"previousTimestamp\":\"2012-03-07T15:09:00.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-04-04T00:59:22.00Z\",\"requiredCore\":\"1.455\",\"scm\":\"github.com\",\"sha1\":\"vKTNGmyvXb6df8sqM9OEQgnvRCw=\",\"title\":\"Keyboard Shortcuts Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/keyboard-shortcuts-plugin/1.2/keyboard-shortcuts-plugin.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Keyboard+Shortcuts+Plugin\"},\"klaros-testmanagement\":{\"buildDate\":\"Apr 15, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stolp\",\"email\":\"stolp@verit.de\",\"name\":\"Torsten Stolpmann\"}],\"excerpt\":\"Integrates Jenkins with <a href='http://www.klaros-testmanagement.com/'>Klaros-Testmanagement<\\/a> by publishing the test results of a build to the <a href='http://www.klaros-testmanagement.com/'>Klaros-Testmanagement<\\/a> application. The test results will be stored in the <a href='http://www.klaros-testmanagement.com/'>Klaros-Testmanagement<\\/a> database for further evaluation and reporting purposes.\",\"gav\":\"hudson.plugins.klaros:klaros-testmanagement:1.4\",\"labels\":[\"external\"],\"name\":\"klaros-testmanagement\",\"previousTimestamp\":\"2011-04-08T18:32:22.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2011-04-15T19:51:04.00Z\",\"requiredCore\":\"1.388\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"wifWiNAPqqFPgOBYO7cUMdaJTUo=\",\"title\":\"Klaros-Testmanagement Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/klaros-testmanagement/1.4/klaros-testmanagement.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Klaros-Testmanagement+Plugin\"},\"klocwork\":{\"buildDate\":\"Nov 22, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"Aravindan\",\"name\":\"Aravindan Mahendran\"},{\"developerId\":\"gboissinot\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin makes it possible to publish Klocwork reports in Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:klocwork:1.14.1\",\"labels\":[\"report\"],\"name\":\"klocwork\",\"previousTimestamp\":\"2012-10-23T02:36:42.00Z\",\"previousVersion\":\"1.14\",\"releaseTimestamp\":\"2012-11-23T03:12:58.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"57426N92r9ocg1dcUYg/4tmyR64=\",\"title\":\"Klocwork Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/klocwork/1.14.1/klocwork.hpi\",\"version\":\"1.14.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Klocwork+Plugin\"},\"kundo\":{\"buildDate\":\"Jan 31, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ben_leedham\",\"name\":\"Ben Leedham\"}],\"excerpt\":\"This plugin allows you to invoke <a href='https://kundo.dev.java.net'>Kundo<\\/a> builds as a Jenkins build step.\",\"gav\":\"org.jvnet.hudson.plugins:kundo:0.2\",\"labels\":[\"builder\"],\"name\":\"kundo\",\"previousTimestamp\":\"2009-02-11T16:50:40.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2010-01-31T17:35:30.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"WTMU44CrQaDzYSRlsIYf+jJ29fc=\",\"title\":\"Kundo Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/kundo/0.2/kundo.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Kundo+Plugin\"},\"label-verifier\":{\"buildDate\":\"Sep 11, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin allows system administrator to programmatically verify the label assignment correctness on slaves.\",\"gav\":\"org.jvnet.hudson.plugins:label-verifier:1.0\",\"labels\":[\"slaves\"],\"name\":\"label-verifier\",\"releaseTimestamp\":\"2010-09-11T20:15:24.00Z\",\"requiredCore\":\"1.376\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"Z6+Xt/IhP6jRa3xJ1JuC81NxTLA=\",\"title\":\"Label Verifier Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/label-verifier/1.0/label-verifier.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Label+Verifier+Plugin\"},\"labeled-test-groups-publisher\":{\"buildDate\":\"Mar 20, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"dty\"}],\"excerpt\":\"This plugin provides the functionality to group tests by types, such as \\\"unit test\\\", \\\"smoke test\\\", \\\"regression test\\\", etc.\",\"gav\":\"org.jvnet.hudson.plugins:labeled-test-groups-publisher:1.2.6\",\"labels\":[\"report\"],\"name\":\"labeled-test-groups-publisher\",\"previousTimestamp\":\"2010-03-19T15:11:46.00Z\",\"previousVersion\":\"1.2.4\",\"releaseTimestamp\":\"2010-03-20T18:56:44.00Z\",\"requiredCore\":\"1.343\",\"scm\":\"hudson.dev.java.net\",\"sha1\":\"qKOSENwI3uZqYm9v8iaBDs1RMf0=\",\"title\":\"LabeledTestGroupsPublisher Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/labeled-test-groups-publisher/1.2.6/labeled-test-groups-publisher.hpi\",\"version\":\"1.2.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/LabeledTestGroupsPublisher+Plugin\"},\"labmanager\":{\"buildDate\":\"Aug 05, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tomrini\",\"email\":\"trini@kernel.crashing.org\",\"name\":\"Tom Rini\"}],\"excerpt\":\"Add VMware Lab Manager support to Jenkins\",\"gav\":\"org.jenkins-ci.plugins:labmanager:0.2.8\",\"labels\":[\"cluster\"],\"name\":\"labmanager\",\"previousTimestamp\":\"2011-07-18T19:12:32.00Z\",\"previousVersion\":\"0.2.7\",\"releaseTimestamp\":\"2011-08-05T14:42:14.00Z\",\"requiredCore\":\"1.403\",\"scm\":\"github.com\",\"sha1\":\"qc+HiOyoRAPvDCyvrtQ9W9pmLQ4=\",\"title\":\"Lab Manager Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/labmanager/0.2.8/labmanager.hpi\",\"version\":\"0.2.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Lab+Manager+Plugin\"},\"lastfailureversioncolumn\":{\"buildDate\":\"Nov 02, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ajpurkiss\",\"email\":\"ajpurkiss@hotmail.com\",\"name\":\"Adam Purkiss\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Adds a column showing last failed version that can be configured in views.\",\"gav\":\"org.jvnet.hudson.plugins:lastfailureversioncolumn:1.1\",\"labels\":[\"listview-column\"],\"name\":\"lastfailureversioncolumn\",\"previousTimestamp\":\"2009-11-25T15:12:18.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-11-02T19:54:40.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"TrjhYHvx09364NnzSgkj+XqemQg=\",\"title\":\"Last Failure Version Column Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/lastfailureversioncolumn/1.1/lastfailureversioncolumn.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Last+Failure+Version+Column+Plugin\"},\"lastsuccessdescriptioncolumn\":{\"buildDate\":\"Mar 29, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stephenconnolly\",\"email\":\"stephenc at apache\",\"name\":\"Stephen Connolly\"}],\"excerpt\":\"Column showing the last success description that can be configured in views.\",\"gav\":\"org.jvnet.hudson.plugins:lastsuccessdescriptioncolumn:1.0\",\"labels\":[\"listview-column\"],\"name\":\"lastsuccessdescriptioncolumn\",\"releaseTimestamp\":\"2010-03-29T16:03:02.00Z\",\"requiredCore\":\"1.352\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"I2n8cOXtRE3nJI/spxIMtHBAxn8=\",\"title\":\"Last Success Description Column Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/lastsuccessdescriptioncolumn/1.0/lastsuccessdescriptioncolumn.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Last+Success+Description+Column+Plugin\"},\"lastsuccessversioncolumn\":{\"buildDate\":\"Nov 02, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ajpurkiss\",\"email\":\"ajpurkiss@hotmail.com\",\"name\":\"Adam Purkiss\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Adds a column showing last successful version that can be configured in views.\",\"gav\":\"org.jvnet.hudson.plugins:lastsuccessversioncolumn:1.1\",\"labels\":[\"listview-column\"],\"name\":\"lastsuccessversioncolumn\",\"previousTimestamp\":\"2009-11-25T15:15:48.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-11-02T20:23:24.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"MTwbngVgz/iGTTeZwjEviC8CIHo=\",\"title\":\"Last Success Version Column Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/lastsuccessversioncolumn/1.1/lastsuccessversioncolumn.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Last+Success+Version+Column+Plugin\"},\"ldap\":{\"buildDate\":\"Dec 06, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"olamy\"}],\"excerpt\":\"Security realm based on LDAP authentication.\",\"gav\":\"org.jenkins-ci.plugins:ldap:1.2\",\"labels\":[\"user\"],\"name\":\"ldap\",\"previousTimestamp\":\"2012-06-11T12:46:48.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-12-06T05:07:48.00Z\",\"requiredCore\":\"1.468\",\"scm\":\"github.com\",\"sha1\":\"IGPQPJsTRl4d9UHjBldQ4P8DKNo=\",\"title\":\"LDAP Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ldap/1.2/ldap.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/LDAP+Plugin\"},\"ldapemail\":{\"buildDate\":\"Feb 14, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"justinedelson\",\"name\":\"Justin Edelson\"}],\"excerpt\":\"This plugin resolves user email addresses from an LDAP directory. It is not needed if Jenkins uses LDAP as its authentication source and user records have a standard \\\"mail\\\" attribute.\",\"gav\":\"com.mtvi.plateng.hudson:ldapemail:0.7\",\"labels\":[\"user\"],\"name\":\"ldapemail\",\"previousTimestamp\":\"2010-01-31T20:19:28.00Z\",\"previousVersion\":\"0.6\",\"releaseTimestamp\":\"2011-02-14T15:47:26.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"Q1UqwPQJ9sILBa8KpiC6hzozVD4=\",\"title\":\"LDAP Email Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ldapemail/0.7/ldapemail.hpi\",\"version\":\"0.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/LDAP+Email+Plugin\"},\"leiningen-plugin\":{\"buildDate\":\"Oct 29, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"pyr\",\"email\":\"pyr@spootnik.org\",\"name\":\"Pierre-Yves Ritschard\"}],\"excerpt\":\"This plugin allows building projects using <a href='http://leiningen.org/'>leiningen<\\/a>. \",\"gav\":\"org.jenkins-ci.plugins:leiningen-plugin:0.5.5\",\"labels\":[\"builder\"],\"name\":\"leiningen-plugin\",\"previousTimestamp\":\"2012-09-07T13:11:38.00Z\",\"previousVersion\":\"0.5.4\",\"releaseTimestamp\":\"2012-10-29T19:00:26.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"EK4cKrLwhOuqEbpcnMmg4SG39ro=\",\"title\":\"leiningen plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/leiningen-plugin/0.5.5/leiningen-plugin.hpi\",\"version\":\"0.5.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/leiningen+plugin\"},\"libvirt-slave\":{\"buildDate\":\"Apr 01, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mmornati\",\"email\":\"mmornati@byte-code.com\",\"name\":\"Marco Mornati\"}],\"excerpt\":\"Add Libvirt Hypervisor support to Jenkins \",\"gav\":\"hudson.plugins.libvirt:libvirt-slave:1.6\",\"labels\":[\"slaves\",\"cluster\"],\"name\":\"libvirt-slave\",\"previousTimestamp\":\"2010-03-30T15:22:16.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2010-04-01T13:31:26.00Z\",\"requiredCore\":\"1.347\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"3JDC9QPj5p+JJMdiNaDMYgWJpc4=\",\"title\":\"Libvirt Slaves Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/libvirt-slave/1.6/libvirt-slave.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Libvirt+Slaves+Plugin\"},\"lingr-plugin\":{\"buildDate\":\"Jul 03, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"cactusman\",\"email\":\"cactusman1980@gmail.com\",\"name\":\"cactusman\"}],\"excerpt\":\"This plugin posts build results to Lingr.\",\"gav\":\"org.jenkins-ci.plugins:lingr-plugin:0.1\",\"labels\":[],\"name\":\"lingr-plugin\",\"releaseTimestamp\":\"2011-07-04T03:14:14.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"LO6eODnAR0TTzMunzjDmv9LZLk0=\",\"title\":\"lingr plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/lingr-plugin/0.1/lingr-plugin.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/lingr+plugin\"},\"list-command\":{\"buildDate\":\"Dec 13, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"wadatka\",\"name\":\"Takahisa Wada\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:list-command:0.2\",\"labels\":[\"cli\"],\"name\":\"list-command\",\"releaseTimestamp\":\"2011-12-13T06:39:14.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"wsiA/aNli+2UOL7iYNN9pQqiFng=\",\"title\":\"List Command Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/list-command/0.2/list-command.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/List+Command+Plugin\"},\"liverebel-deploy\":{\"buildDate\":\"Nov 21, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"toomasr\",\"name\":\"Toomas Romer\"},{\"developerId\":\"DracoAter\",\"name\":\"Juri Timosin\"},{\"developerId\":\"mirkozt\",\"name\":\"Mirko Adari\"},{\"developerId\":\"atsuiboupin\",\"name\":\"Ats Uiboupin\"},{\"developerId\":\"poolik\",\"name\":\"Tonis Pool\"}],\"excerpt\":\"LiveRebel Plugin helps to run updates to your JEE containers faster. LiveRebel is a tool for hot updates without downtime, lost sessions and OutOfMemoryErrors. You have to have a running LiveRebel Command Center to use this plugin.\",\"gav\":\"org.jenkins-ci.plugins:liverebel-deploy:2.5.4\",\"name\":\"liverebel-deploy\",\"previousTimestamp\":\"2012-11-22T00:05:34.00Z\",\"previousVersion\":\"2.5.3\",\"releaseTimestamp\":\"2012-11-22T00:45:14.00Z\",\"requiredCore\":\"1.423\",\"scm\":\"github.com\",\"sha1\":\"vNUI81TLpPqia5XY6Epc8tGpMWg=\",\"title\":\"LiveRebel Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/liverebel-deploy/2.5.4/liverebel-deploy.hpi\",\"version\":\"2.5.4\"},\"locale\":{\"buildDate\":\"Feb 14, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin controls the language of Jenkins\",\"gav\":\"org.jvnet.hudson.plugins:locale:1.2\",\"labels\":[\"ui\"],\"name\":\"locale\",\"previousTimestamp\":\"2009-12-30T20:34:04.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2011-02-14T15:32:34.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"HmtbDDPNAYBO4A4OWzjUg4zzyQY=\",\"title\":\"Locale Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/locale/1.2/locale.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Locale+Plugin\"},\"locked-files-report\":{\"buildDate\":\"Feb 03, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"redsolo\",\"email\":\"eramfelt@gmail.com\",\"name\":\"Erik Ramfelt\"}],\"excerpt\":\"This debug plugin fails a build if there are locked files in the workspace at the begining or end of a build.\",\"gav\":\"org.jvnet.hudson.plugins:locked-files-report:1.6\",\"labels\":[\"misc\"],\"name\":\"locked-files-report\",\"previousTimestamp\":\"2011-11-17T04:11:50.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2012-02-03T16:37:10.00Z\",\"requiredCore\":\"1.363\",\"scm\":\"github.com\",\"sha1\":\"RTRJ07yTXFfmfA5guhnhmIw2zig=\",\"title\":\"Locked Files Report Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/locked-files-report/1.6/locked-files-report.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Locked+Files+Report+Plugin\"},\"locks-and-latches\":{\"buildDate\":\"Apr 16, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"F276977\"}],\"excerpt\":\"This plugin allows you to control the parallel execution of jobs.\",\"gav\":\"org.jvnet.hudson.plugins:locks-and-latches:0.6\",\"labels\":[\"trigger\",\"buildwrapper\"],\"name\":\"locks-and-latches\",\"previousTimestamp\":\"2009-12-26T17:42:06.00Z\",\"previousVersion\":\"0.5\",\"releaseTimestamp\":\"2010-04-16T18:46:48.00Z\",\"requiredCore\":\"1.318\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"zbuMjM7kQDsLt4fkzLxcCZWAcEI=\",\"title\":\"Locks and Latches plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/locks-and-latches/0.6/locks-and-latches.hpi\",\"version\":\"0.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Locks+and+Latches+plugin\"},\"log-command\":{\"buildDate\":\"Nov 20, 2012\",\"dependencies\":[{\"name\":\"instant-messaging\",\"optional\":true,\"version\":\"1.22\"}],\"developers\":[{\"developerId\":\"ialbors\",\"name\":\"Ignacio Albors\"}],\"excerpt\":\"Adds a command for the CLI which shows a build's console log. If <a href='https://wiki.jenkins-ci.org/display/JENKINS/Instant+Messaging+Plugin'>instant-messaging-plugin<\\/a> is installed, it also provides a command for it (Jabber, IRC, ...).\",\"gav\":\"org.jenkins-ci.plugins:log-command:1.0.1\",\"labels\":[\"cli\"],\"name\":\"log-command\",\"previousTimestamp\":\"2012-11-14T21:57:28.00Z\",\"previousVersion\":\"1.0.0\",\"releaseTimestamp\":\"2012-11-20T18:13:08.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"463jFhLMW7JM0p4leFcAdOnx8gM=\",\"title\":\"Log Command\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/log-command/1.0.1/log-command.hpi\",\"version\":\"1.0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Log+Command\"},\"log-parser\":{\"buildDate\":\"Dec 14, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"rgoren\",\"email\":\"rgoren@cisco.com\",\"name\":\"Rinat Ailon\"},{\"developerId\":\"jborghi\",\"name\":\"John Borghi\"}],\"excerpt\":\"Parse the console output and highlight error/warning/info lines.\",\"gav\":\"org.jvnet.hudson.plugins:log-parser:1.0.8\",\"labels\":[\"report\"],\"name\":\"log-parser\",\"previousTimestamp\":\"2010-08-24T18:30:26.00Z\",\"previousVersion\":\"1.0.7\",\"releaseTimestamp\":\"2010-12-14T23:30:40.00Z\",\"requiredCore\":\"1.350\",\"scm\":\"svn.java.net\",\"sha1\":\"E7PtHvlAe19jLoUL4auFXjFBuQI=\",\"title\":\"Log Parser Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/log-parser/1.0.8/log-parser.hpi\",\"version\":\"1.0.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Log+Parser+Plugin\"},\"logaction-plugin\":{\"buildDate\":\"Dec 09, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tspengler\",\"name\":\"Thomas Spengler\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Centralized configuration to restart jobs when a pattern occurs in the job console output.\",\"gav\":\"de.fspengler.hudson.plugin:logaction-plugin:1.2\",\"labels\":[\"trigger\"],\"name\":\"logaction-plugin\",\"releaseTimestamp\":\"2011-12-09T20:10:58.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"h5n7nAMn1cTIE76p72JCU8Sdn/I=\",\"title\":\"Centralized Job(Re)Action Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/logaction-plugin/1.2/logaction-plugin.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Centralized+Job%28Re%29Action+Plugin\"},\"logfilesizechecker\":{\"buildDate\":\"Sep 10, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stefanbrausch\",\"email\":\"stefan.brausch@1und1.de\",\"name\":\"Stefan Brausch\"},{\"developerId\":\"kstutz\",\"email\":\"logfilesizechecker@kathistutz.de\",\"name\":\"Kathi Stutz\"}],\"excerpt\":\"Aborts a build if its log file gets too big.\",\"gav\":\"org.jenkins-ci.plugins:logfilesizechecker:1.0\",\"labels\":[\"buildwrapper\"],\"name\":\"logfilesizechecker\",\"releaseTimestamp\":\"2012-09-10T21:16:48.00Z\",\"requiredCore\":\"1.424.6\",\"scm\":\"github.com\",\"sha1\":\"ViVedzoIuG7IweIxL3YWunyDm6Y=\",\"title\":\"Logfilesizechecker Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/logfilesizechecker/1.0/logfilesizechecker.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Logfilesizechecker+Plugin\"},\"logging\":{\"buildDate\":\"Nov 06, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"wolfgarnet\",\"email\":\"coolers@praqma.net\",\"name\":\"Christian Wolfgang\"}],\"excerpt\":\"Advanced logging for Jenkins\",\"gav\":\"net.praqma:logging:0.2.6\",\"labels\":[\"misc\"],\"name\":\"logging\",\"previousTimestamp\":\"2012-10-01T19:03:04.00Z\",\"previousVersion\":\"0.2.5\",\"releaseTimestamp\":\"2012-11-06T05:57:54.00Z\",\"requiredCore\":\"1.483\",\"scm\":\"github.com\",\"sha1\":\"KnnEo1edZZYMFF1p7EmpCk+UTjA=\",\"title\":\"Logging Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/logging/0.2.6/logging.hpi\",\"version\":\"0.2.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Logging+Plugin\"},\"lotus-connections-plugin\":{\"buildDate\":\"Nov 07, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"philrumble\",\"email\":\"prumble@au1.ibm.com\",\"name\":\"Phil Rumble\"}],\"excerpt\":\"This plugin posts build results to Lotus Connections. \",\"gav\":\"org.jenkins-ci.plugins:lotus-connections-plugin:1.18\",\"labels\":[\"notifier\"],\"name\":\"lotus-connections-plugin\",\"previousTimestamp\":\"2012-11-06T15:25:30.00Z\",\"previousVersion\":\"1.17\",\"releaseTimestamp\":\"2012-11-07T16:25:10.00Z\",\"requiredCore\":\"1.425\",\"scm\":\"github.com\",\"sha1\":\"qrrK3PuD7dIX/OFNTW3+6y42v00=\",\"title\":\"Lotus Connections plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/lotus-connections-plugin/1.18/lotus-connections-plugin.hpi\",\"version\":\"1.18\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Lotus+Connections+plugin\"},\"m2-extra-steps\":{\"buildDate\":\"Mar 06, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.405\"}],\"developers\":[{\"developerId\":\"abayer\",\"email\":\"andrew.bayer@gmail.com\",\"name\":\"Andrew Bayer\"}],\"excerpt\":\"Deprecated since core 1.433. This plugin provides the ability to add pre\\\\- and post-build steps to Maven 2-type projects.\",\"gav\":\"org.jenkins-ci.plugins:m2-extra-steps:1.1.7\",\"labels\":[\"maven\",\"buildwrapper\"],\"name\":\"m2-extra-steps\",\"previousTimestamp\":\"2011-02-17T22:02:08.00Z\",\"previousVersion\":\"1.1.4\",\"releaseTimestamp\":\"2012-03-06T15:24:48.00Z\",\"requiredCore\":\"1.405\",\"scm\":\"github.com\",\"sha1\":\"NXhS+oZu2LXH+r3owM8g+KQjY4M=\",\"title\":\"M2 Extra Steps Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/m2-extra-steps/1.1.7/m2-extra-steps.hpi\",\"version\":\"1.1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/M2+Extra+Steps+Plugin\"},\"m2-repo-reaper\":{\"buildDate\":\"Oct 04, 2009\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.326\"}],\"developers\":[{\"developerId\":\"bimargulies\",\"email\":\"bimargulies@gmail.com\",\"name\":\"Benson Margulies\"}],\"excerpt\":\"This plugin allows you to configure a maven2 job to clean some or all of the artifacts from the repository before it runs.\",\"gav\":\"org.jvnet.hudson.plugins:m2-repo-reaper:1.0\",\"labels\":[\"maven\"],\"name\":\"m2-repo-reaper\",\"releaseTimestamp\":\"2009-10-04T22:36:20.00Z\",\"requiredCore\":\"1.326\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"OfP4GcPtlYX4tSKveYgBKar1/IU=\",\"title\":\"M2 Repository Cleanup Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/m2-repo-reaper/1.0/m2-repo-reaper.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/M2+Repository+Cleanup+Plugin\"},\"m2release\":{\"buildDate\":\"Mar 01, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"2.2.1\"},{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.442\"}],\"developers\":[{\"developerId\":\"teilo\",\"name\":\"James Nord\"},{\"developerId\":\"m68k\",\"name\":\"Christian Slama\"},{\"developerId\":\"imod\",\"name\":\"Dominik Bartholdi\"}],\"excerpt\":\"This plugin allows you to perform a release build using the <a href='http://maven.apache.org/plugins/maven-release-plugin/'>maven-release-plugin<\\/a> from within Jenkins. \",\"gav\":\"org.jvnet.hudson.plugins.m2release:m2release:0.9.1\",\"labels\":[\"buildwrapper\",\"maven\"],\"name\":\"m2release\",\"previousTimestamp\":\"2012-02-14T02:16:34.00Z\",\"previousVersion\":\"0.9.0\",\"releaseTimestamp\":\"2012-03-02T03:07:30.00Z\",\"requiredCore\":\"1.442\",\"scm\":\"github.com\",\"sha1\":\"gvSzteQBQNyKsA8/n4CjA1gKY9w=\",\"title\":\"M2 Release Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/m2release/0.9.1/m2release.hpi\",\"version\":\"0.9.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/M2+Release+Plugin\"},\"mail-watcher-plugin\":{\"buildDate\":\"Nov 27, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"olivergondza\",\"email\":\"ogondza@redhat.org\",\"name\":\"Oliver Gondža\"}],\"excerpt\":\"This plugin notifies configured email recipients on various events.\",\"gav\":\"org.jenkins-ci.plugins:mail-watcher-plugin:1.4\",\"labels\":[\"notifier\"],\"name\":\"mail-watcher-plugin\",\"previousTimestamp\":\"2012-08-13T16:02:28.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2012-11-27T19:29:00.00Z\",\"requiredCore\":\"1.460\",\"scm\":\"github.com\",\"sha1\":\"qoNIny4C0Cla2oCPvE6v5emFZ6U=\",\"title\":\"Mail Watcher Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/mail-watcher-plugin/1.4/mail-watcher-plugin.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Mail+Watcher+Plugin\"},\"mailcommander\":{\"buildDate\":\"Mar 29, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"sikakura\",\"email\":\"sikakura@gmail.com\",\"name\":\"Naoto Shikakura\"}],\"excerpt\":\"This plugin is provide function that command with e-mail. Write CLI command to e-mail subject and send to pre setting address. Mail Commander recieve e-mail from pre setting address, and read e-mail subject as CLI command, execute it. \",\"gav\":\"org.jenkins-ci.plugins:mailcommander:1.0.0\",\"labels\":[\"misc\",\"trigger\"],\"name\":\"mailcommander\",\"releaseTimestamp\":\"2011-03-29T22:40:10.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"VIMj7SMq0q1KjiWU3XV2LoKl4ck=\",\"title\":\"Mail Commander Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/mailcommander/1.0.0/mailcommander.hpi\",\"version\":\"1.0.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Mail+Commander+Plugin\"},\"mailer\":{\"buildDate\":\"Dec 11, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"slide\",\"email\":\"slide.o.mix@gmail.com\",\"name\":\"Alex Earl\"}],\"excerpt\":\"This plugin allows you to configure email notifications. This is a break-out of the original core based email component.\",\"gav\":\"org.jenkins-ci.plugins:mailer:1.4\",\"labels\":[],\"name\":\"mailer\",\"previousTimestamp\":\"2012-12-09T11:47:18.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2012-12-11T14:57:26.00Z\",\"requiredCore\":\"1.494\",\"scm\":\"github.com\",\"sha1\":\"bFbSgXi8beI21BGEtWNXXsXHSSU=\",\"title\":\"Mailer\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/mailer/1.4/mailer.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Mailer\"},\"managed-scripts\":{\"buildDate\":\"Oct 11, 2012\",\"dependencies\":[{\"name\":\"config-file-provider\",\"optional\":false,\"version\":\"2.0\"}],\"developers\":[{\"developerId\":\"imod\",\"name\":\"Dominik Bartholdi\"}],\"excerpt\":\"Managed scripts are shell script which are managed centrally by an administrator and can be referenced as a build step within jobs. \",\"gav\":\"org.jenkinsci.plugins:managed-scripts:1.0.1\",\"labels\":[\"builder\"],\"name\":\"managed-scripts\",\"previousTimestamp\":\"2012-04-14T15:53:10.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-10-11T23:22:04.00Z\",\"requiredCore\":\"1.458\",\"scm\":\"github.com\",\"sha1\":\"XoL/aR2532IzNJMWVLEMtPT0jTM=\",\"title\":\"Managed Script Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/managed-scripts/1.0.1/managed-scripts.hpi\",\"version\":\"1.0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Managed+Script+Plugin\"},\"mantis\":{\"buildDate\":\"May 01, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424\"},{\"name\":\"mercurial\",\"optional\":true,\"version\":\"1.38\"},{\"name\":\"cvs\",\"optional\":true,\"version\":\"2.0\"},{\"name\":\"git\",\"optional\":true,\"version\":\"1.1.16\"},{\"name\":\"subversion\",\"optional\":true,\"version\":\"1.34\"}],\"developers\":[{\"developerId\":\"sogabe\",\"email\":\"s.sogabe@gmail.com\",\"name\":\"Seiji Sogabe\"}],\"excerpt\":\"This plugin integrates <a href='http://www.mantisbt.org/'>Mantis Bug Tracker<\\/a> to Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:mantis:0.24\",\"labels\":[\"external\"],\"name\":\"mantis\",\"previousTimestamp\":\"2012-04-01T14:45:38.00Z\",\"previousVersion\":\"0.23\",\"releaseTimestamp\":\"2012-05-01T08:03:46.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"7Bck6rhjKQo4D2Xkv0eRxCA+gtY=\",\"title\":\"Mantis Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/mantis/0.24/mantis.hpi\",\"version\":\"0.24\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Mantis+Plugin\"},\"mask-passwords\":{\"buildDate\":\"Dec 07, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"rseguy\",\"email\":\"romain.seguy@gmail.com\",\"name\":\"Romain Seguy\"}],\"excerpt\":\"This plugin allows masking passwords that may appear in the console\",\"gav\":\"org.jenkins-ci.plugins:mask-passwords:2.7.2\",\"labels\":[\"misc\",\"buildwrapper\"],\"name\":\"mask-passwords\",\"previousTimestamp\":\"2011-10-27T14:08:40.00Z\",\"previousVersion\":\"2.7.1\",\"releaseTimestamp\":\"2011-12-07T22:34:20.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"KYnDW0mS7LT9QqcbiQGwSnrHcY0=\",\"title\":\"Mask Passwords Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/mask-passwords/2.7.2/mask-passwords.hpi\",\"version\":\"2.7.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Mask+Passwords+Plugin\"},\"matrix-reloaded\":{\"buildDate\":\"Jun 05, 2012\",\"dependencies\":[{\"name\":\"downstream-ext\",\"optional\":true,\"version\":\"1.7\"}],\"developers\":[{\"developerId\":\"wolfgarnet\",\"email\":\"coolers@praqma.net\",\"name\":\"Christian Wolfgang\"}],\"excerpt\":\"The Matrix Reloaded Plugin allows for rebuilding parts of an already built Matrix build.\",\"gav\":\"net.praqma:matrix-reloaded:1.1.0\",\"labels\":[\"misc\"],\"name\":\"matrix-reloaded\",\"previousTimestamp\":\"2012-01-27T10:25:14.00Z\",\"previousVersion\":\"1.0.2\",\"releaseTimestamp\":\"2012-06-05T05:29:20.00Z\",\"requiredCore\":\"1.418\",\"scm\":\"github.com\",\"sha1\":\"xSvwhLU6lvwdwxSVGSA2UI0h+m4=\",\"title\":\"Matrix Reloaded Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/matrix-reloaded/1.1.0/matrix-reloaded.hpi\",\"version\":\"1.1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Matrix+Reloaded+Plugin\"},\"matrixtieparent\":{\"buildDate\":\"Aug 23, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kbertelson\",\"name\":\"Ken Bertelson\"}],\"excerpt\":\"Ties the parent build of a multi-configuration project to a node.\",\"gav\":\"org.jvnet.hudson.plugins:matrixtieparent:1.1\",\"labels\":[\"buildwrapper\"],\"name\":\"matrixtieparent\",\"previousTimestamp\":\"2010-06-08T12:23:20.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2010-08-23T20:51:26.00Z\",\"requiredCore\":\"1.373\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"rwErLQ/J5sYGD0Vz/wCzwzYpe00=\",\"title\":\"Matrix Tie Parent Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/matrixtieparent/1.1/matrixtieparent.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Matrix+Tie+Parent+Plugin\"},\"maven-dependency-update-trigger\":{\"buildDate\":\"Dec 30, 2011\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424.1\"}],\"developers\":[{\"developerId\":\"olamy\",\"email\":\"olamy@apache.org\"}],\"excerpt\":\"This plugin will check if any SNAPSHOT dependencies (or optionally plugins SNAPSHOT) have been updated during your project's dependencies resolution and trigger a build. You have to configure a cron expression.\",\"gav\":\"org.jenkins-ci.plugins:maven-dependency-update-trigger:1.4\",\"labels\":[\"trigger\"],\"name\":\"maven-dependency-update-trigger\",\"previousTimestamp\":\"2011-08-13T14:44:12.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2011-12-30T21:15:14.00Z\",\"requiredCore\":\"1.424.1\",\"scm\":\"github.com\",\"sha1\":\"QbYx4H55qskJfKAf/poqBbLjZ4w=\",\"title\":\"Maven Dependency Update trigger\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/maven-dependency-update-trigger/1.4/maven-dependency-update-trigger.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Maven+Dependency+Update+trigger\"},\"maven-deployment-linker\":{\"buildDate\":\"May 11, 2012\",\"dependencies\":[{\"name\":\"async-http-client\",\"optional\":false,\"version\":\"1.7.4\"}],\"developers\":[{\"developerId\":\"lshatzer\",\"email\":\"larrys@gmail.com\",\"name\":\"Larry Shatzer, Jr.\"},{\"developerId\":\"vlatombe\",\"email\":\"vincent.latombe@gmail.com\",\"name\":\"Vincent Latombe\"},{\"developerId\":\"aheritier\",\"email\":\"aheritier@apache.org\",\"name\":\"Arnaud H�ritier\"},{\"developerId\":\"imod\",\"name\":\"Dominik Bartholdi\"}],\"excerpt\":\"This plugin will add a summary on the build of the artifacts uploaded to your maven repository and a builder to download the uploaded artifacts to other projects. \",\"gav\":\"org.jvnet.hudson.plugins:maven-deployment-linker:1.5\",\"labels\":[\"maven\",\"misc\",\"post-build\"],\"name\":\"maven-deployment-linker\",\"previousTimestamp\":\"2011-11-30T18:16:40.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2012-05-11T10:12:24.00Z\",\"requiredCore\":\"1.406\",\"scm\":\"github.com\",\"sha1\":\"WQoh5v7YkBXt6ElM1Q0Awx+MoiU=\",\"title\":\"Maven Deployment Linker\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/maven-deployment-linker/1.5/maven-deployment-linker.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Maven+Deployment+Linker\"},\"maven-info\":{\"buildDate\":\"Apr 11, 2011\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.403\"}],\"developers\":[{\"developerId\":\"tomfolga\",\"email\":\"tomfolga@gmail.com\",\"name\":\"Tom Folga\"},{\"developerId\":\"olamy\",\"email\":\"olamy@apache.org\",\"name\":\"Olivier Lamy\"}],\"excerpt\":\"Adds columns configurable in views to show info about Maven jobs.\",\"gav\":\"org.tomfolga:maven-info:0.0.4\",\"labels\":[\"maven\",\"listview-column\"],\"name\":\"maven-info\",\"previousTimestamp\":\"2009-12-28T22:52:10.00Z\",\"previousVersion\":\"0.0.3\",\"releaseTimestamp\":\"2011-04-12T03:38:06.00Z\",\"requiredCore\":\"1.403\",\"scm\":\"github.com\",\"sha1\":\"2dBQ8RFU8doGYPwiOwt/0wrF03s=\",\"title\":\"Maven Info Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/maven-info/0.0.4/maven-info.hpi\",\"version\":\"0.0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Maven+Info+Plugin\"},\"maven-invoker-plugin\":{\"buildDate\":\"Sep 26, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424\"}],\"developers\":[{\"developerId\":\"olamy\"}],\"excerpt\":\"Display reports on Maven Invoker it tests.\",\"gav\":\"org.jenkins-ci.plugins:maven-invoker-plugin:1.2\",\"labels\":[\"maven\",\"external\"],\"name\":\"maven-invoker-plugin\",\"previousTimestamp\":\"2012-08-07T16:07:34.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-09-26T14:59:44.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"t+q8qhvZtYEhCP2h9ydHmsoW54o=\",\"title\":\"Maven Invoker Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/maven-invoker-plugin/1.2/maven-invoker-plugin.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Maven+Invoker+Plugin\"},\"maven-metadata-plugin\":{\"buildDate\":\"Apr 17, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"markov\",\"email\":\"gesh@markov.eu\",\"name\":\"Georgi \\\"Gesh\\\" Markov\"}],\"excerpt\":\"This plugin adds a new build parameter type for resolving artifact versions reading the repository <a href='http://docs.codehaus.org/display/MAVEN/Repository+Metadata'>maven-metadata.xml<\\/a>. \",\"gav\":\"eu.markov.jenkins.plugin.mvnmeta:maven-metadata-plugin:1.0.0\",\"labels\":[\"maven\",\"parameter\"],\"name\":\"maven-metadata-plugin\",\"releaseTimestamp\":\"2012-04-17T04:37:50.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"Ibn9AwLZAwe70Eg9ARNhOfoxIGU=\",\"title\":\"Maven Metadata Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/maven-metadata-plugin/1.0.0/maven-metadata-plugin.hpi\",\"version\":\"1.0.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Maven+Metadata+Plugin\"},\"maven-plugin\":{\"buildDate\":\"Jan 07, 2013\",\"dependencies\":[{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.1\"},{\"name\":\"mailer\",\"optional\":false,\"version\":\"1.3\"}],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"Jenkin's Maven 2 project type\",\"gav\":\"org.jenkins-ci.main:maven-plugin:1.498\",\"labels\":[\"builder\"],\"name\":\"maven-plugin\",\"previousTimestamp\":\"2013-01-06T18:35:28.00Z\",\"previousVersion\":\"1.497\",\"releaseTimestamp\":\"2013-01-07T15:49:02.00Z\",\"requiredCore\":\"1.498\",\"scm\":\"github.com\",\"sha1\":\"e2SpfZjG8sXhm0B0UxcoUor3Vx4=\",\"title\":\"Maven 2 Project Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/maven-plugin/1.498/maven-plugin.hpi\",\"version\":\"1.498\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Maven+2+Project+Plugin\"},\"maven-repo-cleaner\":{\"buildDate\":\"Jan 08, 2013\",\"dependencies\":[{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.468\"}],\"developers\":[{\"developerId\":\"abayer\",\"email\":\"andrew.bayer@gmail.com\",\"name\":\"Andrew Bayer\"},{\"developerId\":\"olamy\",\"name\":\"Olivier Lamy\"}],\"excerpt\":\"Clean your jobs maven repositories.\",\"gav\":\"org.jenkins-ci.plugins:maven-repo-cleaner:1.2\",\"labels\":[\"maven\",\"external\"],\"name\":\"maven-repo-cleaner\",\"previousTimestamp\":\"2012-04-24T17:37:56.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2013-01-08T19:03:10.00Z\",\"requiredCore\":\"1.468\",\"scm\":\"github.com\",\"sha1\":\"AZrDlB5CA7b9DO5cZoQP7AK18Dg=\",\"title\":\"Maven Repo Cleaner Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/maven-repo-cleaner/1.2/maven-repo-cleaner.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Maven+Repo+Cleaner+Plugin\"},\"measurement-plots\":{\"buildDate\":\"Apr 07, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"krwalker\",\"email\":\"krwalker@stellarscience.com\",\"name\":\"K. R. Walker\"}],\"excerpt\":\"Plot measurements embedded into the standard output and error streams of tests.\",\"gav\":\"org.jvnet.hudson.plugins:measurement-plots:0.1\",\"labels\":[\"report\",\"ui\"],\"name\":\"measurement-plots\",\"releaseTimestamp\":\"2010-04-07T15:51:46.00Z\",\"requiredCore\":\"1.353\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"amNqnjOy0kALkROSNj7RlllqBes=\",\"title\":\"Measurement Plots Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/measurement-plots/0.1/measurement-plots.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Measurement+Plots+Plugin\"},\"memegen\":{\"buildDate\":\"Aug 18, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"joonty\",\"email\":\"jon@joncairns.com\",\"name\":\"Jon Cairns\"}],\"excerpt\":\"Generate Meme images when a build fails (and returns to stable), and post them on the project page.\",\"gav\":\"hudson.plugins.memegen:memegen:0.4.3\",\"labels\":[\"misc\"],\"name\":\"memegen\",\"previousTimestamp\":\"2012-07-25T16:46:46.00Z\",\"previousVersion\":\"0.4.2\",\"releaseTimestamp\":\"2012-08-18T18:27:52.00Z\",\"requiredCore\":\"1.428\",\"scm\":\"github.com\",\"sha1\":\"a2YT4odR+TftMmBR1GM/xyZUepg=\",\"title\":\"Meme Generator Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/memegen/0.4.3/memegen.hpi\",\"version\":\"0.4.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Meme+Generator+Plugin\"},\"memory-map\":{\"buildDate\":\"Jan 03, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"praqma\"}],\"excerpt\":\"\",\"gav\":\"net.praqma:memory-map:0.1.2\",\"name\":\"memory-map\",\"previousTimestamp\":\"2012-12-21T17:04:16.00Z\",\"previousVersion\":\"0.1.1\",\"releaseTimestamp\":\"2013-01-03T16:46:50.00Z\",\"requiredCore\":\"1.484\",\"scm\":\"github.com\",\"sha1\":\"B3mAip7ASkL+ZaavCantpN0i0E0=\",\"title\":\"Memory Map Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/memory-map/0.1.2/memory-map.hpi\",\"version\":\"0.1.2\"},\"mercurial\":{\"buildDate\":\"Nov 06, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jglick\",\"email\":\"jglick@cloudbees.com\",\"name\":\"Jesse Glick\"},{\"developerId\":\"mfriedenhagen\",\"email\":\"mfriedenhagen@gmail.com\",\"name\":\"Mirko Friedenhagen\"},{\"developerId\":\"kohsuke\",\"email\":\"kk@kohsuke.org\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"davidmc24\",\"email\":\"david@carrclan.us\",\"name\":\"David M. Carr\"}],\"excerpt\":\"This plugin integrates the <a href='http://selenic.com/mercurial/'>Mercurial version control system<\\/a> with Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:mercurial:1.42\",\"labels\":[\"scm\"],\"name\":\"mercurial\",\"previousTimestamp\":\"2012-06-05T15:32:46.00Z\",\"previousVersion\":\"1.41\",\"releaseTimestamp\":\"2012-11-06T15:44:52.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"4p47jh0Wvfq2hzF5vhXW+rcBdeg=\",\"title\":\"Mercurial Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/mercurial/1.42/mercurial.hpi\",\"version\":\"1.42\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Mercurial+Plugin\"},\"metadata\":{\"buildDate\":\"Nov 22, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424\"}],\"developers\":[{\"developerId\":\"rsandell\",\"email\":\"robert.sandell@sonymobile.com\",\"name\":\"Robert Sandell\"},{\"developerId\":\"t_westling\",\"email\":\"tomas.westling@sonymobile.com\",\"name\":\"Tomas Westling\"}],\"excerpt\":\"This plugin allows metadata to be added to projects, builds and slaves in Jenkins. Users can add metadata manually on a project or slave via the user interface. Metadata can also be added programmatically through a plugin. Currently, this can be done when a build starts or when a build ends. The Metadata can then be searched for.\",\"gav\":\"com.sonyericsson.hudson.plugins.metadata:metadata:1.0b\",\"labels\":[\"misc\",\"cli\",\"library\",\"ui\"],\"name\":\"metadata\",\"releaseTimestamp\":\"2012-11-22T20:54:58.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"csrASr2vYSgQW3oRcPSwYgsH5hc=\",\"title\":\"Metadata plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/metadata/1.0b/metadata.hpi\",\"version\":\"1.0b\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Metadata+plugin\"},\"mock-security-realm\":{\"buildDate\":\"Oct 15, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jglick\",\"email\":\"jglick@cloudbees.com\",\"name\":\"Jesse Glick\"}],\"excerpt\":\"Defines an insecure “security realm” only good for testing/demoing other parts of the system, such as authorization strategy.\",\"gav\":\"org.jenkins-ci.plugins:mock-security-realm:1.0\",\"labels\":[\"user\"],\"name\":\"mock-security-realm\",\"releaseTimestamp\":\"2012-10-15T21:43:26.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"p1Mn51uVzjA3NY8WctfAC/Flrjk=\",\"title\":\"Mock Security Realm Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/mock-security-realm/1.0/mock-security-realm.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Mock+Security+Realm+Plugin\"},\"mongodb\":{\"buildDate\":\"Aug 13, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kiy0taka\",\"name\":\"Kiyotaka Oku\"}],\"excerpt\":\"This plugin provides <a href='http://www.mongodb.org/'>MongoDB<\\/a> integration capabilities.\",\"gav\":\"org.jenkins-ci.plugins:mongodb:1.1\",\"labels\":[\"buildwrapper\"],\"name\":\"mongodb\",\"previousTimestamp\":\"2011-06-13T03:10:04.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-08-13T22:25:40.00Z\",\"requiredCore\":\"1.415\",\"scm\":\"github.com\",\"sha1\":\"LHjhJQsYgihyz1oMMWHmxY++lzA=\",\"title\":\"MongoDB Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/mongodb/1.1/mongodb.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/MongoDB+Plugin\"},\"monitoring\":{\"buildDate\":\"Dec 02, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"evernat\",\"email\":\"evernat@free.fr\",\"name\":\"Emeric Vernat\"}],\"excerpt\":\"Monitoring plugin: Monitoring of Jenkins / Hudson itself with <a href='http://javamelody.googlecode.com'>JavaMelody<\\/a>. Open the <a href='http://localhost:8080/monitoring'>report<\\/a> (or [http://yourhost/monitoring]) after installation. \",\"gav\":\"org.jvnet.hudson.plugins:monitoring:1.42.0\",\"labels\":[\"misc\"],\"name\":\"monitoring\",\"previousTimestamp\":\"2012-09-30T20:11:20.00Z\",\"previousVersion\":\"1.41.0\",\"releaseTimestamp\":\"2012-12-03T04:53:36.00Z\",\"requiredCore\":\"1.424.1\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"IxikHEm09tHJvYHYuDm6srWJWek=\",\"title\":\"Monitoring\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/monitoring/1.42.0/monitoring.hpi\",\"version\":\"1.42.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Monitoring\"},\"monkit-plugin\":{\"buildDate\":\"Jun 08, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"wolfgarnet\",\"email\":\"coolers@praqma.net\",\"name\":\"Christian Wolfgang\"}],\"excerpt\":\"*The MonKit plugin is used to display charts of data delivered in XML compliant with* *<a href='http://code.praqma.net/schemas/monkit/1.0.1/monkit.xsd'>monkit.xsd<\\/a>**. Monkit also has a small Java API you can use to produce the XML.*   \",\"gav\":\"net.praqma:monkit-plugin:0.2.6\",\"labels\":[],\"name\":\"monkit-plugin\",\"previousTimestamp\":\"2012-06-08T15:38:48.00Z\",\"previousVersion\":\"0.2.5\",\"releaseTimestamp\":\"2012-06-08T17:57:40.00Z\",\"requiredCore\":\"1.426\",\"scm\":\"github.com\",\"sha1\":\"3BK+9CQZ1Z8IbNHjoFUTzQeqF98=\",\"title\":\"MonKit Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/monkit-plugin/0.2.6/monkit-plugin.hpi\",\"version\":\"0.2.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/MonKit+Plugin\"},\"mozmill\":{\"buildDate\":\"Mar 03, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"admc\",\"name\":\"Adam Christian\"}],\"excerpt\":\"This plugin allows you to use <a href='https://developer.mozilla.org/en/Mozmill'>Mozmill<\\/a> for automated tests in Gecko based applications such as Firefox and Thunderbird.\",\"gav\":\"org.jvnet.hudson.plugins:mozmill:1.3\",\"labels\":[\"report\"],\"name\":\"mozmill\",\"previousTimestamp\":\"2009-09-26T01:08:04.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2010-03-03T14:53:58.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"KAMwwP+6nH6enzbIhbHqf3UXhHU=\",\"title\":\"Mozmill Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/mozmill/1.3/mozmill.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Mozmill+Plugin\"},\"msbuild\":{\"buildDate\":\"Sep 17, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gregory.boissinot@gmail.com\",\"name\":\"Gregory Boissinot\"},{\"developerId\":\"kdsweeney\",\"email\":\"kyle.sweeney@valtech.com\",\"name\":\"Kyle Sweeney\"}],\"excerpt\":\"This plugin allows you to use MSBuild to build .NET projects. \",\"gav\":\"org.jenkins-ci.plugins:msbuild:1.16\",\"labels\":[\"builder\"],\"name\":\"msbuild\",\"previousTimestamp\":\"2012-08-15T22:36:46.00Z\",\"previousVersion\":\"1.15\",\"releaseTimestamp\":\"2012-09-18T03:59:10.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"IyON3Vma6gGfp4D204eP2RrARJA=\",\"title\":\"MSBuild Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/msbuild/1.16/msbuild.hpi\",\"version\":\"1.16\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/MSBuild+Plugin\"},\"mstest\":{\"buildDate\":\"Jun 17, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"acmarques\",\"name\":\"Antonio Marques\"}],\"excerpt\":\"This plugin converts <a href='http://msdn.microsoft.com/en-us/library/ms182486.aspx'>MSTest<\\/a> TRX test reports into JUnit XML reports  so it can be integrated with Hudson's JUnit features.\",\"gav\":\"org.jvnet.hudson.plugins:mstest:0.7\",\"labels\":[\"report\"],\"name\":\"mstest\",\"previousTimestamp\":\"2010-02-12T01:25:58.00Z\",\"previousVersion\":\"0.6\",\"releaseTimestamp\":\"2011-06-17T14:23:04.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"FaaKhPYNMlF9Cz/FnvFI8PPZSyY=\",\"title\":\"MSTest Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/mstest/0.7/mstest.hpi\",\"version\":\"0.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/MSTest+Plugin\"},\"mstestrunner\":{\"buildDate\":\"Sep 14, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ido_ran\",\"email\":\"ido.ran@gmail.com\",\"name\":\"Ido Ran\"}],\"excerpt\":\"This plugin allow you to execute test using MSTest command line tool. \",\"gav\":\"org.jenkins-ci.plugins:mstestrunner:0.2.1\",\"labels\":[\"builder\"],\"name\":\"mstestrunner\",\"previousTimestamp\":\"2012-09-03T03:04:44.00Z\",\"previousVersion\":\"0.2.0\",\"releaseTimestamp\":\"2012-09-14T17:48:28.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"ac/Ft2vNccjBigOaOC258PpZ5Uo=\",\"title\":\"MSTestRunner Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/mstestrunner/0.2.1/mstestrunner.hpi\",\"version\":\"0.2.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/MSTestRunner+Plugin\"},\"multi-module-tests-publisher\":{\"buildDate\":\"Dec 17, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vimil\",\"email\":\"vimilsaju@yahoo.com\",\"name\":\"Vimil Saju\"}],\"excerpt\":\"This plugin stores junit results into an embedded derby database and groups testcases by module,package,class and case \",\"gav\":\"org.jenkins-ci.plugins:multi-module-tests-publisher:1.30\",\"labels\":[\"post-build\"],\"name\":\"multi-module-tests-publisher\",\"previousTimestamp\":\"2012-12-17T16:26:46.00Z\",\"previousVersion\":\"1.29\",\"releaseTimestamp\":\"2012-12-17T18:42:32.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"dO61rR0XMGqiyHT6pKSYUvshBt4=\",\"title\":\"Multi Module Tests Publisher\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/multi-module-tests-publisher/1.30/multi-module-tests-publisher.hpi\",\"version\":\"1.30\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Multi+Module+Tests+Publisher\"},\"multi-slave-config-plugin\":{\"buildDate\":\"Sep 22, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"nilsi\",\"email\":\"nicklas3.nilsson@sonyericsson.com\",\"name\":\"Nicklas Nilsson\"},{\"developerId\":\"fredrikpersson\",\"email\":\"fredrik4.persson@sonyericsson.com\",\"name\":\"Fredrik Persson\"},{\"developerId\":\"rsandell\",\"email\":\"robert.sandell@sonyericsson.com\",\"name\":\"Robert Sandell\"}],\"excerpt\":\"This plugin allows administrators to configure, add and delete several dumb slaves at the same time. \\\\\\\\  \",\"gav\":\"com.sonyericsson.hudson.plugins.multi-slave-config-plugin:multi-slave-config-plugin:1.0.0\",\"labels\":[\"slaves\",\"cluster\"],\"name\":\"multi-slave-config-plugin\",\"releaseTimestamp\":\"2011-09-22T14:07:48.00Z\",\"requiredCore\":\"1.404\",\"scm\":\"github.com\",\"sha1\":\"XnZWFOQiPcX+hnyeV2o9WZu0a3o=\",\"title\":\"Multi slave config plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/multi-slave-config-plugin/1.0.0/multi-slave-config-plugin.hpi\",\"version\":\"1.0.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Multi+slave+config+plugin\"},\"multiline-tabbar-plugin\":{\"buildDate\":\"Oct 26, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"wjprakash\",\"name\":\"Winston Prakash\"}],\"excerpt\":\"Provides a multi-line tab bar for views.\",\"gav\":\"org.jvnet.hudson.plugins:multiline-tabbar-plugin:1.1\",\"labels\":[],\"name\":\"multiline-tabbar-plugin\",\"releaseTimestamp\":\"2010-10-26T21:23:48.00Z\",\"requiredCore\":\"1.381\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"CwZW+NwZVngsfDjFR0QV1TQU0F4=\",\"title\":\"Extension Point for Project Views Navigation\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/multiline-tabbar-plugin/1.1/multiline-tabbar-plugin.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Extension+Point+for+Project+Views+Navigation\"},\"multiple-scms\":{\"buildDate\":\"Jan 19, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kbell\",\"email\":\"kbell6397@gmail.com\",\"name\":\"Kevin Bell\"}],\"excerpt\":\"Allows a job to check out sources from multiple SCM providers.\",\"gav\":\"org.jenkins-ci.plugins:multiple-scms:0.2\",\"labels\":[\"scm\"],\"name\":\"multiple-scms\",\"previousTimestamp\":\"2011-03-07T13:35:58.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2012-01-20T03:40:26.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"VUywzdM7W830oUcHo9POQTy3vQk=\",\"title\":\"Multiple SCMs Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/multiple-scms/0.2/multiple-scms.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Multiple+SCMs+Plugin\"},\"mysql-auth\":{\"buildDate\":\"Apr 16, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"darkhonor\",\"name\":\"Alex Ackerman\"}],\"excerpt\":\"This plugin allows users to authenticate to a Hudson instance using credentials stored in a MySQL database.\",\"gav\":\"org.jvnet.hudson.plugins:mysql-auth:1.0\",\"labels\":[\"user\"],\"name\":\"mysql-auth\",\"releaseTimestamp\":\"2010-04-16T18:53:42.00Z\",\"requiredCore\":\"1.324\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"AGFSK1xi/4VhdiFRaLAEbPQielE=\",\"title\":\"MySQL Authentication Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/mysql-auth/1.0/mysql-auth.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/MySQL+Authentication+Plugin\"},\"nabaztag\":{\"buildDate\":\"Mar 24, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stephannoske\",\"name\":\"Stephan Noske\"},{\"developerId\":\"ericlemerdy\",\"name\":\"Eric Le Merdy\"}],\"excerpt\":\"Publish the result of a build to a <a href='http://www.nabaztag.com/'>Nabaztag<\\/a>.\",\"gav\":\"org.jvnet.hudson.plugins:nabaztag:1.9\",\"labels\":[\"notifier\"],\"name\":\"nabaztag\",\"previousTimestamp\":\"2010-03-24T04:03:24.00Z\",\"previousVersion\":\"1.8\",\"releaseTimestamp\":\"2010-03-24T04:46:42.00Z\",\"requiredCore\":\"1.352\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"OoZ/cLug7ELrWrLnVVKQvPxKocE=\",\"title\":\"Nabaztag Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/nabaztag/1.9/nabaztag.hpi\",\"version\":\"1.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Nabaztag+Plugin\"},\"naginator\":{\"buildDate\":\"Jun 12, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"abayer\",\"email\":\"andrew.bayer@gmail.com\",\"name\":\"Andrew Bayer\"},{\"developerId\":\"ndeloof\",\"email\":\"nicolas.deloof@gmail.com\",\"name\":\"Nicolas De Loof\"}],\"excerpt\":\"This plugin allows you to automatically reschedule a build after a build failure.\",\"gav\":\"org.jenkins-ci.plugins:naginator:1.8\",\"labels\":[\"trigger\"],\"name\":\"naginator\",\"previousTimestamp\":\"2012-05-31T11:57:44.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2012-06-12T18:27:52.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"PKx91+n+EUjCDYvSjlLEPsseJWA=\",\"title\":\"Naginator Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/naginator/1.8/naginator.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Naginator+Plugin\"},\"nant\":{\"buildDate\":\"Nov 01, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jholzer\",\"email\":\"jsholzer@gmail.com\",\"name\":\"Justin Holzer\"}],\"excerpt\":\"This plugin allows for the execution of a <a href='http://nant.sourceforge.net/'>NAnt<\\/a> build as a build step.\",\"gav\":\"org.jenkins-ci.plugins:nant:1.4.3\",\"labels\":[\"builder\"],\"name\":\"nant\",\"previousTimestamp\":\"2011-08-06T03:10:18.00Z\",\"previousVersion\":\"1.4.2\",\"releaseTimestamp\":\"2012-11-01T19:09:26.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"Pfm4i25OeWGv2CozWtlYEeEpmf0=\",\"title\":\"NAnt Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/nant/1.4.3/nant.hpi\",\"version\":\"1.4.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/NAnt+Plugin\"},\"ncover\":{\"buildDate\":\"Mar 03, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mcrooney\",\"name\":\"Michael Rooney\"}],\"excerpt\":\"Archive and publish .NET code coverage HTML reports from <a href='http://www.ncover.com/'>NCover<\\/a>.\",\"gav\":\"org.jvnet.hudson.plugins:ncover:0.3\",\"labels\":[\"report\"],\"name\":\"ncover\",\"previousTimestamp\":\"2009-07-28T15:03:22.00Z\",\"previousVersion\":\"0.2.6\",\"releaseTimestamp\":\"2010-03-03T15:19:58.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"a3ytPYkKW4fNuePM3moMw9L2atw=\",\"title\":\"NCover Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ncover/0.3/ncover.hpi\",\"version\":\"0.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/NCover+Plugin\"},\"nerrvana-plugin\":{\"buildDate\":\"Jan 09, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vic\",\"email\":\"wise@deepshiftlabs.com\",\"name\":\"Victor Orlov\"}],\"excerpt\":\"The Nerrvana Jenkins plugin allows you to automate functional and cross browser Selenium testing of your web applications in <a href='http://www.nerrvana.com/'>Nerrvana cloud<\\/a>. \",\"gav\":\"org.jenkins-ci.plugins:nerrvana-plugin:1.02.01\",\"labels\":[\"buildwrapper\"],\"name\":\"nerrvana-plugin\",\"previousTimestamp\":\"2012-11-09T21:08:44.00Z\",\"previousVersion\":\"1.02r\",\"releaseTimestamp\":\"2013-01-09T21:18:00.00Z\",\"requiredCore\":\"1.450\",\"scm\":\"github.com\",\"sha1\":\"INcuvHLlMvY9473ktzPxwEP2bVA=\",\"title\":\"Nerrvana Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/nerrvana-plugin/1.02.01/nerrvana-plugin.hpi\",\"version\":\"1.02.01\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Nerrvana+Plugin\"},\"nested-view\":{\"buildDate\":\"Aug 16, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mindless\",\"name\":\"Alan Harder\"}],\"excerpt\":\"View type to allow grouping job views into multiple levels instead of one big list of tabs.\",\"gav\":\"org.jenkins-ci.plugins:nested-view:1.9\",\"labels\":[\"ui\"],\"name\":\"nested-view\",\"previousTimestamp\":\"2011-07-28T13:12:10.00Z\",\"previousVersion\":\"1.8\",\"releaseTimestamp\":\"2012-08-16T18:21:48.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"cDhpdm1XhoFTOrJxvAbrYK5itmI=\",\"title\":\"Nested View Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/nested-view/1.9/nested-view.hpi\",\"version\":\"1.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Nested+View+Plugin\"},\"network-monitor\":{\"buildDate\":\"Nov 02, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"email\":\"kk@kohsuke.org\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"This plugin checks that slaves can resolve host names.\",\"gav\":\"org.jvnet.hudson.plugins:network-monitor:1.1\",\"name\":\"network-monitor\",\"previousTimestamp\":\"2011-11-02T21:21:52.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-11-02T21:23:54.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"LLmUM0bZA8aUt7UDRDJehDbm4Pc=\",\"title\":\"Slave Monitor for network connectivity\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/network-monitor/1.1/network-monitor.hpi\",\"version\":\"1.1\"},\"next-build-number\":{\"buildDate\":\"Oct 12, 2009\",\"dependencies\":[],\"developers\":[{\"developerId\":\"dty\",\"name\":\"Dean Yu\"}],\"excerpt\":\"This is a simple plugin that changes the next build number Hudson will use for a job.\",\"gav\":\"org.jvnet.hudson.plugins:next-build-number:1.0\",\"labels\":[\"misc\"],\"name\":\"next-build-number\",\"releaseTimestamp\":\"2009-10-12T16:47:52.00Z\",\"requiredCore\":\"1.327\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"zHL2fn/oow0DhVkyVqtXEwGgh6Q=\",\"title\":\"Next Build Number Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/next-build-number/1.0/next-build-number.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Next+Build+Number+Plugin\"},\"next-executions\":{\"buildDate\":\"Nov 07, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ialbors\",\"name\":\"Ignacio Albors\"}],\"excerpt\":\"Adds a widget in the sidebar with the next _build_ date for all the scheduled projects. It also creates a column definition.\",\"gav\":\"org.jenkins-ci.plugins:next-executions:1.0.5\",\"labels\":[\"ui\",\"listview-column\"],\"name\":\"next-executions\",\"previousTimestamp\":\"2012-02-26T01:36:58.00Z\",\"previousVersion\":\"1.0.4\",\"releaseTimestamp\":\"2012-11-08T00:00:16.00Z\",\"requiredCore\":\"1.448\",\"scm\":\"github.com\",\"sha1\":\"9YUI5a6xUlAd4K1xGyZ7U6DqZQU=\",\"title\":\"Next Executions\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/next-executions/1.0.5/next-executions.hpi\",\"version\":\"1.0.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Next+Executions\"},\"nexus-task-runner\":{\"buildDate\":\"Nov 07, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"quramy\",\"email\":\"yosuke.kurami@gmail.com\",\"name\":\"Yosuke Kurami\"}],\"excerpt\":\"This plugin executes Sonatype Nexus scheduled tasks after your build. \",\"gav\":\"org.jenkins-ci.plugins:nexus-task-runner:0.9.2\",\"labels\":[\"external\"],\"name\":\"nexus-task-runner\",\"previousTimestamp\":\"2012-11-05T08:31:54.00Z\",\"previousVersion\":\"0.9.1\",\"releaseTimestamp\":\"2012-11-07T06:05:14.00Z\",\"requiredCore\":\"1.431\",\"scm\":\"github.com\",\"sha1\":\"x8AE0OnWLgmcJ0EEpG9CZfw/7fA=\",\"title\":\"Nexus Task Runner Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/nexus-task-runner/0.9.2/nexus-task-runner.hpi\",\"version\":\"0.9.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Nexus+Task+Runner+Plugin\"},\"nodejs\":{\"buildDate\":\"Aug 13, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"cliffano\"}],\"excerpt\":\"Executes NodeJS script as a build step.\",\"gav\":\"org.jvnet.hudson.plugins:nodejs:0.1\",\"labels\":[],\"name\":\"nodejs\",\"releaseTimestamp\":\"2010-08-13T23:39:14.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"BleVb3djw0y+z7I/yO8OOZ85UrQ=\",\"title\":\"NodeJS Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/nodejs/0.1/nodejs.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/NodeJS+Plugin\"},\"nodelabelparameter\":{\"buildDate\":\"Dec 09, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"},{\"name\":\"parameterized-trigger\",\"optional\":true,\"version\":\"2.12\"}],\"developers\":[{\"developerId\":\"imod\",\"name\":\"Dominik Bartholdi\"}],\"excerpt\":\"This plugin adds two new parameter types to job configuration - node and label, this allows to dynamically select the node where a job/project should be executed.\",\"gav\":\"org.jenkins-ci.plugins:nodelabelparameter:1.3\",\"labels\":[\"slaves\",\"trigger\",\"parameter\"],\"name\":\"nodelabelparameter\",\"previousTimestamp\":\"2012-07-02T22:58:44.00Z\",\"previousVersion\":\"1.2.1\",\"releaseTimestamp\":\"2012-12-09T23:19:18.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"7MiTTj/N+61jvS7/9pnzyXSDQz8=\",\"title\":\"NodeLabel Parameter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/nodelabelparameter/1.3/nodelabelparameter.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/NodeLabel+Parameter+Plugin\"},\"nodenamecolumn\":{\"buildDate\":\"Apr 17, 2010\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.323\"}],\"developers\":[{\"developerId\":\"knagired\"}],\"excerpt\":\"Adds column showing node name and can be configured in views.\",\"gav\":\"org.jvnet.hudson.plugins:nodenamecolumn:1.1\",\"labels\":[\"listview-column\"],\"name\":\"nodenamecolumn\",\"previousTimestamp\":\"2010-02-01T22:09:02.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2010-04-17T04:59:30.00Z\",\"requiredCore\":\"1.323\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"2H2mVNiHRJyec17oGx0nq7hFyJc=\",\"title\":\"Node Name Column Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/nodenamecolumn/1.1/nodenamecolumn.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Node+Name+Column+Plugin\"},\"nodeofflinenotification\":{\"buildDate\":\"Apr 01, 2012\",\"dependencies\":[{\"name\":\"ruby-runtime\",\"optional\":false,\"version\":\"0.9\"}],\"developers\":[{\"developerId\":\"Jens\"}],\"excerpt\":\"Get a notification by email if one of your nodes suddenly goes offline \",\"gav\":\"org.jenkins-ci.ruby-plugins:nodeofflinenotification:1.0.3\",\"labels\":[],\"name\":\"nodeofflinenotification\",\"previousTimestamp\":\"2012-03-31T23:22:28.00Z\",\"previousVersion\":\"1.0.2\",\"releaseTimestamp\":\"2012-04-01T13:09:52.00Z\",\"requiredCore\":\"1.432\",\"scm\":\"github.com\",\"sha1\":\"3e3F4WMYh7ZHYZuc2fNfZqATmP4=\",\"title\":\"Node Offline Notification Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/nodeofflinenotification/1.0.3/nodeofflinenotification.hpi\",\"version\":\"1.0.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Node+Offline+Notification+Plugin\"},\"nopmdcheck\":{\"buildDate\":\"Oct 26, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"quramy\",\"email\":\"yosuke.kurami@gmail.com\",\"name\":\"Yosuke Kurami\"}],\"excerpt\":\"This plugin checks the keyword 'NOPMD' in your codes. \",\"gav\":\"org.jenkins-ci.plugins:nopmdcheck:0.9\",\"labels\":[\"misc\"],\"name\":\"nopmdcheck\",\"releaseTimestamp\":\"2012-10-26T04:22:38.00Z\",\"requiredCore\":\"1.431\",\"scm\":\"github.com\",\"sha1\":\"xOSCCk+0dudR2JIXXJOR3C/Vblo=\",\"title\":\"nopmdcheck Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/nopmdcheck/0.9/nopmdcheck.hpi\",\"version\":\"0.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/nopmdcheck+Plugin\"},\"nopmdverifytrac\":{\"buildDate\":\"Oct 26, 2012\",\"dependencies\":[{\"name\":\"nopmdcheck\",\"optional\":false,\"version\":\"0.9\"}],\"developers\":[{\"developerId\":\"yosuke\"}],\"excerpt\":\"When you use Trac to tracking issues, this plugin makes a report about whether 'NOPMD' in your codes are right. \",\"gav\":\"org.jenkins-ci.plugins:nopmdverifytrac:0.9\",\"labels\":[\"external\"],\"name\":\"nopmdverifytrac\",\"releaseTimestamp\":\"2012-10-26T04:56:42.00Z\",\"requiredCore\":\"1.431\",\"scm\":\"github.com\",\"sha1\":\"FxaTSxaqdp9mIgxcrDnNDht+zqs=\",\"title\":\"nopmdverifytrac Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/nopmdverifytrac/0.9/nopmdverifytrac.hpi\",\"version\":\"0.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/nopmdverifytrac+Plugin\"},\"notification\":{\"buildDate\":\"Nov 28, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"markb\",\"email\":\"markb@tikalk.com\",\"name\":\"Mark Berner\"}],\"excerpt\":\"Allows sending job status notifications via HTTP, TCP or UDP.\",\"gav\":\"com.tikalk.hudson.plugins:notification:1.4\",\"labels\":[\"notifier\"],\"name\":\"notification\",\"previousTimestamp\":\"2011-08-26T20:58:26.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2011-11-28T18:11:46.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"bAnxrIEdbamDJ55eQ8t5cqnSv2k=\",\"title\":\"Notification Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/notification/1.4/notification.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Notification+Plugin\"},\"notifo\":{\"buildDate\":\"Jul 29, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"csamuel\",\"email\":\"csamuel@gmail.com\",\"name\":\"Chris Samuel\"}],\"excerpt\":\"Integration with the <a href='https://api.notifo.com/'>Notifo API<\\/a> to push build notifications to mobile devices.\",\"gav\":\"org.jvnet.hudson.plugins:notifo:1.0.1\",\"labels\":[\"notifier\"],\"name\":\"notifo\",\"releaseTimestamp\":\"2010-07-29T20:24:08.00Z\",\"requiredCore\":\"1.366\",\"scm\":\"github.com\",\"sha1\":\"DTMHyiL48RRh0Y8xQ5wbZbno5cI=\",\"title\":\"Notifo Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/notifo/1.0.1/notifo.hpi\",\"version\":\"1.0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Notifo+Plugin\"},\"nsiqcollector\":{\"buildDate\":\"Aug 06, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"iceize\",\"email\":\"iceize@nhn.com\",\"name\":\"Oh, Young-eun\"},{\"developerId\":\"junoyoon\",\"email\":\"junoyoon@gmail.com\",\"name\":\"JunHo Yoon\"}],\"excerpt\":\"This plugin shows the lines of code and cyclomatic complexity from from external metric tools named <a href='http://dev.naver.com/projects/nsiqcollector'>N'SIQ Collector<\\/a>.\",\"gav\":\"org.jvnet.hudson.plugins:nsiqcollector:1.3.3\",\"labels\":[\"report\"],\"name\":\"nsiqcollector\",\"previousTimestamp\":\"2010-10-21T15:30:16.00Z\",\"previousVersion\":\"1.3.2\",\"releaseTimestamp\":\"2011-08-06T12:25:34.00Z\",\"requiredCore\":\"1.395\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"LifvvdE4okdqHY9o5QYG25QerC0=\",\"title\":\"NSIQ Collector Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/nsiqcollector/1.3.3/nsiqcollector.hpi\",\"version\":\"1.3.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/NSIQ+Collector+Plugin\"},\"nunit\":{\"buildDate\":\"May 06, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"redsolo\",\"email\":\"eramfelt@gmail.com\",\"name\":\"Erik Ramfelt\"}],\"excerpt\":\"This plugin allows you to publish <a href='http://www.nunit.org/'>NUnit<\\/a> test results.\",\"gav\":\"org.jvnet.hudson.plugins:nunit:0.14\",\"labels\":[\"report\"],\"name\":\"nunit\",\"previousTimestamp\":\"2011-03-16T03:19:14.00Z\",\"previousVersion\":\"0.13\",\"releaseTimestamp\":\"2011-05-07T00:22:06.00Z\",\"requiredCore\":\"1.380\",\"scm\":\"github.com\",\"sha1\":\"XmEZuOE7CVue+7vSRG0PvPjSn6o=\",\"title\":\"NUnit Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/nunit/0.14/nunit.hpi\",\"version\":\"0.14\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/NUnit+Plugin\"},\"offlineonfailure-plugin\":{\"buildDate\":\"Jun 19, 2011\",\"dependencies\":[],\"developers\":[{\"email\":\"andreas.nilsson@atex.com\",\"name\":\"Andreas Nilsson\"},{\"developerId\":\"bitter\",\"email\":\"sternevald@imap.cc\",\"name\":\"Martin Sternevald\"}],\"excerpt\":\"Adds a post build configuration option to bring the executing node offline if the build fails. \",\"gav\":\"org.jenkins-ci.plugins:offlineonfailure-plugin:1.0\",\"labels\":[\"post-build\"],\"name\":\"offlineonfailure-plugin\",\"releaseTimestamp\":\"2011-06-19T19:29:00.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"b24ZX21Mz61by7jVNmGVC+AFs+4=\",\"title\":\"Offline Node On Failure Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/offlineonfailure-plugin/1.0/offlineonfailure-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Offline+Node+On+Failure+Plugin\"},\"openJDK-native-plugin\":{\"buildDate\":\"Mar 01, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vjuranek\",\"name\":\"Vojtech Juranek\"}],\"excerpt\":\"This plugin adds auto installer for OpenJDK from native RPM packages and provides switching between OpenJDK vesrions using Linux alternatives\",\"gav\":\"org.jenkinsci.plugins.openjdk_native:openJDK-native-plugin:1.0\",\"labels\":[],\"name\":\"openJDK-native-plugin\",\"releaseTimestamp\":\"2012-03-01T15:08:22.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"WQYSgJjJFOkdl6/p0vOJsrm6+oE=\",\"title\":\"OpenJDK native intaller plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/openJDK-native-plugin/1.0/openJDK-native-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/OpenJDK+native+intaller+plugin\"},\"openid\":{\"buildDate\":\"Jul 11, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"email\":\"kkawaguchi@cloudbees.com\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin lets your Jenkins users login to Jenkins through external OpenID providers, without using password.\",\"gav\":\"org.jenkins-ci.plugins:openid:1.5\",\"labels\":[\"user\"],\"name\":\"openid\",\"previousTimestamp\":\"2011-10-28T02:06:10.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2012-07-11T22:58:22.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"BYqS/3z3ZTYWHeqA91MzpJi2BNQ=\",\"title\":\"OpenID plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/openid/1.5/openid.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/OpenID+plugin\"},\"origo-issue-notifier\":{\"buildDate\":\"May 18, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"butcherch\",\"name\":\"Patrick Ruckstuhl\"}],\"excerpt\":\"This plugin opens or updates an issue on an <a href='http://origo.ethz.ch'>Origo<\\/a> instance based on the build result.\",\"gav\":\"org.jvnet.hudson.plugins:origo-issue-notifier:1.1\",\"labels\":[\"notifier\"],\"name\":\"origo-issue-notifier\",\"releaseTimestamp\":\"2010-05-19T01:11:20.00Z\",\"requiredCore\":\"1.343\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"I+uxIQlOPfGj1YcgmzBzJtLb5dU=\",\"title\":\"Origo Issue Notifier\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/origo-issue-notifier/1.1/origo-issue-notifier.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Origo+Issue+Notifier\"},\"oslc-cm\":{\"buildDate\":\"Jul 22, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mdhar\",\"email\":\"mdhar@free.fr\",\"name\":\"Madhumita DHAR\"}],\"excerpt\":\"Connects to different remote bug trackers via the OSLC protocol \",\"gav\":\"org.jenkins-ci.plugins:oslc-cm:1.31\",\"labels\":[\"notifier\"],\"name\":\"oslc-cm\",\"previousTimestamp\":\"2011-07-21T04:24:58.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2011-07-22T14:36:36.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"NHEf02sMF+mss8oKDA+MPPQOlhM=\",\"title\":\"OSLC CM Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/oslc-cm/1.31/oslc-cm.hpi\",\"version\":\"1.31\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/OSLC+CM+Plugin\"},\"pam-auth\":{\"buildDate\":\"Jun 05, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:pam-auth:1.0\",\"name\":\"pam-auth\",\"releaseTimestamp\":\"2012-06-06T00:55:04.00Z\",\"requiredCore\":\"1.468\",\"scm\":\"github.com\",\"sha1\":\"O3+oq5GiTvIQj7tLWkaQviQfRN4=\",\"title\":\"pam-auth\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/pam-auth/1.0/pam-auth.hpi\",\"version\":\"1.0\"},\"parameterized-trigger\":{\"buildDate\":\"Oct 09, 2012\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":true,\"version\":\"1.25\"}],\"developers\":[{\"developerId\":\"huybrechts\",\"name\":\"Tom Huybrechts\"},{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin lets you trigger new builds when your build has completed, with various ways of specifying parameters for the new build.\",\"gav\":\"org.jenkins-ci.plugins:parameterized-trigger:2.16\",\"labels\":[\"trigger\",\"post-build\",\"builder\",\"cluster\"],\"name\":\"parameterized-trigger\",\"previousTimestamp\":\"2012-05-23T19:33:08.00Z\",\"previousVersion\":\"2.15\",\"releaseTimestamp\":\"2012-10-09T15:14:16.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"1GETw1KLGpdjhjXno7UJLGfw0og=\",\"title\":\"Parameterized Trigger Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/parameterized-trigger/2.16/parameterized-trigger.hpi\",\"version\":\"2.16\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Parameterized+Trigger+Plugin\"},\"patch-parameter\":{\"buildDate\":\"Oct 07, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin adds a new parameter type to a parameterized build, where the user can optionally submit a patch file.\",\"gav\":\"org.jenkins-ci.plugins:patch-parameter:1.0\",\"labels\":[],\"name\":\"patch-parameter\",\"releaseTimestamp\":\"2012-10-07T20:18:04.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"3d0EZUQN45qMbtDnyc6H601eHwg=\",\"title\":\"Patch Parameter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/patch-parameter/1.0/patch-parameter.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Patch+Parameter+Plugin\"},\"pathignore\":{\"buildDate\":\"Nov 17, 2011\",\"dependencies\":[{\"name\":\"ruby-runtime\",\"optional\":false,\"version\":\"0.6\"}],\"developers\":[{\"developerId\":\"jtjerno\"}],\"excerpt\":\"This plugin allows SCM-triggered jobs to ignore build requests if only certain paths have changed, or to build if and only if certain paths are changed.\",\"gav\":\"org.jenkins-ci.ruby-plugins:pathignore:0.6\",\"labels\":[\"scm-related\",\"buildwrapper\"],\"name\":\"pathignore\",\"previousTimestamp\":\"2011-11-14T20:24:52.00Z\",\"previousVersion\":\"0.5\",\"releaseTimestamp\":\"2011-11-18T03:22:06.00Z\",\"requiredCore\":\"1.432\",\"scm\":\"github.com\",\"sha1\":\"7UG0Wxxa4QuKfSq5DVHlZFs+q/g=\",\"title\":\"Pathignore Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/pathignore/0.6/pathignore.hpi\",\"version\":\"0.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Pathignore+Plugin\"},\"pegdown-formatter\":{\"buildDate\":\"Apr 09, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"bap\",\"email\":\"bap-jenkins@BapIT.co.uk\",\"name\":\"Bap\"}],\"excerpt\":\"Format descriptions using Markdown syntax. Use simple wiki-like markup instead of HTML. \",\"gav\":\"org.jenkins-ci.plugins:pegdown-formatter:1.3\",\"labels\":[\"ui\"],\"name\":\"pegdown-formatter\",\"previousTimestamp\":\"2011-08-05T01:41:10.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-04-10T01:20:14.00Z\",\"requiredCore\":\"1.396\",\"scm\":\"github.com\",\"sha1\":\"VPm/aCS7FsNgr0KAu1QeijD7B5U=\",\"title\":\"PegDown Formatter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/pegdown-formatter/1.3/pegdown-formatter.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PegDown+Formatter+Plugin\"},\"people-redirector\":{\"buildDate\":\"May 11, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"m2spring\",\"email\":\"mspring@cisco.com\",\"name\":\"Max Spring\"}],\"excerpt\":\"Allows you to integrate with an external user management system.\",\"gav\":\"com.cisco.step.jenkins.plugins:people-redirector:1.3\",\"labels\":[\"external\"],\"name\":\"people-redirector\",\"previousTimestamp\":\"2011-10-12T18:36:08.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-05-11T21:17:20.00Z\",\"requiredCore\":\"1.415\",\"scm\":\"github.com\",\"sha1\":\"+UdYkY/5biwQcPFJeGaPDoRFYHE=\",\"title\":\"People Redirector Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/people-redirector/1.3/people-redirector.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/People+Redirector+Plugin\"},\"perforce\":{\"buildDate\":\"Nov 28, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"javadude\",\"email\":\"carl.quinn@gmail.com\",\"name\":\"Carl Quinn\"},{\"developerId\":\"rpetti\",\"email\":\"rob.petti@gmail.com\",\"name\":\"Rob Petti\"}],\"excerpt\":\"Integrates Jenkins with <a href='http://perforce.com'>Perforce<\\/a> SCM Repositories. \",\"gav\":\"org.jvnet.hudson.plugins:perforce:1.3.18\",\"labels\":[\"scm\"],\"name\":\"perforce\",\"previousTimestamp\":\"2012-08-12T17:06:50.00Z\",\"previousVersion\":\"1.3.17\",\"releaseTimestamp\":\"2012-11-28T17:05:24.00Z\",\"requiredCore\":\"1.346\",\"scm\":\"github.com\",\"sha1\":\"8mVONDubM5mI56JzfiaPMMAHvNg=\",\"title\":\"Perforce Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/perforce/1.3.18/perforce.hpi\",\"version\":\"1.3.18\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Perforce+Plugin\"},\"performance\":{\"buildDate\":\"Apr 11, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"manolo\",\"email\":\"manolo@apache.org\",\"name\":\"Manuel Carrasco Monino\"},{\"developerId\":\"vergnes\",\"email\":\"vergnes@dev.java.net\",\"name\":\"Vergnes\"},{\"developerId\":\"aespy\",\"email\":\"aespy@dev.java.net\",\"name\":\"Arnaud Espy\"}],\"excerpt\":\"This plugin allows you to capture reports from <a href='http://jakarta.apache.org/jmeter/'>JMeter<\\/a> and <a href='http://www.junit.org/'>JUnit<\\/a> . Hudson will generate graphic charts with the trend report of performance and robustness. It includes the feature of setting the final build status as good, unstable or failed, based on the reported error percentage. \",\"gav\":\"org.jvnet.hudson.plugins:performance:1.8\",\"labels\":[\"report\"],\"name\":\"performance\",\"previousTimestamp\":\"2011-05-16T13:44:10.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2012-04-11T15:35:04.00Z\",\"requiredCore\":\"1.388\",\"scm\":\"github.com\",\"sha1\":\"CTieY3sq27/Qk8UI4lWXqQEToXo=\",\"title\":\"Performance Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/performance/1.8/performance.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Performance+Plugin\"},\"perfpublisher\":{\"buildDate\":\"Apr 18, 2010\",\"dependencies\":[{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.1\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.354\"}],\"developers\":[{\"email\":\"gbossert@gmail.com\",\"name\":\"Georges Bossert\"}],\"excerpt\":\"This plugin generates global and trend reports for tests results analysis. Based on an open XML tests results format, the plugin parses the generated files and publish statistics, reports and analysis on the current health of the project.\",\"gav\":\"org.jvnet.hudson.plugins:perfpublisher:7.97\",\"labels\":[\"report\"],\"name\":\"perfpublisher\",\"previousTimestamp\":\"2010-03-05T13:44:04.00Z\",\"previousVersion\":\"7.96\",\"releaseTimestamp\":\"2010-04-18T17:59:00.00Z\",\"requiredCore\":\"1.354\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"Ogtvjd5FcJMX+H9/EYeeAhjH300=\",\"title\":\"PerfPublisher Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/perfpublisher/7.97/perfpublisher.hpi\",\"version\":\"7.97\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PerfPublisher+Plugin\"},\"periodic-reincarnation\":{\"buildDate\":\"Nov 19, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stefanbrausch\",\"email\":\"stefan.brausch@1und1.de\",\"name\":\"Stefan Brausch\"},{\"developerId\":\"boev\",\"email\":\"iordan.boev@gmail.com\",\"name\":\"Yordan Boev\"}],\"excerpt\":\"This plugin makes it possible to periodically restart failed jobs according to a number of conditions. \",\"gav\":\"org.jenkins-ci.plugins:periodic-reincarnation:1.1\",\"labels\":[\"trigger\"],\"name\":\"periodic-reincarnation\",\"previousTimestamp\":\"2012-10-29T20:56:38.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-11-19T17:48:22.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"4FbWByvUVPKwLSn3Q7lH3ZUzE+U=\",\"title\":\"Periodic Reincarnation Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/periodic-reincarnation/1.1/periodic-reincarnation.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Periodic+Reincarnation+Plugin\"},\"periodicbackup\":{\"buildDate\":\"Jan 04, 2013\",\"dependencies\":[],\"developers\":[{\"email\":\"tomasz.blaszczynski@gmail.com\",\"name\":\"Tomasz Blaszczynski\"},{\"email\":\"emanuelez@gmail.com\",\"name\":\"Emanuele Zattin\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:periodicbackup:1.3\",\"labels\":[],\"name\":\"periodicbackup\",\"previousTimestamp\":\"2013-01-04T14:37:26.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2013-01-04T14:40:36.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"sEkFAeJozgL/tGr5VTRVxGLnyOc=\",\"title\":\"PeriodicBackup Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/periodicbackup/1.3/periodicbackup.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PeriodicBackup+Plugin\"},\"persona\":{\"buildDate\":\"Apr 17, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"email\":\"kohsuke@infradna.com\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"ssogabe\",\"email\":\"s.sogabe@gmail.com\",\"name\":\"Seiji Sogabe\"}],\"excerpt\":\"This plugin lets you define custom personalities like <a href='ChuckNorris Plugin'>Chuck Norris<\\/a> or <a href='BruceSchneier Plugin'>Bruce Schneier<\\/a> just by preparing an XML file and a few image files.\",\"gav\":\"org.jenkins-ci.plugins:persona:2.2\",\"labels\":[],\"name\":\"persona\",\"previousTimestamp\":\"2012-03-06T02:32:38.00Z\",\"previousVersion\":\"2.1\",\"releaseTimestamp\":\"2012-04-17T13:31:16.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"/XG536Rbbg4KFD4Iq2DEWd8DwwM=\",\"title\":\"Persona Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/persona/2.2/persona.hpi\",\"version\":\"2.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Persona+Plugin\"},\"phing\":{\"buildDate\":\"Mar 20, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"sogabe\",\"email\":\"s.sogabe@gmail.com\",\"name\":\"Seiji Sogabe\"}],\"excerpt\":\"This plugin allows you to use <a href='http://phing.info/trac/'>Phing<\\/a> to build PHP projects.\",\"gav\":\"org.jenkins-ci.plugins:phing:0.11\",\"labels\":[\"builder\"],\"name\":\"phing\",\"previousTimestamp\":\"2012-03-03T20:37:34.00Z\",\"previousVersion\":\"0.10\",\"releaseTimestamp\":\"2012-03-20T13:55:06.00Z\",\"requiredCore\":\"1.413\",\"scm\":\"github.com\",\"sha1\":\"PnJ57D+P7J+vQ8PsI89GxQI+Zzs=\",\"title\":\"Phing Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/phing/0.11/phing.hpi\",\"version\":\"0.11\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Phing+Plugin\"},\"php\":{\"buildDate\":\"Oct 11, 2012\",\"dependencies\":[{\"name\":\"violations\",\"optional\":false,\"version\":\"0.7.11\"},{\"name\":\"jdepend\",\"optional\":false,\"version\":\"1.2.3\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.424\"},{\"name\":\"checkstyle\",\"optional\":false,\"version\":\"3.32\"},{\"name\":\"xunit\",\"optional\":false,\"version\":\"1.48\"},{\"name\":\"pmd\",\"optional\":false,\"version\":\"3.33\"},{\"name\":\"cloverphp\",\"optional\":false,\"version\":\"0.3.2\"},{\"name\":\"dry\",\"optional\":false,\"version\":\"2.33\"},{\"name\":\"htmlpublisher\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.48\"},{\"name\":\"plot\",\"optional\":false,\"version\":\"1.5\"}],\"developers\":[{\"developerId\":\"nicolas\"}],\"excerpt\":\"This plugin installs jenkins plugins suggested by [http://jenkins-php.org/]&nbsp;for PHP developers \",\"gav\":\"org.jenkins-ci.plugins:php:1.0\",\"labels\":[],\"name\":\"php\",\"releaseTimestamp\":\"2012-10-11T20:17:50.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"2K9otH75c+GEvMbJ/ulmrJmeLEA=\",\"title\":\"PHP Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/php/1.0/php.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PHP+Plugin\"},\"piwikanalytics\":{\"buildDate\":\"Nov 06, 2009\",\"dependencies\":[],\"developers\":[{\"developerId\":\"looztra\"}],\"excerpt\":\"This plugin decorates all web pages with the Piwik Analytics tracking script. \",\"gav\":\"org.jvnet.hudson.plugins:piwikanalytics:1.0\",\"labels\":[\"page-decorator\"],\"name\":\"piwikanalytics\",\"releaseTimestamp\":\"2009-11-07T03:11:44.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"M96i01+NqiOwu8kJN3vBljfM2NI=\",\"title\":\"Piwik Analytics Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/piwikanalytics/1.0/piwikanalytics.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Piwik+Analytics+Plugin\"},\"plasticscm-plugin\":{\"buildDate\":\"Jan 20, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ravelus\",\"email\":\"lrodriguez@codicesoftware.com\",\"name\":\"Luis Rodriguez Neches\"}],\"excerpt\":\"This plugin integrates <a href='http://www.codicesoftware.com'>Plastic SCM<\\/a> source code management to Jenkins.\",\"gav\":\"org.jvnet.hudson.plugins:plasticscm-plugin:2.0\",\"labels\":[\"scm\"],\"name\":\"plasticscm-plugin\",\"previousTimestamp\":\"2011-03-29T03:39:36.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-01-20T08:57:20.00Z\",\"requiredCore\":\"1.343\",\"scm\":\"github.com\",\"sha1\":\"d1vmWCEnyyERdiczDOqBCLG9mXQ=\",\"title\":\"PlasticSCM Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/plasticscm-plugin/2.0/plasticscm-plugin.hpi\",\"version\":\"2.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PlasticSCM+Plugin\"},\"platformlabeler\":{\"buildDate\":\"Dec 02, 2009\",\"dependencies\":[],\"developers\":[{\"developerId\":\"robertc\"}],\"excerpt\":\"This plugin adds node labels based on the platform the node is running; they are updated each time the node connects.\",\"gav\":\"org.jvnet.hudson.plugins:platformlabeler:1.1\",\"labels\":[\"misc\"],\"name\":\"platformlabeler\",\"previousTimestamp\":\"2009-09-07T21:38:40.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2009-12-02T23:48:24.00Z\",\"requiredCore\":\"1.323\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"2Vms3n2RwOiV89sT3cBtgtiQbTM=\",\"title\":\"PlatformLabeler Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/platformlabeler/1.1/platformlabeler.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PlatformLabeler+Plugin\"},\"play-autotest-plugin\":{\"buildDate\":\"Sep 29, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ikeike443\",\"email\":\"ikeike443@gmail.com\",\"name\":\"Takafumi Ikeda\"}],\"excerpt\":\"This plugin integrates <a href='http://www.playframework.org/'>Play\\\\! framework<\\/a> to Jenkins. It enables Jenkins to run play commands and to generate test-result view per build looks like Calimoucho -- Play\\\\! CI server. \",\"gav\":\"org.jenkins-ci.plugins:play-autotest-plugin:0.0.12\",\"labels\":[\"post-build\",\"report\",\"buildwrapper\",\"external\"],\"name\":\"play-autotest-plugin\",\"previousTimestamp\":\"2011-09-28T20:28:24.00Z\",\"previousVersion\":\"0.0.11\",\"releaseTimestamp\":\"2011-09-29T16:50:18.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"1wRQSkmU4GeeLVIbchTsdNXs488=\",\"title\":\"play-plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/play-autotest-plugin/0.0.12/play-autotest-plugin.hpi\",\"version\":\"0.0.12\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/play-plugin\"},\"plot\":{\"buildDate\":\"Jul 10, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"nidaley\",\"name\":\"Nigel Daley\"}],\"excerpt\":\"This plugin provides generic plotting (or graphing) capabilities in Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:plot:1.5\",\"labels\":[\"report\",\"ui\"],\"name\":\"plot\",\"previousTimestamp\":\"2010-11-22T00:25:22.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2011-07-10T16:27:06.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"FFDY6Dk2pJJyPO5PlTXso/vLGXo=\",\"title\":\"Plot Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/plot/1.5/plot.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Plot+Plugin\"},\"pmd\":{\"buildDate\":\"Oct 05, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"},{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.409\"},{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.48\"},{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.2\"}],\"developers\":[{\"developerId\":\"drulli\",\"email\":\"ullrich.hafner@gmail.com\",\"name\":\"Ulli Hafner\"}],\"excerpt\":\"This plugin generates the trend report for <a href='http://pmd.sourceforge.net/'>PMD<\\/a>, an open source static code analysis program.&nbsp; \",\"gav\":\"org.jvnet.hudson.plugins:pmd:3.33\",\"labels\":[\"maven\",\"report\"],\"name\":\"pmd\",\"previousTimestamp\":\"2012-09-04T17:04:38.00Z\",\"previousVersion\":\"3.32\",\"releaseTimestamp\":\"2012-10-05T16:00:46.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"2TYh/c1KpcecGhFr+dX4yhGKuN8=\",\"title\":\"PMD Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/pmd/3.33/pmd.hpi\",\"version\":\"3.33\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PMD+Plugin\"},\"polarion\":{\"buildDate\":\"Nov 03, 2011\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"2.0.1\"}],\"developers\":[{\"developerId\":\"jwray\",\"name\":\"Jonny Wray\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"This plugin integrates the <a href='http://www.polarion.com/products/svn/svn_webclient.php'>Polarion WebClient for SVN<\\/a>, an open source, web based interface to Subversion.\",\"gav\":\"org.jvnet.hudson.plugins:polarion:1.3\",\"labels\":[\"external\"],\"name\":\"polarion\",\"previousTimestamp\":\"2010-01-29T22:17:40.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-11-03T17:48:18.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"yqnoigUhQZdM/7CiGFtDJzekqOk=\",\"title\":\"Polarion Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/polarion/1.3/polarion.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Polarion+Plugin\"},\"pollscm\":{\"buildDate\":\"Jan 06, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vlatombe\",\"email\":\"vincent.latombe@gmail.com\",\"name\":\"Vincent Latombe\"}],\"excerpt\":\"This plugin adds a Poll Now button to your job when Poll SCM option is enabled. \",\"gav\":\"org.jenkins-ci.plugins:pollscm:1.1\",\"labels\":[],\"name\":\"pollscm\",\"previousTimestamp\":\"2012-01-06T22:46:46.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-01-06T23:13:32.00Z\",\"requiredCore\":\"1.440\",\"scm\":\"github.com\",\"sha1\":\"5YrGI2DZAohAAvaJ+F38DRXPjZY=\",\"title\":\"PollSCM Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/pollscm/1.1/pollscm.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PollSCM+Plugin\"},\"port-allocator\":{\"buildDate\":\"Mar 29, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ramapulavarthi\",\"name\":\"Rama Pulavarthi\"},{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"Assigns unique TCP port addresses to jobs so that jobs executed concurrently won't collide with each other. Also performs clean ups to kill off daemons that are forked by jobs.\",\"gav\":\"org.jvnet.hudson.plugins:port-allocator:1.5\",\"labels\":[\"misc\"],\"name\":\"port-allocator\",\"previousTimestamp\":\"2009-12-29T01:39:04.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2010-03-29T22:34:08.00Z\",\"requiredCore\":\"1.324\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"hgpEu3sP2pRfUFBV5dIOKOlflr0=\",\"title\":\"Port Allocator Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/port-allocator/1.5/port-allocator.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Port+Allocator+Plugin\"},\"postbuild-task\":{\"buildDate\":\"Jan 03, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"shinodkm\",\"email\":\"shinodkm@gmail.com\",\"name\":\"Shinod Mohandas\"},{\"developerId\":\"castorpilot\",\"email\":\"castorpilot@gmail.com\",\"name\":\"Fred\"}],\"excerpt\":\"This plugin allows the user to execute a shell/batch task depending on the build log output. Java regular expression are allowed.\",\"gav\":\"org.jvnet.hudson.plugins:postbuild-task:1.8\",\"labels\":[\"post-build\",\"builder\"],\"name\":\"postbuild-task\",\"previousTimestamp\":\"2010-06-03T14:42:10.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2011-01-04T03:46:56.00Z\",\"requiredCore\":\"1.357\",\"scm\":\"svn.java.net\",\"sha1\":\"BsfymNZesIFBvZtiIe01htpESHI=\",\"title\":\"Post build task\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/postbuild-task/1.8/postbuild-task.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Post+build+task\"},\"postbuildscript\":{\"buildDate\":\"Aug 03, 2012\",\"dependencies\":[{\"name\":\"ivy\",\"optional\":true,\"version\":\"1.19\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.409\"}],\"developers\":[{\"developerId\":\"gbois\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"PostBuildScript makes it possible to execute a set of scripts at the end of the build. \",\"gav\":\"org.jenkins-ci.plugins:postbuildscript:0.10\",\"labels\":[\"post-build\"],\"name\":\"postbuildscript\",\"previousTimestamp\":\"2012-07-03T01:24:42.00Z\",\"previousVersion\":\"0.9\",\"releaseTimestamp\":\"2012-08-03T18:12:12.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"A1T3WDZEilhyyKTDWP77TqXdSm0=\",\"title\":\"PostBuildScript Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/postbuildscript/0.10/postbuildscript.hpi\",\"version\":\"0.10\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PostBuildScript+Plugin\"},\"powershell\":{\"buildDate\":\"Aug 05, 2009\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"Integrates with Windows PowerShell\",\"gav\":\"org.jvnet.hudson.plugins:powershell:1.2\",\"labels\":[\"builder\"],\"name\":\"powershell\",\"previousTimestamp\":\"2009-07-01T16:50:40.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2009-08-05T22:56:08.00Z\",\"requiredCore\":\"1.318\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"knBheE891sVmdLu2GnWXWmU+cCc=\",\"title\":\"PowerShell Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/powershell/1.2/powershell.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PowerShell+Plugin\"},\"preSCMbuildstep\":{\"buildDate\":\"Feb 19, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"cjo9900\",\"name\":\"Chris Johnson\"}],\"excerpt\":\"This plugin allows build step to run before SCM checkouts \",\"gav\":\"org.jenkins-ci.plugins:preSCMbuildstep:0.2\",\"labels\":[\"buildwrapper\"],\"name\":\"preSCMbuildstep\",\"previousTimestamp\":\"2011-08-24T01:22:26.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2012-02-19T23:29:22.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"I8ehGnqC0sUdzqvLST3r4fQRjdA=\",\"title\":\"pre-scm-buildstep\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/preSCMbuildstep/0.2/preSCMbuildstep.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/pre-scm-buildstep\"},\"prereq-buildstep\":{\"buildDate\":\"Apr 01, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"lynggaard\",\"email\":\"henrik@hlyh.dk\",\"name\":\"Henrik Lynggaard\"}],\"excerpt\":\"The Prerequisite build step plug in allows you to verify the state of other jobs and fail the build if needed.\",\"gav\":\"org.jvnet.hudson.plugins:prereq-buildstep:1.1\",\"labels\":[\"builder\"],\"name\":\"prereq-buildstep\",\"releaseTimestamp\":\"2011-04-01T19:46:08.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"bitbucket.org\",\"sha1\":\"GJBVXEP3y9sdBrFYIq9/h4YtVFw=\",\"title\":\"Prerequisite build step plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/prereq-buildstep/1.1/prereq-buildstep.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Prerequisite+build+step+plugin\"},\"progress-bar-column-plugin\":{\"buildDate\":\"Aug 08, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Provide progress bar available for views.\",\"gav\":\"org.jenkins-ci.plugins:progress-bar-column-plugin:1.0\",\"labels\":[\"listview-column\"],\"name\":\"progress-bar-column-plugin\",\"releaseTimestamp\":\"2011-08-08T22:46:44.00Z\",\"requiredCore\":\"1.421\",\"scm\":\"github.com\",\"sha1\":\"A6ddrtk90zctZbw5hRyEguLpY08=\",\"title\":\"Progress Bar Column Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/progress-bar-column-plugin/1.0/progress-bar-column-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Progress+Bar+Column+Plugin\"},\"project-description-setter\":{\"buildDate\":\"Jun 12, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"bap\",\"email\":\"bap-jenkins@BapIT.co.uk\",\"name\":\"Bap\"}],\"excerpt\":\"Set the project description from a file in the workspace (à la GitHub README.md) \",\"gav\":\"org.jenkins-ci.plugins:project-description-setter:1.1\",\"labels\":[\"buildwrapper\"],\"name\":\"project-description-setter\",\"previousTimestamp\":\"2011-08-06T00:05:08.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-06-13T01:30:28.00Z\",\"requiredCore\":\"1.399\",\"scm\":\"github.com\",\"sha1\":\"vtjFCsAOwGWxR3BjUxtY+i2daBQ=\",\"title\":\"Project Description Setter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/project-description-setter/1.1/project-description-setter.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Project+Description+Setter+Plugin\"},\"project-health-report\":{\"buildDate\":\"May 23, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"lynggaard\",\"email\":\"henrik@hlyh.dk\",\"name\":\"Henrik Lynggaard\"}],\"excerpt\":\"The project health report plugin&nbsp; provides a  report page on each project where the user can see how many builds  failed/passed and which test cases most often break.\",\"gav\":\"org.jvnet.hudson.plugins:project-health-report:1.2\",\"labels\":[],\"name\":\"project-health-report\",\"previousTimestamp\":\"2011-04-18T18:29:00.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2011-05-23T22:44:44.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"bitbucket.org\",\"sha1\":\"epc6Y+I9FEkw2Wgt5IS8kYFMUBE=\",\"title\":\"Project Health Report Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/project-health-report/1.2/project-health-report.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Project+Health+Report+Plugin\"},\"project-stats-plugin\":{\"buildDate\":\"Sep 22, 2012\",\"dependencies\":[{\"name\":\"dashboard-view\",\"optional\":false,\"version\":\"2.0\"}],\"developers\":[{\"developerId\":\"mambu\",\"email\":\"marco.ambu+jenkins@gmail.com\",\"name\":\"Marco Ambu\"}],\"excerpt\":\"This plugin provides new dashboard-view portlets and new columns for displaying project statistics for your Jenkins instance. \",\"gav\":\"org.jenkins-ci.plugins:project-stats-plugin:0.4\",\"labels\":[\"listview-column\",\"ui\"],\"name\":\"project-stats-plugin\",\"previousTimestamp\":\"2011-09-25T15:13:00.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2012-09-22T17:18:04.00Z\",\"requiredCore\":\"1.459\",\"scm\":\"github.com\",\"sha1\":\"mIkd2WtsZ/Qn11Pn/JPojLHd7As=\",\"title\":\"Project Statistics Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/project-stats-plugin/0.4/project-stats-plugin.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Project+Statistics+Plugin\"},\"promoted-builds\":{\"buildDate\":\"Oct 30, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.448\"},{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"}],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"petehayes\",\"name\":\"Peter Hayes\"}],\"excerpt\":\"This plugin allows you to distinguish good builds from bad builds by introducing the notion of 'promotion'.\",\"gav\":\"org.jenkins-ci.plugins:promoted-builds:2.8\",\"labels\":[\"misc\",\"ui\",\"builder\"],\"name\":\"promoted-builds\",\"previousTimestamp\":\"2012-09-26T23:08:58.00Z\",\"previousVersion\":\"2.7\",\"releaseTimestamp\":\"2012-10-30T17:38:06.00Z\",\"requiredCore\":\"1.448\",\"scm\":\"github.com\",\"sha1\":\"J+vdJvd6a47gXcIuiDynDWlvbf8=\",\"title\":\"Promoted Builds Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/promoted-builds/2.8/promoted-builds.hpi\",\"version\":\"2.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Promoted+Builds+Plugin\"},\"promoted-builds-simple\":{\"buildDate\":\"Mar 29, 2011\",\"dependencies\":[{\"name\":\"copyartifact\",\"optional\":true,\"version\":\"1.14\"},{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.398\"}],\"developers\":[{\"developerId\":\"mindless\",\"name\":\"Alan Harder\"}],\"excerpt\":\"Simpler version of <a href='https://wiki.jenkins-ci.org/display/JENKINS/Promoted+Builds+Plugin'>Promoted Builds Plugin<\\/a>, with only manual promotion of builds.\",\"gav\":\"org.jenkins-ci.plugins:promoted-builds-simple:1.9\",\"labels\":[\"misc\",\"ui\"],\"name\":\"promoted-builds-simple\",\"previousTimestamp\":\"2011-02-25T22:11:48.00Z\",\"previousVersion\":\"1.8\",\"releaseTimestamp\":\"2011-03-30T02:54:50.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"Q710UWrUUlaLRkSqOclH5RB9xN8=\",\"title\":\"Promoted Builds Simple Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/promoted-builds-simple/1.9/promoted-builds-simple.hpi\",\"version\":\"1.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Promoted+Builds+Simple+Plugin\"},\"prqa-plugin\":{\"buildDate\":\"Nov 13, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jstruck\",\"email\":\"coolers@praqma.net\",\"name\":\"Jes Struck\"},{\"developerId\":\"MadsNielsen\",\"email\":\"man@praqma.net\",\"name\":\"Mads Nielsen\"}],\"excerpt\":\"A plugin for doing static code analysis using PRQA. \",\"gav\":\"net.praqma:prqa-plugin:1.1.3\",\"labels\":[\"notifier\",\"report\"],\"name\":\"prqa-plugin\",\"previousTimestamp\":\"2012-11-09T13:20:26.00Z\",\"previousVersion\":\"1.1.2\",\"releaseTimestamp\":\"2012-11-13T18:07:54.00Z\",\"requiredCore\":\"1.474\",\"scm\":\"github.com\",\"sha1\":\"QBs61tHuA78J+K2xeCzHweZtkro=\",\"title\":\"PRQA Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/prqa-plugin/1.1.3/prqa-plugin.hpi\",\"version\":\"1.1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PRQA+Plugin\"},\"pry\":{\"buildDate\":\"May 31, 2012\",\"dependencies\":[{\"name\":\"ruby-runtime\",\"optional\":false,\"version\":\"0.10\"}],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin lets you remotely inspect/alter running Jenkins instance through <a href='http://pry.github.com/'>pry<\\/a>. Think of it as the Ruby version of the Groovy shell console\",\"gav\":\"org.jenkins-ci.plugins:pry:1.1\",\"labels\":[],\"name\":\"pry\",\"previousTimestamp\":\"2012-05-10T10:43:40.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2012-05-31T13:23:00.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"13OpWLobyimk1qD6zwnhDHpglh8=\",\"title\":\"Pry Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/pry/1.1/pry.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Pry+Plugin\"},\"publish-over-cifs\":{\"buildDate\":\"Jun 05, 2011\",\"compatibleSinceVersion\":\"0.1\",\"dependencies\":[],\"developers\":[{\"developerId\":\"bap\",\"email\":\"bap-jenkins@BapIT.co.uk\",\"name\":\"Bap\"},{\"developerId\":\"slide_o_mix\",\"email\":\"slide.o.mix@gmail.com\",\"name\":\"slide\"}],\"excerpt\":\"Send build artifacts to a windows share (CIFS/SMB/samba) \",\"gav\":\"org.jenkins-ci.plugins:publish-over-cifs:0.2\",\"labels\":[\"upload\"],\"name\":\"publish-over-cifs\",\"releaseTimestamp\":\"2011-06-05T10:48:22.00Z\",\"requiredCore\":\"1.388\",\"scm\":\"github.com\",\"sha1\":\"rvULLcwogegRtp9x7bNOXURCaZ8=\",\"title\":\"Publish Over CIFS Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/publish-over-cifs/0.2/publish-over-cifs.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Publish+Over+CIFS+Plugin\"},\"publish-over-ftp\":{\"buildDate\":\"Oct 22, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"bap\",\"email\":\"bap-jenkins@BapIT.co.uk\",\"name\":\"Bap\"}],\"excerpt\":\"Publish files over FTP \",\"gav\":\"org.jenkins-ci.plugins:publish-over-ftp:1.8\",\"labels\":[\"upload\"],\"name\":\"publish-over-ftp\",\"previousTimestamp\":\"2012-09-11T03:38:54.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2012-10-22T17:54:20.00Z\",\"requiredCore\":\"1.388\",\"scm\":\"github.com\",\"sha1\":\"O1EsWuqFiqlRKd5R2muZ0zCrS+c=\",\"title\":\"Publish Over FTP Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/publish-over-ftp/1.8/publish-over-ftp.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Publish+Over+FTP+Plugin\"},\"publish-over-ssh\":{\"buildDate\":\"Oct 22, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"bap\",\"email\":\"bap-jenkins@BapIT.co.uk\",\"name\":\"Bap\"}],\"excerpt\":\"Publish files and/or execute commands over SSH (SCP using SFTP) \",\"gav\":\"org.jenkins-ci.plugins:publish-over-ssh:1.9\",\"labels\":[\"upload\",\"builder\"],\"name\":\"publish-over-ssh\",\"previousTimestamp\":\"2012-09-11T03:42:24.00Z\",\"previousVersion\":\"1.8\",\"releaseTimestamp\":\"2012-10-22T18:38:26.00Z\",\"requiredCore\":\"1.388\",\"scm\":\"github.com\",\"sha1\":\"E7315PNWymljPh2Y4AvggySkz1g=\",\"title\":\"Publish Over SSH Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/publish-over-ssh/1.9/publish-over-ssh.hpi\",\"version\":\"1.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Publish+Over+SSH+Plugin\"},\"purge-build-queue-plugin\":{\"buildDate\":\"Aug 25, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Provides an easy mechanism to purge the build queue.\",\"gav\":\"org.jenkins-ci.plugins:purge-build-queue-plugin:1.0\",\"labels\":[\"misc\"],\"name\":\"purge-build-queue-plugin\",\"releaseTimestamp\":\"2011-08-25T04:32:02.00Z\",\"requiredCore\":\"1.425\",\"scm\":\"github.com\",\"sha1\":\"o1FGXRJoYPDa2gfqzNnXOW4e6Us=\",\"title\":\"Purge Build Queue Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/purge-build-queue-plugin/1.0/purge-build-queue-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Purge+Build+Queue+Plugin\"},\"pvcs_scm\":{\"buildDate\":\"Jul 21, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"blalor\",\"email\":\"blalor@bravo5.org\",\"name\":\"Brian Lalor\"}],\"excerpt\":\"This plugin provides integration with Serena's PVCS Version Manager SCM.\",\"gav\":\"org.jvnet.hudson.plugins:pvcs_scm:1.1\",\"labels\":[\"scm\"],\"name\":\"pvcs_scm\",\"previousTimestamp\":\"2008-11-05T12:36:58.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2010-07-21T15:57:40.00Z\",\"requiredCore\":\"1.324\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"rKiuRk88u5b03+foxUPssjWMils=\",\"title\":\"PVCS SCM\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/pvcs_scm/1.1/pvcs_scm.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PVCS+SCM\"},\"pwauth\":{\"buildDate\":\"Dec 21, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mallox\",\"email\":\"mallox@pyxzl.net\",\"name\":\"Ravi Gairola\"}],\"excerpt\":\"This plug-in adds authentication via pwauth and supports both \\\\*nix system users and groups through PAM. \",\"gav\":\"org.jvnet.hudson.plugins:pwauth:0.4\",\"labels\":[\"user\"],\"name\":\"pwauth\",\"releaseTimestamp\":\"2010-12-21T14:18:28.00Z\",\"requiredCore\":\"1.389\",\"scm\":\"svn.java.net\",\"sha1\":\"A/xofYwc8Wz8W3aWAQHubV5qmi8=\",\"title\":\"pwauth\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/pwauth/0.4/pwauth.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/pwauth\"},\"pxe\":{\"buildDate\":\"Feb 02, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin enhances Jenkins to support network-booting PCs for rapid, hands-free installations of various OSes, thereby making new slave installations easier.\",\"gav\":\"org.jvnet.hudson.plugins:pxe:1.5\",\"labels\":[\"cluster\"],\"name\":\"pxe\",\"previousTimestamp\":\"2010-01-10T01:32:50.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2010-02-02T21:45:18.00Z\",\"requiredCore\":\"1.322\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"dE84kD7kmrxqG+I0jmDFXRevhv4=\",\"title\":\"PXE Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/pxe/1.5/pxe.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/PXE+Plugin\"},\"python\":{\"buildDate\":\"Nov 16, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"rtyler\",\"email\":\"tyler@slide.com\",\"name\":\"R. Tyler Ballance\"}],\"excerpt\":\"Adds the ability to execute python scripts as build steps.\",\"gav\":\"org.jenkins-ci.plugins:python:1.2\",\"labels\":[\"builder\"],\"name\":\"python\",\"previousTimestamp\":\"2010-02-11T03:45:24.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2011-11-16T17:19:12.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"B6Jb7KKKx0QMBiNr4G9eWsJRfOg=\",\"title\":\"Python Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/python/1.2/python.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Python+Plugin\"},\"qc\":{\"buildDate\":\"Jan 12, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tmaurel\",\"name\":\"Thomas Maurel\"},{\"developerId\":\"rseguy\",\"name\":\"Romain Seguy\"}],\"excerpt\":\"This plugin allows Hudson to trigger HP Quality Center test sets.\",\"gav\":\"org.jenkins-ci.plugins:qc:1.2.1\",\"labels\":[\"report\",\"builder\"],\"name\":\"qc\",\"previousTimestamp\":\"2011-12-07T19:12:08.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-01-12T21:45:08.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"hKLzEjb829TBh0EXSHss2qq7o3M=\",\"title\":\"Quality Center Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/qc/1.2.1/qc.hpi\",\"version\":\"1.2.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Quality+Center+Plugin\"},\"r\":{\"buildDate\":\"Jul 22, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kinow\",\"email\":\"brunodepaulak@yahoo.com.br\",\"name\":\"Bruno P. Kinoshita\"}],\"excerpt\":\"A simple plug-in to invoke <a href='http://www.r-project.org/'>R<\\/a> interpreter and execute an R script. \",\"gav\":\"org.biouno.r:r:0.2\",\"labels\":[\"builder\"],\"name\":\"r\",\"previousTimestamp\":\"2012-07-10T13:08:46.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2012-07-22T06:25:44.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"rWowbhQDeeGV4t/Dn8Puc94Qjwg=\",\"title\":\"R Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/r/0.2/r.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/R+Plugin\"},\"rad-builder\":{\"buildDate\":\"Mar 04, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"rseguy\",\"email\":\"romain.seguy@gmail.com\",\"name\":\"Romain Seguy\"}],\"excerpt\":\"This plugin allows Jenkins to invoke IBM Rational Application Developer as a build step. \",\"gav\":\"org.jvnet.hudson.plugins:rad-builder:1.1.4\",\"labels\":[\"builder\"],\"name\":\"rad-builder\",\"previousTimestamp\":\"2011-02-21T16:14:36.00Z\",\"previousVersion\":\"1.1.3\",\"releaseTimestamp\":\"2011-03-04T15:37:50.00Z\",\"requiredCore\":\"1.375\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"pM4htrn1zMf51bPf1CAZoIZFPrA=\",\"title\":\"RAD Builder Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/rad-builder/1.1.4/rad-builder.hpi\",\"version\":\"1.1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/RAD+Builder+Plugin\"},\"radiatorviewplugin\":{\"buildDate\":\"May 17, 2011\",\"dependencies\":[{\"name\":\"claim\",\"optional\":true,\"version\":\"1.7\"}],\"developers\":[{\"developerId\":\"howama\",\"email\":\"mh@tildemh.com\",\"name\":\"Mark Howard\"}],\"excerpt\":\"Provides a job view displaying project status in a highly visible manner. This is ideal for displaying on a screen on the office wall as a form of Extreme Feedback Device.\",\"gav\":\"org.jenkins-ci.plugins:radiatorviewplugin:1.13\",\"labels\":[\"report\",\"ui\"],\"name\":\"radiatorviewplugin\",\"previousTimestamp\":\"2011-04-20T14:04:38.00Z\",\"previousVersion\":\"1.12\",\"releaseTimestamp\":\"2011-05-17T13:14:36.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"RV2RK68V/SCUnF8JNJus7qjXLNw=\",\"title\":\"Radiator View Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/radiatorviewplugin/1.13/radiatorviewplugin.hpi\",\"version\":\"1.13\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Radiator+View+Plugin\"},\"rake\":{\"buildDate\":\"Aug 13, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"david_calavera\",\"email\":\"calavera@apache.org\",\"name\":\"David Calavera\"}],\"excerpt\":\"This plugin allows Jenkins to invoke <a href='http://rake.rubyforge.org'>Rake<\\/a> tasks as build steps.\",\"gav\":\"org.jenkins-ci.plugins:rake:1.7.7\",\"labels\":[\"builder\",\"ruby\"],\"name\":\"rake\",\"previousTimestamp\":\"2011-03-23T03:06:24.00Z\",\"previousVersion\":\"1.7.6\",\"releaseTimestamp\":\"2011-08-13T15:24:34.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"D3FkVgKpgurCbRzTTXpw/8e0118=\",\"title\":\"Rake plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/rake/1.7.7/rake.hpi\",\"version\":\"1.7.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Rake+plugin\"},\"random-string-parameter\":{\"buildDate\":\"Aug 12, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"piotrskotnicki\",\"email\":\"piotr.skotnicki@gmail.com\",\"name\":\"Piotr Skotnicki\"}],\"excerpt\":\"Adds a new parameter type called Random String Parameter which inserts a random string that prevents Jenkins from merging multiple job runs into one. \",\"gav\":\"org.jenkins-ci.plugins:random-string-parameter:1.0\",\"labels\":[\"parameter\"],\"name\":\"random-string-parameter\",\"releaseTimestamp\":\"2012-08-12T23:18:58.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"SRTRxyIUjyum+CwnxEMCP9prebY=\",\"title\":\"Random String Parameter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/random-string-parameter/1.0/random-string-parameter.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Random+String+Parameter+Plugin\"},\"rbenv\":{\"buildDate\":\"Nov 27, 2012\",\"dependencies\":[{\"name\":\"ruby-runtime\",\"optional\":false,\"version\":\"0.10\"}],\"developers\":[{\"developerId\":\"hsbt\"}],\"excerpt\":\"This plugin runs your jobs in the rbenv \",\"gav\":\"org.jenkins-ci.ruby-plugins:rbenv:0.0.6\",\"labels\":[],\"name\":\"rbenv\",\"previousTimestamp\":\"2012-06-12T21:42:54.00Z\",\"previousVersion\":\"0.0.5\",\"releaseTimestamp\":\"2012-11-28T02:35:50.00Z\",\"requiredCore\":\"1.432\",\"scm\":\"github.com\",\"sha1\":\"2w+ljr5L21WsD6dWhtHjxH4CO5Y=\",\"title\":\"rbenv plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/rbenv/0.0.6/rbenv.hpi\",\"version\":\"0.0.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/rbenv+plugin\"},\"read-only-configurations\":{\"buildDate\":\"Oct 05, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"lvotypko\",\"email\":\"lvotypko@redhat.com\",\"name\":\"Lucie Votypkova\"}],\"excerpt\":\"This plugin enables to show read-only configurations of job and global Jenkins configurations \",\"gav\":\"org.jenkins-ci.plugins:read-only-configurations:1.7\",\"labels\":[],\"name\":\"read-only-configurations\",\"previousTimestamp\":\"2012-10-05T17:40:22.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2012-10-05T18:35:10.00Z\",\"requiredCore\":\"1.425\",\"scm\":\"github.com\",\"sha1\":\"BwoAhTMVYG38pWv3G8QpmONW+bA=\",\"title\":\"Read-only configurations plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/read-only-configurations/1.7/read-only-configurations.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Read-only+configurations+plugin\"},\"rebuild\":{\"buildDate\":\"Nov 13, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ragesh_nair\",\"email\":\"ragesh.x.nair@sonyericsson.com\",\"name\":\"Ragesh Nair\"},{\"developerId\":\"shemeersulaiman\",\"email\":\"shemeer.x.sulaiman@sonyericsson.com\",\"name\":\"Shemeer Sulaiman\"}],\"excerpt\":\"This plug-in allows the user to _rebuild_ a _parametrized build_ without entering the _parameters_ again.It will also allow the user to edit the parameters before rebuilding. \",\"gav\":\"com.sonyericsson.hudson.plugins.rebuild:rebuild:1.16\",\"labels\":[\"misc\"],\"name\":\"rebuild\",\"previousTimestamp\":\"2012-10-11T17:58:36.00Z\",\"previousVersion\":\"1.15\",\"releaseTimestamp\":\"2012-11-13T20:19:42.00Z\",\"requiredCore\":\"1.481\",\"scm\":\"github.com\",\"sha1\":\"Oc7o/KYGkbMnjtkBnTSFve+GHjU=\",\"title\":\"Rebuild Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/rebuild/1.16/rebuild.hpi\",\"version\":\"1.16\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Rebuild+Plugin\"},\"recipe\":{\"buildDate\":\"Dec 31, 2012\",\"dependencies\":[{\"name\":\"chosen\",\"optional\":false,\"version\":\"1.0\"}],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:recipe:1.0\",\"labels\":[],\"name\":\"recipe\",\"releaseTimestamp\":\"2012-12-31T18:04:24.00Z\",\"requiredCore\":\"1.489\",\"scm\":\"github.com\",\"sha1\":\"cHVq4x9ZfhGjSd+T80SASoWqrsc=\",\"title\":\"Recipe Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/recipe/1.0/recipe.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Recipe+Plugin\"},\"redmine\":{\"buildDate\":\"Oct 28, 2012\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"2.0.1\"}],\"developers\":[{\"developerId\":\"gaooh\",\"name\":\"Akiko Asami\"}],\"excerpt\":\"This plugin integrates <a href='http://www.redmine.org/'>Redmine<\\/a> into Hudson (there's a <a href='http://d.hatena.ne.jp/couger/20090727'>plugin for Redmine<\\/a> that integrates Hudson from the Redmine side, too.)\",\"gav\":\"org.jenkins-ci.plugins:redmine:0.11\",\"labels\":[\"external\"],\"name\":\"redmine\",\"previousTimestamp\":\"2012-08-17T06:25:00.00Z\",\"previousVersion\":\"0.10\",\"releaseTimestamp\":\"2012-10-28T19:27:48.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"KFGBYxdGnSPSQwHCno78GCnV0Xo=\",\"title\":\"Redmine Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/redmine/0.11/redmine.hpi\",\"version\":\"0.11\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Redmine+Plugin\"},\"refit\":{\"buildDate\":\"Jul 14, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"hwellmann\",\"email\":\"harald.wellmann@gmx.de\",\"name\":\"Harald Wellmann\"}],\"excerpt\":\"A plugin for publishing Fit test reports created by <a href='http://refit.googlecode.com'>reFit<\\/a>, an implementation of the Framework for Integrated Test (Fit). \",\"gav\":\"com.googlecode.refit.jenkins:refit:0.3.1\",\"labels\":[\"report\"],\"name\":\"refit\",\"previousTimestamp\":\"2011-04-06T02:08:44.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2011-07-15T01:00:36.00Z\",\"requiredCore\":\"1.403\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"IbilFMeyYoX5oHRQE7y39/yu60E=\",\"title\":\"reFit Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/refit/0.3.1/refit.hpi\",\"version\":\"0.3.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/reFit+Plugin\"},\"regexemail\":{\"buildDate\":\"Jan 31, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"justinedelson\",\"name\":\"Justin Edelson\"}],\"excerpt\":\"This plugin allows you to generate user email addresses from usernames.\",\"gav\":\"com.mtvi.plateng.hudson:regexemail:0.3\",\"labels\":[\"user\"],\"name\":\"regexemail\",\"previousTimestamp\":\"2008-06-30T20:38:16.00Z\",\"previousVersion\":\"0.2\",\"releaseTimestamp\":\"2010-01-31T20:41:44.00Z\",\"requiredCore\":\"1.318\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"J9gFriK5ue+NWM3WF3P5OG8Kf4U=\",\"title\":\"RegEx Email Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/regexemail/0.3/regexemail.hpi\",\"version\":\"0.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/RegEx+Email+Plugin\"},\"regression-report-plugin\":{\"buildDate\":\"Jun 12, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"eller86\",\"name\":\"Kengo TODA\"}],\"excerpt\":\"This plugin sends a mail if your test cases find regression (new failure). \",\"gav\":\"org.jenkins-ci.plugins:regression-report-plugin:1.0\",\"labels\":[\"report\"],\"name\":\"regression-report-plugin\",\"releaseTimestamp\":\"2012-06-12T06:35:34.00Z\",\"requiredCore\":\"1.436\",\"scm\":\"github.com\",\"sha1\":\"GEMfb4MDa+ARzWfR14EHuml1tDc=\",\"title\":\"Regression Report Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/regression-report-plugin/1.0/regression-report-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Regression+Report+Plugin\"},\"release\":{\"buildDate\":\"Sep 20, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.399\"},{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.0\"},{\"name\":\"promoted-builds\",\"optional\":true,\"version\":\"2.0\"}],\"developers\":[{\"developerId\":\"petehayes\",\"email\":\"petehayes@gmail.com\",\"name\":\"Peter Hayes\"}],\"excerpt\":\"This plugin adds the ability to wrap your job with pre\\\\- and post\\\\- build steps which are only executed when a manual release build is triggered.\",\"gav\":\"org.jenkins-ci.plugins:release:2.3\",\"labels\":[\"buildwrapper\",\"listview-column\"],\"name\":\"release\",\"previousTimestamp\":\"2011-09-14T00:57:02.00Z\",\"previousVersion\":\"2.2\",\"releaseTimestamp\":\"2012-09-20T05:21:22.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"cKamKJumyoeDwr/71brgI5Odtzk=\",\"title\":\"Release Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/release/2.3/release.hpi\",\"version\":\"2.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Release+Plugin\"},\"remote-terminal-access\":{\"buildDate\":\"Jan 07, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin enables users to open an interactive terminal session against on-going builds on Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:remote-terminal-access:1.0\",\"labels\":[\"ui\"],\"name\":\"remote-terminal-access\",\"releaseTimestamp\":\"2013-01-07T21:53:14.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"WrPWFvvCxSA4NThOVh2sAzFqEYc=\",\"title\":\"Remote Terminal Access Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/remote-terminal-access/1.0/remote-terminal-access.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Remote+Terminal+Access+Plugin\"},\"repo\":{\"buildDate\":\"Nov 19, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"bjarkef\",\"email\":\"bjarkefh@gmail.com\",\"name\":\"Bjarke Freund-Hansen\"},{\"developerId\":\"bklarson\",\"email\":\"bklarson@gmail.com\",\"name\":\"Brad Larson\"}],\"excerpt\":\"This plugin adds Repo ([http://code.google.com/p/git-repo/]) as an SCM provider in Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:repo:1.3\",\"labels\":[\"scm\"],\"name\":\"repo\",\"previousTimestamp\":\"2012-04-23T16:59:16.00Z\",\"previousVersion\":\"1.2.1\",\"releaseTimestamp\":\"2012-11-19T20:55:40.00Z\",\"requiredCore\":\"1.350\",\"scm\":\"github.com\",\"sha1\":\"ce7ZgiClo/HuvwLxpQj/KrJ7vGE=\",\"title\":\"Repo Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/repo/1.3/repo.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Repo+Plugin\"},\"repository\":{\"buildDate\":\"Sep 28, 2012\",\"dependencies\":[{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.23\"},{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.466\"}],\"developers\":[{\"developerId\":\"magnayn\",\"email\":\"nigel.magnay@gmail.com\",\"name\":\"Nigel Magnay\"}],\"excerpt\":\"This plug-in exposes project builds as a maven repository so the artifacts can be picked up by downstream builds or other systems.\",\"gav\":\"jenkins:repository:0.11\",\"labels\":[\"maven\"],\"name\":\"repository\",\"previousTimestamp\":\"2012-04-05T17:03:16.00Z\",\"previousVersion\":\"0.9\",\"releaseTimestamp\":\"2012-09-28T19:31:12.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"/eJTCcGKH3C4hD6YW3qUvVmekHM=\",\"title\":\"Jenkins Maven Repository Server\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/repository/0.11/repository.hpi\",\"version\":\"0.11\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Maven+Repository+Server\"},\"repository-connector\":{\"buildDate\":\"Feb 18, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"imod\",\"email\":\"-\",\"name\":\"Dominik Bartholdi\"}],\"excerpt\":\"Repository Connector adds a build step which allows to resolve artifacts from a maven repository like nexus (without having maven installed). \",\"gav\":\"org.jvnet.hudson.plugins:repository-connector:0.8.2\",\"labels\":[\"external\",\"maven\"],\"name\":\"repository-connector\",\"previousTimestamp\":\"2011-09-26T21:36:44.00Z\",\"previousVersion\":\"0.8.1\",\"releaseTimestamp\":\"2012-02-18T23:33:48.00Z\",\"requiredCore\":\"1.378\",\"scm\":\"github.com\",\"sha1\":\"RNX3AdZQ2/qxFI8fchubAo7pwIQ=\",\"title\":\"Repository Connector Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/repository-connector/0.8.2/repository-connector.hpi\",\"version\":\"0.8.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Repository+Connector+Plugin\"},\"reverse-proxy-auth-plugin\":{\"buildDate\":\"Mar 26, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"email\":\"kkawaguchi@cloudbees.com\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin lets you delegate the authentication to the reverse proxy that you run in front of Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:reverse-proxy-auth-plugin:1.0\",\"labels\":[\"user\"],\"name\":\"reverse-proxy-auth-plugin\",\"releaseTimestamp\":\"2011-03-26T21:32:40.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"CHkHnHHOS+KtezFxqmmI9hBcnmE=\",\"title\":\"Reverse Proxy Auth Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/reverse-proxy-auth-plugin/1.0/reverse-proxy-auth-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Reverse+Proxy+Auth+Plugin\"},\"reviewboard\":{\"buildDate\":\"Feb 17, 2011\",\"dependencies\":[{\"name\":\"perforce\",\"optional\":false,\"version\":\"1.0.28\"}],\"developers\":[{\"developerId\":\"rshelley\",\"email\":\"ryan@12gaugemedia.com\",\"name\":\"Ryan Shelley\"}],\"excerpt\":\"This plugin connects to <a href='http://www.reviewboard.org'>Reviewboard<\\/a> to create and update Review Requests.  Reviewboard is a tool for conducting code reviews and this plugin will allow you to link your SCM updates, when they are pulled for a Jenkins build, to Reviewboard.  Note that currently, only the <a href='Perforce Plugin'>Perforce SCM<\\/a> is supported.\",\"gav\":\"org.jvnet.hudson.plugins:reviewboard:1.0.1\",\"labels\":[\"notifier\"],\"name\":\"reviewboard\",\"previousTimestamp\":\"2010-05-04T17:38:06.00Z\",\"previousVersion\":\"1.0.0\",\"releaseTimestamp\":\"2011-02-17T18:47:32.00Z\",\"requiredCore\":\"1.358\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"teByZj4VXUnhXdL7uEPTrSdqcLg=\",\"title\":\"Reviewboard Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/reviewboard/1.0.1/reviewboard.hpi\",\"version\":\"1.0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Reviewboard+Plugin\"},\"robot\":{\"buildDate\":\"Oct 01, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"jpiironen\",\"email\":\"janne.piironen@gmail.com\",\"name\":\"Janne Piironen\"}],\"excerpt\":\"This plugin collects and publishes <a href='http://code.google.com/p/robotframework/'>Robot Framework<\\/a> test results\",\"gav\":\"org.jenkins-ci.plugins:robot:1.2.3\",\"labels\":[\"report\"],\"name\":\"robot\",\"previousTimestamp\":\"2012-05-09T19:54:56.00Z\",\"previousVersion\":\"1.2.2\",\"releaseTimestamp\":\"2012-10-01T16:24:12.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"ziR0jZJMfZghpNWCRaqjIiPYHrI=\",\"title\":\"Robot Framework Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/robot/1.2.3/robot.hpi\",\"version\":\"1.2.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Robot+Framework+Plugin\"},\"role-strategy\":{\"buildDate\":\"Oct 14, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tmaurel\",\"name\":\"Thomas Maurel\"},{\"developerId\":\"rseguy\",\"name\":\"Romain Seguy\"}],\"excerpt\":\"Adds a new role-based strategy to manage users' permissions.\",\"gav\":\"org.jenkins-ci.plugins:role-strategy:1.1.2\",\"labels\":[\"user\"],\"name\":\"role-strategy\",\"previousTimestamp\":\"2011-09-19T22:53:20.00Z\",\"previousVersion\":\"1.1.1\",\"releaseTimestamp\":\"2011-10-14T15:12:56.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"OL8aScDTWyM0ReP/fYILTU5Vt0k=\",\"title\":\"Role Strategy Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/role-strategy/1.1.2/role-strategy.hpi\",\"version\":\"1.1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Role+Strategy+Plugin\"},\"rrod\":{\"buildDate\":\"Mar 01, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"danielpetisme\",\"email\":\"daniel.petisme@gmail.com\",\"name\":\"Daniel Petisme\"}],\"excerpt\":\"This plugin adds new actions on jobs for users to request that their jobs are renamed or deleted\",\"gav\":\"org.jenkins-ci.plugins:rrod:1.1.0\",\"labels\":[\"misc\"],\"name\":\"rrod\",\"previousTimestamp\":\"2011-10-17T21:19:04.00Z\",\"previousVersion\":\"1.0.2\",\"releaseTimestamp\":\"2012-03-01T20:41:30.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"BHc6RyGkYHbOqmZpdTP/60k3XMo=\",\"title\":\"Request Rename Or Delete Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/rrod/1.1.0/rrod.hpi\",\"version\":\"1.1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Request+Rename+Or+Delete+Plugin\"},\"rtc\":{\"buildDate\":\"Dec 12, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"deluan\",\"email\":\"jenkins@deluan.com\",\"name\":\"Deluan Quintao\"}],\"excerpt\":\"This plugin integrates&nbsp;<a href='https://jazz.net/projects/rational-team-concert'>IBM's Rational Team Concert (RTC)<\\/a>&nbsp;source control to Hudson. \",\"gav\":\"org.jenkins-ci.plugins:rtc:0.3\",\"labels\":[\"scm\"],\"name\":\"rtc\",\"previousTimestamp\":\"2011-11-29T20:30:54.00Z\",\"previousVersion\":\"0.2.2\",\"releaseTimestamp\":\"2011-12-13T01:18:58.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"u5HX8M8dP83hTcc83Z3tPVKvaNM=\",\"title\":\"Rational Team Concert Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/rtc/0.3/rtc.hpi\",\"version\":\"0.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Rational+Team+Concert+Plugin\"},\"ruby\":{\"buildDate\":\"Jan 31, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vivekp\",\"name\":\"Vivek Pandey\"}],\"excerpt\":\"This plugin will let users use <a href='http://www.ruby-lang.org/'>Ruby<\\/a> in the build scripts. \",\"gav\":\"org.jvnet.hudson.plugins:ruby:1.2\",\"labels\":[\"builder\",\"ruby\"],\"name\":\"ruby\",\"previousTimestamp\":\"2008-01-26T14:20:32.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2010-01-31T20:49:38.00Z\",\"requiredCore\":\"1.318\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"8Mvxy/p9VNOY8+LIlwMv5+/XhP8=\",\"title\":\"Ruby Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ruby/1.2/ruby.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Ruby+Plugin\"},\"ruby-runtime\":{\"buildDate\":\"Mar 22, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"Hosts runtime for enabling pure-Ruby plugins\",\"gav\":\"org.jenkins-ci.plugins:ruby-runtime:0.10\",\"name\":\"ruby-runtime\",\"previousTimestamp\":\"2012-02-09T13:44:28.00Z\",\"previousVersion\":\"0.9\",\"releaseTimestamp\":\"2012-03-22T13:55:52.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"MWaCPg4BvdYGfcUaRY45Fb9yBnc=\",\"title\":\"ruby-runtime\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ruby-runtime/0.10/ruby-runtime.hpi\",\"version\":\"0.10\"},\"rubyMetrics\":{\"buildDate\":\"Mar 10, 2011\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.397\"},{\"name\":\"rake\",\"optional\":false,\"version\":\"1.7.3\"}],\"developers\":[{\"developerId\":\"david_calavera\",\"email\":\"calavera@apache.org\",\"name\":\"David Calavera\"}],\"excerpt\":\"Ruby metric reports for Jenkins. <a href='http://eigenclass.org/hiki.rb?rcov'>Rcov<\\/a>, Rails stats, Rails notes and <a href='http://ruby.sadi.st/Flog.html'>Flog<\\/a>.\",\"gav\":\"org.jenkins-ci.plugins:rubyMetrics:1.5.0\",\"labels\":[\"report\",\"ruby\"],\"name\":\"rubyMetrics\",\"previousTimestamp\":\"2010-11-27T18:31:10.00Z\",\"previousVersion\":\"1.4.6\",\"releaseTimestamp\":\"2011-03-11T03:33:44.00Z\",\"requiredCore\":\"1.397\",\"scm\":\"github.com\",\"sha1\":\"pIJbY1kwbVpO8Yss6/IC1iqaOFw=\",\"title\":\"Ruby metrics plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/rubyMetrics/1.5.0/rubyMetrics.hpi\",\"version\":\"1.5.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Ruby+metrics+plugin\"},\"run-condition\":{\"buildDate\":\"May 25, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"bap\",\"email\":\"bap-jenkins@BapIT.co.uk\",\"name\":\"Bap\"}],\"excerpt\":\"Core conditions to select whether to execute a build step or publisher. Used by the [Flexible Publish Plugin] and the [Conditional BuildStep Plugin]. \",\"gav\":\"org.jenkins-ci.plugins:run-condition:0.10\",\"labels\":[\"misc\"],\"name\":\"run-condition\",\"previousTimestamp\":\"2012-05-06T23:51:32.00Z\",\"previousVersion\":\"0.9\",\"releaseTimestamp\":\"2012-05-26T00:34:10.00Z\",\"requiredCore\":\"1.408\",\"scm\":\"github.com\",\"sha1\":\"S2616avhln75jKH2/yhK5SLphpw=\",\"title\":\"Run Condition Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/run-condition/0.10/run-condition.hpi\",\"version\":\"0.10\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Run+Condition+Plugin\"},\"rundeck\":{\"buildDate\":\"Jan 04, 2012\",\"compatibleSinceVersion\":\"2.0\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vbehar\",\"name\":\"Vincent Behar\"}],\"excerpt\":\"This plugin is a Notifier that will talk to a <a href='http://www.rundeck.org'>RunDeck<\\/a> instance (via its HTTP API) to schedule a job execution on RunDeck after a successful build on Jenkins. It is also a Trigger that will schedule a build on Jenkins after a job execution on RunDeck (using RunDeck WebHook Notification). In addition, it turns Jenkins into an <a href='http://rundeck.org/docs/RunDeck-Guide.html#option-model-provider'>Option provider<\\/a> for RunDeck, if you want to use your Jenkins build artifacts as an option to a RunDeck job. \",\"gav\":\"org.jenkins-ci.plugins:rundeck:2.11\",\"labels\":[\"notifier\",\"external\",\"trigger\"],\"name\":\"rundeck\",\"previousTimestamp\":\"2011-10-12T04:06:56.00Z\",\"previousVersion\":\"2.10\",\"releaseTimestamp\":\"2012-01-05T03:58:46.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"q36Zqr/NnOOGOmiyTgfSzJAruNg=\",\"title\":\"RunDeck Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/rundeck/2.11/rundeck.hpi\",\"version\":\"2.11\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/RunDeck+Plugin\"},\"rvm\":{\"buildDate\":\"Apr 03, 2012\",\"dependencies\":[{\"name\":\"ruby-runtime\",\"optional\":false,\"version\":\"0.7\"}],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin runs your jobs in the <a href='http://beginrescueend.com/'>RVM<\\/a> managed ruby+gemset of your choice\",\"gav\":\"org.jenkins-ci.ruby-plugins:rvm:0.3\",\"labels\":[\"ruby\"],\"name\":\"rvm\",\"previousTimestamp\":\"2012-01-25T01:56:28.00Z\",\"previousVersion\":\"0.2\",\"releaseTimestamp\":\"2012-04-03T15:19:20.00Z\",\"requiredCore\":\"1.432\",\"scm\":\"github.com\",\"sha1\":\"2pt70X8VG9X1vcq7VpiDuKcT2gA=\",\"title\":\"RVM Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/rvm/0.3/rvm.hpi\",\"version\":\"0.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/RVM+Plugin\"},\"s3\":{\"buildDate\":\"Nov 06, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"dougm\",\"name\":\"Doug MacEachern\"},{\"developerId\":\"d6y\",\"name\":\"Richard Dallaway\"},{\"developerId\":\"longlho\",\"name\":\"Long Ho\"},{\"developerId\":\"mikewatt\",\"name\":\"Michael Watt\"}],\"excerpt\":\"Upload build artifacts to Amazon S3\",\"gav\":\"org.jenkins-ci.plugins:s3:0.3.2\",\"labels\":[\"upload\"],\"name\":\"s3\",\"previousTimestamp\":\"2012-09-20T13:06:50.00Z\",\"previousVersion\":\"0.3.1\",\"releaseTimestamp\":\"2012-11-06T18:44:10.00Z\",\"requiredCore\":\"1.434\",\"scm\":\"github.com\",\"sha1\":\"1S0PpGWCUHT2cxG6khxuWODq6Ic=\",\"title\":\"S3 Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/s3/0.3.2/s3.hpi\",\"version\":\"0.3.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/S3+Plugin\"},\"saferestart\":{\"buildDate\":\"Sep 07, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"sogabe\",\"email\":\"s.sogabe@gmail.com\",\"name\":\"Seiji Sogabe\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"This plugin allows you to restart Jenkins safely.\",\"gav\":\"org.jenkins-ci.plugins:saferestart:0.2\",\"labels\":[\"misc\"],\"name\":\"saferestart\",\"previousTimestamp\":\"2010-10-18T20:53:24.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2011-09-08T02:47:20.00Z\",\"requiredCore\":\"1.421\",\"scm\":\"github.com\",\"sha1\":\"pdGEVPrNiv9AervaJ1Xu8IBAQDk=\",\"title\":\"SafeRestart Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/saferestart/0.2/saferestart.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SafeRestart+Plugin\"},\"sauce-ondemand\":{\"buildDate\":\"Dec 27, 2012\",\"dependencies\":[{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"copy-to-slave\",\"optional\":false,\"version\":\"1.4\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.467\"}],\"developers\":[{\"developerId\":\"ross\"}],\"excerpt\":\"This plugin allows you to integrate <a href='https://saucelabs.com/'>Sauce OnDemand<\\/a> with Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:sauce-ondemand:1.37\",\"labels\":[\"buildwrapper\"],\"name\":\"sauce-ondemand\",\"previousTimestamp\":\"2012-12-22T13:39:30.00Z\",\"previousVersion\":\"1.36\",\"releaseTimestamp\":\"2012-12-27T16:11:06.00Z\",\"requiredCore\":\"1.439\",\"scm\":\"github.com\",\"sha1\":\"hgSl1PyXGOlWSFpAgZJVArW0iqo=\",\"title\":\"Sauce OnDemand Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/sauce-ondemand/1.37/sauce-ondemand.hpi\",\"version\":\"1.37\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Sauce+OnDemand+Plugin\"},\"sbt\":{\"buildDate\":\"Jul 17, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"uzilan\",\"email\":\"uzi.landsmann@gmail.com\",\"name\":\"Uzi Landsmann\"}],\"excerpt\":\"This plugin allows building Scala projects using <a href='http://code.google.com/p/simple-build-tool/'>sbt<\\/a>. \",\"gav\":\"org.jenkins-ci.plugins:sbt:1.4\",\"labels\":[\"builder\"],\"name\":\"sbt\",\"previousTimestamp\":\"2011-08-27T13:24:28.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2012-07-17T20:24:34.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"UXG6GZDyIxGZUZqtVUBeZqhtS7M=\",\"title\":\"sbt plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/sbt/1.4/sbt.hpi\",\"version\":\"1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/sbt+plugin\"},\"schedule-failed-builds\":{\"buildDate\":\"Dec 28, 2009\",\"dependencies\":[],\"developers\":[{\"developerId\":\"sfritz\",\"name\":\"Stefan Fritz\"}],\"excerpt\":\"Allows you to retry failed Hudson builds every n minutes.\",\"gav\":\"com.progress.hudson:schedule-failed-builds:1.1\",\"labels\":[\"trigger\"],\"name\":\"schedule-failed-builds\",\"previousTimestamp\":\"2008-09-19T11:23:46.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2009-12-29T02:41:02.00Z\",\"requiredCore\":\"1.324\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"MlP7dxQRuT+IMolVNq5xXpScN1s=\",\"title\":\"Retry Failed Builds Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/schedule-failed-builds/1.1/schedule-failed-builds.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Retry+Failed+Builds+Plugin\"},\"scm-sync-configuration\":{\"buildDate\":\"Oct 28, 2012\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.39\"}],\"developers\":[{\"developerId\":\"fcamblor\",\"email\":\"fcamblor+jenkinswiki@gmail.com\",\"name\":\"Frederic Camblor\"},{\"developerId\":\"bpaquet\",\"email\":\"bertrand.paquet@gmail.com\",\"name\":\"Bertrand Paquet\"}],\"excerpt\":\"Syncs configuration files to a SCM repository and tracks changes done to them   \",\"gav\":\"org.jenkins-ci.plugins:scm-sync-configuration:0.0.6.1\",\"labels\":[\"misc\"],\"name\":\"scm-sync-configuration\",\"previousTimestamp\":\"2012-09-18T05:59:22.00Z\",\"previousVersion\":\"0.0.6\",\"releaseTimestamp\":\"2012-10-29T03:36:56.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"u3SDtmNgc1gQAX2/zgq1gCwtqjc=\",\"title\":\"SCM Sync configuration plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/scm-sync-configuration/0.0.6.1/scm-sync-configuration.hpi\",\"version\":\"0.0.6.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SCM+Sync+configuration+plugin\"},\"scm2job\":{\"buildDate\":\"Sep 20, 2012\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.39\"},{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.17\"}],\"developers\":[{\"developerId\":\"stefanbrausch\",\"email\":\"stefan.brausch@1und1.de\",\"name\":\"Stefan Brausch\"},{\"developerId\":\"kstutz\",\"email\":\"kathi.stutz@1und1.de\",\"name\":\"Kathi Stutz\"}],\"excerpt\":\"Finds jobs by their SCM URL. \",\"gav\":\"org.jenkins-ci.plugins:scm2job:2.2\",\"labels\":[\"scm-related\"],\"name\":\"scm2job\",\"previousTimestamp\":\"2012-09-19T19:57:42.00Z\",\"previousVersion\":\"2.1\",\"releaseTimestamp\":\"2012-09-20T21:57:24.00Z\",\"requiredCore\":\"1.424.6\",\"scm\":\"github.com\",\"sha1\":\"UTloKrMrXCDdmoYtJIpxDqoAI0Q=\",\"title\":\"SCM2Job Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/scm2job/2.2/scm2job.hpi\",\"version\":\"2.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SCM2Job+Plugin\"},\"scons\":{\"buildDate\":\"May 24, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gbois@dev.java.net\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin allows Hudson to invoke <a href='http://www.scons.org/'>SCons<\\/a> build script as the main build step.\",\"gav\":\"com.thalesgroup.jenkins-ci.plugins:scons:0.4\",\"labels\":[\"builder\"],\"name\":\"scons\",\"previousTimestamp\":\"2011-03-07T01:12:56.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2011-05-24T05:37:02.00Z\",\"requiredCore\":\"1.413\",\"scm\":\"github.com\",\"sha1\":\"KobvAmnJkmEayv9IHUOY9PCqod8=\",\"title\":\"SCons Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/scons/0.4/scons.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SCons+Plugin\"},\"scp\":{\"buildDate\":\"Jan 07, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ramazanyich2\",\"name\":\"Ramil Israfilov\"}],\"excerpt\":\"This plugin uploads build artifacts to repository sites using SCP (SSH) protocol.\",\"gav\":\"org.jvnet.hudson.plugins:scp:1.8\",\"labels\":[\"upload\"],\"name\":\"scp\",\"previousTimestamp\":\"2010-11-20T15:12:00.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2011-01-07T05:05:58.00Z\",\"requiredCore\":\"1.389\",\"scm\":\"github.com\",\"sha1\":\"9mS+ZOeydNbMV07rXC62xNFDwEw=\",\"title\":\"SCP plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/scp/1.8/scp.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SCP+plugin\"},\"screenshot\":{\"buildDate\":\"Dec 01, 2009\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tom\"}],\"excerpt\":\"Shows a screenshot of a running build.\",\"gav\":\"org.jvnet.hudson.plugins:screenshot:1.1\",\"labels\":[\"ui\",\"buildwrapper\"],\"name\":\"screenshot\",\"previousTimestamp\":\"2009-11-29T02:18:14.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2009-12-02T02:06:30.00Z\",\"requiredCore\":\"1.335\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"14C0JllgeK68CdJb7vPxF8cPu6Y=\",\"title\":\"Screenshot Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/screenshot/1.1/screenshot.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Screenshot+Plugin\"},\"script-realm\":{\"buildDate\":\"Jun 24, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"imod\",\"email\":\"-\",\"name\":\"Dominik Bartholdi\"}],\"excerpt\":\"This plugin allows you to use a user-written custom script to authenticate the username and password\",\"gav\":\"org.jvnet.hudson.plugins:script-realm:1.5\",\"labels\":[\"user\"],\"name\":\"script-realm\",\"previousTimestamp\":\"2011-07-29T23:42:08.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2012-06-24T22:57:46.00Z\",\"requiredCore\":\"1.330\",\"scm\":\"github.com\",\"sha1\":\"d4ee6ZzSh4OhfkcyY80ZB+0BAR0=\",\"title\":\"Script Security Realm\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/script-realm/1.5/script-realm.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Script+Security+Realm\"},\"script-scm\":{\"buildDate\":\"Oct 22, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vimil\",\"name\":\"vimil\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:script-scm:1.11\",\"labels\":[],\"name\":\"script-scm\",\"previousTimestamp\":\"2012-10-19T13:31:46.00Z\",\"previousVersion\":\"1.8\",\"releaseTimestamp\":\"2012-10-22T16:25:02.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"QYKuWLkppC7rLoOVjQYXD7dqgOM=\",\"title\":\"Script SCM Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/script-scm/1.11/script-scm.hpi\",\"version\":\"1.11\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Script+SCM+Plugin\"},\"scripted-cloud-plugin\":{\"buildDate\":\"Oct 12, 2012\",\"dependencies\":[{\"name\":\"ivy\",\"optional\":true,\"version\":\"1.19\"}],\"developers\":[{\"developerId\":\"hisatti77\",\"email\":\"hisatti77@gmail.com\",\"name\":\"Satinder Singh\"}],\"excerpt\":\"Add script based slave VM management to Jenkins to use virtual machines as slaves \",\"gav\":\"org.jenkins-ci.plugins:scripted-cloud-plugin:0.12\",\"labels\":[\"slaves\"],\"name\":\"scripted-cloud-plugin\",\"previousTimestamp\":\"2012-10-06T01:32:22.00Z\",\"previousVersion\":\"0.11\",\"releaseTimestamp\":\"2012-10-12T21:47:14.00Z\",\"requiredCore\":\"1.464\",\"scm\":\"github.com\",\"sha1\":\"sy4QBfyjx6SJda+uayHVfK0gt0M=\",\"title\":\"Scripted Cloud plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/scripted-cloud-plugin/0.12/scripted-cloud-plugin.hpi\",\"version\":\"0.12\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Scripted+Cloud+plugin\"},\"scriptler\":{\"buildDate\":\"Nov 19, 2012\",\"dependencies\":[{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.17\"},{\"name\":\"git-server\",\"optional\":false,\"version\":\"1.1\"},{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"imod\",\"email\":\"-\",\"name\":\"Dominik Bartholdi\"}],\"excerpt\":\"Scriptler allows you to store/edit groovy scripts and execute it on any of the slaves/nodes... no need to copy/paste groovy code anymore. \",\"gav\":\"org.jenkins-ci.plugins:scriptler:2.5.1\",\"labels\":[\"slaves\",\"misc\",\"groovy-related\"],\"name\":\"scriptler\",\"previousTimestamp\":\"2012-11-08T02:24:04.00Z\",\"previousVersion\":\"2.5\",\"releaseTimestamp\":\"2012-11-20T04:12:30.00Z\",\"requiredCore\":\"1.451\",\"scm\":\"github.com\",\"sha1\":\"GxSE6MZdqwLuW/yTKmFgVsZXj64=\",\"title\":\"Scriptler Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/scriptler/2.5.1/scriptler.hpi\",\"version\":\"2.5.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Scriptler+Plugin\"},\"scripttrigger\":{\"buildDate\":\"Jul 25, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gregory.boissinot@gmail.com\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"ScriptTrigger makes it possible to monitor an environment with a script.\",\"gav\":\"org.jenkins-ci.plugins:scripttrigger:0.21\",\"labels\":[\"trigger\"],\"name\":\"scripttrigger\",\"previousTimestamp\":\"2012-06-16T15:07:10.00Z\",\"previousVersion\":\"0.20\",\"releaseTimestamp\":\"2012-07-25T05:43:14.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"HNmeh5otHjenQ1WuLyNOpmrx6lw=\",\"title\":\"ScriptTrigger Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/scripttrigger/0.21/scripttrigger.hpi\",\"version\":\"0.21\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/ScriptTrigger+Plugin\"},\"search-all-results-plugin\":{\"buildDate\":\"Jun 25, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"lvotypko\",\"email\":\"lvotypko@redhat.com\",\"name\":\"Lucie Votypkova\"}],\"excerpt\":\"This plugin enables to show all searched results (not only suggestion) and categorization. \",\"gav\":\"org.jenkins-ci.plugins:search-all-results-plugin:1.0\",\"labels\":[],\"name\":\"search-all-results-plugin\",\"releaseTimestamp\":\"2012-06-25T13:36:52.00Z\",\"requiredCore\":\"1.471\",\"scm\":\"github.com\",\"sha1\":\"qG6sd4kHUFvw52HatIL7tN6wsx0=\",\"title\":\"All searched results plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/search-all-results-plugin/1.0/search-all-results-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/All+searched+results+plugin\"},\"secret\":{\"buildDate\":\"May 06, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jglick\",\"email\":\"jesse.glick@sun.com\",\"name\":\"Jesse Glick\"}],\"excerpt\":\"Lets you upload secret files to be used by a build.\",\"gav\":\"org.jvnet.hudson.plugins:secret:1.6\",\"labels\":[\"buildwrapper\"],\"name\":\"secret\",\"previousTimestamp\":\"2010-02-15T23:13:44.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2010-05-06T20:27:12.00Z\",\"requiredCore\":\"1.324\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"SOj2X0iOJ+7RnNKAR0kJjghgkuk=\",\"title\":\"Build Secret Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/secret/1.6/secret.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Build+Secret+Plugin\"},\"sectioned-view\":{\"buildDate\":\"Dec 04, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tbingaman\",\"email\":\"timothy.bingaman@gmail.com\",\"name\":\"Timothy Bingaman\"}],\"excerpt\":\"This plugin provides a new view implementation that can be divided into sections. Each section can display different information about the selected jobs.  An extension point is also provided to define new types of sections.\",\"gav\":\"org.jvnet.hudson.plugins:sectioned-view:1.16\",\"labels\":[\"ui\"],\"name\":\"sectioned-view\",\"previousTimestamp\":\"2011-03-23T15:05:28.00Z\",\"previousVersion\":\"1.15\",\"releaseTimestamp\":\"2011-12-04T21:36:38.00Z\",\"requiredCore\":\"1.388\",\"scm\":\"github.com\",\"sha1\":\"4tvOl5TCgbhQom8a2OJsyrFYxgc=\",\"title\":\"Sectioned View Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/sectioned-view/1.16/sectioned-view.hpi\",\"version\":\"1.16\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Sectioned+View+Plugin\"},\"selection-tasks-plugin\":{\"buildDate\":\"Feb 28, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"nzhelyakov\",\"email\":\"nzhelyakov@gmail.com\",\"name\":\"Nikita Zhelyakov\"},{\"email\":\"tzolotuhin@gmail.com\",\"name\":\"Timur Zolotuhin\"}],\"excerpt\":\"This plugin adds new variable. You may select several tasks (for example, Selenium tests) for run. \",\"gav\":\"org.jvnet.hudson.plugins:selection-tasks-plugin:1.0\",\"labels\":[\"must-be-labeled\"],\"name\":\"selection-tasks-plugin\",\"releaseTimestamp\":\"2011-03-01T00:18:24.00Z\",\"requiredCore\":\"1.366\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"C6EJvWUCaKmzwjSXb8sl642HveE=\",\"title\":\"Selection Tasks Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/selection-tasks-plugin/1.0/selection-tasks-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Selection+Tasks+Plugin\"},\"selenium\":{\"buildDate\":\"Sep 05, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"darkrift\",\"email\":\"lavoie.richard@gmail.com\",\"name\":\"Richard Lavoie\"}],\"excerpt\":\"This plugin turns your Jenkins cluster into a <a href='http://code.google.com/p/selenium/wiki/Grid2'>Selenium2 Grid<\\/a> cluster\",\"gav\":\"org.jenkins-ci.plugins:selenium:2.2\",\"labels\":[\"cluster\"],\"name\":\"selenium\",\"previousTimestamp\":\"2012-09-04T00:49:44.00Z\",\"previousVersion\":\"2.1\",\"releaseTimestamp\":\"2012-09-05T04:29:56.00Z\",\"requiredCore\":\"1.478\",\"scm\":\"github.com\",\"sha1\":\"SrwEsRYa46Xp9ooP8HMEfYJkEIk=\",\"title\":\"Selenium Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/selenium/2.2/selenium.hpi\",\"version\":\"2.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Selenium+Plugin\"},\"selenium-aes\":{\"buildDate\":\"Jan 03, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"onozaty\"}],\"excerpt\":\"This plugin is for continuous regression test by <a href='http://www.enjoyxstudy.com/selenium/autoexec/index.en.html'>Selenium Auto Exec Server (AES)<\\/a>.\",\"gav\":\"org.jvnet.hudson.plugins:selenium-aes:0.5\",\"labels\":[\"builder\",\"report\"],\"name\":\"selenium-aes\",\"previousTimestamp\":\"2010-02-05T14:56:38.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2011-01-03T22:28:08.00Z\",\"requiredCore\":\"1.391\",\"scm\":\"svn.java.net\",\"sha1\":\"LGfTbg0/TYuS3CwT6y6wMOV5PBw=\",\"title\":\"Selenium AES Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/selenium-aes/0.5/selenium-aes.hpi\",\"version\":\"0.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Selenium+AES+Plugin\"},\"seleniumhq\":{\"buildDate\":\"Jul 16, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"pascal_martin\",\"name\":\"Pascal Martin\"}],\"excerpt\":\"This plugin allows you to run and load HTML Selenese suite result generate by Selenium Server from <a href='http://seleniumhq.org/'>Seleniumhq<\\/a>. Jenkins will generate the trend report of test result.  The Seleniumhq plug in can be <a href='http://mirrors.jenkins-ci.org/plugins/seleniumhq/'>downloaded here<\\/a>.\",\"gav\":\"org.jvnet.hudson.plugins:seleniumhq:0.4\",\"labels\":[\"builder\",\"report\"],\"name\":\"seleniumhq\",\"previousTimestamp\":\"2010-07-11T00:46:32.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2010-07-16T19:16:38.00Z\",\"requiredCore\":\"1.366\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"qhJVAttsNzozQT2TWKgmi9LJ1+M=\",\"title\":\"Seleniumhq Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/seleniumhq/0.4/seleniumhq.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Seleniumhq+Plugin\"},\"seleniumhtmlreport\":{\"buildDate\":\"Nov 03, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"m211\",\"name\":\"Marco Machmer\"}],\"excerpt\":\"This plugin visualizes the results of selenium tests. \",\"gav\":\"org.jenkins-ci.plugins:seleniumhtmlreport:0.94\",\"labels\":[\"report\"],\"name\":\"seleniumhtmlreport\",\"previousTimestamp\":\"2011-05-24T12:13:08.00Z\",\"previousVersion\":\"0.93\",\"releaseTimestamp\":\"2011-11-03T13:03:10.00Z\",\"requiredCore\":\"1.405\",\"scm\":\"github.com\",\"sha1\":\"rsBIrOiQiqj6/MOxMCTFt6WsmnQ=\",\"title\":\"seleniumhtmlreport Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/seleniumhtmlreport/0.94/seleniumhtmlreport.hpi\",\"version\":\"0.94\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/seleniumhtmlreport+Plugin\"},\"seleniumrc-plugin\":{\"buildDate\":\"Mar 02, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"nzhelyakov\",\"email\":\"nzhelyakov@gmail.com\",\"name\":\"Nikita Zhelyakov\"}],\"excerpt\":\"This plugin allows you to create Selenium server instance for each project build. \",\"gav\":\"org.jvnet.hudson.plugins:seleniumrc-plugin:1.0\",\"labels\":[\"buildwrapper\",\"must-be-labeled\"],\"name\":\"seleniumrc-plugin\",\"releaseTimestamp\":\"2011-03-02T05:27:40.00Z\",\"requiredCore\":\"1.366\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"ULZBFhnLxv1sGK6Rnojt6mQzXAs=\",\"title\":\"SeleniumRC Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/seleniumrc-plugin/1.0/seleniumrc-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SeleniumRC+Plugin\"},\"serenity\":{\"buildDate\":\"May 13, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"michael.couck\",\"email\":\"michael.couck@gmail.com\",\"name\":\"Michael Couck\"}],\"excerpt\":\"Serenity is a Java code coverage, complexity and dependency library that uses dynamic instrumentation, with a friendly Hudson ui.\",\"gav\":\"org.jvnet.hudson.plugins:serenity:0.4\",\"labels\":[\"report\"],\"name\":\"serenity\",\"previousTimestamp\":\"2010-03-16T16:31:58.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2010-05-13T16:56:30.00Z\",\"requiredCore\":\"1.350\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"NTYMV3iNwIEfH+czfKB0ZuUlPu0=\",\"title\":\"Serenity Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/serenity/0.4/serenity.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Serenity+Plugin\"},\"sfee\":{\"buildDate\":\"Aug 12, 2010\",\"dependencies\":[{\"name\":\"description-setter\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.361\"}],\"developers\":[{\"developerId\":\"awpyv\"}],\"excerpt\":\"Authenticate users and publish build artifacts relying on a <a href='https://sfee.open.collab.net/sf/sfmain/do/home'>Collabnet Source Forge Enterprise Edition (SFEE)<\\/a> server.\",\"gav\":\"org.jvnet.hudson.plugins:sfee:1.0.4\",\"labels\":[\"external\",\"upload\",\"user\"],\"name\":\"sfee\",\"previousTimestamp\":\"2009-10-19T16:57:10.00Z\",\"previousVersion\":\"1.0.3\",\"releaseTimestamp\":\"2010-08-12T15:57:48.00Z\",\"requiredCore\":\"1.361\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"FcCj+/e5eOeKMwYXCZhDLCu5dzM=\",\"title\":\"SFEE Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/sfee/1.0.4/sfee.hpi\",\"version\":\"1.0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SFEE+Plugin\"},\"shared-objects\":{\"buildDate\":\"Aug 26, 2012\",\"dependencies\":[{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.444\"},{\"name\":\"envinject\",\"optional\":false,\"version\":\"1.68\"}],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gregory.boissinot@gmail.com\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin makes it possible to share objects (script file, source file, tool installation, ...) from an environment in Jenkins and manage dynamically these objects through environment variables with the [JENKINS:EnvInject Plugin] during the job build.\",\"gav\":\"org.jenkins-ci.plugins:shared-objects:0.42\",\"labels\":[],\"name\":\"shared-objects\",\"previousTimestamp\":\"2012-07-14T03:01:28.00Z\",\"previousVersion\":\"0.41\",\"releaseTimestamp\":\"2012-08-26T21:07:12.00Z\",\"requiredCore\":\"1.444\",\"scm\":\"github.com\",\"sha1\":\"ep4oE3heWCkgid0fxsr2ZYZrLA4=\",\"title\":\"SharedObjects Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/shared-objects/0.42/shared-objects.hpi\",\"version\":\"0.42\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SharedObjects+Plugin\"},\"shelve-project-plugin\":{\"buildDate\":\"Aug 06, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ashlux\",\"email\":\"ashlux@gmail.com\",\"name\":\"Ash Lux\"}],\"excerpt\":\"This plugin lets you shelve projects so that they can easily be resurrected.\",\"gav\":\"org.jenkins-ci.plugins:shelve-project-plugin:1.3\",\"labels\":[\"ui\",\"misc\"],\"name\":\"shelve-project-plugin\",\"previousTimestamp\":\"2011-02-08T22:54:40.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-08-06T13:33:42.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"jBzsK2886A0JCi2OC9QJulUb50E=\",\"title\":\"Shelve Project Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/shelve-project-plugin/1.3/shelve-project-plugin.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Shelve+Project+Plugin\"},\"shiningpanda\":{\"buildDate\":\"Nov 28, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"omansion\",\"email\":\"olivier.mansion@shiningpanda.com\",\"name\":\"Olivier Mansion\"},{\"developerId\":\"atabary\",\"email\":\"alexis.tabary@shiningpanda.com\",\"name\":\"Alexis Tabary\"}],\"excerpt\":\"This plugin adds Python support to Jenkins with some useful builders (Python builder, <a href='http://pypi.python.org/pypi/virtualenv'>virtualenv<\\/a> builder, <a href='http://codespeak.net/~hpk/tox/'>tox<\\/a> builder...) and the ability to use a Python axis in multi-configuration projects (for testing on multiple versions of Python).\",\"gav\":\"org.jenkins-ci.plugins:shiningpanda:0.17\",\"labels\":[\"builder\"],\"name\":\"shiningpanda\",\"previousTimestamp\":\"2012-11-22T01:39:48.00Z\",\"previousVersion\":\"0.16\",\"releaseTimestamp\":\"2012-11-29T03:14:22.00Z\",\"requiredCore\":\"1.429\",\"scm\":\"github.com\",\"sha1\":\"56nVRQW6czBiaQlfPBpXsFLD0Vk=\",\"title\":\"ShiningPanda Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/shiningpanda/0.17/shiningpanda.hpi\",\"version\":\"0.17\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/ShiningPanda+Plugin\"},\"show-build-parameters\":{\"buildDate\":\"Mar 06, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"petehayes\",\"name\":\"Peter Hayes\"}],\"excerpt\":\"Show the parameters used for a build on the main build page \",\"gav\":\"org.jenkins-ci.plugins:show-build-parameters:1.0\",\"labels\":[\"ui\"],\"name\":\"show-build-parameters\",\"releaseTimestamp\":\"2011-03-06T15:20:06.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"ae5bAwfMkHzoDBgsyAA1yIMRucA=\",\"title\":\"Show Build Parameters Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/show-build-parameters/1.0/show-build-parameters.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Show+Build+Parameters+Plugin\"},\"sicci_for_xcode\":{\"buildDate\":\"Feb 09, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"bene\",\"email\":\"benedikt@biallowons.de\",\"name\":\"Benedikt Biallowons\"}],\"excerpt\":\"This plugin integrates support for Xcode projects.\",\"gav\":\"org.jvnet.hudson.plugins:sicci_for_xcode:0.0.8\",\"labels\":[\"builder\",\"ios\"],\"name\":\"sicci_for_xcode\",\"previousTimestamp\":\"2011-02-01T17:56:54.00Z\",\"previousVersion\":\"0.0.7\",\"releaseTimestamp\":\"2011-02-09T14:20:04.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"OWTxzIrYsIkdjE+phvc1GQRkwqI=\",\"title\":\"SICCI for Xcode Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/sicci_for_xcode/0.0.8/sicci_for_xcode.hpi\",\"version\":\"0.0.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SICCI+for+Xcode+Plugin\"},\"sidebar-link\":{\"buildDate\":\"Jul 24, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mindless\",\"name\":\"Alan Harder\"}],\"excerpt\":\"Add links in the sidebar of the Jenkins main page, view tabs and project pages.\",\"gav\":\"org.jenkins-ci.plugins:sidebar-link:1.6\",\"labels\":[\"ui\"],\"name\":\"sidebar-link\",\"previousTimestamp\":\"2011-01-20T12:37:14.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2011-07-24T12:26:02.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"95DL2vYrkbhW4FomEUtbIj3TgAg=\",\"title\":\"Sidebar-Link Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/sidebar-link/1.6/sidebar-link.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Sidebar-Link+Plugin\"},\"signal-killer\":{\"buildDate\":\"Feb 10, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vjuranek\",\"name\":\"Vojtech Juranek\"}],\"excerpt\":\"&nbsp; This plugin extends ProcessKiller extension point and sends signal (currentlly SIGKILL) to given job via native GNU C library call. &nbsp;&nbsp;\",\"gav\":\"hudson.plugins.signal_killer:signal-killer:1.0\",\"labels\":[\"misc\"],\"name\":\"signal-killer\",\"releaseTimestamp\":\"2011-02-10T19:29:14.00Z\",\"requiredCore\":\"1.391\",\"scm\":\"github.com\",\"sha1\":\"mJIImiIigV6xPXAg5QdKk3CGBlM=\",\"title\":\"Signal killer\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/signal-killer/1.0/signal-killer.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Signal+killer\"},\"simple-parameterized-builds-report\":{\"buildDate\":\"Jan 01, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"nalin_makar\",\"name\":\"Nalin Makar\"}],\"excerpt\":\"This Jenkins plugin makes it easy to visualize the various builds for a parameterized project that were run using the same set of parameters. \",\"gav\":\"org.jenkins-ci.plugins:simple-parameterized-builds-report:1.0\",\"labels\":[\"report\"],\"name\":\"simple-parameterized-builds-report\",\"releaseTimestamp\":\"2013-01-02T03:34:24.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"9ZOVhMA0rmz7Hva5uLJleuUieS4=\",\"title\":\"Simple Parameterized Builds Report plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/simple-parameterized-builds-report/1.0/simple-parameterized-builds-report.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Simple+Parameterized+Builds+Report+plugin\"},\"simple-theme-plugin\":{\"buildDate\":\"Jul 29, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mallowlabs\",\"email\":\"mallowlabs@gmail.com\",\"name\":\"mallowlabs\"}],\"excerpt\":\"A plugin for Jenkins that supports custom CSS & JavaScript. You can customize Jenkins's appearance (ex. his gentle face on the background). \",\"gav\":\"org.codefirst.jenkins.simplethemeplugin:simple-theme-plugin:0.2\",\"labels\":[\"ui\"],\"name\":\"simple-theme-plugin\",\"releaseTimestamp\":\"2011-07-29T19:14:06.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"bC5ilH3xsYurk2R+y8vCDWBjtsU=\",\"title\":\"Simple Theme Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/simple-theme-plugin/0.2/simple-theme-plugin.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Simple+Theme+Plugin\"},\"simpleclearcase\":{\"buildDate\":\"Mar 14, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"sata_\",\"email\":\"sam@tavakoli.se\",\"name\":\"Sam Tavakoli\"}],\"excerpt\":\"Integrates Jenkins with <a href='http://www.ibm.com/software/awdtools/clearcase/'>ClearCase<\\/a>.\",\"gav\":\"jenkins.plugins:simpleclearcase:1.2.2\",\"labels\":[],\"name\":\"simpleclearcase\",\"previousTimestamp\":\"2012-03-13T19:19:44.00Z\",\"previousVersion\":\"1.2.1\",\"releaseTimestamp\":\"2012-03-14T17:43:10.00Z\",\"requiredCore\":\"1.452\",\"scm\":\"github.com\",\"sha1\":\"DCOw3J21RcGMpwtYEeSNFkXW9Ng=\",\"title\":\"SimpleClearCase-Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/simpleclearcase/1.2.2/simpleclearcase.hpi\",\"version\":\"1.2.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SimpleClearCase-Plugin\"},\"simpleupdatesite\":{\"buildDate\":\"Sep 17, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"junoyoon\",\"email\":\"junoyoon@gmail.com\",\"name\":\"JunHo Yoon\"}],\"excerpt\":\"This plugin make Jenkins connect to the custom support site which provide custom plugin update info and announcements. \",\"gav\":\"org.jenkins-ci.plugins:simpleupdatesite:1.1.2\",\"labels\":[\"misc\"],\"name\":\"simpleupdatesite\",\"releaseTimestamp\":\"2011-09-17T05:28:12.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"v0mCSfELSnPdpf1433omqFqRs8s=\",\"title\":\"SimpleUpdateSite Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/simpleupdatesite/1.1.2/simpleupdatesite.hpi\",\"version\":\"1.1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SimpleUpdateSite+Plugin\"},\"sitemonitor\":{\"buildDate\":\"Nov 01, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"cliffano\",\"email\":\"blah@cliffano.com\",\"name\":\"Cliffano Subagio\"}],\"excerpt\":\"Monitors web site up/down status.\",\"gav\":\"org.jvnet.hudson.plugins:sitemonitor:0.4\",\"labels\":[\"post-build\"],\"name\":\"sitemonitor\",\"previousTimestamp\":\"2011-02-14T14:48:12.00Z\",\"previousVersion\":\"0.2\",\"releaseTimestamp\":\"2011-11-01T23:09:56.00Z\",\"requiredCore\":\"1.434\",\"scm\":\"github.com\",\"sha1\":\"vwH3TH44voPzWr+k7Ovhe5rqi3A=\",\"title\":\"SiteMonitor Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/sitemonitor/0.4/sitemonitor.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SiteMonitor+Plugin\"},\"skip-certificate-check\":{\"buildDate\":\"Sep 07, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This is a plugin that makes JVM bypass all the HTTPS certificate checks. Convenient if you deal with self-signed certificates and so on. Use with caution.\",\"gav\":\"org.jenkins-ci.plugins:skip-certificate-check:1.0\",\"labels\":[\"misc\"],\"name\":\"skip-certificate-check\",\"releaseTimestamp\":\"2011-09-07T15:52:54.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"THcV5kg0L/LR3ID4vTQZxX6Lywc=\",\"title\":\"Skip Certificate Check plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/skip-certificate-check/1.0/skip-certificate-check.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Skip+Certificate+Check+plugin\"},\"skype-notifier\":{\"buildDate\":\"May 14, 2011\",\"dependencies\":[{\"name\":\"instant-messaging\",\"optional\":false,\"version\":\"1.16\"}],\"developers\":[{\"developerId\":\"jbh\",\"email\":\"jarlebh@gmail.com\",\"name\":\"Jarle Hjortland\"}],\"excerpt\":\"Integrates Jenkins with Skype for instant messaging. Requires extra manual installation steps\\\\!\\\\!\\\\!  Note that you also need to install the <a href='http://wiki.jenkins-ci.org/display/JENKINS/Instant+Messaging+Plugin'>instant-messaging plugin<\\/a>.\",\"gav\":\"org.jenkins-ci.plugins:skype-notifier:1.1.0\",\"labels\":[\"notifier\"],\"name\":\"skype-notifier\",\"previousTimestamp\":\"2011-05-07T01:49:12.00Z\",\"previousVersion\":\"1.0.1\",\"releaseTimestamp\":\"2011-05-15T00:22:34.00Z\",\"requiredCore\":\"1.404\",\"scm\":\"github.com\",\"sha1\":\"0/aVziykcHu6OkRmUGXj7GZ00H8=\",\"title\":\"Skype Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/skype-notifier/1.1.0/skype-notifier.hpi\",\"version\":\"1.1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Skype+Plugin\"},\"sladiator-notifier\":{\"buildDate\":\"Jun 29, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mkemme\",\"email\":\"martins.kemme@gmail.com\",\"name\":\"Martins Kemme\"}],\"excerpt\":\"Sends build status notifications to the SLAdiator monitoring application ([http://sladiator.com]). \",\"gav\":\"org.jenkins-ci.plugins:sladiator-notifier:1.0.4\",\"labels\":[\"notifier\"],\"name\":\"sladiator-notifier\",\"previousTimestamp\":\"2012-04-19T19:33:22.00Z\",\"previousVersion\":\"1.0.2\",\"releaseTimestamp\":\"2012-06-29T17:47:08.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"tg+vi33M6Hi8ZvtOvK3lr9uKov0=\",\"title\":\"SLAdiator plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/sladiator-notifier/1.0.4/sladiator-notifier.hpi\",\"version\":\"1.0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SLAdiator+plugin\"},\"slave-prerequisites\":{\"buildDate\":\"Feb 29, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ndeloof\",\"email\":\"nicolas.deloof@gmail.com\",\"name\":\"Nicolas De Loof\"}],\"excerpt\":\"This plugin allows to check prerequisites on slave before a job can run a build on it\",\"gav\":\"org.jenkins-ci.plugins:slave-prerequisites:1.0\",\"labels\":[],\"name\":\"slave-prerequisites\",\"releaseTimestamp\":\"2012-02-29T19:16:14.00Z\",\"requiredCore\":\"1.452\",\"scm\":\"github.com\",\"sha1\":\"IEhASdw3rTtil5vgK5z1TlRQMkc=\",\"title\":\"Slave Prerequisites Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/slave-prerequisites/1.0/slave-prerequisites.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Slave+Prerequisites+Plugin\"},\"slave-setup\":{\"buildDate\":\"Jul 02, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"ffromm\",\"name\":\"Frederik Fromm\"}],\"excerpt\":\"This plugin prepares slaves for build execution by letting you copy files and execute scripts before the slave gets used.\",\"gav\":\"org.jenkins-ci.plugins:slave-setup:1.6\",\"labels\":[\"cluster\",\"slaves\"],\"name\":\"slave-setup\",\"previousTimestamp\":\"2012-06-18T16:46:12.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2012-07-02T16:00:42.00Z\",\"requiredCore\":\"1.442\",\"scm\":\"github.com\",\"sha1\":\"maUWMsiiRdk9MirQaGl2jLuAVJY=\",\"title\":\"Slave Setup Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/slave-setup/1.6/slave-setup.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Slave+Setup+Plugin\"},\"slave-squatter\":{\"buildDate\":\"Aug 07, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin enables administrators to reserve executors to be used outside Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:slave-squatter:1.2\",\"labels\":[\"slaves\"],\"name\":\"slave-squatter\",\"previousTimestamp\":\"2010-09-29T21:33:50.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2011-08-07T13:15:06.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"ohVYgUUtofZvBLAeiqHyMtokkPI=\",\"title\":\"Slave Squatter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/slave-squatter/1.2/slave-squatter.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Slave+Squatter+Plugin\"},\"slave-status\":{\"buildDate\":\"Nov 02, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"douglassquirrel\",\"name\":\"Douglas Squirrel\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Monitor the status of Hudson slaves.\",\"gav\":\"org.jvnet.hudson.plugins:slave-status:1.6\",\"labels\":[\"slaves\"],\"name\":\"slave-status\",\"previousTimestamp\":\"2011-11-03T01:19:42.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2011-11-03T01:21:06.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"p5HHzKUcrMyQHn/fnB3MuYaCmCI=\",\"title\":\"slave-status\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/slave-status/1.6/slave-status.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/slave-status\"},\"sloccount\":{\"buildDate\":\"Jun 16, 2012\",\"dependencies\":[{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.447\"}],\"developers\":[{\"developerId\":\"npiguet\",\"name\":\"Nicolas Piguet\"},{\"developerId\":\"ohtake\",\"name\":\"OHTAKE Tomohiro\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"},{\"developerId\":\"ssogabe\",\"email\":\"s.sogabe@gmail.com\",\"name\":\"Seiji Sogabe\"}],\"excerpt\":\"This plug-in generates the trend report for <a href='http://www.dwheeler.com/sloccount/'>SLOCCount<\\/a>, an open source program which counts the number of lines of codes in over 25 different languages, including C/C++, Ada, COBOL, Fortran, SQL, Ruby, Python, etc...\",\"gav\":\"hudson.plugins.sloccount:sloccount:1.8\",\"labels\":[\"report\"],\"name\":\"sloccount\",\"previousTimestamp\":\"2012-05-20T18:20:00.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2012-06-17T03:39:46.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"Ox4DjkgFPtOaE0C2Hj4HVjbb+AI=\",\"title\":\"SLOCCount Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/sloccount/1.8/sloccount.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SLOCCount+Plugin\"},\"smart-jenkins\":{\"buildDate\":\"Aug 01, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"future-azure\",\"email\":\"future.azure@gmail.com\",\"name\":\"Yi Hu\"},{\"name\":\"Wenting Gu\"}],\"excerpt\":\"This plugin reduces the electricity consumption by shutting down idle slaves and re-schedules jobs to avoid the rush hours of electricity. \",\"gav\":\"org.jenkins-ci.plugins:smart-jenkins:1.0\",\"labels\":[\"slaves\"],\"name\":\"smart-jenkins\",\"releaseTimestamp\":\"2011-08-01T15:48:26.00Z\",\"requiredCore\":\"1.417\",\"scm\":\"github.com\",\"sha1\":\"spKQWs6C87Z7X5CTeXmgsntLCbc=\",\"title\":\"Smart Jenkins\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/smart-jenkins/1.0/smart-jenkins.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Smart+Jenkins\"},\"snsnotify\":{\"buildDate\":\"Mar 21, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mikewatt\",\"name\":\"Michael Watt\"}],\"excerpt\":\"Send build notifications to an AWS SNS Topic.\",\"gav\":\"org.jenkins-ci.plugins:snsnotify:1.6\",\"labels\":[\"notifier\"],\"name\":\"snsnotify\",\"previousTimestamp\":\"2011-10-03T17:48:04.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2012-03-21T21:11:34.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"iAfGQgpuLIEDApbdd+B7qErW0zA=\",\"title\":\"Amazon SNS Notifier\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/snsnotify/1.6/snsnotify.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Amazon+SNS+Notifier\"},\"sonar\":{\"buildDate\":\"Nov 27, 2012\",\"compatibleSinceVersion\":\"1.2\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.344\"}],\"developers\":[{\"developerId\":\"godin\",\"email\":\"mandrikov@gmail.com\",\"name\":\"Evgeny Mandrikov\"},{\"developerId\":\"sbrandhof\",\"email\":\"simon.brandhof@gmail.com\",\"name\":\"Simon Brandhof\"},{\"developerId\":\"dgageot\",\"email\":\"david@gageot.net\",\"name\":\"David Gageot\"},{\"developerId\":\"henryju\",\"email\":\"henryju@yahoo.fr\",\"name\":\"Julien Henry\"}],\"excerpt\":\"Quickly benefit from <a href='http://sonar.codehaus.org'>Sonar<\\/a>, an open-source dashboard based on many analysis tools like Checkstyle, PMD and Cobertura.\",\"gav\":\"org.jvnet.hudson.plugins:sonar:2.0.1\",\"labels\":[\"external\",\"report\"],\"name\":\"sonar\",\"previousTimestamp\":\"2012-10-19T15:50:30.00Z\",\"previousVersion\":\"2.0\",\"releaseTimestamp\":\"2012-11-27T21:07:32.00Z\",\"requiredCore\":\"1.344\",\"scm\":\"github.com\",\"sha1\":\"j8CRD1/JxtbdYu0zE3eYG/Pvsmo=\",\"title\":\"Sonar plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/sonar/2.0.1/sonar.hpi\",\"version\":\"2.0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Sonar+plugin\"},\"sonatype-ci\":{\"buildDate\":\"Sep 28, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mcculls\",\"name\":\"Stuart McCulloch\"}],\"excerpt\":\"Insight for CI analyzes every component in every build, including dependencies, to help you find and fix license, security and quality problems quickly. \",\"gav\":\"org.jenkins-ci.plugins:sonatype-ci:1.2\",\"labels\":[\"report\"],\"name\":\"sonatype-ci\",\"previousTimestamp\":\"2012-09-28T01:54:26.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-09-29T00:50:26.00Z\",\"requiredCore\":\"1.395\",\"scm\":\"github.com\",\"sha1\":\"sswgv6TMI2hZlBeNkxAwKIOFd4k=\",\"title\":\"Sonatype CI Plugins\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/sonatype-ci/1.2/sonatype-ci.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Sonatype+CI+Plugins\"},\"sounds\":{\"buildDate\":\"Sep 01, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"oxcafebabe\",\"email\":\"edward@hurst-frost.net\",\"name\":\"Edward Hurst-Frost\"}],\"excerpt\":\"This plugin allows Jenkins to play arbitrary audio clips as build actions and notifications.\",\"gav\":\"org.jvnet.hudson.plugins:sounds:0.4\",\"labels\":[\"notifier\"],\"name\":\"sounds\",\"previousTimestamp\":\"2011-03-02T02:57:06.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2011-09-01T23:18:48.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"+rqcWfpyf7fJTmGlaTckYqbBWlU=\",\"title\":\"Jenkins Sounds plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/sounds/0.4/sounds.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Sounds+plugin\"},\"speaks\":{\"buildDate\":\"Dec 02, 2009\",\"dependencies\":[],\"developers\":[{\"developerId\":\"oxcafebabe\",\"email\":\"edward@hurst-frost.net\",\"name\":\"Edward Hurst-Frost\"}],\"excerpt\":\"This plugin gives Hudson a voice using <a href='http://freetts.sourceforge.net/'>FreeTTS<\\/a>.\",\"gav\":\"org.jvnet.hudson.plugins:speaks:0.1.1\",\"labels\":[\"notifier\"],\"name\":\"speaks\",\"previousTimestamp\":\"2009-11-29T18:50:18.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2009-12-02T22:00:12.00Z\",\"requiredCore\":\"1.324\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"oBZkkzqSmjunMN0L4U6k8saZbxI=\",\"title\":\"Hudson Speaks! Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/speaks/0.1.1/speaks.hpi\",\"version\":\"0.1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Hudson+Speaks%21+Plugin\"},\"ssh\":{\"buildDate\":\"Sep 24, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"edmund_wagner\",\"name\":\"Edmund Wagner\"}],\"excerpt\":\"You can use the SSH Plugin to run shell commands on a remote machine via ssh.\",\"gav\":\"org.jvnet.hudson.plugins:ssh:2.3\",\"labels\":[\"buildwrapper\"],\"name\":\"ssh\",\"previousTimestamp\":\"2012-09-04T03:25:44.00Z\",\"previousVersion\":\"2.2\",\"releaseTimestamp\":\"2012-09-24T23:51:14.00Z\",\"requiredCore\":\"1.358\",\"scm\":\"github.com\",\"sha1\":\"9Vc+y7i515bRVRrD9qvaPNKGzb8=\",\"title\":\"SSH plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ssh/2.3/ssh.hpi\",\"version\":\"2.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SSH+plugin\"},\"ssh-agent\":{\"buildDate\":\"Nov 01, 2012\",\"dependencies\":[{\"name\":\"ssh-credentials\",\"optional\":false,\"version\":\"0.2\"},{\"name\":\"credentials\",\"optional\":false,\"version\":\"1.3\"}],\"developers\":[{\"developerId\":\"stephenconnolly\",\"name\":\"Stephen Connolly\"}],\"excerpt\":\"This plugin allows you to provide SSH credentials to builds via a ssh-agent in Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:ssh-agent:1.0\",\"labels\":[],\"name\":\"ssh-agent\",\"previousTimestamp\":\"2012-10-26T16:52:18.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2012-11-01T16:51:20.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"u9I3nWyNE5qS9tvCfCFy+wWT8+U=\",\"title\":\"SSH Agent Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ssh-agent/1.0/ssh-agent.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SSH+Agent+Plugin\"},\"ssh-credentials\":{\"buildDate\":\"Oct 25, 2012\",\"dependencies\":[{\"name\":\"credentials\",\"optional\":false,\"version\":\"1.3\"}],\"developers\":[{\"developerId\":\"stephenconnolly\",\"name\":\"Stephen Connolly\"}],\"excerpt\":\"This plugin allows you to store SSH credentials in Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:ssh-credentials:0.2\",\"labels\":[],\"name\":\"ssh-credentials\",\"previousTimestamp\":\"2012-02-28T21:02:48.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2012-10-25T20:06:42.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"ouTKUZtIvH376nqrgIXLB3AKvwo=\",\"title\":\"SSH Credentials Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ssh-credentials/0.2/ssh-credentials.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SSH+Credentials+Plugin\"},\"ssh-slaves\":{\"buildDate\":\"Dec 07, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stephenconnolly\",\"name\":\"Stephen Connolly\"},{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"olamy\",\"name\":\"Olivier Lamy\"}],\"excerpt\":\"This plugin allows you to manage slaves running on \\\\*nix machines over SSH.\",\"gav\":\"org.jenkins-ci.plugins:ssh-slaves:0.22\",\"labels\":[\"slaves\"],\"name\":\"ssh-slaves\",\"previousTimestamp\":\"2011-10-27T11:04:30.00Z\",\"previousVersion\":\"0.21\",\"releaseTimestamp\":\"2012-12-07T22:15:02.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"mEw1H66P+r3ZT23kZDOgOj7gtc0=\",\"title\":\"SSH Slaves plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ssh-slaves/0.22/ssh-slaves.hpi\",\"version\":\"0.22\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SSH+Slaves+plugin\"},\"stackhammer\":{\"buildDate\":\"Sep 24, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"thallgren\",\"email\":\"thomas@tada.se\",\"name\":\"Thomas Hallgren\"}],\"excerpt\":\"This plugin integrates Jenkins with <a href='http://www.cloudsmith.com/'>Cloudsmith Stack Hammer<\\/a> to validate and/or deploy Puppet configurations (stacks) stored in a repository at GitHub. \",\"gav\":\"org.jenkins-ci.plugins:stackhammer:1.0.6\",\"labels\":[\"external\"],\"name\":\"stackhammer\",\"previousTimestamp\":\"2012-09-06T20:24:38.00Z\",\"previousVersion\":\"1.0.5\",\"releaseTimestamp\":\"2012-09-25T02:10:00.00Z\",\"requiredCore\":\"1.420\",\"scm\":\"github.com\",\"sha1\":\"ELccKHSaHuTf2CzQnnJ3ojTa/78=\",\"title\":\"Stack Hammer Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/stackhammer/1.0.6/stackhammer.hpi\",\"version\":\"1.0.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Stack+Hammer+Plugin\"},\"staf\":{\"buildDate\":\"Jan 09, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"smithgcovert\",\"email\":\"covert@mighty.sytes.net\",\"name\":\"Gregory Covert Smith\"}],\"excerpt\":\"This plugin allows Hudson to invoke a STAF command or launch a STAX job as a build step. \",\"gav\":\"org.jvnet.hudson.plugins:staf:0.1\",\"labels\":[\"builder\"],\"name\":\"staf\",\"releaseTimestamp\":\"2010-01-10T01:50:36.00Z\",\"requiredCore\":\"1.339\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"krhnfgtef6WRV5B0dUQl3NkfKqQ=\",\"title\":\"STAF - STAX Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/staf/0.1/staf.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/STAF+-+STAX+Plugin\"},\"starteam\":{\"buildDate\":\"Dec 12, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ilkka\",\"email\":\"ilkka.s.laukkanen@gmail.com\",\"name\":\"Ilkka Laukkanen\"},{\"developerId\":\"pamdirac\",\"email\":\"john@mcnair.org\",\"name\":\"John McNair\"},{\"developerId\":\"chunyang\",\"email\":\"wangchunyang@gmail.com\",\"name\":\"Chunyang Wang\"},{\"developerId\":\"jan_ruzicka\",\"email\":\"jan_ruzicka@dev.java.net\",\"name\":\"Jan Ruzicka\"},{\"developerId\":\"robwiss\",\"email\":\"robwiss@gmail.com\",\"name\":\"Rob Wissmann\"},{\"developerId\":\"vyazelenko\",\"email\":\"vyazelenko@yahoo.com\",\"name\":\"Dmitry Vyazelenko\"}],\"excerpt\":\"This plugin integrates Hudson with <a href='http://www.borland.com/us/products/starteam/index.html'>StarTeam<\\/a>, Borland's crossplatform SCM solution.\",\"gav\":\"hudson.plugins:starteam:0.6.9\",\"labels\":[\"scm\"],\"name\":\"starteam\",\"previousTimestamp\":\"2012-07-18T14:22:58.00Z\",\"previousVersion\":\"0.6.8\",\"releaseTimestamp\":\"2012-12-12T15:29:22.00Z\",\"requiredCore\":\"1.345\",\"scm\":\"github.com\",\"sha1\":\"fdLmAlTXQ/T9lMQvcs6rFlihrmQ=\",\"title\":\"StarTeam\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/starteam/0.6.9/starteam.hpi\",\"version\":\"0.6.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/StarTeam\"},\"started-by-envvar\":{\"buildDate\":\"Oct 20, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"Tom\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:started-by-envvar:1.0\",\"name\":\"started-by-envvar\",\"releaseTimestamp\":\"2011-10-21T02:08:12.00Z\",\"requiredCore\":\"1.409.2\",\"scm\":\"github.com\",\"sha1\":\"QOvQ8y1L4z1lgH2QvYRUnYJnEco=\",\"title\":\"Started-By Environment Variable Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/started-by-envvar/1.0/started-by-envvar.hpi\",\"version\":\"1.0\"},\"startup-trigger-plugin\":{\"buildDate\":\"Feb 08, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ashlux\",\"email\":\"ashlux@gmail.com\",\"name\":\"Ash Lux\"}],\"excerpt\":\"The Startup Trigger plugin allows you to trigger a build when Jenkins is first started.\",\"gav\":\"org.jenkins-ci.plugins:startup-trigger-plugin:1.1\",\"labels\":[\"trigger\"],\"name\":\"startup-trigger-plugin\",\"previousTimestamp\":\"2011-02-05T21:29:12.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-02-08T22:34:22.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"FpBTI1Dtg10dlgEn+O+2D8W6LJ4=\",\"title\":\"Startup Trigger\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/startup-trigger-plugin/1.1/startup-trigger-plugin.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Startup+Trigger\"},\"status-view\":{\"buildDate\":\"Jun 04, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mindless\",\"email\":\"mindless@dev.java.net\",\"name\":\"Alan Harder\"}],\"excerpt\":\"View type to show jobs filtered by the status of the last completed build.\",\"gav\":\"org.jvnet.hudson.plugins:status-view:1.0\",\"labels\":[\"ui\"],\"name\":\"status-view\",\"releaseTimestamp\":\"2010-06-04T20:58:06.00Z\",\"requiredCore\":\"1.342\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"QThzZO+jlzyS38OAlwK+W6WH2Bk=\",\"title\":\"Status View Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/status-view/1.0/status-view.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Status+View+Plugin\"},\"statusmonitor\":{\"buildDate\":\"Nov 04, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ashlux\",\"email\":\"ashlux@gmail.com\",\"name\":\"Ash Lux\"},{\"name\":\"redsolo\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"This plugin shows the state of selected jobs visually on a single screen.\",\"gav\":\"org.jvnet.hudson.plugins:statusmonitor:1.3\",\"labels\":[\"notifier\"],\"name\":\"statusmonitor\",\"previousTimestamp\":\"2009-12-31T22:46:00.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-11-04T13:18:10.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"SZL+F985IGKx0PT5eNc/fzcVYow=\",\"title\":\"Status Monitor Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/statusmonitor/1.3/statusmonitor.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Status+Monitor+Plugin\"},\"storable-configs-plugin\":{\"buildDate\":\"Feb 28, 2011\",\"dependencies\":[{\"name\":\"selection-tasks-plugin\",\"optional\":true,\"version\":\"1.0\"}],\"developers\":[{\"developerId\":\"nzhelyakov\",\"email\":\"nzhelyakov@gmail.com\",\"name\":\"Nikita Zhelyakov\"}],\"excerpt\":\"This plugin allows you to save and load set of job parameters. \",\"gav\":\"org.jvnet.hudson.plugins:storable-configs-plugin:1.0\",\"labels\":[\"misc\"],\"name\":\"storable-configs-plugin\",\"releaseTimestamp\":\"2011-03-01T01:38:02.00Z\",\"requiredCore\":\"1.366\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"OdMAq62DknBGvL419fo+kNGzWh8=\",\"title\":\"Storable Configs Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/storable-configs-plugin/1.0/storable-configs-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Storable+Configs+Plugin\"},\"strawboss\":{\"buildDate\":\"Nov 02, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"morgandev\",\"email\":\"morgandev@gmail.com\",\"name\":\"Scott Morgan\"}],\"excerpt\":\"Strawboss supports the same features as Jenkins external job monitor with added support for sending email notifications and triggering other jobs. \",\"gav\":\"org.jenkins-ci.plugins:strawboss:1.1\",\"labels\":[\"notifier\",\"misc\"],\"name\":\"strawboss\",\"releaseTimestamp\":\"2011-11-03T03:03:06.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"hW+QUrwqr7XV9BQdxGw2RW+41hk=\",\"title\":\"Strawboss Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/strawboss/1.1/strawboss.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Strawboss+Plugin\"},\"subversion\":{\"buildDate\":\"Dec 16, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke abayer dodok1 dty huybrechts mindless pgweiss stephenconnolly rseguy kutzi etc\",\"name\":\"Many\"}],\"excerpt\":\"This plugin adds the Subversion support (via SVNKit) to Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:subversion:1.44\",\"labels\":[\"scm\"],\"name\":\"subversion\",\"previousTimestamp\":\"2012-09-24T13:33:50.00Z\",\"previousVersion\":\"1.43\",\"releaseTimestamp\":\"2012-12-16T16:22:00.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"VQUXY9qD/KL++pGnNJhdZSO4M6Q=\",\"title\":\"Subversion Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/subversion/1.44/subversion.hpi\",\"version\":\"1.44\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Subversion+Plugin\"},\"suite-test-groups-publisher\":{\"buildDate\":\"Oct 21, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vimil\",\"email\":\"vimilsaju@yahoo.com\",\"name\":\"Vimil Saju\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.plugins:suite-test-groups-publisher:1.13\",\"name\":\"suite-test-groups-publisher\",\"previousTimestamp\":\"2012-10-13T17:15:12.00Z\",\"previousVersion\":\"1.12\",\"releaseTimestamp\":\"2012-10-21T16:11:20.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"5XrazBJW6IFKRmTMmQTpz7zaz4g=\",\"title\":\"suite-test-groups-publisher\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/suite-test-groups-publisher/1.13/suite-test-groups-publisher.hpi\",\"version\":\"1.13\"},\"summary_report\":{\"buildDate\":\"Jan 08, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"deruyter\",\"email\":\"tderuyte@gmail.com\",\"name\":\"Deruyter Thomas\"}],\"excerpt\":\"Extend build and project page with extended results in XML format\",\"gav\":\"org.jenkins-ci.plugins:summary_report:1.8\",\"labels\":[\"report\"],\"name\":\"summary_report\",\"previousTimestamp\":\"2012-12-10T20:18:36.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2013-01-08T15:16:08.00Z\",\"requiredCore\":\"1.470\",\"scm\":\"github.com\",\"sha1\":\"2z3AFmRp0kUZnFq/RoZ4T73O8g0=\",\"title\":\"Summary Display Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/summary_report/1.8/summary_report.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Summary+Display+Plugin\"},\"svn-release-mgr\":{\"buildDate\":\"Nov 03, 2010\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.20\"}],\"developers\":[{\"developerId\":\"mindless\"}],\"excerpt\":\"This plugin allows you to set up a job in Hudson for building specific revisions of a project. \",\"gav\":\"org.jvnet.hudson.plugins:svn-release-mgr:1.2\",\"labels\":[\"scm-related\"],\"name\":\"svn-release-mgr\",\"previousTimestamp\":\"2010-03-02T13:27:22.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2010-11-03T16:55:44.00Z\",\"requiredCore\":\"1.318\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"5q/nDzmuttNPJKmHCgKm+nuIeRo=\",\"title\":\"Subversion Release Manager\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/svn-release-mgr/1.2/svn-release-mgr.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Subversion+Release+Manager\"},\"svn-revert-plugin\":{\"buildDate\":\"Sep 10, 2012\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.37\"},{\"name\":\"claim\",\"optional\":true,\"version\":\"1.7\"}],\"developers\":[{\"developerId\":\"ki82\",\"email\":\"akerstrom.christian@gmail.com\",\"name\":\"Christian Åkerström\"},{\"developerId\":\"davidparsson\",\"email\":\"david.parsson@gmail.com\",\"name\":\"David Pärsson\"}],\"excerpt\":\"Automatically reverts SVN commits for a build if build status is changed from successful to unstable.\",\"gav\":\"org.jenkins-ci.plugins:svn-revert-plugin:1.3\",\"labels\":[\"scm-related\",\"post-build\"],\"name\":\"svn-revert-plugin\",\"previousTimestamp\":\"2012-09-05T19:11:18.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-09-10T15:48:22.00Z\",\"requiredCore\":\"1.444\",\"scm\":\"github.com\",\"sha1\":\"Hy5wQTFuyu97RzYj5DphUzVrY7w=\",\"title\":\"SVN Revert Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/svn-revert-plugin/1.3/svn-revert-plugin.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SVN+Revert+Plugin\"},\"svn-tag\":{\"buildDate\":\"Nov 03, 2011\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.34\"}],\"developers\":[{\"developerId\":\"k2nakamura\",\"email\":\"kenjin@clazzsoft.com\",\"name\":\"Kenji Nakamura\"}],\"excerpt\":\"This plugin automatically performs subversion tagging (technically speaking svn copy) on successful build.\",\"gav\":\"org.jenkins-ci.plugins:svn-tag:1.16\",\"labels\":[\"scm-related\",\"post-build\"],\"name\":\"svn-tag\",\"previousTimestamp\":\"2011-07-27T17:41:42.00Z\",\"previousVersion\":\"1.15\",\"releaseTimestamp\":\"2011-11-04T02:19:06.00Z\",\"requiredCore\":\"1.421\",\"scm\":\"github.com\",\"sha1\":\"XQvchAI26eFmR4vF0pNQtN30ybI=\",\"title\":\"Subversion Tagging Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/svn-tag/1.16/svn-tag.hpi\",\"version\":\"1.16\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Subversion+Tagging+Plugin\"},\"svn-workspace-cleaner\":{\"buildDate\":\"May 11, 2012\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.37\"}],\"developers\":[{\"developerId\":\"davidparsson\",\"email\":\"david.parsson@gmail.com\",\"name\":\"David Pärsson\"}],\"excerpt\":\"Automatically removes SVN modules from workspaces when the modules are removed from the job's SVN configuration.\",\"gav\":\"org.jenkins-ci.plugins:svn-workspace-cleaner:1.0\",\"labels\":[\"scm-related\",\"buildwrapper\"],\"name\":\"svn-workspace-cleaner\",\"releaseTimestamp\":\"2012-05-11T18:03:36.00Z\",\"requiredCore\":\"1.444\",\"scm\":\"github.com\",\"sha1\":\"nsr2PiZr2fnY8mTDAfHR44WnBGA=\",\"title\":\"SVN Workspace Cleaner\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/svn-workspace-cleaner/1.0/svn-workspace-cleaner.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SVN+Workspace+Cleaner\"},\"svncompat13\":{\"buildDate\":\"Nov 19, 2011\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.1\"}],\"developers\":[{\"developerId\":\"kohsuke\",\"email\":\"kk@kohsuke.org\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"This plugin forces the built-in SVNKit library to use the Subversion 1.3 working copy format (instead of the most recent one it supports).\",\"gav\":\"org.jvnet.hudson.plugins:svncompat13:1.2\",\"labels\":[\"scm-related\"],\"name\":\"svncompat13\",\"previousTimestamp\":\"2008-07-29T01:13:00.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2011-11-19T15:27:28.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"Bjq5bod/k2kbz9Q8GyWDzfkycZ0=\",\"title\":\"SVNCompat13 Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/svncompat13/1.2/svncompat13.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SVNCompat13+Plugin\"},\"svncompat14\":{\"buildDate\":\"Nov 19, 2011\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.3\"}],\"developers\":[{\"developerId\":\"kohsuke\",\"email\":\"kk@kohsuke.org\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"This plugin forces the built-in SVNKit library to use the Subversion 1.4 working copy format (instead of the most recent one it supports).\",\"gav\":\"org.jvnet.hudson.plugins:svncompat14:1.1\",\"labels\":[\"scm-related\"],\"name\":\"svncompat14\",\"previousTimestamp\":\"2008-07-30T18:11:24.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-11-19T23:29:54.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"nORj9bJ8VRMi1UXP+7PqT4DspYk=\",\"title\":\"SVNCompat14 Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/svncompat14/1.1/svncompat14.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SVNCompat14+Plugin\"},\"svnmerge\":{\"buildDate\":\"Apr 14, 2012\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.25\"}],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"This plugin automates feature/personal branch workflow on Jenkins\",\"gav\":\"org.jenkins-ci.plugins:svnmerge:1.2\",\"labels\":[\"scm-related\"],\"name\":\"svnmerge\",\"previousTimestamp\":\"2011-10-01T20:19:04.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2012-04-14T17:28:10.00Z\",\"requiredCore\":\"1.426\",\"scm\":\"github.com\",\"sha1\":\"ZFyFuAuVG0WuBfVLttf/VxedmXo=\",\"title\":\"Subversion Merge Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/svnmerge/1.2/svnmerge.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Subversion+Merge+Plugin\"},\"svnpublisher\":{\"buildDate\":\"Jan 10, 2010\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.8\"}],\"developers\":[{\"developerId\":\"brentsmith\",\"name\":\"Brent Smith\"}],\"excerpt\":\"This plugin allows you to upload artifacts to a subversion repository. This is done via a delete/import of the items requested.\",\"gav\":\"com.mtvi.plateng.subversion:svnpublisher:0.1\",\"labels\":[\"upload\"],\"name\":\"svnpublisher\",\"releaseTimestamp\":\"2010-01-10T23:16:52.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"AnWSoTU78viv60MrJy62OjJxRjo=\",\"title\":\"SVN Publisher\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/svnpublisher/0.1/svnpublisher.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/SVN+Publisher\"},\"swarm\":{\"buildDate\":\"Nov 22, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin enables slaves to auto-discover nearby Jenkins master and join it automatically, thereby forming an ad-hoc cluster.\",\"gav\":\"org.jenkins-ci.plugins:swarm:1.8\",\"labels\":[\"cluster\"],\"name\":\"swarm\",\"previousTimestamp\":\"2012-03-19T00:35:56.00Z\",\"previousVersion\":\"1.7\",\"releaseTimestamp\":\"2012-11-23T04:23:36.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"Qqc5EcIZLimXHsPnKqcPv1j0Gog=\",\"title\":\"Swarm Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/swarm/1.8/swarm.hpi\",\"version\":\"1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Swarm+Plugin\"},\"synergy\":{\"buildDate\":\"Aug 16, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mendozak\"}],\"excerpt\":\"This plugin provide integrations with IBM Rational CM/Synergy 6.5a Version Manager SCM\",\"gav\":\"org.jvnet.hudson.plugins:synergy:1.6\",\"labels\":[\"scm\"],\"name\":\"synergy\",\"previousTimestamp\":\"2009-06-03T04:48:10.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2011-08-16T15:26:04.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"github.com\",\"sha1\":\"fs6VXYlDV8r9/5krmv12D8wRRNM=\",\"title\":\"Synergy Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/synergy/1.6/synergy.hpi\",\"version\":\"1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Synergy+Plugin\"},\"systemloadaverage-monitor\":{\"buildDate\":\"Aug 13, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stefanbrausch\",\"email\":\"stefanbrausch@dev.java.net\",\"name\":\"Stefan Brausch\"}],\"excerpt\":\"Use to display the System Load Average of unix nodes.\",\"gav\":\"org.jvnet.hudson.plugins:systemloadaverage-monitor:1.2\",\"labels\":[\"slaves\"],\"name\":\"systemloadaverage-monitor\",\"previousTimestamp\":\"2010-02-12T22:17:58.00Z\",\"previousVersion\":\"1.1\",\"releaseTimestamp\":\"2011-08-13T15:48:06.00Z\",\"requiredCore\":\"1.395\",\"scm\":\"github.com\",\"sha1\":\"4g0Wp80C+xGOCyphSZNMYjBjA4Q=\",\"title\":\"System Load Average Monitor Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/systemloadaverage-monitor/1.2/systemloadaverage-monitor.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/System+Load+Average+Monitor+Plugin\"},\"tap\":{\"buildDate\":\"Jan 04, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kinow\",\"email\":\"brunodepaulak@yahoo.com.br\",\"name\":\"Bruno P. Kinoshita\"}],\"excerpt\":\"This plug-in adds support to TAP test result files to Jenkins. It lets you specify an ant-like pattern for a directory that contains your <a href='http://www.testanything.org'>TAP<\\/a> files. \",\"gav\":\"org.tap4j:tap:1.9\",\"labels\":[\"report\"],\"name\":\"tap\",\"previousTimestamp\":\"2012-12-19T03:52:26.00Z\",\"previousVersion\":\"1.8\",\"releaseTimestamp\":\"2013-01-05T04:36:30.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"qOnTdLb7Rea9qPkwa0SPUBIh6/Y=\",\"title\":\"TAP Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/tap/1.9/tap.hpi\",\"version\":\"1.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/TAP+Plugin\"},\"tasks\":{\"buildDate\":\"Oct 05, 2012\",\"dependencies\":[{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.48\"},{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"},{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.409\"},{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.2\"}],\"developers\":[{\"developerId\":\"drulli\",\"email\":\"ullrich.hafner@gmail.com\",\"name\":\"Ulli Hafner\"}],\"excerpt\":\"This plugin scans the workspace files for open tasks and generates a trend report.\",\"gav\":\"org.jvnet.hudson.plugins:tasks:4.35\",\"labels\":[\"report\",\"maven\"],\"name\":\"tasks\",\"previousTimestamp\":\"2012-09-04T17:18:28.00Z\",\"previousVersion\":\"4.34\",\"releaseTimestamp\":\"2012-10-05T16:06:52.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"7e2sxEyB0g5tB4oBcb22VV+f7ac=\",\"title\":\"Task Scanner Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/tasks/4.35/tasks.hpi\",\"version\":\"4.35\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Task+Scanner+Plugin\"},\"tattletale-plugin\":{\"buildDate\":\"May 29, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vtunka\",\"name\":\"Vaclav Tunka\"}],\"excerpt\":\"This plugin generates <a href='http://www.jboss.org/tattletale'>Tattletale<\\/a> reports, mostly useful for jar file analysis. \",\"gav\":\"org.jenkins-ci.plugins:tattletale-plugin:0.3\",\"labels\":[\"report\"],\"name\":\"tattletale-plugin\",\"releaseTimestamp\":\"2012-05-30T02:55:06.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"1EpOcO03OEAzSZzAh/dnV8of5e4=\",\"title\":\"Tattletale Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/tattletale-plugin/0.3/tattletale-plugin.hpi\",\"version\":\"0.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Tattletale+Plugin\"},\"template-project\":{\"buildDate\":\"Aug 15, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"huybrechts\",\"name\":\"Tom Huybrechts\"}],\"excerpt\":\"This plugin lets you use builders, publishers and SCM settings from another project.\",\"gav\":\"org.jenkins-ci.plugins:template-project:1.3\",\"labels\":[\"scm\",\"notifier\",\"builder\"],\"name\":\"template-project\",\"previousTimestamp\":\"2010-02-12T04:53:04.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-08-15T11:45:06.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"QmwHW/bPwAbNIdyX35bcvcO9uco=\",\"title\":\"Template Project Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/template-project/1.3/template-project.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Template+Project+Plugin\"},\"template-workflows\":{\"buildDate\":\"Aug 15, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"shaib\",\"email\":\"shai.bhur@gmail.com\",\"name\":\"Shai Ben-Hur\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins.plugin.templateWorkflows:template-workflows:1.2\",\"labels\":[\"templates-workflows\"],\"name\":\"template-workflows\",\"releaseTimestamp\":\"2012-08-16T00:48:42.00Z\",\"requiredCore\":\"1.477\",\"scm\":\"github.com\",\"sha1\":\"pYV90D4T2R9iQDj6JEZfjau9X/A=\",\"title\":\"Template Workflows Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/template-workflows/1.2/template-workflows.hpi\",\"version\":\"1.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Template+Workflows+Plugin\"},\"tepco\":{\"buildDate\":\"Mar 25, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kiy0taka\",\"name\":\"Kiyotaka Oku\"}],\"excerpt\":\"This plugin displays <a href='http://www.tepco.co.jp/'>TEPCO<\\/a> electric usage condition.\",\"gav\":\"org.jenkins-ci.plugins:tepco:0.1\",\"labels\":[\"misc\"],\"name\":\"tepco\",\"releaseTimestamp\":\"2011-03-25T13:33:50.00Z\",\"requiredCore\":\"1.401\",\"scm\":\"github.com\",\"sha1\":\"ummdAW42/ryCVZbRmx27UvFHYvw=\",\"title\":\"TEPCO Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/tepco/0.1/tepco.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/TEPCO+Plugin\"},\"tepco-epuw\":{\"buildDate\":\"May 25, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"future-azure\",\"email\":\"future.azure@gmail.com\",\"name\":\"Yi Hu\"}],\"excerpt\":\"This plugin shows current TEPCO electric power usage and a graph of daily usage. \",\"gav\":\"org.jenkins-ci.plugins:tepco-epuw:1.0\",\"labels\":[\"misc\"],\"name\":\"tepco-epuw\",\"releaseTimestamp\":\"2011-05-25T06:07:50.00Z\",\"requiredCore\":\"1.411\",\"scm\":\"github.com\",\"sha1\":\"9Yn1hFxnJVQ9DFCKjP2maqsAbMw=\",\"title\":\"TEPCO Electric Power Usage Widget\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/tepco-epuw/1.0/tepco-epuw.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/TEPCO+Electric+Power+Usage+Widget\"},\"terminal\":{\"buildDate\":\"Mar 01, 2011\",\"dependencies\":[{\"name\":\"jquery-ui\",\"optional\":false,\"version\":\"1.0.1\"},{\"name\":\"jquery\",\"optional\":false,\"version\":\"1.0.1\"}],\"developers\":[{\"developerId\":\"kiy0taka\",\"name\":\"Kiyotaka Oku\"}],\"excerpt\":\"This plugin allows you to execute OS commands.\",\"gav\":\"org.jenkins-ci.plugins:terminal:1.3\",\"labels\":[\"misc\"],\"name\":\"terminal\",\"previousTimestamp\":\"2011-02-23T03:02:12.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2011-03-01T20:27:18.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"gvgSI+r1Gc4SsuihjGHouf+XfF0=\",\"title\":\"Terminal Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/terminal/1.3/terminal.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Terminal+Plugin\"},\"terminate-ssh-processes-plugin\":{\"buildDate\":\"May 31, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"lvotypko\",\"email\":\"lvotypko@redhat.com\",\"name\":\"Lucie Votypkova\"}],\"excerpt\":\"This plugin check if there is some ssh process associated with slave during before its new connection \",\"gav\":\"org.jenkins-ci.plugins:terminate-ssh-processes-plugin:1.0\",\"labels\":[],\"name\":\"terminate-ssh-processes-plugin\",\"releaseTimestamp\":\"2012-05-31T19:57:30.00Z\",\"requiredCore\":\"1.430\",\"scm\":\"github.com\",\"sha1\":\"RQHrZsJbpU8TpJVTdXHyBddJYMc=\",\"title\":\"Ssh processes check plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/terminate-ssh-processes-plugin/1.0/terminate-ssh-processes-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Ssh+processes+check+plugin\"},\"testabilityexplorer\":{\"buildDate\":\"May 29, 2012\",\"dependencies\":[{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.437\"}],\"developers\":[{\"developerId\":\"reikje\",\"name\":\"Reik Schatz\"},{\"developerId\":\"vsbmeza\",\"name\":\"Marton Meszaros\"}],\"excerpt\":\"This plugin generates trend reports for the <a href='http://code.google.com/p/testability-explorer/'>Testability Explorer<\\/a>, an open source program which uses byte-code analysis to look for testability pitfalls in Java code.&nbsp; \",\"gav\":\"org.jenkins-ci.plugins:testabilityexplorer:0.4\",\"labels\":[\"report\"],\"name\":\"testabilityexplorer\",\"previousTimestamp\":\"2009-12-29T21:48:38.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2012-05-29T21:59:16.00Z\",\"requiredCore\":\"1.437\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"0PMfy3eqPw9Gu/HEs1VyBIF/7Ro=\",\"title\":\"Testability Explorer Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/testabilityexplorer/0.4/testabilityexplorer.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Testability+Explorer+Plugin\"},\"testflight\":{\"buildDate\":\"Jan 12, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jweinberg\",\"email\":\"joshuacweinberg@gmail.com\",\"name\":\"Joshua Weinberg\"}],\"excerpt\":\"This plugin uses the Testflight upload API to allow for uploading to&nbsp;<a href='http://www.testflightapp.com'>www.testflightapp.com<\\/a>\",\"gav\":\"org.jenkins-ci.plugins:testflight:1.3.1\",\"labels\":[\"upload\",\"ios\"],\"name\":\"testflight\",\"previousTimestamp\":\"2012-01-12T14:04:02.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2012-01-12T14:10:04.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"Hzj7RxPteN6Lw1HE2cTVkpHe93I=\",\"title\":\"Testflight Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/testflight/1.3.1/testflight.hpi\",\"version\":\"1.3.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Testflight+Plugin\"},\"testingbot\":{\"buildDate\":\"Jul 21, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"testingbot\",\"email\":\"info@testingbot.com\",\"name\":\"Jochen Delabie\"}],\"excerpt\":\"This plugin allows for integration of&nbsp;<a href='http://testingbot.com'>TestingBot<\\/a>&nbsp;Selenium in Jenkins.\",\"gav\":\"testingbot:testingbot:1.5\",\"labels\":[\"buildwrapper\"],\"name\":\"testingbot\",\"previousTimestamp\":\"2012-05-05T17:11:14.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2012-07-21T20:06:38.00Z\",\"requiredCore\":\"1.462\",\"scm\":\"github.com\",\"sha1\":\"8/f1NwIAdsl+mBr3FsMEKAqurAg=\",\"title\":\"TestingBot Selenium Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/testingbot/1.5/testingbot.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/TestingBot+Selenium+Plugin\"},\"testlink\":{\"buildDate\":\"Oct 20, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kinow\",\"email\":\"brunodepaulak@yahoo.com.br\",\"name\":\"Bruno P. Kinoshita\"},{\"developerId\":\"cesar1983\",\"email\":\"cesar.fa@gmail.com\",\"name\":\"Cesar Fernandes de Almeida\"},{\"developerId\":\"floreal\",\"email\":\"ftoumikian@april.org\",\"name\":\"Floreal Toumikian\"},{\"developerId\":\"orenault\",\"email\":\"orenault@gmail.com\",\"name\":\"Olivier Renault\"},{\"developerId\":\"omerkel\",\"email\":\"Merkel.Oliver@web.de\",\"name\":\"Oliver Merkel\"},{\"developerId\":\"yachoor\",\"email\":\"jchorko@gmail.com\",\"name\":\"Janusz Chorko\"}],\"excerpt\":\"This plug-in integrates Jenkins and <a href='http://www.teamst.org'>TestLink<\\/a> and generates reports on automated test execution. ith this plug-in you can manage your tests in TestLink, schedule and control in Jenkins, and execute using your favorite test execution tool (TestPartner, Selenium, TestNG, Perl modules, PHPUnit, among others). \",\"gav\":\"org.jenkins-ci.plugins:testlink:3.1.8\",\"labels\":[\"builder\"],\"name\":\"testlink\",\"previousTimestamp\":\"2012-09-19T16:47:34.00Z\",\"previousVersion\":\"3.1.7\",\"releaseTimestamp\":\"2012-10-20T22:50:28.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"oTCM64GRngaPR8PILDewmyY6jRw=\",\"title\":\"TestLink Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/testlink/3.1.8/testlink.hpi\",\"version\":\"3.1.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/TestLink+Plugin\"},\"testng-plugin\":{\"buildDate\":\"Jan 06, 2013\",\"dependencies\":[{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.447\"}],\"developers\":[{\"developerId\":\"nalin_makar\",\"email\":\"nalin.makar@gmail.com\",\"name\":\"Nalin Makar\"},{\"developerId\":\"farshidce\",\"email\":\"farshid.ghods@gmail.com\",\"name\":\"Farshid Ghods\"}],\"excerpt\":\"This plugin allows you to publish TestNG results generated using&nbsp;{{org.testng.reporters.XMLReporter}}.\",\"gav\":\"org.jenkins-ci.plugins:testng-plugin:0.33\",\"labels\":[\"report\"],\"name\":\"testng-plugin\",\"previousTimestamp\":\"2012-02-15T02:37:04.00Z\",\"previousVersion\":\"0.32\",\"releaseTimestamp\":\"2013-01-06T05:52:52.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"+NQU63/vu/Ui0qpjnP3ii7+ZcD0=\",\"title\":\"testng-plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/testng-plugin/0.33/testng-plugin.hpi\",\"version\":\"0.33\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/testng-plugin\"},\"testopia\":{\"buildDate\":\"Jan 06, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tooh\",\"email\":\"florijn.peter@gmail.com\",\"name\":\"Peter Florijn\"},{\"developerId\":\"kinow\",\"email\":\"brunodepaulak@yahoo.com.br\",\"name\":\"Bruno P. Kinoshita\"}],\"excerpt\":\"This plug-in integrates *Jenkins* with Testopia and generates reports on automated test execution. With this plug-in you can manage your tests in Testopia, schedule and control in *Jenkins*, and execute using your favorite test execution tool (TestPartner, Selenium, TestNG, Perl modules, prove, PHPUnit, among others).\",\"gav\":\"jenkins.plugins.testopia:testopia:1.3\",\"labels\":[],\"name\":\"testopia\",\"previousTimestamp\":\"2012-10-15T02:45:18.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2013-01-06T21:11:36.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"7PZ2sL7Ey6eumDnbaQBAYafCPg0=\",\"title\":\"Testopia Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/testopia/1.3/testopia.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Testopia+Plugin\"},\"text-finder\":{\"buildDate\":\"Feb 13, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"},{\"name\":\"Santiago Pericas-Geertsen\"}],\"excerpt\":\"This plugin lets you search keywords in the files you specified and use that to&nbsp;downgrade a \\\"successful\\\" build&nbsp;to be unstable&nbsp;or a failure.\",\"gav\":\"org.jvnet.hudson.plugins:text-finder:1.9\",\"labels\":[\"post-build\"],\"name\":\"text-finder\",\"previousTimestamp\":\"2010-02-06T14:17:58.00Z\",\"previousVersion\":\"1.8\",\"releaseTimestamp\":\"2011-02-14T03:49:46.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"PWK0FuWWvlZIm6AN3UkB15C257Q=\",\"title\":\"Text-finder Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/text-finder/1.9/text-finder.hpi\",\"version\":\"1.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Text-finder+Plugin\"},\"text-finder-run-condition\":{\"buildDate\":\"Jul 13, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"},{\"name\":\"run-condition\",\"optional\":false,\"version\":\"0.10\"}],\"developers\":[{\"developerId\":\"cjo9900\",\"name\":\"Chris Johnson\"}],\"excerpt\":\"Text Finder run condition to select whether to execute a build step or publisher. Used by the [Run Condition Plugin].  \",\"gav\":\"org.jenkins-ci.plugins:text-finder-run-condition:0.1\",\"labels\":[\"misc\",\"runcondition\"],\"name\":\"text-finder-run-condition\",\"releaseTimestamp\":\"2012-07-13T21:30:02.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"MELbWymaMLgpY4L5+iYtLbOHqYM=\",\"title\":\"Text Finder Run Condition Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/text-finder-run-condition/0.1/text-finder-run-condition.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Text+Finder+Run+Condition+Plugin\"},\"tfs\":{\"buildDate\":\"Sep 17, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"redsolo\",\"email\":\"eramfelt@gmail.com\",\"name\":\"Erik Ramfelt\"}],\"excerpt\":\"This plugin integrates <a href='http://msdn.microsoft.com/en-us/library/aa730884(VS.80).aspx'>Microsoft Team Foundation Server<\\/a> source control to Hudson.\",\"gav\":\"org.jvnet.hudson.plugins:tfs:1.20\",\"labels\":[\"scm\"],\"name\":\"tfs\",\"previousTimestamp\":\"2011-09-06T03:13:16.00Z\",\"previousVersion\":\"1.19\",\"releaseTimestamp\":\"2011-09-17T17:16:34.00Z\",\"requiredCore\":\"1.324\",\"scm\":\"github.com\",\"sha1\":\"I9ye7HA3YiDy6BtRyzAoUlq/D/I=\",\"title\":\"Team Foundation Server Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/tfs/1.20/tfs.hpi\",\"version\":\"1.20\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Team+Foundation+Server+Plugin\"},\"thinBackup\":{\"buildDate\":\"Jul 25, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"tofuatjava\",\"email\":\"tfuerer.javanet@gmail.com\",\"name\":\"Thomas Fuerer\"},{\"developerId\":\"alienllama\",\"email\":\"alienllama@gmail.com\",\"name\":\"Matthias Steinkogler\"}],\"excerpt\":\"This plugin simply backs up the global and job specific configurations (not the archive or the workspace).    \",\"gav\":\"org.jvnet.hudson.plugins:thinBackup:1.6.2\",\"labels\":[\"misc\"],\"name\":\"thinBackup\",\"previousTimestamp\":\"2012-06-23T16:46:20.00Z\",\"previousVersion\":\"1.6.1\",\"releaseTimestamp\":\"2012-07-25T23:08:10.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"6SBPZkLreb/prk3V/OaaK9Y1GHM=\",\"title\":\"thinBackup\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/thinBackup/1.6.2/thinBackup.hpi\",\"version\":\"1.6.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/thinBackup\"},\"thread-dump-action-plugin\":{\"buildDate\":\"Mar 03, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Provides an easy mechanism to obtain a Jenkins thread dump.\",\"gav\":\"org.jenkins-ci.plugins:thread-dump-action-plugin:1.0\",\"labels\":[\"misc\"],\"name\":\"thread-dump-action-plugin\",\"releaseTimestamp\":\"2012-03-04T02:13:42.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"Y9bzNdNigix2G0qnQCepFNRqkjk=\",\"title\":\"Thread Dump Action Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/thread-dump-action-plugin/1.0/thread-dump-action-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Thread+Dump+Action+Plugin\"},\"throttle-concurrents\":{\"buildDate\":\"May 04, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"abayer\",\"email\":\"andrew.bayer@gmail.com\",\"name\":\"Andrew Bayer\"}],\"excerpt\":\"This plugin allows for throttling the number of concurrent builds of a project running per node or globally.\",\"gav\":\"org.jenkins-ci.plugins:throttle-concurrents:1.7.2\",\"labels\":[\"slaves\",\"cluster\",\"buildwrapper\"],\"name\":\"throttle-concurrents\",\"previousTimestamp\":\"2011-11-09T15:05:34.00Z\",\"previousVersion\":\"1.7.1\",\"releaseTimestamp\":\"2012-05-04T13:53:06.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"007nHNkK9mTvhD1hJ1VBDXS8uRk=\",\"title\":\"Throttle Concurrent Builds Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/throttle-concurrents/1.7.2/throttle-concurrents.hpi\",\"version\":\"1.7.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Throttle+Concurrent+Builds+Plugin\"},\"thucydides\":{\"buildDate\":\"Oct 07, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"hwellmann\",\"email\":\"harald.wellmann@gmx.de\",\"name\":\"Harald Wellmann\"}],\"excerpt\":\"A plugin for publishing web test reports created by <a href='https://github.com/thucydides-webtests/thucydides/wiki'>Thucydides<\\/a>. \",\"gav\":\"net.thucydides.jenkins:thucydides:0.1\",\"labels\":[\"report\"],\"name\":\"thucydides\",\"releaseTimestamp\":\"2012-10-08T03:40:48.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"5+nhQAxBWEC8y/q0gEHKHzmrpIY=\",\"title\":\"Thucydides Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/thucydides/0.1/thucydides.hpi\",\"version\":\"0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Thucydides+Plugin\"},\"timestamper\":{\"buildDate\":\"Jan 05, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"stevengbrown\",\"email\":\"StevenGBrown@gmail.com\",\"name\":\"Steven Brown\"}],\"excerpt\":\"Adds timestamps to the Console Output. \",\"gav\":\"org.jenkins-ci.plugins:timestamper:1.5\",\"labels\":[\"buildwrapper\"],\"name\":\"timestamper\",\"previousTimestamp\":\"2012-12-27T22:09:50.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2013-01-05T16:07:28.00Z\",\"requiredCore\":\"1.461\",\"scm\":\"github.com\",\"sha1\":\"NSpInmeGLF83B2Z9vSeUru1LqW8=\",\"title\":\"Timestamper\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/timestamper/1.5/timestamper.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Timestamper\"},\"tmpcleaner\":{\"buildDate\":\"Dec 29, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"olamy\",\"name\":\"Olivier Lamy\"}],\"excerpt\":\"This plugin allows you to cleanup JVM temporary files.\",\"gav\":\"org.jenkins-ci.plugins:tmpcleaner:1.1\",\"labels\":[\"misc\"],\"name\":\"tmpcleaner\",\"previousTimestamp\":\"2010-02-02T03:46:56.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-12-29T21:28:36.00Z\",\"requiredCore\":\"1.424.1\",\"scm\":\"github.com\",\"sha1\":\"Ot5wgIjftgBiMFcQrDAdd9bXFYo=\",\"title\":\"Tmp Cleaner Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/tmpcleaner/1.1/tmpcleaner.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Tmp+Cleaner+Plugin\"},\"token-macro\":{\"buildDate\":\"Nov 29, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\",\"email\":\"kkawaguchi@cloudbees.com\",\"name\":\"Kohsuke Kawaguchi\"}],\"excerpt\":\"This plugin adds reusable macro expansion capability for other plugins to use\",\"gav\":\"org.jenkins-ci.plugins:token-macro:1.5.1\",\"labels\":[],\"name\":\"token-macro\",\"previousTimestamp\":\"2011-11-28T20:12:16.00Z\",\"previousVersion\":\"1.5\",\"releaseTimestamp\":\"2011-11-30T04:26:00.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"Wxu+pvIbkr7slJWqlC/Ulc6Sc7o=\",\"title\":\"Token Macro Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/token-macro/1.5.1/token-macro.hpi\",\"version\":\"1.5.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Token+Macro+Plugin\"},\"toolenv\":{\"buildDate\":\"Feb 15, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jglick\",\"email\":\"jesse.glick@sun.com\",\"name\":\"Jesse Glick\"}],\"excerpt\":\"Lets you use \\\"tools\\\" in unusual ways, such as from shell scripts.\",\"gav\":\"org.jvnet.hudson.plugins:toolenv:1.0\",\"labels\":[\"buildwrapper\"],\"name\":\"toolenv\",\"releaseTimestamp\":\"2010-02-16T02:24:08.00Z\",\"requiredCore\":\"1.346\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"y4LbFJ1Ck0D4mIaWb/k56VR2Bo0=\",\"title\":\"Tool Environment Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/toolenv/1.0/toolenv.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Tool+Environment+Plugin\"},\"trac\":{\"buildDate\":\"Feb 08, 2012\",\"dependencies\":[{\"name\":\"git\",\"optional\":true,\"version\":\"1.1.14\"},{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.3\"}],\"developers\":[{\"developerId\":\"kohsuke\",\"email\":\"kk@kohsuke.org\",\"name\":\"Kohsuke Kawaguchi\"},{\"developerId\":\"bradfritz\",\"name\":\"Brad Fritz\"},{\"developerId\":\"pgweiss\",\"name\":\"Paul Weiss\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"},{\"developerId\":\"gerd_zanker\",\"email\":\"gerd.zanker@googlemail.com\",\"name\":\"Gerd Zanker\"}],\"excerpt\":\"This plugin creates links from Hudson projects to <a href='http://trac.edgewall.com/'>Trac<\\/a> instances.\",\"gav\":\"org.jenkins-ci.plugins:trac:1.13\",\"labels\":[\"external\"],\"name\":\"trac\",\"previousTimestamp\":\"2011-11-04T16:10:46.00Z\",\"previousVersion\":\"1.12\",\"releaseTimestamp\":\"2012-02-09T01:55:48.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"z8tyrD9yYpCGZ0TEnoNgYNGax40=\",\"title\":\"Trac Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/trac/1.13/trac.hpi\",\"version\":\"1.13\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Trac+Plugin\"},\"trac-publisher-plugin\":{\"buildDate\":\"Aug 11, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"batkinson\",\"email\":\"brent.atkinson@gmail.com\",\"name\":\"Brent Atkinson\"}],\"excerpt\":\"This plug-in adds a publisher that posts build links to Trac tickets referenced in built scm revisions. \",\"gav\":\"org.jenkins-ci.plugins:trac-publisher-plugin:1.3\",\"labels\":[\"external\"],\"name\":\"trac-publisher-plugin\",\"previousTimestamp\":\"2011-12-05T01:49:42.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-08-11T13:24:50.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"NfLwrghh5zE+e7pEeU7oiPbsAsU=\",\"title\":\"Trac Publisher Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/trac-publisher-plugin/1.3/trac-publisher-plugin.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Trac+Publisher+Plugin\"},\"tracking-svn\":{\"buildDate\":\"Jan 03, 2011\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.17\"}],\"developers\":[{\"developerId\":\"huybrechts\",\"name\":\"Tom Huybrechts\"}],\"excerpt\":\"Lets one project track the Subversion revisions that are checked out for another project. \",\"gav\":\"org.jvnet.hudson.plugins:tracking-svn:1.1\",\"labels\":[\"scm-related\"],\"name\":\"tracking-svn\",\"previousTimestamp\":\"2009-11-28T20:43:08.00Z\",\"previousVersion\":\"1.0\",\"releaseTimestamp\":\"2011-01-03T23:40:04.00Z\",\"requiredCore\":\"1.357\",\"scm\":\"svn.java.net\",\"sha1\":\"8iLbn7AAHUQil0wS4BUjG4160lU=\",\"title\":\"Tracking SVN Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/tracking-svn/1.1/tracking-svn.hpi\",\"version\":\"1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Tracking+SVN+Plugin\"},\"translation\":{\"buildDate\":\"Nov 06, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jglick\"}],\"excerpt\":\"This plugin adds an additional dialog box in every page, which enables people to contribute localizations for the messages they are seeing in the current page.\",\"gav\":\"org.jenkins-ci.plugins:translation:1.10\",\"labels\":[\"ui\"],\"name\":\"translation\",\"previousTimestamp\":\"2012-03-20T19:10:34.00Z\",\"previousVersion\":\"1.9\",\"releaseTimestamp\":\"2012-11-06T15:54:48.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"Jgz4LRtsJe+yxH1OhUMnBSm/nZA=\",\"title\":\"Translation Assistance Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/translation/1.10/translation.hpi\",\"version\":\"1.10\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Translation+Assistance+Plugin\"},\"tuxdroid\":{\"buildDate\":\"Nov 04, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"taillant\",\"name\":\"Jean-Marc Taillant\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Allows to publish the result of a build to a <a href='http://www.tuxdroid-community.net/?page=accueil'>TuxDroid community<\\/a>.\",\"gav\":\"org.jvnet.hudson.plugins:tuxdroid:1.7\",\"labels\":[\"notifier\"],\"name\":\"tuxdroid\",\"previousTimestamp\":\"2010-02-11T01:34:02.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2011-11-04T14:11:28.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"G3Nk2Swa7PIHuHiTBP5ttfEfTDA=\",\"title\":\"TuxDroid Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/tuxdroid/1.7/tuxdroid.hpi\",\"version\":\"1.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/TuxDroid+Plugin\"},\"twitter\":{\"buildDate\":\"Sep 16, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"cactusman\"}],\"excerpt\":\"This plugin posts build results to Twitter.\",\"gav\":\"org.jvnet.hudson.plugins:twitter:0.6\",\"labels\":[\"notifier\"],\"name\":\"twitter\",\"previousTimestamp\":\"2009-10-31T06:59:18.00Z\",\"previousVersion\":\"0.4\",\"releaseTimestamp\":\"2010-09-17T02:48:24.00Z\",\"requiredCore\":\"1.365\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"wYiA7y0nIGzUukeMW9gAo3VyVhg=\",\"title\":\"Twitter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/twitter/0.6/twitter.hpi\",\"version\":\"0.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Twitter+Plugin\"},\"ui-samples-plugin\":{\"buildDate\":\"Jan 07, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kohsuke\"}],\"excerpt\":\"\",\"gav\":\"org.jenkins-ci.main:ui-samples-plugin:1.498\",\"name\":\"ui-samples-plugin\",\"previousTimestamp\":\"2013-01-06T18:43:58.00Z\",\"previousVersion\":\"1.497\",\"releaseTimestamp\":\"2013-01-07T15:57:32.00Z\",\"requiredCore\":\"1.498\",\"scm\":\"github.com\",\"sha1\":\"e+ZpwuhYFTqTjqM3phwTNMAC0q4=\",\"title\":\"Jenkins UI sample plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ui-samples-plugin/1.498/ui-samples-plugin.hpi\",\"version\":\"1.498\"},\"unicorn\":{\"buildDate\":\"Aug 08, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"nej\",\"email\":\"jernejz@gmail.com\",\"name\":\"Jernej Zorec\"}],\"excerpt\":\"This plugin uses W3C's Unified Validator, which helps improve the quality of Web pages by performing a variety of checks.\",\"gav\":\"si.nej.hudson.plugins:unicorn:0.1.1\",\"labels\":[\"builder\"],\"name\":\"unicorn\",\"previousTimestamp\":\"2011-02-14T04:31:48.00Z\",\"previousVersion\":\"0.1.0\",\"releaseTimestamp\":\"2011-08-08T05:11:46.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"github.com\",\"sha1\":\"CRsQG3baoeQSvbxfxLbWOXvK9ZA=\",\"title\":\"Unicorn Validation Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/unicorn/0.1.1/unicorn.hpi\",\"version\":\"0.1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Unicorn+Validation+Plugin\"},\"unity-asset-server\":{\"buildDate\":\"Sep 27, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mbrunken\"}],\"excerpt\":\"This plugin allows you to use <a href='http://unity3d.com/unity/features/unity-asset-server.html'>Unity Asset Server<\\/a> as a SCM.\",\"gav\":\"org.jvnet.hudson.plugins:unity-asset-server:1.1.1\",\"labels\":[\"scm\"],\"name\":\"unity-asset-server\",\"previousTimestamp\":\"2010-09-23T21:42:32.00Z\",\"previousVersion\":\"1.1.0\",\"releaseTimestamp\":\"2010-09-27T15:30:50.00Z\",\"requiredCore\":\"1.318\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"3Bqn+CLdG3vFmXgD+svECx04N+Q=\",\"title\":\"Unity Asset Server Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/unity-asset-server/1.1.1/unity-asset-server.hpi\",\"version\":\"1.1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Unity+Asset+Server+Plugin\"},\"unity3d-plugin\":{\"buildDate\":\"Jun 13, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"lacostej\",\"email\":\"jerome.lacoste@gmail.com\",\"name\":\"Jerome Lacoste\"}],\"excerpt\":\"<a href='http://unity3d.com/'>Unity3d<\\/a> is a powerful 3d game creation editor and engine that runs on Mac and Windows.  This plugin adds the ability to call the Unity3d Editor from the command line to automate build and packaging of Unity3d applications. \",\"gav\":\"org.jenkins-ci.plugins:unity3d-plugin:0.3\",\"labels\":[\"builder\"],\"name\":\"unity3d-plugin\",\"previousTimestamp\":\"2012-01-31T04:25:50.00Z\",\"previousVersion\":\"0.2\",\"releaseTimestamp\":\"2012-06-14T02:39:10.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"wagB1YreyAG/pCVCmdaoUBgW2LU=\",\"title\":\"Unity3dBuilder Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/unity3d-plugin/0.3/unity3d-plugin.hpi\",\"version\":\"0.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Unity3dBuilder+Plugin\"},\"unreliable-slave-plugin\":{\"buildDate\":\"Aug 06, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"lvotypko\",\"name\":\"Lucie Votypkova\"}],\"excerpt\":\"This plugin creates statistic about failed jobs which failed on slave and after configured count of failures try slave reconnect of put offline and send notification \",\"gav\":\"jenkinsci:unreliable-slave-plugin:1.0\",\"labels\":[],\"name\":\"unreliable-slave-plugin\",\"releaseTimestamp\":\"2012-08-06T18:35:42.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"Wos9SW6SQN+eeE7oYWHHmEdJzb4=\",\"title\":\"Unreliable slave plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/unreliable-slave-plugin/1.0/unreliable-slave-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Unreliable+slave+plugin\"},\"urltrigger\":{\"buildDate\":\"Jan 04, 2013\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"URLTrigger plug-in makes it possible to monitor changes of the response got from an URL invocation.\",\"gav\":\"org.jenkins-ci.plugins:urltrigger:0.27\",\"labels\":[\"trigger\"],\"name\":\"urltrigger\",\"previousTimestamp\":\"2012-10-27T01:52:10.00Z\",\"previousVersion\":\"0.26\",\"releaseTimestamp\":\"2013-01-04T05:14:42.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"oC/pLcKiv9Ttp4Wcn+uCgQJjd5M=\",\"title\":\"URLTrigger Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/urltrigger/0.27/urltrigger.hpi\",\"version\":\"0.27\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/URLTrigger+Plugin\"},\"utplsql\":{\"buildDate\":\"Feb 13, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"kusemuckl\",\"email\":\"nils@kusemuckl.de\",\"name\":\"Nils op den Winkel\"}],\"excerpt\":\"a tool to parse the output of <a href='http://utplsql.sourceforge.net/'>utplsql<\\/a>\",\"gav\":\"hudson.plugins.utplsql:utplsql:0.4\",\"labels\":[\"report\"],\"name\":\"utplsql\",\"previousTimestamp\":\"2010-06-12T12:37:12.00Z\",\"previousVersion\":\"0.3\",\"releaseTimestamp\":\"2011-02-14T03:19:30.00Z\",\"requiredCore\":\"1.377\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"DaBYf/zwXOvkO6fB3IBPM9TzuRg=\",\"title\":\"utplsql Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/utplsql/0.4/utplsql.hpi\",\"version\":\"0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/utplsql+Plugin\"},\"vagrant\":{\"buildDate\":\"Mar 15, 2012\",\"dependencies\":[{\"name\":\"ruby-runtime\",\"optional\":false,\"version\":\"0.9\"}],\"developers\":[{\"developerId\":\"tyler\"}],\"excerpt\":\"This plugin allows booting of Vagrant virtual machines, provisioning them and also executing scripts inside of them\",\"gav\":\"org.jenkins-ci.ruby-plugins:vagrant:0.1.4\",\"labels\":[\"buildwrapper\",\"builder\"],\"name\":\"vagrant\",\"previousTimestamp\":\"2012-03-15T18:11:10.00Z\",\"previousVersion\":\"0.1.3\",\"releaseTimestamp\":\"2012-03-15T20:25:16.00Z\",\"requiredCore\":\"1.432\",\"scm\":\"github.com\",\"sha1\":\"V1FTJ8ZENLI4dDTpFlb03zN3lHE=\",\"title\":\"Vagrant Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/vagrant/0.1.4/vagrant.hpi\",\"version\":\"0.1.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Vagrant+Plugin\"},\"valgrind\":{\"buildDate\":\"Oct 23, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"eXistence\",\"email\":\"johannes.ohlemacher@googlemail.com\",\"name\":\"Johannes Ohlemacher\"}],\"excerpt\":\"Integrates <a href='http://www.valgrind.org/'>Valgrind<\\/a> in Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:valgrind:0.18\",\"labels\":[\"report\",\"builder\"],\"name\":\"valgrind\",\"previousTimestamp\":\"2012-09-24T22:19:30.00Z\",\"previousVersion\":\"0.17\",\"releaseTimestamp\":\"2012-10-23T15:46:18.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"Pfe9ploNzcXO1REtgHoZF9C99GI=\",\"title\":\"Valgrind Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/valgrind/0.18/valgrind.hpi\",\"version\":\"0.18\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Valgrind+Plugin\"},\"validating-string-parameter\":{\"buildDate\":\"Sep 13, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"petehayes\",\"email\":\"petehayes@gmail.com\",\"name\":\"Peter Hayes\"}],\"excerpt\":\"The validating string parameter plugin contributes a new parameter type to Jenkins that supports regular expression validation of the user's entered parameter.\",\"gav\":\"org.jenkins-ci.plugins:validating-string-parameter:2.2\",\"labels\":[\"misc\",\"parameter\"],\"name\":\"validating-string-parameter\",\"previousTimestamp\":\"2011-02-28T02:39:04.00Z\",\"previousVersion\":\"2.1\",\"releaseTimestamp\":\"2011-09-14T00:43:10.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"RiHAzMCWWkyIBJZu3HOrV5MnVfc=\",\"title\":\"Validating String Parameter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/validating-string-parameter/2.2/validating-string-parameter.hpi\",\"version\":\"2.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Validating+String+Parameter+Plugin\"},\"vboxwrapper\":{\"buildDate\":\"Oct 23, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"theirix\",\"email\":\"theirix@gmail.com\",\"name\":\"Eugene Seliverstov\"}],\"excerpt\":\"Plugin provides a build wrapper for starting and stopping slaves on the virtual machine\",\"gav\":\"org.jenkins-ci.plugins:vboxwrapper:1.0\",\"labels\":[\"buildwrapper\"],\"name\":\"vboxwrapper\",\"releaseTimestamp\":\"2012-10-23T08:21:12.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"Sz10e02cq+PZ/YMkedVfod9ofnk=\",\"title\":\"VBoxWrapper\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/vboxwrapper/1.0/vboxwrapper.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/VBoxWrapper\"},\"versioncolumn\":{\"buildDate\":\"Sep 03, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ssogabe\",\"name\":\"Seiji Sogabe\"}],\"excerpt\":\"This plugin shows the version of slave on \\\"Manage Nodes\\\" page and make the node offline if it uses old slave.jar. \",\"gav\":\"org.jenkins-ci.plugins:versioncolumn:0.2\",\"labels\":[\"listview-column\"],\"name\":\"versioncolumn\",\"previousTimestamp\":\"2011-03-19T20:21:52.00Z\",\"previousVersion\":\"0.1\",\"releaseTimestamp\":\"2011-09-03T13:24:36.00Z\",\"requiredCore\":\"1.401\",\"scm\":\"github.com\",\"sha1\":\"rRRI1En1DfCnZAORNb6j2Xm+6GY=\",\"title\":\"VersionColumn Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/versioncolumn/0.2/versioncolumn.hpi\",\"version\":\"0.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/VersionColumn+Plugin\"},\"versionnumber\":{\"buildDate\":\"Dec 19, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"abayer\",\"email\":\"andrew.bayer@gmail.com\",\"name\":\"Andrew Bayer\"},{\"developerId\":\"cchabanois\",\"email\":\"cchabanois@gmail.com\",\"name\":\"Cedric Chabanois\"}],\"excerpt\":\"This plugin creates a new version number and stores it in the environment variable whose name you specify in the configuration.\",\"gav\":\"org.jvnet.hudson.tools:versionnumber:1.4.1\",\"labels\":[\"buildwrapper\"],\"name\":\"versionnumber\",\"previousTimestamp\":\"2011-12-18T00:54:00.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2011-12-20T03:14:00.00Z\",\"requiredCore\":\"1.404\",\"scm\":\"github.com\",\"sha1\":\"dL5PdGT2sE2GoJWxBRh0CIOSL8Q=\",\"title\":\"Version Number Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/versionnumber/1.4.1/versionnumber.hpi\",\"version\":\"1.4.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Version+Number+Plugin\"},\"vertx\":{\"buildDate\":\"Nov 24, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"blalor\",\"email\":\"blalor@bravo5.org\",\"name\":\"Brian Lalor\"}],\"excerpt\":\"<a href='http://vertx.io'>Vert.x<\\/a> embedder for Jenkins\",\"gav\":\"org.bravo5.jenkins.plugins:vertx:1.0.1\",\"labels\":[\"misc\",\"external\",\"notifier\"],\"name\":\"vertx\",\"previousTimestamp\":\"2012-11-20T03:14:18.00Z\",\"previousVersion\":\"1.0.0\",\"releaseTimestamp\":\"2012-11-25T03:01:38.00Z\",\"requiredCore\":\"1.482\",\"scm\":\"github.com\",\"sha1\":\"pPJP92OlNpoPHGxP9aZzupcKuGo=\",\"title\":\"Vert.x Embedder\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/vertx/1.0.1/vertx.hpi\",\"version\":\"1.0.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Vert.x+Embedder\"},\"view-job-filters\":{\"buildDate\":\"May 25, 2012\",\"dependencies\":[{\"name\":\"cvs\",\"optional\":true,\"version\":\"1.1\"},{\"name\":\"subversion\",\"optional\":true,\"version\":\"1.11\"},{\"name\":\"git\",\"optional\":true,\"version\":\"1.1.9\"},{\"name\":\"email-ext\",\"optional\":true,\"version\":\"2.7\"},{\"name\":\"m2-extra-steps\",\"optional\":true,\"version\":\"1.1.3\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.395\"}],\"developers\":[{\"developerId\":\"jacob_robertson\",\"email\":\"jacob.robertson.work@gmail.com\",\"name\":\"Jacob Robertson\"}],\"excerpt\":\"Create smart views with exactly the jobs you want.  Your smart views can automatically include or exclude jobs by using things like the SCM path or type, the job type, build statuses or trends or triggers, relevance to the logged-in user, email recipients, Maven configuration, job parameterization, and user permissions. Mix and match filters to narrow down to exactly what you want. \",\"gav\":\"org.jvnet.hudson.plugins:view-job-filters:1.22\",\"labels\":[\"ui\",\"scm-related\",\"maven\",\"user\"],\"name\":\"view-job-filters\",\"previousTimestamp\":\"2012-05-23T15:53:20.00Z\",\"previousVersion\":\"1.21.1\",\"releaseTimestamp\":\"2012-05-25T12:37:04.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"p7m4eUF24aHhFWnPqrVTbnIuvbk=\",\"title\":\"View Job Filters\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/view-job-filters/1.22/view-job-filters.hpi\",\"version\":\"1.22\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/View+Job+Filters\"},\"viewVC\":{\"buildDate\":\"Nov 03, 2011\",\"dependencies\":[{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.3\"}],\"developers\":[{\"name\":\"Mike Salnikov\"},{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"This plugin integrates <a href='http://www.viewvc.org'>ViewVC<\\/a> browser interface for CVS and Subversion with Hudson.\",\"gav\":\"org.jvnet.hudson.plugins:viewVC:1.5\",\"labels\":[\"scm-related\"],\"name\":\"viewVC\",\"previousTimestamp\":\"2011-11-03T18:20:06.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2011-11-03T18:22:26.00Z\",\"requiredCore\":\"1.392\",\"scm\":\"github.com\",\"sha1\":\"qgCO5wqAdFBTUFFS44kqB09eoAg=\",\"title\":\"ViewVC Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/viewVC/1.5/viewVC.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/ViewVC+Plugin\"},\"violations\":{\"buildDate\":\"Sep 08, 2012\",\"dependencies\":[{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.399\"}],\"developers\":[{\"developerId\":\"peterkittreilly\",\"name\":\"Peter Reilly\"}],\"excerpt\":\"This plug-in generates reports static code violation detectors such as checkstyle, pmd, cpd, findbugs, codenarc, fxcop, stylecop and simian. \",\"gav\":\"org.jenkins-ci.plugins:violations:0.7.11\",\"labels\":[\"maven\",\"report\"],\"name\":\"violations\",\"previousTimestamp\":\"2011-08-08T16:13:38.00Z\",\"previousVersion\":\"0.7.10\",\"releaseTimestamp\":\"2012-09-08T17:31:26.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"UuXzsT6UDHmYxIKcHycTkHZXsvg=\",\"title\":\"Violations\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/violations/0.7.11/violations.hpi\",\"version\":\"0.7.11\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Violations\"},\"virtualbox\":{\"buildDate\":\"Oct 07, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"godin\",\"name\":\"Evgeny Mandrikov\"},{\"developerId\":\"choas\",\"name\":\"Lars Gregori\"},{\"developerId\":\"hgomez\",\"name\":\"Henri Gomez\"}],\"excerpt\":\"This plugin integrates Jenkins with <a href='http://www.virtualbox.org/'>VirtualBox<\\/a>&nbsp;(version 3, 4.0, 4.1 and 4.2) virtual machine.\",\"gav\":\"org.jenkins-ci.plugins:virtualbox:0.6\",\"labels\":[\"slaves\",\"buildwrapper\"],\"name\":\"virtualbox\",\"previousTimestamp\":\"2012-09-22T02:44:02.00Z\",\"previousVersion\":\"0.5\",\"releaseTimestamp\":\"2012-10-08T01:14:52.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"VF05k+pFUby9fssNm7H6yfGAazU=\",\"title\":\"VirtualBox Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/virtualbox/0.6/virtualbox.hpi\",\"version\":\"0.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/VirtualBox+Plugin\"},\"vmware\":{\"buildDate\":\"Apr 09, 2008\",\"dependencies\":[],\"developers\":[{\"developerId\":\"connollys\"}],\"excerpt\":\"This plugin allows you to start a <a href='http://www.vmware.com/'>VMware<\\/a> Virtual Machine before a build and stop it again after the build completes.\",\"gav\":\"org.jvnet.hudson.plugins:vmware:0.8\",\"labels\":[\"buildwrapper\"],\"name\":\"vmware\",\"previousTimestamp\":\"2008-02-27T17:27:22.00Z\",\"previousVersion\":\"0.7\",\"releaseTimestamp\":\"2008-04-09T13:15:54.00Z\",\"requiredCore\":\"1.206\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"O9T9nyEMzQJv7k7j9u+uag0Lesw=\",\"title\":\"VMware plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/vmware/0.8/vmware.hpi\",\"version\":\"0.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/VMware+plugin\"},\"vsphere-cloud\":{\"buildDate\":\"May 25, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jswager\",\"email\":\"jswager@alohaoi.com\",\"name\":\"Jason Swager\"}],\"excerpt\":\"Add VMware vSphere support to Jenkins to use virtual machines as slaves \",\"gav\":\"org.jenkins-ci.plugins:vsphere-cloud:0.10\",\"labels\":[\"cluster\",\"slaves\"],\"name\":\"vsphere-cloud\",\"previousTimestamp\":\"2012-05-07T14:05:32.00Z\",\"previousVersion\":\"0.9\",\"releaseTimestamp\":\"2012-05-25T13:05:48.00Z\",\"requiredCore\":\"1.464\",\"scm\":\"github.com\",\"sha1\":\"yNgfIMFTECk8fXkI0kJgauT+syQ=\",\"title\":\"vSphere Cloud Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/vsphere-cloud/0.10/vsphere-cloud.hpi\",\"version\":\"0.10\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/vSphere+Cloud+Plugin\"},\"vss\":{\"buildDate\":\"Aug 08, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"rioch\",\"name\":\"Jon Black\"}],\"excerpt\":\"This plugin integrates Hudson with Microsoft Visual SourceSafe \",\"gav\":\"org.jenkins-ci.plugins:vss:1.9\",\"labels\":[\"scm\"],\"name\":\"vss\",\"previousTimestamp\":\"2010-09-19T22:06:44.00Z\",\"previousVersion\":\"1.8\",\"releaseTimestamp\":\"2011-08-08T15:37:28.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"z7LRaabPUDNZpuDs7rAEafW4EOM=\",\"title\":\"Visual SourceSafe Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/vss/1.9/vss.hpi\",\"version\":\"1.9\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Visual+SourceSafe+Plugin\"},\"warnings\":{\"buildDate\":\"Oct 05, 2012\",\"dependencies\":[{\"name\":\"dashboard-view\",\"optional\":true,\"version\":\"2.2\"},{\"name\":\"analysis-core\",\"optional\":false,\"version\":\"1.48\"},{\"name\":\"maven-plugin\",\"optional\":true,\"version\":\"1.409\"},{\"name\":\"violations\",\"optional\":true,\"version\":\"0.7.10\"},{\"name\":\"token-macro\",\"optional\":true,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"drulli\",\"email\":\"ullrich.hafner@gmail.com\",\"name\":\"Ulli Hafner\"}],\"excerpt\":\"This plugin generates the trend report for compiler warnings in the console log or in log files. \",\"gav\":\"org.jvnet.hudson.plugins:warnings:4.18\",\"labels\":[\"maven\",\"report\"],\"name\":\"warnings\",\"previousTimestamp\":\"2012-09-10T22:59:10.00Z\",\"previousVersion\":\"4.17\",\"releaseTimestamp\":\"2012-10-05T16:09:32.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"github.com\",\"sha1\":\"bcwfanowEEGzTEG2bWBiMGxx2OY=\",\"title\":\"Warnings Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/warnings/4.18/warnings.hpi\",\"version\":\"4.18\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Warnings+Plugin\"},\"was-builder\":{\"buildDate\":\"Oct 20, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"rseguy\",\"email\":\"romain.seguy@gmail.com\",\"name\":\"Romain Seguy\"}],\"excerpt\":\"This plugin allows Jenkins to invoke IBM WebSphere Application Server's *wsadmin* as a build step.\",\"gav\":\"org.jenkins-ci.plugins:was-builder:1.6.1\",\"labels\":[\"builder\"],\"name\":\"was-builder\",\"previousTimestamp\":\"2011-08-07T14:05:02.00Z\",\"previousVersion\":\"1.6\",\"releaseTimestamp\":\"2011-10-20T14:19:58.00Z\",\"requiredCore\":\"1.409\",\"scm\":\"svn.jenkins-ci.org\",\"sha1\":\"ZjWAGywEpaL+0rhmyGNmBS5yyVg=\",\"title\":\"WAS Builder Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/was-builder/1.6.1/was-builder.hpi\",\"version\":\"1.6.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/WAS+Builder+Plugin\"},\"weblogic-deployer-plugin\":{\"buildDate\":\"Aug 13, 2012\",\"dependencies\":[{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.445\"}],\"developers\":[{\"developerId\":\"RaphC\",\"email\":\"rcr@orange.fr\",\"name\":\"Raphael CHAUMIER\"}],\"excerpt\":\"This plugin deploy artifacts built on Jenkins to a weblogic target (managed server, cluster ...) as an application or a library component.\",\"gav\":\"org.jenkins-ci.plugins:weblogic-deployer-plugin:1.3\",\"labels\":[\"upload\"],\"name\":\"weblogic-deployer-plugin\",\"previousTimestamp\":\"2012-08-03T02:55:06.00Z\",\"previousVersion\":\"1.2\",\"releaseTimestamp\":\"2012-08-13T15:10:08.00Z\",\"requiredCore\":\"1.445\",\"scm\":\"github.com\",\"sha1\":\"29LRrlQIYYCvuOKhmrDw1/h9WMw=\",\"title\":\"WebLogic Deployer Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/weblogic-deployer-plugin/1.3/weblogic-deployer-plugin.hpi\",\"version\":\"1.3\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/WebLogic+Deployer+Plugin\"},\"websocket\":{\"buildDate\":\"Apr 16, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mzp\",\"email\":\"mzp@ocaml.jp\",\"name\":\"MIZUNO Hiroki\"}],\"excerpt\":\"This plugin notifies build results via Websocket. \",\"gav\":\"org.codefirst.jenkins.wsnotifier:websocket:1.0.4\",\"labels\":[\"notifier\"],\"name\":\"websocket\",\"previousTimestamp\":\"2011-12-22T02:42:40.00Z\",\"previousVersion\":\"1.0.3\",\"releaseTimestamp\":\"2012-04-17T03:24:28.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"AfxgPKM9HbT8gcM1DREHhWP15ZE=\",\"title\":\"Websocket Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/websocket/1.0.4/websocket.hpi\",\"version\":\"1.0.4\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Websocket+Plugin\"},\"webtestpresenter\":{\"buildDate\":\"Jan 15, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"aambrose\",\"name\":\"Adam Ambrose\"}],\"excerpt\":\"This plugin publishes the reports generated by the <a href='http://webtest.canoo.com/'>Canoo WebTest<\\/a> tool for each build.\",\"gav\":\"org.jvnet.hudson.plugins:webtestpresenter:0.23\",\"labels\":[\"report\"],\"name\":\"webtestpresenter\",\"previousTimestamp\":\"2008-07-13T21:48:18.00Z\",\"previousVersion\":\"0.22\",\"releaseTimestamp\":\"2010-01-16T03:53:06.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"NcPT6lv6p4WnZU43WeB8mZ59rc4=\",\"title\":\"WebTest Presenter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/webtestpresenter/0.23/webtestpresenter.hpi\",\"version\":\"0.23\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/WebTest+Presenter+Plugin\"},\"whitesource\":{\"buildDate\":\"Oct 28, 2012\",\"dependencies\":[{\"name\":\"git\",\"optional\":true,\"version\":\"1.1.14\"},{\"name\":\"maven-plugin\",\"optional\":false,\"version\":\"1.466\"},{\"name\":\"javadoc\",\"optional\":false,\"version\":\"1.0\"}],\"developers\":[{\"developerId\":\"edoshor\",\"email\":\"edo.shor@whitesourcesoftware.com\",\"name\":\"Edo Shor\"},{\"developerId\":\"sramakrishna\",\"email\":\"ramakrishna.sharvirala@gmail.com\",\"name\":\"Ramakrishna Sharvirala\"}],\"excerpt\":\"The plugin brings automatic open source management to Jenkins users. \",\"gav\":\"org.jenkins-ci.plugins:whitesource:1.0\",\"labels\":[\"report\",\"external\"],\"name\":\"whitesource\",\"releaseTimestamp\":\"2012-10-28T20:49:24.00Z\",\"requiredCore\":\"1.466\",\"scm\":\"github.com\",\"sha1\":\"LwObWjeNtTiWHq4Q2h/Rcm2r/JQ=\",\"title\":\"Whitesource Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/whitesource/1.0/whitesource.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Whitesource+Plugin\"},\"windmill\":{\"buildDate\":\"Feb 06, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"admc\",\"name\":\"Adam Christian\"}],\"excerpt\":\"This plugin allows you to configure and run <a href='http://www.getwindmill.com/'>Windmill<\\/a> functional tests.\",\"gav\":\"org.jvnet.hudson.plugins:windmill:1.5\",\"labels\":[\"external\"],\"name\":\"windmill\",\"previousTimestamp\":\"2009-06-25T20:40:46.00Z\",\"previousVersion\":\"1.4\",\"releaseTimestamp\":\"2010-02-06T13:59:22.00Z\",\"requiredCore\":\"1.319\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"npNnBKCCpnFCi+Tsw/QA1mQyyyI=\",\"title\":\"Windmill Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/windmill/1.5/windmill.hpi\",\"version\":\"1.5\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Windmill+Plugin\"},\"ws-cleanup\":{\"buildDate\":\"Jul 17, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"vjuranek\",\"name\":\"Vojtech Juranek\"}],\"excerpt\":\"This plugin deletes the workspace before the build or when a build is finished and artifacts saved.\",\"gav\":\"org.jenkins-ci.plugins:ws-cleanup:0.10\",\"labels\":[\"post-build\",\"buildwrapper\"],\"name\":\"ws-cleanup\",\"previousTimestamp\":\"2012-07-16T00:16:06.00Z\",\"previousVersion\":\"0.9\",\"releaseTimestamp\":\"2012-07-17T12:33:36.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"mVyDxN2UnpD37CyW0jVGzyVLzro=\",\"title\":\"Workspace Cleanup Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/ws-cleanup/0.10/ws-cleanup.hpi\",\"version\":\"0.10\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Workspace+Cleanup+Plugin\"},\"xcode-plugin\":{\"buildDate\":\"Mar 27, 2012\",\"dependencies\":[{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"rayhilton\",\"email\":\"ray.hilton@gmail.com\",\"name\":\"Ray Yamamoto Hilton\"},{\"developerId\":\"aheritier\",\"email\":\"aheritier@apache.org\",\"name\":\"Arnaud Heritier\"}],\"excerpt\":\"This plugin adds the ability to call Xcode command line tools to automate build and packaging iOS applications (iPhone, iPad, ...).\",\"gav\":\"org.jenkins-ci.plugins:xcode-plugin:1.3.1\",\"labels\":[\"builder\",\"ios\"],\"name\":\"xcode-plugin\",\"previousTimestamp\":\"2012-01-21T04:39:04.00Z\",\"previousVersion\":\"1.3\",\"releaseTimestamp\":\"2012-03-27T15:20:08.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"xowe0SZoM1pTFOwlco3MFywYxKA=\",\"title\":\"Xcode Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/xcode-plugin/1.3.1/xcode-plugin.hpi\",\"version\":\"1.3.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Xcode+Plugin\"},\"xfpanel\":{\"buildDate\":\"Dec 30, 2012\",\"dependencies\":[{\"name\":\"claim\",\"optional\":false,\"version\":\"1.7\"}],\"developers\":[{\"developerId\":\"jrenaut\",\"email\":\"julienrenaut@gmail.com\",\"name\":\"Julien RENAUT\"},{\"developerId\":\"hoodja\",\"email\":\"hoodja@gmail.com\",\"name\":\"James Hood\"},{\"developerId\":\"nikom\",\"email\":\"niko.mahle@googlemail.com\",\"name\":\"Niko Mahle\"}],\"excerpt\":\"This plugin provides an eXtreme Feedback Panel that can be used to expose the status of a selected number of Jobs.\",\"gav\":\"org.jenkins-ci.plugins:xfpanel:1.1.6\",\"labels\":[\"report\",\"ui\"],\"name\":\"xfpanel\",\"previousTimestamp\":\"2012-08-30T13:20:34.00Z\",\"previousVersion\":\"1.1.4\",\"releaseTimestamp\":\"2012-12-30T16:19:48.00Z\",\"requiredCore\":\"1.475\",\"scm\":\"github.com\",\"sha1\":\"BUAx4bYHHxWUa1YYfpccEkrCSAc=\",\"title\":\"eXtreme Feedback Panel Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/xfpanel/1.1.6/xfpanel.hpi\",\"version\":\"1.1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/eXtreme+Feedback+Panel+Plugin\"},\"xframe-filter-plugin\":{\"buildDate\":\"Sep 27, 2011\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jieryn\",\"email\":\"jieryn@gmail.com\",\"name\":\"Jesse Farinacci\"}],\"excerpt\":\"Provides a very simple filter which adds a response header indicating how frame/iframe requests should be handled.\",\"gav\":\"org.jenkins-ci.plugins:xframe-filter-plugin:1.0\",\"labels\":[\"page-decorator\",\"misc\"],\"name\":\"xframe-filter-plugin\",\"releaseTimestamp\":\"2011-09-27T14:26:38.00Z\",\"requiredCore\":\"1.429\",\"scm\":\"github.com\",\"sha1\":\"2gp6AD6zeY8gei7owGX4JiQu5yI=\",\"title\":\"XFrame Filter Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/xframe-filter-plugin/1.0/xframe-filter-plugin.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/XFrame+Filter+Plugin\"},\"xpath-config-viewer\":{\"buildDate\":\"May 21, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"ffromm\",\"email\":\"frederik.fromm@gmail.com\",\"name\":\"Frederik Fromm\"}],\"excerpt\":\"This plugin adds a new link \\\"XPath Configuration Viewer\\\" to the Jenkins Managagement page. It provides a simple and easy way to check job configurations having a huge number of jobs.\",\"gav\":\"org.jenkins-ci.plugins:xpath-config-viewer:1.1.1\",\"labels\":[\"misc\"],\"name\":\"xpath-config-viewer\",\"previousTimestamp\":\"2012-03-07T13:35:10.00Z\",\"previousVersion\":\"1.1.0\",\"releaseTimestamp\":\"2012-05-21T22:03:38.00Z\",\"requiredCore\":\"1.424\",\"scm\":\"github.com\",\"sha1\":\"DSL/usWSQU9THJRxm1rd5Uw2Yi4=\",\"title\":\"XPath Configuration Viewer\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/xpath-config-viewer/1.1.1/xpath-config-viewer.hpi\",\"version\":\"1.1.1\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/XPath+Configuration+Viewer\"},\"xpdev\":{\"buildDate\":\"Jun 26, 2012\",\"dependencies\":[{\"name\":\"git\",\"optional\":false,\"version\":\"1.1.17\"},{\"name\":\"mercurial\",\"optional\":false,\"version\":\"1.41\"},{\"name\":\"subversion\",\"optional\":false,\"version\":\"1.40\"}],\"developers\":[{\"developerId\":\"ndeloof\",\"name\":\"Nicolas De Loof\"}],\"excerpt\":\"\",\"gav\":\"com.cloudbees.jenkins.plugins:xpdev:1.0\",\"labels\":[],\"name\":\"xpdev\",\"releaseTimestamp\":\"2012-06-26T15:42:22.00Z\",\"requiredCore\":\"1.447\",\"scm\":\"github.com\",\"sha1\":\"jtb/FToA+IR4YXH/lTCNu6uBW5Y=\",\"title\":\"XP-Dev plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/xpdev/1.0/xpdev.hpi\",\"version\":\"1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/XP-Dev+plugin\"},\"xshell\":{\"buildDate\":\"Apr 11, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"mambu\",\"email\":\"marco.ambu+jenkins@gmail.com\",\"name\":\"Marco Ambu\"}],\"excerpt\":\"This plugin defines a new build type to execute a shell command in a cross-platform environment.\",\"gav\":\"org.jenkins-ci.plugins:xshell:0.8\",\"labels\":[\"builder\"],\"name\":\"xshell\",\"previousTimestamp\":\"2011-12-29T14:06:08.00Z\",\"previousVersion\":\"0.7\",\"releaseTimestamp\":\"2012-04-11T23:05:22.00Z\",\"requiredCore\":\"1.459\",\"scm\":\"github.com\",\"sha1\":\"75P8ZCPx1gUmfdn3yDtkcfv4nQU=\",\"title\":\"XShell Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/xshell/0.8/xshell.hpi\",\"version\":\"0.8\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/XShell+Plugin\"},\"xtrigger\":{\"buildDate\":\"Jul 28, 2012\",\"dependencies\":[{\"name\":\"ivytrigger\",\"optional\":false,\"version\":\"0.22\"},{\"name\":\"buildresult-trigger\",\"optional\":false,\"version\":\"0.8\"},{\"name\":\"scripttrigger\",\"optional\":false,\"version\":\"0.21\"},{\"name\":\"urltrigger\",\"optional\":false,\"version\":\"0.24\"},{\"name\":\"fstrigger\",\"optional\":false,\"version\":\"0.33\"}],\"developers\":[{\"developerId\":\"gbois\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"The XTrigger plugin makes it possible to monitor different environments (filesystem, jobs result, url response, binary repository and so on) and triggers a build if there is at least one change between two checks.\",\"gav\":\"org.jenkins-ci.plugins:xtrigger:0.53\",\"labels\":[\"trigger\"],\"name\":\"xtrigger\",\"previousTimestamp\":\"2012-07-25T05:48:36.00Z\",\"previousVersion\":\"0.52\",\"releaseTimestamp\":\"2012-07-28T04:28:14.00Z\",\"requiredCore\":\"1.461\",\"scm\":\"github.com\",\"sha1\":\"KnVb1JdGNwPSPYtKWE4/GRu9wR8=\",\"title\":\"XTrigger Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/xtrigger/0.53/xtrigger.hpi\",\"version\":\"0.53\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/XTrigger+Plugin\"},\"xunit\":{\"buildDate\":\"Dec 25, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"email\":\"gregory.boissinot@gmail.com\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin makes it possible to publish the test results of an execution of a testing tool in Jenkins.\",\"gav\":\"org.jenkins-ci.plugins:xunit:1.52\",\"labels\":[\"report\"],\"name\":\"xunit\",\"previousTimestamp\":\"2012-11-16T03:29:28.00Z\",\"previousVersion\":\"1.51\",\"releaseTimestamp\":\"2012-12-26T01:12:36.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"kwvF7bSixnldzX+bUNxEkm2bYHg=\",\"title\":\"xUnit Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/xunit/1.52/xunit.hpi\",\"version\":\"1.52\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/xUnit+Plugin\"},\"xvfb\":{\"buildDate\":\"Dec 09, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"zregvart\",\"email\":\"zregvart+xvfbjenkins@gmail.com\",\"name\":\"Zoran Regvart\"}],\"excerpt\":\"Lets you control&nbsp;<a href='http://www.x.org/archive/current/doc/man/man1/Xvfb.1.xhtml'>Xvfb<\\/a> virtual frame buffer X11 server with each build. It starts Xvfb before the build starts, and stops it with the build. This is very useful if your build requires X11 access, for instance runs tests that require GUI. \",\"gav\":\"org.jenkins-ci.plugins:xvfb:1.0.7\",\"labels\":[\"buildwrapper\",\"xvfb\"],\"name\":\"xvfb\",\"previousTimestamp\":\"2012-11-05T21:29:48.00Z\",\"previousVersion\":\"1.0.6\",\"releaseTimestamp\":\"2012-12-09T22:02:50.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"xvjq4QhP8vwy8uFkvoKFrbMg2vs=\",\"title\":\"Xvfb Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/xvfb/1.0.7/xvfb.hpi\",\"version\":\"1.0.7\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Xvfb+Plugin\"},\"xvnc\":{\"buildDate\":\"Jul 19, 2010\",\"dependencies\":[],\"developers\":[{\"developerId\":\"jglick\",\"email\":\"jglick@dev.java.net\",\"name\":\"Jesse Glick\"}],\"excerpt\":\"This plugin lets you run an <a href='http://www.hep.phy.cam.ac.uk/vnc_docs/xvnc.html'>Xvnc<\\/a> session during a build. This is handy if your build includes UI testing that needs a display available. \",\"gav\":\"org.jvnet.hudson.plugins:xvnc:1.10\",\"labels\":[\"buildwrapper\"],\"name\":\"xvnc\",\"previousTimestamp\":\"2010-06-21T21:56:56.00Z\",\"previousVersion\":\"1.9\",\"releaseTimestamp\":\"2010-07-19T16:30:16.00Z\",\"requiredCore\":\"1.367\",\"scm\":\"svn.dev.java.net\",\"sha1\":\"WWb7foXJ/b2XN+P3Oj9sdMuluAs=\",\"title\":\"Xvnc Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/xvnc/1.10/xvnc.hpi\",\"version\":\"1.10\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Xvnc+Plugin\"},\"yammer\":{\"buildDate\":\"Jun 24, 2012\",\"dependencies\":[{\"name\":\"ruby-runtime\",\"optional\":false,\"version\":\"0.10\"},{\"name\":\"token-macro\",\"optional\":false,\"version\":\"1.5.1\"}],\"developers\":[{\"developerId\":\"matthewriley\"}],\"excerpt\":\"Sends build notifications to Yammer.\",\"gav\":\"org.jenkins-ci.ruby-plugins:yammer:0.1.0\",\"labels\":[\"notifier\"],\"name\":\"yammer\",\"previousTimestamp\":\"2012-06-16T13:06:54.00Z\",\"previousVersion\":\"0.0.9\",\"releaseTimestamp\":\"2012-06-24T17:15:50.00Z\",\"requiredCore\":\"1.432\",\"scm\":\"github.com\",\"sha1\":\"TDIP0bT1BxtPTk+MXtZThc0BzMw=\",\"title\":\"Yammer Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/yammer/0.1.0/yammer.hpi\",\"version\":\"0.1.0\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Yammer+Plugin\"},\"zentimestamp\":{\"buildDate\":\"Mar 10, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"gbois\",\"name\":\"Gregory Boissinot\"}],\"excerpt\":\"This plugin makes it possible to change the Jenkins build timestamp format (provided by the Jenkins BUILD_ID variable). \",\"gav\":\"org.jenkins-ci.plugins:zentimestamp:3.2\",\"labels\":[\"buildwrapper\"],\"name\":\"zentimestamp\",\"previousTimestamp\":\"2012-03-07T06:19:08.00Z\",\"previousVersion\":\"3.1\",\"releaseTimestamp\":\"2012-03-11T03:07:40.00Z\",\"requiredCore\":\"1.410\",\"scm\":\"github.com\",\"sha1\":\"FWWOFxUNKWjmW2Skj8CTfIoPbtE=\",\"title\":\"ZenTimestamp Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/zentimestamp/3.2/zentimestamp.hpi\",\"version\":\"3.2\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/ZenTimestamp+Plugin\"},\"zubhium\":{\"buildDate\":\"Aug 15, 2012\",\"dependencies\":[],\"developers\":[{\"developerId\":\"derFunk\",\"email\":\"mail@derfunk.com\",\"name\":\"Andreas Katzig\"}],\"excerpt\":\"This plugin uses the Zubhium upload API to allow uploading your Android .apk files to <a href='http://www.Zubhium.com'>www.Zubhium.com<\\/a> \",\"gav\":\"org.jenkins-ci.plugins:zubhium:0.1.6\",\"labels\":[\"upload\",\"android\"],\"name\":\"zubhium\",\"previousTimestamp\":\"2012-08-12T19:45:38.00Z\",\"previousVersion\":\"0.1.5\",\"releaseTimestamp\":\"2012-08-15T17:16:34.00Z\",\"requiredCore\":\"1.398\",\"scm\":\"github.com\",\"sha1\":\"F1InB9TBBOnv3K8gF/XGJPklCZI=\",\"title\":\"Zubhium Plugin\",\"url\":\"http://updates.jenkins-ci.org/download/plugins/zubhium/0.1.6/zubhium.hpi\",\"version\":\"0.1.6\",\"wiki\":\"https://wiki.jenkins-ci.org/display/JENKINS/Zubhium+Plugin\"}},\"signature\":{\"certificates\":[\"MIIDezCCAmMCBQDerb7xMA0GCSqGSIb3DQEBBAUAMIGKMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTERMA8GA1UEBxMIU2FuIEpvc2UxGDAWBgNVBAoTD0plbmtpbnMgUHJvamVjdDEaMBgGA1UEAxMRS29oc3VrZSBLYXdhZ3VjaGkxHTAbBgkqhkiG9w0BCQEWDmtrQGtvaHN1a2Uub3JnMB4XDTEyMDQxOTA5MjEwMVoXDTEzMDQxOTA5MjEwMVoweDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExGDAWBgNVBAoTD0plbmtpbnMgUHJvamVjdDEeMBwGA1UECxMVRGVmYXVsdCBVcGRhdGUgQ2VudGVyMRowGAYDVQQDExFLb2hzdWtlIEthd2FndWNoaTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANRDu439lC/Ie+LlQ42vYICZZ9aIA8+poXhJLt1Mhosz+zFGCdljWTvO3/wxNx7uA053YTIKu73cSAxVjWK8Qfhv19hKXNKe7wvHZF0y6VbSKqKctjXsm/4nWrGr61FTIxr3LcM3byx/vJ0tykQmiDc5/oov7MmUpBLSg1yCyO70t1/NxyYy7xCreU2G1x2w+RxFakfIaLK9r33FcFH+mrEzQZHxoxlg3AuLn1WDz9+mRMvCEEZU6AQh07gBG8f8dOV9ot2vaknkF+w4OTsDdUdXY5sNghr6yQTLU8++0u/f9N8j+cP07C39OWnIjloBt3WVuhSuw83IqOJHoYh85wUCAwEAATANBgkqhkiG9w0BAQQFAAOCAQEAYTNwxggebhQaZwitsj1tfPpV7T6gQ6m/Bo/hV9OpvvP3jolZ79OFB79gg6HZbhZUwdBtHMWHiwMI/+DoAWgDQpRgFapTZmEtu/4LREXmgl9aTWDkiQ5M+7PCrowwkH8Jwwk+8cqiaCrrKkLUYsQkVqAUUD5EtxOgz6X7lH3nnALpo5A00Tvt3V0Q0vfiiPsSZiQ3go709dA6nrToPimEOBLgPPZw/A2gCQ8GbfB4vl0Zl5Yy7gPf36kMurG90XxbhmEZH75Hv9oERsD7Cr3z97fRTDxickg4cXTsdRwmqbCvFpXpMs6Vqyz2IsoysFqpP1FgFqPgFJYaFjBea0CPIQ==\"],\"correct_digest\":\"+df0KPa3c0veuRdkXz2aGqxDIQs=\",\"correct_signature\":\"iOYiY07a/h+Nswnp179nqDM7r1E0YBDCyUPsWC6C5WIUSzL/thIZhhRp4cM90JtcsEEaaZHpOuEh17KKgFxTkmLqTdFQJbEtdb8yq1hnPD5aQPamqmgSmWyHetVT6vEk/i6zKsm/2XJ8bfy3dBjX43HRRnXctr+ZOM2l0M99PUwM4Xt8Afl3WmTbCC+284VeowFJcfSVJEL84beWnLYoqGAMdviDfp+I59dxz4KbSbLwxMDhd1qb6WHLSd3sFaYfQoimClZQAdzIUqIVN3jQ8ROpqT5VI7jvGZgPGjzS8e6SP4Uk9laPRvKeq8jniXOQGrdRYdYuOlXyBRnCPgtiqQ==\",\"digest\":\"LLV63zIYt9GTGyMgnHzIpoAjFlc=\",\"signature\":\"LLy9yGf+zWGfTKmbtSQWewYaCYd9WOMqxMW9zY0Gjntn/ulThrgnwOJXFZFhH53+cNr+Cs0MIsi9XjZ8n1MD6olg/3E0e7YW0rai8GQ1Y8jotyMLwjhdyVM8t8McMiVxcypyAOYOf/sSXtB1ZTV2kw4FmngaMULOv3lFGpNKWNlKbtBm/e0AC5xheyyI67aDGNfxzGbVuexaFJDSczBIkrpVP3SsAYTmLgEkx6RR1cCzAc2nQpMSdz9k0IQAbtaT9Oabear15nd9+gtFasIotHAyWIyaWfv/ag9wBpjO1W0qqS4j2MVYYYt11o6mubhtXvK+shhvzlmXW5lhd9hfmw==\"},\"updateCenterVersion\":\"1\"}\n"
  },
  {
    "path": "testdata/whitespace.json",
    "content": "                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n                                                                                \n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n                                                                                                                                                                                                                                                                                            \n\n\n[]\n\n\n\n\n\n\n\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n"
  },
  {
    "path": "tests/test.cpp",
    "content": "// included first to verify sajson includes.\n#include <sajson.h>\n#include <sajson_ostream.h>\n\n#include <UnitTest++.h>\n\n#include <random>\n\nusing sajson::document;\nusing sajson::literal;\nusing sajson::string;\nusing sajson::TYPE_ARRAY;\nusing sajson::TYPE_DOUBLE;\nusing sajson::TYPE_FALSE;\nusing sajson::TYPE_INTEGER;\nusing sajson::TYPE_NULL;\nusing sajson::TYPE_OBJECT;\nusing sajson::TYPE_STRING;\nusing sajson::TYPE_TRUE;\nusing sajson::value;\n\nnamespace {\n\ninline bool success(const document& doc) {\n    if (!doc.is_valid()) {\n        fprintf(\n            stderr,\n            \"parse failed at %i, %i: %s\\n\",\n            static_cast<int>(doc.get_error_line()),\n            static_cast<int>(doc.get_error_column()),\n            doc.get_error_message_as_cstring());\n        return false;\n    }\n    return true;\n}\n\nconst size_t ast_buffer_size = 8096;\nsize_t ast_buffer[ast_buffer_size];\n\n/**\n * Modern clang complains about obvious self-assignment, but we want\n * to do that in tests. Hide it from clang.\n */\ntemplate <typename T>\nconst T& self_ref(const T& v) {\n    return v;\n}\n}\n\n#define ABSTRACT_TEST(name)                                              \\\n    static void name##internal(                                          \\\n        sajson::document (*parse)(const sajson::string&));               \\\n    TEST(single_allocation_##name) {                                     \\\n        name##internal([](const sajson::string& literal) {               \\\n            return sajson::parse(sajson::single_allocation(), literal);  \\\n        });                                                              \\\n    }                                                                    \\\n    TEST(dynamic_allocation_##name) {                                    \\\n        name##internal([](const sajson::string& literal) {               \\\n            return sajson::parse(sajson::dynamic_allocation(), literal); \\\n        });                                                              \\\n    }                                                                    \\\n    TEST(bounded_allocation_##name) {                                    \\\n        name##internal([](const sajson::string& literal) {               \\\n            return sajson::parse(                                        \\\n                sajson::bounded_allocation(ast_buffer, ast_buffer_size), \\\n                literal);                                                \\\n        });                                                              \\\n    }                                                                    \\\n    static void name##internal(sajson::document (*parse)(const sajson::string&))\n\nABSTRACT_TEST(empty_array) {\n    const sajson::document& document = parse(literal(\"[]\"));\n    assert(success(document));\n    const value& root = document.get_root();\n    CHECK_EQUAL(true, document.is_valid());\n    CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n    CHECK_EQUAL(0u, root.get_length());\n}\n\nABSTRACT_TEST(array_whitespace) {\n    const sajson::document& document = parse(literal(\" [ ] \"));\n    assert(success(document));\n    const value& root = document.get_root();\n    CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n    CHECK_EQUAL(0u, root.get_length());\n}\n\nABSTRACT_TEST(array_zero) {\n    const sajson::document& document = parse(literal(\"[0]\"));\n    assert(success(document));\n    const value& root = document.get_root();\n    CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n    CHECK_EQUAL(1u, root.get_length());\n\n    const value& e0 = root.get_array_element(0);\n    CHECK_EQUAL(TYPE_INTEGER, e0.get_type());\n    CHECK_EQUAL(0, e0.get_number_value());\n}\n\nABSTRACT_TEST(nested_array) {\n    const sajson::document& document = parse(literal(\"[[]]\"));\n    assert(success(document));\n    const value& root = document.get_root();\n    CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n    CHECK_EQUAL(1u, root.get_length());\n\n    const value& e1 = root.get_array_element(0);\n    CHECK_EQUAL(TYPE_ARRAY, e1.get_type());\n    CHECK_EQUAL(0u, e1.get_length());\n}\n\nABSTRACT_TEST(packed_arrays) {\n    const sajson::document& document = parse(literal(\"[0,[0,[0],0],0]\"));\n    assert(success(document));\n    const value& root = document.get_root();\n    CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n    CHECK_EQUAL(3u, root.get_length());\n\n    const value& root0 = root.get_array_element(0);\n    CHECK_EQUAL(TYPE_INTEGER, root0.get_type());\n    CHECK_EQUAL(0, root0.get_number_value());\n\n    const value& root2 = root.get_array_element(2);\n    CHECK_EQUAL(TYPE_INTEGER, root2.get_type());\n    CHECK_EQUAL(0, root2.get_number_value());\n\n    const value& root1 = root.get_array_element(1);\n    CHECK_EQUAL(TYPE_ARRAY, root1.get_type());\n    CHECK_EQUAL(3u, root1.get_length());\n\n    const value& sub0 = root1.get_array_element(0);\n    CHECK_EQUAL(TYPE_INTEGER, sub0.get_type());\n    CHECK_EQUAL(0, sub0.get_number_value());\n\n    const value& sub2 = root1.get_array_element(2);\n    CHECK_EQUAL(TYPE_INTEGER, sub2.get_type());\n    CHECK_EQUAL(0, sub2.get_number_value());\n\n    const value& sub1 = root1.get_array_element(1);\n    CHECK_EQUAL(TYPE_ARRAY, sub1.get_type());\n    CHECK_EQUAL(1u, sub1.get_length());\n\n    const value& inner = sub1.get_array_element(0);\n    CHECK_EQUAL(TYPE_INTEGER, inner.get_type());\n    CHECK_EQUAL(0, inner.get_number_value());\n}\n\nABSTRACT_TEST(deep_nesting) {\n    const sajson::document& document = parse(literal(\"[[[[]]]]\"));\n    assert(success(document));\n    const value& root = document.get_root();\n    CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n    CHECK_EQUAL(1u, root.get_length());\n\n    const value& e1 = root.get_array_element(0);\n    CHECK_EQUAL(TYPE_ARRAY, e1.get_type());\n    CHECK_EQUAL(1u, e1.get_length());\n\n    const value& e2 = e1.get_array_element(0);\n    CHECK_EQUAL(TYPE_ARRAY, e2.get_type());\n    CHECK_EQUAL(1u, e2.get_length());\n\n    const value& e3 = e2.get_array_element(0);\n    CHECK_EQUAL(TYPE_ARRAY, e3.get_type());\n    CHECK_EQUAL(0u, e3.get_length());\n}\n\nABSTRACT_TEST(more_array_integer_packing) {\n    const sajson::document& document = parse(literal(\"[[[[0]]]]\"));\n    assert(success(document));\n    const value& root = document.get_root();\n    CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n    CHECK_EQUAL(1u, root.get_length());\n\n    const value& e1 = root.get_array_element(0);\n    CHECK_EQUAL(TYPE_ARRAY, e1.get_type());\n    CHECK_EQUAL(1u, e1.get_length());\n\n    const value& e2 = e1.get_array_element(0);\n    CHECK_EQUAL(TYPE_ARRAY, e2.get_type());\n    CHECK_EQUAL(1u, e2.get_length());\n\n    const value& e3 = e2.get_array_element(0);\n    CHECK_EQUAL(TYPE_ARRAY, e3.get_type());\n    CHECK_EQUAL(1u, e3.get_length());\n\n    const value& e4 = e3.get_array_element(0);\n    CHECK_EQUAL(TYPE_INTEGER, e4.get_type());\n    CHECK_EQUAL(0, e4.get_integer_value());\n}\n\nSUITE(integers) {\n    ABSTRACT_TEST(negative_and_positive_integers) {\n        const sajson::document& document = parse(literal(\" [ 0, -1, 22] \"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(3u, root.get_length());\n\n        const value& e0 = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_INTEGER, e0.get_type());\n        CHECK_EQUAL(0, e0.get_integer_value());\n        CHECK_EQUAL(0, e0.get_number_value());\n\n        const value& e1 = root.get_array_element(1);\n        CHECK_EQUAL(TYPE_INTEGER, e1.get_type());\n        CHECK_EQUAL(-1, e1.get_integer_value());\n        CHECK_EQUAL(-1, e1.get_number_value());\n\n        const value& e2 = root.get_array_element(2);\n        CHECK_EQUAL(TYPE_INTEGER, e2.get_type());\n        CHECK_EQUAL(22, e2.get_integer_value());\n        CHECK_EQUAL(22, e2.get_number_value());\n    }\n\n    ABSTRACT_TEST(integers) {\n        const sajson::document& document\n            = parse(literal(\"[0,1,2,3,4,5,6,7,8,9,10]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(11u, root.get_length());\n\n        for (int i = 0; i < 11; ++i) {\n            const value& e = root.get_array_element(i);\n            CHECK_EQUAL(TYPE_INTEGER, e.get_type());\n            CHECK_EQUAL(i, e.get_integer_value());\n        }\n    }\n\n    ABSTRACT_TEST(integer_whitespace) {\n        const sajson::document& document = parse(literal(\" [ 0 , 0 ] \"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(2u, root.get_length());\n        const value& element = root.get_array_element(1);\n        CHECK_EQUAL(TYPE_INTEGER, element.get_type());\n        CHECK_EQUAL(0, element.get_integer_value());\n    }\n\n    ABSTRACT_TEST(leading_zeroes_disallowed) {\n        const sajson::document& document = parse(literal(\"[01]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(3u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_EXPECTED_COMMA, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(exponent_overflow) {\n        // https://github.com/chadaustin/sajson/issues/37\n        const auto& document\n            = parse(literal(\"[0e9999990066, 1e9999990066, 1e-9999990066]\"));\n        CHECK_EQUAL(true, document.is_valid());\n        const auto& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(3u, root.get_length());\n\n        const value& zero = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_DOUBLE, zero.get_type());\n        CHECK_EQUAL(0.0, zero.get_double_value());\n\n        const value& inf = root.get_array_element(1);\n        CHECK_EQUAL(TYPE_DOUBLE, inf.get_type());\n        CHECK_EQUAL(\n            std::numeric_limits<double>::infinity(), inf.get_double_value());\n\n        const value& zero2 = root.get_array_element(2);\n        CHECK_EQUAL(TYPE_DOUBLE, zero2.get_type());\n        CHECK_EQUAL(0.0, zero2.get_double_value());\n    }\n\n    ABSTRACT_TEST(integer_endpoints) {\n        const auto& document\n            = parse(literal(\"[-2147483648, 2147483647, \"\n                            \" -2147483649, 2147483648]\"));\n        assert(success(document));\n\n        const value& root = document.get_root();\n        const value& min32 = root.get_array_element(0);\n        const value& max32 = root.get_array_element(1);\n        const value& below_min32 = root.get_array_element(2);\n        const value& above_max32 = root.get_array_element(3);\n\n        CHECK_EQUAL(TYPE_INTEGER, min32.get_type());\n        CHECK_EQUAL(INT_MIN, min32.get_integer_value());\n        CHECK_EQUAL(TYPE_INTEGER, max32.get_type());\n        CHECK_EQUAL(INT_MAX, max32.get_integer_value());\n        CHECK_EQUAL(TYPE_DOUBLE, below_min32.get_type());\n        CHECK_EQUAL(double(INT_MIN)-1., below_min32.get_double_value());\n        CHECK_EQUAL(TYPE_DOUBLE, above_max32.get_type());\n        CHECK_EQUAL(double(INT_MAX)+1., above_max32.get_double_value());\n    }\n}\n\nABSTRACT_TEST(unit_types) {\n    const sajson::document& document\n        = parse(literal(\"[ true , false , null ]\"));\n    assert(success(document));\n    const value& root = document.get_root();\n    CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n    CHECK_EQUAL(3u, root.get_length());\n\n    const value& e0 = root.get_array_element(0);\n    CHECK_EQUAL(TYPE_TRUE, e0.get_type());\n\n    const value& e1 = root.get_array_element(1);\n    CHECK_EQUAL(TYPE_FALSE, e1.get_type());\n\n    const value& e2 = root.get_array_element(2);\n    CHECK_EQUAL(TYPE_NULL, e2.get_type());\n}\n\nSUITE(doubles) {\n    ABSTRACT_TEST(doubles) {\n        const sajson::document& document = parse(literal(\"[-0,-1,-34.25]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(3u, root.get_length());\n\n        const value& e0 = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_INTEGER, e0.get_type());\n        CHECK_EQUAL(-0, e0.get_integer_value());\n\n        const value& e1 = root.get_array_element(1);\n        CHECK_EQUAL(TYPE_INTEGER, e1.get_type());\n        CHECK_EQUAL(-1, e1.get_integer_value());\n\n        const value& e2 = root.get_array_element(2);\n        CHECK_EQUAL(TYPE_DOUBLE, e2.get_type());\n        CHECK_EQUAL(-34.25, e2.get_double_value());\n    }\n\n    ABSTRACT_TEST(large_number) {\n        const auto& document = parse(literal(\"[1496756396000]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(1u, root.get_length());\n\n        const value& element = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_DOUBLE, element.get_type());\n        CHECK_EQUAL(1496756396000.0, element.get_double_value());\n\n        int64_t out;\n        CHECK_EQUAL(true, element.get_int53_value(&out));\n        CHECK_EQUAL(1496756396000LL, out);\n    }\n\n    ABSTRACT_TEST(exponents) {\n        const sajson::document& document\n            = parse(literal(\"[2e+3,0.5E-5,10E+22]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(3u, root.get_length());\n\n        const value& e0 = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_DOUBLE, e0.get_type());\n        CHECK_EQUAL(2000, e0.get_double_value());\n\n        const value& e1 = root.get_array_element(1);\n        CHECK_EQUAL(TYPE_DOUBLE, e1.get_type());\n        CHECK_CLOSE(0.000005, e1.get_double_value(), 1e-20);\n\n        const value& e2 = root.get_array_element(2);\n        CHECK_EQUAL(TYPE_DOUBLE, e2.get_type());\n        CHECK_EQUAL(10e22, e2.get_double_value());\n    }\n\n    ABSTRACT_TEST(long_no_exponent) {\n        const sajson::document& document\n            = parse(literal(\"[9999999999,99999999999]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(2u, root.get_length());\n\n        const value& e0 = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_DOUBLE, e0.get_type());\n        CHECK_EQUAL(9999999999.0, e0.get_double_value());\n\n        const value& e1 = root.get_array_element(1);\n        CHECK_EQUAL(TYPE_DOUBLE, e1.get_type());\n        CHECK_EQUAL(99999999999.0, e1.get_double_value());\n    }\n\n    ABSTRACT_TEST(exponent_offset) {\n        const sajson::document& document = parse(literal(\"[0.005e3]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(1u, root.get_length());\n\n        const value& e0 = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_DOUBLE, e0.get_type());\n        CHECK_EQUAL(5.0, e0.get_double_value());\n    }\n\n    ABSTRACT_TEST(missing_exponent) {\n        const sajson::document& document = parse(literal(\"[0e]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(4u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_MISSING_EXPONENT,\n            document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(missing_exponent_plus) {\n        const sajson::document& document = parse(literal(\"[0e+]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(5u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_MISSING_EXPONENT,\n            document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(invalid_2_byte_utf8) {\n        const auto& document = parse(literal(\"[\\\"\\xdf\\x7f\\\"]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(4u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_INVALID_UTF8, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(invalid_3_byte_utf8) {\n        const auto& document = parse(literal(\"[\\\"\\xef\\x8f\\x7f\\\"]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(5u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_INVALID_UTF8, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(invalid_4_byte_utf8) {\n        const auto& document = parse(literal(\"[\\\"\\xf7\\x8f\\x8f\\x7f\\\"]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(6u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_INVALID_UTF8, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(invalid_utf8_prefix) {\n        const auto& document = parse(literal(\"[\\\"\\xff\\\"]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(3u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_INVALID_UTF8, document._internal_get_error_code());\n    }\n}\n\nSUITE(int53) {\n    ABSTRACT_TEST(int32) {\n        const auto& document = parse(literal(\"[-54]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        const value& element = root.get_array_element(0);\n\n        int64_t out;\n        CHECK_EQUAL(true, element.get_int53_value(&out));\n        CHECK_EQUAL(-54, out);\n    }\n\n    ABSTRACT_TEST(integer_double) {\n        const auto& document = parse(literal(\"[10.0]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        const value& element = root.get_array_element(0);\n\n        int64_t out;\n        CHECK_EQUAL(true, element.get_int53_value(&out));\n        CHECK_EQUAL(10, out);\n    }\n\n    ABSTRACT_TEST(non_integer_double) {\n        const auto& document = parse(literal(\"[10.5]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        const value& element = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_DOUBLE, element.get_type());\n        CHECK_EQUAL(10.5, element.get_double_value());\n\n        int64_t out;\n        CHECK_EQUAL(false, element.get_int53_value(&out));\n    }\n\n    ABSTRACT_TEST(endpoints) {\n        // TODO: What should we do about (1<<53)+1?\n        // When parsed into a double it loses that last bit of precision, so\n        // sajson doesn't distinguish between 9007199254740992 and\n        // 9007199254740993. So for now ignore this boundary condition and unit\n        // test one extra value away.\n        const auto& document\n            = parse(literal(\"[-9007199254740992, 9007199254740992, \"\n                            \"-9007199254740994, 9007199254740994]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        const value& e0 = root.get_array_element(0);\n        const value& e1 = root.get_array_element(1);\n        const value& e2 = root.get_array_element(2);\n        const value& e3 = root.get_array_element(3);\n\n        int64_t out;\n\n        CHECK_EQUAL(true, e0.get_int53_value(&out));\n        CHECK_EQUAL(-9007199254740992LL, out);\n\n        CHECK_EQUAL(true, e1.get_int53_value(&out));\n        CHECK_EQUAL(9007199254740992LL, out);\n\n        CHECK_EQUAL(false, e2.get_int53_value(&out));\n        CHECK_EQUAL(false, e3.get_int53_value(&out));\n    }\n}\n\nSUITE(commas) {\n    ABSTRACT_TEST(leading_comma_array) {\n        const sajson::document& document = parse(literal(\"[,1]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(2u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_UNEXPECTED_COMMA,\n            document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(leading_comma_object) {\n        const sajson::document& document = parse(literal(\"{,}\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(2u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_MISSING_OBJECT_KEY,\n            document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(trailing_comma_array) {\n        const sajson::document& document = parse(literal(\"[1,2,]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(6u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_EXPECTED_VALUE, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(trailing_comma_object) {\n        const sajson::document& document = parse(literal(\"{\\\"key\\\": 0,}\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(11u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_MISSING_OBJECT_KEY,\n            document._internal_get_error_code());\n    }\n}\n\nSUITE(strings) {\n    ABSTRACT_TEST(strings) {\n        const sajson::document& document = parse(literal(\"[\\\"\\\", \\\"foobar\\\"]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(2u, root.get_length());\n\n        const value& e0 = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_STRING, e0.get_type());\n        CHECK_EQUAL(0u, e0.get_string_length());\n        CHECK_EQUAL(\"\", e0.as_string());\n        CHECK_EQUAL(\"\", e0.as_cstring());\n\n        const value& e1 = root.get_array_element(1);\n        CHECK_EQUAL(TYPE_STRING, e1.get_type());\n        CHECK_EQUAL(6u, e1.get_string_length());\n        CHECK_EQUAL(\"foobar\", e1.as_string());\n        CHECK_EQUAL(\"foobar\", e1.as_cstring());\n    }\n\n    ABSTRACT_TEST(common_escapes) {\n        // \\\"\\\\\\/\\b\\f\\n\\r\\t\n        const sajson::document& document\n            = parse(literal(\"[\\\"\\\\\\\"\\\\\\\\\\\\/\\\\b\\\\f\\\\n\\\\r\\\\t\\\"]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(1u, root.get_length());\n\n        const value& e0 = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_STRING, e0.get_type());\n        CHECK_EQUAL(8u, e0.get_string_length());\n        CHECK_EQUAL(\"\\\"\\\\/\\b\\f\\n\\r\\t\", e0.as_string());\n        CHECK_EQUAL(\"\\\"\\\\/\\b\\f\\n\\r\\t\", e0.as_cstring());\n    }\n\n    ABSTRACT_TEST(escape_midstring) {\n        const sajson::document& document = parse(literal(\"[\\\"foo\\\\tbar\\\"]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(1u, root.get_length());\n\n        const value& e0 = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_STRING, e0.get_type());\n        CHECK_EQUAL(7u, e0.get_string_length());\n        CHECK_EQUAL(\"foo\\tbar\", e0.as_string());\n        CHECK_EQUAL(\"foo\\tbar\", e0.as_cstring());\n    }\n\n    ABSTRACT_TEST(unfinished_string) {\n        const sajson::document& document = parse(literal(\"[\\\"\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        // CHECK_EQUAL(3, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_UNEXPECTED_END, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(unfinished_escape) {\n        const sajson::document& document = parse(literal(\"[\\\"\\\\\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        // CHECK_EQUAL(3, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_UNEXPECTED_END, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(unprintables_are_not_valid_in_strings) {\n        const sajson::document& document = parse(literal(\"[\\\"\\x19\\\"]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        // CHECK_EQUAL(3, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_ILLEGAL_CODEPOINT,\n            document._internal_get_error_code());\n        CHECK_EQUAL(25, document._internal_get_error_argument());\n        CHECK_EQUAL(\n            \"illegal unprintable codepoint in string: 25\",\n            document.get_error_message_as_string());\n    }\n\n    ABSTRACT_TEST(unprintables_are_not_valid_in_strings_after_escapes) {\n        const sajson::document& document = parse(literal(\"[\\\"\\\\n\\x01\\\"]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(2u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_ILLEGAL_CODEPOINT,\n            document._internal_get_error_code());\n        CHECK_EQUAL(1, document._internal_get_error_argument());\n        CHECK_EQUAL(\n            \"illegal unprintable codepoint in string: 1\",\n            document.get_error_message_as_string());\n    }\n\n    ABSTRACT_TEST(utf16_surrogate_pair) {\n        const sajson::document& document\n            = parse(literal(\"[\\\"\\\\ud950\\\\uDf21\\\"]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(1u, root.get_length());\n\n        const value& e0 = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_STRING, e0.get_type());\n        CHECK_EQUAL(4u, e0.get_string_length());\n        CHECK_EQUAL(\"\\xf1\\xa4\\x8c\\xa1\", e0.as_string());\n        CHECK_EQUAL(\"\\xf1\\xa4\\x8c\\xa1\", e0.as_cstring());\n    }\n\n    ABSTRACT_TEST(utf8_shifting) {\n        const auto& document\n            = parse(literal(\"[\\\"\\\\n\\xc2\\x80\\xe0\\xa0\\x80\\xf0\\x90\\x80\\x80\\\"]\"));\n        assert(success(document));\n\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(1u, root.get_length());\n\n        const value& e0 = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_STRING, e0.get_type());\n        CHECK_EQUAL(10u, e0.get_string_length());\n        CHECK_EQUAL(\"\\n\\xc2\\x80\\xe0\\xa0\\x80\\xf0\\x90\\x80\\x80\", e0.as_string());\n        CHECK_EQUAL(\"\\n\\xc2\\x80\\xe0\\xa0\\x80\\xf0\\x90\\x80\\x80\", e0.as_cstring());\n    }\n}\n\nSUITE(objects) {\n    ABSTRACT_TEST(empty_object) {\n        const sajson::document& document = parse(literal(\"{}\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_OBJECT, root.get_type());\n        CHECK_EQUAL(0u, root.get_length());\n    }\n\n    ABSTRACT_TEST(nested_object) {\n        const sajson::document& document\n            = parse(literal(\"{\\\"a\\\":{\\\"b\\\":{}}} \"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_OBJECT, root.get_type());\n        CHECK_EQUAL(1u, root.get_length());\n\n        const string& key = root.get_object_key(0);\n        CHECK_EQUAL(\"a\", key.data());\n        CHECK_EQUAL(\"a\", key.as_string());\n\n        const value& element = root.get_object_value(0);\n        CHECK_EQUAL(TYPE_OBJECT, element.get_type());\n        CHECK_EQUAL(\"b\", element.get_object_key(0).data());\n        CHECK_EQUAL(\"b\", element.get_object_key(0).as_string());\n\n        const value& inner = element.get_object_value(0);\n        CHECK_EQUAL(TYPE_OBJECT, inner.get_type());\n        CHECK_EQUAL(0u, inner.get_length());\n    }\n\n    ABSTRACT_TEST(object_whitespace) {\n        const sajson::document& document = parse(literal(\" { \\\"a\\\" : 0 } \"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_OBJECT, root.get_type());\n        CHECK_EQUAL(1u, root.get_length());\n\n        const string& key = root.get_object_key(0);\n        CHECK_EQUAL(\"a\", key.data());\n        CHECK_EQUAL(\"a\", key.as_string());\n\n        const value& element = root.get_object_value(0);\n        CHECK_EQUAL(TYPE_INTEGER, element.get_type());\n        CHECK_EQUAL(0, element.get_integer_value());\n    }\n\n    ABSTRACT_TEST(search_for_keys) {\n        const sajson::document& document\n            = parse(literal(\" { \\\"b\\\" : 1 , \\\"aa\\\" : 0 } \"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_OBJECT, root.get_type());\n        CHECK_EQUAL(2u, root.get_length());\n\n        const size_t index_b = root.find_object_key(literal(\"b\"));\n        CHECK_EQUAL(0U, index_b);\n\n        const size_t index_aa = root.find_object_key(literal(\"aa\"));\n        CHECK_EQUAL(1U, index_aa);\n\n        const size_t index_c = root.find_object_key(literal(\"c\"));\n        CHECK_EQUAL(2U, index_c);\n\n        const size_t index_ccc = root.find_object_key(literal(\"ccc\"));\n        CHECK_EQUAL(2U, index_ccc);\n    }\n\n    ABSTRACT_TEST(get_value) {\n        const sajson::document& document\n            = parse(literal(\" { \\\"b\\\" : 123 , \\\"aa\\\" : 456 } \"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_OBJECT, root.get_type());\n        CHECK_EQUAL(2u, root.get_length());\n\n        const value& vb = root.get_value_of_key(literal(\"b\"));\n        CHECK_EQUAL(TYPE_INTEGER, vb.get_type());\n\n        const value& vaa = root.get_value_of_key(literal(\"aa\"));\n        CHECK_EQUAL(TYPE_INTEGER, vaa.get_type());\n\n        int ib = root.get_value_of_key(literal(\"b\")).get_integer_value();\n        CHECK_EQUAL(123, ib);\n\n        int iaa = root.get_value_of_key(literal(\"aa\")).get_integer_value();\n        CHECK_EQUAL(456, iaa);\n    }\n\n    ABSTRACT_TEST(get_value_large_object) {\n        unsigned values[1024];\n        for (unsigned i = 0; i < 1024; ++i) {\n            values[i] = i;\n        }\n        std::random_device rd;\n        std::mt19937 g(rd());\n        std::shuffle(std::begin(values), std::end(values), g);\n\n        bool comma = false;\n        std::string contents = \"{\";\n        for (unsigned v : values) {\n            contents += (comma ? \",\\\"\" : \"\\\"\") + std::to_string(v)\n                + \"\\\":\" + std::to_string(v);\n            comma = true;\n        }\n        contents += \"}\";\n        const sajson::document& document\n            = parse(string(contents.data(), contents.size()));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_OBJECT, root.get_type());\n        CHECK_EQUAL(1024u, root.get_length());\n\n        const value& v56 = root.get_value_of_key(literal(\"56\"));\n        CHECK_EQUAL(TYPE_INTEGER, v56.get_type());\n        CHECK_EQUAL(56, v56.get_integer_value());\n\n        const value& vnone = root.get_value_of_key(literal(\"5.0\"));\n        CHECK_EQUAL(TYPE_NULL, vnone.get_type());\n    }\n\n    ABSTRACT_TEST(get_missing_value_returns_null) {\n        const sajson::document& document = parse(literal(\"{\\\"a\\\": 123}\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_OBJECT, root.get_type());\n        CHECK_EQUAL(1u, root.get_length());\n\n        const value& vb = root.get_value_of_key(literal(\"b\"));\n        CHECK_EQUAL(TYPE_NULL, vb.get_type());\n    }\n\n    ABSTRACT_TEST(binary_search_handles_prefix_keys) {\n        const sajson::document& document\n            = parse(literal(\" { \\\"prefix_key\\\" : 0 } \"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_OBJECT, root.get_type());\n        CHECK_EQUAL(1u, root.get_length());\n\n        const size_t index_prefix = root.find_object_key(literal(\"prefix\"));\n        CHECK_EQUAL(1U, index_prefix);\n    }\n}\n\nSUITE(errors) {\n    ABSTRACT_TEST(error_extension) {\n        using namespace sajson;\n        using namespace sajson::internal;\n\n        CHECK_EQUAL(get_error_text(ERROR_NO_ERROR), \"no error\");\n        CHECK_EQUAL(get_error_text(ERROR_OUT_OF_MEMORY), \"out of memory\");\n        CHECK_EQUAL(\n            get_error_text(ERROR_UNEXPECTED_END), \"unexpected end of input\");\n        CHECK_EQUAL(\n            get_error_text(ERROR_MISSING_ROOT_ELEMENT), \"missing root element\");\n        CHECK_EQUAL(\n            get_error_text(ERROR_BAD_ROOT),\n            \"document root must be object or array\");\n        CHECK_EQUAL(get_error_text(ERROR_EXPECTED_COMMA), \"expected ,\");\n        CHECK_EQUAL(\n            get_error_text(ERROR_MISSING_OBJECT_KEY), \"missing object key\");\n        CHECK_EQUAL(get_error_text(ERROR_EXPECTED_COLON), \"expected :\");\n        CHECK_EQUAL(\n            get_error_text(ERROR_EXPECTED_END_OF_INPUT),\n            \"expected end of input\");\n        CHECK_EQUAL(get_error_text(ERROR_UNEXPECTED_COMMA), \"unexpected comma\");\n        CHECK_EQUAL(get_error_text(ERROR_EXPECTED_VALUE), \"expected value\");\n        CHECK_EQUAL(get_error_text(ERROR_EXPECTED_NULL), \"expected 'null'\");\n        CHECK_EQUAL(get_error_text(ERROR_EXPECTED_FALSE), \"expected 'false'\");\n        CHECK_EQUAL(get_error_text(ERROR_EXPECTED_TRUE), \"expected 'true'\");\n        CHECK_EQUAL(get_error_text(ERROR_MISSING_EXPONENT), \"missing exponent\");\n        CHECK_EQUAL(\n            get_error_text(ERROR_ILLEGAL_CODEPOINT),\n            \"illegal unprintable codepoint in string\");\n        CHECK_EQUAL(\n            get_error_text(ERROR_INVALID_UNICODE_ESCAPE),\n            \"invalid character in unicode escape\");\n        CHECK_EQUAL(\n            get_error_text(ERROR_UNEXPECTED_END_OF_UTF16),\n            \"unexpected end of input during UTF-16 surrogate pair\");\n        CHECK_EQUAL(get_error_text(ERROR_EXPECTED_U), \"expected \\\\u\");\n        CHECK_EQUAL(\n            get_error_text(ERROR_INVALID_UTF16_TRAIL_SURROGATE),\n            \"invalid UTF-16 trail surrogate\");\n        CHECK_EQUAL(get_error_text(ERROR_UNKNOWN_ESCAPE), \"unknown escape\");\n        CHECK_EQUAL(get_error_text(ERROR_INVALID_UTF8), \"invalid UTF-8\");\n    }\n\n    ABSTRACT_TEST(empty_file_is_invalid) {\n        const sajson::document& document = parse(literal(\"\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(1u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_MISSING_ROOT_ELEMENT,\n            document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(two_roots_are_invalid) {\n        const sajson::document& document = parse(literal(\"[][]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        // CHECK_EQUAL(3, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_EXPECTED_END_OF_INPUT,\n            document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(root_must_be_object_or_array) {\n        const sajson::document& document = parse(literal(\"0\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(1u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_BAD_ROOT, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(incomplete_object_key) {\n        const sajson::document& document = parse(literal(\"{\\\"\\\\:0}\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(4u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_UNKNOWN_ESCAPE, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(commas_are_necessary_between_elements) {\n        const sajson::document& document = parse(literal(\"[0 0]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        // CHECK_EQUAL(3, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_EXPECTED_COMMA, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(keys_must_be_strings) {\n        const sajson::document& document = parse(literal(\"{0:0}\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(2u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_MISSING_OBJECT_KEY,\n            document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(objects_must_have_keys) {\n        const sajson::document& document = parse(literal(\"{\\\"0\\\"}\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(5u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_EXPECTED_COLON, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(too_many_commas) {\n        const sajson::document& document = parse(literal(\"[1,,2]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(4u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_UNEXPECTED_COMMA,\n            document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(object_missing_value) {\n        const sajson::document& document = parse(literal(\"{\\\"x\\\":}\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(6u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_EXPECTED_VALUE, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(invalid_true_literal) {\n        const sajson::document& document = parse(literal(\"[truf\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        // CHECK_EQUAL(3, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_EXPECTED_TRUE, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(incomplete_true_literal) {\n        const sajson::document& document = parse(literal(\"[tru\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        // CHECK_EQUAL(3, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_UNEXPECTED_END, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(must_close_array_with_square_bracket) {\n        const sajson::document& document = parse(literal(\"[}\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        // CHECK_EQUAL(3, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_EXPECTED_VALUE, document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(must_close_object_with_curly_brace) {\n        const sajson::document& document = parse(literal(\"{]\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(2u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_MISSING_OBJECT_KEY,\n            document._internal_get_error_code());\n    }\n\n    ABSTRACT_TEST(incomplete_array_with_vero) {\n        const sajson::document& document = parse(literal(\"[0\"));\n        CHECK_EQUAL(false, document.is_valid());\n        CHECK_EQUAL(1u, document.get_error_line());\n        CHECK_EQUAL(3u, document.get_error_column());\n        CHECK_EQUAL(\n            sajson::ERROR_UNEXPECTED_END, document._internal_get_error_code());\n    }\n\n#define CHECK_PARSE_ERROR(text, code)                                   \\\n    do {                                                                \\\n        const sajson::document& document = parse(literal(text));        \\\n        CHECK_EQUAL(false, document.is_valid());                        \\\n        CHECK_EQUAL(sajson::code, document._internal_get_error_code()); \\\n    } while (0)\n\n    ABSTRACT_TEST(eof_after_number) {\n        CHECK_PARSE_ERROR(\"[-\", ERROR_UNEXPECTED_END);\n        CHECK_PARSE_ERROR(\"[-12\", ERROR_UNEXPECTED_END);\n        CHECK_PARSE_ERROR(\"[-12.\", ERROR_UNEXPECTED_END);\n        CHECK_PARSE_ERROR(\"[-12.3\", ERROR_UNEXPECTED_END);\n        CHECK_PARSE_ERROR(\"[-12e\", ERROR_UNEXPECTED_END);\n        CHECK_PARSE_ERROR(\"[-12e-\", ERROR_UNEXPECTED_END);\n        CHECK_PARSE_ERROR(\"[-12e+\", ERROR_UNEXPECTED_END);\n        CHECK_PARSE_ERROR(\"[-12e3\", ERROR_UNEXPECTED_END);\n    }\n\n    ABSTRACT_TEST(invalid_number) {\n        CHECK_PARSE_ERROR(\"[-]\", ERROR_INVALID_NUMBER);\n        CHECK_PARSE_ERROR(\"[-12.]\", ERROR_INVALID_NUMBER);\n        CHECK_PARSE_ERROR(\"[-12e]\", ERROR_MISSING_EXPONENT);\n        CHECK_PARSE_ERROR(\"[-12e-]\", ERROR_MISSING_EXPONENT);\n        CHECK_PARSE_ERROR(\"[-12e+]\", ERROR_MISSING_EXPONENT);\n\n        // from https://github.com/chadaustin/sajson/issues/31\n        CHECK_PARSE_ERROR(\"[-]\", ERROR_INVALID_NUMBER);\n        CHECK_PARSE_ERROR(\"[-2.]\", ERROR_INVALID_NUMBER);\n        CHECK_PARSE_ERROR(\"[0.e1]\", ERROR_INVALID_NUMBER);\n        CHECK_PARSE_ERROR(\"[2.e+3]\", ERROR_INVALID_NUMBER);\n        CHECK_PARSE_ERROR(\"[2.e-3]\", ERROR_INVALID_NUMBER);\n        CHECK_PARSE_ERROR(\"[2.e3]\", ERROR_INVALID_NUMBER);\n        CHECK_PARSE_ERROR(\"[-.123]\", ERROR_INVALID_NUMBER);\n        CHECK_PARSE_ERROR(\"[1.]\", ERROR_INVALID_NUMBER);\n    }\n}\n\nABSTRACT_TEST(object_array_with_integers) {\n    const sajson::document& document\n        = parse(literal(\"[{ \\\"a\\\": 123456 }, { \\\"a\\\": 7890 }]\"));\n    assert(success(document));\n    const value& root = document.get_root();\n    CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n    CHECK_EQUAL(2u, root.get_length());\n\n    const value& e1 = root.get_array_element(0);\n    CHECK_EQUAL(TYPE_OBJECT, e1.get_type());\n    size_t index_a = e1.find_object_key(literal(\"a\"));\n    const value& node = e1.get_object_value(index_a);\n    CHECK_EQUAL(TYPE_INTEGER, node.get_type());\n    CHECK_EQUAL(123456U, node.get_number_value());\n    const value& e2 = root.get_array_element(1);\n    CHECK_EQUAL(TYPE_OBJECT, e2.get_type());\n    index_a = e2.find_object_key(literal(\"a\"));\n    const value& node2 = e2.get_object_value(index_a);\n    CHECK_EQUAL(7890U, node2.get_number_value());\n}\n\nSUITE(api) {\n    TEST(mutable_string_view_assignment) {\n        sajson::mutable_string_view one(sajson::literal(\"hello\"));\n        sajson::mutable_string_view two;\n        two = one;\n\n        CHECK_EQUAL(5u, one.length());\n        CHECK_EQUAL(5u, two.length());\n    }\n\n    TEST(mutable_string_view_self_assignment) {\n        sajson::mutable_string_view one(sajson::literal(\"hello\"));\n        one = self_ref(one);\n        CHECK_EQUAL(5u, one.length());\n    }\n\n    static sajson::mutable_string_view&& my_move(\n        sajson::mutable_string_view & that) {\n        return std::move(that);\n    }\n\n    TEST(mutable_string_view_self_move_assignment) {\n        sajson::mutable_string_view one(sajson::literal(\"hello\"));\n        one = my_move(one);\n        CHECK_EQUAL(5u, one.length());\n    }\n}\n\nSUITE(allocator_tests) {\n    TEST(single_allocation_into_existing_memory) {\n        size_t buffer[2];\n        const sajson::document& document\n            = sajson::parse(sajson::single_allocation(buffer), literal(\"[]\"));\n        assert(success(document));\n        const value& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(0u, root.get_length());\n        CHECK_EQUAL(0u, buffer[1]);\n    }\n\n    TEST(bounded_allocation_size_just_right) {\n        // This is awkward: the bounded allocator needs more memory in the worst\n        // case than the single-allocation allocator.  That's because sajson's\n        // AST construction algorithm briefly results in overlapping stack\n        // and AST memory ranges, but it works because install_array and\n        // install_object are careful to shift back-to-front.  However,\n        // the bounded allocator disallows any overlapping ranges.\n        size_t buffer[5];\n        const auto& document = sajson::parse(\n            sajson::bounded_allocation(buffer), literal(\"[[]]\"));\n        assert(success(document));\n        const auto& root = document.get_root();\n        CHECK_EQUAL(TYPE_ARRAY, root.get_type());\n        CHECK_EQUAL(1u, root.get_length());\n        const auto& element = root.get_array_element(0);\n        CHECK_EQUAL(TYPE_ARRAY, element.get_type());\n        CHECK_EQUAL(0u, element.get_length());\n    }\n\n    TEST(bounded_allocation_size_too_small) {\n        // This is awkward: the bounded allocator needs more memory in the worst\n        // case than the single-allocation allocator.  That's because sajson's\n        // AST construction algorithm briefly results in overlapping stack\n        // and AST memory ranges, but it works because install_array and\n        // install_object are careful to shift back-to-front.  However,\n        // the bounded allocator disallows any overlapping ranges.\n        size_t buffer[4];\n        const auto& document = sajson::parse(\n            sajson::bounded_allocation(buffer), literal(\"[[]]\"));\n        CHECK(!document.is_valid());\n        CHECK_EQUAL(\n            sajson::ERROR_OUT_OF_MEMORY, document._internal_get_error_code());\n    }\n}\n\nTEST(zero_initialized_document_is_invalid) {\n    auto d = document{};\n    CHECK(!d.is_valid());\n    CHECK_EQUAL(0u, d.get_error_line());\n    CHECK_EQUAL(0u, d.get_error_column());\n    CHECK_EQUAL(\"uninitialized document\", d.get_error_message_as_string());\n}\n\nTEST(zero_initialized_value_is_null) {\n    auto v = value{};\n    CHECK_EQUAL(TYPE_NULL, v.get_type());\n}\n\nTEST(value_is_copyable) {\n    auto v = value{};\n    auto u = v;\n    CHECK_EQUAL(TYPE_NULL, u.get_type());\n}\n\nint main() { return UnitTest::RunAllTests(); }\n"
  },
  {
    "path": "tests/test_no_stl.cpp",
    "content": "#define SAJSON_NO_STD_STRING\n#include <sajson.h>\n"
  },
  {
    "path": "third-party/UnitTest++/COPYING",
    "content": "Copyright (c) 2006 Noel Llopis and Charles Nicholson\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n\"Software\"), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included\r\nin all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n"
  },
  {
    "path": "third-party/UnitTest++/Makefile",
    "content": "CXX = g++\r\nCXXFLAGS ?= -g -Wall -W -ansi # -pedantic\r\nLDFLAGS ?= \r\nSED = sed\r\nMV = mv\r\nRM = rm\r\n\r\n.SUFFIXES: .o .cpp\r\n\r\nlib = libUnitTest++.a\r\ntest = TestUnitTest++\r\n\r\nsrc = src/AssertException.cpp \\\r\n\tsrc/Test.cpp \\\r\n\tsrc/Checks.cpp \\\r\n\tsrc/TestRunner.cpp \\\r\n\tsrc/TestResults.cpp \\\r\n\tsrc/TestReporter.cpp \\\r\n\tsrc/TestReporterStdout.cpp \\\r\n\tsrc/ReportAssert.cpp \\\r\n\tsrc/TestList.cpp \\\r\n\tsrc/TimeConstraint.cpp \\\r\n\tsrc/TestDetails.cpp \\\r\n\tsrc/MemoryOutStream.cpp \\\r\n\tsrc/DeferredTestReporter.cpp \\\r\n\tsrc/DeferredTestResult.cpp \\\r\n\tsrc/XmlTestReporter.cpp \\\r\n\tsrc/CurrentTest.cpp\r\n\t\r\nifeq ($(MSYSTEM), MINGW32)\r\n  src += src/Win32/TimeHelpers.cpp\r\nelse\r\n  src += src/Posix/SignalTranslator.cpp \\\r\n\tsrc/Posix/TimeHelpers.cpp\r\nendif\r\n\r\ntest_src = src/tests/Main.cpp \\\r\n\tsrc/tests/TestAssertHandler.cpp \\\r\n\tsrc/tests/TestChecks.cpp \\\r\n\tsrc/tests/TestUnitTest++.cpp \\\r\n\tsrc/tests/TestTest.cpp \\\r\n\tsrc/tests/TestTestResults.cpp \\\r\n\tsrc/tests/TestTestRunner.cpp \\\r\n\tsrc/tests/TestCheckMacros.cpp \\\r\n\tsrc/tests/TestTestList.cpp \\\r\n\tsrc/tests/TestTestMacros.cpp \\\r\n\tsrc/tests/TestTimeConstraint.cpp \\\r\n\tsrc/tests/TestTimeConstraintMacro.cpp \\\r\n\tsrc/tests/TestMemoryOutStream.cpp \\\r\n\tsrc/tests/TestDeferredTestReporter.cpp \\\r\n\tsrc/tests/TestXmlTestReporter.cpp \\\r\n\tsrc/tests/TestCurrentTest.cpp\r\n\r\nobjects = $(patsubst %.cpp, %.o, $(src))\r\ntest_objects = $(patsubst %.cpp, %.o, $(test_src))\r\ndependencies = $(subst .o,.d,$(objects))\r\ntest_dependencies = $(subst .o,.d,$(test_objects))\r\n\r\ndefine make-depend\r\n  $(CXX) $(CXXFLAGS) -M $1 | \\\r\n  $(SED) -e 's,\\($(notdir $2)\\) *:,$(dir $2)\\1: ,' > $3.tmp\r\n  $(SED) -e 's/#.*//' \\\r\n      -e 's/^[^:]*: *//' \\\r\n      -e 's/ *\\\\$$//' \\\r\n      -e '/^$$/ d' \\\r\n      -e 's/$$/ :/' $3.tmp >> $3.tmp\r\n  $(MV) $3.tmp $3\r\nendef\r\n\r\n\r\nall: $(test)\r\n\r\n\r\n$(lib): $(objects) \r\n\t@echo Creating $(lib) library...\r\n\t@ar cr $(lib) $(objects)\r\n    \r\n$(test): $(lib) $(test_objects)\r\n\t@echo Linking $(test)...\r\n\t@$(CXX) $(LDFLAGS) -o $(test) $(test_objects) $(lib)\r\n\t@echo Running unit tests...\r\n\t@./$(test)\r\n\r\nclean:\r\n\t-@$(RM) $(objects) $(test_objects) $(dependencies) $(test_dependencies) $(test) $(lib) 2> /dev/null\r\n\r\n%.o : %.cpp\r\n\t@echo $<\r\n\t@$(call make-depend,$<,$@,$(subst .o,.d,$@))\r\n\t@$(CXX) $(CXXFLAGS) -c $< -o $(patsubst %.cpp, %.o, $<)\r\n\r\n\r\nifneq \"$(MAKECMDGOALS)\" \"clean\"\r\n-include $(dependencies)\r\n-include $(test_dependencies)\r\nendif\r\n"
  },
  {
    "path": "third-party/UnitTest++/README",
    "content": "UnitTest++ README\r\nVersion: v1.4\r\nLast update: 2008-10-30\r\n\r\nUnitTest++ is free software. You may copy, distribute, and modify it under\r\nthe terms of the License contained in the file COPYING distributed\r\nwith this package. This license is the same as the MIT/X Consortium\r\nlicense.\r\n\r\nSee src/tests/TestUnitTest++.cpp for usage.\r\n\r\nAuthors:\r\nNoel Llopis (llopis@convexhull.com) \r\nCharles Nicholson (charles.nicholson@gmail.com)\r\n\r\nContributors:\r\nJim Tilander\r\nKim Grasman\r\nJonathan Jansson\r\nDirck Blaskey\r\nRory Driscoll\r\nDan Lind\r\nMatt Kimmel -- Submitted with permission from Blue Fang Games\r\nAnthony Moralez\r\nJeff Dixon\r\nRandy Coulman\r\nLieven van der Heide\r\n\r\nRelease notes:\r\n--------------\r\nVersion 1.4 (2008-10-30)\r\n- CHECK macros work at arbitrary stack depth from inside TESTs.\r\n- Remove obsolete TEST_UTILITY macros\r\n- Predicated test execution (via TestRunner::RunTestsIf)\r\n- Better exception handling for fixture ctors/dtors.\r\n- VC6/7/8/9 support\r\n\r\nVersion 1.3 (2007-4-22)\r\n- Removed dynamic memory allocations (other than streams)\r\n- MinGW support\r\n- Consistent (native) line endings\r\n- Minor bug fixing\r\n\r\nVersion 1.2 (2006-10-29)\r\n- First pass at documentation.\r\n- More detailed error crash catching in fixtures.\r\n- Standard streams used for printing objects under check. This should allow the\r\n  use of standard class types such as std::string or other custom classes with\r\n  stream operators to ostream.\r\n- Standard streams can be optionally compiled off by defining UNITTEST_USE_CUSTOM_STREAMS\r\n  in Config.h\r\n- Added named test suites\r\n- Added CHECK_ARRAY2D_CLOSE \r\n- Posix library name is libUnitTest++.a now\r\n- Floating point numbers are postfixed with f in the failure reports\r\n\r\nVersion 1.1 (2006-04-18)\r\n- CHECK macros do not have side effects even if one of the parameters changes state\r\n- Removed CHECK_ARRAY_EQUAL (too similar to CHECK_ARRAY_CLOSE)\r\n- Added local and global time constraints\r\n- Removed dependencies on strstream\r\n- Improved Posix signal to exception translator\r\n- Failing tests are added to Visual Studio's error list\r\n- Fixed Visual Studio projects to work with spaces in directories\r\n\r\nVersion 1.0 (2006-03-15)\r\n- Initial release\r\n\r\n"
  },
  {
    "path": "third-party/UnitTest++/TestUnitTest++.vsnet2003.vcproj",
    "content": "<?xml version=\"1.0\" encoding=\"Windows-1252\"?>\r\n<VisualStudioProject\r\n\tProjectType=\"Visual C++\"\r\n\tVersion=\"7.10\"\r\n\tName=\"TestUnitTest++.vsnet2003\"\r\n\tProjectGUID=\"{ACDF9A6A-874F-49E5-AB7C-74F8150BB4C7}\"\r\n\tKeyword=\"Win32Proj\">\r\n\t<Platforms>\r\n\t\t<Platform\r\n\t\t\tName=\"Win32\"/>\r\n\t</Platforms>\r\n\t<Configurations>\r\n\t\t<Configuration\r\n\t\t\tName=\"Debug|Win32\"\r\n\t\t\tOutputDirectory=\"$(SolutionDir)$(ConfigurationName)\"\r\n\t\t\tIntermediateDirectory=\"obj\\$(ProjectName)\\$(ConfigurationName)\"\r\n\t\t\tConfigurationType=\"1\"\r\n\t\t\tCharacterSet=\"2\">\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCLCompilerTool\"\r\n\t\t\t\tOptimization=\"0\"\r\n\t\t\t\tPreprocessorDefinitions=\"WIN32;_DEBUG;_CONSOLE\"\r\n\t\t\t\tMinimalRebuild=\"TRUE\"\r\n\t\t\t\tBasicRuntimeChecks=\"3\"\r\n\t\t\t\tRuntimeLibrary=\"5\"\r\n\t\t\t\tUsePrecompiledHeader=\"0\"\r\n\t\t\t\tWarningLevel=\"4\"\r\n\t\t\t\tDetect64BitPortabilityProblems=\"TRUE\"\r\n\t\t\t\tDebugInformationFormat=\"4\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCustomBuildTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCLinkerTool\"\r\n\t\t\t\tOutputFile=\"$(OutDir)/TestUnitTest++.vsnet2003.exe\"\r\n\t\t\t\tLinkIncremental=\"2\"\r\n\t\t\t\tGenerateDebugInformation=\"TRUE\"\r\n\t\t\t\tProgramDatabaseFile=\"$(OutDir)/TestUnitTest++.vsnet2003.pdb\"\r\n\t\t\t\tSubSystem=\"1\"\r\n\t\t\t\tTargetMachine=\"1\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCMIDLTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPostBuildEventTool\"\r\n\t\t\t\tCommandLine=\"&quot;$(TargetPath)&quot;\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreBuildEventTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreLinkEventTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCResourceCompilerTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXMLDataGeneratorTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebDeploymentTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCManagedWrapperGeneratorTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCAuxiliaryManagedWrapperGeneratorTool\"/>\r\n\t\t</Configuration>\r\n\t\t<Configuration\r\n\t\t\tName=\"Release|Win32\"\r\n\t\t\tOutputDirectory=\"$(SolutionDir)$(ConfigurationName)\"\r\n\t\t\tIntermediateDirectory=\"obj\\$(ProjectName)\\$(ConfigurationName)\"\r\n\t\t\tConfigurationType=\"1\"\r\n\t\t\tCharacterSet=\"2\">\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCLCompilerTool\"\r\n\t\t\t\tOptimization=\"2\"\r\n\t\t\t\tPreprocessorDefinitions=\"WIN32;NDEBUG;_CONSOLE\"\r\n\t\t\t\tRuntimeLibrary=\"4\"\r\n\t\t\t\tUsePrecompiledHeader=\"0\"\r\n\t\t\t\tWarningLevel=\"4\"\r\n\t\t\t\tDetect64BitPortabilityProblems=\"TRUE\"\r\n\t\t\t\tDebugInformationFormat=\"3\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCustomBuildTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCLinkerTool\"\r\n\t\t\t\tOutputFile=\"$(OutDir)/TestUnitTest++.vsnet2003.exe\"\r\n\t\t\t\tLinkIncremental=\"1\"\r\n\t\t\t\tGenerateDebugInformation=\"TRUE\"\r\n\t\t\t\tSubSystem=\"1\"\r\n\t\t\t\tOptimizeReferences=\"2\"\r\n\t\t\t\tEnableCOMDATFolding=\"2\"\r\n\t\t\t\tTargetMachine=\"1\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCMIDLTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPostBuildEventTool\"\r\n\t\t\t\tCommandLine=\"&quot;$(TargetPath)&quot;\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreBuildEventTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreLinkEventTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCResourceCompilerTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXMLDataGeneratorTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebDeploymentTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCManagedWrapperGeneratorTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCAuxiliaryManagedWrapperGeneratorTool\"/>\r\n\t\t</Configuration>\r\n\t</Configurations>\r\n\t<References>\r\n\t</References>\r\n\t<Files>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\Main.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\RecordingReporter.h\">\r\n\t\t</File>\r\n        <File\r\n            RelativePath=\".\\src\\tests\\ScopedCurrentTest.h\">\r\n        </File>\r\n        <File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestAssertHandler.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestCheckMacros.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestChecks.cpp\">\r\n\t\t</File>\r\n        <File\r\n            RelativePath=\".\\src\\tests\\TestCurrentTest.cpp\">\r\n        </File>\r\n        <File\r\n            RelativePath=\".\\src\\tests\\TestDeferredTestReporter.cpp\">\r\n        </File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestMemoryOutStream.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTest.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTestList.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTestMacros.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTestResults.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTestRunner.cpp\">\r\n\t\t</File>\r\n        <File\r\n            RelativePath=\".\\src\\tests\\TestTestSuite.cpp\">\r\n        </File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTimeConstraint.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTimeConstraintMacro.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestUnitTest++.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestXmlTestReporter.cpp\">\r\n\t\t</File>\r\n\t</Files>\r\n\t<Globals>\r\n\t</Globals>\r\n</VisualStudioProject>\r\n"
  },
  {
    "path": "third-party/UnitTest++/TestUnitTest++.vsnet2005.vcproj",
    "content": "<?xml version=\"1.0\" encoding=\"Windows-1252\"?>\r\n<VisualStudioProject\r\n\tProjectType=\"Visual C++\"\r\n\tVersion=\"8.00\"\r\n\tName=\"TestUnitTest++.vsnet2005\"\r\n\tProjectGUID=\"{9CCC3439-309E-4E85-B3B8-CE704D385D48}\"\r\n\tRootNamespace=\"TestUnitTestvsnet2005\"\r\n\tKeyword=\"Win32Proj\"\r\n\t>\r\n\t<Platforms>\r\n\t\t<Platform\r\n\t\t\tName=\"Win32\"\r\n\t\t/>\r\n\t</Platforms>\r\n\t<ToolFiles>\r\n\t</ToolFiles>\r\n\t<Configurations>\r\n\t\t<Configuration\r\n\t\t\tName=\"Debug|Win32\"\r\n\t\t\tOutputDirectory=\"$(SolutionDir)$(ConfigurationName)\"\r\n\t\t\tIntermediateDirectory=\"obj\\$(ProjectName)\\$(ConfigurationName)\"\r\n\t\t\tConfigurationType=\"1\"\r\n\t\t\tCharacterSet=\"1\"\r\n\t\t\t>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreBuildEventTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCustomBuildTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXMLDataGeneratorTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCMIDLTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCLCompilerTool\"\r\n\t\t\t\tOptimization=\"0\"\r\n\t\t\t\tPreprocessorDefinitions=\"WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE\"\r\n\t\t\t\tMinimalRebuild=\"true\"\r\n\t\t\t\tExceptionHandling=\"2\"\r\n\t\t\t\tBasicRuntimeChecks=\"3\"\r\n\t\t\t\tRuntimeLibrary=\"3\"\r\n\t\t\t\tUsePrecompiledHeader=\"0\"\r\n\t\t\t\tWarningLevel=\"4\"\r\n\t\t\t\tDetect64BitPortabilityProblems=\"true\"\r\n\t\t\t\tDebugInformationFormat=\"4\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCManagedResourceCompilerTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCResourceCompilerTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreLinkEventTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCLinkerTool\"\r\n\t\t\t\tLinkIncremental=\"2\"\r\n\t\t\t\tGenerateDebugInformation=\"true\"\r\n\t\t\t\tSubSystem=\"1\"\r\n\t\t\t\tTargetMachine=\"1\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCALinkTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCManifestTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXDCMakeTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCBscMakeTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCFxCopTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCAppVerifierTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebDeploymentTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPostBuildEventTool\"\r\n\t\t\t\tCommandLine=\"&quot;$(TargetPath)&quot;\"\r\n\t\t\t/>\r\n\t\t</Configuration>\r\n\t\t<Configuration\r\n\t\t\tName=\"Release|Win32\"\r\n\t\t\tOutputDirectory=\"$(SolutionDir)$(ConfigurationName)\"\r\n\t\t\tIntermediateDirectory=\"obj\\$(ProjectName)\\$(ConfigurationName)\"\r\n\t\t\tConfigurationType=\"1\"\r\n\t\t\tCharacterSet=\"1\"\r\n\t\t\tWholeProgramOptimization=\"0\"\r\n\t\t\t>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreBuildEventTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCustomBuildTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXMLDataGeneratorTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCMIDLTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCLCompilerTool\"\r\n\t\t\t\tOptimization=\"2\"\r\n\t\t\t\tPreprocessorDefinitions=\"WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE\"\r\n\t\t\t\tExceptionHandling=\"2\"\r\n\t\t\t\tRuntimeLibrary=\"2\"\r\n\t\t\t\tUsePrecompiledHeader=\"0\"\r\n\t\t\t\tWarningLevel=\"4\"\r\n\t\t\t\tDetect64BitPortabilityProblems=\"true\"\r\n\t\t\t\tDebugInformationFormat=\"3\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCManagedResourceCompilerTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCResourceCompilerTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreLinkEventTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCLinkerTool\"\r\n\t\t\t\tLinkIncremental=\"1\"\r\n\t\t\t\tGenerateDebugInformation=\"true\"\r\n\t\t\t\tSubSystem=\"1\"\r\n\t\t\t\tOptimizeReferences=\"2\"\r\n\t\t\t\tEnableCOMDATFolding=\"2\"\r\n\t\t\t\tTargetMachine=\"1\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCALinkTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCManifestTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXDCMakeTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCBscMakeTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCFxCopTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCAppVerifierTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebDeploymentTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPostBuildEventTool\"\r\n\t\t\t\tCommandLine=\"&quot;$(TargetPath)&quot;\"\r\n\t\t\t/>\r\n\t\t</Configuration>\r\n\t</Configurations>\r\n\t<References>\r\n\t</References>\r\n\t<Files>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\Main.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\RecordingReporter.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\ScopedCurrentTest.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestAssertHandler.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestCheckMacros.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestChecks.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestCurrentTest.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestDeferredTestReporter.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestMemoryOutStream.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTest.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTestList.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTestMacros.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTestResults.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTestRunner.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTestSuite.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTimeConstraint.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestTimeConstraintMacro.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestUnitTest++.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\tests\\TestXmlTestReporter.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t</Files>\r\n\t<Globals>\r\n\t</Globals>\r\n</VisualStudioProject>\r\n"
  },
  {
    "path": "third-party/UnitTest++/UnitTest++.vsnet2003.sln",
    "content": "Microsoft Visual Studio Solution File, Format Version 8.00\r\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"UnitTest++.vsnet2003\", \"UnitTest++.vsnet2003.vcproj\", \"{7E5DD804-EC63-4FA5-BB6D-53DA86806EF5}\"\r\n\tProjectSection(ProjectDependencies) = postProject\r\n\tEndProjectSection\r\nEndProject\r\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"TestUnitTest++.vsnet2003\", \"TestUnitTest++.vsnet2003.vcproj\", \"{ACDF9A6A-874F-49E5-AB7C-74F8150BB4C7}\"\r\n\tProjectSection(ProjectDependencies) = postProject\r\n\t\t{7E5DD804-EC63-4FA5-BB6D-53DA86806EF5} = {7E5DD804-EC63-4FA5-BB6D-53DA86806EF5}\r\n\tEndProjectSection\r\nEndProject\r\nGlobal\r\n\tGlobalSection(SolutionConfiguration) = preSolution\r\n\t\tDebug = Debug\r\n\t\tRelease = Release\r\n\tEndGlobalSection\r\n\tGlobalSection(ProjectConfiguration) = postSolution\r\n\t\t{7E5DD804-EC63-4FA5-BB6D-53DA86806EF5}.Debug.ActiveCfg = Debug|Win32\r\n\t\t{7E5DD804-EC63-4FA5-BB6D-53DA86806EF5}.Debug.Build.0 = Debug|Win32\r\n\t\t{7E5DD804-EC63-4FA5-BB6D-53DA86806EF5}.Release.ActiveCfg = Release|Win32\r\n\t\t{7E5DD804-EC63-4FA5-BB6D-53DA86806EF5}.Release.Build.0 = Release|Win32\r\n\t\t{ACDF9A6A-874F-49E5-AB7C-74F8150BB4C7}.Debug.ActiveCfg = Debug|Win32\r\n\t\t{ACDF9A6A-874F-49E5-AB7C-74F8150BB4C7}.Debug.Build.0 = Debug|Win32\r\n\t\t{ACDF9A6A-874F-49E5-AB7C-74F8150BB4C7}.Release.ActiveCfg = Release|Win32\r\n\t\t{ACDF9A6A-874F-49E5-AB7C-74F8150BB4C7}.Release.Build.0 = Release|Win32\r\n\tEndGlobalSection\r\n\tGlobalSection(ExtensibilityGlobals) = postSolution\r\n\tEndGlobalSection\r\n\tGlobalSection(ExtensibilityAddIns) = postSolution\r\n\tEndGlobalSection\r\nEndGlobal\r\n"
  },
  {
    "path": "third-party/UnitTest++/UnitTest++.vsnet2003.vcproj",
    "content": "<?xml version=\"1.0\" encoding=\"Windows-1252\"?>\r\n<VisualStudioProject\r\n\tProjectType=\"Visual C++\"\r\n\tVersion=\"7.10\"\r\n\tName=\"UnitTest++.vsnet2003\"\r\n\tProjectGUID=\"{7E5DD804-EC63-4FA5-BB6D-53DA86806EF5}\"\r\n\tRootNamespace=\"UnitTest++.vsnet2003\"\r\n\tKeyword=\"Win32Proj\">\r\n\t<Platforms>\r\n\t\t<Platform\r\n\t\t\tName=\"Win32\"/>\r\n\t</Platforms>\r\n\t<Configurations>\r\n\t\t<Configuration\r\n\t\t\tName=\"Debug|Win32\"\r\n\t\t\tOutputDirectory=\"$(SolutionDir)$(ConfigurationName)\"\r\n\t\t\tIntermediateDirectory=\"obj\\$(ProjectName)\\$(ConfigurationName)\"\r\n\t\t\tConfigurationType=\"4\"\r\n\t\t\tCharacterSet=\"2\">\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCLCompilerTool\"\r\n\t\t\t\tOptimization=\"0\"\r\n\t\t\t\tPreprocessorDefinitions=\"WIN32;_DEBUG;_LIB\"\r\n\t\t\t\tMinimalRebuild=\"TRUE\"\r\n\t\t\t\tBasicRuntimeChecks=\"3\"\r\n\t\t\t\tRuntimeLibrary=\"5\"\r\n\t\t\t\tUsePrecompiledHeader=\"0\"\r\n\t\t\t\tWarningLevel=\"4\"\r\n\t\t\t\tDetect64BitPortabilityProblems=\"TRUE\"\r\n\t\t\t\tDebugInformationFormat=\"4\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCustomBuildTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCLibrarianTool\"\r\n\t\t\t\tOutputFile=\"$(OutDir)/UnitTest++.vsnet2003.lib\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCMIDLTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPostBuildEventTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreBuildEventTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreLinkEventTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCResourceCompilerTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXMLDataGeneratorTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCManagedWrapperGeneratorTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCAuxiliaryManagedWrapperGeneratorTool\"/>\r\n\t\t</Configuration>\r\n\t\t<Configuration\r\n\t\t\tName=\"Release|Win32\"\r\n\t\t\tOutputDirectory=\"$(SolutionDir)$(ConfigurationName)\"\r\n\t\t\tIntermediateDirectory=\"obj\\$(ProjectName)\\$(ConfigurationName)\"\r\n\t\t\tConfigurationType=\"4\"\r\n\t\t\tCharacterSet=\"2\">\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCLCompilerTool\"\r\n\t\t\t\tPreprocessorDefinitions=\"WIN32;NDEBUG;_LIB\"\r\n\t\t\t\tRuntimeLibrary=\"4\"\r\n\t\t\t\tUsePrecompiledHeader=\"0\"\r\n\t\t\t\tWarningLevel=\"4\"\r\n\t\t\t\tDetect64BitPortabilityProblems=\"TRUE\"\r\n\t\t\t\tDebugInformationFormat=\"3\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCustomBuildTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCLibrarianTool\"\r\n\t\t\t\tOutputFile=\"$(OutDir)/UnitTest++.vsnet2003.lib\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCMIDLTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPostBuildEventTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreBuildEventTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreLinkEventTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCResourceCompilerTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXMLDataGeneratorTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCManagedWrapperGeneratorTool\"/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCAuxiliaryManagedWrapperGeneratorTool\"/>\r\n\t\t</Configuration>\r\n\t</Configurations>\r\n\t<References>\r\n\t</References>\r\n\t<Files>\r\n\t\t<Filter\r\n\t\t\tName=\"Win32\">\r\n\t\t\t<File\r\n\t\t\t\tRelativePath=\".\\src\\Win32\\TimeHelpers.cpp\">\r\n\t\t\t</File>\r\n\t\t\t<File\r\n\t\t\t\tRelativePath=\".\\src\\Win32\\TimeHelpers.h\">\r\n\t\t\t</File>\r\n\t\t</Filter>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\AssertException.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\AssertException.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\CheckMacros.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\Checks.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\Checks.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\Config.h\">\r\n\t\t</File>\r\n\t\t<File\r\n            RelativePath=\".\\src\\CurrentTest.cpp\">\r\n        </File>\r\n        <File\r\n            RelativePath=\".\\src\\CurrentTest.h\">\r\n        </File>\r\n        <File\r\n            RelativePath=\".\\src\\DeferredTestReporter.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\DeferredTestReporter.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\DeferredTestResult.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\DeferredTestResult.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\ExecuteTest.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\MemoryOutStream.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\MemoryOutStream.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\ReportAssert.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\ReportAssert.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\Test.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\Test.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestDetails.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestDetails.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestList.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestList.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestMacros.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestReporter.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestReporter.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestReporterStdout.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestReporterStdout.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestResults.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestResults.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestRunner.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestRunner.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestSuite.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TimeConstraint.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TimeConstraint.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TimeHelpers.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\UnitTest++.h\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\XmlTestReporter.cpp\">\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\XmlTestReporter.h\">\r\n\t\t</File>\r\n\t</Files>\r\n\t<Globals>\r\n\t</Globals>\r\n</VisualStudioProject>\r\n"
  },
  {
    "path": "third-party/UnitTest++/UnitTest++.vsnet2005.sln",
    "content": "﻿\r\nMicrosoft Visual Studio Solution File, Format Version 9.00\r\n# Visual Studio 2005\r\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"UnitTest++.vsnet2005\", \"UnitTest++.vsnet2005.vcproj\", \"{64A4FEFE-0461-4E95-8CC1-91EF5F57DBC6}\"\r\nEndProject\r\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"TestUnitTest++.vsnet2005\", \"TestUnitTest++.vsnet2005.vcproj\", \"{9CCC3439-309E-4E85-B3B8-CE704D385D48}\"\r\n\tProjectSection(ProjectDependencies) = postProject\r\n\t\t{64A4FEFE-0461-4E95-8CC1-91EF5F57DBC6} = {64A4FEFE-0461-4E95-8CC1-91EF5F57DBC6}\r\n\tEndProjectSection\r\nEndProject\r\nGlobal\r\n\tGlobalSection(SolutionConfigurationPlatforms) = preSolution\r\n\t\tDebug|Win32 = Debug|Win32\r\n\t\tRelease|Win32 = Release|Win32\r\n\tEndGlobalSection\r\n\tGlobalSection(ProjectConfigurationPlatforms) = postSolution\r\n\t\t{64A4FEFE-0461-4E95-8CC1-91EF5F57DBC6}.Debug|Win32.ActiveCfg = Debug|Win32\r\n\t\t{64A4FEFE-0461-4E95-8CC1-91EF5F57DBC6}.Debug|Win32.Build.0 = Debug|Win32\r\n\t\t{64A4FEFE-0461-4E95-8CC1-91EF5F57DBC6}.Release|Win32.ActiveCfg = Release|Win32\r\n\t\t{64A4FEFE-0461-4E95-8CC1-91EF5F57DBC6}.Release|Win32.Build.0 = Release|Win32\r\n\t\t{9CCC3439-309E-4E85-B3B8-CE704D385D48}.Debug|Win32.ActiveCfg = Debug|Win32\r\n\t\t{9CCC3439-309E-4E85-B3B8-CE704D385D48}.Debug|Win32.Build.0 = Debug|Win32\r\n\t\t{9CCC3439-309E-4E85-B3B8-CE704D385D48}.Release|Win32.ActiveCfg = Release|Win32\r\n\t\t{9CCC3439-309E-4E85-B3B8-CE704D385D48}.Release|Win32.Build.0 = Release|Win32\r\n\tEndGlobalSection\r\n\tGlobalSection(SolutionProperties) = preSolution\r\n\t\tHideSolutionNode = FALSE\r\n\tEndGlobalSection\r\nEndGlobal\r\n"
  },
  {
    "path": "third-party/UnitTest++/UnitTest++.vsnet2005.vcproj",
    "content": "<?xml version=\"1.0\" encoding=\"Windows-1252\"?>\r\n<VisualStudioProject\r\n\tProjectType=\"Visual C++\"\r\n\tVersion=\"8.00\"\r\n\tName=\"UnitTest++.vsnet2005\"\r\n\tProjectGUID=\"{64A4FEFE-0461-4E95-8CC1-91EF5F57DBC6}\"\r\n\tRootNamespace=\"UnitTestvsnet2005\"\r\n\tKeyword=\"Win32Proj\"\r\n\t>\r\n\t<Platforms>\r\n\t\t<Platform\r\n\t\t\tName=\"Win32\"\r\n\t\t/>\r\n\t</Platforms>\r\n\t<ToolFiles>\r\n\t</ToolFiles>\r\n\t<Configurations>\r\n\t\t<Configuration\r\n\t\t\tName=\"Debug|Win32\"\r\n\t\t\tOutputDirectory=\"$(SolutionDir)$(ConfigurationName)\"\r\n\t\t\tIntermediateDirectory=\"obj\\$(ProjectName)\\$(ConfigurationName)\"\r\n\t\t\tConfigurationType=\"4\"\r\n\t\t\tCharacterSet=\"1\"\r\n\t\t\t>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreBuildEventTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCustomBuildTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXMLDataGeneratorTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCMIDLTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCLCompilerTool\"\r\n\t\t\t\tOptimization=\"0\"\r\n\t\t\t\tPreprocessorDefinitions=\"WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE\"\r\n\t\t\t\tMinimalRebuild=\"true\"\r\n\t\t\t\tExceptionHandling=\"2\"\r\n\t\t\t\tBasicRuntimeChecks=\"3\"\r\n\t\t\t\tRuntimeLibrary=\"3\"\r\n\t\t\t\tUsePrecompiledHeader=\"0\"\r\n\t\t\t\tWarningLevel=\"4\"\r\n\t\t\t\tDetect64BitPortabilityProblems=\"true\"\r\n\t\t\t\tDebugInformationFormat=\"4\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCManagedResourceCompilerTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCResourceCompilerTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreLinkEventTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCLibrarianTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCALinkTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXDCMakeTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCBscMakeTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCFxCopTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPostBuildEventTool\"\r\n\t\t\t/>\r\n\t\t</Configuration>\r\n\t\t<Configuration\r\n\t\t\tName=\"Release|Win32\"\r\n\t\t\tOutputDirectory=\"$(SolutionDir)$(ConfigurationName)\"\r\n\t\t\tIntermediateDirectory=\"obj\\$(ProjectName)\\$(ConfigurationName)\"\r\n\t\t\tConfigurationType=\"4\"\r\n\t\t\tCharacterSet=\"1\"\r\n\t\t\tWholeProgramOptimization=\"0\"\r\n\t\t\t>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreBuildEventTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCustomBuildTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXMLDataGeneratorTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCMIDLTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCLCompilerTool\"\r\n\t\t\t\tOptimization=\"1\"\r\n\t\t\t\tPreprocessorDefinitions=\"WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE\"\r\n\t\t\t\tExceptionHandling=\"2\"\r\n\t\t\t\tRuntimeLibrary=\"2\"\r\n\t\t\t\tUsePrecompiledHeader=\"0\"\r\n\t\t\t\tWarningLevel=\"4\"\r\n\t\t\t\tDetect64BitPortabilityProblems=\"true\"\r\n\t\t\t\tDebugInformationFormat=\"3\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCManagedResourceCompilerTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCResourceCompilerTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreLinkEventTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCLibrarianTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCALinkTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXDCMakeTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCBscMakeTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCFxCopTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPostBuildEventTool\"\r\n\t\t\t/>\r\n\t\t</Configuration>\r\n\t</Configurations>\r\n\t<References>\r\n\t</References>\r\n\t<Files>\r\n\t\t<Filter\r\n\t\t\tName=\"Win32\"\r\n\t\t\t>\r\n\t\t\t<File\r\n\t\t\t\tRelativePath=\".\\src\\Win32\\TimeHelpers.cpp\"\r\n\t\t\t\t>\r\n\t\t\t</File>\r\n\t\t\t<File\r\n\t\t\t\tRelativePath=\".\\src\\Win32\\TimeHelpers.h\"\r\n\t\t\t\t>\r\n\t\t\t</File>\r\n\t\t</Filter>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\AssertException.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\AssertException.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\CheckMacros.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\Checks.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\Checks.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\Config.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\CurrentTest.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\CurrentTest.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\DeferredTestReporter.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\DeferredTestReporter.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\DeferredTestResult.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\DeferredTestResult.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\ExecuteTest.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\MemoryOutStream.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\MemoryOutStream.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\ReportAssert.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\ReportAssert.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\Test.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\Test.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestDetails.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestDetails.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestList.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestList.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestMacros.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestReporter.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestReporter.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestReporterStdout.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestReporterStdout.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestResults.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestResults.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestRunner.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestRunner.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TestSuite.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TimeConstraint.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TimeConstraint.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\TimeHelpers.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\UnitTest++.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\XmlTestReporter.cpp\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t\t<File\r\n\t\t\tRelativePath=\".\\src\\XmlTestReporter.h\"\r\n\t\t\t>\r\n\t\t</File>\r\n\t</Files>\r\n\t<Globals>\r\n\t</Globals>\r\n</VisualStudioProject>\r\n"
  },
  {
    "path": "third-party/UnitTest++/docs/UnitTest++.html",
    "content": "<html>\r\n<head>\r\n\t<title>UnitTest++ in brief</title>\r\n</head>\r\n<body>\r\n<h1>UnitTest++ in brief</h1>\r\n<h2>Introduction</h2>\r\n<p>This little document serves as bare-bones documentation for UnitTest++.</p>\r\n\r\n<p>For background, goals and license details, see:</p>\r\n\r\n<ul>\r\n  <li><a href=\"http://unittest-cpp.sourceforge.net/\">The UnitTest++ home page</a></li>\r\n  <li><a href=\"http://www.gamesfromwithin.com/articles/0603/000108.html\">Noel Llopis' announcement</a></li>\r\n</ul>\r\n\r\n<p>The documentation, while sparse, aims to be practical, so it should give you enough info to get started using UnitTest++ as fast as possible.</p>\r\n\r\n<h2>Building UnitTest++</h2>\r\n<p>Building UnitTest++ will be specific to each platform and build environment, but it should be straightforward.</p>\r\n\r\n<h3>Building with Visual Studio</h3>\r\n<p>If you are using Visual Studio, go for either of the provided .sln files, depending on version. There are no prefabricated solutions for versions earlier than VS.NET 2003, but we have had reports of people building UnitTest++ with at least VS.NET 2002.</p>\r\n\r\n<h3>Building with Make</h3>\r\n<p>The bundled makefile is written to build with g++. It also needs <code>sed</code> installed in the path, and to be able to use the <code>mv</code> and <code>rm</code> shell commands. The makefile should be usable on most Posix-like platforms.</p>\r\n\r\n<p>Do \"make all\" to generate a library and test executable. A final build step runs all unit tests to make sure that the result works as expected.</p>\r\n\r\n<h3>Packaging</h3>\r\n<p>You'll probably want to keep the generated library in a shared space in source control, so you can reuse it for multiple test projects. A redistributable package of UnitTest++ would consist of the generated library file, and all of the header files in <code>UnitTest++/src/</code> and its per-platform subfolders. The <code>tests</code> directory only contains the unit tests for the library, and need not be included.</p>\r\n\r\n<h2>Using UnitTest++</h2>\r\n<p>The source code for UnitTest++ comes with a full test suite written <em>using</em> UnitTest++. This is a great place to learn techniques for testing. There is one sample .cpp file: <code>UnitTest++/src/tests/TestUnitTest++.cpp</code>. It covers most of UnitTest++'s features in an easy-to-grasp context, so start there if you want a quick overview of typical usage.</p>\r\n\r\n<h3>Getting started</h3>\r\n<p>Listed below is a minimal C++ program to run a failing test through UnitTest++.</p>\r\n\r\n<pre>\r\n  // test.cpp\r\n  #include &lt;UnitTest++.h&gt;\r\n\r\n  TEST(FailSpectacularly)\r\n  {\r\n    CHECK(false);\r\n  }\r\n\r\n  int main()\r\n  {\r\n    return UnitTest::RunAllTests();\r\n  }\r\n</pre>\r\n\r\n<p><code>UnitTest++.h</code> is a facade header for UnitTest++, so including that should get you all features of the library. All classes and free functions are placed in namespace <code>UnitTest</code>, so you need to either qualify their full names (as with <code>RunAllTests()</code> in the example) or add a <code>using namespace UnitTest;</code> statement in your .cpp files. Note that any mention of UnitTest++ functions and classes in this document assume that the <code>UnitTest</code> namespace has been opened.</p>\r\n\r\n<p>Compiling and linking this program with UnitTest++'s static library into an executable, and running it, will produce the following output (details may vary):</p>\r\n\r\n<pre>\r\n  .\\test.cpp(5): error: Failure in FailSpectacularly: false\r\n  FAILED: 1 out of 1 tests failed (1 failures).\r\n  Test time: 0.00 seconds.\r\n</pre>\r\n\r\n<p>UnitTest++ attempts to report every failure in an IDE-friendly format, depending on platform (e.g. you can double-click it in Visual Studio's error list.) The exit code will be the number of failed tests, so that a failed test run always returns a non-zero exit code.</p>\r\n\r\n<h3>Test macros</h3>\r\n<p>To add a test, simply put the following code in a .cpp file of your choice:</p>\r\n\r\n<pre>\r\n  TEST(YourTestName)\r\n  {\r\n  }\r\n</pre>\r\n\r\n<p>The <code>TEST</code> macro contains enough machinery to turn this slightly odd-looking syntax into legal C++, and automatically register the test in a global list. This test list forms the basis of what is executed by <code>RunAllTests()</code>.</p>\r\n\r\n<p>If you want to re-use a set of test data for more than one test, or provide setup/teardown for tests, you can use the <code>TEST_FIXTURE</code> macro instead. The macro requires that you pass it a class name that it will instantiate, so any setup and teardown code should be in its constructor and destructor.</p>\r\n\r\n<pre>\r\n  struct SomeFixture\r\n  {\r\n    SomeFixture() { /* some setup */ }\r\n    ~SomeFixture() { /* some teardown */ }\r\n\r\n    int testData;\r\n  };\r\n \r\n  TEST_FIXTURE(SomeFixture, YourTestName)\r\n  {\r\n    int temp = testData;\r\n  }\r\n</pre>\r\n\r\n<p>Note how members of the fixture are used as if they are a part of the test, since the macro-generated test class derives from the provided fixture class.</p>\r\n\r\n<h3>Suite macros</h3>\r\n<p>Tests can be grouped into suites, using the <code>SUITE</code> macro. A suite serves as a namespace for test names, so that the same test name can be used in two difference contexts.</p>\r\n\r\n<pre>\r\n  SUITE(YourSuiteName)\r\n  {\r\n    TEST(YourTestName)\r\n    {\r\n    }\r\n\r\n    TEST(YourOtherTestName)\r\n    {\r\n    }\r\n  }\r\n</pre>\r\n\r\n<p>This will place the tests into a C++ namespace called <code>YourSuiteName</code>, and make the suite name available to UnitTest++. <code>RunAllTests()</code> can be called for a specific suite name, so you can use this to build named groups of tests to be run together.</p>\r\n\r\n<h3>Simple check macros</h3>\r\n<p>In test cases, we want to check the results of our system under test. UnitTest++ provides a number of check macros that handle comparison and proper failure reporting.</p>\r\n\r\n<p>The most basic variety is the boolean <code>CHECK</code> macro:</p>\r\n\r\n<pre>\r\n  CHECK(false); // fails\r\n</pre>\r\n\r\n<p>It will fail if the boolean expression evaluates to false.</p>\r\n\r\n<p>For equality checks, it's generally better to use <code>CHECK_EQUAL</code>:</p>\r\n\r\n<pre>\r\n  CHECK_EQUAL(10, 20); // fails\r\n  CHECK_EQUAL(\"foo\", \"bar\"); // fails\r\n</pre>\r\n\r\n<p>Note how <code>CHECK_EQUAL</code> is overloaded for C strings, so you don't have to resort to <code>strcmp</code> or similar. There is no facility for case-insensitive comparison or string searches, so you may have to drop down to a plain boolean <code>CHECK</code> with help from the CRT:</p>\r\n\r\n<pre>\r\n  CHECK(std::strstr(\"zaza\", \"az\") != 0); // succeeds\r\n</pre>\r\n\r\n<p>For floating-point comparison, equality <a href=\"http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm\">isn't necessarily well-defined</a>, so you should prefer the <code>CHECK_CLOSE</code> macro:</p>\r\n\r\n<pre>\r\n  CHECK_CLOSE(3.14, 3.1415, 0.01); // succeeds\r\n</pre>\r\n\r\n<p>All of the macros are tailored to avoid unintended side-effects, for example:</p>\r\n\r\n<pre>\r\n  TEST(CheckMacrosHaveNoSideEffects)\r\n  {\r\n    int i = 4;\r\n    CHECK_EQUAL(5, ++i); // succeeds\r\n    CHECK_EQUAL(5, i); // succeeds\r\n  }\r\n</pre>\r\n\r\n<p>The check macros guarantee that the <code>++i</code> expression isn't repeated internally, as demonstrated above.</p>\r\n\r\n<h3>Array check macros</h3>\r\n<p>There is a set of check macros for array comparison as well:</p>\r\n\r\n<pre>\r\n  const float oned[2] = { 10, 20 };\r\n  CHECK_ARRAY_EQUAL(oned, oned, 2); // succeeds\r\n  CHECK_ARRAY_CLOSE(oned, oned, 2, 0.00); // succeeds\r\n\r\n  const float twod[2][3] = { {0, 1, 2}, {2, 3, 4} };\r\n  CHECK_ARRAY2D_CLOSE(twod, twod, 2, 3, 0.00); // succeeds\r\n</pre>\r\n\r\n<p>The array equal macro compares elements using <code>operator==</code>, so <code>CHECK_ARRAY_EQUAL</code> won't work for an array of C strings, for example.</p>\r\n\r\n<p>The array close macros are similar to the regular CHECK_CLOSE macro, and are really only useful for scalar types, that can be compared in terms of a difference between two array elements.</p>\r\n\r\n<p>Note that the one-dimensional array macros work for <code>std::vector</code> as well, as it can be indexed just as a C array.</p>\r\n\r\n<h3>Exception check macros</h3>\r\n<p>Finally, there's a <code>CHECK_THROW</code> macro, which asserts that its enclosed expression throws the specified type:</p>\r\n\r\n<pre>\r\n  struct TestException {};\r\n  CHECK_THROW(throw TestException(), TestException); // succeeds\r\n</pre>\r\n\r\n<p>UnitTest++ natively catches exceptions if your test code doesn't. So if your code under test throws any exception UnitTest++ will fail the test and report either using the <code>what()</code> method for <code>std::exception</code> derivatives or just a plain message for unknown exception types.</p>\r\n\r\n<p>Should your test or code raise an irrecoverable error (an Access Violation on Win32, for example, or a signal on Linux), UnitTest++ will attempt to map them to an exception and fail the test, just as for other unhandled exceptions.</p>\r\n\r\n<h3>Time constraints</h3>\r\n<p>UnitTest++ can fail a test if it takes too long to complete, using so-called time constraints.</p>\r\n\r\n<p>They come in two flavors; <em>local</em> and <em>global</em> time constraints.</p>\r\n\r\n<p>Local time constraints are limited to the current scope, like so:</p>\r\n\r\n<pre>\r\n  TEST(YourTimedTest)\r\n  {\r\n     // Lengthy setup...\r\n\r\n     {\r\n        UNITTEST_TIME_CONSTRAINT(50);\r\n\r\n        // Do time-critical stuff\r\n     }\r\n\r\n     // Lengthy teardown...\r\n  }\r\n</pre>\r\n\r\n<p>The test will fail if the \"Do time-critical stuff\" block takes longer than 50 ms to complete. The time-consuming setup and teardown are not measured, since the time constraint is scope-bound. It's perfectly valid to have multiple local time constraints in the same test, as long as there is only one per block.</p>\r\n\r\n<p>A global time constraint, on the other hand, requires that all of the tests in a test run are faster than a specified amount of time. This allows you, when you run a suite of tests, to ask UnitTest++ to fail it entirely if any test exceeds the global constraint. The max time is passed as a parameter to an overload of <code>RunAllTests()</code>.</p>\r\n\r\n<p>If you want to use a global time constraint, but have one test that is notoriously slow, you can exempt it from inspection by using the <code>UNITTEST_TIME_CONSTRAINT_EXEMPT</code> macro anywhere inside the test body.</p>\r\n\r\n<pre>\r\n  TEST(NotoriouslySlowTest)\r\n  {\r\n     UNITTEST_TIME_CONSTRAINT_EXEMPT();\r\n\r\n     // Oh boy, this is going to take a while\r\n     ...\r\n  }\r\n</pre>\r\n\r\n<h3>Test runners</h3>\r\n<p>The <code>RunAllTests()</code> function has an overload that lets you customize the behavior of the runner, such as global time constraints, custom reporters, which suite to run, etc.</p>\r\n\r\n<pre>\r\n  int RunAllTests(TestReporter& reporter, TestList const& list, char const* suiteName, int const maxTestTimeInMs);\r\n</pre>\r\n\r\n<p>If you attempt to pass custom parameters to <code>RunAllTests()</code>, note that the <code>list</code> parameter should have the value <code>Test::GetTestList()</code>.</p>\r\n\r\n<p>The parameterless <code>RunAllTests()</code> is a simple wrapper for this one, with sensible defaults.</p>\r\n\r\n<h3>Example setup</h3>\r\n<p>How to create a new test project varies depending on your environment, but here are some directions on common file structure and usage.</p>\r\n\r\n<p>The general idea is that you keep one <code>Main.cpp</code> file with the entry-point which calls <code>RunAllTests()</code>.</p>\r\n\r\n<p>Then you can simply compile and link new .cpp files at will, typically one per test suite.</p>\r\n\r\n<pre>\r\n   + ShaverTests/\r\n   |\r\n   +- Main.cpp\r\n   |\r\n   +- TestBrush.cpp   \r\n   +- TestEngine.cpp\r\n   +- TestRazor.cpp   \r\n</pre>\r\n\r\n<p>Each of the <code>Test*.cpp</code> files will contain one or more <code>TEST</code> macro incantations with the associated test code. There are no source-level dependencies between <code>Main.cpp</code> and <code>Test*.cpp</code>, as the <code>TEST</code> macro handles the registration and setup necessary for <code>RunAllTests()</code> to find all tests compiled into the same final executable.</p>\r\n\r\n<p>UnitTest++ does not require this structure, even if this is how the library itself does it. As long as your test project contains one or more <code>TESTs</code> and calls <code>RunAllTests()</code> at one point or another, it will be handled by UnitTest++.</p>\r\n\r\n<p>It's common to make the generated executable start as a post-build step, so that merely building your test project will run the tests as well. Since the exit code is the count of failures, a failed test will generally break the build, as most build engines will fail a build if any step returns a non-zero exit code.</p>\r\n\r\n</body>\r\n</html>"
  },
  {
    "path": "third-party/UnitTest++/src/AssertException.cpp",
    "content": "#include \"AssertException.h\"\r\n#include <cstring>\r\n\r\nnamespace UnitTest {\r\n\r\nAssertException::AssertException(char const* description, char const* filename, int lineNumber)\r\n    : m_lineNumber(lineNumber)\r\n{\r\n\tusing namespace std;\r\n\r\n    strcpy(m_description, description);\r\n    strcpy(m_filename, filename);\r\n}\r\n\r\nAssertException::~AssertException() throw()\r\n{\r\n}\r\n\r\nchar const* AssertException::what() const throw()\r\n{\r\n    return m_description;\r\n}\r\n\r\nchar const* AssertException::Filename() const\r\n{\r\n    return m_filename;\r\n}\r\n\r\nint AssertException::LineNumber() const\r\n{\r\n    return m_lineNumber;\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/AssertException.h",
    "content": "#ifndef UNITTEST_ASSERTEXCEPTION_H\r\n#define UNITTEST_ASSERTEXCEPTION_H\r\n\r\n#include <exception>\r\n\r\n\r\nnamespace UnitTest {\r\n\r\nclass AssertException : public std::exception\r\n{\r\npublic:\r\n    AssertException(char const* description, char const* filename, int lineNumber);\r\n    virtual ~AssertException() throw();\r\n\r\n    virtual char const* what() const throw();\r\n\r\n    char const* Filename() const;\r\n    int LineNumber() const;\r\n\r\nprivate:\r\n    char m_description[512];\r\n    char m_filename[256];\r\n    int m_lineNumber;\r\n};\r\n\r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/CheckMacros.h",
    "content": "#ifndef UNITTEST_CHECKMACROS_H \r\n#define UNITTEST_CHECKMACROS_H\r\n\r\n#include \"Checks.h\"\r\n#include \"AssertException.h\"\r\n#include \"MemoryOutStream.h\"\r\n#include \"TestDetails.h\"\r\n#include \"CurrentTest.h\"\r\n\r\n#ifdef CHECK\r\n    #error UnitTest++ redefines CHECK\r\n#endif\r\n\r\n#ifdef CHECK_EQUAL\r\n\t#error UnitTest++ redefines CHECK_EQUAL\r\n#endif\r\n\r\n#ifdef CHECK_CLOSE\r\n\t#error UnitTest++ redefines CHECK_CLOSE\r\n#endif\r\n\r\n#ifdef CHECK_ARRAY_EQUAL\r\n\t#error UnitTest++ redefines CHECK_ARRAY_EQUAL\r\n#endif\r\n\r\n#ifdef CHECK_ARRAY_CLOSE\r\n\t#error UnitTest++ redefines CHECK_ARRAY_CLOSE\r\n#endif\r\n\r\n#ifdef CHECK_ARRAY2D_CLOSE\r\n\t#error UnitTest++ redefines CHECK_ARRAY2D_CLOSE\r\n#endif\r\n\r\n#define CHECK(value) \\\r\n    do \\\r\n    { \\\r\n        try { \\\r\n            if (!UnitTest::Check(value)) \\\r\n                UnitTest::CurrentTest::Results()->OnTestFailure(UnitTest::TestDetails(*UnitTest::CurrentTest::Details(), __LINE__), #value); \\\r\n        } \\\r\n        catch (...) { \\\r\n            UnitTest::CurrentTest::Results()->OnTestFailure(UnitTest::TestDetails(*UnitTest::CurrentTest::Details(), __LINE__), \\\r\n                    \"Unhandled exception in CHECK(\" #value \")\"); \\\r\n        } \\\r\n    } while (0)\r\n\r\n#define CHECK_EQUAL(expected, actual) \\\r\n    do \\\r\n    { \\\r\n        try { \\\r\n            UnitTest::CheckEqual(*UnitTest::CurrentTest::Results(), expected, actual, UnitTest::TestDetails(*UnitTest::CurrentTest::Details(), __LINE__)); \\\r\n        } \\\r\n        catch (...) { \\\r\n            UnitTest::CurrentTest::Results()->OnTestFailure(UnitTest::TestDetails(*UnitTest::CurrentTest::Details(), __LINE__), \\\r\n                    \"Unhandled exception in CHECK_EQUAL(\" #expected \", \" #actual \")\"); \\\r\n        } \\\r\n    } while (0)\r\n\r\n#define CHECK_CLOSE(expected, actual, tolerance) \\\r\n    do \\\r\n    { \\\r\n        try { \\\r\n            UnitTest::CheckClose(*UnitTest::CurrentTest::Results(), expected, actual, tolerance, UnitTest::TestDetails(*UnitTest::CurrentTest::Details(), __LINE__)); \\\r\n        } \\\r\n        catch (...) { \\\r\n            UnitTest::CurrentTest::Results()->OnTestFailure(UnitTest::TestDetails(*UnitTest::CurrentTest::Details(), __LINE__), \\\r\n                    \"Unhandled exception in CHECK_CLOSE(\" #expected \", \" #actual \")\"); \\\r\n        } \\\r\n    } while (0)\r\n\r\n#define CHECK_ARRAY_EQUAL(expected, actual, count) \\\r\n    do \\\r\n    { \\\r\n        try { \\\r\n            UnitTest::CheckArrayEqual(*UnitTest::CurrentTest::Results(), expected, actual, count, UnitTest::TestDetails(*UnitTest::CurrentTest::Details(), __LINE__)); \\\r\n        } \\\r\n        catch (...) { \\\r\n            UnitTest::CurrentTest::Results()->OnTestFailure(UnitTest::TestDetails(*UnitTest::CurrentTest::Details(), __LINE__), \\\r\n                    \"Unhandled exception in CHECK_ARRAY_EQUAL(\" #expected \", \" #actual \")\"); \\\r\n        } \\\r\n    } while (0)\r\n\r\n#define CHECK_ARRAY_CLOSE(expected, actual, count, tolerance) \\\r\n    do \\\r\n    { \\\r\n        try { \\\r\n            UnitTest::CheckArrayClose(*UnitTest::CurrentTest::Results(), expected, actual, count, tolerance, UnitTest::TestDetails(*UnitTest::CurrentTest::Details(), __LINE__)); \\\r\n        } \\\r\n        catch (...) { \\\r\n            UnitTest::CurrentTest::Results()->OnTestFailure(UnitTest::TestDetails(*UnitTest::CurrentTest::Details(), __LINE__), \\\r\n                    \"Unhandled exception in CHECK_ARRAY_CLOSE(\" #expected \", \" #actual \")\"); \\\r\n        } \\\r\n    } while (0)\r\n\r\n#define CHECK_ARRAY2D_CLOSE(expected, actual, rows, columns, tolerance) \\\r\n    do \\\r\n    { \\\r\n        try { \\\r\n            UnitTest::CheckArray2DClose(*UnitTest::CurrentTest::Results(), expected, actual, rows, columns, tolerance, UnitTest::TestDetails(*UnitTest::CurrentTest::Details(), __LINE__)); \\\r\n        } \\\r\n        catch (...) { \\\r\n            UnitTest::CurrentTest::Results()->OnTestFailure(UnitTest::TestDetails(*UnitTest::CurrentTest::Details(), __LINE__), \\\r\n                    \"Unhandled exception in CHECK_ARRAY_CLOSE(\" #expected \", \" #actual \")\"); \\\r\n        } \\\r\n    } while (0)\r\n\r\n\r\n#define CHECK_THROW(expression, ExpectedExceptionType) \\\r\n    do \\\r\n    { \\\r\n        bool caught_ = false; \\\r\n        try { expression; } \\\r\n        catch (ExpectedExceptionType const&) { caught_ = true; } \\\r\n        catch (...) {} \\\r\n        if (!caught_) \\\r\n            UnitTest::CurrentTest::Results()->OnTestFailure(UnitTest::TestDetails(*UnitTest::CurrentTest::Details(), __LINE__), \"Expected exception: \\\"\" #ExpectedExceptionType \"\\\" not thrown\"); \\\r\n    } while(0)\r\n\r\n#define CHECK_ASSERT(expression) \\\r\n    CHECK_THROW(expression, UnitTest::AssertException);\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/Checks.cpp",
    "content": "#include \"Checks.h\"\r\n#include <cstring>\r\n\r\nnamespace UnitTest {\r\n\r\nnamespace {\r\n\r\nvoid CheckStringsEqual(TestResults& results, char const* expected, char const* actual, \r\n                       TestDetails const& details)\r\n{\r\n\tusing namespace std;\r\n\r\n    if (strcmp(expected, actual))\r\n    {\r\n        UnitTest::MemoryOutStream stream;\r\n        stream << \"Expected \" << expected << \" but was \" << actual;\r\n\r\n        results.OnTestFailure(details, stream.GetText());\r\n    }\r\n}\r\n\r\n}\r\n\r\n\r\nvoid CheckEqual(TestResults& results, char const* expected, char const* actual,\r\n                TestDetails const& details)\r\n{\r\n    CheckStringsEqual(results, expected, actual, details);\r\n}\r\n\r\nvoid CheckEqual(TestResults& results, char* expected, char* actual,\r\n                TestDetails const& details)\r\n{\r\n    CheckStringsEqual(results, expected, actual, details);\r\n}\r\n\r\nvoid CheckEqual(TestResults& results, char* expected, char const* actual,\r\n                TestDetails const& details)\r\n{\r\n    CheckStringsEqual(results, expected, actual, details);\r\n}\r\n\r\nvoid CheckEqual(TestResults& results, char const* expected, char* actual,\r\n                TestDetails const& details)\r\n{\r\n    CheckStringsEqual(results, expected, actual, details);\r\n}\r\n\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/Checks.h",
    "content": "#ifndef UNITTEST_CHECKS_H\r\n#define UNITTEST_CHECKS_H\r\n\r\n#include \"Config.h\"\r\n#include \"TestResults.h\"\r\n#include \"MemoryOutStream.h\"\r\n\r\nnamespace UnitTest {\r\n\r\n\r\ntemplate< typename Value >\r\nbool Check(Value const value)\r\n{\r\n    return !!value; // doing double negative to avoid silly VS warnings\r\n}\r\n\r\n\r\ntemplate< typename Expected, typename Actual >\r\nvoid CheckEqual(TestResults& results, Expected const& expected, Actual const& actual, TestDetails const& details)\r\n{\r\n    if (!(expected == actual))\r\n    {\r\n        UnitTest::MemoryOutStream stream;\r\n        stream << \"Expected \" << expected << \" but was \" << actual;\r\n\r\n        results.OnTestFailure(details, stream.GetText());\r\n    }\r\n}\r\n\r\nvoid CheckEqual(TestResults& results, char const* expected, char const* actual, TestDetails const& details);\r\n\r\nvoid CheckEqual(TestResults& results, char* expected, char* actual, TestDetails const& details);\r\n\r\nvoid CheckEqual(TestResults& results, char* expected, char const* actual, TestDetails const& details);\r\n\r\nvoid CheckEqual(TestResults& results, char const* expected, char* actual, TestDetails const& details);\r\n\r\ntemplate< typename Expected, typename Actual, typename Tolerance >\r\nbool AreClose(Expected const& expected, Actual const& actual, Tolerance const& tolerance)\r\n{\r\n    return (actual >= (expected - tolerance)) && (actual <= (expected + tolerance));\r\n}\r\n\r\ntemplate< typename Expected, typename Actual, typename Tolerance >\r\nvoid CheckClose(TestResults& results, Expected const& expected, Actual const& actual, Tolerance const& tolerance,\r\n                TestDetails const& details)\r\n{\r\n    if (!AreClose(expected, actual, tolerance))\r\n    { \r\n        UnitTest::MemoryOutStream stream;\r\n        stream << \"Expected \" << expected << \" +/- \" << tolerance << \" but was \" << actual;\r\n\r\n        results.OnTestFailure(details, stream.GetText());\r\n    }\r\n}\r\n\r\n\r\ntemplate< typename Expected, typename Actual >\r\nvoid CheckArrayEqual(TestResults& results, Expected const& expected, Actual const& actual,\r\n                int const count, TestDetails const& details)\r\n{\r\n    bool equal = true;\r\n    for (int i = 0; i < count; ++i)\r\n        equal &= (expected[i] == actual[i]);\r\n\r\n    if (!equal)\r\n    {\r\n        UnitTest::MemoryOutStream stream;\r\n\r\n\t\tstream << \"Expected [ \";\r\n\r\n\t\tfor (int expectedIndex = 0; expectedIndex < count; ++expectedIndex)\r\n            stream << expected[expectedIndex] << \" \";\r\n\r\n\t\tstream << \"] but was [ \";\r\n\r\n\t\tfor (int actualIndex = 0; actualIndex < count; ++actualIndex)\r\n            stream << actual[actualIndex] << \" \";\r\n\r\n\t\tstream << \"]\";\r\n\r\n        results.OnTestFailure(details, stream.GetText());\r\n    }\r\n}\r\n\r\ntemplate< typename Expected, typename Actual, typename Tolerance >\r\nbool ArrayAreClose(Expected const& expected, Actual const& actual, int const count, Tolerance const& tolerance)\r\n{\r\n    bool equal = true;\r\n    for (int i = 0; i < count; ++i)\r\n        equal &= AreClose(expected[i], actual[i], tolerance);\r\n    return equal;\r\n}\r\n\r\ntemplate< typename Expected, typename Actual, typename Tolerance >\r\nvoid CheckArrayClose(TestResults& results, Expected const& expected, Actual const& actual,\r\n                   int const count, Tolerance const& tolerance, TestDetails const& details)\r\n{\r\n    bool equal = ArrayAreClose(expected, actual, count, tolerance);\r\n\r\n    if (!equal)\r\n    {\r\n        UnitTest::MemoryOutStream stream;\r\n\r\n        stream << \"Expected [ \";\r\n        for (int expectedIndex = 0; expectedIndex < count; ++expectedIndex)\r\n            stream << expected[expectedIndex] << \" \";\r\n        stream << \"] +/- \" << tolerance << \" but was [ \";\r\n\r\n\t\tfor (int actualIndex = 0; actualIndex < count; ++actualIndex)\r\n            stream << actual[actualIndex] << \" \";\r\n        stream << \"]\";\r\n\r\n        results.OnTestFailure(details, stream.GetText());\r\n    }\r\n}\r\n\r\ntemplate< typename Expected, typename Actual, typename Tolerance >\r\nvoid CheckArray2DClose(TestResults& results, Expected const& expected, Actual const& actual,\r\n                   int const rows, int const columns, Tolerance const& tolerance, TestDetails const& details)\r\n{\r\n    bool equal = true;\r\n    for (int i = 0; i < rows; ++i)\r\n        equal &= ArrayAreClose(expected[i], actual[i], columns, tolerance);\r\n\r\n    if (!equal)\r\n    {\r\n        UnitTest::MemoryOutStream stream;\r\n\r\n        stream << \"Expected [ \";    \r\n\r\n\t\tfor (int expectedRow = 0; expectedRow < rows; ++expectedRow)\r\n        {\r\n            stream << \"[ \";\r\n            for (int expectedColumn = 0; expectedColumn < columns; ++expectedColumn)\r\n                stream << expected[expectedRow][expectedColumn] << \" \";\r\n            stream << \"] \";\r\n        }\r\n\r\n\t\tstream << \"] +/- \" << tolerance << \" but was [ \";\r\n\r\n\t\tfor (int actualRow = 0; actualRow < rows; ++actualRow)\r\n        {\r\n            stream << \"[ \";\r\n            for (int actualColumn = 0; actualColumn < columns; ++actualColumn)\r\n                stream << actual[actualRow][actualColumn] << \" \";\r\n            stream << \"] \";\r\n        }\r\n\r\n\t\tstream << \"]\";\r\n\r\n        results.OnTestFailure(details, stream.GetText());\r\n    }\r\n}\r\n\r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/Config.h",
    "content": "#ifndef UNITTEST_CONFIG_H\r\n#define UNITTEST_CONFIG_H\r\n\r\n// Standard defines documented here: http://predef.sourceforge.net\r\n\r\n#if defined(_MSC_VER)\r\n    #pragma warning(disable:4127) // conditional expression is constant\r\n\t#pragma warning(disable:4702) // unreachable code\r\n\t#pragma warning(disable:4722) // destructor never returns, potential memory leak\r\n\r\n\t#if (_MSC_VER == 1200)  // VC6\r\n\t\t#pragma warning(disable:4786)\r\n\t\t#pragma warning(disable:4290)\r\n\t#endif\r\n#endif\r\n\r\n#if defined(unix) || defined(__unix__) || defined(__unix) || defined(linux) || \\\r\n    defined(__APPLE__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__)        \r\n    #define UNITTEST_POSIX\r\n#endif\r\n\r\n#if defined(__MINGW32__)\r\n    #define UNITTEST_MINGW\r\n#endif\r\n\r\n// by default, MemoryOutStream is implemented in terms of std::ostringstream, which can be expensive.\r\n// uncomment this line to use the custom MemoryOutStream (no deps on std::ostringstream).\r\n\r\n//#define UNITTEST_USE_CUSTOM_STREAMS\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/CurrentTest.cpp",
    "content": "#include \"CurrentTest.h\"\r\n#include <cstddef>\r\n\r\nnamespace UnitTest {\r\n\r\nTestResults*& CurrentTest::Results()\r\n{\r\n\tstatic TestResults* testResults = NULL;\r\n\treturn testResults;\r\n}\r\n\r\nconst TestDetails*& CurrentTest::Details()\r\n{\r\n\tstatic const TestDetails* testDetails = NULL;\r\n\treturn testDetails;\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/CurrentTest.h",
    "content": "#ifndef UNITTEST_CURRENTTESTRESULTS_H\r\n#define UNITTEST_CURRENTTESTRESULTS_H\r\n\r\nnamespace UnitTest {\r\n\r\nclass TestResults;\r\nclass TestDetails;\r\n\r\nnamespace CurrentTest\r\n{\r\n\tTestResults*& Results();\r\n\tconst TestDetails*& Details();\r\n}\r\n\r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/DeferredTestReporter.cpp",
    "content": "#include \"DeferredTestReporter.h\"\r\n#include \"TestDetails.h\"\r\n#include \"Config.h\"\r\n\r\nusing namespace UnitTest;\r\n\r\nvoid DeferredTestReporter::ReportTestStart(TestDetails const& details)\r\n{\r\n    m_results.push_back(DeferredTestResult(details.suiteName, details.testName));\r\n}\r\n\r\nvoid DeferredTestReporter::ReportFailure(TestDetails const& details, char const* failure)\r\n{\r\n    DeferredTestResult& r = m_results.back();\r\n    r.failed = true;\r\n    r.failures.push_back(DeferredTestResult::Failure(details.lineNumber, failure));\r\n    r.failureFile = details.filename;\r\n}\r\n\r\nvoid DeferredTestReporter::ReportTestFinish(TestDetails const&, float secondsElapsed)\r\n{\r\n    DeferredTestResult& r = m_results.back();\r\n    r.timeElapsed = secondsElapsed;\r\n}\r\n\r\nDeferredTestReporter::DeferredTestResultList& DeferredTestReporter::GetResults()\r\n{\r\n    return m_results;\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/DeferredTestReporter.h",
    "content": "#ifndef UNITTEST_DEFERREDTESTREPORTER_H\r\n#define UNITTEST_DEFERREDTESTREPORTER_H\r\n\r\n#include \"TestReporter.h\"\r\n#include \"DeferredTestResult.h\"\r\n\r\n#include <vector>\r\n\r\nnamespace UnitTest\r\n{\r\n\r\nclass DeferredTestReporter : public TestReporter\r\n{\r\npublic:\r\n    virtual void ReportTestStart(TestDetails const& details);\r\n    virtual void ReportFailure(TestDetails const& details, char const* failure);\r\n    virtual void ReportTestFinish(TestDetails const& details, float secondsElapsed);\r\n\r\n    typedef std::vector< DeferredTestResult > DeferredTestResultList;\r\n    DeferredTestResultList& GetResults();\r\n\r\nprivate:\r\n    DeferredTestResultList m_results;\r\n};\r\n\r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/DeferredTestResult.cpp",
    "content": "#include \"DeferredTestResult.h\"\r\n#include \"Config.h\"\r\n\r\nnamespace UnitTest\r\n{\r\n\r\nDeferredTestResult::DeferredTestResult()\r\n\t: suiteName(\"\")\r\n\t, testName(\"\")\r\n\t, failureFile(\"\")\r\n\t, timeElapsed(0.0f)\r\n\t, failed(false)\r\n{\r\n}\r\n\r\nDeferredTestResult::DeferredTestResult(char const* suite, char const* test)\r\n\t: suiteName(suite)\r\n\t, testName(test)\r\n\t, failureFile(\"\")\r\n\t, timeElapsed(0.0f)\r\n\t, failed(false)\r\n{\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/DeferredTestResult.h",
    "content": "#ifndef UNITTEST_DEFERREDTESTRESULT_H\r\n#define UNITTEST_DEFERREDTESTRESULT_H\r\n\r\n#include <string>\r\n#include <vector>\r\n\r\nnamespace UnitTest\r\n{\r\n\r\nstruct DeferredTestResult\r\n{\r\n\tDeferredTestResult();\r\n    DeferredTestResult(char const* suite, char const* test);\r\n\r\n    std::string suiteName;\r\n    std::string testName;\r\n    std::string failureFile;\r\n    \r\n    typedef std::pair< int, std::string > Failure;\r\n    typedef std::vector< Failure > FailureVec;\r\n    FailureVec failures;\r\n    \r\n    float timeElapsed;\r\n\tbool failed;\r\n};\r\n\r\n}\r\n\r\n#endif //UNITTEST_DEFERREDTESTRESULT_H\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/ExecuteTest.h",
    "content": "#ifndef UNITTEST_EXECUTE_TEST_H\r\n#define UNITTEST_EXECUTE_TEST_H\r\n\r\n#include \"TestDetails.h\"\r\n#include \"MemoryOutStream.h\"\r\n#include \"AssertException.h\"\r\n#include \"CurrentTest.h\"\r\n\r\n#ifdef UNITTEST_POSIX\r\n\t#include \"Posix/SignalTranslator.h\"\r\n#endif\r\n\r\nnamespace UnitTest {\r\n\r\ntemplate< typename T >\r\nvoid ExecuteTest(T& testObject, TestDetails const& details)\r\n{\r\n\tCurrentTest::Details() = &details;\r\n\r\n\ttry\r\n\t{\r\n#ifdef UNITTEST_POSIX\r\n\t\tUNITTEST_THROW_SIGNALS\r\n#endif\r\n\t\ttestObject.RunImpl();\r\n\t}\r\n\tcatch (AssertException const& e)\r\n\t{\r\n\t\tCurrentTest::Results()->OnTestFailure(\r\n\t\t\tTestDetails(details.testName, details.suiteName, e.Filename(), e.LineNumber()), e.what());\r\n\t}\r\n\tcatch (std::exception const& e)\r\n\t{\r\n\t\tMemoryOutStream stream;\r\n\t\tstream << \"Unhandled exception: \" << e.what();\r\n\t\tCurrentTest::Results()->OnTestFailure(details, stream.GetText());\r\n\t}\r\n\tcatch (...)\r\n\t{\r\n\t\tCurrentTest::Results()->OnTestFailure(details, \"Unhandled exception: Crash!\");\r\n\t}\r\n}\r\n\r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/MemoryOutStream.cpp",
    "content": "#include \"MemoryOutStream.h\"\r\n\r\n#ifndef UNITTEST_USE_CUSTOM_STREAMS\r\n\r\n\r\nnamespace UnitTest {\r\n\r\nchar const* MemoryOutStream::GetText() const\r\n{\r\n    m_text = this->str();\r\n    return m_text.c_str();\r\n}\r\n\r\n\r\n}\r\n\r\n\r\n#else\r\n\r\n\r\n#include <cstring>\r\n#include <cstdio>\r\n\r\nnamespace UnitTest {\r\n\r\nnamespace {\r\n\r\ntemplate<typename ValueType>\r\nvoid FormatToStream(MemoryOutStream& stream, char const* format, ValueType const& value)\r\n{\r\n\tusing namespace std;\r\n\r\n    char txt[32];\r\n    sprintf(txt, format, value);\r\n    stream << txt;\r\n}\r\n\r\nint RoundUpToMultipleOfPow2Number (int n, int pow2Number)\r\n{\r\n    return (n + (pow2Number - 1)) & ~(pow2Number - 1);\r\n}\r\n\r\n}\r\n\r\n\r\nMemoryOutStream::MemoryOutStream(int const size)\r\n    : m_capacity (0)\r\n    , m_buffer (0)\r\n\r\n{\r\n    GrowBuffer(size);\r\n}\r\n\r\nMemoryOutStream::~MemoryOutStream()\r\n{\r\n    delete [] m_buffer;\r\n}\r\n\r\nchar const* MemoryOutStream::GetText() const\r\n{\r\n    return m_buffer;\r\n}\r\n\r\nMemoryOutStream& MemoryOutStream::operator << (char const* txt)\r\n{\r\n\tusing namespace std;\r\n\r\n    int const bytesLeft = m_capacity - (int)strlen(m_buffer);\r\n    int const bytesRequired = (int)strlen(txt) + 1;\r\n\r\n    if (bytesRequired > bytesLeft)\r\n    {\r\n        int const requiredCapacity = bytesRequired + m_capacity - bytesLeft;\r\n        GrowBuffer(requiredCapacity);\r\n    }\r\n\r\n    strcat(m_buffer, txt);\r\n    return *this;\r\n}\r\n\r\nMemoryOutStream& MemoryOutStream::operator << (int const n)\r\n{\r\n    FormatToStream(*this, \"%i\", n);\r\n    return *this;\r\n}\r\n\r\nMemoryOutStream& MemoryOutStream::operator << (long const n)\r\n{\r\n    FormatToStream(*this, \"%li\", n);\r\n    return *this;\r\n}\r\n\r\nMemoryOutStream& MemoryOutStream::operator << (unsigned long const n)\r\n{\r\n    FormatToStream(*this, \"%lu\", n);\r\n    return *this;\r\n}\r\n\r\nMemoryOutStream& MemoryOutStream::operator << (float const f)\r\n{\r\n    FormatToStream(*this, \"%ff\", f);\r\n    return *this;    \r\n}\r\n\r\nMemoryOutStream& MemoryOutStream::operator << (void const* p)\r\n{\r\n    FormatToStream(*this, \"%p\", p);\r\n    return *this;    \r\n}\r\n\r\nMemoryOutStream& MemoryOutStream::operator << (unsigned int const s)\r\n{\r\n    FormatToStream(*this, \"%u\", s);\r\n    return *this;    \r\n}\r\n\r\nMemoryOutStream& MemoryOutStream::operator <<(double const d)\r\n{\r\n\tFormatToStream(*this, \"%f\", d);\r\n\treturn *this;\r\n}\r\n\r\nint MemoryOutStream::GetCapacity() const\r\n{\r\n    return m_capacity;\r\n}\r\n\r\n\r\nvoid MemoryOutStream::GrowBuffer(int const desiredCapacity)\r\n{\r\n    int const newCapacity = RoundUpToMultipleOfPow2Number(desiredCapacity, GROW_CHUNK_SIZE);\r\n\r\n\tusing namespace std;\r\n\r\n    char* buffer = new char[newCapacity];\r\n    if (m_buffer)\r\n        strcpy(buffer, m_buffer);\r\n    else\r\n        strcpy(buffer, \"\");\r\n\r\n    delete [] m_buffer;\r\n    m_buffer = buffer;\r\n    m_capacity = newCapacity;\r\n}\r\n\r\n}\r\n\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/MemoryOutStream.h",
    "content": "#ifndef UNITTEST_MEMORYOUTSTREAM_H\r\n#define UNITTEST_MEMORYOUTSTREAM_H\r\n\r\n#include \"Config.h\"\r\n\r\n#ifndef UNITTEST_USE_CUSTOM_STREAMS\r\n\r\n#include <sstream>\r\n\r\nnamespace UnitTest\r\n{\r\n\r\nclass MemoryOutStream : public std::ostringstream\r\n{\r\npublic:\r\n    MemoryOutStream() {}\r\n    char const* GetText() const;\r\n\r\nprivate:\r\n    MemoryOutStream(MemoryOutStream const&);\r\n    void operator =(MemoryOutStream const&);\r\n\r\n    mutable std::string m_text;\r\n};\r\n\r\n}\r\n\r\n#else\r\n\r\n#include <cstddef>\r\n\r\nnamespace UnitTest\r\n{\r\n\r\nclass MemoryOutStream\r\n{\r\npublic:\r\n    explicit MemoryOutStream(int const size = 256);\r\n    ~MemoryOutStream();\r\n\r\n    char const* GetText() const;\r\n\r\n    MemoryOutStream& operator << (char const* txt);\r\n    MemoryOutStream& operator << (int n);\r\n    MemoryOutStream& operator << (long n);\r\n    MemoryOutStream& operator << (unsigned long n);\r\n    MemoryOutStream& operator << (float f);\r\n    MemoryOutStream& operator << (double d);\r\n    MemoryOutStream& operator << (void const* p);\r\n    MemoryOutStream& operator << (unsigned int s);\r\n\r\n    enum { GROW_CHUNK_SIZE = 32 };\r\n    int GetCapacity() const;\r\n\r\nprivate:\r\n    void operator= (MemoryOutStream const&);\r\n    void GrowBuffer(int capacity);\r\n\r\n    int m_capacity;\r\n    char* m_buffer;\r\n};\r\n\r\n}\r\n\r\n#endif\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/Posix/SignalTranslator.cpp",
    "content": "#include \"SignalTranslator.h\"\r\n\r\nnamespace UnitTest {\r\n\r\nsigjmp_buf* SignalTranslator::s_jumpTarget = 0;\r\n\r\nnamespace {\r\n\r\nvoid SignalHandler(int sig)\r\n{\r\n    siglongjmp(*SignalTranslator::s_jumpTarget, sig );\r\n}\r\n\r\n}\r\n\r\n\r\nSignalTranslator::SignalTranslator()\r\n{\r\n    m_oldJumpTarget = s_jumpTarget;\r\n    s_jumpTarget = &m_currentJumpTarget;\r\n\r\n    struct sigaction action;\r\n    action.sa_flags = 0;\r\n    action.sa_handler = SignalHandler;\r\n    sigemptyset( &action.sa_mask );\r\n\r\n    sigaction( SIGSEGV, &action, &m_old_SIGSEGV_action );\r\n    sigaction( SIGFPE , &action, &m_old_SIGFPE_action  );\r\n    sigaction( SIGTRAP, &action, &m_old_SIGTRAP_action );\r\n    sigaction( SIGBUS , &action, &m_old_SIGBUS_action  );\r\n    sigaction( SIGILL , &action, &m_old_SIGBUS_action  );\r\n}\r\n\r\nSignalTranslator::~SignalTranslator()\r\n{\r\n    sigaction( SIGILL , &m_old_SIGBUS_action , 0 );\r\n    sigaction( SIGBUS , &m_old_SIGBUS_action , 0 );\r\n    sigaction( SIGTRAP, &m_old_SIGTRAP_action, 0 );\r\n    sigaction( SIGFPE , &m_old_SIGFPE_action , 0 );\r\n    sigaction( SIGSEGV, &m_old_SIGSEGV_action, 0 );\r\n\r\n    s_jumpTarget = m_oldJumpTarget;\r\n}\r\n\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/Posix/SignalTranslator.h",
    "content": "#ifndef UNITTEST_SIGNALTRANSLATOR_H\r\n#define UNITTEST_SIGNALTRANSLATOR_H\r\n\r\n#include <setjmp.h>\r\n#include <signal.h>\r\n\r\nnamespace UnitTest {\r\n\r\nclass SignalTranslator\r\n{\r\npublic:\r\n    SignalTranslator();\r\n    ~SignalTranslator();\r\n\r\n    static sigjmp_buf* s_jumpTarget;\r\n\r\nprivate:\r\n    sigjmp_buf m_currentJumpTarget;\r\n    sigjmp_buf* m_oldJumpTarget;\r\n\r\n    struct sigaction m_old_SIGFPE_action;\r\n    struct sigaction m_old_SIGTRAP_action;\r\n    struct sigaction m_old_SIGSEGV_action;\r\n    struct sigaction m_old_SIGBUS_action;\r\n    struct sigaction m_old_SIGABRT_action;\r\n    struct sigaction m_old_SIGALRM_action;\r\n};\r\n\r\n#if !defined (__GNUC__)\r\n    #define UNITTEST_EXTENSION\r\n#else\r\n    #define UNITTEST_EXTENSION __extension__\r\n#endif\r\n\r\n#define UNITTEST_THROW_SIGNALS \\\r\n\tUnitTest::SignalTranslator sig; \\\r\n\tif (UNITTEST_EXTENSION sigsetjmp(*UnitTest::SignalTranslator::s_jumpTarget, 1) != 0) \\\r\n        throw (\"Unhandled system exception\"); \r\n\r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/Posix/TimeHelpers.cpp",
    "content": "#include \"TimeHelpers.h\"\r\n#include <unistd.h>\r\n\r\nnamespace UnitTest {\r\n\r\nTimer::Timer()\r\n{\r\n    m_startTime.tv_sec = 0;\r\n    m_startTime.tv_usec = 0;\r\n}\r\n\r\nvoid Timer::Start()\r\n{\r\n    gettimeofday(&m_startTime, 0);\r\n}\r\n\r\n\r\nint Timer::GetTimeInMs() const\r\n{\r\n    struct timeval currentTime;\r\n    gettimeofday(&currentTime, 0);\r\n    int const dsecs = currentTime.tv_sec - m_startTime.tv_sec;\r\n    int const dus = currentTime.tv_usec - m_startTime.tv_usec;\r\n    return dsecs*1000 + dus/1000;\r\n}\r\n\r\n\r\nvoid TimeHelpers::SleepMs (int ms)\r\n{\r\n    usleep(ms * 1000);\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/Posix/TimeHelpers.h",
    "content": "#ifndef UNITTEST_TIMEHELPERS_H\r\n#define UNITTEST_TIMEHELPERS_H\r\n\r\n#include <sys/time.h>\r\n\r\nnamespace UnitTest {\r\n\r\nclass Timer\r\n{\r\npublic:\r\n    Timer();\r\n    void Start();\r\n    int GetTimeInMs() const;    \r\n\r\nprivate:\r\n    struct timeval m_startTime;    \r\n};\r\n\r\n\r\nnamespace TimeHelpers\r\n{\r\nvoid SleepMs (int ms);\r\n}\r\n\r\n\r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/ReportAssert.cpp",
    "content": "#include \"AssertException.h\"\r\n\r\nnamespace UnitTest {\r\n\r\nvoid ReportAssert(char const* description, char const* filename, int lineNumber)\r\n{\r\n    throw AssertException(description, filename, lineNumber);\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/ReportAssert.h",
    "content": "#ifndef UNITTEST_ASSERT_H\r\n#define UNITTEST_ASSERT_H\r\n\r\nnamespace UnitTest {\r\n\r\nvoid ReportAssert(char const* description, char const* filename, int lineNumber);\r\n    \r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/Test.cpp",
    "content": "#include \"Config.h\"\r\n#include \"Test.h\"\r\n#include \"TestList.h\"\r\n#include \"TestResults.h\"\r\n#include \"AssertException.h\"\r\n#include \"MemoryOutStream.h\"\r\n#include \"ExecuteTest.h\"\r\n\r\n#ifdef UNITTEST_POSIX\r\n    #include \"Posix/SignalTranslator.h\"\r\n#endif\r\n\r\nnamespace UnitTest {\r\n\r\nTestList& Test::GetTestList()\r\n{\r\n    static TestList s_list;\r\n    return s_list;\r\n}\r\n\r\nTest::Test(char const* testName, char const* suiteName, char const* filename, int lineNumber)\r\n    : m_details(testName, suiteName, filename, lineNumber)\r\n    , next(0)\r\n    , m_timeConstraintExempt(false)\r\n{\r\n}\r\n\r\nTest::~Test()\r\n{\r\n}\r\n\r\nvoid Test::Run()\r\n{\r\n\tExecuteTest(*this, m_details);\r\n}\r\n\r\nvoid Test::RunImpl() const\r\n{\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/Test.h",
    "content": "#ifndef UNITTEST_TEST_H\r\n#define UNITTEST_TEST_H\r\n\r\n#include \"TestDetails.h\"\r\n\r\nnamespace UnitTest {\r\n\r\nclass TestResults;\r\nclass TestList;\r\n\r\nclass Test\r\n{\r\npublic:\r\n    explicit Test(char const* testName, char const* suiteName = \"DefaultSuite\", char const* filename = \"\", int lineNumber = 0);\r\n    virtual ~Test();\r\n    void Run();\r\n\r\n    TestDetails const m_details;\r\n    Test* next;\r\n    mutable bool m_timeConstraintExempt;\r\n\r\n    static TestList& GetTestList();\r\n\r\n    virtual void RunImpl() const;\r\n\r\nprivate:\r\n\tTest(Test const&);\r\n    Test& operator =(Test const&);\r\n};\r\n\r\n\r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestDetails.cpp",
    "content": "#include \"TestDetails.h\"\r\n\r\nnamespace UnitTest {\r\n\r\nTestDetails::TestDetails(char const* testName_, char const* suiteName_, char const* filename_, int lineNumber_)\r\n    : suiteName(suiteName_)\r\n    , testName(testName_)\r\n    , filename(filename_)\r\n    , lineNumber(lineNumber_)\r\n{\r\n}\r\n\r\nTestDetails::TestDetails(const TestDetails& details, int lineNumber_)\r\n    : suiteName(details.suiteName)\r\n    , testName(details.testName)\r\n    , filename(details.filename)\r\n    , lineNumber(lineNumber_)\r\n{\r\n}\r\n\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestDetails.h",
    "content": "#ifndef UNITTEST_TESTDETAILS_H\r\n#define UNITTEST_TESTDETAILS_H\r\n\r\nnamespace UnitTest {\r\n\r\nclass TestDetails\r\n{\r\npublic:\r\n    TestDetails(char const* testName, char const* suiteName, char const* filename, int lineNumber);\r\n    TestDetails(const TestDetails& details, int lineNumber);\r\n\r\n    char const* const suiteName;\r\n    char const* const testName;\r\n    char const* const filename;\r\n    int const lineNumber;\r\n\r\n    TestDetails(TestDetails const&); // Why is it public? --> http://gcc.gnu.org/bugs.html#cxx_rvalbind\r\nprivate:\r\n    TestDetails& operator=(TestDetails const&);\r\n};\r\n\r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestList.cpp",
    "content": "#include \"TestList.h\"\r\n#include \"Test.h\"\r\n\r\n#include <cassert>\r\n\r\nnamespace UnitTest {\r\n\r\nTestList::TestList() \r\n    : m_head(0)\r\n    , m_tail(0)\r\n{\r\n}\r\n\r\nvoid TestList::Add(Test* test)\r\n{\r\n    if (m_tail == 0)\r\n    {\r\n        assert(m_head == 0);\r\n        m_head = test;\r\n        m_tail = test;\r\n    }\r\n    else\r\n    {\r\n        m_tail->next = test;\r\n        m_tail = test;\r\n    }\r\n}\r\n\r\nTest* TestList::GetHead() const\r\n{\r\n    return m_head;\r\n}\r\n\r\nListAdder::ListAdder(TestList& list, Test* test)\r\n{\r\n    list.Add(test);\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestList.h",
    "content": "#ifndef UNITTEST_TESTLIST_H\r\n#define UNITTEST_TESTLIST_H\r\n\r\n\r\nnamespace UnitTest {\r\n\r\nclass Test;\r\n\r\nclass TestList\r\n{\r\npublic:\r\n    TestList();\r\n    void Add (Test* test);\r\n\r\n    Test* GetHead() const;\r\n\r\nprivate:\r\n    Test* m_head;\r\n    Test* m_tail;\r\n};\r\n\r\n\r\nclass ListAdder\r\n{\r\npublic:\r\n    ListAdder(TestList& list, Test* test);\r\n};\r\n\r\n}\r\n\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestMacros.h",
    "content": "#ifndef UNITTEST_TESTMACROS_H\r\n#define UNITTEST_TESTMACROS_H\r\n\r\n#include \"Config.h\"\r\n#include \"ExecuteTest.h\"\r\n#include \"AssertException.h\"\r\n#include \"TestDetails.h\"\r\n#include \"MemoryOutStream.h\"\r\n\r\n#ifndef UNITTEST_POSIX\r\n\t#define UNITTEST_THROW_SIGNALS\r\n#else\r\n\t#include \"Posix/SignalTranslator.h\"\r\n#endif\r\n\r\n#ifdef TEST\r\n    #error UnitTest++ redefines TEST\r\n#endif\r\n\r\n#ifdef TEST_EX\r\n\t#error UnitTest++ redefines TEST_EX\r\n#endif\r\n\r\n#ifdef TEST_FIXTURE_EX\r\n\t#error UnitTest++ redefines TEST_FIXTURE_EX\r\n#endif\r\n\r\n#define SUITE(Name)                                                         \\\r\n\tnamespace Suite##Name {                                                        \\\r\n        namespace UnitTestSuite {                                           \\\r\n            inline char const* GetSuiteName () {                            \\\r\n                return #Name ;                                              \\\r\n            }                                                               \\\r\n        }                                                                   \\\r\n    }                                                                       \\\r\n\tnamespace Suite##Name\r\n\r\n#define TEST_EX(Name, List)                                                \\\r\n    class Test##Name : public UnitTest::Test                               \\\r\n    {                                                                      \\\r\n    public:                                                                \\\r\n\t\tTest##Name() : Test(#Name, UnitTestSuite::GetSuiteName(), __FILE__, __LINE__) {}  \\\r\n    private:                                                               \\\r\n        virtual void RunImpl() const;   \\\r\n    } test##Name##Instance;                                                \\\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t   \\\r\n    UnitTest::ListAdder adder##Name (List, &test##Name##Instance);         \\\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t   \\\r\n    void Test##Name::RunImpl() const\r\n\r\n\r\n#define TEST(Name) TEST_EX(Name, UnitTest::Test::GetTestList())\r\n\r\n\r\n#define TEST_FIXTURE_EX(Fixture, Name, List)                                         \\\r\n    class Fixture##Name##Helper : public Fixture\t\t\t\t\t\t\t\t\t \\\r\n\t{\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\tpublic:\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n        explicit Fixture##Name##Helper(UnitTest::TestDetails const& details) : m_details(details) {} \\\r\n        void RunImpl();                           \\\r\n        UnitTest::TestDetails const& m_details;                                      \\\r\n    private:                                                                         \\\r\n        Fixture##Name##Helper(Fixture##Name##Helper const&);                         \\\r\n        Fixture##Name##Helper& operator =(Fixture##Name##Helper const&);             \\\r\n    };                                                                               \\\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n    class Test##Fixture##Name : public UnitTest::Test                                \\\r\n    {                                                                                \\\r\n    public:                                                                          \\\r\n\t    Test##Fixture##Name() : Test(#Name, UnitTestSuite::GetSuiteName(), __FILE__, __LINE__) {} \\\r\n    private:                                                                         \\\r\n        virtual void RunImpl() const;             \\\r\n    } test##Fixture##Name##Instance;                                                 \\\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n    UnitTest::ListAdder adder##Fixture##Name (List, &test##Fixture##Name##Instance); \\\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n    void Test##Fixture##Name::RunImpl() const\t \\\r\n\t{\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\tbool ctorOk = false;\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\ttry {\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\t\tFixture##Name##Helper fixtureHelper(m_details);\t\t\t\t\t\t\t \\\r\n\t\t\tctorOk = true;\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\t\tUnitTest::ExecuteTest(fixtureHelper, m_details);\t\t\t\t\t \\\r\n\t\t}\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\tcatch (UnitTest::AssertException const& e)\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\t{\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\t\tUnitTest::CurrentTest::Results()->OnTestFailure(UnitTest::TestDetails(m_details.testName, m_details.suiteName, e.Filename(), e.LineNumber()), e.what()); \\\r\n\t\t}\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\tcatch (std::exception const& e)\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\t{\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\t\tUnitTest::MemoryOutStream stream;\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\t\tstream << \"Unhandled exception: \" << e.what();\t\t\t\t\t\t\t \\\r\n\t\t\tUnitTest::CurrentTest::Results()->OnTestFailure(m_details, stream.GetText());\t\t\t\t \\\r\n\t\t}\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\tcatch (...) {\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\t\tif (ctorOk)\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\t\t{\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t            UnitTest::CurrentTest::Results()->OnTestFailure(UnitTest::TestDetails(m_details, __LINE__),\t \\\r\n\t\t\t\t\t\"Unhandled exception while destroying fixture \" #Fixture);\t\t \\\r\n\t\t\t}\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\t\telse\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\t\t{\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\t\t\tUnitTest::CurrentTest::Results()->OnTestFailure(UnitTest::TestDetails(m_details, __LINE__),   \\\r\n\t\t\t\t\t\"Unhandled exception while constructing fixture \" #Fixture);         \\\r\n\t\t\t}\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n\t\t}\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \\\r\n    }                                                                                \\\r\n    void Fixture##Name##Helper::RunImpl()\r\n\r\n#define TEST_FIXTURE(Fixture,Name) TEST_FIXTURE_EX(Fixture, Name, UnitTest::Test::GetTestList())\r\n\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestReporter.cpp",
    "content": "#include \"TestReporter.h\"\r\n\r\nnamespace UnitTest {\r\n\r\n\r\nTestReporter::~TestReporter()\r\n{\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestReporter.h",
    "content": "#ifndef UNITTEST_TESTREPORTER_H\r\n#define UNITTEST_TESTREPORTER_H\r\n\r\nnamespace UnitTest {\r\n\r\nclass TestDetails;\r\n\r\nclass TestReporter\r\n{\r\npublic:\r\n    virtual ~TestReporter();\r\n\r\n    virtual void ReportTestStart(TestDetails const& test) = 0;\r\n    virtual void ReportFailure(TestDetails const& test, char const* failure) = 0;\r\n    virtual void ReportTestFinish(TestDetails const& test, float secondsElapsed) = 0;\r\n    virtual void ReportSummary(int totalTestCount, int failedTestCount, int failureCount, float secondsElapsed) = 0;\r\n};\r\n\r\n}\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestReporterStdout.cpp",
    "content": "#include \"TestReporterStdout.h\"\r\n#include <cstdio>\r\n\r\n#include \"TestDetails.h\"\r\n\r\nnamespace UnitTest {\r\n\r\nvoid TestReporterStdout::ReportFailure(TestDetails const& details, char const* failure)\r\n{\r\n#if defined(__APPLE__) || defined(__GNUG__)\r\n    char const* const errorFormat = \"%s:%d: error: Failure in %s: %s\\n\";\r\n#else\r\n    char const* const errorFormat = \"%s(%d): error: Failure in %s: %s\\n\";\r\n#endif\r\n\r\n\tusing namespace std;\r\n    printf(errorFormat, details.filename, details.lineNumber, details.testName, failure);\r\n}\r\n\r\nvoid TestReporterStdout::ReportTestStart(TestDetails const& /*test*/)\r\n{\r\n}\r\n\r\nvoid TestReporterStdout::ReportTestFinish(TestDetails const& /*test*/, float)\r\n{\r\n}\r\n\r\nvoid TestReporterStdout::ReportSummary(int const totalTestCount, int const failedTestCount,\r\n                                       int const failureCount, float secondsElapsed)\r\n{\r\n\tusing namespace std;\r\n\r\n    if (failureCount > 0)\r\n        printf(\"FAILURE: %d out of %d tests failed (%d failures).\\n\", failedTestCount, totalTestCount, failureCount);\r\n    else\r\n        printf(\"Success: %d tests passed.\\n\", totalTestCount);\r\n\r\n    printf(\"Test time: %.2f seconds.\\n\", secondsElapsed);\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestReporterStdout.h",
    "content": "#ifndef UNITTEST_TESTREPORTERSTDOUT_H\r\n#define UNITTEST_TESTREPORTERSTDOUT_H\r\n\r\n#include \"TestReporter.h\"\r\n\r\nnamespace UnitTest {\r\n\r\nclass TestReporterStdout : public TestReporter\r\n{\r\nprivate:\r\n    virtual void ReportTestStart(TestDetails const& test);\r\n    virtual void ReportFailure(TestDetails const& test, char const* failure);\r\n    virtual void ReportTestFinish(TestDetails const& test, float secondsElapsed);\r\n    virtual void ReportSummary(int totalTestCount, int failedTestCount, int failureCount, float secondsElapsed);\r\n};\r\n\r\n}\r\n\r\n#endif \r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestResults.cpp",
    "content": "#include \"TestResults.h\"\r\n#include \"TestReporter.h\"\r\n\r\n#include \"TestDetails.h\"\r\n\r\nnamespace UnitTest {\r\n\r\nTestResults::TestResults(TestReporter* testReporter)\r\n    : m_testReporter(testReporter)\r\n    , m_totalTestCount(0)\r\n    , m_failedTestCount(0)\r\n    , m_failureCount(0)\r\n    , m_currentTestFailed(false)\r\n{\r\n}\r\n\r\nvoid TestResults::OnTestStart(TestDetails const& test)\r\n{\r\n    ++m_totalTestCount;\r\n    m_currentTestFailed = false;\r\n    if (m_testReporter)\r\n        m_testReporter->ReportTestStart(test);\r\n}\r\n\r\nvoid TestResults::OnTestFailure(TestDetails const& test, char const* failure)\r\n{\r\n    ++m_failureCount;\r\n    if (!m_currentTestFailed)\r\n    {\r\n        ++m_failedTestCount;\r\n        m_currentTestFailed = true;\r\n    }\r\n\r\n    if (m_testReporter)\r\n        m_testReporter->ReportFailure(test, failure);\r\n}\r\n\r\nvoid TestResults::OnTestFinish(TestDetails const& test, float secondsElapsed)\r\n{\r\n    if (m_testReporter)\r\n        m_testReporter->ReportTestFinish(test, secondsElapsed);\r\n}\r\n\r\nint TestResults::GetTotalTestCount() const\r\n{\r\n    return m_totalTestCount;\r\n}\r\n\r\nint TestResults::GetFailedTestCount() const\r\n{\r\n    return m_failedTestCount;\r\n}\r\n\r\nint TestResults::GetFailureCount() const\r\n{\r\n    return m_failureCount;\r\n}\r\n\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestResults.h",
    "content": "#ifndef UNITTEST_TESTRESULTS_H\r\n#define UNITTEST_TESTRESULTS_H\r\n\r\nnamespace UnitTest {\r\n\r\nclass TestReporter;\r\nclass TestDetails;\r\n\r\nclass TestResults\r\n{\r\npublic:\r\n    explicit TestResults(TestReporter* reporter = 0);\r\n\r\n    void OnTestStart(TestDetails const& test);\r\n    void OnTestFailure(TestDetails const& test, char const* failure);\r\n    void OnTestFinish(TestDetails const& test, float secondsElapsed);\r\n\r\n    int GetTotalTestCount() const;\r\n    int GetFailedTestCount() const;\r\n    int GetFailureCount() const;\r\n\r\nprivate:\r\n    TestReporter* m_testReporter;\r\n    int m_totalTestCount;\r\n    int m_failedTestCount;\r\n    int m_failureCount;\r\n\r\n    bool m_currentTestFailed;\r\n\r\n    TestResults(TestResults const&);\r\n    TestResults& operator =(TestResults const&);\r\n};\r\n\r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestRunner.cpp",
    "content": "#include \"TestRunner.h\"\r\n#include \"TestResults.h\"\r\n#include \"TestReporter.h\"\r\n#include \"TestReporterStdout.h\"\r\n#include \"TimeHelpers.h\"\r\n#include \"MemoryOutStream.h\"\r\n\r\n#include <cstring>\r\n\r\n\r\nnamespace UnitTest {\r\n\r\nint RunAllTests()\r\n{\r\n\tTestReporterStdout reporter;\r\n\tTestRunner runner(reporter);\r\n\treturn runner.RunTestsIf(Test::GetTestList(), NULL, True(), 0);\r\n}\r\n\r\n\r\nTestRunner::TestRunner(TestReporter& reporter)\r\n\t: m_reporter(&reporter)\r\n\t, m_result(new TestResults(&reporter))\r\n\t, m_timer(new Timer)\r\n{\r\n\tm_timer->Start();\r\n}\r\n\r\nTestRunner::~TestRunner()\r\n{\r\n\tdelete m_result;\r\n\tdelete m_timer;\r\n}\r\n\r\nint TestRunner::Finish() const\r\n{\r\n    float const secondsElapsed = m_timer->GetTimeInMs() / 1000.0f;\r\n    m_reporter->ReportSummary(m_result->GetTotalTestCount(), \r\n\t\t\t\t\t\t\t  m_result->GetFailedTestCount(), \r\n\t\t\t\t\t\t\t  m_result->GetFailureCount(), \r\n\t\t\t\t\t\t\t  secondsElapsed);\r\n    \r\n\treturn m_result->GetFailureCount();\r\n}\r\n\r\nbool TestRunner::IsTestInSuite(const Test* const curTest, char const* suiteName) const\r\n{\r\n\tusing namespace std;\r\n\treturn (suiteName == NULL) || !strcmp(curTest->m_details.suiteName, suiteName);\r\n}\r\n\r\nvoid TestRunner::RunTest(TestResults* const result, Test* const curTest, int const maxTestTimeInMs) const\r\n{\r\n\tCurrentTest::Results() = result;\r\n\r\n\tTimer testTimer;\r\n\ttestTimer.Start();\r\n\r\n\tresult->OnTestStart(curTest->m_details);\r\n\r\n\tcurTest->Run();\r\n\r\n\tint const testTimeInMs = testTimer.GetTimeInMs();\r\n\tif (maxTestTimeInMs > 0 && testTimeInMs > maxTestTimeInMs && !curTest->m_timeConstraintExempt)\r\n\t{\r\n\t    MemoryOutStream stream;\r\n\t    stream << \"Global time constraint failed. Expected under \" << maxTestTimeInMs <<\r\n\t            \"ms but took \" << testTimeInMs << \"ms.\";\r\n\r\n\t    result->OnTestFailure(curTest->m_details, stream.GetText());\r\n\t}\r\n\r\n\tresult->OnTestFinish(curTest->m_details, testTimeInMs/1000.0f);\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestRunner.h",
    "content": "#ifndef UNITTEST_TESTRUNNER_H\r\n#define UNITTEST_TESTRUNNER_H\r\n\r\n#include \"Test.h\"\r\n#include \"TestList.h\"\r\n#include \"CurrentTest.h\"\r\n\r\nnamespace UnitTest {\r\n\r\nclass TestReporter;\r\nclass TestResults;\r\nclass Timer;\r\n\r\nint RunAllTests();\r\n\r\nstruct True\r\n{\r\n\tbool operator()(const Test* const) const\r\n\t{\r\n\t\treturn true;\t\r\n\t}\r\n};\r\n\r\nclass TestRunner\r\n{\r\npublic:\r\n\texplicit TestRunner(TestReporter& reporter);\r\n\t~TestRunner();\r\n\r\n\ttemplate <class Predicate>\r\n\tint RunTestsIf(TestList const& list, char const* suiteName, \r\n\t\t\t\t   const Predicate& predicate, int maxTestTimeInMs) const\r\n\t{\r\n\t    Test* curTest = list.GetHead();\r\n\r\n\t    while (curTest != 0)\r\n\t    {\r\n\t\t    if (IsTestInSuite(curTest,suiteName) && predicate(curTest))\r\n\t\t\t{\r\n\t\t\t\tRunTest(m_result, curTest, maxTestTimeInMs);\r\n\t\t\t}\r\n\r\n\t\t\tcurTest = curTest->next;\r\n\t    }\r\n\r\n\t    return Finish();\r\n\t}\t\r\n\r\nprivate:\r\n\tTestReporter* m_reporter;\r\n\tTestResults* m_result;\r\n\tTimer* m_timer;\r\n\r\n\tint Finish() const;\r\n\tbool IsTestInSuite(const Test* const curTest, char const* suiteName) const;\r\n\tvoid RunTest(TestResults* const result, Test* const curTest, int const maxTestTimeInMs) const;\r\n};\r\n\r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TestSuite.h",
    "content": "#ifndef UNITTEST_TESTSUITE_H\r\n#define UNITTEST_TESTSUITE_H\r\n\r\nnamespace UnitTestSuite {\r\n\r\n    inline char const* GetSuiteName ()\r\n    {\r\n        return \"DefaultSuite\";\r\n    }\r\n\r\n}\r\n\r\n#endif\r\n\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TimeConstraint.cpp",
    "content": "#include \"TimeConstraint.h\"\r\n#include \"TestResults.h\"\r\n#include \"MemoryOutStream.h\"\r\n#include \"CurrentTest.h\"\r\n\r\nnamespace UnitTest {\r\n\r\n\r\nTimeConstraint::TimeConstraint(int ms, TestDetails const& details)\r\n\t: m_details(details)\r\n    , m_maxMs(ms)\r\n{\r\n    m_timer.Start();\r\n}\r\n\r\nTimeConstraint::~TimeConstraint()\r\n{\r\n    int const totalTimeInMs = m_timer.GetTimeInMs();\r\n    if (totalTimeInMs > m_maxMs)\r\n    {\r\n        MemoryOutStream stream;\r\n        stream << \"Time constraint failed. Expected to run test under \" << m_maxMs <<\r\n                  \"ms but took \" << totalTimeInMs << \"ms.\";\r\n\r\n\t\tUnitTest::CurrentTest::Results()->OnTestFailure(m_details, stream.GetText());\r\n    }\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TimeConstraint.h",
    "content": "#ifndef UNITTEST_TIMECONSTRAINT_H\r\n#define UNITTEST_TIMECONSTRAINT_H\r\n\r\n#include \"TimeHelpers.h\"\r\n\r\nnamespace UnitTest {\r\n\r\nclass TestResults;\r\nclass TestDetails;\r\n\r\nclass TimeConstraint\r\n{\r\npublic:\r\n    TimeConstraint(int ms, TestDetails const& details);\r\n    ~TimeConstraint();\r\n\r\nprivate:\r\n    void operator=(TimeConstraint const&); \r\n\tTimeConstraint(TimeConstraint const&);\r\n\r\n\tTimer m_timer;\r\n    TestDetails const& m_details;\r\n\tint const m_maxMs;\r\n};\r\n\r\n#define UNITTEST_TIME_CONSTRAINT(ms) \\\r\n\tUnitTest::TimeConstraint unitTest__timeConstraint__(ms, UnitTest::TestDetails(m_details, __LINE__))\r\n\r\n#define UNITTEST_TIME_CONSTRAINT_EXEMPT() do { m_timeConstraintExempt = true; } while (0)\r\n\r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/TimeHelpers.h",
    "content": "#include \"Config.h\"\r\n\r\n#if defined UNITTEST_POSIX\r\n    #include \"Posix/TimeHelpers.h\"\r\n#else\r\n    #include \"Win32/TimeHelpers.h\"\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/UnitTest++.h",
    "content": "#ifndef UNITTESTCPP_H\r\n#define UNITTESTCPP_H\r\n\r\n//lint -esym(1509,*Fixture)\r\n\r\n#include \"Config.h\"\r\n#include \"Test.h\"\r\n#include \"TestList.h\"\r\n#include \"TestSuite.h\"\r\n#include \"TestResults.h\"\r\n\r\n#include \"TestMacros.h\"\r\n\r\n#include \"CheckMacros.h\"\r\n#include \"TestRunner.h\"\r\n#include \"TimeConstraint.h\"\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/Win32/TimeHelpers.cpp",
    "content": "#include \"TimeHelpers.h\"\r\n#include <windows.h>\r\n\r\nnamespace UnitTest {\r\n\r\nTimer::Timer()\r\n    : m_startTime(0)\r\n\t, m_threadHandle(::GetCurrentThread())\r\n{\r\n#if defined(_MSC_VER) && (_MSC_VER == 1200) // VC6 doesn't have DWORD_PTR?\r\n\ttypedef unsigned long DWORD_PTR;\r\n#endif\r\n\r\n    DWORD_PTR systemMask;\r\n    ::GetProcessAffinityMask(GetCurrentProcess(), &m_processAffinityMask, &systemMask);\r\n    \r\n    ::SetThreadAffinityMask(m_threadHandle, 1);\r\n\t::QueryPerformanceFrequency(reinterpret_cast< LARGE_INTEGER* >(&m_frequency));\r\n    ::SetThreadAffinityMask(m_threadHandle, m_processAffinityMask);\r\n}\r\n\r\nvoid Timer::Start()\r\n{\r\n    m_startTime = GetTime();\r\n}\r\n\r\nint Timer::GetTimeInMs() const\r\n{\r\n    __int64 const elapsedTime = GetTime() - m_startTime;\r\n\tdouble const seconds = double(elapsedTime) / double(m_frequency);\r\n\treturn int(seconds * 1000.0f);\r\n}\r\n\r\n__int64 Timer::GetTime() const\r\n{\r\n    LARGE_INTEGER curTime;\r\n    ::SetThreadAffinityMask(m_threadHandle, 1);\r\n\t::QueryPerformanceCounter(&curTime);\r\n    ::SetThreadAffinityMask(m_threadHandle, m_processAffinityMask);\r\n    return curTime.QuadPart;\r\n}\r\n\r\n\r\n\r\nvoid TimeHelpers::SleepMs(int const ms)\r\n{\r\n\t::Sleep(ms);\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/Win32/TimeHelpers.h",
    "content": "#ifndef UNITTEST_TIMEHELPERS_H\r\n#define UNITTEST_TIMEHELPERS_H\r\n\r\n#include \"../Config.h\"\r\n\r\n\r\n#ifdef UNITTEST_MINGW\r\n    #ifndef __int64\r\n        #define __int64 long long\r\n    #endif\r\n#endif\r\n\r\nnamespace UnitTest {\r\n\r\nclass Timer\r\n{\r\npublic:\r\n    Timer();\r\n\tvoid Start();\r\n\tint GetTimeInMs() const;    \r\n\r\nprivate:\r\n    __int64 GetTime() const;\r\n\r\n    void* m_threadHandle;\r\n\r\n#if defined(_WIN64)\r\n    unsigned __int64 m_processAffinityMask;\r\n#else\r\n    unsigned long m_processAffinityMask;\r\n#endif\r\n\r\n\t__int64 m_startTime;\r\n\t__int64 m_frequency;\r\n};\r\n\r\n\r\nnamespace TimeHelpers\r\n{\r\nvoid SleepMs (int ms);\r\n}\r\n\r\n\r\n}\r\n\r\n\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/XmlTestReporter.cpp",
    "content": "#include \"XmlTestReporter.h\"\r\n#include \"Config.h\"\r\n\r\n#include <iostream>\r\n#include <sstream>\r\n#include <string>\r\n\r\nusing std::string;\r\nusing std::ostringstream;\r\nusing std::ostream;\r\n\r\nnamespace {\r\n\r\nvoid ReplaceChar(string& str, char c, string const& replacement)\r\n{\r\n    for (size_t pos = str.find(c); pos != string::npos; pos = str.find(c, pos + 1))\r\n        str.replace(pos, 1, replacement);\r\n}\r\n\r\nstring XmlEscape(string const& value)\r\n{\r\n    string escaped = value;\r\n\r\n    ReplaceChar(escaped, '&', \"&amp;\");\r\n    ReplaceChar(escaped, '<', \"&lt;\");\r\n    ReplaceChar(escaped, '>', \"&gt;\");\r\n    ReplaceChar(escaped, '\\'', \"&apos;\");\r\n    ReplaceChar(escaped, '\\\"', \"&quot;\");\r\n \r\n    return escaped;\r\n}\r\n\r\nstring BuildFailureMessage(string const& file, int line, string const& message)\r\n{\r\n    ostringstream failureMessage;\r\n    failureMessage << file << \"(\" << line << \") : \" << message;\r\n    return failureMessage.str();\r\n}\r\n\r\n}\r\n\r\nnamespace UnitTest {\r\n\r\nXmlTestReporter::XmlTestReporter(ostream& ostream)\r\n    : m_ostream(ostream)\r\n{\r\n}\r\n\r\nvoid XmlTestReporter::ReportSummary(int totalTestCount, int failedTestCount,\r\n                                    int failureCount, float secondsElapsed)\r\n{\r\n    AddXmlElement(m_ostream, NULL);\r\n\r\n    BeginResults(m_ostream, totalTestCount, failedTestCount, failureCount, secondsElapsed);\r\n\r\n    DeferredTestResultList const& results = GetResults();\r\n    for (DeferredTestResultList::const_iterator i = results.begin(); i != results.end(); ++i)\r\n    {\r\n        BeginTest(m_ostream, *i);\r\n\r\n        if (i->failed)\r\n            AddFailure(m_ostream, *i);\r\n\r\n        EndTest(m_ostream, *i);\r\n    }\r\n\r\n    EndResults(m_ostream);\r\n}\r\n\r\nvoid XmlTestReporter::AddXmlElement(ostream& os, char const* encoding)\r\n{\r\n    os << \"<?xml version=\\\"1.0\\\"\";\r\n\r\n    if (encoding != NULL)\r\n        os << \" encoding=\\\"\" << encoding << \"\\\"\";\r\n\r\n    os << \"?>\";\r\n}\r\n\r\nvoid XmlTestReporter::BeginResults(std::ostream& os, int totalTestCount, int failedTestCount, \r\n                                   int failureCount, float secondsElapsed)\r\n{\r\n   os << \"<unittest-results\"\r\n       << \" tests=\\\"\" << totalTestCount << \"\\\"\" \r\n       << \" failedtests=\\\"\" << failedTestCount << \"\\\"\" \r\n       << \" failures=\\\"\" << failureCount << \"\\\"\" \r\n       << \" time=\\\"\" << secondsElapsed << \"\\\"\"\r\n       << \">\";\r\n}\r\n\r\nvoid XmlTestReporter::EndResults(std::ostream& os)\r\n{\r\n    os << \"</unittest-results>\";\r\n}\r\n\r\nvoid XmlTestReporter::BeginTest(std::ostream& os, DeferredTestResult const& result)\r\n{\r\n    os << \"<test\"\r\n        << \" suite=\\\"\" << result.suiteName << \"\\\"\" \r\n        << \" name=\\\"\" << result.testName << \"\\\"\"\r\n        << \" time=\\\"\" << result.timeElapsed << \"\\\"\";\r\n}\r\n\r\nvoid XmlTestReporter::EndTest(std::ostream& os, DeferredTestResult const& result)\r\n{\r\n    if (result.failed)\r\n        os << \"</test>\";\r\n    else\r\n        os << \"/>\";\r\n}\r\n\r\nvoid XmlTestReporter::AddFailure(std::ostream& os, DeferredTestResult const& result)\r\n{\r\n    os << \">\"; // close <test> element\r\n\r\n    for (DeferredTestResult::FailureVec::const_iterator it = result.failures.begin(); \r\n         it != result.failures.end(); \r\n         ++it)\r\n    {\r\n        string const escapedMessage = XmlEscape(it->second);\r\n        string const message = BuildFailureMessage(result.failureFile, it->first, escapedMessage);\r\n\r\n        os << \"<failure\" << \" message=\\\"\" << message << \"\\\"\" << \"/>\";\r\n    }\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/XmlTestReporter.h",
    "content": "#ifndef UNITTEST_XMLTESTREPORTER_H\r\n#define UNITTEST_XMLTESTREPORTER_H\r\n\r\n#include \"DeferredTestReporter.h\"\r\n\r\n#include <iosfwd>\r\n\r\nnamespace UnitTest\r\n{\r\n\r\nclass XmlTestReporter : public DeferredTestReporter\r\n{\r\npublic:\r\n    explicit XmlTestReporter(std::ostream& ostream);\r\n\r\n    virtual void ReportSummary(int totalTestCount, int failedTestCount, int failureCount, float secondsElapsed);\r\n\r\nprivate:\r\n    XmlTestReporter(XmlTestReporter const&);\r\n    XmlTestReporter& operator=(XmlTestReporter const&);\r\n\r\n    void AddXmlElement(std::ostream& os, char const* encoding);\r\n    void BeginResults(std::ostream& os, int totalTestCount, int failedTestCount, int failureCount, float secondsElapsed);\r\n    void EndResults(std::ostream& os);\r\n    void BeginTest(std::ostream& os, DeferredTestResult const& result);\r\n    void AddFailure(std::ostream& os, DeferredTestResult const& result);\r\n    void EndTest(std::ostream& os, DeferredTestResult const& result);\r\n\r\n    std::ostream& m_ostream;\r\n};\r\n\r\n}\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/Main.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"../TestReporterStdout.h\"\r\n\r\n\r\nint main(int, char const *[])\r\n{\r\n    return UnitTest::RunAllTests();\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/RecordingReporter.h",
    "content": "#ifndef UNITTEST_RECORDINGREPORTER_H\r\n#define UNITTEST_RECORDINGREPORTER_H\r\n\r\n#include \"../TestReporter.h\"\r\n#include <cstring>\r\n\r\n#include \"../TestDetails.h\"\r\n\r\nstruct RecordingReporter : public UnitTest::TestReporter\r\n{\r\nprivate:\r\n    enum { kMaxStringLength = 256 };\r\n\r\npublic:\r\n    RecordingReporter()\r\n        : testRunCount(0)\r\n        , testFailedCount(0)\r\n        , lastFailedLine(0)\r\n        , testFinishedCount(0)\r\n        , lastFinishedTestTime(0)\r\n        , summaryTotalTestCount(0)\r\n        , summaryFailedTestCount(0)\r\n        , summaryFailureCount(0)\r\n        , summarySecondsElapsed(0)\r\n    {\r\n        lastStartedSuite[0] = '\\0';\r\n        lastStartedTest[0] = '\\0';\r\n        lastFailedFile[0] = '\\0';\r\n        lastFailedSuite[0] = '\\0';\r\n        lastFailedTest[0] = '\\0';\r\n        lastFailedMessage[0] = '\\0';\r\n        lastFinishedSuite[0] = '\\0';\r\n        lastFinishedTest[0] = '\\0';\r\n    }\r\n\r\n    virtual void ReportTestStart(UnitTest::TestDetails const& test)\r\n    {\r\n\t\tusing namespace std;\r\n\r\n        ++testRunCount;\r\n        strcpy(lastStartedSuite, test.suiteName);\r\n        strcpy(lastStartedTest, test.testName);\r\n    }\r\n\r\n    virtual void ReportFailure(UnitTest::TestDetails const& test, char const* failure)\r\n    {\r\n\t\tusing namespace std;\r\n\r\n\t\t++testFailedCount;\r\n        strcpy(lastFailedFile, test.filename);\r\n        lastFailedLine = test.lineNumber;\r\n        strcpy(lastFailedSuite, test.suiteName);\r\n        strcpy(lastFailedTest, test.testName);\r\n        strcpy(lastFailedMessage, failure);\r\n    }\r\n\r\n    virtual void ReportTestFinish(UnitTest::TestDetails const& test, float testDuration)\r\n    {\r\n\t\tusing namespace std;\r\n\r\n\t\t++testFinishedCount;\r\n        strcpy(lastFinishedSuite, test.suiteName);\r\n        strcpy(lastFinishedTest, test.testName);\r\n        lastFinishedTestTime = testDuration;\r\n    }\r\n\r\n    virtual void ReportSummary(int totalTestCount, int failedTestCount, int failureCount, float secondsElapsed) \r\n    {\r\n        summaryTotalTestCount = totalTestCount;\r\n        summaryFailedTestCount = failedTestCount;\r\n        summaryFailureCount = failureCount;\r\n        summarySecondsElapsed = secondsElapsed;\r\n    }\r\n\r\n    int testRunCount;\r\n    char lastStartedSuite[kMaxStringLength];\r\n    char lastStartedTest[kMaxStringLength];\r\n\r\n    int testFailedCount;\r\n    char lastFailedFile[kMaxStringLength];\r\n    int lastFailedLine;\r\n    char lastFailedSuite[kMaxStringLength];\r\n    char lastFailedTest[kMaxStringLength];\r\n    char lastFailedMessage[kMaxStringLength];\r\n\r\n    int testFinishedCount;\r\n    char lastFinishedSuite[kMaxStringLength];\r\n    char lastFinishedTest[kMaxStringLength];\r\n    float lastFinishedTestTime;\r\n\r\n    int summaryTotalTestCount;\r\n    int summaryFailedTestCount;\r\n    int summaryFailureCount;\r\n    float summarySecondsElapsed;\r\n};\r\n\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/ScopedCurrentTest.h",
    "content": "#ifndef UNITTEST_SCOPEDCURRENTTEST_H\r\n#define UNITTEST_SCOPEDCURRENTTEST_H\r\n\r\n#include \"../CurrentTest.h\"\r\n#include <cstddef>\r\n\r\nclass ScopedCurrentTest\r\n{\r\npublic:\r\n\tScopedCurrentTest()\r\n\t\t: m_oldTestResults(UnitTest::CurrentTest::Results())\r\n\t\t, m_oldTestDetails(UnitTest::CurrentTest::Details())\r\n\t{\r\n\t}\r\n\r\n\texplicit ScopedCurrentTest(UnitTest::TestResults& newResults, const UnitTest::TestDetails* newDetails = NULL)\r\n\t\t: m_oldTestResults(UnitTest::CurrentTest::Results())\r\n\t\t, m_oldTestDetails(UnitTest::CurrentTest::Details())\r\n\t{\r\n\t\tUnitTest::CurrentTest::Results() = &newResults;\r\n\r\n\t\tif (newDetails != NULL)\r\n\t\t\tUnitTest::CurrentTest::Details() = newDetails;\r\n\t}\r\n\r\n\t~ScopedCurrentTest()\r\n\t{\r\n\t\tUnitTest::CurrentTest::Results() = m_oldTestResults;\r\n\t\tUnitTest::CurrentTest::Details() = m_oldTestDetails;\r\n\t}\r\n\r\nprivate:\r\n\tUnitTest::TestResults* m_oldTestResults;\r\n\tconst UnitTest::TestDetails* m_oldTestDetails;\r\n};\r\n\r\n#endif\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestAssertHandler.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"../AssertException.h\"\r\n#include \"../ReportAssert.h\"\r\n\r\nusing namespace UnitTest;\r\n\r\nnamespace {\r\n\r\nTEST(ReportAssertThrowsAssertException)\r\n{\r\n    bool caught = false;\r\n\r\n    try\r\n    {\r\n        ReportAssert(\"\", \"\", 0);\r\n    }\r\n    catch(AssertException const&)\r\n    {\r\n        caught = true;\r\n    }\r\n\r\n    CHECK (true == caught);\r\n}\r\n\r\nTEST(ReportAssertSetsCorrectInfoInException)\r\n{\r\n    const int lineNumber = 12345;\r\n    const char* description = \"description\";\r\n    const char* filename = \"filename\";\r\n\r\n    try\r\n    {\r\n        ReportAssert(description, filename, lineNumber);\r\n    }\r\n    catch(AssertException const& e)\r\n    {\r\n        CHECK_EQUAL(description, e.what());\r\n        CHECK_EQUAL(filename, e.Filename());\r\n        CHECK_EQUAL(lineNumber, e.LineNumber());\r\n    }\r\n}\r\n\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestCheckMacros.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"../CurrentTest.h\"\r\n#include \"RecordingReporter.h\"\r\n#include \"ScopedCurrentTest.h\"\r\n\r\nusing namespace std;\r\n\r\nnamespace {\r\n\r\nTEST(CheckSucceedsOnTrue)\r\n{\r\n    bool failure = true;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\t\tCHECK(true);\r\n\r\n\t\tfailure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(!failure);\r\n}\r\n\r\nTEST(CheckFailsOnFalse)\r\n{\r\n    bool failure = false;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK(false);\r\n        failure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(failure);\r\n}\r\n\r\nTEST(FailureReportsCorrectTestName)\r\n{\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK(false);\r\n    }\r\n\r\n    CHECK_EQUAL(m_details.testName, reporter.lastFailedTest);\r\n}\r\n\r\nTEST(CheckFailureIncludesCheckContents)\r\n{\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        const bool yaddayadda = false;\r\n        CHECK(yaddayadda);\r\n    }\r\n\r\n    CHECK(strstr(reporter.lastFailedMessage, \"yaddayadda\"));\r\n}\r\n\r\nint ThrowingFunction()\r\n{\r\n    throw \"Doh\";\r\n}\r\n\r\nTEST(CheckFailsOnException)\r\n{\r\n    bool failure = false;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK(ThrowingFunction() == 1);\r\n        failure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(failure);\r\n}\r\n\r\nTEST(CheckFailureBecauseOfExceptionIncludesCheckContents)\r\n{\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK(ThrowingFunction() == 1);\r\n    }\r\n\r\n    CHECK(strstr(reporter.lastFailedMessage, \"ThrowingFunction() == 1\"));\r\n}\r\n\r\nTEST(CheckEqualSucceedsOnEqual)\r\n{\r\n    bool failure = true;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK_EQUAL(1, 1);\r\n        failure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(!failure);\r\n}\r\n\r\nTEST(CheckEqualFailsOnNotEqual)\r\n{\r\n    bool failure = false;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK_EQUAL(1, 2);\r\n        failure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(failure);\r\n}\r\n\r\nTEST(CheckEqualFailsOnException)\r\n{\r\n    bool failure = false;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK_EQUAL(ThrowingFunction(), 1);\r\n        failure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(failure);\r\n}\r\n\r\nTEST(CheckEqualFailureContainsCorrectDetails)\r\n{\r\n    int line = 0;\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tUnitTest::TestDetails const testDetails(\"testName\", \"suiteName\", \"filename\", -1);\r\n\t\tScopedCurrentTest scopedResults(testResults, &testDetails);\r\n\r\n\t\tCHECK_EQUAL(1, 123);    line = __LINE__;\r\n    }\r\n\r\n    CHECK_EQUAL(\"testName\", reporter.lastFailedTest);\r\n    CHECK_EQUAL(\"suiteName\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL(\"filename\", reporter.lastFailedFile);\r\n    CHECK_EQUAL(line, reporter.lastFailedLine);\r\n}\r\n\r\nTEST(CheckEqualFailureBecauseOfExceptionContainsCorrectDetails)\r\n{\r\n    int line = 0;\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tUnitTest::TestDetails const testDetails(\"testName\", \"suiteName\", \"filename\", -1);\r\n\t\tScopedCurrentTest scopedResults(testResults, &testDetails);\r\n\r\n\t\tCHECK_EQUAL(ThrowingFunction(), 123);    line = __LINE__;\r\n    }\r\n\r\n    CHECK_EQUAL(\"testName\", reporter.lastFailedTest);\r\n    CHECK_EQUAL(\"suiteName\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL(\"filename\", reporter.lastFailedFile);\r\n    CHECK_EQUAL(line, reporter.lastFailedLine);\r\n}\r\n\r\nTEST(CheckEqualFailureBecauseOfExceptionIncludesCheckContents)\r\n{\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK_EQUAL(ThrowingFunction(), 123);\r\n    }\r\n\r\n    CHECK(strstr(reporter.lastFailedMessage, \"ThrowingFunction()\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"123\"));\r\n}\r\n\r\nint g_sideEffect = 0;\r\nint FunctionWithSideEffects()\r\n{\r\n    ++g_sideEffect;\r\n    return 1;\r\n}\r\n\r\nTEST(CheckEqualDoesNotHaveSideEffectsWhenPassing)\r\n{\r\n    g_sideEffect = 0;\r\n    {\r\n        UnitTest::TestResults testResults;\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK_EQUAL(1, FunctionWithSideEffects());\r\n    }\r\n    CHECK_EQUAL(1, g_sideEffect);\r\n}\r\n\r\nTEST(CheckEqualDoesNotHaveSideEffectsWhenFailing)\r\n{\r\n    g_sideEffect = 0;\r\n    {\r\n        UnitTest::TestResults testResults;\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK_EQUAL(2, FunctionWithSideEffects());\r\n    }\r\n    CHECK_EQUAL(1, g_sideEffect);\r\n}\r\n\r\n\r\nTEST(CheckCloseSucceedsOnEqual)\r\n{\r\n    bool failure = true;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK_CLOSE (1.0f, 1.001f, 0.01f);\r\n        failure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(!failure);\r\n}\r\n\r\nTEST(CheckCloseFailsOnNotEqual)\r\n{\r\n    bool failure = false;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK_CLOSE (1.0f, 1.1f, 0.01f);\r\n        failure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(failure);\r\n}\r\n\r\nTEST(CheckCloseFailsOnException)\r\n{\r\n    bool failure = false;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK_CLOSE ((float)ThrowingFunction(), 1.0001f, 0.1f);\r\n        failure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(failure);\r\n}\r\n\r\nTEST(CheckCloseFailureContainsCorrectDetails)\r\n{\r\n    int line = 0;\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tUnitTest::TestDetails testDetails(\"test\", \"suite\", \"filename\", -1);\r\n\t\tScopedCurrentTest scopedResults(testResults, &testDetails);\r\n\r\n\t\tCHECK_CLOSE (1.0f, 1.1f, 0.01f);    line = __LINE__;\r\n    }\r\n\r\n    CHECK_EQUAL(\"test\", reporter.lastFailedTest);\r\n    CHECK_EQUAL(\"suite\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL(\"filename\", reporter.lastFailedFile);\r\n    CHECK_EQUAL(line, reporter.lastFailedLine);\r\n}\r\n\r\nTEST(CheckCloseFailureBecauseOfExceptionContainsCorrectDetails)\r\n{\r\n    int line = 0;\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tUnitTest::TestDetails testDetails(\"closeTest\", \"closeSuite\", \"filename\", -1);\r\n\t\tScopedCurrentTest scopedResults(testResults, &testDetails);\r\n        CHECK_CLOSE ((float)ThrowingFunction(), 1.0001f, 0.1f);    line = __LINE__;\r\n    }\r\n\r\n    CHECK_EQUAL(\"closeTest\", reporter.lastFailedTest);\r\n    CHECK_EQUAL(\"closeSuite\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL(\"filename\", reporter.lastFailedFile);\r\n    CHECK_EQUAL(line, reporter.lastFailedLine);\r\n}\r\n\r\nTEST(CheckCloseFailureBecauseOfExceptionIncludesCheckContents)\r\n{\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK_CLOSE ((float)ThrowingFunction(), 1.0001f, 0.1f);\r\n    }\r\n\r\n    CHECK(strstr(reporter.lastFailedMessage, \"(float)ThrowingFunction()\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"1.0001f\"));\r\n}\r\n\r\nTEST(CheckCloseDoesNotHaveSideEffectsWhenPassing)\r\n{\r\n    g_sideEffect = 0;\r\n    {\r\n        UnitTest::TestResults testResults;\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK_CLOSE (1, FunctionWithSideEffects(), 0.1f);\r\n    }\r\n    CHECK_EQUAL(1, g_sideEffect);\r\n}\r\n\r\nTEST(CheckCloseDoesNotHaveSideEffectsWhenFailing)\r\n{\r\n    g_sideEffect = 0;\r\n    {\r\n        UnitTest::TestResults testResults;\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        CHECK_CLOSE (2, FunctionWithSideEffects(), 0.1f);\r\n    }\r\n    CHECK_EQUAL(1, g_sideEffect);\r\n}\r\n\r\n\r\nclass ThrowingObject\r\n{\r\npublic:\r\n    float operator[](int) const\r\n    {\r\n        throw \"Test throw\";\r\n    }\r\n};\r\n\r\n\r\nTEST(CheckArrayCloseSucceedsOnEqual)\r\n{\r\n    bool failure = true;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n        const float data[4] = { 0, 1, 2, 3 };\r\n        CHECK_ARRAY_CLOSE (data, data, 4, 0.01f);\r\n        failure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(!failure);\r\n}\r\n\r\nTEST(CheckArrayCloseFailsOnNotEqual)\r\n{\r\n    bool failure = false;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tint const data1[4] = { 0, 1, 2, 3 };\r\n        int const data2[4] = { 0, 1, 3, 3 };\r\n\t\tCHECK_ARRAY_CLOSE (data1, data2, 4, 0.01f);\r\n\r\n\t\tfailure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(failure);\r\n}\r\n\r\nTEST(CheckArrayCloseFailureIncludesCheckExpectedAndActual)\r\n{\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tint const data1[4] = { 0, 1, 2, 3 };\r\n        int const data2[4] = { 0, 1, 3, 3 };\r\n        CHECK_ARRAY_CLOSE (data1, data2, 4, 0.01f);\r\n    }\r\n\r\n    CHECK(strstr(reporter.lastFailedMessage, \"xpected [ 0 1 2 3 ]\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"was [ 0 1 3 3 ]\"));\r\n}\r\n\r\nTEST(CheckArrayCloseFailureContainsCorrectDetails)\r\n{\r\n    int line = 0;\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tUnitTest::TestDetails testDetails(\"arrayCloseTest\", \"arrayCloseSuite\", \"filename\", -1);\r\n\t\tScopedCurrentTest scopedResults(testResults, &testDetails);\r\n\r\n\t\tint const data1[4] = { 0, 1, 2, 3 };\r\n        int const data2[4] = { 0, 1, 3, 3 };\r\n        CHECK_ARRAY_CLOSE (data1, data2, 4, 0.01f);     line = __LINE__;\r\n    }\r\n\r\n    CHECK_EQUAL(\"arrayCloseTest\", reporter.lastFailedTest);\r\n    CHECK_EQUAL(\"arrayCloseSuite\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL(\"filename\", reporter.lastFailedFile);\r\n    CHECK_EQUAL(line, reporter.lastFailedLine);\r\n}\r\n\r\nTEST(CheckArrayCloseFailureBecauseOfExceptionContainsCorrectDetails)\r\n{\r\n    int line = 0;\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tUnitTest::TestDetails testDetails(\"arrayCloseTest\", \"arrayCloseSuite\", \"filename\", -1);\r\n\t\tScopedCurrentTest scopedResults(testResults, &testDetails);\r\n\r\n\t\tint const data[4] = { 0, 1, 2, 3 };\r\n        CHECK_ARRAY_CLOSE (data, ThrowingObject(), 4, 0.01f);     line = __LINE__;\r\n    }\r\n\r\n    CHECK_EQUAL(\"arrayCloseTest\", reporter.lastFailedTest);\r\n    CHECK_EQUAL(\"arrayCloseSuite\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL(\"filename\", reporter.lastFailedFile);\r\n    CHECK_EQUAL(line, reporter.lastFailedLine);\r\n}\r\n\r\nTEST(CheckArrayCloseFailureIncludesTolerance)\r\n{\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tfloat const data1[4] = { 0, 1, 2, 3 };\r\n        float const data2[4] = { 0, 1, 3, 3 };\r\n        CHECK_ARRAY_CLOSE (data1, data2, 4, 0.01f);\r\n    }\r\n\r\n    CHECK(strstr(reporter.lastFailedMessage, \"0.01\"));\r\n}\r\n\r\n\r\nTEST(CheckArrayCloseFailsOnException)\r\n{\r\n    bool failure = false;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tconst float data[4] = { 0, 1, 2, 3 };\r\n        ThrowingObject obj;\r\n        CHECK_ARRAY_CLOSE (data, obj, 3, 0.01f);\r\n\r\n\t\tfailure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(failure);\r\n}\r\n\r\nTEST(CheckArrayCloseFailureOnExceptionIncludesCheckContents)\r\n{\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tconst float data[4] = { 0, 1, 2, 3 };\r\n        ThrowingObject obj;\r\n        CHECK_ARRAY_CLOSE (data, obj, 3, 0.01f);\r\n    }\r\n\r\n    CHECK(strstr(reporter.lastFailedMessage, \"data\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"obj\"));\r\n}\r\n\r\n\r\nTEST(CheckArrayEqualSuceedsOnEqual)\r\n{\r\n    bool failure = true;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tconst float data[4] = { 0, 1, 2, 3 };\r\n        CHECK_ARRAY_EQUAL (data, data, 4);\r\n\r\n\t\tfailure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(!failure);\r\n}\r\n\r\nTEST(CheckArrayEqualFailsOnNotEqual)\r\n{\r\n    bool failure = false;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tint const data1[4] = { 0, 1, 2, 3 };\r\n        int const data2[4] = { 0, 1, 3, 3 };\r\n        CHECK_ARRAY_EQUAL (data1, data2, 4);\r\n\r\n\t\tfailure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(failure);\r\n}\r\n\r\nTEST(CheckArrayEqualFailureIncludesCheckExpectedAndActual)\r\n{\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tint const data1[4] = { 0, 1, 2, 3 };\r\n        int const data2[4] = { 0, 1, 3, 3 };\r\n        CHECK_ARRAY_EQUAL (data1, data2, 4);\r\n    }\r\n\r\n    CHECK(strstr(reporter.lastFailedMessage, \"xpected [ 0 1 2 3 ]\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"was [ 0 1 3 3 ]\"));\r\n}\r\n\r\nTEST(CheckArrayEqualFailureContainsCorrectInfo)\r\n{\r\n    int line = 0;\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tint const data1[4] = { 0, 1, 2, 3 };\r\n        int const data2[4] = { 0, 1, 3, 3 };\r\n        CHECK_ARRAY_EQUAL (data1, data2, 4);     line = __LINE__;\r\n    }\r\n\r\n    CHECK_EQUAL(\"CheckArrayEqualFailureContainsCorrectInfo\", reporter.lastFailedTest);\r\n    CHECK_EQUAL(__FILE__, reporter.lastFailedFile);\r\n    CHECK_EQUAL(line, reporter.lastFailedLine);\r\n}\r\n\r\nTEST(CheckArrayEqualFailsOnException)\r\n{\r\n    bool failure = false;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tconst float data[4] = { 0, 1, 2, 3 };\r\n        ThrowingObject obj;\r\n        CHECK_ARRAY_EQUAL (data, obj, 3);\r\n\r\n\t\tfailure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(failure);\r\n}\r\n\r\nTEST(CheckArrayEqualFailureOnExceptionIncludesCheckContents)\r\n{\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tconst float data[4] = { 0, 1, 2, 3 };\r\n        ThrowingObject obj;\r\n        CHECK_ARRAY_EQUAL (data, obj, 3);\r\n    }\r\n\r\n    CHECK(strstr(reporter.lastFailedMessage, \"data\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"obj\"));\r\n}\r\n\r\nfloat const* FunctionWithSideEffects2()\r\n{\r\n    ++g_sideEffect;\r\n    static float const data[] = {1,2,3,4};\r\n    return data;\r\n}\r\n\r\nTEST(CheckArrayCloseDoesNotHaveSideEffectsWhenPassing)\r\n{\r\n    g_sideEffect = 0;\r\n    {\r\n        UnitTest::TestResults testResults;\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tconst float data[] = { 0, 1, 2, 3 };\r\n        CHECK_ARRAY_CLOSE (data, FunctionWithSideEffects2(), 4, 0.01f);\r\n    }\r\n    CHECK_EQUAL(1, g_sideEffect);\r\n}\r\n\r\nTEST(CheckArrayCloseDoesNotHaveSideEffectsWhenFailing)\r\n{\r\n    g_sideEffect = 0;\r\n    {\r\n        UnitTest::TestResults testResults;\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tconst float data[] = { 0, 1, 3, 3 };\r\n        CHECK_ARRAY_CLOSE (data, FunctionWithSideEffects2(), 4, 0.01f);\r\n    }\r\n\r\n\tCHECK_EQUAL(1, g_sideEffect);\r\n}\r\n\r\nclass ThrowingObject2D\r\n{\r\npublic:\r\n    float* operator[](int) const\r\n    {\r\n        throw \"Test throw\";\r\n    }\r\n};\r\n\r\n\r\nTEST(CheckArray2DCloseSucceedsOnEqual)\r\n{\r\n    bool failure = true;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tconst float data[2][2] = { {0, 1}, {2, 3} };\r\n        CHECK_ARRAY2D_CLOSE (data, data, 2, 2, 0.01f);\r\n\r\n\t\tfailure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(!failure);\r\n}\r\n\r\nTEST(CheckArray2DCloseFailsOnNotEqual)\r\n{\r\n    bool failure = false;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tint const data1[2][2] = { {0, 1}, {2, 3} };\r\n        int const data2[2][2] = { {0, 1}, {3, 3} };\r\n        CHECK_ARRAY2D_CLOSE (data1, data2, 2, 2, 0.01f);\r\n\r\n\t\tfailure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(failure);\r\n}\r\n\r\nTEST(CheckArray2DCloseFailureIncludesCheckExpectedAndActual)\r\n{\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tint const data1[2][2] = { {0, 1}, {2, 3} };\r\n        int const data2[2][2] = { {0, 1}, {3, 3} };\r\n\r\n\t\tCHECK_ARRAY2D_CLOSE (data1, data2, 2, 2, 0.01f);\r\n    }\r\n\r\n    CHECK(strstr(reporter.lastFailedMessage, \"xpected [ [ 0 1 ] [ 2 3 ] ]\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"was [ [ 0 1 ] [ 3 3 ] ]\"));\r\n}\r\n\r\nTEST(CheckArray2DCloseFailureContainsCorrectDetails)\r\n{\r\n    int line = 0;\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tUnitTest::TestDetails testDetails(\"array2DCloseTest\", \"array2DCloseSuite\", \"filename\", -1);\r\n\t\tScopedCurrentTest scopedResults(testResults, &testDetails);\r\n\r\n\t\tint const data1[2][2] = { {0, 1}, {2, 3} };\r\n        int const data2[2][2] = { {0, 1}, {3, 3} };\r\n\t\tCHECK_ARRAY2D_CLOSE (data1, data2, 2, 2, 0.01f);     line = __LINE__;\r\n    }\r\n\r\n    CHECK_EQUAL(\"array2DCloseTest\", reporter.lastFailedTest);\r\n    CHECK_EQUAL(\"array2DCloseSuite\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL(\"filename\", reporter.lastFailedFile);\r\n    CHECK_EQUAL(line, reporter.lastFailedLine);\r\n}\r\n\r\nTEST(CheckArray2DCloseFailureBecauseOfExceptionContainsCorrectDetails)\r\n{\r\n    int line = 0;\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tUnitTest::TestDetails testDetails(\"array2DCloseTest\", \"array2DCloseSuite\", \"filename\", -1);\r\n\t\tScopedCurrentTest scopedResults(testResults, &testDetails);\r\n\r\n\t\tconst float data[2][2] = { {0, 1}, {2, 3} };\r\n        CHECK_ARRAY2D_CLOSE (data, ThrowingObject2D(), 2, 2, 0.01f);   line = __LINE__;\r\n    }\r\n\r\n    CHECK_EQUAL(\"array2DCloseTest\", reporter.lastFailedTest);\r\n    CHECK_EQUAL(\"array2DCloseSuite\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL(\"filename\", reporter.lastFailedFile);\r\n    CHECK_EQUAL(line, reporter.lastFailedLine);\r\n}\r\n\r\nTEST(CheckArray2DCloseFailureIncludesTolerance)\r\n{\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tfloat const data1[2][2] = { {0, 1}, {2, 3} };\r\n        float const data2[2][2] = { {0, 1}, {3, 3} };\r\n        CHECK_ARRAY2D_CLOSE (data1, data2, 2, 2, 0.01f);\r\n    }\r\n\r\n    CHECK(strstr(reporter.lastFailedMessage, \"0.01\"));\r\n}\r\n\r\nTEST(CheckArray2DCloseFailsOnException)\r\n{\r\n    bool failure = false;\r\n    {\r\n        RecordingReporter reporter;\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tconst float data[2][2] = { {0, 1}, {2, 3} };\r\n        ThrowingObject2D obj;\r\n        CHECK_ARRAY2D_CLOSE (data, obj, 2, 2, 0.01f);\r\n\r\n\t\tfailure = (testResults.GetFailureCount() > 0);\r\n    }\r\n\r\n    CHECK(failure);\r\n}\r\n\r\nTEST(CheckArray2DCloseFailureOnExceptionIncludesCheckContents)\r\n{\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tconst float data[2][2] = { {0, 1}, {2, 3} };\r\n        ThrowingObject2D obj;\r\n        CHECK_ARRAY2D_CLOSE (data, obj, 2, 2, 0.01f);\r\n    }\r\n\r\n    CHECK(strstr(reporter.lastFailedMessage, \"data\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"obj\"));\r\n}\r\n\r\nfloat const* const* FunctionWithSideEffects3()\r\n{\r\n    ++g_sideEffect;\r\n    static float const data1[] = {0,1};\r\n    static float const data2[] = {2,3};\r\n    static const float* const data[] = {data1, data2};\r\n    return data;\r\n}\r\n\r\nTEST(CheckArray2DCloseDoesNotHaveSideEffectsWhenPassing)\r\n{\r\n    g_sideEffect = 0;\r\n    {\r\n        UnitTest::TestResults testResults;\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tconst float data[2][2] = { {0, 1}, {2, 3} };\r\n        CHECK_ARRAY2D_CLOSE (data, FunctionWithSideEffects3(), 2, 2, 0.01f);\r\n    }\r\n    CHECK_EQUAL(1, g_sideEffect);\r\n}\r\n\r\nTEST(CheckArray2DCloseDoesNotHaveSideEffectsWhenFailing)\r\n{\r\n    g_sideEffect = 0;\r\n    {\r\n        UnitTest::TestResults testResults;\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n\t\tconst float data[2][2] = { {0, 1}, {3, 3} };\r\n        CHECK_ARRAY2D_CLOSE (data, FunctionWithSideEffects3(), 2, 2, 0.01f);\r\n    }\r\n    CHECK_EQUAL(1, g_sideEffect);\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestChecks.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"RecordingReporter.h\"\r\n\r\nusing namespace UnitTest;\r\n\r\n\r\nnamespace {\r\n\r\n\r\nTEST(CheckEqualWithUnsignedLong)\r\n{\r\n    TestResults results;\r\n    unsigned long something = 2;\r\n    CHECK_EQUAL(something, something);\r\n}\r\n\r\nTEST(CheckEqualsWithStringsFailsOnDifferentStrings)\r\n{\r\n    char txt1[] = \"Hello\";\r\n    char txt2[] = \"Hallo\";\r\n    TestResults results;\r\n    CheckEqual(results, txt1, txt2, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(1, results.GetFailureCount());\r\n}\r\n\r\nchar txt1[] = \"Hello\"; // non-const on purpose so no folding of duplicate data\r\nchar txt2[] = \"Hello\";\r\n\r\nTEST(CheckEqualsWithStringsWorksOnContentsNonConstNonConst)\r\n{\r\n    char const* const p1 = txt1;\r\n    char const* const p2 = txt2;\r\n    TestResults results;\r\n    CheckEqual(results, p1, p2, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(0, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckEqualsWithStringsWorksOnContentsConstConst)\r\n{\r\n    char* const p1 = txt1;\r\n    char* const p2 = txt2;\r\n    TestResults results;\r\n    CheckEqual(results, p1, p2, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(0, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckEqualsWithStringsWorksOnContentsNonConstConst)\r\n{\r\n    char* const p1 = txt1;\r\n    char const* const p2 = txt2;\r\n    TestResults results;\r\n    CheckEqual(results, p1, p2, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(0, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckEqualsWithStringsWorksOnContentsConstNonConst)\r\n{\r\n    char const* const p1 = txt1;\r\n    char* const p2 = txt2;\r\n    TestResults results;\r\n    CheckEqual(results, p1, p2, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(0, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckEqualsWithStringsWorksOnContentsWithALiteral)\r\n{\r\n    char const* const p1 = txt1;\r\n    TestResults results;\r\n    CheckEqual(results, \"Hello\", p1, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(0, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckEqualFailureIncludesCheckExpectedAndActual)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults results(&reporter);\r\n    const int something = 2;\r\n    CheckEqual(results, 1, something, TestDetails(\"\", \"\", \"\", 0));\r\n\r\n\tusing namespace std;\r\n    CHECK(strstr(reporter.lastFailedMessage, \"xpected 1\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"was 2\"));\r\n}\r\n\r\nTEST(CheckEqualFailureIncludesDetails)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults results(&reporter);\r\n    TestDetails const details(\"mytest\", \"mysuite\", \"file.h\", 101);\r\n\r\n    CheckEqual(results, 1, 2, details);\r\n\r\n    CHECK_EQUAL(\"mytest\", reporter.lastFailedTest);\r\n    CHECK_EQUAL(\"mysuite\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL(\"file.h\", reporter.lastFailedFile);\r\n    CHECK_EQUAL(101, reporter.lastFailedLine);\r\n}\r\n\r\nTEST(CheckCloseTrue)\r\n{\r\n    TestResults results;\r\n    CheckClose(results, 3.001f, 3.0f, 0.1f, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(0, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckCloseFalse)\r\n{\r\n    TestResults results;\r\n    CheckClose(results, 3.12f, 3.0f, 0.1f, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(1, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckCloseWithZeroEpsilonWorksForSameNumber)\r\n{\r\n    TestResults results;\r\n    CheckClose(results, 0.1f, 0.1f, 0, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(0, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckCloseWithNaNFails)\r\n{\r\n    union\r\n    {\r\n        unsigned int bitpattern;\r\n        float nan;\r\n    };\r\n    bitpattern = 0xFFFFFFFF;\r\n    TestResults results;\r\n    CheckClose(results, 3.0f, nan, 0.1f, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(1, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckCloseWithNaNAgainstItselfFails)\r\n{\r\n    union\r\n    {\r\n        unsigned int bitpattern;\r\n        float nan;\r\n    };\r\n    bitpattern = 0xFFFFFFFF;\r\n    TestResults results;\r\n    CheckClose(results, nan, nan, 0.1f, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(1, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckCloseFailureIncludesCheckExpectedAndActual)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults results(&reporter);\r\n    const float expected = 0.9f;\r\n    const float actual = 1.1f;\r\n    CheckClose(results, expected, actual, 0.01f, TestDetails(\"\", \"\", \"\", 0));\r\n\r\n\tusing namespace std;\r\n    CHECK(strstr(reporter.lastFailedMessage, \"xpected 0.9\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"was 1.1\"));\r\n}\r\n\r\nTEST(CheckCloseFailureIncludesTolerance)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults results(&reporter);\r\n    CheckClose(results, 2, 3, 0.01f, TestDetails(\"\", \"\", \"\", 0));\r\n\r\n\tusing namespace std;\r\n    CHECK(strstr(reporter.lastFailedMessage, \"0.01\"));\r\n}\r\n\r\nTEST(CheckCloseFailureIncludesDetails)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults results(&reporter);\r\n    TestDetails const details(\"mytest\", \"mysuite\", \"header.h\", 10);\r\n\r\n    CheckClose(results, 2, 3, 0.01f, details);\r\n\r\n    CHECK_EQUAL(\"mytest\", reporter.lastFailedTest);\r\n    CHECK_EQUAL(\"mysuite\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL(\"header.h\", reporter.lastFailedFile);\r\n    CHECK_EQUAL(10, reporter.lastFailedLine);\r\n}\r\n\r\n\r\nTEST(CheckArrayEqualTrue)\r\n{\r\n    TestResults results;\r\n\r\n    int const array[3] = { 1, 2, 3 };\r\n    CheckArrayEqual(results, array, array, 3, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(0, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckArrayEqualFalse)\r\n{\r\n    TestResults results;\r\n\r\n    int const array1[3] = { 1, 2, 3 };\r\n    int const array2[3] = { 1, 2, 2 };\r\n    CheckArrayEqual(results, array1, array2, 3, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(1, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckArrayCloseTrue)\r\n{\r\n    TestResults results;\r\n\r\n    float const array1[3] = { 1.0f, 1.5f, 2.0f };\r\n    float const array2[3] = { 1.01f, 1.51f, 2.01f };\r\n    CheckArrayClose(results, array1, array2, 3, 0.02f, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(0, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckArrayCloseFalse)\r\n{\r\n    TestResults results;\r\n\r\n    float const array1[3] = { 1.0f, 1.5f, 2.0f };\r\n    float const array2[3] = { 1.01f, 1.51f, 2.01f };\r\n    CheckArrayClose(results, array1, array2, 3, 0.001f, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(1, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckArrayCloseFailureIncludesDetails)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults results(&reporter);\r\n    TestDetails const details(\"arrayCloseTest\", \"arrayCloseSuite\", \"file\", 1337);\r\n\r\n    float const array1[3] = { 1.0f, 1.5f, 2.0f };\r\n    float const array2[3] = { 1.01f, 1.51f, 2.01f };\r\n    CheckArrayClose(results, array1, array2, 3, 0.001f, details);\r\n\r\n    CHECK_EQUAL(\"arrayCloseTest\", reporter.lastFailedTest);\r\n    CHECK_EQUAL(\"arrayCloseSuite\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL(\"file\", reporter.lastFailedFile);\r\n    CHECK_EQUAL(1337, reporter.lastFailedLine);\r\n}\r\n\r\n\r\nTEST(CheckArray2DCloseTrue)\r\n{\r\n    TestResults results;\r\n\r\n    float const array1[3][3] = { { 1.0f, 1.5f, 2.0f },\r\n                                 { 2.0f, 2.5f, 3.0f },\r\n                                 { 3.0f, 3.5f, 4.0f } };\r\n    float const array2[3][3] = { { 1.01f, 1.51f, 2.01f },\r\n                                 { 2.01f, 2.51f, 3.01f },\r\n                                 { 3.01f, 3.51f, 4.01f } };\r\n    CheckArray2DClose(results, array1, array2, 3, 3, 0.02f, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(0, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckArray2DCloseFalse)\r\n{\r\n    TestResults results;\r\n\r\n    float const array1[3][3] = { { 1.0f, 1.5f, 2.0f },\r\n                                 { 2.0f, 2.5f, 3.0f },\r\n                                 { 3.0f, 3.5f, 4.0f } };\r\n    float const array2[3][3] = { { 1.01f, 1.51f, 2.01f },\r\n                                 { 2.01f, 2.51f, 3.01f },\r\n                                 { 3.01f, 3.51f, 4.01f } };\r\n    CheckArray2DClose(results, array1, array2, 3, 3, 0.001f, TestDetails(\"\", \"\", \"\", 0));\r\n    CHECK_EQUAL(1, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckCloseWithDoublesSucceeds)\r\n{\r\n    CHECK_CLOSE(0.5, 0.5, 0.0001);\r\n}\r\n\r\nTEST(CheckArray2DCloseFailureIncludesDetails)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults results(&reporter);\r\n    TestDetails const details(\"array2DCloseTest\", \"array2DCloseSuite\", \"file\", 1234);\r\n\r\n    float const array1[3][3] = { { 1.0f, 1.5f, 2.0f },\r\n                                 { 2.0f, 2.5f, 3.0f },\r\n                                 { 3.0f, 3.5f, 4.0f } };\r\n    float const array2[3][3] = { { 1.01f, 1.51f, 2.01f },\r\n                                 { 2.01f, 2.51f, 3.01f },\r\n                                 { 3.01f, 3.51f, 4.01f } };\r\n    CheckArray2DClose(results, array1, array2, 3, 3, 0.001f, details);\r\n\r\n    CHECK_EQUAL(\"array2DCloseTest\", reporter.lastFailedTest);\r\n    CHECK_EQUAL(\"array2DCloseSuite\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL(\"file\", reporter.lastFailedFile);\r\n    CHECK_EQUAL(1234, reporter.lastFailedLine);\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestCurrentTest.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"../CurrentTest.h\"\r\n#include \"ScopedCurrentTest.h\"\r\n\r\nnamespace \r\n{\r\n\r\nTEST(CanSetandGetDetails)\r\n{\r\n\tbool ok = false;\r\n\t{\r\n\t\tScopedCurrentTest scopedTest;\r\n\r\n\t\tconst UnitTest::TestDetails* details = reinterpret_cast< const UnitTest::TestDetails* >(12345);\r\n\t\tUnitTest::CurrentTest::Details() = details;\r\n\r\n\t\tok = (UnitTest::CurrentTest::Details() == details);\r\n\t}\r\n\r\n\tCHECK(ok);\r\n}\r\n\r\nTEST(CanSetAndGetResults)\r\n{\r\n\tbool ok = false;\r\n\t{\r\n\t\tScopedCurrentTest scopedTest;\r\n\r\n\t\tUnitTest::TestResults results;\r\n\t\tUnitTest::CurrentTest::Results() = &results;\r\n\r\n\t\tok = (UnitTest::CurrentTest::Results() == &results);\r\n\t}\r\n\r\n\tCHECK(ok);\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestDeferredTestReporter.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"../DeferredTestReporter.h\"\r\n#include \"../Config.h\"\r\n#include <cstring>\r\n\r\nnamespace UnitTest\r\n{\r\n\r\nnamespace \r\n{\r\n\r\n#ifdef UNITTEST_USE_CUSTOM_STREAMS\r\n\tMemoryOutStream& operator <<(MemoryOutStream& lhs, const std::string& rhs)\r\n\t{\r\n\t\tlhs << rhs.c_str();\r\n\t\treturn lhs;\r\n\t}\r\n#endif\r\n\r\nstruct MockDeferredTestReporter : public DeferredTestReporter\r\n{\r\n    virtual void ReportSummary(int, int, int, float) \r\n    {\r\n    }\r\n};\r\n\r\nstruct DeferredTestReporterFixture\r\n{\r\n    DeferredTestReporterFixture()\r\n        : testName(\"UniqueTestName\")\r\n        , testSuite(\"UniqueTestSuite\")\r\n        , fileName(\"filename.h\")\r\n        , lineNumber(12)\r\n        , details(testName.c_str(), testSuite.c_str(), fileName.c_str(), lineNumber)\r\n    {\r\n    }\r\n\r\n    MockDeferredTestReporter reporter;\r\n    std::string const testName;\r\n    std::string const testSuite;\r\n    std::string const fileName;\r\n    int const lineNumber;\r\n    TestDetails const details;\r\n};\r\n\r\nTEST_FIXTURE(DeferredTestReporterFixture, ReportTestStartCreatesANewDeferredTest)\r\n{\r\n    reporter.ReportTestStart(details);\r\n    CHECK_EQUAL(1, (int)reporter.GetResults().size());\r\n}\r\n\r\nTEST_FIXTURE(DeferredTestReporterFixture, ReportTestStartCapturesTestNameAndSuite)\r\n{\r\n    reporter.ReportTestStart(details);\r\n\r\n    DeferredTestResult const& result = reporter.GetResults().at(0);\r\n    CHECK_EQUAL(testName.c_str(), result.testName);\r\n    CHECK_EQUAL(testSuite.c_str(), result.suiteName);\r\n}\r\n\r\nTEST_FIXTURE(DeferredTestReporterFixture, ReportTestEndCapturesTestTime)\r\n{\r\n    float const elapsed = 123.45f;\r\n    reporter.ReportTestStart(details);\r\n    reporter.ReportTestFinish(details, elapsed);\r\n\r\n    DeferredTestResult const& result = reporter.GetResults().at(0);\r\n    CHECK_CLOSE(elapsed, result.timeElapsed, 0.0001f);\r\n}\r\n\r\nTEST_FIXTURE(DeferredTestReporterFixture, ReportFailureSavesFailureDetails)\r\n{\r\n    char const* failure = \"failure\";\r\n\r\n    reporter.ReportTestStart(details);\r\n    reporter.ReportFailure(details, failure);\r\n\r\n    DeferredTestResult const& result = reporter.GetResults().at(0);\r\n    CHECK(result.failed == true);\r\n    CHECK_EQUAL(fileName.c_str(), result.failureFile);\r\n}\r\n\r\nTEST_FIXTURE(DeferredTestReporterFixture, ReportFailureSavesFailureDetailsForMultipleFailures)\r\n{\r\n    char const* failure1 = \"failure 1\";\r\n    char const* failure2 = \"failure 2\";\r\n\r\n    reporter.ReportTestStart(details);\r\n    reporter.ReportFailure(details, failure1);\r\n    reporter.ReportFailure(details, failure2);\r\n\r\n    DeferredTestResult const& result = reporter.GetResults().at(0);\r\n    CHECK_EQUAL(2, (int)result.failures.size());\r\n    CHECK_EQUAL(failure1, result.failures[0].second);\r\n    CHECK_EQUAL(failure2, result.failures[1].second);\r\n}\r\n\r\nTEST_FIXTURE(DeferredTestReporterFixture, DeferredTestReporterTakesCopyOfFailureMessage)\r\n{\r\n    reporter.ReportTestStart(details);\r\n\r\n    char failureMessage[128];\r\n    char const* goodStr = \"Real failure message\";\r\n    char const* badStr = \"Bogus failure message\";\r\n    \r\n\tusing namespace std;\r\n\r\n    strcpy(failureMessage, goodStr);\r\n    reporter.ReportFailure(details, failureMessage);\r\n    strcpy(failureMessage, badStr);\r\n\r\n    DeferredTestResult const& result = reporter.GetResults().at(0);\r\n    DeferredTestResult::Failure const& failure = result.failures.at(0);\r\n    CHECK_EQUAL(goodStr, failure.second);\r\n}\r\n\r\n}}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestMemoryOutStream.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n\r\n#include \"../MemoryOutStream.h\"\r\n#include <cstring>\r\n\r\nusing namespace UnitTest;\r\nusing namespace std;\r\n\r\nnamespace {\r\n\r\nTEST(DefaultIsEmptyString)\r\n{\r\n    MemoryOutStream const stream;\r\n    CHECK(stream.GetText() != 0);\r\n    CHECK_EQUAL(\"\", stream.GetText());\r\n}\r\n\r\nTEST(StreamingTextCopiesCharacters)\r\n{\r\n    MemoryOutStream stream;\r\n    stream << \"Lalala\";\r\n    CHECK_EQUAL(\"Lalala\", stream.GetText());\r\n}\r\n\r\nTEST(StreamingMultipleTimesConcatenatesResult)\r\n{\r\n    MemoryOutStream stream;\r\n    stream << \"Bork\" << \"Foo\" << \"Bar\";\r\n    CHECK_EQUAL(\"BorkFooBar\", stream.GetText());\r\n}\r\n\r\nTEST(StreamingIntWritesCorrectCharacters)\r\n{\r\n    MemoryOutStream stream;\r\n    stream << (int)123;\r\n    CHECK_EQUAL(\"123\", stream.GetText());\r\n}\r\n\r\nTEST(StreamingUnsignedIntWritesCorrectCharacters)\r\n{\r\n    MemoryOutStream stream;\r\n    stream << (unsigned int)123;\r\n    CHECK_EQUAL(\"123\", stream.GetText());\r\n}\r\n\r\nTEST(StreamingLongWritesCorrectCharacters)\r\n{\r\n    MemoryOutStream stream;\r\n    stream << (long)(-123);\r\n    CHECK_EQUAL(\"-123\", stream.GetText());\r\n}\r\n\r\nTEST(StreamingUnsignedLongWritesCorrectCharacters)\r\n{\r\n    MemoryOutStream stream;\r\n    stream << (unsigned long)123;\r\n    CHECK_EQUAL(\"123\", stream.GetText());\r\n}\r\n\r\nTEST(StreamingFloatWritesCorrectCharacters)\r\n{\r\n    MemoryOutStream stream;\r\n    stream << 3.1415f;\r\n\tCHECK(strstr(stream.GetText(), \"3.1415\"));\r\n}\r\n\r\nTEST(StreamingDoubleWritesCorrectCharacters)\r\n{\r\n\tMemoryOutStream stream;\r\n\tstream << 3.1415;\r\n\tCHECK(strstr(stream.GetText(), \"3.1415\"));\r\n}\r\n\r\nTEST(StreamingPointerWritesCorrectCharacters)\r\n{\r\n    MemoryOutStream stream;\r\n    int* p = (int*)0x1234;\r\n    stream << p;\r\n    CHECK(strstr(stream.GetText(), \"1234\"));\r\n}\r\n\r\nTEST(StreamingSizeTWritesCorrectCharacters)\r\n{\r\n    MemoryOutStream stream;\r\n    size_t const s = 53124;\r\n    stream << s;\r\n    CHECK_EQUAL(\"53124\", stream.GetText());\r\n}\r\n\r\n#ifdef UNITTEST_USE_CUSTOM_STREAMS\r\n\r\nTEST(StreamInitialCapacityIsCorrect)\r\n{\r\n    MemoryOutStream stream(MemoryOutStream::GROW_CHUNK_SIZE);\r\n    CHECK_EQUAL((int)MemoryOutStream::GROW_CHUNK_SIZE, stream.GetCapacity());\r\n}\r\n\r\nTEST(StreamInitialCapacityIsMultipleOfGrowChunkSize)\r\n{\r\n    MemoryOutStream stream(MemoryOutStream::GROW_CHUNK_SIZE + 1);\r\n    CHECK_EQUAL((int)MemoryOutStream::GROW_CHUNK_SIZE * 2, stream.GetCapacity());\r\n}\r\n\r\n\r\nTEST(ExceedingCapacityGrowsBuffer)\r\n{\r\n    MemoryOutStream stream(MemoryOutStream::GROW_CHUNK_SIZE);\r\n    stream << \"012345678901234567890123456789\";\r\n    char const* const oldBuffer = stream.GetText();\r\n    stream << \"0123456789\";\r\n    CHECK(oldBuffer != stream.GetText());\r\n}\r\n\r\nTEST(ExceedingCapacityGrowsBufferByGrowChunk)\r\n{\r\n    MemoryOutStream stream(MemoryOutStream::GROW_CHUNK_SIZE);\r\n    stream << \"0123456789012345678901234567890123456789\";\r\n    CHECK_EQUAL(MemoryOutStream::GROW_CHUNK_SIZE * 2, stream.GetCapacity());\r\n}\r\n\r\nTEST(WritingStringLongerThanCapacityFitsInNewBuffer)\r\n{\r\n    MemoryOutStream stream(8);\r\n    stream << \"0123456789ABCDEF\";\r\n    CHECK_EQUAL(\"0123456789ABCDEF\", stream.GetText());\r\n}\r\n\r\nTEST(WritingIntLongerThanCapacityFitsInNewBuffer)\r\n{\r\n    MemoryOutStream stream(8);\r\n    stream << \"aaaa\" << 123456;;\r\n    CHECK_EQUAL(\"aaaa123456\", stream.GetText());\r\n}\r\n\r\nTEST(WritingFloatLongerThanCapacityFitsInNewBuffer)\r\n{\r\n    MemoryOutStream stream(8);\r\n    stream << \"aaaa\" << 123456.0f;;\r\n    CHECK_EQUAL(\"aaaa123456.000000f\", stream.GetText());\r\n}\r\n\r\nTEST(WritingSizeTLongerThanCapacityFitsInNewBuffer)\r\n{\r\n    MemoryOutStream stream(8);\r\n    stream << \"aaaa\" << size_t(32145);\r\n    CHECK_EQUAL(\"aaaa32145\", stream.GetText());\r\n}\r\n\r\n#endif\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestTest.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"../TestReporter.h\"\r\n#include \"../TimeHelpers.h\"\r\n#include \"ScopedCurrentTest.h\"\r\n\r\nusing namespace UnitTest;\r\n\r\nnamespace {\r\n\r\nTEST(PassingTestHasNoFailures)\r\n{\r\n    class PassingTest : public Test\r\n    {\r\n    public:\r\n        PassingTest() : Test(\"passing\") {}\r\n        virtual void RunImpl() const\r\n        {\r\n            CHECK(true);\r\n        }\r\n    };\r\n\r\n    TestResults results;\r\n\t{\r\n\t\tScopedCurrentTest scopedResults(results);\r\n\t\tPassingTest().Run();\r\n\t}\r\n\r\n    CHECK_EQUAL(0, results.GetFailureCount());\r\n}\r\n\r\n\r\nTEST(FailingTestHasFailures)\r\n{\r\n    class FailingTest : public Test\r\n    {\r\n    public:\r\n        FailingTest() : Test(\"failing\") {}\r\n        virtual void RunImpl() const\r\n        {\r\n            CHECK(false);\r\n        }\r\n    };\r\n\r\n    TestResults results;\r\n\t{\r\n\t\tScopedCurrentTest scopedResults(results);\r\n\t\tFailingTest().Run();\r\n\t}\r\n\r\n    CHECK_EQUAL(1, results.GetFailureCount());\r\n}\r\n\r\n\r\nTEST(ThrowingTestsAreReportedAsFailures)\r\n{\r\n    class CrashingTest : public Test\r\n    {\r\n    public:\r\n        CrashingTest() : Test(\"throwing\") {}\r\n        virtual void RunImpl() const\r\n        {\r\n            throw \"Blah\";\r\n        }\r\n    };\r\n \r\n    TestResults results;\r\n\t{\r\n\t\tScopedCurrentTest scopedResult(results);\r\n\t\tCrashingTest().Run();\r\n\t}\r\n\r\n\tCHECK_EQUAL(1, results.GetFailureCount());\r\n}\r\n\r\n\r\n#ifndef UNITTEST_MINGW\r\nTEST(CrashingTestsAreReportedAsFailures)\r\n{\r\n    class CrashingTest : public Test\r\n    {\r\n    public:\r\n        CrashingTest() : Test(\"crashing\") {}\r\n        virtual void RunImpl() const\r\n        {\r\n            reinterpret_cast< void (*)() >(0)();\r\n        }\r\n    };\r\n\r\n    TestResults results;\r\n\t{\r\n\t\tScopedCurrentTest scopedResult(results);\r\n\t\tCrashingTest().Run();\r\n\t}\r\n\r\n\tCHECK_EQUAL(1, results.GetFailureCount());\r\n}\r\n#endif\r\n\r\nTEST(TestWithUnspecifiedSuiteGetsDefaultSuite)\r\n{\r\n    Test test(\"test\");\r\n    CHECK(test.m_details.suiteName != NULL);\r\n    CHECK_EQUAL(\"DefaultSuite\", test.m_details.suiteName);\r\n}\r\n\r\nTEST(TestReflectsSpecifiedSuiteName)\r\n{\r\n    Test test(\"test\", \"testSuite\");\r\n    CHECK(test.m_details.suiteName != NULL);\r\n    CHECK_EQUAL(\"testSuite\", test.m_details.suiteName);\r\n}\r\n\r\nvoid Fail()\r\n{\r\n\tCHECK(false);\r\n}\r\n\r\nTEST(OutOfCoreCHECKMacrosCanFailTests)\r\n{\r\n\tTestResults results;\r\n\t{\r\n\t\tScopedCurrentTest scopedResult(results);\r\n\t\tFail();\r\n\t}\r\n\r\n\tCHECK_EQUAL(1, results.GetFailureCount());\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestTestList.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"../TestList.h\"\r\n\r\nusing namespace UnitTest;\r\n\r\nnamespace {\r\n\r\n\r\nTEST (TestListIsEmptyByDefault)\r\n{\r\n    TestList list;\r\n    CHECK (list.GetHead() == 0);\r\n}\r\n\r\nTEST (AddingTestSetsHeadToTest)\r\n{\r\n    Test test(\"test\");\r\n    TestList list;\r\n    list.Add(&test);\r\n\r\n    CHECK (list.GetHead() == &test);\r\n    CHECK (test.next == 0);\r\n}\r\n\r\nTEST (AddingSecondTestAddsItToEndOfList)\r\n{\r\n    Test test1(\"test1\");\r\n    Test test2(\"test2\");\r\n\r\n    TestList list;\r\n    list.Add(&test1);\r\n    list.Add(&test2);\r\n\r\n    CHECK (list.GetHead() == &test1);\r\n    CHECK (test1.next == &test2);\r\n    CHECK (test2.next == 0);\r\n}\r\n\r\nTEST (ListAdderAddsTestToList)\r\n{\r\n    TestList list;\r\n\r\n    Test test(\"\");    \r\n    ListAdder adder(list, &test);\r\n\r\n    CHECK (list.GetHead() == &test);\r\n    CHECK (test.next == 0);\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestTestMacros.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"../TestMacros.h\"\r\n#include \"../TestList.h\"\r\n#include \"../TestResults.h\"\r\n#include \"../TestReporter.h\"\r\n#include \"../ReportAssert.h\"\r\n#include \"RecordingReporter.h\"\r\n#include \"ScopedCurrentTest.h\"\r\n\r\nusing namespace UnitTest;\r\n\r\nnamespace {\r\n\r\nTestList list1;\r\nTEST_EX(DummyTest, list1)\r\n{\r\n}\r\n\r\nTEST (TestsAreAddedToTheListThroughMacro)\r\n{\r\n    CHECK(list1.GetHead() != 0);\r\n    CHECK(list1.GetHead()->next == 0);\r\n}\r\n\r\nstruct ThrowingThingie\r\n{\r\n    ThrowingThingie() : dummy(false)\r\n    {\r\n        if (!dummy)\r\n            throw \"Oops\";\r\n    }\r\n\r\n    bool dummy;\r\n};\r\n\r\nTestList list2;\r\nTEST_FIXTURE_EX(ThrowingThingie, DummyTestName, list2)\r\n{\r\n}\r\n\r\nTEST (ExceptionsInFixtureAreReportedAsHappeningInTheFixture)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults result(&reporter);\r\n\t{\r\n\t\tScopedCurrentTest scopedResults(result);\r\n\t\tlist2.GetHead()->Run();\r\n\t}\r\n\r\n    CHECK(strstr(reporter.lastFailedMessage, \"xception\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"fixture\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"ThrowingThingie\"));\r\n}\r\n\r\nstruct DummyFixture\r\n{\r\n    int x;\r\n};\r\n\r\n// We're really testing the macros so we just want them to compile and link\r\nSUITE(TestSuite1)\r\n{\r\n\tTEST(SimilarlyNamedTestsInDifferentSuitesWork)\r\n\t{\r\n\t}\r\n\r\n\tTEST_FIXTURE(DummyFixture, SimilarlyNamedFixtureTestsInDifferentSuitesWork)\r\n\t{\r\n\t}\r\n}\r\n\r\nSUITE(TestSuite2)\r\n{\r\n\tTEST(SimilarlyNamedTestsInDifferentSuitesWork)\r\n\t{\r\n\t}\r\n\r\n\tTEST_FIXTURE(DummyFixture,SimilarlyNamedFixtureTestsInDifferentSuitesWork)\r\n\t{\r\n\t}\r\n}\r\n\r\nTestList macroTestList1;\r\nTEST_EX(MacroTestHelper1, macroTestList1)\r\n{\r\n}\r\n\r\nTEST(TestAddedWithTEST_EXMacroGetsDefaultSuite)\r\n{\r\n    CHECK(macroTestList1.GetHead() != NULL);\r\n    CHECK_EQUAL (\"MacroTestHelper1\", macroTestList1.GetHead()->m_details.testName);\r\n    CHECK_EQUAL (\"DefaultSuite\", macroTestList1.GetHead()->m_details.suiteName);\r\n}\r\n\r\nTestList macroTestList2;\r\nTEST_FIXTURE_EX(DummyFixture, MacroTestHelper2, macroTestList2)\r\n{\r\n}\r\n\r\nTEST(TestAddedWithTEST_FIXTURE_EXMacroGetsDefaultSuite)\r\n{\r\n    CHECK(macroTestList2.GetHead() != NULL);\r\n    CHECK_EQUAL (\"MacroTestHelper2\", macroTestList2.GetHead()->m_details.testName);\r\n    CHECK_EQUAL (\"DefaultSuite\", macroTestList2.GetHead()->m_details.suiteName);\r\n}\r\n\r\nstruct FixtureCtorThrows\r\n{\r\n\tFixtureCtorThrows()\t{ throw \"exception\"; }\r\n};\r\n\r\nTestList throwingFixtureTestList1;\r\nTEST_FIXTURE_EX(FixtureCtorThrows, FixtureCtorThrowsTestName, throwingFixtureTestList1)\r\n{\r\n}\r\n\r\nTEST(FixturesWithThrowingCtorsAreFailures)\r\n{\r\n\tCHECK(throwingFixtureTestList1.GetHead() != NULL);\r\n\tRecordingReporter reporter;\r\n\tTestResults result(&reporter);\r\n\t{\r\n\t\tScopedCurrentTest scopedResult(result);\r\n\t\tthrowingFixtureTestList1.GetHead()->Run();\r\n\t}\r\n\r\n\tint const failureCount = result.GetFailedTestCount();\r\n\tCHECK_EQUAL(1, failureCount);\r\n\tCHECK(strstr(reporter.lastFailedMessage, \"while constructing fixture\"));\r\n}\r\n\r\nstruct FixtureDtorThrows\r\n{\r\n\t~FixtureDtorThrows() { throw \"exception\"; }\r\n};\r\n\r\nTestList throwingFixtureTestList2;\r\nTEST_FIXTURE_EX(FixtureDtorThrows, FixtureDtorThrowsTestName, throwingFixtureTestList2)\r\n{\r\n}\r\n\r\nTEST(FixturesWithThrowingDtorsAreFailures)\r\n{\r\n\tCHECK(throwingFixtureTestList2.GetHead() != NULL);\r\n\r\n\tRecordingReporter reporter;\r\n\tTestResults result(&reporter);\r\n\t{\r\n\t\tScopedCurrentTest scopedResult(result);\r\n\t\tthrowingFixtureTestList2.GetHead()->Run();\r\n\t}\r\n\r\n\tint const failureCount = result.GetFailedTestCount();\r\n\tCHECK_EQUAL(1, failureCount);\r\n\tCHECK(strstr(reporter.lastFailedMessage, \"while destroying fixture\"));\r\n}\r\n\r\nconst int FailingLine = 123;\r\n\r\nstruct FixtureCtorAsserts\r\n{\r\n\tFixtureCtorAsserts()\r\n\t{\r\n\t\tUnitTest::ReportAssert(\"assert failure\", \"file\", FailingLine);\r\n\t}\r\n};\r\n\r\nTestList ctorAssertFixtureTestList;\r\nTEST_FIXTURE_EX(FixtureCtorAsserts, CorrectlyReportsAssertFailureInCtor, ctorAssertFixtureTestList)\r\n{\r\n}\r\n\r\nTEST(CorrectlyReportsFixturesWithCtorsThatAssert)\r\n{\r\n\tRecordingReporter reporter;\r\n\tTestResults result(&reporter);\r\n\t{\r\n\t\tScopedCurrentTest scopedResults(result);\r\n\t\tctorAssertFixtureTestList.GetHead()->Run();\r\n\t}\r\n\r\n\tconst int failureCount = result.GetFailedTestCount();\r\n\tCHECK_EQUAL(1, failureCount);\r\n\tCHECK_EQUAL(FailingLine, reporter.lastFailedLine);\r\n\tCHECK(strstr(reporter.lastFailedMessage, \"assert failure\"));\r\n}\r\n\r\n}\r\n\r\n// We're really testing if it's possible to use the same suite in two files\r\n// to compile and link successfuly (TestTestSuite.cpp has suite with the same name)\r\n// Note: we are outside of the anonymous namespace\r\nSUITE(SameTestSuite)\r\n{\r\n\tTEST(DummyTest1)\r\n\t{\r\n\t}\r\n}\r\n\r\n#define CUR_TEST_NAME CurrentTestDetailsContainCurrentTestInfo\r\n#define INNER_STRINGIFY(X) #X\r\n#define STRINGIFY(X) INNER_STRINGIFY(X)\r\n\r\nTEST(CUR_TEST_NAME)\r\n{\r\n\tconst UnitTest::TestDetails* details = CurrentTest::Details();\r\n\tCHECK_EQUAL(STRINGIFY(CUR_TEST_NAME), details->testName);\r\n}\r\n\r\n#undef CUR_TEST_NAME\r\n#undef INNER_STRINGIFY\r\n#undef STRINGIFY\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestTestResults.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"../TestResults.h\"\r\n#include \"RecordingReporter.h\"\r\n\r\nusing namespace UnitTest;\r\n\r\nnamespace {\r\n\r\nTestDetails const details(\"testname\", \"suitename\", \"filename\", 123);\r\n\r\n\r\nTEST(StartsWithNoTestsRun)\r\n{\r\n    TestResults results;\r\n    CHECK_EQUAL (0, results.GetTotalTestCount());\r\n}\r\n\r\nTEST(RecordsNumbersOfTests)\r\n{\r\n    TestResults results;\r\n    results.OnTestStart(details);\r\n    results.OnTestStart(details);\r\n    results.OnTestStart(details);\r\n    CHECK_EQUAL(3, results.GetTotalTestCount());\r\n}\r\n\r\nTEST(StartsWithNoTestsFailing)\r\n{\r\n    TestResults results;\r\n    CHECK_EQUAL (0, results.GetFailureCount());\r\n}\r\n\r\nTEST(RecordsNumberOfFailures)\r\n{\r\n    TestResults results;\r\n    results.OnTestFailure(details, \"\");\r\n    results.OnTestFailure(details, \"\");\r\n    CHECK_EQUAL(2, results.GetFailureCount());\r\n}\r\n\r\nTEST(RecordsNumberOfFailedTests)\r\n{\r\n    TestResults results;\r\n\r\n    results.OnTestStart(details);\r\n    results.OnTestFailure(details, \"\");\r\n    results.OnTestFinish(details, 0);\r\n\r\n    results.OnTestStart(details);\r\n    results.OnTestFailure(details, \"\");\r\n    results.OnTestFailure(details, \"\");\r\n    results.OnTestFailure(details, \"\");\r\n    results.OnTestFinish(details, 0);\r\n\r\n    CHECK_EQUAL (2, results.GetFailedTestCount());\r\n}\r\n\r\nTEST(NotifiesReporterOfTestStartWithCorrectInfo)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults results(&reporter);\r\n    results.OnTestStart(details);\r\n\r\n    CHECK_EQUAL (1, reporter.testRunCount);\r\n    CHECK_EQUAL (\"suitename\", reporter.lastStartedSuite);\r\n    CHECK_EQUAL (\"testname\", reporter.lastStartedTest);\r\n}\r\n\r\nTEST(NotifiesReporterOfTestFailureWithCorrectInfo)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults results(&reporter);\r\n\r\n    results.OnTestFailure(details, \"failurestring\");\r\n    CHECK_EQUAL (1, reporter.testFailedCount);\r\n    CHECK_EQUAL (\"filename\", reporter.lastFailedFile);\r\n    CHECK_EQUAL (123, reporter.lastFailedLine);\r\n    CHECK_EQUAL (\"suitename\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL (\"testname\", reporter.lastFailedTest);\r\n    CHECK_EQUAL (\"failurestring\", reporter.lastFailedMessage);\r\n}\r\n\r\nTEST(NotifiesReporterOfCheckFailureWithCorrectInfo)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults results(&reporter);\r\n\r\n    results.OnTestFailure(details, \"failurestring\");\r\n    CHECK_EQUAL (1, reporter.testFailedCount);\r\n\r\n    CHECK_EQUAL (\"filename\", reporter.lastFailedFile);\r\n    CHECK_EQUAL (123, reporter.lastFailedLine);\r\n    CHECK_EQUAL (\"testname\", reporter.lastFailedTest);\r\n    CHECK_EQUAL (\"suitename\", reporter.lastFailedSuite);\r\n    CHECK_EQUAL (\"failurestring\", reporter.lastFailedMessage);\r\n}\r\n\r\nTEST(NotifiesReporterOfTestEnd)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults results(&reporter);\r\n\r\n    results.OnTestFinish(details, 0.1234f);\r\n    CHECK_EQUAL (1, reporter.testFinishedCount);\r\n    CHECK_EQUAL (\"testname\", reporter.lastFinishedTest);\r\n    CHECK_EQUAL (\"suitename\", reporter.lastFinishedSuite);\r\n    CHECK_CLOSE (0.1234f, reporter.lastFinishedTestTime, 0.0001f);\r\n}\r\n\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestTestRunner.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"RecordingReporter.h\"\r\n#include \"../ReportAssert.h\"\r\n#include \"../TestList.h\"\r\n#include \"../TimeHelpers.h\"\r\n#include \"../TimeConstraint.h\"\r\n\r\nusing namespace UnitTest;\r\n\r\nnamespace\r\n{\r\n\r\nstruct MockTest : public Test\r\n{\r\n    MockTest(char const* testName, bool const success_, bool const assert_, int const count_ = 1)\r\n        : Test(testName)\r\n        , success(success_)\r\n        , asserted(assert_)\r\n        , count(count_)\r\n    {\r\n    }\r\n\r\n    virtual void RunImpl(TestResults& testResults_) const\r\n    {\r\n        for (int i=0; i < count; ++i)\r\n        {\r\n            if (asserted)\r\n                ReportAssert(\"desc\", \"file\", 0);\r\n            else if (!success)\r\n                testResults_.OnTestFailure(m_details, \"message\");\r\n        }\r\n    }\r\n\r\n    bool const success;\r\n    bool const asserted;\r\n    int const count;\r\n};\r\n\r\n\r\nstruct TestRunnerFixture\r\n{\r\n\tTestRunnerFixture()\r\n\t\t: runner(reporter)\r\n\t{\r\n\t}\r\n\r\n    RecordingReporter reporter;\r\n    TestList list;\r\n\tTestRunner runner;\r\n};\r\n\r\nTEST_FIXTURE(TestRunnerFixture, TestStartIsReportedCorrectly)\r\n{\r\n    MockTest test(\"goodtest\", true, false);\r\n    list.Add(&test);\r\n\r\n\trunner.RunTestsIf(list, NULL, True(), 0);\r\n    CHECK_EQUAL(1, reporter.testRunCount);\r\n    CHECK_EQUAL(\"goodtest\", reporter.lastStartedTest);\r\n}\r\n\r\nTEST_FIXTURE(TestRunnerFixture, TestFinishIsReportedCorrectly)\r\n{\r\n    MockTest test(\"goodtest\", true, false);\r\n    list.Add(&test);\r\n\r\n\trunner.RunTestsIf(list, NULL, True(), 0);\r\n    CHECK_EQUAL(1, reporter.testFinishedCount);\r\n    CHECK_EQUAL(\"goodtest\", reporter.lastFinishedTest);\r\n}\r\n\r\nclass SlowTest : public Test\r\n{\r\npublic:\r\n    SlowTest() : Test(\"slow\", \"somesuite\", \"filename\", 123) {}\r\n    virtual void RunImpl(TestResults&) const\r\n    {\r\n        TimeHelpers::SleepMs(20);\r\n    }\r\n};\r\n\r\nTEST_FIXTURE(TestRunnerFixture, TestFinishIsCalledWithCorrectTime)\r\n{\r\n    SlowTest test;\r\n    list.Add(&test);\r\n\r\n\trunner.RunTestsIf(list, NULL, True(), 0);\r\n    CHECK(reporter.lastFinishedTestTime >= 0.005f && reporter.lastFinishedTestTime <= 0.050f);\r\n}\r\n\r\nTEST_FIXTURE(TestRunnerFixture, FailureCountIsZeroWhenNoTestsAreRun)\r\n{\r\n\tCHECK_EQUAL(0, runner.RunTestsIf(list, NULL, True(), 0));\r\n    CHECK_EQUAL(0, reporter.testRunCount);\r\n    CHECK_EQUAL(0, reporter.testFailedCount);\r\n}\r\n\r\nTEST_FIXTURE(TestRunnerFixture, CallsReportFailureOncePerFailingTest)\r\n{\r\n    MockTest test1(\"test\", false, false);\r\n    list.Add(&test1);\r\n    MockTest test2(\"test\", true, false);\r\n    list.Add(&test2);\r\n    MockTest test3(\"test\", false, false);\r\n    list.Add(&test3);\r\n\r\n\tCHECK_EQUAL(2, \trunner.RunTestsIf(list, NULL, True(), 0));\r\n    CHECK_EQUAL(2, reporter.testFailedCount);\r\n}\r\n\r\nTEST_FIXTURE(TestRunnerFixture, TestsThatAssertAreReportedAsFailing)\r\n{\r\n    MockTest test(\"test\", true, true);\r\n    list.Add(&test);\r\n\r\n\trunner.RunTestsIf(list, NULL, True(), 0);\r\n    CHECK_EQUAL(1, reporter.testFailedCount);\r\n}\r\n\r\n\r\nTEST_FIXTURE(TestRunnerFixture, ReporterNotifiedOfTestCount)\r\n{\r\n    MockTest test1(\"test\", true, false);\r\n    MockTest test2(\"test\", true, false);\r\n    MockTest test3(\"test\", true, false);\r\n    list.Add(&test1);\r\n    list.Add(&test2);\r\n    list.Add(&test3);\r\n\r\n\trunner.RunTestsIf(list, NULL, True(), 0);\r\n    CHECK_EQUAL(3, reporter.summaryTotalTestCount);\r\n}\r\n\r\nTEST_FIXTURE(TestRunnerFixture, ReporterNotifiedOfFailedTests)\r\n{\r\n    MockTest test1(\"test\", false, false, 2);\r\n    MockTest test2(\"test\", true, false);\r\n    MockTest test3(\"test\", false, false, 3);\r\n    list.Add(&test1);\r\n    list.Add(&test2);\r\n    list.Add(&test3);\r\n\r\n\trunner.RunTestsIf(list, NULL, True(), 0);\r\n    CHECK_EQUAL(2, reporter.summaryFailedTestCount);\r\n}\r\n\r\nTEST_FIXTURE(TestRunnerFixture, ReporterNotifiedOfFailures)\r\n{\r\n    MockTest test1(\"test\", false, false, 2);\r\n    MockTest test2(\"test\", true, false);\r\n    MockTest test3(\"test\", false, false, 3);\r\n    list.Add(&test1);\r\n    list.Add(&test2);\r\n    list.Add(&test3);\r\n\r\n\trunner.RunTestsIf(list, NULL, True(), 0);\r\n\tCHECK_EQUAL(5, reporter.summaryFailureCount);\r\n}\r\n\r\nTEST_FIXTURE(TestRunnerFixture, SlowTestPassesForHighTimeThreshold)\r\n{\r\n    SlowTest test;\r\n    list.Add(&test);\r\n\r\n\trunner.RunTestsIf(list, NULL, True(), 0);\r\n    CHECK_EQUAL(0, reporter.testFailedCount);\r\n}\r\n\r\nTEST_FIXTURE(TestRunnerFixture, SlowTestFailsForLowTimeThreshold)\r\n{\r\n    SlowTest test;\r\n    list.Add(&test);\r\n\r\n\trunner.RunTestsIf(list, NULL, True(), 3);\r\n    CHECK_EQUAL(1, reporter.testFailedCount);\r\n}\r\n\r\nTEST_FIXTURE(TestRunnerFixture, SlowTestHasCorrectFailureInformation)\r\n{\r\n    SlowTest test;\r\n    list.Add(&test);\r\n\r\n\trunner.RunTestsIf(list, NULL, True(), 3);\r\n\r\n\tusing namespace std;\r\n\r\n    CHECK_EQUAL(test.m_details.testName, reporter.lastFailedTest);\r\n    CHECK(strstr(test.m_details.filename, reporter.lastFailedFile));\r\n    CHECK_EQUAL(test.m_details.lineNumber, reporter.lastFailedLine);\r\n\r\n\tCHECK(strstr(reporter.lastFailedMessage, \"Global time constraint failed\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"3ms\"));\r\n}\r\n\r\nTEST_FIXTURE(TestRunnerFixture, SlowTestWithTimeExemptionPasses)\r\n{\r\n    class SlowExemptedTest : public Test\r\n    {\r\n    public:\r\n        SlowExemptedTest() : Test(\"slowexempted\", \"\", 0) {}\r\n        virtual void RunImpl(TestResults&) const\r\n        {\r\n            UNITTEST_TIME_CONSTRAINT_EXEMPT();\r\n            TimeHelpers::SleepMs(20);\r\n        }\r\n    };\r\n\r\n    SlowExemptedTest test;\r\n    list.Add(&test);\r\n\r\n\trunner.RunTestsIf(list, NULL, True(), 3);\r\n    CHECK_EQUAL(0, reporter.testFailedCount);\r\n}\r\n\r\nstruct TestSuiteFixture\r\n{\r\n    TestSuiteFixture()\r\n        : test1(\"TestInDefaultSuite\")\r\n        , test2(\"TestInOtherSuite\", \"OtherSuite\")\r\n        , test3(\"SecondTestInDefaultSuite\")\r\n\t\t, runner(reporter)\r\n    {\r\n        list.Add(&test1);\r\n        list.Add(&test2);\r\n    }\r\n\r\n    Test test1;\r\n    Test test2;\r\n    Test test3;\r\n    RecordingReporter reporter;\r\n    TestList list;\r\n\tTestRunner runner;\r\n};\r\n\r\nTEST_FIXTURE(TestSuiteFixture, TestRunnerRunsAllSuitesIfNullSuiteIsPassed)\r\n{\r\n\trunner.RunTestsIf(list, NULL, True(), 0);\r\n    CHECK_EQUAL(2, reporter.summaryTotalTestCount);\r\n}\r\n\r\nTEST_FIXTURE(TestSuiteFixture,TestRunnerRunsOnlySpecifiedSuite)\r\n{\r\n\trunner.RunTestsIf(list, \"OtherSuite\", True(), 0);\r\n    CHECK_EQUAL(1, reporter.summaryTotalTestCount);\r\n    CHECK_EQUAL(\"TestInOtherSuite\", reporter.lastFinishedTest);\r\n}\r\n\r\nstruct RunTestIfNameIs\r\n{\r\n\tRunTestIfNameIs(char const* name_)\r\n\t: name(name_)\r\n\t{\t\t\r\n\t}\r\n\t\r\n\tbool operator()(const Test* const test) const\r\n\t{\r\n\t\tusing namespace std;\r\n\t\treturn (0 == strcmp(test->m_details.testName, name));\r\n\t}\r\n\t\r\n\tchar const* name;\r\n};\r\n\r\nTEST(TestMockPredicateBehavesCorrectly)\r\n{\r\n\tRunTestIfNameIs predicate(\"pass\");\r\n\t\r\n\tTest pass(\"pass\");\r\n\tTest fail(\"fail\");\r\n\t\r\n\tCHECK(predicate(&pass));\r\n\tCHECK(!predicate(&fail));\t\r\n}\r\n\r\nTEST_FIXTURE(TestRunnerFixture, TestRunnerRunsTestsThatPassPredicate)\r\n{\r\n    Test should_run(\"goodtest\");\r\n    list.Add(&should_run);\r\n\r\n    Test should_not_run(\"badtest\");\r\n\tlist.Add(&should_not_run);\r\n \r\n\trunner.RunTestsIf(list, NULL, RunTestIfNameIs(\"goodtest\"), 0);\r\n\tCHECK_EQUAL(1, reporter.testRunCount);\r\n    CHECK_EQUAL(\"goodtest\", reporter.lastStartedTest);\r\n}\r\n\r\nTEST_FIXTURE(TestRunnerFixture, TestRunnerOnlyRunsTestsInSpecifiedSuiteAndThatPassPredicate)\r\n{\r\n    Test runningTest1(\"goodtest\", \"suite\");\r\n    Test skippedTest2(\"goodtest\");\r\n    Test skippedTest3(\"badtest\", \"suite\");\r\n    Test skippedTest4(\"badtest\");\r\n    \r\n    list.Add(&runningTest1);\r\n    list.Add(&skippedTest2);\r\n    list.Add(&skippedTest3);\r\n    list.Add(&skippedTest4);   \r\n\r\n\trunner.RunTestsIf(list, \"suite\", RunTestIfNameIs(\"goodtest\"), 0);\r\n\r\n\tCHECK_EQUAL(1, reporter.testRunCount);\r\n    CHECK_EQUAL(\"goodtest\", reporter.lastStartedTest); \r\n    CHECK_EQUAL(\"suite\", reporter.lastStartedSuite);    \r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestTestSuite.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n\r\n// We're really testing if it's possible to use the same suite in two files\r\n// to compile and link successfuly (TestTestSuite.cpp has suite with the same name)\r\n// Note: we are outside of the anonymous namespace\r\nSUITE(SameTestSuite)\r\n{\r\n    TEST(DummyTest2)\r\n    {\r\n    }\r\n}\r\n\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestTimeConstraint.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"../TestResults.h\"\r\n#include \"../TimeHelpers.h\"\r\n#include \"RecordingReporter.h\"\r\n#include \"ScopedCurrentTest.h\"\r\n\r\nusing namespace UnitTest;\r\n\r\nnamespace\r\n{\r\n\r\nTEST(TimeConstraintSucceedsWithFastTest)\r\n{\r\n    TestResults result;\r\n    {\r\n\t\tScopedCurrentTest scopedResult(result);\r\n        TimeConstraint t(200, TestDetails(\"\", \"\", \"\", 0));\r\n        TimeHelpers::SleepMs(5);\r\n    }\r\n    CHECK_EQUAL(0, result.GetFailureCount());\r\n}\r\n\r\nTEST(TimeConstraintFailsWithSlowTest)\r\n{\r\n    TestResults result;\r\n    {\r\n\t\tScopedCurrentTest scopedResult(result);\r\n        TimeConstraint t(10, TestDetails(\"\", \"\", \"\", 0));\r\n        TimeHelpers::SleepMs(20);\r\n    }\r\n    CHECK_EQUAL(1, result.GetFailureCount());\r\n}\r\n\r\nTEST(TimeConstraintFailureIncludesCorrectData)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults result(&reporter);\r\n    {\r\n\t\tScopedCurrentTest scopedResult(result);\r\n\r\n\t\tTestDetails const details(\"testname\", \"suitename\", \"filename\", 10);\r\n        TimeConstraint t(10, details);\r\n        TimeHelpers::SleepMs(20);\r\n    }\r\n\r\n\tusing namespace std;\r\n\r\n\tCHECK(strstr(reporter.lastFailedFile, \"filename\"));\r\n    CHECK_EQUAL(10, reporter.lastFailedLine);\r\n    CHECK(strstr(reporter.lastFailedTest, \"testname\"));\r\n}\r\n\r\nTEST(TimeConstraintFailureIncludesTimeoutInformation)\r\n{\r\n    RecordingReporter reporter;\r\n    TestResults result(&reporter);\r\n    {\r\n\t\tScopedCurrentTest scopedResult(result);\r\n        TimeConstraint t(10, TestDetails(\"\", \"\", \"\", 0));\r\n        TimeHelpers::SleepMs(20);\r\n    }\r\n\r\n\tusing namespace std;\r\n\r\n\tCHECK(strstr(reporter.lastFailedMessage, \"ime constraint\"));\r\n    CHECK(strstr(reporter.lastFailedMessage, \"under 10ms\"));\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestTimeConstraintMacro.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"../TimeHelpers.h\"\r\n\r\n#include \"RecordingReporter.h\"\r\n#include \"ScopedCurrentTest.h\"\r\n\r\nnamespace {\r\n\r\nTEST (TimeConstraintMacroQualifiesNamespace)\r\n{\r\n    // If this compiles without a \"using namespace UnitTest;\", all is well.\r\n    UNITTEST_TIME_CONSTRAINT(1);\r\n}\r\n\r\nTEST (TimeConstraintMacroUsesCorrectInfo)\r\n{\r\n    int testLine = 0;\r\n    RecordingReporter reporter;\r\n    {\r\n        UnitTest::TestResults testResults(&reporter);\r\n\t\tScopedCurrentTest scopedResults(testResults);\r\n\r\n        UNITTEST_TIME_CONSTRAINT(10); testLine = __LINE__;\r\n        UnitTest::TimeHelpers::SleepMs(20);\r\n    }\r\n\r\n\tusing namespace std;\r\n\r\n    CHECK_EQUAL(1, reporter.testFailedCount);\r\n    CHECK(strstr(reporter.lastFailedFile, __FILE__));\r\n    CHECK_EQUAL(testLine, reporter.lastFailedLine);\r\n    CHECK(strstr(reporter.lastFailedTest, \"TimeConstraintMacroUsesCorrectInfo\"));\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestUnitTest++.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"../ReportAssert.h\"\r\n#include \"ScopedCurrentTest.h\"\r\n\r\n#include <vector>\r\n\r\n// These are sample tests that show the different features of the framework\r\n\r\nnamespace {\r\n\r\nTEST(ValidCheckSucceeds)\r\n{\r\n    bool const b = true;\r\n    CHECK(b);\r\n}\r\n\r\nTEST(CheckWorksWithPointers)\r\n{\r\n    void* p = (void *)0x100;\r\n    CHECK(p);\r\n    CHECK(p != 0);\r\n}\r\n\r\nTEST(ValidCheckEqualSucceeds)\r\n{\r\n    int const x = 3;\r\n    int const y = 3;\r\n    CHECK_EQUAL(x, y);\r\n}\r\n\r\nTEST(CheckEqualWorksWithPointers)\r\n{\r\n    void* p = (void *)0;\r\n    CHECK_EQUAL((void*)0, p);\r\n}\r\n\r\nTEST(ValidCheckCloseSucceeds)\r\n{\r\n    CHECK_CLOSE(2.0f, 2.001f, 0.01f);\r\n    CHECK_CLOSE(2.001f, 2.0f, 0.01f);\r\n}\r\n\r\nTEST(ArrayCloseSucceeds)\r\n{\r\n    float const a1[] = {1, 2, 3};\r\n    float const a2[] = {1, 2.01f, 3};\r\n    CHECK_ARRAY_CLOSE(a1, a2, 3, 0.1f);\r\n}\r\n\r\nTEST (CheckArrayCloseWorksWithVectors)\r\n{\r\n    std::vector< float > a(4);\r\n    for (int i = 0; i < 4; ++i)\r\n        a[i] = (float)i;\r\n\r\n    CHECK_ARRAY_CLOSE(a, a, (int)a.size(), 0.0001f);\r\n}\r\n\r\nTEST(CheckThrowMacroSucceedsOnCorrectException)\r\n{\r\n    struct TestException {};\r\n    CHECK_THROW(throw TestException(), TestException);\r\n}\r\n\r\nTEST(CheckAssertSucceeds)\r\n{\r\n    CHECK_ASSERT(UnitTest::ReportAssert(\"desc\", \"file\", 0));\r\n}\r\n\r\nTEST(CheckThrowMacroFailsOnMissingException)\r\n{\r\n    class NoThrowTest : public UnitTest::Test\r\n    {\r\n    public:\r\n        NoThrowTest() : Test(\"nothrow\") {}\r\n        void DontThrow() const\r\n        {\r\n        }\r\n\r\n        virtual void RunImpl() const\r\n        {\r\n            CHECK_THROW(DontThrow(), int);\r\n        }\r\n    };\r\n\r\n    UnitTest::TestResults results;\r\n\t{\r\n\t\tScopedCurrentTest scopedResults(results);\r\n\r\n\t\tNoThrowTest test;\r\n\t\ttest.Run();\r\n\t}\r\n\r\n\tCHECK_EQUAL(1, results.GetFailureCount());\r\n}\r\n\r\nTEST(CheckThrowMacroFailsOnWrongException)\r\n{\r\n    class WrongThrowTest : public UnitTest::Test\r\n    {\r\n    public:\r\n        WrongThrowTest() : Test(\"wrongthrow\") {}\r\n        virtual void RunImpl() const\r\n        {\r\n            CHECK_THROW(throw \"oops\", int);\r\n        }\r\n    };\r\n\r\n    UnitTest::TestResults results;\r\n\t{\r\n\t\tScopedCurrentTest scopedResults(results);\r\n\r\n\t\tWrongThrowTest test;\r\n\t\ttest.Run();\r\n\t}\r\n\r\n\tCHECK_EQUAL(1, results.GetFailureCount());\r\n}\r\n\r\nstruct SimpleFixture\r\n{\r\n    SimpleFixture()\r\n    {\r\n        ++instanceCount;\r\n    }\r\n    ~SimpleFixture()\r\n    {\r\n        --instanceCount;\r\n    }\r\n\r\n    static int instanceCount;\r\n};\r\n\r\nint SimpleFixture::instanceCount = 0;\r\n\r\nTEST_FIXTURE(SimpleFixture, DefaultFixtureCtorIsCalled)\r\n{\r\n    CHECK(SimpleFixture::instanceCount > 0);\r\n}\r\n\r\nTEST_FIXTURE(SimpleFixture, OnlyOneFixtureAliveAtATime)\r\n{\r\n    CHECK_EQUAL(1, SimpleFixture::instanceCount);\r\n}\r\n\r\nvoid CheckBool(const bool b)\r\n{\r\n\tCHECK(b);\r\n}\r\n\r\nTEST(CanCallCHECKOutsideOfTestFunction)\r\n{\r\n\tCheckBool(true);\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "third-party/UnitTest++/src/tests/TestXmlTestReporter.cpp",
    "content": "#include \"../UnitTest++.h\"\r\n#include \"../XmlTestReporter.h\"\r\n\r\n#include <sstream>\r\n\r\nusing namespace UnitTest;\r\nusing std::ostringstream;\r\n\r\nnamespace\r\n{\r\n\r\n#ifdef UNITTEST_USE_CUSTOM_STREAMS\r\n\r\n// Overload to let MemoryOutStream accept std::string\r\nMemoryOutStream& operator<<(MemoryOutStream& s, const std::string& value)\r\n{\r\n    s << value.c_str();\r\n    return s;\r\n}\r\n\r\n#endif\r\n\r\nstruct XmlTestReporterFixture\r\n{\r\n    XmlTestReporterFixture()\r\n        : reporter(output)\r\n    {\r\n    }\r\n\r\n    ostringstream output;\r\n    XmlTestReporter reporter;\r\n};\r\n\r\nTEST_FIXTURE(XmlTestReporterFixture, MultipleCharactersAreEscaped)\r\n{\r\n    TestDetails const details(\"TestName\", \"suite\", \"filename.h\", 4321);\r\n\r\n    reporter.ReportTestStart(details);\r\n    reporter.ReportFailure(details, \"\\\"\\\"\\'\\'&&<<>>\");\r\n    reporter.ReportTestFinish(details, 0.1f);\r\n    reporter.ReportSummary(1, 2, 3, 0.1f);\r\n\r\n    char const* expected =\r\n        \"<?xml version=\\\"1.0\\\"?>\"\r\n        \"<unittest-results tests=\\\"1\\\" failedtests=\\\"2\\\" failures=\\\"3\\\" time=\\\"0.1\\\">\"\r\n        \"<test suite=\\\"suite\\\" name=\\\"TestName\\\" time=\\\"0.1\\\">\"\r\n        \"<failure message=\\\"filename.h(4321) : \"\r\n        \"&quot;&quot;&apos;&apos;&amp;&amp;&lt;&lt;&gt;&gt;\\\"/>\"\r\n        \"</test>\"\r\n        \"</unittest-results>\";\r\n\r\n    CHECK_EQUAL(expected, output.str());\r\n}\r\n\r\nTEST_FIXTURE(XmlTestReporterFixture, OutputIsCachedUntilReportSummaryIsCalled)\r\n{\r\n    TestDetails const details(\"\", \"\", \"\", 0);\r\n\r\n    reporter.ReportTestStart(details);\r\n    reporter.ReportFailure(details, \"message\");\r\n    reporter.ReportTestFinish(details, 1.0F);\r\n    CHECK(output.str().empty());\r\n\r\n    reporter.ReportSummary(1, 1, 1, 1.0f);\r\n    CHECK(!output.str().empty());\r\n}\r\n\r\nTEST_FIXTURE(XmlTestReporterFixture, EmptyReportSummaryFormat)\r\n{\r\n    reporter.ReportSummary(0, 0, 0, 0.1f);\r\n\r\n    const char *expected =\r\n\"<?xml version=\\\"1.0\\\"?>\"\r\n\"<unittest-results tests=\\\"0\\\" failedtests=\\\"0\\\" failures=\\\"0\\\" time=\\\"0.1\\\">\"\r\n\"</unittest-results>\";\r\n\r\n    CHECK_EQUAL(expected, output.str());\r\n}\r\n\r\nTEST_FIXTURE(XmlTestReporterFixture, SingleSuccessfulTestReportSummaryFormat)\r\n{\r\n    TestDetails const details(\"TestName\", \"DefaultSuite\", \"\", 0);\r\n\r\n    reporter.ReportTestStart(details);\r\n    reporter.ReportSummary(1, 0, 0, 0.1f);\r\n\r\n    const char *expected =\r\n\"<?xml version=\\\"1.0\\\"?>\"\r\n\"<unittest-results tests=\\\"1\\\" failedtests=\\\"0\\\" failures=\\\"0\\\" time=\\\"0.1\\\">\"\r\n\"<test suite=\\\"DefaultSuite\\\" name=\\\"TestName\\\" time=\\\"0\\\"/>\"\r\n\"</unittest-results>\";\r\n\r\n    CHECK_EQUAL(expected, output.str());\r\n}\r\n\r\nTEST_FIXTURE(XmlTestReporterFixture, SingleFailedTestReportSummaryFormat)\r\n{\r\n    TestDetails const details(\"A Test\", \"suite\", \"A File\", 4321);\r\n\r\n    reporter.ReportTestStart(details);\r\n    reporter.ReportFailure(details, \"A Failure\");\r\n    reporter.ReportSummary(1, 1, 1, 0.1f);\r\n\r\n    const char *expected =\r\n        \"<?xml version=\\\"1.0\\\"?>\"\r\n        \"<unittest-results tests=\\\"1\\\" failedtests=\\\"1\\\" failures=\\\"1\\\" time=\\\"0.1\\\">\"\r\n        \"<test suite=\\\"suite\\\" name=\\\"A Test\\\" time=\\\"0\\\">\"\r\n        \"<failure message=\\\"A File(4321) : A Failure\\\"/>\"\r\n        \"</test>\"\r\n        \"</unittest-results>\";\r\n\r\n    CHECK_EQUAL(expected, output.str());\r\n}\r\n\r\nTEST_FIXTURE(XmlTestReporterFixture, FailureMessageIsXMLEscaped)\r\n{\r\n    TestDetails const details(\"TestName\", \"suite\", \"filename.h\", 4321);\r\n\r\n    reporter.ReportTestStart(details);\r\n    reporter.ReportFailure(details, \"\\\"\\'&<>\");\r\n    reporter.ReportTestFinish(details, 0.1f);\r\n    reporter.ReportSummary(1, 1, 1, 0.1f);\r\n\r\n    char const* expected =\r\n        \"<?xml version=\\\"1.0\\\"?>\"\r\n        \"<unittest-results tests=\\\"1\\\" failedtests=\\\"1\\\" failures=\\\"1\\\" time=\\\"0.1\\\">\"\r\n        \"<test suite=\\\"suite\\\" name=\\\"TestName\\\" time=\\\"0.1\\\">\"\r\n        \"<failure message=\\\"filename.h(4321) : &quot;&apos;&amp;&lt;&gt;\\\"/>\"\r\n        \"</test>\"\r\n        \"</unittest-results>\";\r\n\r\n    CHECK_EQUAL(expected, output.str());\r\n}\r\n\r\nTEST_FIXTURE(XmlTestReporterFixture, OneFailureAndOneSuccess)\r\n{\r\n    TestDetails const failedDetails(\"FailedTest\", \"suite\", \"fail.h\", 1);\r\n    reporter.ReportTestStart(failedDetails);\r\n    reporter.ReportFailure(failedDetails, \"expected 1 but was 2\");\r\n    reporter.ReportTestFinish(failedDetails, 0.1f);\r\n\r\n    TestDetails const succeededDetails(\"SucceededTest\", \"suite\", \"\", 0);\r\n    reporter.ReportTestStart(succeededDetails);\r\n    reporter.ReportTestFinish(succeededDetails, 1.0f);\r\n    reporter.ReportSummary(2, 1, 1, 1.1f);\r\n\r\n    char const* expected =\r\n        \"<?xml version=\\\"1.0\\\"?>\"\r\n        \"<unittest-results tests=\\\"2\\\" failedtests=\\\"1\\\" failures=\\\"1\\\" time=\\\"1.1\\\">\"\r\n        \"<test suite=\\\"suite\\\" name=\\\"FailedTest\\\" time=\\\"0.1\\\">\"\r\n        \"<failure message=\\\"fail.h(1) : expected 1 but was 2\\\"/>\"\r\n        \"</test>\"\r\n        \"<test suite=\\\"suite\\\" name=\\\"SucceededTest\\\" time=\\\"1\\\"/>\"\r\n        \"</unittest-results>\";\r\n\r\n    CHECK_EQUAL(expected, output.str());\r\n}\r\n\r\nTEST_FIXTURE(XmlTestReporterFixture, MultipleFailures)\r\n{\r\n    TestDetails const failedDetails1(\"FailedTest\", \"suite\", \"fail.h\", 1);\r\n    TestDetails const failedDetails2(\"FailedTest\", \"suite\", \"fail.h\", 31);\r\n\r\n    reporter.ReportTestStart(failedDetails1);\r\n    reporter.ReportFailure(failedDetails1, \"expected 1 but was 2\");\r\n    reporter.ReportFailure(failedDetails2, \"expected one but was two\");\r\n    reporter.ReportTestFinish(failedDetails1, 0.1f);\r\n\r\n    reporter.ReportSummary(1, 1, 2, 1.1f);\r\n\r\n    char const* expected =\r\n        \"<?xml version=\\\"1.0\\\"?>\"\r\n        \"<unittest-results tests=\\\"1\\\" failedtests=\\\"1\\\" failures=\\\"2\\\" time=\\\"1.1\\\">\"\r\n        \"<test suite=\\\"suite\\\" name=\\\"FailedTest\\\" time=\\\"0.1\\\">\"\r\n        \"<failure message=\\\"fail.h(1) : expected 1 but was 2\\\"/>\"\r\n        \"<failure message=\\\"fail.h(31) : expected one but was two\\\"/>\"\r\n        \"</test>\"\r\n        \"</unittest-results>\";\r\n\r\n    CHECK_EQUAL(expected, output.str());\r\n}\r\n\r\n}\r\n"
  },
  {
    "path": "tools/genpow10.js",
    "content": "var util = require('util');\n\nfunction findExtreme(direction) {\n    var p = 0;\n    while (Math.pow(10, p) !== Math.pow(10, p + direction)) {\n        p += direction;\n    }\n    return p - direction;\n}\n\nvar maximum = findExtreme(1);\nvar minimum = findExtreme(-1);\n\nutil.print(\"double pow10(int exponent) {\\n\");\nutil.print(\"    if (exponent > \", maximum, \") {\\n\");\nutil.print(\"        return std::numeric_limits<double>::infinity();\\n\");\nutil.print(\"    } else if (exponent < \", minimum, \") {\\n\");\nutil.print(\"        return 0.0;\\n\");\nutil.print(\"    }\\n\");\nutil.print(\"    static const double constants[] = {\\n\");\nvar currentLine = \"\";\nfor (var i = minimum; i <= maximum; ++i) {\n    var next = \"1e\" + i;\n    if (i < maximum) {\n        next += \",\";\n    }\n    any = true;\n    if ((currentLine + next).length > 72) {\n        util.print(\"        \" + currentLine + \"\\n\");\n        currentLine = \"\";\n    }\n    currentLine += next;\n}\nif (currentLine.length) {\n    util.print(\"        \" + currentLine + \"\\n\");\n}\nutil.print(\"    };\\n\");\nutil.print(\"    return constants[exponent + \", -minimum, \"];\\n\");\nutil.print(\"}\\n\");\n"
  }
]