Compare commits

..

60 Commits

Author SHA1 Message Date
995ddf329f Fixes for gcc 15 2025-11-06 12:49:38 -05:00
5fc823b392 This didn't belong here and isn't really necessary 2025-08-25 16:50:43 -04:00
490b49e55d Remove redundancy 2025-08-25 16:49:21 -04:00
6fc263074e Simplify flowchart 2025-08-25 16:46:46 -04:00
befb464619 More README tinkers 2025-08-25 16:39:01 -04:00
f2bb72b3dc More clarifications in README 2025-08-25 16:19:34 -04:00
81814fa590 Simplify flow chart 2025-08-25 16:00:58 -04:00
611bccfb9b Update README 2025-08-25 15:57:07 -04:00
e8d2855b36 Add maintainer notice 2025-08-25 15:43:37 -04:00
1f540a436a Tailor readme to prospective users 2025-08-25 15:34:29 -04:00
c303478ad7 Avoid Utf8Dfa scan if there's no non-ascii 2025-08-15 19:45:00 -04:00
0b24636c4f Update corpus 2025-08-04 14:42:50 -04:00
bcb5a20f27 Distinguish on_string_data and on_key_data 2025-08-04 14:15:49 -04:00
39fe9be4dc Clarify header comments 2025-08-04 12:44:00 -04:00
7801dbe6d7 Add missing files 2025-08-04 12:43:45 -04:00
0ed07e454a Merge remote-tracking branch 'origin/flags' 2025-08-04 12:36:20 -04:00
18a66009e1 Clarify memory usage comment in readme 2025-08-04 12:35:48 -04:00
6e244d1318 Add packaging and symbol visibility tests
Only tested on x86 linux so far
2025-08-04 12:35:26 -04:00
9e4f90f218 Add WeaselJsonRaw flag 2025-06-25 18:44:37 -04:00
3e72181bee Add flags argument to WeaselJsonParser_create 2025-06-25 16:44:31 -04:00
01d81981f7 Fix arm build 2025-06-25 11:55:19 -04:00
89211753e2 Add to corpus 2025-06-24 15:58:58 -04:00
2e803b5a76 Fix bogus assert. 0x10ffff is a valid code point 2025-06-24 15:48:16 -04:00
a8aab0187e Add some comments 2025-06-24 15:10:01 -04:00
63a1be497b Remove unused table
It was making it into the shared object somehow
2025-06-24 15:09:21 -04:00
7470c69845 Ignore error in some places where push can't fail 2025-06-24 14:57:27 -04:00
c2f5d6983a Store stackEnd instead of stackSize 2025-06-24 14:57:11 -04:00
575b6e5c62 Direct call to next continuation in some cases 2025-06-24 14:46:20 -04:00
67e63dc611 Multiply stackSize by sizeof stack element 2025-06-24 13:33:39 -04:00
9319076b44 Remove Parser3::complete 2025-06-24 13:15:39 -04:00
d1de15a0ca Don't flush strings from keepGoing 2025-06-24 13:02:54 -04:00
dfce1ae412 Buf fix: Check for empty before resuming n_string2 2025-06-24 12:43:01 -04:00
5e3fa62a06 Remove acceptsEmptyString table 2025-06-24 12:19:31 -04:00
330101a937 Handle unescaping directly in n_string2 if space permits 2025-06-24 10:43:40 -04:00
9803364adb Use table for hex values 2025-06-23 21:52:17 -04:00
2299904557 Compare dfa and simdjson::validate_utf8 2025-06-23 14:29:49 -04:00
578e507b96 Remove .clang-format 2025-06-23 14:29:40 -04:00
d536f7ba69 Add debugging printf commented out 2025-06-23 14:18:15 -04:00
851d07bc43 Use != instead of > 0 2025-06-23 14:15:25 -04:00
451c07747e Move dfa's to tables.h 2025-06-23 14:15:05 -04:00
5df9d958ab Unroll whitespace-skipping loop 2025-06-23 14:00:29 -04:00
47a418b689 Separate "normal" and "unicode" escapes 2025-06-23 13:18:05 -04:00
fe60881476 Add literals bench 2025-06-23 13:10:41 -04:00
4a9dfe0b45 Nest escape handling under N_STRING2 2025-06-23 13:06:12 -04:00
7ae2ef5443 Stop inlining strings and numbers into n_value
Too complex
2025-06-23 13:00:10 -04:00
2cd2975ad4 Remove dead code 2025-06-23 12:36:49 -04:00
f4c4ed4c36 Compare specific inputs with simdjson dom 2025-06-23 12:24:28 -04:00
03156d2036 Benchmarks that push the implementation in a specific way 2025-06-23 12:19:28 -04:00
56fc45ab52 Remove dead code 2025-06-23 11:53:39 -04:00
e477ff095a clangd and clang-format pre commit agree now
Sheesh
2025-06-23 10:53:11 -04:00
fc1b3ac147 Fix string scan bug 2025-06-22 23:02:38 -04:00
95250d1668 Improve fuzz testing to find string scan bug 2025-06-22 23:00:34 -04:00
5a74124cae Fix bug 2025-06-22 19:47:59 -04:00
337d93bcea simd scan with dfa as fallback 2025-06-21 21:59:21 -04:00
fa0cc1a970 Scan string directly in n_value 2025-06-21 21:17:12 -04:00
229a68bfdd Switch to dfa for strings 2025-06-21 17:12:48 -04:00
6c48c40d67 Rename tables 2025-06-21 16:05:02 -04:00
1df18b3c57 Add comments to dfa's 2025-06-21 16:01:35 -04:00
7806f6420f Add to corpus 2025-06-21 15:56:42 -04:00
5613303d52 Add automata to recognize utf8 in strings 2025-06-21 15:56:15 -04:00
482 changed files with 9268 additions and 827 deletions

View File

@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: 6d365699efc33b1b432eab5b4ae331a19e1857de # frozen: v18.1.2
rev: 64827eb3528d4dc019b01153e9fb79107241405f # frozen: v20.1.6
hooks:
- id: clang-format
exclude: ".*third_party/.*"
@@ -9,6 +9,6 @@ repos:
hooks:
- id: cmake-format
- repo: https://github.com/psf/black
rev: 552baf822992936134cbd31a38f69c8cfe7c0f05 # frozen: 24.3.0
rev: 8a737e727ac5ab2f1d4cf5876720ed276dc8dc4b # frozen: 25.1.0
hooks:
- id: black

View File

@@ -174,3 +174,107 @@ endif()
add_executable(validate src/validate.cpp)
target_link_libraries(validate ${PROJECT_NAME}-static)
target_include_directories(validate PRIVATE include)
# symbol visibility tests
if(NOT CMAKE_BUILD_TYPE STREQUAL Debug)
if(APPLE)
set(symbol_exports ${CMAKE_CURRENT_SOURCE_DIR}/apple-symbol-exports.txt)
set(symbol_imports ${CMAKE_CURRENT_SOURCE_DIR}/apple-symbol-imports.txt)
else()
set(symbol_exports ${CMAKE_CURRENT_SOURCE_DIR}/symbol-exports.txt)
if(CMAKE_SYSTEM_PROCESSOR STREQUAL aarch64)
set(symbol_imports ${CMAKE_CURRENT_SOURCE_DIR}/aarch64-symbol-imports.txt)
else()
set(symbol_imports ${CMAKE_CURRENT_SOURCE_DIR}/symbol-imports.txt)
endif()
endif()
add_test(
NAME conflict_set_shared_symbols
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/test_symbols.sh
$<TARGET_FILE:${PROJECT_NAME}> ${symbol_exports} ${symbol_imports})
add_test(
NAME conflict_set_static_symbols
COMMAND
${CMAKE_CURRENT_SOURCE_DIR}/test_symbols.sh
$<TARGET_FILE:${PROJECT_NAME}-static> ${symbol_exports} ${symbol_imports})
endif()
if(NOT CMAKE_CROSSCOMPILING)
find_program(HARDENING_CHECK hardening-check)
if(HARDENING_CHECK)
add_test(NAME hardening_check
COMMAND ${HARDENING_CHECK} $<TARGET_FILE:${PROJECT_NAME}>
--nofortify --nostackprotector)
endif()
endif()
# packaging
set(CPACK_PACKAGE_CONTACT andrew@weaselab.dev)
set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME all)
set(CPACK_PACKAGE_VENDOR "Weaselab")
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE")
set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}/README.md")
# rpm
set(CPACK_RPM_PACKAGE_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR})
set(CPACK_RPM_SPEC_INSTALL_POST "/bin/true") # avoid stripping
set(CPACK_RPM_PACKAGE_LICENSE "Apache 2.0")
set(CPACK_RPM_FILE_NAME RPM-DEFAULT)
# deb
set(CPACK_DEBIAN_FILE_NAME DEB-DEFAULT)
# see *-imports.txt - dependency versions need to be synced with symbol versions
if(CMAKE_SYSTEM_PROCESSOR STREQUAL aarch64)
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.17)")
else()
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.14)")
endif()
# macos
set(CMAKE_OSX_DEPLOYMENT_TARGET 11.0)
if(APPLE)
find_program(PANDOC_EXE pandoc)
if(PANDOC_EXE)
execute_process(COMMAND ${PANDOC_EXE} ${CMAKE_CURRENT_SOURCE_DIR}/README.md
-o ${CMAKE_CURRENT_BINARY_DIR}/README.txt)
set(CPACK_RESOURCE_FILE_README ${CMAKE_CURRENT_BINARY_DIR}/README.txt)
endif()
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/LICENSE
${CMAKE_CURRENT_BINARY_DIR}/LICENSE.txt COPYONLY)
set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_BINARY_DIR}/LICENSE.txt)
endif()
include(CPack)
include(GNUInstallDirs)
target_include_directories(
${PROJECT_NAME}
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME}>)
target_include_directories(
${PROJECT_NAME}-static
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME}>)
set_target_properties(
${PROJECT_NAME} PROPERTIES VERSION ${PROJECT_VERSION}
SOVERSION ${PROJECT_VERSION_MAJOR})
install(
TARGETS ${PROJECT_NAME} ${PROJECT_NAME}-static
EXPORT ${PROJECT_NAME}Config
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
install(DIRECTORY include/
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME})
install(EXPORT ${PROJECT_NAME}Config
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PROJECT_NAME}/cmake)
cpack_add_component(all)

203
LICENSE Normal file
View File

@@ -0,0 +1,203 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

100
README.md
View File

@@ -1,26 +1,98 @@
# Weaseljson
# WeaselJSON: A Streaming JSON Parser
An rfc8259-compliant streaming json parser
## What is WeaselJSON?
# Features
WeaselJSON is a high-performance, streaming JSON parser that uses callbacks instead of building an object tree in memory. It's optimized with SIMD instructions and designed for situations where you either can't or don't want to load entire JSON files into memory.
- SAX-style api
## Key Characteristics
**What's good:**
- Uses constant memory regardless of input size
- Fast parsing with SIMD optimizations
- Follows JSON spec properly with good security practices
- You can't accidentally make it O(n²) (unlike the simdjson ondemand api)
- Enables weird use cases like parsing just the beginning of huge JSON files
**What's not good:**
- The callback API is a pain to use correctly
- Requires a lot of boilerplate for simple tasks
- Most people don't actually need streaming JSON parsing
## JSON Parser Decision Guide
```mermaid
flowchart TD
A[Need to parse JSON?] --> B{Memory or size constraints?}
B -->|Yes| C[WeaselJSON<br/>Streaming parser]
B -->|No| D{Need maximum speed?}
D -->|No| E[SimdJSON DOM<br/>Easy to use]
D -->|Yes| F[SimdJSON On-Demand<br/>Fastest option]
```
## When to Use What
### Use **SimdJSON DOM API** when:
- You want to write `obj["key"]` and have it just work
- JSON files are reasonably sized (but you still want decent performance)
- You care about getting things done
- You need full document validation upfront
### Use **SimdJSON On-Demand** when:
- Performance is critical and your data fits in memory
- You can work with forward-only traversal (no random access or backtracking)
- You need maximum speed but still want a usable API
- You're okay with partial validation (only validates parts you actually access)
- Your JSON keys don't contain escape sequences (OnDemand matches raw keys without unescaping)
### Use **WeaselJSON** when:
- You want to parse just part of a JSON file without reading the rest
- You need to convert JSON into some other format as you parse it
- You need predictable performance characteristics
- Writing stateful callbacks is your idea of fun
## The Reality
WeaselJSON solves real problems that other parsers can't handle, but most people don't have those problems. The callback API is legitimately difficult to use correctly, which pushes most developers toward easier alternatives.
The parser represents excellent engineering work and occupies a useful niche. It's the kind of tool you're very glad exists when you actually need it, but most people will never need it.
## Technical Reference
### Features
- SAX-style callback API
- No memory allocations during parsing
- O(1) stack memory usage
- Streaming api - no need to buffer the entire document in memory. Parsing is resumed when more data is available
- Strings are unescaped in place before they're presented. No unicode normalization is performed
- O(1) memory usage regardless of input size
- Streaming API - no need to buffer the entire document in memory. Parsing is resumed when more data is available
- By default, strings are unescaped in place before they're presented (modifies your input buffer). No unicode normalization is performed
- Robust to crashes with untrusted input
- SIMD optimizations for string scanning and validation
# Rfc8259 conformance notes
### RFC 8259 Conformance
- There are no limits on number precision. Numbers are only validated syntactically and are presented as is
- Only utf-8 is accepted
- Invalid utf-8 is rejected
- Only UTF-8 is accepted
- Invalid UTF-8 is rejected
- Byte order markers are rejected
- Invalid escaped utf16 surrogate pairs are rejected
- Invalid escaped UTF-16 surrogate pairs are rejected
- Documents that are too deeply nested are rejected to control memory usage
- Duplicate keys are presented
# Caveats
### Caveats
- Users should be prepared to discard work done during SAX callbacks if the document is ultimately rejected
- Requires manual state management in callback functions
- API is more complex than DOM-style parsers
## Maintainer Notice
⚠️ **Important**: This is a hobby project by a single maintainer. Please be aware that:
- I'm doing this for fun and learning, not as a professional obligation
- Don't rely on this for mission-critical applications without understanding these limitations
- Feel free to email me, but I may not respond promptly
---
*Note: This document was written by AI (Claude) in collaboration with the author.*

View File

@@ -0,0 +1,56 @@
{";8nf" : 8
,"4" :-8
<EFBFBD>

View File

@@ -0,0 +1 @@
"\uDA00J\0300

View File

@@ -0,0 +1 @@
[[[0,0,[12011111111112111111110,4,">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>[],[[],[[],],[[[3>>>>>>>>>>>->>>>>>3344,4244>1>;":Z{}-

View File

@@ -0,0 +1,9 @@
{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"'":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[[2,
2,2],
{},
{},{},{},[{},
{

View File

@@ -0,0 +1 @@
["\uDA9D\uDDDDux\uDA9D\uDDDdux\uDA9D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9DDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDADdux\uDA9D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDADdux\uDA9D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA8D\uDDDdDDDD

View File

@@ -0,0 +1 @@
["\uDA9D\uDDDDux\uDA9D\uDDDdux\uDA9D\uDDA9D\uDA9D\uDDDDDDtx\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDADdux\uDA9D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDux\uDA9D\uDDDDDux\uDA4D\uDDDd\uDA9D\uDDDDDuDDD

View File

@@ -0,0 +1,19 @@
{"7":"k7", "6":
"{7", "6":
"{7", "7":"k7", "6":
"{7", "7":
"{7", "":"{9991990.-97", "7":"{7", "7":
false, "7":
"{w", "7":"k7", "6":
"{7", "6":
"{7", "7":"k7", "6":
"{7", "7":
"{7", "":"{9991990.-97", "7":"{7", "7":
false, "7":
"{7", "":"{9991990.597", "7":"{7", "7":
false, "6":
"{7", "7":
"{7", "":"{9991990.-97", "7":"{7", "7":
false, "7":
"{7", "\u "":"{999199", "77", "7":
false, ""

View File

@@ -0,0 +1,8 @@
[[2,
[{},[
{
},[{},
{},{},{},
{},[{},{},{},

View File

@@ -0,0 +1 @@
"fa\udafa\udffa2fqfa\udafa\udffa2fa2@@@ffa2fqfa\udafa\udffa2fffa\udafa\udffa2ffa\udafa\udfa2fffa\udafa\udffa2ffa\udafa\udffadffa4fa2@@@@@a2@@@Aa2@2fqfa\udafa\udffa2fffa\udafa\udffa2ffa\udafa\udfa2fffa\udafa\udffa2ffa\udafa\udffadffa2fa2@@@@@a2@2@fa\udafa\udffa2fqfa\udafa\udffa2fffa\udafa\udffa2ffa\udafa\udfa2fffa\udafa\udffa2ffa\ud2fffa\udafa\udffa2ffa\udafa\udfa2ff!!!!!%!!!!!!!!!!!!!!!!!!fa\udafa\udffa2ffa\udafa\udffadfa\udafa\udffa2ffa\udafa\udfa2fffa\udafa\udffa2ffa\udafa\udffa2@@@Aaa\udafa\udffa2fffa\udafa\udffa2ffa\udafa\udfa2fffa\udafa\udffa2ffa\udafa\udffadffa2fa2@@@@@a2@2@fa\udafa\udffa2fqfa\udafa\udffa2fffa\udafa\udffa2ffa\udafa\udfa2fffa\udafa\udffa2ffa\ud2fffa\udafadfa2ff!!!@@a2@@@@AA

View File

@@ -0,0 +1 @@
[[[[[[[true,true,[ true, true,true,true,[ [[[true,true,true,[ true,true,true,true,[ true,[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[ true,true,true,[ true,[[[[[[[ true,true,[ true,true, true,true,true,[ true,[[[ true,true,true,[ true,[[[[[[[true,true,[ true,true, true,[[[[[[[[[[ true,true,[[ true,true,[[[[[ true,true,true,[ true,[[[[[[true,true,[ true,true, true,true,true,[ true,[[[ true,true,[[ true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[[[[[[[[[ true,true,true,[ true,[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[ true,true,true,[ true,[[[[[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[[[[[[[[[ true,true,true,[ true,true,true,true,[ true,[[[[[[[[ true,true,[[ true,true,[[[[[ true,true,true,[ true,[[[[[[true,true,[ true,true, true,true,true,[ true,[[[ true,true,[[ true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[[[[ true,true,true,[ true,[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[ true,true,true,[ true,[[[[[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[[[[[[[[[ true,true,true,[ true,true,true[

View File

@@ -0,0 +1 @@
nn

Binary file not shown.

View File

@@ -0,0 +1,90 @@
[[[{},{}, [[[{},{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222241.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
[[-418,[8111,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{
}, [[[{},{},[[false, [[false, [[[{},4,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-20.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[78,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false,34e55,335223334e55,33e5,334e55,3e5,3999099999,8,99919999999,999099999,8,99199999,9999909,8n":},
{},5,[3<> -4,331

View File

@@ -0,0 +1,39 @@
{"7":"k7", "6":
"{7", "6":
"{7", "7":"k7", "6":
"{7", "7":
"{7", "7":
false, "7":
"{w", "7":"k7", "6":
"{7", "6":
"{7", "7":"k7", "6":
"{7", "7":
"A{7", "":"{9991990.-97", "7":"{7", "7":
false, "7":
"{7", "":"{9991990.597", "7":"{7", "7":
false, "6":
"{7", "7":
"{7", "":"{9991990.-97", "7":"{7", "7":
false, "1":
"{7", "":"{999199", "7":"k7", "7":
false, "7":
false, "7":
"{7", "":"{999199", "7":"k7", "6":
"{7", "7":
"{7",
fal ""

View File

@@ -0,0 +1,2 @@
{"6,..\udafa\udffaXX4,[[Xg<58>Y018

View File

@@ -0,0 +1 @@
"\ufa2

Binary file not shown.

View File

@@ -0,0 +1 @@
[5,[5K,<2C>ǀ<EFBFBD><C780><EFBFBD><EFBFBD><EFBFBD><EFBFBD>

Binary file not shown.

View File

@@ -0,0 +1 @@
[ [ [false, [ [[false, [ fa

View File

@@ -0,0 +1,85 @@
[8,[[[[ [8,[[[[ [[8,[8,[8,[[[
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
[
[[-41.8,[8,[8,[[[
[8,[8,[8,[[[
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
[
[[-41.8,[8,[8,[[[
[8,8,[[[[ [[8,[8,[8,[[[
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
[
[[-41.8,[8,[8,[[[
[8,[8,[8,[[[
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
[
[[-41.8,[8,[8,[[[
[8,8,[[[[ [[8,[8,[8,[[[
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
[
[[-41.8,[8,[8,[[[
[8,[8,[8,[[[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
[
[[-41.8,[8,[8,[[[
[8,[8,[8,[[[
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[
[[-418,[8,[[[[[-41.8,[8,8[,[[[[[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[641.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
[
[[-41.8,[8,[8,6[[[
[8,[8,[8,[[[
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[
[

Binary file not shown.

View File

@@ -0,0 +1,102 @@
[[[{},{}, [[[{},{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222241.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{
}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-20.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[
-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[ [[[ [[-41.8,[3,[8,{"": [[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[78,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false,"V@d83998,9919999999,999099999de557,e3339\ud

View File

@@ -0,0 +1 @@
["\r\/\f\r\1\b

View File

@@ -0,0 +1,16 @@
[[
[[
425,"<22>-

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"1f\u043e\u043b\u0441]u043e\u0440\u041f\u043e\u043budd9d41d\ud82d\udd9c8\ud5de39\ud41d41d\ud82d\udd9c;8\u<><75><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>d0de39\u2d\udd43f0\u0430 \u0417\u0982dd9c8u\2d8d435\u04\u43\u0982dd9c]u\04<30>35\u043a

View File

@@ -0,0 +1 @@
[ [ [ [ [ [ [ [[ [ [ [ 1e+]"]

Binary file not shown.

View File

@@ -0,0 +1 @@
[5,7.777E-5,[57E-5,77.777E-<2D>7.77E-ǀ

View File

@@ -0,0 +1 @@
[5,[5,[2,[6,[5,[5,5,[5,[5,[[5,[5,[417,4,5,[[5,5,[5,[5,[[nul7

View File

@@ -0,0 +1 @@
{"1f.u043e\u043b\u0441]u04\u0440\u041f\u043e\u043b\u0442\u043E\u0443b\u0441]043b\u043eTu\u0430 \u0417\u0870\u043b\u0435\u043a

View File

@@ -0,0 +1 @@
["\uDA9D\uDDDDux\uDA9D\uDDDdux\uDA9D\uDDA9D\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu\uDA9D\uDDA9D\uDA9D\uDDDDD-2Dux\uDA9D\uDDDdDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDADdux\uDA9D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDA9D\uDA9D\uDDDD\<5C> \b\b\fDDDux\uDA9D\uDDDdDDA0

View File

@@ -0,0 +1,55 @@
{"JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ;;" : -8,"88" :-8,"8nf" : 8
, "88" :-8,"8nf" : 8
vvv

View File

@@ -0,0 +1,208 @@
["a",
43333333333333333333
,1,333333333333,3303337E8333333333333
,0,3333
,1333333333,3303337E8333333333333
,0,3333
,133333333333333
,1,33333333333333
,1,33333333333333,33333333333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E8333333333333
,0,3333
,13333,3323336E83333333
,1,33,333333333333,3303337E833333333333,1333333333,3303337E8333333333333
,0,3333
,133333333333333
,1,33333333333333
,1,33333333333333,33333333333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E83333
,133333333333333333333333333333333,30342.5e+53333
,1,3333333,33033337E83333333333333,3323036E83333333
,1,3333333333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E83333
,133333333333333333333333333333333,30342.5e+53333
,1,3333333,33033337E83333333333333,3323036E83333333
,1,33,333333333333,3303337E8333333333333
,0,-73333
,1333333333,3303337E8333733333333
,333333333333333333,33333333333333333333333333333
,1,3333333,33333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E83333
,133333333333333333333333333333333,30342.5e+53333
,1,33333366666666666666666,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E8333333333333
,0,3333
,13333,3323336E83333333
,1,33,333333333333,3303337E8333333333333
,0,-73333
,1333333333,3303337E8333333333333
,0,3333
,133333333333333
,1,33333333333333
,1,33333333333333,33333333333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E83333
,133333333333333333333333333333333,30342.5e+53333
,1,3333333,33033337E833333333333333333333
,0,3333
,133333E83333333,33333333333333333333333333333333,33332.5e+53333
,1,333333,33333333333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E8333333333333
,0,3333
,13333,3323036E83333333
,1,33,333333333333,3303337E8333333333333
,0,-73333
,1333333333,3303337E8333733333333
,33333333333333,3303337E8333333333333
,0,-7333333333,3303337E8333333333333
,0,3333
,1333333333,3303337E8333333333333
,0,3333
,133333333333333
,1,33333333333333
,1,33333333333333,33333333333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E8333333333333
,0,3333
,13333,3323336E83333333
,1,33,333333333333,3303337E8333333333333
,0,-73333
,1333333333,3303337E8333333333333
,0,3333
,133333333333333
,1,33333333333333
,1,33333333333333,33333333333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E83333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,33033337E833333333333333333333
,0,3333
,133333333333333
,1,33333333333333
,1,33333333333333333333333333333333,33332.5e+53333
,333,3303337E833333333,3303337E8333333333333
,0,3333
,1333333333,3303337E8333333333333
,0,3333
,133333333333333
,1,333333333333,3303337E8333333333333
,0,3333
,1333333333,3303337E8333333333333
,0,3333
,13333,3323336E83333333
,1,33333333333,33332.5e+53333
,1,3333333,3303337E833333333,3303337E83333303333333
,0,3333
,1333333333,3303337E8333333333333
,0,3333
,133333333333333
,1,333333333333,3303337E8333333333333
,0,3333
,1333333333,3303337E8333333333333
,0,3333
,13333,3323336E83333333
,1,33,333333333333,3303337E8333333333333
,33,333333333333,3303337E8333333333333
,0,-73333
,1333333333,3303337E8333733333333
,333333333333333333,333333333333333333333333333335e+53333
,1333333,3303337E8333333333333
,0,3333
,133333333333333
,1,33333333333333
,1,33333333333333,33333333333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E83333
,133333333333333333333333333333333,30342.5e+53333
,1,3333333,33033337E83333333333333,3323036E83333333
,1,3333333333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E83333
,1333333333333333333333333E83333333,33333333333333333333333333333333,33332.5e+53333
,1,333333,33333333333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E8333333333333
,0,3333
,13333,3323036E83333333
,1,33,333333333333,3303337E8333333333333
,0,-73333
,1333333333,3303337E8333733333333
,33333333333333,3303337E8333333333333
,0,-7333333333,3303337E8333333333333
,0,3333
,1333333333,3303337E8333333333333
,0,3333
,13333333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E8333333333333
,0,3333
,13333,3323336E83333333
,1,33,333333333333,3303337E8333333333333
,0,-73333
,1333333333,3303337E8333333333333
,0,3333
,133333333333333
,1,33333333333333
,1,33333333333333,33333333333333333333,3303337E8333333333333
,0,3333
,133300000000014926626734644483412,33332.5e+53333
,1,3333333,3303337E83333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,33033337E833333333333333333333
,0,3333
,133333333333333
,1,33333333333333
,1,33333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E833333333,3303337E8333333333333
,0,3333
,1333333333,3303337E8333333333333
,0,3333
,133333333333333
,1,333333333333,3303333333333333,33333333333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E83333
,133333333333333333333333333333333,30342.5e+53333
,1,3333333,33033337E83333333333333,3323036E83333333
,1,3333333333333333333,3303337E8333333333333
,0,3333
,133333333333333333333333333333333,33332.5e+53333
,1,3333333,3303337E8333333,3303337E8333333333333
,0,-73333
,1333333333,3303337E8333333333333
,0,3333
,133333333333333
,1,33333333333333
,1,33333333333333,33333333333333
,1,33,333333333333,3303337E8333333333333
,0,-733
,1,33333333333333
,1,33333333333333,33333333333333333333,3303337E8333333333333
,0,3333
,13333333333333333333333"ffa2fa2@@@@@a2@@@Aa2@@@@a2fa2@fa\udafa\udffa2fqfa\udafa\udffa2fff3333333333
,0,-7333333333,3303337E8333333333333
,0,3333
,1333333333,3303337E8333333333333
,3333333,3303337E8333333333333
,0,<2C><><EFBFBD>33333
,0,1,3333

View File

@@ -0,0 +1,2 @@
[6
[<5B>

View File

@@ -0,0 +1 @@
[ [ [false, [ [ [ [false, [ [false, [ [false, [ [ [ [false, [ [false, [ [false, [ <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>3

View File

@@ -0,0 +1,150 @@
{"":[{"":[[2,
2,2,
[{},[{},
{},{},{},
{},[{},
[[
]],[[{},[{},[{},
{},
{},{},
{},[{},
{
},
{
},[{},
{},{},{},
{},[{},
[[
]],[[
]],[[[
{ },[
[[[[[[[[
]],[[[
{ },[
[[[[[{},
{},
{},{},
{},[{},[{},
{},
{},{},
{},[{},
{
},[{},[{},
{
},[{},
{},{},{},
{},[{},
[[
]],[{},
{},{},{},
{},[{},
[[
]],[[
]],[[[
{ },[
[[[[[[{},[{},
[[
]],[
]],[[[
{ },
{},{},
{},[{},
{
},[{},
{},{},{},
{},[
{},[{},
{
},[{},
{},{},{},
{},[{},
{},
{},{},
{},[{},
{
},[{},
{},{},{},
{},[{},
[[
],
{},{},
{},[{},
{
},[{},
{},{},{},
{},[{},
[[

View File

@@ -0,0 +1,49 @@
[2,
2,2,2,2,2,2,2,
[[2,2,2,2,2,2,
2,
2,
[2,2,22,2,
2,2,2,2,2,2,2,2,
[[2,2,
2,2,
2,
2,2,
2,2,[2,
2,2,2,2,2,2,2,[2,2,
2,2,2,2,
2,
2,
2,2,22,2,2,2,2,2,2,2,2,2,
[2,2,
2,2,
2,
[2,2,
2,2,2,2,
2,2,2,
2,[2,2,22,2,
2,2,2,2,
2,
[2,2,22,2,
2,2,2,2,2,2,2,2,
[[2,2,
2,2,
2,
[2,2,
2,2,2,2,
2,2,2,
2,
[2,2,22,2,
2,[2,
22,2,
2,2,2,
2,
[2,2,22,2,
2,2,2,2,
2,
[2,2,22,2,
2,2,2,2,2,22,2,2,
2,
[2,2,22,2,
2,[2,
2@

View File

@@ -0,0 +1,13 @@
[[
[[
5,[
425,"<22>-

View File

@@ -0,0 +1 @@
"\u00000`0000004gk<67>rue<75>

View File

@@ -0,0 +1 @@
[[-4,[[-2424,-2424,[[-24 [-<2D>2

View File

@@ -0,0 +1,26 @@
{"7":"k7", "6":
"{7", "6":
"{7", "7":"k7", "6":
"{7", "7":
"{7", "":"{9991990.-97", "7":"{7", "7":
false, "7":
"{w", "7":"k7", "6":
"{7", "6":
"{7", "7":"k7", "6":
"{7", "7":
"A{7", "":"{9991990.-97", "7":"{7", "7":
false, "7":
"{7", "":"{9991990.597", "7":"{7", "7":
false, "2":
"{7", "7":
"{7", "":"{9991990.999199", "7":"k7", "6":
"{7", "7":
"{7", "":"{9991990.-=97", "7":"{7", "7":
false, "7":
"{7", "":"{9991990.597", "7":"{7", "7":
false, "7":
false, "7":
"{7", "":"{999199", "7":"k7", "6":
"{7", "7":
"{7",
false, ""

View File

@@ -0,0 +1 @@
[ 0 ]

View File

@@ -0,0 +1,56 @@
{"JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ;;" : -5,"88" :-8,"8nf" : 8
,"88" :-8,"8nf" : 8
<EFBFBD>
v

View File

@@ -0,0 +1,66 @@
[[5,[5,7.7,7E-575,775,[5,775,[5,7E-5,7.777E-5,[5,775,[5,7E-5,7.777E-5,[5,7.5,7.75,775,[5,7E-5,7.777E-5,[5,7.75,775,[5,7E-575,775,[5,775,[5,7E-5,7.777E-5,[[[5,7.75,775,[5,7E-575,775,[5,775,[5,7E-5,7.777E-5,[5,7.5,7.75,775,775,[5,7E-575,77.75,775,[5,7E-575,775.75,775,[5,7E-575,775,[5,775,[5,7E-5,7.777E-5,[5,4.5,7.75,775,775,[5,7E-575,77.75,7757E-5,[5,7.5,7.75,[5,7E-575,77.75,775,[5,7E-575,775575,5,7.5,7.75,[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-3,[8,[[41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-3,[8,[[41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ 5,[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[
[[-41.8,[8,8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-41.8,[8,8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[7,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[ [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[-41.8,[8,[8,[[[1.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[5,7E-5,7.7,[
-611111110,0,[
-61111112111111110,[
[true,
-61211115,5,7.7775,775,[5,7E-5,7.777E-5[5,7E-575,7-

View File

@@ -0,0 +1,85 @@
[33366
,0,366
,0,[[[{},{}, [[[{},{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222241.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-82,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},7,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{
}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[[ 8,[[[[41.8,[8,[8,[[[[ [[[ [[-20.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-48,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[78,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false,34e55,335223334e55,33e5,334e55,3e5,39990999999,999099999,8,9999999049999,{},{},[[false, [[false, in":},
{},5,[3<> -4e55,33

View File

@@ -0,0 +1,136 @@
[[2,
2,2,
{},{},{},
[[{},[{},[{},
{},
{},{},
{},[{},
{
},[{}]],[[[
{ },[
[[[[[{},
{},
{},{},
{},[{},[{},
{},
{},{},
{},[{},
{
},[{},
{},{},{},
{},[{},
{},
{},{},
{},[{},
{
},[{},
{},{},{},
{},[{},
[[
]],[[
]],[[[
{ },[
[[[[[[[[
]],[[[
{ },{},
{},
{},{},
{},[{},
{
},[{},[{},
{
},[{},[
[[[[[[[{ },[[{},
{
},[{},
{},{},{},
{},[{},
{},
{},{},
{},[{},
{
},[{}
]],[[[
{ },
{},{},
{},[{},
{
},[{},
{},{},{},
{},[
{},[{},
{

View File

@@ -0,0 +1,4 @@
[[[ [[0,0,[11201111111112111111110,5,[
[[],[],[{">>>>>>>>>>>>>>>>>>>>Y>>>>>>>>>[],[[],[?],[[],],[[],[3<>>>>>>>>>>>>?>;":["a",
43333333333333,[[[[{"m in": 58, "ma0min": -528 }]],[[[[[{ "min":58, "mn": -52}]],[]]],[[[[]],[[[[[{ "mi": -528 }]],[[f

View File

@@ -0,0 +1,4 @@
[[0,0,[112011111111112111111110,5,[
[[],[],[{">>>>>>>>>>>>>>>>>>>>Y>>>>>>>>>[],[[],[?],[[],[],[[],[3>>>>>>>>>>>>>?>;":["a",

View File

@@ -0,0 +1,91 @@
[[[{},{}, [[[{},{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-222222222222222222222222222222222222222222222222222222222222222222222241.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[899,
9,0,3,0,3,99,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{}
,[[[[{},{
}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-20.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[78,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false,34e55,335223334e55,33e5,334e55,3e5,39990999,99999990999909999,9990999998,9919999999,999099999,8,99199999,9999909,8,991999999,99909999,999099999,8,9999999049999,8,991999999,4e55,33

View File

@@ -0,0 +1 @@
[[[[[[[[ true,true,[ true, true,true,true,[ [[[[[[[[[[[[[true,true,[ true,true, true

View File

@@ -0,0 +1 @@
"\t\t\\\t\

View File

@@ -0,0 +1 @@
"Lafa\ufa2dudu\udafa\ufa2f

View File

@@ -0,0 +1 @@
{";;" : -6,"8[%5,5,5,[-5," : -8,"" : -8,"8" : 8,"" : -8,"8" :-9,"8" : 8,"" : -8,"" : -6,"8" : 8,"" :8,"8 8

View File

@@ -0,0 +1 @@
{"3b\u0435\u043a\u043a\u044e\u043f04Ef\u043e\u047e\u043f0\u0430) \u04130\u043c\u041f\u043e\u043b\u041f\u043e\u043b\u043e\u048f0\u0430 \u04135^" }

Binary file not shown.

View File

@@ -0,0 +1 @@
"\ud83d

View File

@@ -0,0 +1,2 @@
[[333336666666333,66666666633333333333,6666666666604000,666666663333333333333333,66666666666333,60043333333333333,6666664666604000,6666666663366666604000,666666666333333333,66666666666040003333332,[[[[[[[[[[[[
true[66"04

View File

@@ -0,0 +1 @@
11111666666666666666666666 v66

Binary file not shown.

View File

@@ -0,0 +1 @@
[[[ true,[[[[true, true,true,true,[ true,[[[[[["\"\b\b\f[\n\"\\!\/\b\\50\"\"&\\u30af\u0061-u6\u0030\\u30af\u0061-u6\u000af\u0061-u6\"6\u003061-u6\"\\u30af\u0061-u@:6\u0030\\u30af61-u6\"6\u003061-u6\"\\u30af\u0061-u:6\u0030\\u30af\u0061-u6\u0030\u30af\u0061-u6\"630\u30af\u0061-u6\"\u30af\u0061-u6\"\\u30af\u0061-u6\u0030\\\\u60ar]\/\6f\\/][99\f",8,9999

View File

@@ -0,0 +1 @@
{"" :"",:[":

View File

@@ -0,0 +1,7 @@
[[[{},{}, [[[[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[[[ true,[[[[true, true,true,true,[ true,[[[[[["\"\b\b\f[\n\"\\!\/\b\\50\"\"&\\u30af\u0061-u6\u0030\\u30af\u0061-u6\u000af\u0061-u6\"6\u003061-u6\"\\u30af\u0060af61-u6\"6\u003061-u6\"\\u30af\u0061-u:2\u0030\\u30af\u0061-u6\u0030\u30af\u0061-u6\"630\u30af\u0061-u6\"\u30af\u0061-u6\"\\u30af\u0061-u6\u0030\\\\u60af\u0061-u6\u0030\u30a0061-q6\u000af\u0061-u6\"6\u000af\u0061-u2\u0030\\u30061-u6\"6\u00306Y1-u6\"\\u30af\u0061-u@:6\u0030\\u30af61-u6\"6\u003061-u6\"\\u30af\u0061-u:6\u0030\\u30af\u0061-u6\u0030\u30af\u0061-u6\"630\u30af\u0061-u6\"\u30af\u0061-u\"\u30af\u0061-u6\"\\u30af<61><66><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>u6\"6\u000af\u0061-u2\u0030\\u30061999[[-41.8,[-41.8,[8,[8,<2C>[[[[-41.3345,3352234e5,334.e55,334 -3,5,[-" : 8,"" : -8"8[[ [[[
[
[[-41.8,[8,[8,[[[
[8{},[-[

View File

@@ -0,0 +1,81 @@
[ {";;" :
8,"8;"

View File

@@ -0,0 +1 @@
"\udded\\udd

Binary file not shown.

View File

@@ -0,0 +1 @@
"10D15\uDDAD\uDDFD

View File

@@ -0,0 +1 @@
16666666666611111111111111111,1

View File

@@ -0,0 +1,62 @@
[[[{},{}, [[[{},{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[-418,[8,[[[
[[-41.8,[8,[8,
9777E-1,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},2,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[8,[8,[[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, "ffa2ffa\udafa\udffad@faa\udff41.8,[8,[8,[[[

View File

@@ -0,0 +1,56 @@
4

View File

@@ -0,0 +1,2 @@
4 <20><>
<EFBFBD>

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,77 @@
[[[
]],[
[[[
]],[
[[[[
]],[
[[
[[
]],[
]],[
[[[[[[
]],[]]]]],[[[[]],[[[[[],[]]]],[[[]],[]]]]]],[]],[[[[[[]]],[[[]],[[[[[[[],[[[[[[]],[[[[],[[[]]]]],[],[[]]],[],[[[[[],[[[[[]],[[[[[]],[[[],[[[]]]]],[]]]],[[[[[]],[
]],[
[[[]]]]],[[[[]],[[[[[],[]]]],[[[]],[]]]]]],[]],[[[[[[]]],[[[]],[[[],[[[[[[]],[[[[],[[[]]]]],[],[[]]],[],[[[[[],[[[[[]],[[[[[]],[[[],[[[]]]]],[]]]],[[[[[]],[]]]]]],[]],[[[],[[[[],[[[[],[[[[],[[]],[
]],[
[[
[[
]],[
]],[
]],[
]],[]
]],[]],[]
]],[
[[[[[
]],[
[[
]],[
[[[[[[
]],[
]],[
[[[[[
]],[
[[[[[
]],[[[[
]],[[[
[[
]],[
]],[
[[
[[
]]]],[
]],[
]],[]],[
[[
]]

View File

@@ -0,0 +1 @@
[-7,-0,-7,-<2D><><EFBFBD>-0,7"3

View File

@@ -0,0 +1 @@
{"":"_________________________________@@@@ffa\udafa\udffa2fa[-401.

View File

@@ -0,0 +1 @@
[[[] ] ][

View File

@@ -0,0 +1 @@
[null,[0,null,null,null,null,null,[1,[1,[null,1,null,null,null,null,null,[0,null,null,null,null,null,[0,[1,[0,null,null,null,null,null,null,null,[0,null,null,null,null,{"\uDA9D\uDDDDux\uDA9D\uDDDdux\uDA9D\uDDA9D\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu\uDA9D\uDDA9D\uDA9D\uDDDDD-2Dux\uDA9D\uDDDdDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDADdux\uDA9D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDA9D\uDA9D\uDDDDDnull,[1,[1,null,null,null,null,null,[0,[1,[0,null,1nulll,,[1

View File

@@ -0,0 +1,5 @@
[[0,0,[112011111111112111111110,5,[
[[],[],[{">>>>>>>>>>>>>>>>>>>>Y>>>>>>>>>[],[[],[?],[[],[],[[],[4>>>>>>>>>>>>>?>;":["a",
43333333333333,[[[[{ "min": -5}]],[[[[333333,3333,3303337333

View File

@@ -0,0 +1,9 @@
[[[
]],[
],[[[
]],[
[[
[[
]],[
],[[[[[[[],[[[[[[],[[[]]]]],[][]

Binary file not shown.

View File

@@ -0,0 +1,7 @@
[4,[5,[5,[4,[5,[5,[5,55,5,[[5,[4,[5,[5,[5,5,[5,[5,[[5,[5,[415,[4,[5,[5,[3,[5,[5,[5,5,[[2,[4,[5,[[5,555,5,[[5,[4,[5,[5,[5,5,[5,[5,[[5,[5,[415,
false,[5,n,[5,

View File

@@ -0,0 +1 @@
"

View File

@@ -0,0 +1 @@
["\"\b\b\f\n\"\\\/\b\\\/:b\b\f\\nb\f\n\r\/\f\n\r\/\\r\/\f\n\rb\\\f\n\r\/\f\n\r\r/\f\n\r\/\\r\/\f\n\r\\<5C>\f\n\r\/\f\n\r\/\\r\\\/\b\b\f\n\"\\\/\b\\\/\b\b\f\n\"\\\/f\n\"\\\/\b\\\/:b\b\f\n\"\\\/\b\b\f\n\r\/\f\n\r\/\\r\/\f\n\r\\b\f\n\r\/\f\n\r\\/\/\f\n\r\7\b

Binary file not shown.

View File

@@ -0,0 +1 @@
{"4%%%%%%%%%%%%%%%%%%%%%%$$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%":{"4%%%%<<<<<<<<<<<<%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$<<<<<<<<<<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%e%%$%%%%%%%%":{"0%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$$%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$5%%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$$%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$5%%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"3%%%%%%%%%%%%%%%%%%%%%$$$$$$$%%'%%%%%0%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%":{"0%%%%<<<<<<<<<<<<%%%%%%":{"4%%%%%%%%%%%%%%%$%%,%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$<<<<<<<<<<%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%":{"4%%%%<<<<<<<<<<<<%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$<<<<<<<<<<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%e%%$%%%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%%$5%%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$$%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$5%%%%%%%":{"5%%%%%%%%%%%%%$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"3%%%%%%%%%%%%%%%%%%%%%$$$$$$$%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%":{"0%%%%<<<<<<<<<<<<%%%%%%":{"4%%%%%%%%%%%%%%%$%%,%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$<<<<<<<<<<%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$$$$$%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%":{"0%%%%<<<<<<<<<<<<%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$<<<<<<<<<<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%+$$$$*$%%%%%%%%%%%%%%%%%%%%%%e%%$%%%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$$%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$5%%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%$%%%%%%%%":{"3%%%%%%%%%%%%%%%%%%%%%$$$$$$$%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%":{"0%%%%<<<<<<<<<<<<%%%%%%":{"4%%%%%%%%%%%%%%%$%%,%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$<<<<<<<<<<%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$$.$$%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%$$$$$$$$$%$$%%%%%%%%%%":{"%%%%%%%%$$%%":{"4%%%%%%%%%%%%%":{"%%%%%%$$$$$%$$$$$$$$$%%%%%$$$$$$$$$%$$$$$$$$$"%%":{"% %%7

View File

@@ -0,0 +1 @@
[[ [[[[[[[[[[{"n<>

View File

@@ -0,0 +1,35 @@
{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"'":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[[4,
2,2,
[{},[{},
{},{},{},
{},[{},
[
]],[[{},[{},[{},
{},
{},{},
{},[{},
{
},
{
},[{},
{},{},{},
{},[{},
[[

View File

@@ -0,0 +1,91 @@
[[[{},{}, [[[{},{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-22222222222222222222222222222222222222222222222222222222222222222222241.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[899,
9,0,3,0,3,99,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[-836,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{}
,[[[[{},{
}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-20.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
[[-418,[8,[[[
[[-41.8,[8,[8,
[[-41.8,[-41.8,[5,[8,[8,[[[[[-41.8,[78,[
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false,34e55,335223334e55,33e5,334e55,3e5,3999099999,8,99999990999909999,9990999998,9919999999,999099999,[-41,{},[[[[{},{}, [[[{},99999,99909999,999099999,8,9999999049999,8,@91999999,4e55,33

View File

@@ -0,0 +1 @@
{"7":"{7@", "7

Binary file not shown.

View File

@@ -0,0 +1 @@
"\udded\<5C>udc<64>)<

View File

@@ -0,0 +1 @@
"G݂EݝނAݝ݂Ν݂Ν݂ނAݝ݂΂Ν݂Ν

View File

@@ -0,0 +1 @@
[[[[[[[[ true,true,[ true, true,true,true,[ [[[[[[[[[[[[[[[[[[ true,true,true,[ true,true,true,true,[ true,[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[ true,true,true,[ true,[[[[[[[ true,true,[ true,true, true,true,true,[ true,[[[ true,true,true,[ true,[[[[[[[true,true,[ true,true, true,[[[[[[[[[[ true,true,[[ true,true,[[[[[ true,true,true,[ true,[[[[[[true,true,true,true, true,true,true,[ true,[[[ true,true,[[ true,true,[ true,true, true,true,true,[ true,[[[[[[ true,true,[ true, true,true,true,[ [[[ true,true,true,[ true,true,true,true,[ true,[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[ true,true,true,[ true,[[[[[[[ true,true,[ true,true, true,true,true,[ true,[[[ true,true,true,[ true,[[[[[[[true,true,[ true,true, true,[[[[[[[[[[ true,true,[[ true,true,[[[[[ true,true,true,[ true,[[true,true,[ true,true, true,true,true,[ true,[[[ true,true,[[ true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[[[[[[[[[ true,true,true,[ true,[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[ true,true,true,[ true,[[[[[[[[[[[true,true,[ true,true, true,tzrue,[]]

View File

@@ -0,0 +1 @@
[[] ]][

Some files were not shown because too many files have changed in this diff Show More