diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-08-06 01:56:50 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-08-06 01:56:50 +0300 |
commit | 1ab34e88a326c396fbb42c503eb4ffa56fa0a148 (patch) | |
tree | 4f2d6ada0ab0bd1d64947a71c5492a29be7c8dbf | |
parent | 0a003c8bc12514a5586f2f0e40559fcbf6607883 (diff) | |
parent | 0e2807a9d4c8c900e85c9b33ba96c69a82c58a68 (diff) | |
download | libADLMIDI-1ab34e88a326c396fbb42c503eb4ffa56fa0a148.tar.gz libADLMIDI-1ab34e88a326c396fbb42c503eb4ffa56fa0a148.tar.bz2 libADLMIDI-1ab34e88a326c396fbb42c503eb4ffa56fa0a148.zip |
Merge branch 'master' into stable
60 files changed, 12340 insertions, 5790 deletions
@@ -36,3 +36,6 @@ build-* # Cmake caches build/* +# DoxyGen's output: +docs + diff --git a/CMakeLists.txt b/CMakeLists.txt index 5283a18..91baffb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,6 +65,18 @@ function(set_legacy_standard destTarget) endif() endif() endfunction() + +function(set_visibility_hidden destTarget) + if(CMAKE_C_COMPILER_ID MATCHES "^(GNU|Clang)$" AND NOT DJGPP) + if(${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} VERSION_GREATER 3.2) + target_compile_options(${destTarget} PRIVATE + $<$<COMPILE_LANGUAGE:CXX>:-fvisibility-inlines-hidden> -fvisibility=hidden) + else() + target_compile_options(${destTarget} PRIVATE -fvisibility=hidden) + endif() + target_compile_definitions(${destTarget} PRIVATE -DLIBADLMIDI_VISIBILITY) + endif() +endfunction() #=========================================================================================== option(libADLMIDI_STATIC "Build static library of libADLMIDI" ON) @@ -87,6 +99,7 @@ option(MIDIPLAY_WAVE_ONLY "Build Demo MIDI player without support of real time option(WITH_ADLMIDI2 "Build also classic ADLMIDI player [EXPERIMENTAL]" OFF) option(WITH_VLC_PLUGIN "Build also a plugin for VLC Media Player" OFF) option(WITH_OLD_UTILS "Build also old utilities" OFF) +option(WITH_XMI2MID "Build a XMI to MIDI converter" OFF) option(EXAMPLE_SDL2_AUDIO "Build also a simple SDL2 demo MIDI player" OFF) @@ -272,6 +285,7 @@ if(libADLMIDI_STATIC) set_target_properties(ADLMIDI_static PROPERTIES OUTPUT_NAME ADLMIDI) target_include_directories(ADLMIDI_static PUBLIC ${libADLMIDI_SOURCE_DIR}/include) set_legacy_standard(ADLMIDI_static) + set_visibility_hidden(ADLMIDI_static) list(APPEND libADLMIDI_INSTALLS ADLMIDI_static) if(WITH_EMBEDDED_BANKS AND WITH_GENADLDATA) add_dependencies(ADLMIDI_static gen-adldata-run) @@ -283,7 +297,11 @@ if(libADLMIDI_SHARED) set_target_properties(ADLMIDI_shared PROPERTIES OUTPUT_NAME ADLMIDI) target_include_directories(ADLMIDI_shared PUBLIC ${libADLMIDI_SOURCE_DIR}/include) set_legacy_standard(ADLMIDI_shared) + set_visibility_hidden(ADLMIDI_shared) list(APPEND libADLMIDI_INSTALLS ADLMIDI_shared) + if(WIN32) + target_compile_definitions(ADLMIDI_shared PRIVATE "-DADLMIDI_BUILD_DLL") + endif() if(WITH_EMBEDDED_BANKS AND WITH_GENADLDATA) add_dependencies(ADLMIDI_shared gen-adldata-run) endif() @@ -426,7 +444,9 @@ if(WITH_ADLMIDI2) if(libADLMIDI_SHARED) add_dependencies(adlmidi2 ADLMIDI_shared) - set_target_properties(adlmidi2 PROPERTIES COMPILE_FLAGS "-Wl,-rpath='$$ORIGIN/../lib'") + if(NOT MSVC) + set_target_properties(adlmidi2 PROPERTIES COMPILE_FLAGS "-Wl,-rpath='$$ORIGIN/../lib'") + endif() else() if(NOT libADLMIDI_STATIC) message(FATAL_ERROR "libADLMIDI is required to be built!") @@ -437,6 +457,11 @@ if(WITH_ADLMIDI2) list(APPEND libADLMIDI_INSTALLS adlmidi2) endif() +if(WITH_XMI2MID) + add_executable(xmi2mid + ${libADLMIDI_SOURCE_DIR}/utils/xmi2mid/xmi2mid.cpp) +endif() + if(EXAMPLE_SDL2_AUDIO AND NOT MSDOS AND NOT DJGPP) find_library(SDL2_LIBRARY SDL2 REQUIRED) include_directories(${SDL2_INCLUDE_DIR}) @@ -557,4 +582,5 @@ message("MIDIPLAY_WAVE_ONLY = ${MIDIPLAY_WAVE_ONLY}") message("WITH_ADLMIDI2 = ${WITH_ADLMIDI2}") message("WITH_VLC_PLUGIN = ${WITH_VLC_PLUGIN}") message("WITH_OLD_UTILS = ${WITH_OLD_UTILS}") +message("WITH_XMI2MID = ${WITH_XMI2MID}") message("EXAMPLE_SDL2_AUDIO = ${EXAMPLE_SDL2_AUDIO}") diff --git a/Doxyfile b/Doxyfile new file mode 100644 index 0000000..1c1b7cb --- /dev/null +++ b/Doxyfile @@ -0,0 +1,2442 @@ +# Doxyfile 1.8.11 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = libADLMIDI + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = 1.4.0 + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = "A MIDI play library with OPL3 (YMF262) emulator" + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = docs + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = YES + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO, these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if <section_label> ... \endif and \cond <section_label> +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = include \ + src + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, +# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f, *.for, *.tcl, +# *.vhd, *.vhdl, *.ucf, *.qsf, *.as and *.js. + +FILE_PATTERNS = *.c \ + *.cpp \ + *.h \ + *.hpp \ + *.tcc + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# <filter> <input-file> +# +# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the +# cost of reduced performance. This can be particularly helpful with template +# rich C++ code for which doxygen's built-in parser lacks the necessary type +# information. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse-libclang=ON option for CMake. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = NO + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to YES can help to show when doxygen was last run and thus if the +# documentation is up to date. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = NO + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use <access key> + S +# (what the <access key> is depends on the OS and browser, but it is typically +# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down +# key> to jump into the search results window, the results can be navigated +# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel +# the search. The filter options can be selected when the cursor is inside the +# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> +# to select a filter and <Enter> or <escape> to activate or cancel the filter +# option. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a web server instead of a web client using Javascript. There +# are two flavors of web server based searching depending on the EXTERNAL_SEARCH +# setting. When disabled, doxygen will generate a PHP script for searching and +# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing +# and searching needs to be provided by external tools. See the section +# "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SERVER_BASED_SEARCH = NO + +# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP +# script for searching. Instead the search results are written to an XML file +# which needs to be processed by an external indexer. Doxygen will invoke an +# external search engine pointed to by the SEARCHENGINE_URL option to obtain the +# search results. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: http://xapian.org/). +# +# See the section "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH = NO + +# The SEARCHENGINE_URL should point to a search engine hosted by a web server +# which will return the search results when EXTERNAL_SEARCH is enabled. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: http://xapian.org/). See the section "External Indexing and +# Searching" for details. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHENGINE_URL = + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed +# search data is written to a file for indexing by an external tool. With the +# SEARCHDATA_FILE tag the name of this file can be specified. +# The default file is: searchdata.xml. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHDATA_FILE = searchdata.xml + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the +# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is +# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple +# projects and redirect the results back to the right project. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH_ID = + +# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen +# projects other than the one defined by this configuration file, but that are +# all added to the same external search index. Each project needs to have a +# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of +# to a relative location where the documentation can be found. The format is: +# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTRA_SEARCH_MAPPINGS = + +#--------------------------------------------------------------------------- +# Configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. +# The default value is: YES. + +GENERATE_LATEX = YES + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: latex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. +# +# Note that when enabling USE_PDFLATEX this option is only used for generating +# bitmaps for formulas in the HTML output, but not in the Makefile that is +# written to the output directory. +# The default file is: latex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate +# index for LaTeX. +# The default file is: makeindex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used by the +# printer. +# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x +# 14 inches) and executive (7.25 x 10.5 inches). +# The default value is: a4. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names +# that should be included in the LaTeX output. The package can be specified just +# by its name or with the correct syntax as to be used with the LaTeX +# \usepackage command. To get the times font for instance you can specify : +# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times} +# To use the option intlimits with the amsmath package you can specify: +# EXTRA_PACKAGES=[intlimits]{amsmath} +# If left blank no extra packages will be included. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the +# generated LaTeX document. The header should contain everything until the first +# chapter. If it is left blank doxygen will generate a standard header. See +# section "Doxygen usage" for information on how to let doxygen write the +# default header to a separate file. +# +# Note: Only use a user-defined header if you know what you are doing! The +# following commands have a special meaning inside the header: $title, +# $datetime, $date, $doxygenversion, $projectname, $projectnumber, +# $projectbrief, $projectlogo. Doxygen will replace $title with the empty +# string, for the replacement values of the other commands the user is referred +# to HTML_HEADER. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the +# generated LaTeX document. The footer should contain everything after the last +# chapter. If it is left blank doxygen will generate a standard footer. See +# LATEX_HEADER for more information on how to generate a default footer and what +# special commands can be used inside the footer. +# +# Note: Only use a user-defined footer if you know what you are doing! +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_FOOTER = + +# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# LaTeX style sheets that are included after the standard style sheets created +# by doxygen. Using this option one can overrule certain style aspects. Doxygen +# will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_STYLESHEET = + +# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the LATEX_OUTPUT output +# directory. Note that the files will be copied as-is; there are no commands or +# markers available. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_FILES = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is +# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will +# contain links (just like the HTML output) instead of page references. This +# makes the output suitable for online browsing using a PDF viewer. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate +# the PDF file directly from the LaTeX files. Set this option to YES, to get a +# higher quality PDF documentation. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode +# command to the generated LaTeX files. This will instruct LaTeX to keep running +# if errors occur, instead of asking the user for help. This option is also used +# when generating formulas in HTML. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BATCHMODE = NO + +# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the +# index chapters (such as File Index, Compound Index, etc.) in the output. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HIDE_INDICES = NO + +# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source +# code with syntax highlighting in the LaTeX output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. See +# http://en.wikipedia.org/wiki/BibTeX and \cite for more info. +# The default value is: plain. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BIB_STYLE = plain + +# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_TIMESTAMP = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The +# RTF output is optimized for Word 97 and may not look too pretty with other RTF +# readers/editors. +# The default value is: NO. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: rtf. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will +# contain hyperlink fields. The RTF file will contain links (just like the HTML +# output) instead of page references. This makes the output suitable for online +# browsing using Word or some other Word compatible readers that support those +# fields. +# +# Note: WordPad (write) and others do not support links. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's config +# file, i.e. a series of assignments. You only have to provide replacements, +# missing definitions are set to their default value. +# +# See also section "Doxygen usage" for information on how to generate the +# default style sheet that doxygen normally uses. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an RTF document. Syntax is +# similar to doxygen's config file. A template extensions file can be generated +# using doxygen -e rtf extensionFile. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_EXTENSIONS_FILE = + +# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code +# with syntax highlighting in the RTF output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_SOURCE_CODE = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for +# classes and files. +# The default value is: NO. + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. A directory man3 will be created inside the directory specified by +# MAN_OUTPUT. +# The default directory is: man. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to the generated +# man pages. In case the manual section does not start with a number, the number +# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is +# optional. +# The default value is: .3. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_EXTENSION = .3 + +# The MAN_SUBDIR tag determines the name of the directory created within +# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by +# MAN_EXTENSION with the initial . removed. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_SUBDIR = + +# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it +# will generate one additional man file for each entity documented in the real +# man page(s). These additional files only source the real man page, but without +# them the man command would be unable to find the correct page. +# The default value is: NO. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that +# captures the structure of the code including all documentation. +# The default value is: NO. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: xml. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_OUTPUT = xml + +# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program +# listings (including syntax highlighting and cross-referencing information) to +# the XML output. Note that enabling this will significantly increase the size +# of the XML output. +# The default value is: YES. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the DOCBOOK output +#--------------------------------------------------------------------------- + +# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files +# that can be used to generate PDF. +# The default value is: NO. + +GENERATE_DOCBOOK = NO + +# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in +# front of it. +# The default directory is: docbook. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_OUTPUT = docbook + +# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the +# program listings (including syntax highlighting and cross-referencing +# information) to the DOCBOOK output. Note that enabling this will significantly +# increase the size of the DOCBOOK output. +# The default value is: NO. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_PROGRAMLISTING = NO + +#--------------------------------------------------------------------------- +# Configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an +# AutoGen Definitions (see http://autogen.sf.net) file that captures the +# structure of the code including all documentation. Note that this feature is +# still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module +# file that captures the structure of the code including all documentation. +# +# Note that this feature is still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary +# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI +# output from the Perl module output. +# The default value is: NO. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely +# formatted so it can be parsed by a human reader. This is useful if you want to +# understand what is going on. On the other hand, if this tag is set to NO, the +# size of the Perl module output will be much smaller and Perl will parse it +# just the same. +# The default value is: YES. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file are +# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful +# so different doxyrules.make files included by the same Makefile don't +# overwrite each other's variables. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all +# C-preprocessor directives found in the sources and include files. +# The default value is: YES. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names +# in the source code. If set to NO, only conditional compilation will be +# performed. Macro expansion can be done in a controlled way by setting +# EXPAND_ONLY_PREDEF to YES. +# The default value is: NO. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then +# the macro expansion is limited to the macros specified with the PREDEFINED and +# EXPAND_AS_DEFINED tags. +# The default value is: NO. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES, the include files in the +# INCLUDE_PATH will be searched if a #include is found. +# The default value is: YES. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by the +# preprocessor. +# This tag requires that the tag SEARCH_INCLUDES is set to YES. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will be +# used. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that are +# defined before the preprocessor is started (similar to the -D option of e.g. +# gcc). The argument of the tag is a list of macros of the form: name or +# name=definition (no spaces). If the definition and the "=" are omitted, "=1" +# is assumed. To prevent a macro definition from being undefined via #undef or +# recursively expanded use the := operator instead of the = operator. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this +# tag can be used to specify a list of macro names that should be expanded. The +# macro definition that is found in the sources will be used. Use the PREDEFINED +# tag if you want to use a different macro definition that overrules the +# definition found in the source code. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will +# remove all references to function-like macros that are alone on a line, have +# an all uppercase name, and do not end with a semicolon. Such function macros +# are typically used for boiler-plate code, and will confuse the parser if not +# removed. +# The default value is: YES. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES tag can be used to specify one or more tag files. For each tag +# file the location of the external documentation should be added. The format of +# a tag file without this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where loc1 and loc2 can be relative or absolute paths or URLs. See the +# section "Linking to external documentation" for more information about the use +# of tag files. +# Note: Each tag file must have a unique name (where the name does NOT include +# the path). If a tag file is not located in the directory in which doxygen is +# run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create a +# tag file that is based on the input files it reads. See section "Linking to +# external documentation" for more information about the usage of tag files. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES, all external class will be listed in +# the class index. If set to NO, only the inherited external classes will be +# listed. +# The default value is: NO. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will be +# listed. +# The default value is: YES. + +EXTERNAL_GROUPS = YES + +# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in +# the related pages index. If set to NO, only the current project's pages will +# be listed. +# The default value is: YES. + +EXTERNAL_PAGES = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of 'which perl'). +# The default file (with absolute path) is: /usr/bin/perl. + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram +# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to +# NO turns the diagrams off. Note that this option also works with HAVE_DOT +# disabled, but it is recommended to install and use dot, since it yields more +# powerful graphs. +# The default value is: YES. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see: +# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# You can include diagrams made with dia in doxygen documentation. Doxygen will +# then run dia to produce the diagram and insert it in the documentation. The +# DIA_PATH tag allows you to specify the directory where the dia binary resides. +# If left empty dia is assumed to be found in the default search path. + +DIA_PATH = + +# If set to YES the inheritance and collaboration graphs will hide inheritance +# and usage relations if the target is undocumented or is not a class. +# The default value is: YES. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz (see: +# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent +# Bell Labs. The other options in this section have no effect if this option is +# set to NO +# The default value is: YES. + +HAVE_DOT = YES + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed +# to run in parallel. When set to 0 doxygen will base this on the number of +# processors available in the system. You can set it explicitly to a value +# larger than 0 to get control over the balance between CPU load and processing +# speed. +# Minimum value: 0, maximum value: 32, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_NUM_THREADS = 0 + +# When you want a differently looking font in the dot files that doxygen +# generates you can specify the font name using DOT_FONTNAME. You need to make +# sure dot is able to find the font, which can be done by putting it in a +# standard location or by setting the DOTFONTPATH environment variable or by +# setting DOT_FONTPATH to the directory containing the font. +# The default value is: Helvetica. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTNAME = Helvetica + +# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of +# dot graphs. +# Minimum value: 4, maximum value: 24, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the default font as specified with +# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set +# the path where dot can find it using this tag. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTPATH = + +# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for +# each documented class showing the direct and indirect inheritance relations. +# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a +# graph for each documented class showing the direct and indirect implementation +# dependencies (inheritance, containment, and class references variables) of the +# class with other documented classes. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for +# groups, showing the direct groups dependencies. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LOOK = NO + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside the +# class node. If there are many fields or methods and many nodes the graph may +# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the +# number of items for each type to make the size more manageable. Set this to 0 +# for no limit. Note that the threshold may be exceeded by 50% before the limit +# is enforced. So when you set the threshold to 10, up to 15 fields may appear, +# but if the number exceeds 15, the total amount of fields shown is limited to +# 10. +# Minimum value: 0, maximum value: 100, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LIMIT_NUM_FIELDS = 10 + +# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and +# collaboration graphs will show the relations between templates and their +# instances. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +TEMPLATE_RELATIONS = NO + +# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to +# YES then doxygen will generate a graph for each documented file showing the +# direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDE_GRAPH = YES + +# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are +# set to YES then doxygen will generate a graph for each documented file showing +# the direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH tag is set to YES then doxygen will generate a call +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. Disabling a call graph can be +# accomplished by means of the command \hidecallgraph. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable caller graphs for selected +# functions only using the \callergraph command. Disabling a caller graph can be +# accomplished by means of the command \hidecallergraph. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical +# hierarchy of all classes instead of a textual one. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the +# dependencies a directory has on other directories in a graphical way. The +# dependency relations are determined by the #include relations between the +# files in the directories. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. For an explanation of the image formats see the section +# output formats in the documentation of the dot tool (Graphviz (see: +# http://www.graphviz.org/)). +# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order +# to make the SVG files visible in IE 9+ (other browsers do not have this +# requirement). +# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, +# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, +# gif:cairo:gd, gif:gd, gif:gd:gd, svg, png:gd, png:gd:gd, png:cairo, +# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and +# png:gdiplus:gdiplus. +# The default value is: png. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_IMAGE_FORMAT = png + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# +# Note that this requires a modern browser other than Internet Explorer. Tested +# and working are Firefox, Chrome, Safari, and Opera. +# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make +# the SVG files visible. Older versions of IE do not have SVG support. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +INTERACTIVE_SVG = NO + +# The DOT_PATH tag can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the \dotfile +# command). +# This tag requires that the tag HAVE_DOT is set to YES. + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the \mscfile +# command). + +MSCFILE_DIRS = + +# The DIAFILE_DIRS tag can be used to specify one or more directories that +# contain dia files that are included in the documentation (see the \diafile +# command). + +DIAFILE_DIRS = + +# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the +# path where java can find the plantuml.jar file. If left blank, it is assumed +# PlantUML is not used or called during a preprocessing step. Doxygen will +# generate a warning when it encounters a \startuml command in this case and +# will not generate output for the diagram. + +PLANTUML_JAR_PATH = + +# When using plantuml, the specified paths are searched for files specified by +# the !include statement in a plantuml block. + +PLANTUML_INCLUDE_PATH = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes +# that will be shown in the graph. If the number of nodes in a graph becomes +# larger than this value, doxygen will truncate the graph, which is visualized +# by representing a node as a red box. Note that doxygen if the number of direct +# children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that +# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. +# Minimum value: 0, maximum value: 10000, default value: 50. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs +# generated by dot. A depth value of 3 means that only nodes reachable from the +# root by following a path via at most 3 edges will be shown. Nodes that lay +# further from the root node will be omitted. Note that setting this option to 1 +# or 2 may greatly reduce the computation time needed for large code bases. Also +# note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. +# Minimum value: 0, maximum value: 1000, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not seem +# to support this out of the box. +# +# Warning: Depending on the platform used, enabling this option may lead to +# badly anti-aliased labels on the edges of a graph (i.e. they become hard to +# read). +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) support +# this, this feature is disabled by default. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page +# explaining the meaning of the various boxes and arrows in the dot generated +# graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot +# files that are used to generate the various graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_CLEANUP = YES diff --git a/LICENSE.GPL-3.txt b/LICENSE.GPL-3.txt new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/LICENSE.GPL-3.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + <program> Copyright (C) <year> <name of author> + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +<https://www.gnu.org/licenses/>. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +<https://www.gnu.org/licenses/why-not-lgpl.html>. diff --git a/LICENSE.LGPL-2.1.txt b/LICENSE.LGPL-2.1.txt new file mode 100644 index 0000000..4362b49 --- /dev/null +++ b/LICENSE.LGPL-2.1.txt @@ -0,0 +1,502 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + <one line to give the library's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + <signature of Ty Coon>, 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! @@ -32,8 +32,9 @@ Library is based on the ADLMIDI, a MIDI player for Linux and Windows with OPL3 e * Pan (binary panning, i.e. left/right side on/off) * Pitch-bender with adjustable range * Vibrato that responds to RPN/NRPN parameters -* Sustain enable/disable +* Sustain (a.k.a. Pedal hold) and Sostenuto enable/disable * MIDI and RMI file support +* Real-Time MIDI API support * loopStart / loopEnd tag support (Final Fantasy VII) * 111-th controller based loop start (RPG-Maker) * Use automatic arpeggio with chords to relieve channel pressure @@ -41,9 +42,10 @@ Library is based on the ADLMIDI, a MIDI player for Linux and Windows with OPL3 e * Support for playing Id-software Music File format (IMF) * Support for custom banks of [WOPL format](https://github.com/Wohlstand/OPL3BankEditor/blob/master/Specifications/WOPL-and-OPLI-Specification.txt) * Partial support for GS and XG standards (having more instruments than in one 128:128 GM set and ability to use multiple channels for percussion purposes, and a support for some GS/XG exclusive controllers) -* CC74 affects a modulator scale +* CC74 "Brightness" affects a modulator scale (to simulate frequency cut-off on WT synths) * Portamento support (CC5, CC37, and CC65) * SysEx support that supports some generic, GS, and XG features +* Full-panning stereo option (works for emulators only) # How to build To build libADLMIDI you need to use CMake: @@ -58,6 +60,14 @@ sudo make install ### Notes * To compile for DOS via DJGPP on Linux, use `cmake/djgpp/djgpp-cmake.sh` script which a wrapper over CMake to pass DJGPP's stuff required for build +# License +The library is licensed under in it's parts LGPL 2.1+, GPL v2+, GPL v3+, and MIT. +* Nuked OPL3 emulators are licensed under LGPL v2.1+. +* DosBox OPL3 emulator is licensed under GPL v2+. +* Chip interfaces are licensed under LGPL v2.1+. +* File Reader class and MIDI Sequencer is licensed under MIT. +* WOPL reader and writer module is licensed under MIT. +* Other parts of library are licensed under GPLv3+. ## Available CMake options @@ -162,6 +172,11 @@ To build that example you will need to have installed SDL2 library. * Added support for CC67-SoftPedal controller (SoftPedal lowers the volume of notes played) * Fixed correctness of CMF files playing * Fixed unnecessary overuse of chip channels by blank notes + * Added API to disable specific MIDI tracks or play one of MIDI tracks solo + * Added support for more complex loop (loopStart=XX, loopEnd=0). Where XX - count of loops, or 0 - infinite. Nested loops are supported without of any limits. + * XMIDI now supports loops + * Added working implementation of TMB's velocity offset + * Added support for full-panning stereo option (Thanks to [Christopher Snowhill](https://github.com/kode54) for a work!) ## 1.3.3 2018-06-19 * Fixed an inability to load another custom bank without of library re-initialization diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 972197d..5c5bb4c 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -9,11 +9,12 @@ pipelines: default: - step: script: # Modify the commands below to build your repository. + - apt install software-properties-common + - add-apt-repository --yes ppa:george-edison55/cmake-3.x - apt-get update - - apt-get install -y cmake libsdl2-dev + - apt-get install -y libsdl2-dev ninja-build cmake - mkdir build - cd build - - cmake -DCMAKE_INSTALL_PREFIX=output -DCMAKE_BUILD_TYPE=Release -DlibADLMIDI_STATIC=YES -DWITH_MIDIPLAY=ON .. - - make -j 4 - - make install + - cmake -G "Ninja" -DCMAKE_INSTALL_PREFIX=output -DCMAKE_BUILD_TYPE=Release -DlibADLMIDI_STATIC=YES -DlibADLMIDI_SHARED=YES -DWITH_MIDIPLAY=ON .. + - cmake --build . --config Release --target install -- -j 4 diff --git a/examples/python-alsa/ReadMe.txt b/examples/python-alsa/ReadMe.txt new file mode 100644 index 0000000..91c9ec1 --- /dev/null +++ b/examples/python-alsa/ReadMe.txt @@ -0,0 +1,7 @@ +Before to run this library, you must compile libADLMIDI shared library +and then install pyalsaaudio package by PIP: + +================================= + sudo pip3 install pyalsaaudio +================================= + diff --git a/examples/python-alsa/playmidi.py b/examples/python-alsa/playmidi.py new file mode 100755 index 0000000..294ab16 --- /dev/null +++ b/examples/python-alsa/playmidi.py @@ -0,0 +1,106 @@ +#!/usr/bin/python3 + +import sys +import signal +import wave +import getopt +import alsaaudio + +from ctypes import * + +# adl = CDLL("./libADLMIDI.so") +adl = CDLL("/usr/local/lib/libADLMIDI.so") + +#class ADLMIDI_AudioFormat(Structure): +# _fields_ = [("type", c_int), +# ("containerSize", c_uint), +# ("outasampleOffset", c_uint)] + +playing = True + +# Allows to quit by Ctrl+C +def catch_signal(signum, frame): + global playing + playing = False + print("Caught Ctrl+C!") + +def play(device, MIDIPlay, sampleRate): + global playing + + # Opening ALSA output device + device = alsaaudio.PCM(device=device) + + # Set attributes + device.setchannels(2) + device.setrate(sampleRate) + device.setperiodsize(512) + + # format = ADLMIDI_AudioFormat(0, 2, 4); + device.setformat(alsaaudio.PCM_FORMAT_S16_LE) + + # Preparing the audio output buffer + data = create_string_buffer(4096 * 2); + dataLen = 4096 + + print("Streaming...") + + # Streaming the audio data into ALSA output + while playing: + got = adl.adl_play(MIDIPlay, dataLen, cast(data, POINTER(c_short))); + if got <= 0: + break; + device.write(bytearray(data.raw)) + + # Closing the audio output device + device.close() + + print("Quiting...") + + +def usage(): + print('usage: playmidi.py <file>', file=sys.stderr) + sys.exit(2) + +if __name__ == '__main__': + device = 'default' + sampleRate = 44100 + + opts, args = getopt.getopt(sys.argv[1:], 'd:') + for o, a in opts: + if o == '-d': + device = a + + if not args: + usage() + + midiFile = args[0] + + # Initialize the library + MIDIPlay = adl.adl_init(sampleRate) + + # ============= Optional setup ==================== + # Turn on looping (optionally) + # adl.adl_setLoopEnabled(MIDIPlay, 1) + + # Changing the bank number (optionally) + # if adl.adl_setBank(MIDIPlay, 68) < 0: + # print(c_char_p(adl.adl_errorInfo(MIDIPlay)).value) + # sys.exit(1) + # ============= Optional setup =End================ + + # Open music file... + if adl.adl_openFile(MIDIPlay, midiFile.encode()) < 0: + print(c_char_p(adl.adl_errorInfo(MIDIPlay)).value) + sys.exit(1) + + print("Playing MIDI file %s..." % (midiFile)) + + # Allows to quit by Ctrl+C + signal.signal(signal.SIGINT, catch_signal) + + # Start the audio streaming + play(device, MIDIPlay, sampleRate) + + # Closing the library + adl.adl_close(MIDIPlay) + diff --git a/fm_banks/adldata-cache.dat b/fm_banks/adldata-cache.dat Binary files differindex fceb033..86da6cc 100644 --- a/fm_banks/adldata-cache.dat +++ b/fm_banks/adldata-cache.dat diff --git a/include/adlmidi.h b/include/adlmidi.h index a1289a0..6ae184e 100644 --- a/include/adlmidi.h +++ b/include/adlmidi.h @@ -55,398 +55,1151 @@ typedef char ADL_SInt8; typedef short ADL_SInt16; #endif +/* == Deprecated function markers == */ + +#if defined(_MSC_VER) /* MSVC */ +# if _MSC_VER >= 1500 /* MSVC 2008 */ + /*! Indicates that the following function is deprecated. */ +# define ADLMIDI_DEPRECATED(message) __declspec(deprecated(message)) +# endif +#endif /* defined(_MSC_VER) */ + +#ifdef __clang__ +# if __has_extension(attribute_deprecated_with_message) +# define JSONCPP_DEPRECATED(message) __attribute__((deprecated(message))) +# endif +#elif defined __GNUC__ /* not clang (gcc comes later since clang emulates gcc) */ +# if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)) +# define ADLMIDI_DEPRECATED(message) __attribute__((deprecated(message))) +# elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) +# define ADLMIDI_DEPRECATED(message) __attribute__((__deprecated__)) +# endif /* GNUC version */ +#endif /* __clang__ || __GNUC__ */ + +#if !defined(ADLMIDI_DEPRECATED) +# define ADLMIDI_DEPRECATED(message) +#endif /* if !defined(ADLMIDI_DEPRECATED) */ + + +#ifdef ADLMIDI_BUILD +# ifndef ADLMIDI_DECLSPEC +# if defined (_WIN32) && defined(ADLMIDI_BUILD_DLL) +# define ADLMIDI_DECLSPEC __declspec(dllexport) +# else +# define ADLMIDI_DECLSPEC +# endif +# endif +#else +# define ADLMIDI_DECLSPEC +#endif + + +/** + * @brief Volume scaling models + */ enum ADLMIDI_VolumeModels { + /*! Automatical choice by the specific bank */ ADLMIDI_VolumeModel_AUTO = 0, + /*! Linearized scaling model, most standard */ ADLMIDI_VolumeModel_Generic = 1, + /*! Native OPL3's logarithmic volume scale */ ADLMIDI_VolumeModel_NativeOPL3 = 2, + /*! Native OPL3's logarithmic volume scale. Alias. */ ADLMIDI_VolumeModel_CMF = ADLMIDI_VolumeModel_NativeOPL3, + /*! Logarithmic volume scale, using volume map table. Used in DMX. */ ADLMIDI_VolumeModel_DMX = 3, + /*! Logarithmic volume scale, used in Apogee Sound System. */ ADLMIDI_VolumeModel_APOGEE = 4, + /*! Aproximated and shorted volume map table. Similar to general, but has less granularity. */ ADLMIDI_VolumeModel_9X = 5 }; +/** + * @brief Sound output format + */ enum ADLMIDI_SampleType { - ADLMIDI_SampleType_S16 = 0, /* signed PCM 16-bit */ - ADLMIDI_SampleType_S8, /* signed PCM 8-bit */ - ADLMIDI_SampleType_F32, /* float 32-bit */ - ADLMIDI_SampleType_F64, /* float 64-bit */ - ADLMIDI_SampleType_S24, /* signed PCM 24-bit */ - ADLMIDI_SampleType_S32, /* signed PCM 32-bit */ - ADLMIDI_SampleType_U8, /* unsigned PCM 8-bit */ - ADLMIDI_SampleType_U16, /* unsigned PCM 16-bit */ - ADLMIDI_SampleType_U24, /* unsigned PCM 24-bit */ - ADLMIDI_SampleType_U32, /* unsigned PCM 32-bit */ - ADLMIDI_SampleType_Count, + /*! signed PCM 16-bit */ + ADLMIDI_SampleType_S16 = 0, + /*! signed PCM 8-bit */ + ADLMIDI_SampleType_S8, + /*! float 32-bit */ + ADLMIDI_SampleType_F32, + /*! float 64-bit */ + ADLMIDI_SampleType_F64, + /*! signed PCM 24-bit */ + ADLMIDI_SampleType_S24, + /*! signed PCM 32-bit */ + ADLMIDI_SampleType_S32, + /*! unsigned PCM 8-bit */ + ADLMIDI_SampleType_U8, + /*! unsigned PCM 16-bit */ + ADLMIDI_SampleType_U16, + /*! unsigned PCM 24-bit */ + ADLMIDI_SampleType_U24, + /*! unsigned PCM 32-bit */ + ADLMIDI_SampleType_U32, + /*! Count of available sample format types */ + ADLMIDI_SampleType_Count }; +/** + * @brief Sound output format context + */ struct ADLMIDI_AudioFormat { - enum ADLMIDI_SampleType type; /* type of sample */ - unsigned containerSize; /* size in bytes of the storage type */ - unsigned sampleOffset; /* distance in bytes between consecutive samples */ + /*! type of sample */ + enum ADLMIDI_SampleType type; + /*! size in bytes of the storage type */ + unsigned containerSize; + /*! distance in bytes between consecutive samples */ + unsigned sampleOffset; }; +/** + * @brief Instance of the library + */ struct ADL_MIDIPlayer { + /*! Private context descriptor */ void *adl_midiPlayer; }; /* DEPRECATED */ #define adl_setNumCards adl_setNumChips -/* Sets number of emulated chips (from 1 to 100). Emulation of multiple chips exchanges polyphony limits*/ -extern int adl_setNumChips(struct ADL_MIDIPlayer *device, int numChips); +/** + * @brief Sets number of emulated chips (from 1 to 100). Emulation of multiple chips extends polyphony limits + * @param device Instance of the library + * @param numChips Count of virtual chips to emulate + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_setNumChips(struct ADL_MIDIPlayer *device, int numChips); -/* Get current number of emulated chips */ -extern int adl_getNumChips(struct ADL_MIDIPlayer *device); +/** + * @brief Get current number of emulated chips + * @param device Instance of the library + * @return Count of working chip emulators + */ +extern ADLMIDI_DECLSPEC int adl_getNumChips(struct ADL_MIDIPlayer *device); -/* Sets a number of the patches bank from 0 to N banks. Is recommended to call adl_reset() to apply changes to already-loaded file player or real-time. */ -extern int adl_setBank(struct ADL_MIDIPlayer *device, int bank); +/** + * @brief Sets a number of the patches bank from 0 to N banks. + * + * Is recommended to call adl_reset() to apply changes to already-loaded file player or real-time. + * + * @param device Instance of the library + * @param bank Number of embedded bank + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_setBank(struct ADL_MIDIPlayer *device, int bank); -/* Returns total number of available banks */ -extern int adl_getBanksCount(); +/** + * @brief Returns total number of available banks + * @return Total number of available embedded banks + */ +extern ADLMIDI_DECLSPEC int adl_getBanksCount(); -/* Returns pointer to array of names of every bank */ -extern const char *const *adl_getBankNames(); +/** + * @brief Returns pointer to array of names of every bank + * @return Array of strings containing the name of every embedded bank + */ +extern ADLMIDI_DECLSPEC const char *const *adl_getBankNames(); -/* Reference to dynamic bank */ +/** + * @brief Reference to dynamic bank + */ typedef struct ADL_Bank { void *pointer[3]; } ADL_Bank; -/* Identifier of dynamic bank */ +/** + * @brief Identifier of dynamic bank + */ typedef struct ADL_BankId { - ADL_UInt8 percussive, msb, lsb; + /*! 0 if bank is melodic set, or 1 if bank is a percussion set */ + ADL_UInt8 percussive; + /*! Assign to MSB bank number */ + ADL_UInt8 msb; + /*! Assign to LSB bank number */ + ADL_UInt8 lsb; } ADL_BankId; -/* Flags for dynamic bank access */ +/** + * @brief Flags for dynamic bank access + */ enum ADL_BankAccessFlags { - ADLMIDI_Bank_Create = 1, /* create bank, allocating memory as needed */ - ADLMIDI_Bank_CreateRt = 1|2, /* create bank, never allocating memory */ + /*! create bank, allocating memory as needed */ + ADLMIDI_Bank_Create = 1, + /*! create bank, never allocating memory */ + ADLMIDI_Bank_CreateRt = 1|2 }; typedef struct ADL_Instrument ADL_Instrument; -#if defined(ADLMIDI_UNSTABLE_API) -/* Preallocates a minimum number of bank slots. Returns the actual capacity. */ -extern int adl_reserveBanks(struct ADL_MIDIPlayer *device, unsigned banks); -/* Gets the bank designated by the identifier, optionally creating if it does not exist. */ -extern int adl_getBank(struct ADL_MIDIPlayer *device, const ADL_BankId *id, int flags, ADL_Bank *bank); -/* Gets the identifier of a bank. */ -extern int adl_getBankId(struct ADL_MIDIPlayer *device, const ADL_Bank *bank, ADL_BankId *id); -/* Removes a bank. */ -extern int adl_removeBank(struct ADL_MIDIPlayer *device, ADL_Bank *bank); -/* Gets the first bank. */ -extern int adl_getFirstBank(struct ADL_MIDIPlayer *device, ADL_Bank *bank); -/* Iterates to the next bank. */ -extern int adl_getNextBank(struct ADL_MIDIPlayer *device, ADL_Bank *bank); -/* Gets the nth intrument in the bank [0..127]. */ -extern int adl_getInstrument(struct ADL_MIDIPlayer *device, const ADL_Bank *bank, unsigned index, ADL_Instrument *ins); -/* Sets the nth intrument in the bank [0..127]. */ -extern int adl_setInstrument(struct ADL_MIDIPlayer *device, ADL_Bank *bank, unsigned index, const ADL_Instrument *ins); -#endif /* defined(ADLMIDI_UNSTABLE_API) */ - -/*Sets number of 4-operator channels between all chips. - By default, it is automatically re-calculating every bank change. - If you want to specify custom number of four operator channels, - please call this function after bank change (adl_setBank() or adl_openBank()), - otherwise, value will be overwritten by auto-calculated.*/ -extern int adl_setNumFourOpsChn(struct ADL_MIDIPlayer *device, int ops4); - -/*Get current total count of 4-operator channels between all chips*/ -extern int adl_getNumFourOpsChn(struct ADL_MIDIPlayer *device); - -/*Override Enable(1) or Disable(0) AdLib percussion mode. -1 - use bank default AdLib percussion mode*/ -extern void adl_setPercMode(struct ADL_MIDIPlayer *device, int percmod); - -/*Override Enable(1) or Disable(0) deep vibrato state. -1 - use bank default vibrato state*/ -extern void adl_setHVibrato(struct ADL_MIDIPlayer *device, int hvibro); - -/*Override Enable(1) or Disable(0) deep tremolo state. -1 - use bank default tremolo state*/ -extern void adl_setHTremolo(struct ADL_MIDIPlayer *device, int htremo); - -/*Override Enable(1) or Disable(0) scaling of modulator volumes. -1 - use bank default scaling of modulator volumes*/ -extern void adl_setScaleModulators(struct ADL_MIDIPlayer *device, int smod); - -/*Enable(1) or Disable(0) full-range brightness (MIDI CC74 used in XG music to filter result sounding) scaling. - By default, brightness affects sound between 0 and 64. - When this option is enabled, the range will use a full range from 0 up to 127. -*/ -extern void adl_setFullRangeBrightness(struct ADL_MIDIPlayer *device, int fr_brightness); - -/*Enable or disable built-in loop (built-in loop supports 'loopStart' and 'loopEnd' tags to loop specific part)*/ -extern void adl_setLoopEnabled(struct ADL_MIDIPlayer *device, int loopEn); - -/* !!!DEPRECATED!!! Enable or disable Logariphmic volume changer */ -extern void adl_setLogarithmicVolumes(struct ADL_MIDIPlayer *device, int logvol); - -/*Set different volume range model */ -extern void adl_setVolumeRangeModel(struct ADL_MIDIPlayer *device, int volumeModel); - -/*Load WOPL bank file from File System. Is recommended to call adl_reset() to apply changes to already-loaded file player or real-time.*/ -extern int adl_openBankFile(struct ADL_MIDIPlayer *device, const char *filePath); - -/*Load WOPL bank file from memory data*/ -extern int adl_openBankData(struct ADL_MIDIPlayer *device, const void *mem, unsigned long size); -/* DEPRECATED */ -extern const char *adl_emulatorName(); -/*Returns chip emulator name string*/ -extern const char *adl_chipEmulatorName(struct ADL_MIDIPlayer *device); +/* ======== Setup ======== */ + +/** + * @brief Preallocates a minimum number of bank slots. Returns the actual capacity + * @param device Instance of the library + * @param banks Count of bank slots to pre-allocate. + * @return actual capacity of reserved bank slots. + */ +extern ADLMIDI_DECLSPEC int adl_reserveBanks(struct ADL_MIDIPlayer *device, unsigned banks); +/** + * @brief Gets the bank designated by the identifier, optionally creating if it does not exist + * @param device Instance of the library + * @param id Identifier of dynamic bank + * @param flags Flags for dynamic bank access (ADL_BankAccessFlags) + * @param bank Reference to dynamic bank + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_getBank(struct ADL_MIDIPlayer *device, const ADL_BankId *id, int flags, ADL_Bank *bank); +/** + * @brief Gets the identifier of a bank + * @param device Instance of the library + * @param bank Reference to dynamic bank. + * @param id Identifier of dynamic bank + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_getBankId(struct ADL_MIDIPlayer *device, const ADL_Bank *bank, ADL_BankId *id); +/** + * @brief Removes a bank + * @param device Instance of the library + * @param bank Reference to dynamic bank + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_removeBank(struct ADL_MIDIPlayer *device, ADL_Bank *bank); +/** + * @brief Gets the first bank + * @param device Instance of the library + * @param bank Reference to dynamic bank + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_getFirstBank(struct ADL_MIDIPlayer *device, ADL_Bank *bank); +/** + * @brief Iterates to the next bank + * @param device Instance of the library + * @param bank Reference to dynamic bank + * @return 0 on success, <0 when any error has occurred or end has been reached. + */ +extern ADLMIDI_DECLSPEC int adl_getNextBank(struct ADL_MIDIPlayer *device, ADL_Bank *bank); +/** + * @brief Gets the nth intrument in the bank [0..127] + * @param device Instance of the library + * @param bank Reference to dynamic bank + * @param index Index of the instrument + * @param ins Instrument entry + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_getInstrument(struct ADL_MIDIPlayer *device, const ADL_Bank *bank, unsigned index, ADL_Instrument *ins); +/** + * @brief Sets the nth intrument in the bank [0..127] + * @param device Instance of the library + * @param bank Reference to dynamic bank + * @param index Index of the instrument + * @param ins Instrument structure pointer + * @return 0 on success, <0 when any error has occurred + * + * This function allows to override an instrument on the fly + */ +extern ADLMIDI_DECLSPEC int adl_setInstrument(struct ADL_MIDIPlayer *device, ADL_Bank *bank, unsigned index, const ADL_Instrument *ins); +/** + * @brief Loads the melodic or percussive part of the nth embedded bank + * @param device Instance of the library + * @param bank Reference to dynamic bank + * @param num Number of embedded bank to load into the current bank array + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_loadEmbeddedBank(struct ADL_MIDIPlayer *device, ADL_Bank *bank, int num); + + + +/** + * @brief Sets number of 4-operator channels between all chips + * + * By default, it is automatically re-calculating every bank change. + * If you want to specify custom number of four operator channels, + * please call this function after bank change (adl_setBank() or adl_openBank()), + * otherwise, value will be overwritten by auto-calculated. + * + * @param device Instance of the library + * @param ops4 Count of four-op channels to allocate between all emulating chips + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_setNumFourOpsChn(struct ADL_MIDIPlayer *device, int ops4); + +/** + * @brief Get current total count of 4-operator channels between all chips + * @param device Instance of the library + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_getNumFourOpsChn(struct ADL_MIDIPlayer *device); + +/** + * @brief Override Enable(1) or Disable(0) AdLib percussion mode. -1 - use bank default AdLib percussion mode + * + * This function forces rhythm-mode on any bank. The result will work glitchy. + * + * @param device Instance of the library + * @param percmod 0 - disabled, 1 - enabled + */ +extern ADLMIDI_DECLSPEC void adl_setPercMode(struct ADL_MIDIPlayer *device, int percmod); + +/** + * @brief Override Enable(1) or Disable(0) deep vibrato state. -1 - use bank default vibrato state + * @param device Instance of the library + * @param hvibro 0 - disabled, 1 - enabled + */ +extern ADLMIDI_DECLSPEC void adl_setHVibrato(struct ADL_MIDIPlayer *device, int hvibro); + +/** + * @brief Override Enable(1) or Disable(0) deep tremolo state. -1 - use bank default tremolo state + * @param device Instance of the library + * @param htremo 0 - disabled, 1 - enabled + */ +extern ADLMIDI_DECLSPEC void adl_setHTremolo(struct ADL_MIDIPlayer *device, int htremo); + +/** + * @brief Override Enable(1) or Disable(0) scaling of modulator volumes. -1 - use bank default scaling of modulator volumes + * @param device Instance of the library + * @param smod 0 - disabled, 1 - enabled + */ +extern ADLMIDI_DECLSPEC void adl_setScaleModulators(struct ADL_MIDIPlayer *device, int smod); + +/** + * @brief Enable(1) or Disable(0) full-range brightness (MIDI CC74 used in XG music to filter result sounding) scaling + * + * By default, brightness affects sound between 0 and 64. + * When this option is enabled, the brightness will use full range from 0 up to 127. + * + * @param device Instance of the library + * @param fr_brightness 0 - disabled, 1 - enabled + */ +extern ADLMIDI_DECLSPEC void adl_setFullRangeBrightness(struct ADL_MIDIPlayer *device, int fr_brightness); + +/** + * @brief Enable or disable built-in loop (built-in loop supports 'loopStart' and 'loopEnd' tags to loop specific part) + * @param device Instance of the library + * @param loopEn 0 - disabled, 1 - enabled + */ +extern ADLMIDI_DECLSPEC void adl_setLoopEnabled(struct ADL_MIDIPlayer *device, int loopEn); + +/** + * @brief Enable or disable soft panning with chip emulators + * @param device Instance of the library + * @param softPanEn 0 - disabled, 1 - enabled + */ +extern ADLMIDI_DECLSPEC void adl_setSoftPanEnabled(struct ADL_MIDIPlayer *device, int softPanEn); + +/** + * @brief [DEPRECATED] Enable or disable Logarithmic volume changer + * + * This function is deprecated. Suggested replacement: `adl_setVolumeRangeModel` with `ADLMIDI_VolumeModel_NativeOPL3` volume model value; + */ +ADLMIDI_DEPRECATED("Use `adl_setVolumeRangeModel(device, ADLMIDI_VolumeModel_NativeOPL3)` instead") +extern ADLMIDI_DECLSPEC void adl_setLogarithmicVolumes(struct ADL_MIDIPlayer *device, int logvol); + +/** + * @brief Set different volume range model + * @param device Instance of the library + * @param volumeModel Volume model type (#ADLMIDI_VolumeModels) + */ +extern ADLMIDI_DECLSPEC void adl_setVolumeRangeModel(struct ADL_MIDIPlayer *device, int volumeModel); + +/** + * @brief Load WOPL bank file from File System + * + * Is recommended to call adl_reset() to apply changes to already-loaded file player or real-time. + * + * @param device Instance of the library + * @param filePath Absolute or relative path to the WOPL bank file. UTF8 encoding is required, even on Windows. + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_openBankFile(struct ADL_MIDIPlayer *device, const char *filePath); + +/** + * @brief Load WOPL bank file from memory data + * + * Is recommended to call adl_reset() to apply changes to already-loaded file player or real-time. + * + * @param device Instance of the library + * @param mem Pointer to memory block where is raw data of WOPL bank file is stored + * @param size Size of given memory block + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_openBankData(struct ADL_MIDIPlayer *device, const void *mem, unsigned long size); + +/** + * @brief [DEPRECATED] Dummy function + * + * This function is deprecated. Suggested replacement: `adl_chipEmulatorName` + * + * @return A string that contains a notice to use `adl_chipEmulatorName` instead of this function. + */ +ADLMIDI_DEPRECATED("Use `adl_chipEmulatorName(device)` instead") +extern ADLMIDI_DECLSPEC const char *adl_emulatorName(); + +/** + * @brief Returns chip emulator name string + * @param device Instance of the library + * @return Understandable name of current OPL3 emulator + */ +extern ADLMIDI_DECLSPEC const char *adl_chipEmulatorName(struct ADL_MIDIPlayer *device); + +/** + * @brief List of available OPL3 emulators + */ enum ADL_Emulator { + /*! Nuked OPL3 v. 1.8 */ ADLMIDI_EMU_NUKED = 0, + /*! Nuked OPL3 v. 1.7.4 */ ADLMIDI_EMU_NUKED_174, + /*! DosBox */ ADLMIDI_EMU_DOSBOX, + /*! Count instrument on the level */ ADLMIDI_EMU_end }; -/* Switch the emulation core */ -extern int adl_switchEmulator(struct ADL_MIDIPlayer *device, int emulator); - +/** + * @brief Switch the emulation core + * @param device Instance of the library + * @param emulator Type of emulator (#ADL_Emulator) + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_switchEmulator(struct ADL_MIDIPlayer *device, int emulator); +/** + * @brief Library version context + */ typedef struct { ADL_UInt16 major; ADL_UInt16 minor; ADL_UInt16 patch; } ADL_Version; -/*Run emulator with PCM rate to reduce CPU usage on slow devices. May decrease sounding accuracy.*/ -extern int adl_setRunAtPcmRate(struct ADL_MIDIPlayer *device, int enabled); +/** + * @brief Run emulator with PCM rate to reduce CPU usage on slow devices. + * + * May decrease sounding accuracy on some chip emulators. + * + * @param device Instance of the library + * @param enabled 0 - disabled, 1 - enabled + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_setRunAtPcmRate(struct ADL_MIDIPlayer *device, int enabled); -/*Returns string which contains a version number*/ -extern const char *adl_linkedLibraryVersion(); +/** + * @brief Set 4-bit device identifier. Used by the SysEx processor. + * @param device Instance of the library + * @param id 4-bit device identifier + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_setDeviceIdentifier(struct ADL_MIDIPlayer *device, unsigned id); -/*Returns structure which contains a version number of library */ -extern const ADL_Version *adl_linkedVersion(); +/** + * @section Information + */ -/*Returns string which contains last error message of initialization*/ -extern const char *adl_errorString(); +/** + * @brief Returns string which contains a version number + * @return String which contains a version of the library + */ +extern ADLMIDI_DECLSPEC const char *adl_linkedLibraryVersion(); -/*Returns string which contains last error message on specific device*/ -extern const char *adl_errorInfo(struct ADL_MIDIPlayer *device); +/** + * @brief Returns structure which contains a version number of library + * @return Library version context structure which contains version number of the library + */ +extern ADLMIDI_DECLSPEC const ADL_Version *adl_linkedVersion(); -/*Initialize ADLMIDI Player device*/ -extern struct ADL_MIDIPlayer *adl_init(long sample_rate); -/*Set 4-bit device identifier*/ -extern int adl_setDeviceIdentifier(struct ADL_MIDIPlayer *device, unsigned id); +/* ======== Error Info ======== */ -/*Load MIDI file from File System*/ -extern int adl_openFile(struct ADL_MIDIPlayer *device, const char *filePath); +/** + * @brief Returns string which contains last error message of initialization + * + * Don't use this function to get info on any function except of `adl_init`! + * Use `adl_errorInfo()` to get error information while workflow + * + * @return String with error message related to library initialization + */ +extern ADLMIDI_DECLSPEC const char *adl_errorString(); -/*Load MIDI file from memory data*/ -extern int adl_openData(struct ADL_MIDIPlayer *device, const void *mem, unsigned long size); +/** + * @brief Returns string which contains last error message on specific device + * @param device Instance of the library + * @return String with error message related to last function call returned non-zero value. + */ +extern ADLMIDI_DECLSPEC const char *adl_errorInfo(struct ADL_MIDIPlayer *device); -/*Resets MIDI player*/ -extern void adl_reset(struct ADL_MIDIPlayer *device); -/*Get total time length of current song*/ -extern double adl_totalTimeLength(struct ADL_MIDIPlayer *device); -/*Get loop start time if presented. -1 means MIDI file has no loop points */ -extern double adl_loopStartTime(struct ADL_MIDIPlayer *device); +/* ======== Initialization ======== */ -/*Get loop end time if presented. -1 means MIDI file has no loop points */ -extern double adl_loopEndTime(struct ADL_MIDIPlayer *device); +/** + * @brief Initialize ADLMIDI Player device + * + * Tip 1: You can initialize multiple instances and run them in parallel + * Tip 2: Library is NOT thread-safe, therefore don't use same instance in different threads or use mutexes + * Tip 3: Changing of sample rate on the fly is not supported. Re-create the instance again. + * + * @param sample_rate Output sample rate + * @return Instance of the library. If NULL was returned, check the `adl_errorString` message for more info. + */ +extern ADLMIDI_DECLSPEC struct ADL_MIDIPlayer *adl_init(long sample_rate); -/*Get current time position in seconds*/ -extern double adl_positionTell(struct ADL_MIDIPlayer *device); +/** + * @brief Close and delete ADLMIDI device + * @param device Instance of the library + */ +extern ADLMIDI_DECLSPEC void adl_close(struct ADL_MIDIPlayer *device); -/*Jump to absolute time position in seconds*/ -extern void adl_positionSeek(struct ADL_MIDIPlayer *device, double seconds); -/*Reset MIDI track position to begin */ -extern void adl_positionRewind(struct ADL_MIDIPlayer *device); -/*Set tempo multiplier: 1.0 - original tempo, >1 - play faster, <1 - play slower */ -extern void adl_setTempo(struct ADL_MIDIPlayer *device, double tempo); +/* ======== MIDI Sequencer ======== */ -/*Close and delete ADLMIDI device*/ -extern void adl_close(struct ADL_MIDIPlayer *device); +/** + * @brief Load MIDI (or any other supported format) file from File System + * + * Available when library is built with built-in MIDI Sequencer support. + * + * @param device Instance of the library + * @param filePath Absolute or relative path to the music file. UTF8 encoding is required, even on Windows. + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_openFile(struct ADL_MIDIPlayer *device, const char *filePath); +/** + * @brief Load MIDI (or any other supported format) file from memory data + * + * Available when library is built with built-in MIDI Sequencer support. + * + * @param device Instance of the library + * @param mem Pointer to memory block where is raw data of music file is stored + * @param size Size of given memory block + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_openData(struct ADL_MIDIPlayer *device, const void *mem, unsigned long size); +/** + * @brief Resets MIDI player (per-channel setup) into initial state + * @param device Instance of the library + */ +extern ADLMIDI_DECLSPEC void adl_reset(struct ADL_MIDIPlayer *device); -/**META**/ +/** + * @brief Get total time length of current song + * + * Available when library is built with built-in MIDI Sequencer support. + * + * @param device Instance of the library + * @return Total song length in seconds + */ +extern ADLMIDI_DECLSPEC double adl_totalTimeLength(struct ADL_MIDIPlayer *device); -/*Returns string which contains a music title*/ -extern const char *adl_metaMusicTitle(struct ADL_MIDIPlayer *device); +/** + * @brief Get loop start time if presented. + * + * Available when library is built with built-in MIDI Sequencer support. + * + * @param device Instance of the library + * @return Time position in seconds of loop start point, or -1 when file has no loop points + */ +extern ADLMIDI_DECLSPEC double adl_loopStartTime(struct ADL_MIDIPlayer *device); -/*Returns string which contains a copyright string*/ -extern const char *adl_metaMusicCopyright(struct ADL_MIDIPlayer *device); +/** + * @brief Get loop endtime if presented. + * + * Available when library is built with built-in MIDI Sequencer support. + * + * @param device Instance of the library + * @return Time position in seconds of loop end point, or -1 when file has no loop points + */ +extern ADLMIDI_DECLSPEC double adl_loopEndTime(struct ADL_MIDIPlayer *device); + +/** + * @brief Get current time position in seconds + * + * Available when library is built with built-in MIDI Sequencer support. + * + * @param device Instance of the library + * @return Current time position in seconds + */ +extern ADLMIDI_DECLSPEC double adl_positionTell(struct ADL_MIDIPlayer *device); + +/** + * @brief Jump to absolute time position in seconds + * + * Available when library is built with built-in MIDI Sequencer support. + * + * @param device Instance of the library + * @param seconds Destination time position in seconds to seek + */ +extern ADLMIDI_DECLSPEC void adl_positionSeek(struct ADL_MIDIPlayer *device, double seconds); + +/** + * @brief Reset MIDI track position to begin + * + * Available when library is built with built-in MIDI Sequencer support. + * + * @param device Instance of the library + */ +extern ADLMIDI_DECLSPEC void adl_positionRewind(struct ADL_MIDIPlayer *device); + +/** + * @brief Set tempo multiplier + * + * Available when library is built with built-in MIDI Sequencer support. + * + * @param device Instance of the library + * @param tempo Tempo multiplier value: 1.0 - original tempo, >1 - play faster, <1 - play slower + */ +extern ADLMIDI_DECLSPEC void adl_setTempo(struct ADL_MIDIPlayer *device, double tempo); + +/** + * @brief Returns 1 if music position has reached end + * @param device Instance of the library + * @return 1 when end of sing has been reached, otherwise, 0 will be returned. <0 is returned on any error + */ +extern ADLMIDI_DECLSPEC int adl_atEnd(struct ADL_MIDIPlayer *device); + +/** + * @brief Returns the number of tracks of the current sequence + * @param device Instance of the library + * @return Count of tracks in the current sequence + */ +extern ADLMIDI_DECLSPEC size_t adl_trackCount(struct ADL_MIDIPlayer *device); + +/** + * @brief Track options + */ +enum ADLMIDI_TrackOptions +{ + /*! Enabled track */ + ADLMIDI_TrackOption_On = 1, + /*! Disabled track */ + ADLMIDI_TrackOption_Off = 2, + /*! Solo track */ + ADLMIDI_TrackOption_Solo = 3 +}; + +/** + * @brief Sets options on a track of the current sequence + * @param device Instance of the library + * @param trackNumber Identifier of the designated track. + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_setTrackOptions(struct ADL_MIDIPlayer *device, size_t trackNumber, unsigned trackOptions); + +/** + * @brief Handler of callback trigger events + * @param userData Pointer to user data (usually, context of something) + * @param trigger Value of the event which triggered this callback. + * @param track Identifier of the track which triggered this callback. + */ +typedef ADLMIDI_DECLSPEC void (*ADL_TriggerHandler)(void *userData, unsigned trigger, size_t track); + +/** + * @brief Defines a handler for callback trigger events + * @param device Instance of the library + * @param handler Handler to invoke from the sequencer when triggered, or NULL. + * @param userData Instance of the library + * @return 0 on success, <0 when any error has occurred + */ +extern ADLMIDI_DECLSPEC int adl_setTriggerHandler(struct ADL_MIDIPlayer *device, ADL_TriggerHandler handler, void *userData); -/*Returns count of available track titles: NOTE: there are CAN'T be associated with channel in any of event or note hooks */ -extern size_t adl_metaTrackTitleCount(struct ADL_MIDIPlayer *device); -/*Get track title by index*/ -extern const char *adl_metaTrackTitle(struct ADL_MIDIPlayer *device, size_t index); + +/* ======== Meta-Tags ======== */ + +/** + * @brief Returns string which contains a music title + * @param device Instance of the library + * @return A string that contains music title + */ +extern ADLMIDI_DECLSPEC const char *adl_metaMusicTitle(struct ADL_MIDIPlayer *device); + +/** + * @brief Returns string which contains a copyright string* + * @param device Instance of the library + * @return A string that contains copyright notice, otherwise NULL + */ +extern ADLMIDI_DECLSPEC const char *adl_metaMusicCopyright(struct ADL_MIDIPlayer *device); + +/** + * @brief Returns count of available track titles + * + * NOTE: There are CAN'T be associated with channel in any of event or note hooks + * + * @param device Instance of the library + * @return Count of available MIDI tracks, otherwise NULL + */ +extern ADLMIDI_DECLSPEC size_t adl_metaTrackTitleCount(struct ADL_MIDIPlayer *device); + +/** + * @brief Get track title by index + * @param device Instance of the library + * @param index Index of the track to retreive the title + * @return A string that contains track title, otherwise NULL. + */ +extern ADLMIDI_DECLSPEC const char *adl_metaTrackTitle(struct ADL_MIDIPlayer *device, size_t index); + +/** + * @brief MIDI Marker structure + */ struct Adl_MarkerEntry { + /*! MIDI Marker title */ const char *label; + /*! Absolute time position of the marker in seconds */ double pos_time; + /*! Absolute time position of the marker in MIDI ticks */ unsigned long pos_ticks; }; -/*Returns count of available markers*/ -extern size_t adl_metaMarkerCount(struct ADL_MIDIPlayer *device); +/** + * @brief Returns count of available markers + * @param device Instance of the library + * @return Count of available MIDI markers + */ +extern ADLMIDI_DECLSPEC size_t adl_metaMarkerCount(struct ADL_MIDIPlayer *device); + +/** + * @brief Returns the marker entry + * @param device Instance of the library + * @param index Index of the marker to retreive it. + * @return MIDI Marker description structure. + */ +extern ADLMIDI_DECLSPEC struct Adl_MarkerEntry adl_metaMarker(struct ADL_MIDIPlayer *device, size_t index); + -/*Returns the marker entry*/ -extern struct Adl_MarkerEntry adl_metaMarker(struct ADL_MIDIPlayer *device, size_t index); -/*Take a sample buffer and iterate MIDI timers */ -extern int adl_play(struct ADL_MIDIPlayer *device, int sampleCount, short *out); +/* ======== Audio output Generation ======== */ -/*Take a sample buffer and iterate MIDI timers */ -extern int adl_playFormat(struct ADL_MIDIPlayer *device, int sampleCount, ADL_UInt8 *left, ADL_UInt8 *right, const struct ADLMIDI_AudioFormat *format); +/** + * @brief Generate PCM signed 16-bit stereo audio output and iterate MIDI timers + * + * Use this function when you are playing MIDI file loaded by `adl_openFile` or by `adl_openData` + * with using of built-in MIDI sequencer. + * + * Don't use count of frames, use instead count of samples. One frame is two samples. + * So, for example, if you want to take 10 frames, you must to request amount of 20 samples! + * + * Available when library is built with built-in MIDI Sequencer support. + * + * @param device Instance of the library + * @param sampleCount Count of samples (not frames!) + * @param out Pointer to output with 16-bit stereo PCM output + * @return Count of given samples, otherwise, 0 or when catching an error while playing + */ +extern ADLMIDI_DECLSPEC int adl_play(struct ADL_MIDIPlayer *device, int sampleCount, short *out); -/*Generate audio output from chip emulators without iteration of MIDI timers.*/ -extern int adl_generate(struct ADL_MIDIPlayer *device, int sampleCount, short *out); +/** + * @brief Generate PCM stereo audio output in sample format declared by given context and iterate MIDI timers + * + * Use this function when you are playing MIDI file loaded by `adl_openFile` or by `adl_openData` + * with using of built-in MIDI sequencer. + * + * Don't use count of frames, use instead count of samples. One frame is two samples. + * So, for example, if you want to take 10 frames, you must to request amount of 20 samples! + * + * Available when library is built with built-in MIDI Sequencer support. + * + * @param device Instance of the library + * @param sampleCount Count of samples (not frames!) + * @param left Left channel buffer output (Must be casted into bytes array) + * @param right Right channel buffer output (Must be casted into bytes array) + * @param format Destination PCM format format context + * @return Count of given samples, otherwise, 0 or when catching an error while playing + */ +extern ADLMIDI_DECLSPEC int adl_playFormat(struct ADL_MIDIPlayer *device, int sampleCount, ADL_UInt8 *left, ADL_UInt8 *right, const struct ADLMIDI_AudioFormat *format); -/*Generate audio output from chip emulators without iteration of MIDI timers.*/ -extern int adl_generateFormat(struct ADL_MIDIPlayer *device, int sampleCount, ADL_UInt8 *left, ADL_UInt8 *right, const struct ADLMIDI_AudioFormat *format); +/** + * @brief Generate PCM signed 16-bit stereo audio output without iteration of MIDI timers + * + * Use this function when you are using library as Real-Time MIDI synthesizer or with + * an external MIDI sequencer. You must to request the amount of samples which is equal + * to the delta between of MIDI event rows. One MIDI row is a group of MIDI events + * are having zero delta/delay between each other. When you are receiving events in + * real time, request the minimal possible delay value. + * + * Don't use count of frames, use instead count of samples. One frame is two samples. + * So, for example, if you want to take 10 frames, you must to request amount of 20 samples! + * + * @param device Instance of the library + * @param sampleCount + * @param out Pointer to output with 16-bit stereo PCM output + * @return Count of given samples, otherwise, 0 or when catching an error while playing + */ +extern ADLMIDI_DECLSPEC int adl_generate(struct ADL_MIDIPlayer *device, int sampleCount, short *out); + +/** + * @brief Generate PCM stereo audio output in sample format declared by given context without iteration of MIDI timers + * + * Use this function when you are using library as Real-Time MIDI synthesizer or with + * an external MIDI sequencer. You must to request the amount of samples which is equal + * to the delta between of MIDI event rows. One MIDI row is a group of MIDI events + * are having zero delta/delay between each other. When you are receiving events in + * real time, request the minimal possible delay value. + * + * Don't use count of frames, use instead count of samples. One frame is two samples. + * So, for example, if you want to take 10 frames, you must to request amount of 20 samples! + * + * @param device Instance of the library + * @param sampleCount + * @param left Left channel buffer output (Must be casted into bytes array) + * @param right Right channel buffer output (Must be casted into bytes array) + * @param format Destination PCM format format context + * @return Count of given samples, otherwise, 0 or when catching an error while playing + */ +extern ADLMIDI_DECLSPEC int adl_generateFormat(struct ADL_MIDIPlayer *device, int sampleCount, ADL_UInt8 *left, ADL_UInt8 *right, const struct ADLMIDI_AudioFormat *format); /** * @brief Periodic tick handler. - * @param device - * @param seconds seconds since last call - * @param granularity don't expect intervals smaller than this, in seconds - * @return desired number of seconds until next call * - * Use it for Hardware OPL3 mode or when you want to process events differently from adl_play() function. - * DON'T USE IT TOGETHER WITH adl_play()!!! + * Notice: The function is provided to use it with Hardware OPL3 mode or for the purpose to iterate + * MIDI playback without of sound generation. + * + * DON'T USE IT TOGETHER WITH adl_play() and adl_playFormat() calls + * as there are all using this function internally!!! + * + * @param device Instance of the library + * @param seconds Previous delay. On a first moment, pass the `0.0` + * @param granulality Minimal size of one MIDI tick in seconds. + * @return desired number of seconds until next call. Pass this value into `seconds` field in next time */ -extern double adl_tickEvents(struct ADL_MIDIPlayer *device, double seconds, double granuality); +extern ADLMIDI_DECLSPEC double adl_tickEvents(struct ADL_MIDIPlayer *device, double seconds, double granulality); -/*Returns 1 if music position has reached end*/ -extern int adl_atEnd(struct ADL_MIDIPlayer *device); -/**RealTime**/ -/*Force Off all notes on all channels*/ -extern void adl_panic(struct ADL_MIDIPlayer *device); -/*Reset states of all controllers on all MIDI channels*/ -extern void adl_rt_resetState(struct ADL_MIDIPlayer *device); +/* ======== Real-Time MIDI ======== */ -/*Turn specific MIDI note ON*/ -extern int adl_rt_noteOn(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 note, ADL_UInt8 velocity); +/** + * @brief Force Off all notes on all channels + * @param device Instance of the library + */ +extern ADLMIDI_DECLSPEC void adl_panic(struct ADL_MIDIPlayer *device); -/*Turn specific MIDI note OFF*/ -extern void adl_rt_noteOff(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 note); +/** + * @brief Reset states of all controllers on all MIDI channels + * @param device Instance of the library + */ +extern ADLMIDI_DECLSPEC void adl_rt_resetState(struct ADL_MIDIPlayer *device); -/*Set note after-touch*/ -extern void adl_rt_noteAfterTouch(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 note, ADL_UInt8 atVal); -/*Set channel after-touch*/ -extern void adl_rt_channelAfterTouch(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 atVal); +/** + * @brief Turn specific MIDI note ON + * @param device Instance of the library + * @param channel Target MIDI channel [Between 0 and 16] + * @param note Note number to on [Between 0 and 127] + * @param velocity Velocity level [Between 0 and 127] + * @return 1 when note was successfully started, 0 when note was rejected by any reason. + */ +extern ADLMIDI_DECLSPEC int adl_rt_noteOn(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 note, ADL_UInt8 velocity); -/*Apply controller change*/ -extern void adl_rt_controllerChange(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 type, ADL_UInt8 value); +/** + * @brief Turn specific MIDI note OFF + * @param device Instance of the library + * @param channel Target MIDI channel [Between 0 and 16] + * @param note Note number to off [Between 0 and 127] + */ +extern ADLMIDI_DECLSPEC void adl_rt_noteOff(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 note); -/*Apply patch change*/ -extern void adl_rt_patchChange(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 patch); +/** + * @brief Set note after-touch + * @param device Instance of the library + * @param channel Target MIDI channel [Between 0 and 16] + * @param note Note number to affect by aftertouch event [Between 0 and 127] + * @param atVal After-Touch value [Between 0 and 127] + */ +extern ADLMIDI_DECLSPEC void adl_rt_noteAfterTouch(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 note, ADL_UInt8 atVal); -/*Apply pitch bend change*/ -extern void adl_rt_pitchBend(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt16 pitch); -/*Apply pitch bend change*/ -extern void adl_rt_pitchBendML(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 msb, ADL_UInt8 lsb); +/** + * @brief Set channel after-touch + * @param device Instance of the library + * @param channel Target MIDI channel [Between 0 and 16] + * @param atVal After-Touch level [Between 0 and 127] + */ +extern ADLMIDI_DECLSPEC void adl_rt_channelAfterTouch(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 atVal); -/*Change LSB of the bank*/ -extern void adl_rt_bankChangeLSB(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 lsb); -/*Change MSB of the bank*/ -extern void adl_rt_bankChangeMSB(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 msb); -/*Change bank by absolute signed value*/ -extern void adl_rt_bankChange(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_SInt16 bank); +/** + * @brief Apply controller change + * @param device Instance of the library + * @param channel Target MIDI channel [Between 0 and 16] + * @param type Type of the controller [Between 0 and 255] + * @param value Value of the controller event [Between 0 and 127] + */ +extern ADLMIDI_DECLSPEC void adl_rt_controllerChange(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 type, ADL_UInt8 value); + +/** + * @brief Apply patch change + * @param device Instance of the library + * @param channel Target MIDI channel [Between 0 and 16] + * @param patch Patch number [Between 0 and 127] + */ +extern ADLMIDI_DECLSPEC void adl_rt_patchChange(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 patch); + +/** + * @brief Apply pitch bend change + * @param device Instance of the library + * @param channel Target MIDI channel [Between 0 and 16] + * @param pitch 24-bit pitch bend value + */ +extern ADLMIDI_DECLSPEC void adl_rt_pitchBend(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt16 pitch); + +/** + * @brief Apply pitch bend change + * @param device Instance of the library + * @param channel Target MIDI channel [Between 0 and 16] + * @param msb MSB part of 24-bit pitch bend value + * @param lsb LSB part of 24-bit pitch bend value + */ +extern ADLMIDI_DECLSPEC void adl_rt_pitchBendML(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 msb, ADL_UInt8 lsb); -/*Perform a system exclusive message*/ -extern int adl_rt_systemExclusive(struct ADL_MIDIPlayer *device, const ADL_UInt8 *msg, size_t size); +/** + * @brief Change LSB of the bank number (Alias to CC-32 event) + * @param device Instance of the library + * @param channel Target MIDI channel [Between 0 and 16] + * @param lsb LSB value of the MIDI bank number + */ +extern ADLMIDI_DECLSPEC void adl_rt_bankChangeLSB(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 lsb); + +/** + * @brief Change MSB of the bank (Alias to CC-0 event) + * @param device Instance of the library + * @param channel Target MIDI channel [Between 0 and 16] + * @param msb MSB value of the MIDI bank number + */ +extern ADLMIDI_DECLSPEC void adl_rt_bankChangeMSB(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_UInt8 msb); +/** + * @brief Change bank by absolute signed value + * @param device Instance of the library + * @param channel Target MIDI channel [Between 0 and 16] + * @param bank Bank number as concoctated signed 16-bit value of MSB and LSB parts. + */ + +extern ADLMIDI_DECLSPEC void adl_rt_bankChange(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_SInt16 bank); -/**Hooks**/ +/** + * @brief Perform a system exclusive message + * @param device Instance of the library + * @param msg Raw SysEx message buffer (must begin with 0xF0 and end with 0xF7) + * @param size Size of given SysEx message buffer + * @return 1 when SysEx message was successfully processed, 0 when SysEx message was rejected by any reason + */ +extern ADLMIDI_DECLSPEC int adl_rt_systemExclusive(struct ADL_MIDIPlayer *device, const ADL_UInt8 *msg, size_t size); + + + +/* ======== Hooks and debugging ======== */ + +/** + * @brief Raw event callback + * @param userdata Pointer to user data (usually, context of someting) + * @param type MIDI event type + * @param subtype MIDI event sub-type (special events only) + * @param channel MIDI channel + * @param data Raw event data + * @param len Length of event data + */ typedef void (*ADL_RawEventHook)(void *userdata, ADL_UInt8 type, ADL_UInt8 subtype, ADL_UInt8 channel, const ADL_UInt8 *data, size_t len); + +/** + * @brief Note on/off callback + * @param userdata Pointer to user data (usually, context of someting) + * @param adlchn Chip channel where note was played + * @param note Note number [between 0 and 127] + * @param pressure Velocity level, or -1 when it's note off event + * @param bend Pitch bend offset value + */ typedef void (*ADL_NoteHook)(void *userdata, int adlchn, int note, int ins, int pressure, double bend); + +/** + * @brief Debug messages callback + * @param userdata Pointer to user data (usually, context of someting) + * @param fmt Format strign output (in context of `printf()` standard function) + */ typedef void (*ADL_DebugMessageHook)(void *userdata, const char *fmt, ...); -/* Set raw MIDI event hook */ -extern void adl_setRawEventHook(struct ADL_MIDIPlayer *device, ADL_RawEventHook rawEventHook, void *userData); +/** + * @brief Set raw MIDI event hook + * @param device Instance of the library + * @param rawEventHook Pointer to the callback function which will be called on every MIDI event + * @param userData Pointer to user data which will be passed through the callback. + */ +extern ADLMIDI_DECLSPEC void adl_setRawEventHook(struct ADL_MIDIPlayer *device, ADL_RawEventHook rawEventHook, void *userData); + +/** + * @brief Set note hook + * @param device Instance of the library + * @param noteHook Pointer to the callback function which will be called on every noteOn MIDI event + * @param userData Pointer to user data which will be passed through the callback. + */ +extern ADLMIDI_DECLSPEC void adl_setNoteHook(struct ADL_MIDIPlayer *device, ADL_NoteHook noteHook, void *userData); + +/** + * @brief Set debug message hook + * @param device Instance of the library + * @param debugMessageHook Pointer to the callback function which will be called on every debug message + * @param userData Pointer to user data which will be passed through the callback. + */ +extern ADLMIDI_DECLSPEC void adl_setDebugMessageHook(struct ADL_MIDIPlayer *device, ADL_DebugMessageHook debugMessageHook, void *userData); + +/** + * @brief Get a textual description of the channel state. For display only. + * @param device Instance of the library + * @param text Destination char buffer for channel usage state. Every entry is assigned to the chip channel. + * @param attr Destination char buffer for additional attributes like MIDI channel number that uses this chip channel. + * @param size Size of given buffers (both text and attr are must have same size!) + * @return 0 on success, <0 when any error has occurred + * + * Every character in the `text` buffer means the type of usage: + * ``` + * `-` - channel is unused (free) + * `+` - channel is used by two-operator voice + * `#` - channel is used by four-operator voice + * `@` - channel is used to play automatic arpeggio on chip channels overflow + * `r` - rhythm-mode channel note + * ``` + * + * The `attr` field receives the MIDI channel from which the chip channel is used. + * To get the valid MIDI channel you will need to apply the & 0x0F mask to every value. + */ +extern ADLMIDI_DECLSPEC int adl_describeChannels(struct ADL_MIDIPlayer *device, char *text, char *attr, size_t size); -/* Set note hook */ -extern void adl_setNoteHook(struct ADL_MIDIPlayer *device, ADL_NoteHook noteHook, void *userData); -/* Set debug message hook */ -extern void adl_setDebugMessageHook(struct ADL_MIDIPlayer *device, ADL_DebugMessageHook debugMessageHook, void *userData); -/**Instrument structures**/ +/* ======== Instrument structures ======== */ +/** + * @brief Version of the instrument data format + */ enum { - ADLMIDI_InstrumentVersion = 0, + ADLMIDI_InstrumentVersion = 0 }; +/** + * @brief Instrument flags + */ typedef enum ADL_InstrumentFlags { - /* Is two-operator single-voice instrument (no flags) */ + /*! Is two-operator single-voice instrument (no flags) */ ADLMIDI_Ins_2op = 0x00, - /* Is true four-operator instrument */ + /*! Is true four-operator instrument */ ADLMIDI_Ins_4op = 0x01, - /* Is pseudo four-operator (two 2-operator voices) instrument */ + /*! Is pseudo four-operator (two 2-operator voices) instrument */ ADLMIDI_Ins_Pseudo4op = 0x02, - /* Is a blank instrument entry */ + /*! Is a blank instrument entry */ ADLMIDI_Ins_IsBlank = 0x04, - /* Mask of the flags range */ - ADLMIDI_Ins_ALL_MASK = 0x07, + + /*! RythmMode flags mask */ + ADLMIDI_Ins_RhythmModeMask = 0x38, + + /*! Mask of the flags range */ + ADLMIDI_Ins_ALL_MASK = 0x07 } ADL_InstrumentFlags; +/** + * @brief Rhythm-mode drum type + */ +typedef enum ADL_RhythmMode +{ + /*! RythmMode: BassDrum */ + ADLMIDI_RM_BassDrum = 0x08, + /*! RythmMode: Snare */ + ADLMIDI_RM_Snare = 0x10, + /*! RythmMode: TomTom */ + ADLMIDI_RM_TomTom = 0x18, + /*! RythmMode: Cymbal */ + ADLMIDI_RM_Cymbal = 0x20, + /*! RythmMode: HiHat */ + ADLMIDI_RM_HiHat = 0x28 +} ADL_RhythmMode; + + +/** + * @brief Operator structure, part of Instrument structure + */ typedef struct ADL_Operator { - /* AM/Vib/Env/Ksr/FMult characteristics */ + /*! AM/Vib/Env/Ksr/FMult characteristics */ ADL_UInt8 avekf_20; - /* Key Scale Level / Total level register data */ + /*! Key Scale Level / Total level register data */ ADL_UInt8 ksl_l_40; - /* Attack / Decay */ + /*! Attack / Decay */ ADL_UInt8 atdec_60; - /* Systain and Release register data */ + /*! Systain and Release register data */ ADL_UInt8 susrel_80; - /* Wave form */ + /*! Wave form */ ADL_UInt8 waveform_E0; } ADL_Operator; +/** + * @brief Instrument structure + */ typedef struct ADL_Instrument { - /* Version of the instrument object */ + /*! Version of the instrument object */ int version; - /* MIDI note key (half-tone) offset for an instrument (or a first voice in pseudo-4-op mode) */ + /*! MIDI note key (half-tone) offset for an instrument (or a first voice in pseudo-4-op mode) */ ADL_SInt16 note_offset1; - /* MIDI note key (half-tone) offset for a second voice in pseudo-4-op mode */ + /*! MIDI note key (half-tone) offset for a second voice in pseudo-4-op mode */ ADL_SInt16 note_offset2; - /* MIDI note velocity offset (taken from Apogee TMB format) */ + /*! MIDI note velocity offset (taken from Apogee TMB format) */ ADL_SInt8 midi_velocity_offset; - /* Second voice detune level (taken from DMX OP2) */ + /*! Second voice detune level (taken from DMX OP2) */ ADL_SInt8 second_voice_detune; - /* Percussion MIDI base tone number at which this drum will be played */ + /*! Percussion MIDI base tone number at which this drum will be played */ ADL_UInt8 percussion_key_number; - /* Enum ADL_InstrumentFlags */ + /** + * @var inst_flags + * @brief Instrument flags + * + * Enums: #ADL_InstrumentFlags and #ADL_RhythmMode + * + * Bitwise flags bit map: + * ``` + * [0EEEDCBA] + * A) 0x00 - 2-operator mode + * B) 0x01 - 4-operator mode + * C) 0x02 - pseudo-4-operator (two 2-operator voices) mode + * D) 0x04 - is 'blank' instrument (instrument which has no sound) + * E) 0x38 - Reserved for rhythm-mode percussion type number (three bits number) + * -> 0x00 - Melodic or Generic drum (rhythm-mode is disabled) + * -> 0x08 - is Bass drum + * -> 0x10 - is Snare + * -> 0x18 - is Tom-tom + * -> 0x20 - is Cymbal + * -> 0x28 - is Hi-hat + * 0) Reserved / Unused + * ``` + */ ADL_UInt8 inst_flags; - /* Feedback&Connection register for first and second operators */ + /*! Feedback&Connection register for first and second operators */ ADL_UInt8 fb_conn1_C0; - /* Feedback&Connection register for third and fourth operators */ + /*! Feedback&Connection register for third and fourth operators */ ADL_UInt8 fb_conn2_C0; - /* Operators register data */ + /*! Operators register data */ ADL_Operator operators[4]; - /* Millisecond delay of sounding while key is on */ + /*! Millisecond delay of sounding while key is on */ ADL_UInt16 delay_on_ms; - /* Millisecond delay of sounding after key off */ + /*! Millisecond delay of sounding after key off */ ADL_UInt16 delay_off_ms; } ADL_Instrument; diff --git a/include/adlmidi.hpp b/include/adlmidi.hpp index 6d01b8d..f2cd59d 100644 --- a/include/adlmidi.hpp +++ b/include/adlmidi.hpp @@ -24,9 +24,11 @@ #ifndef ADLMIDI_HPP #define ADLMIDI_HPP +#include "adlmidi.h" + struct ADL_MIDIPlayer; -class AdlInstrumentTester +class ADLMIDI_DECLSPEC AdlInstrumentTester { struct Impl; Impl *P; diff --git a/libADLMIDI-test.pro b/libADLMIDI-test.pro index d26a5f5..d98d6bd 100644 --- a/libADLMIDI-test.pro +++ b/libADLMIDI-test.pro @@ -19,6 +19,7 @@ LIBS += -lSDL2 -lpthread -ldl #DEFINES += ADLMIDI_USE_DOSBOX_OPL #DEFINES += ENABLE_BEGIN_SILENCE_SKIPPING #DEFINES += DEBUG_TRACE_ALL_EVENTS +#DEFINES += DEBUG_TRACE_ALL_CHANNELS QMAKE_CFLAGS += -std=c90 -pedantic QMAKE_CXXFLAGS += -std=c++98 -pedantic diff --git a/src/adldata.cpp b/src/adldata.cpp index 13260ae..6606e1f 100644 --- a/src/adldata.cpp +++ b/src/adldata.cpp @@ -4554,4812 +4554,4823 @@ const adldata adl[4537] = { 0x07BF003,0x07BF502, 0x8A,0x80, 0x8, +0 }, { 0x07BF003,0x07BF402, 0x8A,0x80, 0x8, +0 }, }; -const struct adlinsdata adlins[4804] = +const struct adlinsdata adlins[4815] = { - { 0, 0, 0, 0, 9006, 133,0 }, - { 1, 1, 0, 0, 9206, 146,0 }, - { 2, 2, 0, 0, 9246, 240,0 }, - { 3, 3, 0, 0, 9440, 140,0 }, - { 4, 4, 0, 0, 8900, 120,0 }, - { 5, 5, 0, 0, 9400, 140,0 }, - { 6, 6, 0, 0, 7460, 380,0 }, - { 7, 7, 0, 0, 9226, 93,0 }, - { 8, 8, 0, 0, 4613, 420,0 }, - { 9, 9, 0, 0, 7286, 4713,0 }, - { 10, 10, 0, 0, 2280, 746,0 }, - { 11, 11, 0, 0, 9233, 240,0 }, - { 12, 12, 0, 0, 346, 153,0 }, - { 13, 13, 0, 0, 633, 233,0 }, - { 14, 14, 0, 0, 4660, 1573,0 }, - { 15, 15, 0, 0, 1166, 400,0 }, - { 16, 16, 0, 0, 40000, 126,0 }, - { 17, 17, 0, 0, 40000, 93,0 }, - { 18, 18, 0, 0, 40000, 93,0 }, - { 19, 19, 0, 0, 40000, 553,0 }, - { 20, 20, 0, 0, 40000, 660,0 }, - { 21, 21, 0, 0, 40000, 73,0 }, - { 22, 22, 0, 0, 40000, 146,0 }, - { 23, 23, 0, 0, 40000, 146,0 }, - { 24, 24, 0, 0, 4026, 100,0 }, - { 25, 25, 0, 0, 14286, 120,0 }, - { 26, 26, 0, 0, 9233, 106,0 }, - { 27, 27, 0, 0, 4480, 100,0 }, - { 28, 28, 0, 0, 40000, 60,0 }, - { 29, 29, 0, 0, 40000, 80,0 }, - { 30, 30, 0, 0, 40000, 80,0 }, - { 31, 31, 0, 0, 18226, 100,0 }, - { 32, 32, 0, 0, 40000, 0,0 }, - { 33, 33, 0, 0, 40000, 80,0 }, - { 34, 34, 0, 0, 40000, 0,0 }, - { 35, 35, 0, 0, 40000, 53,0 }, - { 36, 36, 0, 0, 40000, 0,0 }, - { 37, 37, 0, 0, 40000, 0,0 }, - { 38, 38, 0, 0, 40000, 0,0 }, - { 39, 39, 0, 0, 40000, 160,0 }, - { 40, 40, 0, 0, 40000, 233,0 }, - { 41, 41, 0, 0, 40000, 73,0 }, - { 42, 42, 0, 0, 40000, 233,0 }, - { 43, 43, 0, 0, 40000, 213,0 }, - { 44, 44, 0, 0, 1246, 453,0 }, - { 45, 45, 0, 0, 4580, 786,0 }, - { 46, 46, 0, 0, 6873, 1246,0 }, - { 47, 47, 0, 0, 40000, 100,0 }, - { 48, 48, 0, 0, 40000, 140,0 }, - { 49, 49, 0, 0, 40000, 393,0 }, - { 50, 50, 0, 0, 40000, 406,0 }, - { 51, 51, 0, 0, 40000, 373,0 }, - { 52, 52, 0, 0, 40000, 0,0 }, - { 53, 53, 0, 0, 40000, 360,0 }, - { 54, 54, 0, 0, 1060, 380,0 }, - { 55, 55, 0, 0, 40000, 80,0 }, - { 56, 56, 0, 0, 40000, 73,0 }, - { 57, 57, 0, 0, 40000, 66,0 }, - { 58, 58, 0, 0, 40000, 60,0 }, - { 59, 59, 0, 0, 40000, 73,0 }, - { 60, 60, 0, 0, 40000, 66,0 }, - { 61, 61, 0, 0, 40000, 86,0 }, - { 62, 62, 0, 0, 40000, 66,0 }, - { 63, 63, 0, 0, 40000, 73,0 }, - { 64, 64, 0, 0, 40000, 80,0 }, - { 65, 65, 0, 0, 40000, 80,0 }, - { 66, 66, 0, 0, 40000, 73,0 }, - { 67, 67, 0, 0, 40000, 73,0 }, - { 68, 68, 0, 0, 40000, 53,0 }, - { 69, 69, 0, 0, 40000, 73,0 }, - { 70, 70, 0, 0, 40000, 126,0 }, - { 71, 71, 0, 0, 40000, 73,0 }, - { 72, 72, 0, 0, 40000, 73,0 }, - { 73, 73, 0, 0, 40000, 73,0 }, - { 74, 74, 0, 0, 40000, 66,0 }, - { 75, 75, 0, 0, 40000, 153,0 }, - { 76, 76, 0, 0, 40000, 153,0 }, - { 77, 77, 0, 0, 40000, 146,0 }, - { 78, 78, 0, 0, 40000, 146,0 }, - { 79, 79, 0, 0, 40000, 66,0 }, - { 80, 80, 0, 0, 40000, 60,0 }, - { 81, 81, 0, 0, 40000, 86,0 }, - { 82, 82, 0, 0, 40000, 73,0 }, - { 83, 83, 0, 0, 40000, 66,0 }, - { 84, 84, 0, 0, 40000, 153,0 }, - { 85, 85, 0, 0, 40000, 233,0 }, - { 86, 86, 0, 0, 40000, 80,0 }, - { 87, 87, 0, 0, 40000, 400,0 }, - { 88, 88, 0, 0, 40000, 1373,0 }, - { 89, 89, 0, 0, 40000, 193,0 }, - { 90, 90, 0, 0, 40000, 1273,0 }, - { 91, 91, 0, 0, 40000, 186,0 }, - { 92, 92, 0, 0, 40000, 86,0 }, - { 93, 93, 0, 0, 40000, 286,0 }, - { 94, 94, 0, 0, 40000, 140,0 }, - { 95, 95, 0, 0, 7440, 2473,0 }, - { 96, 96, 0, 0, 40000, 1220,0 }, - { 97, 97, 0, 0, 4946, 2713,0 }, - { 98, 98, 0, 0, 40000, 160,0 }, - { 99, 99, 0, 0, 8966, 406,0 }, - { 100, 100, 0, 0, 40000, 1353,0 }, - { 101, 101, 0, 0, 40000, 1306,0 }, - { 102, 102, 0, 0, 40000, 933,0 }, - { 103, 103, 0, 0, 9086, 226,0 }, - { 104, 104, 0, 0, 7233, 326,0 }, - { 105, 105, 0, 0, 7286, 200,0 }, - { 106, 106, 0, 0, 14180, 4406,0 }, - { 107, 107, 0, 0, 1180, 406,0 }, - { 108, 108, 0, 0, 40000, 66,0 }, - { 109, 109, 0, 0, 40000, 213,0 }, - { 110, 110, 0, 0, 40000, 73,0 }, - { 111, 111, 0, 0, 4606, 413,0 }, - { 112, 112, 0, 0, 613, 240,0 }, - { 113, 113, 0, 0, 1166, 400,0 }, - { 114, 114, 0, 0, 200, 353,0 }, - { 115, 115, 0, 0, 4553, 1480,0 }, - { 116, 116, 0, 0, 3740, 1260,0 }, - { 117, 117, 0, 0, 7240, 2300,0 }, - { 118, 118, 0, 0, 3020, 73,0 }, - { 119, 119, 0, 0, 1626, 800,0 }, - { 120, 120, 0, 0, 2466, 620,0 }, - { 121, 121, 0, 0, 12053, 3160,0 }, - { 122, 122, 0, 0, 466, 120,0 }, - { 123, 123, 0, 0, 1000, 320,0 }, - { 124, 124, 0, 0, 380, 60,0 }, - { 125, 125, 0, 0, 40000, 200,0 }, - { 126, 126, 0, 0, 560, 86,0 }, - { 127, 127, 35, 0, 386, 160,0 }, - { 128, 128, 52, 0, 126, 26,0 }, - { 129, 129, 48, 0, 286, 126,0 }, - { 130, 130, 58, 0, 173, 93,0 }, - { 129, 129, 60, 0, 286, 126,0 }, - { 131, 131, 47, 0, 520, 200,0 }, - { 132, 132, 43, 0, 173, 93,0 }, - { 131, 131, 49, 0, 520, 200,0 }, - { 133, 133, 43, 0, 160, 80,0 }, - { 131, 131, 51, 0, 526, 206,0 }, - { 134, 134, 43, 0, 1860, 653,0 }, - { 131, 131, 54, 0, 520, 200,0 }, - { 131, 131, 57, 0, 520, 200,0 }, - { 135, 135, 72, 0, 1860, 633,0 }, - { 131, 131, 60, 0, 506, 200,0 }, - { 136, 136, 76, 0, 1566, 546,0 }, - { 137, 137, 84, 0, 1340, 466,0 }, - { 138, 138, 36, 0, 1220, 433,0 }, - { 139, 139, 65, 0, 293, 133,0 }, - { 140, 140, 84, 0, 1333, 460,0 }, - { 141, 141, 83, 0, 220, 113,0 }, - { 135, 135, 84, 0, 1366, 473,0 }, - { 142, 142, 24, 0, 1893, 633,0 }, - { 136, 136, 77, 0, 1586, 553,0 }, - { 143, 143, 60, 0, 173, 93,0 }, - { 144, 144, 65, 0, 213, 126,0 }, - { 145, 145, 59, 0, 173, 0,0 }, - { 146, 146, 51, 0, 173, 100,0 }, - { 147, 147, 45, 0, 260, 206,0 }, - { 148, 148, 71, 0, 433, 180,0 }, - { 149, 149, 60, 0, 280, 26,0 }, - { 150, 150, 58, 0, 500, 186,0 }, - { 151, 151, 53, 0, 513, 200,0 }, - { 152, 152, 64, 0, 220, 86,0 }, - { 153, 153, 71, 0, 106, 46,0 }, - { 154, 154, 61, 0, 993, 340,0 }, - { 155, 155, 61, 0, 1906, 640,0 }, - { 156, 156, 44, 0, 206, 86,0 }, - { 157, 157, 40, 0, 586, 140,0 }, - { 158, 158, 69, 0, 126, 140,0 }, - { 159, 159, 68, 0, 126, 140,0 }, - { 160, 160, 63, 0, 146, 166,0 }, - { 161, 161, 74, 0, 280, 100,0 }, - { 162, 162, 60, 0, 1026, 320,0 }, - { 163, 163, 80, 0, 226, 100,0 }, - { 164, 164, 64, 0, 2713, 913,0 }, - { 165, 165, 72, 0, 120, 66,0 }, - { 166, 166, 73, 0, 386, 80,0 }, - { 167, 167, 70, 0, 553, 306,0 }, - { 168, 168, 68, 0, 126, 140,0 }, - { 169, 169, 48, 0, 386, 373,0 }, - { 131, 131, 53, 0, 520, 206,0 }, - { 170, 170, 0, 0, 40000, 0,0 }, - { 171, 171, 0, 0, 40000, 73,0 }, - { 172, 173, 0, 4, 5886, 100,0 }, - { 174, 175, 0, 4, 6913, 0,0 }, - { 176, 177, 0, 4, 4873, 0,0 }, - { 178, 178, 0, 0, 40000, 0,0 }, - { 179, 180, 0, 4, 4653, 433,0 }, - { 181, 181, 0, 0, 2280, 746,0 }, - { 182, 182, 0, 0, 40000, 0,0 }, - { 183, 184, 0, 4, 626, 0,0 }, - { 185, 186, 0, 4, 4653, 1546,0 }, - { 187, 187, 0, 0, 1166, 400,0 }, - { 188, 189, 0, 4, 40000, 60,0 }, - { 190, 191, 0, 4, 40000, 60,0 }, - { 192, 193, 0, 4, 40000, 73,0 }, - { 194, 194, 0, 0, 40000, 73,0 }, - { 195, 196, 0, 4, 40000, 66,0 }, - { 197, 198, 0, 4, 40000, 86,0 }, - { 199, 200, 0, 4, 40000, 66,0 }, - { 201, 202, 0, 4, 3713, 100,0 }, - { 203, 204, 0, 4, 14753, 126,0 }, - { 205, 206, 0, 4, 9286, 146,0 }, - { 207, 208, 0, 4, 14713, 126,0 }, - { 209, 210, 0, 4, 4653, 0,0 }, - { 211, 212, 0, 4, 40000, 66,0 }, - { 213, 213, 0, 0, 40000, 73,0 }, - { 214, 215, 0, 4, 626, 0,0 }, - { 216, 217, 0, 4, 4066, 100,0 }, - { 218, 219, 0, 4, 14586, 193,0 }, - { 220, 221, 0, 4, 2813, 106,0 }, - { 222, 223, 0, 4, 500, 0,0 }, - { 224, 224, 0, 0, 40000, 0,0 }, - { 225, 226, 0, 4, 7993, 93,0 }, - { 227, 227, 0, 0, 40000, 0,0 }, - { 228, 228, 0, 0, 40000, 133,0 }, - { 229, 230, 0, 4, 720, 213,0 }, - { 231, 232, 0, 4, 40000, 146,0 }, - { 233, 234, 0, 4, 40000, 0,0 }, - { 235, 236, 0, 4, 1000, 340,0 }, - { 235, 237, 0, 4, 3280, 1120,0 }, - { 46, 238, 0, 4, 6920, 0,0 }, - { 239, 240, 0, 4, 40000, 140,0 }, - { 241, 242, 0, 4, 40000, 146,0 }, - { 243, 243, 0, 0, 40000, 100,0 }, - { 244, 244, 0, 0, 40000, 60,0 }, - { 245, 245, 0, 0, 40000, 73,0 }, - { 246, 247, 0, 4, 720, 106,0 }, - { 248, 249, 0, 4, 40000, 126,0 }, - { 250, 250, 0, 0, 40000, 0,0 }, - { 251, 251, 0, 0, 40000, 126,0 }, - { 252, 253, 0, 4, 40000, 66,0 }, - { 254, 255, 0, 4, 40000, 93,0 }, - { 256, 257, 0, 4, 40000, 73,0 }, - { 258, 259, 0, 4, 40000, 86,0 }, - { 260, 261, 0, 4, 40000, 93,0 }, - { 262, 263, 0, 4, 40000, 80,0 }, - { 264, 265, 0, 4, 40000, 200,0 }, - { 266, 267, 0, 4, 40000, 73,0 }, - { 268, 269, 0, 4, 40000, 80,0 }, - { 270, 271, 0, 4, 40000, 73,0 }, - { 272, 273, 0, 4, 40000, 126,0 }, - { 274, 275, 0, 4, 40000, 100,0 }, - { 276, 276, 0, 0, 40000, 113,0 }, - { 277, 278, 0, 4, 40000, 186,0 }, - { 279, 280, 0, 4, 40000, 160,0 }, - { 281, 282, 0, 4, 40000, 206,0 }, - { 283, 283, 0, 0, 40000, 80,0 }, - { 284, 285, 0, 4, 40000, 73,0 }, - { 286, 287, 0, 4, 40000, 73,0 }, - { 288, 288, 0, 0, 40000, 93,0 }, - { 289, 290, 0, 4, 40000, 66,0 }, - { 291, 292, 0, 4, 40000, 153,0 }, - { 293, 294, 0, 4, 40000, 153,0 }, - { 295, 296, 0, 4, 40000, 320,0 }, - { 88, 297, 0, 4, 40000, 1280,0 }, - { 298, 299, 0, 4, 40000, 266,0 }, - { 300, 301, 0, 4, 40000, 1180,0 }, - { 302, 302, 0, 0, 40000, 286,0 }, - { 303, 303, 0, 0, 40000, 140,0 }, - { 304, 304, 0, 0, 13246, 2473,0 }, - { 305, 306, 0, 4, 40000, 1073,0 }, - { 307, 307, 0, 0, 9233, 240,0 }, - { 308, 308, 0, 0, 1186, 406,0 }, - { 309, 309, 0, 0, 40000, 1306,0 }, - { 310, 310, 0, 0, 40000, 933,0 }, - { 311, 312, 0, 4, 9146, 240,0 }, - { 313, 314, 0, 4, 7306, 326,0 }, - { 315, 316, 0, 4, 3586, 326,0 }, - { 317, 318, 0, 4, 7180, 0,0 }, - { 107, 319, 0, 4, 1180, 406,0 }, - { 108, 320, 0, 4, 40000, 66,0 }, - { 109, 321, 0, 4, 720, 213,0 }, - { 322, 323, 0, 4, 40000, 73,0 }, - { 324, 325, 0, 4, 613, 246,0 }, - { 326, 327, 0, 4, 1213, 386,0 }, - { 328, 328, 0, 0, 173, 106,0 }, - { 329, 329, 0, 0, 966, 333,0 }, - { 330, 331, 0, 4, 1906, 320,0 }, - { 332, 332, 0, 0, 3120, 73,0 }, - { 333, 333, 0, 0, 226, 73,0 }, - { 334, 334, 0, 0, 6600, 806,0 }, - { 335, 335, 0, 0, 273, 60,0 }, - { 336, 336, 0, 0, 12053, 660,0 }, - { 337, 337, 0, 0, 40000, 240,0 }, - { 338, 339, 0, 6, 6, 0,0 }, - { 340, 341, 0, 4, 560, 0,0 }, - { 342, 342, 35, 0, 40000, 0,0 }, - { 343, 343, 0, 0, 180, 100,0 }, - { 344, 344, 35, 0, 340, 146,0 }, - { 345, 345, 35, 0, 213, 33,0 }, - { 346, 346, 50, 0, 306, 20,0 }, - { 347, 347, 18, 0, 420, 146,0 }, - { 348, 348, 72, 0, 173, 86,0 }, - { 349, 349, 74, 0, 160, 93,0 }, - { 350, 350, 35, 0, 380, 146,0 }, - { 351, 351, 16, 0, 1206, 420,0 }, - { 352, 352, 0, 2, 6, 0,0 }, - { 353, 353, 38, 0, 200, 106,0 }, - { 354, 354, 38, 0, 346, 146,0 }, - { 355, 355, 31, 0, 406, 20,0 }, - { 355, 355, 35, 0, 406, 66,0 }, - { 355, 355, 38, 0, 406, 66,0 }, - { 355, 355, 41, 0, 406, 66,0 }, - { 355, 355, 45, 0, 306, 73,0 }, - { 355, 355, 50, 0, 306, 73,0 }, - { 356, 356, 36, 0, 1373, 493,0 }, - { 357, 357, 36, 0, 146, 33,0 }, - { 358, 358, 48, 0, 213, 86,0 }, - { 358, 358, 36, 0, 246, 86,0 }, - { 359, 359, 36, 0, 113, 0,0 }, - { 360, 360, 0, 0, 133, 40,0 }, - { 361, 361, 61, 0, 180, 26,0 }, - { 362, 362, 96, 0, 706, 266,0 }, - { 363, 363, 38, 0, 520, 193,0 }, - { 127, 127, 16, 0, 620, 233,0 }, - { 364, 365, 18, 4, 200, 0,0 }, - { 366, 366, 30, 0, 406, 246,0 }, - { 367, 368, 35, 4, 200, 0,0 }, - { 129, 129, 0, 0, 353, 153,0 }, - { 369, 369, 0, 0, 213, 13,0 }, - { 370, 370, 88, 0, 333, 113,0 }, - { 371, 371, 88, 0, 140, 73,0 }, - { 372, 372, 79, 0, 2540, 1040,0 }, - { 135, 135, 14, 0, 9213, 3066,0 }, - { 373, 373, 46, 0, 1093, 60,0 }, - { 374, 375,129, 4, 1200, 433,0 }, - { 376, 376, 58, 0, 1600, 726,0 }, - { 377, 377,164, 0, 526, 820,0 }, - { 378, 378,142, 0, 9153, 3073,0 }, - { 379, 379, 9, 0, 200, 100,0 }, - { 380, 381, 35, 4, 2353, 813,0 }, - { 382, 382, 28, 0, 1060, 120,0 }, - { 383, 383, 46, 0, 953, 20,0 }, - { 384, 384, 60, 0, 440, 160,0 }, - { 384, 384, 54, 0, 513, 180,0 }, - { 385, 385, 72, 0, 253, 120,0 }, - { 385, 385, 67, 0, 253, 113,0 }, - { 385, 385, 60, 0, 253, 106,0 }, - { 386, 386, 1, 0, 966, 613,0 }, - { 387, 387, 77, 0, 340, 86,0 }, - { 387, 387, 72, 0, 340, 86,0 }, - { 388, 388, 90, 0, 213, 86,0 }, - { 389, 389, 39, 0, 266, 73,0 }, - { 390, 390, 36, 0, 593, 73,0 }, - { 391, 392, 35, 4, 173, 46,0 }, - { 391, 393, 35, 4, 460, 66,0 }, - { 394, 394, 60, 0, 173, 20,0 }, - { 328, 328, 7, 0, 173, 0,0 }, - { 395, 395, 90, 0, 193, 20,0 }, - { 396, 396, 90, 0, 793, 40,0 }, - { 397, 397, 35, 0, 253, 86,0 }, - { 398, 399, 5, 4, 1913, 226,0 }, - { 400, 400,103, 0, 713, 273,0 }, - { 401, 401, 3, 0, 100, 0,0 }, - { 169, 169, 1, 0, 466, 413,0 }, - { 131, 131, 0, 0, 613, 226,0 }, - { 402, 402, 36, 0, 273, 53,0 }, - { 403, 403, 60, 0, 40000, 73,0 }, - { 404, 404, 37, 0, 1193, 426,0 }, - { 405, 405, 36, 0, 406, 20,0 }, - { 406, 406, 32, 0, 146, 73,0 }, - { 407, 407, 50, 0, 40000, 0,0 }, - { 408, 408, 50, 0, 793, 346,0 }, - { 409, 409, 83, 0, 120, 13,0 }, - { 410, 410, 72, 0, 433, 0,0 }, - { 148, 148, 59, 0, 513, 200,0 }, - { 411, 411, 64, 0, 173, 93,0 }, - { 411, 411, 60, 0, 173, 93,0 }, - { 412, 412, 72, 0, 160, 93,0 }, - { 412, 412, 62, 0, 173, 93,0 }, - { 413, 413, 83, 0, 773, 60,0 }, - { 414, 414, 0, 0, 40000, 80,0 }, - { 415, 415, 0, 0, 40000, 0,0 }, - { 416, 416, 0, 0, 40000, 73,0 }, - { 417, 417, 0, 0, 40000, 86,0 }, - { 418, 418, 0, 0, 40000, 0,0 }, - { 419, 419, 0, 0, 3440, 100,0 }, - { 420, 420, 0, 0, 3913, 420,0 }, - { 421, 421, 0, 0, 13620, 4640,0 }, - { 422, 422, 0, 0, 9233, 240,0 }, - { 423, 423, 0, 0, 633, 233,0 }, - { 424, 424, 0, 0, 4660, 1573,0 }, - { 425, 425, 0, 0, 4480, 1413,0 }, - { 426, 426, 0, 0, 40000, 0,0 }, - { 427, 427, 0, 0, 40000, 86,0 }, - { 428, 428, 60, 2, 6, 0,0 }, - { 429, 429, 73, 0, 593, 86,0 }, - { 429, 429, 74, 0, 593, 86,0 }, - { 429, 429, 80, 0, 593, 86,0 }, - { 429, 429, 84, 0, 593, 86,0 }, - { 429, 429, 92, 0, 520, 86,0 }, - { 430, 430, 81, 0, 786, 80,0 }, - { 430, 430, 83, 0, 786, 80,0 }, - { 430, 430, 95, 0, 680, 80,0 }, - { 431, 431, 35, 0, 593, 140,0 }, - { 432, 432, 60, 0, 213, 133,0 }, - { 357, 357, 59, 0, 113, 0,0 }, - { 432, 432, 44, 0, 213, 133,0 }, - { 433, 433, 41, 0, 713, 273,0 }, - { 434, 434, 97, 0, 113, 46,0 }, - { 433, 433, 44, 0, 513, 206,0 }, - { 433, 433, 48, 0, 506, 200,0 }, - { 435, 435, 96, 0, 700, 86,0 }, - { 433, 433, 51, 0, 520, 200,0 }, - { 433, 433, 54, 0, 513, 206,0 }, - { 436, 436, 40, 0, 1506, 793,0 }, - { 433, 433, 57, 0, 380, 160,0 }, - { 437, 437, 58, 0, 1600, 726,0 }, - { 438, 438, 97, 0, 233, 106,0 }, - { 439, 439, 50, 0, 186, 93,0 }, - { 437, 437, 60, 0, 1573, 713,0 }, - { 440, 440, 53, 0, 180, 73,0 }, - { 441, 441, 46, 0, 173, 126,0 }, - { 440, 440, 57, 0, 180, 40,0 }, - { 442, 442, 42, 0, 640, 240,0 }, - { 442, 442, 37, 0, 633, 233,0 }, - { 443, 443, 41, 0, 626, 240,0 }, - { 443, 443, 37, 0, 620, 233,0 }, - { 444, 444, 77, 0, 173, 40,0 }, - { 444, 444, 72, 0, 173, 40,0 }, - { 445, 445, 70, 0, 233, 100,0 }, - { 445, 445, 90, 0, 233, 93,0 }, - { 446, 446, 46, 0, 133, 73,0 }, - { 447, 447, 48, 0, 333, 73,0 }, - { 448, 448, 85, 0, 106, 0,0 }, - { 449, 449, 66, 0, 180, 26,0 }, - { 449, 449, 61, 0, 180, 26,0 }, - { 450, 450, 41, 0, 200, 66,0 }, - { 451, 451, 41, 0, 253, 66,0 }, - { 452, 452, 81, 0, 253, 26,0 }, - { 400, 400, 81, 0, 820, 306,0 }, - { 400, 400, 76, 0, 813, 300,0 }, - { 359, 359, 60, 0, 100, 0,0 }, - { 453, 453, 53, 0, 40000, 0,0 }, - { 454, 454, 0, 2, 6, 0,0 }, - { 455, 455, 0, 0, 200, 20,0 }, - { 456, 456, 0, 0, 4480, 100,0 }, - { 457, 457, 0, 0, 1180, 406,0 }, - { 458, 458, 0, 0, 40000, 86,0 }, - { 459, 459, 0, 0, 40000, 73,0 }, - { 460, 460, 0, 0, 3700, 66,0 }, - { 461, 461, 0, 0, 40000, 0,0 }, - { 462, 462, 0, 0, 6746, 2606,0 }, - { 463, 463, 0, 0, 40000, 213,0 }, - { 464, 464, 0, 0, 40000, 66,0 }, - { 465, 465, 0, 0, 40000, 100,0 }, - { 466, 466, 0, 0, 40000, 100,0 }, - { 467, 467, 0, 0, 5840, 806,0 }, - { 468, 468, 0, 0, 40000, 0,0 }, - { 469, 469, 0, 0, 40000, 0,0 }, - { 470, 470, 0, 0, 40000, 73,0 }, - { 471, 471, 0, 0, 40000, 133,0 }, - { 472, 472, 0, 0, 3320, 800,0 }, - { 473, 473, 0, 0, 40000, 173,0 }, - { 474, 474, 0, 0, 40000, 193,0 }, - { 475, 475, 0, 0, 2373, 800,0 }, - { 476, 476, 0, 0, 40000, 4986,0 }, - { 477, 477, 0, 0, 1180, 413,0 }, - { 478, 478, 0, 0, 3673, 1200,0 }, - { 479, 479, 0, 0, 973, 800,0 }, - { 480, 480, 0, 0, 7233, 2286,0 }, - { 481, 481, 0, 0, 40000, 73,0 }, - { 482, 482, 0, 0, 2526, 73,0 }, - { 483, 483, 0, 0, 393, 126,0 }, - { 484, 484, 0, 0, 40000, 200,0 }, - { 485, 485, 0, 0, 40000, 546,0 }, - { 486, 486, 0, 0, 1186, 413,0 }, - { 487, 487, 0, 0, 14166, 320,0 }, - { 488, 488, 0, 0, 8326, 646,0 }, - { 489, 489, 0, 0, 513, 206,0 }, - { 490, 490, 0, 0, 40000, 93,0 }, - { 491, 491, 50, 0, 1406, 353,0 }, - { 492, 492, 37, 0, 1040, 400,0 }, - { 493, 493, 39, 0, 406, 73,0 }, - { 494, 494, 39, 0, 3746, 860,0 }, - { 495, 495, 86, 0, 2133, 173,0 }, - { 496, 496, 43, 0, 140, 66,0 }, - { 127, 127, 24, 0, 513, 206,0 }, - { 127, 127, 29, 0, 520, 206,0 }, - { 497, 497, 50, 0, 340, 20,0 }, - { 498, 498, 30, 0, 5306, 1266,0 }, - { 498, 498, 33, 0, 3773, 886,0 }, - { 498, 498, 38, 0, 3746, 860,0 }, - { 498, 498, 42, 0, 3793, 906,0 }, - { 499, 499, 24, 0, 266, 0,0 }, - { 499, 499, 27, 0, 260, 153,0 }, - { 499, 499, 29, 0, 260, 153,0 }, - { 499, 499, 32, 0, 260, 153,0 }, - { 500, 500, 32, 0, 106, 0,0 }, - { 501, 501, 53, 0, 373, 186,0 }, - { 501, 501, 57, 0, 380, 193,0 }, - { 502, 502, 60, 0, 286, 133,0 }, - { 503, 503, 55, 0, 460, 126,0 }, - { 486, 486, 85, 0, 813, 293,0 }, - { 504, 504, 90, 0, 1580, 546,0 }, - { 505, 505, 84, 0, 246, 120,0 }, - { 506, 506, 48, 0, 826, 646,0 }, - { 507, 507, 48, 0, 266, 213,0 }, - { 132, 132, 72, 0, 126, 66,0 }, - { 508, 508, 72, 0, 106, 0,0 }, - { 509, 509, 72, 0, 100, 0,0 }, - { 510, 510, 63, 0, 1860, 633,0 }, - { 510, 510, 65, 0, 1853, 633,0 }, - { 511, 511, 79, 0, 1573, 553,0 }, - { 512, 512, 38, 0, 520, 793,0 }, - { 513, 513, 94, 0, 380, 160,0 }, - { 514, 514, 87, 0, 433, 306,0 }, - { 514, 514, 94, 0, 380, 273,0 }, - { 515, 515, 80, 0, 546, 273,0 }, - { 516, 516, 47, 0, 506, 200,0 }, - { 517, 517, 61, 0, 286, 133,0 }, - { 517, 517, 68, 0, 246, 120,0 }, - { 518, 518, 61, 0, 513, 206,0 }, - { 518, 518, 68, 0, 433, 180,0 }, - { 499, 499, 60, 0, 220, 133,0 }, - { 519, 519, 60, 0, 153, 46,0 }, - { 520, 520, 36, 0, 200, 20,0 }, - { 520, 520, 60, 0, 173, 20,0 }, - { 521, 521, 60, 0, 173, 20,0 }, - { 522, 522, 68, 0, 126, 26,0 }, - { 523, 523, 71, 0, 160, 186,0 }, - { 523, 523, 72, 0, 160, 186,0 }, - { 524, 524,101, 0, 966, 353,0 }, - { 525, 525, 36, 0, 3333, 480,0 }, - { 526, 526, 25, 0, 40000, 2293,0 }, - { 527, 527, 37, 0, 2106, 426,0 }, - { 528, 528, 36, 0, 720, 266,0 }, - { 528, 528, 41, 0, 713, 266,0 }, - { 529, 529, 84, 0, 173, 60,0 }, - { 530, 530, 54, 0, 40000, 0,0 }, - { 481, 481, 48, 0, 40000, 73,0 }, - { 531, 531, 0, 0, 10060, 1266,0 }, - { 532, 532, 0, 0, 4600, 606,0 }, - { 533, 533, 0, 0, 40000, 253,0 }, - { 534, 534, 0, 0, 40000, 73,0 }, - { 535, 535, 0, 0, 40000, 66,0 }, - { 536, 536, 0, 0, 40000, 80,0 }, - { 537, 537, 0, 0, 9413, 1393,0 }, - { 538, 538, 0, 0, 9000, 66,0 }, - { 539, 539, 0, 0, 40000, 0,0 }, - { 540, 540, 0, 0, 40000, 80,0 }, - { 541, 541, 0, 0, 40000, 120,0 }, - { 542, 542, 0, 0, 253, 73,0 }, - { 543, 543, 0, 0, 40000, 73,0 }, - { 544, 544, 0, 0, 18280, 800,0 }, - { 545, 545, 0, 0, 40000, 1133,0 }, - { 546, 546, 0, 0, 40000, 1226,0 }, - { 547, 547, 0, 0, 40000, 153,0 }, - { 135, 135, 49, 0, 3633, 1186,0 }, - { 548, 548, 35, 0, 2193, 80,0 }, - { 549, 549, 41, 0, 73, 0,0 }, - { 366, 366, 38, 0, 406, 246,0 }, - { 550, 550, 39, 0, 106, 20,0 }, - { 551, 551, 49, 0, 200, 133,0 }, - { 408, 408, 59, 0, 780, 326,0 }, - { 552, 552, 24, 0, 40000, 0,0 }, - { 552, 552, 27, 0, 40000, 0,0 }, - { 552, 552, 29, 0, 40000, 0,0 }, - { 552, 552, 32, 0, 40000, 0,0 }, - { 553, 553, 84, 0, 200, 33,0 }, - { 512, 512, 79, 0, 346, 460,0 }, - { 554, 554, 61, 0, 400, 126,0 }, - { 554, 554, 68, 0, 353, 120,0 }, - { 555, 555, 36, 0, 146, 86,0 }, - { 555, 555, 60, 0, 113, 0,0 }, - { 556, 556, 36, 0, 273, 53,0 }, - { 115, 115, 37, 0, 4580, 1513,0 }, - { 557, 557, 0, 0, 3806, 73,0 }, - { 558, 558, 0, 0, 40000, 0,0 }, - { 559, 559, 0, 0, 40000, 66,0 }, - { 560, 560, 0, 0, 5886, 133,0 }, - { 561, 561, 0, 0, 253, 26,0 }, - { 562, 562, 0, 0, 3246, 753,0 }, - { 563, 563, 0, 0, 40000, 100,0 }, - { 564, 564, 0, 0, 1620, 366,0 }, - { 565, 565, 0, 0, 40000, 0,0 }, - { 566, 566, 0, 0, 40000, 0,0 }, - { 567, 567, 0, 0, 40000, 0,0 }, - { 568, 568, 0, 0, 40000, 80,0 }, - { 569, 569, 0, 0, 760, 340,0 }, - { 570, 570, 0, 0, 40000, 0,0 }, - { 571, 571, 0, 0, 40000, 0,0 }, - { 572, 572, 0, 0, 40000, 0,0 }, - { 356, 356, 0, 0, 1893, 646,0 }, - { 573, 573, 0, 0, 40000, 93,0 }, - { 574, 574, 0, 0, 40000, 93,0 }, - { 575, 575, 0, 0, 40000, 200,0 }, - { 576, 576, 0, 0, 40000, 200,0 }, - { 577, 577, 0, 0, 40000, 126,0 }, - { 578, 578, 0, 0, 40000, 353,0 }, - { 579, 579, 0, 0, 40000, 346,0 }, - { 580, 580, 0, 0, 40000, 353,0 }, - { 581, 581, 0, 0, 40000, 100,0 }, - { 582, 582, 0, 0, 40000, 133,0 }, - { 583, 583, 0, 0, 2286, 713,0 }, - { 584, 584, 0, 0, 40000, 193,0 }, - { 585, 585, 0, 0, 40000, 0,0 }, - { 516, 516, 0, 0, 633, 240,0 }, - { 586, 586, 0, 0, 40000, 73,0 }, - { 587, 587, 0, 0, 40000, 73,0 }, - { 588, 588, 0, 0, 40000, 73,0 }, - { 498, 498, 26, 0, 5293, 1253,0 }, - { 494, 494, 35, 0, 3800, 913,0 }, - { 350, 350, 41, 0, 380, 153,0 }, - { 353, 353, 48, 0, 173, 100,0 }, - { 354, 354, 67, 0, 246, 120,0 }, - { 502, 502, 24, 0, 340, 146,0 }, - { 346, 346, 36, 0, 406, 73,0 }, - { 346, 346, 38, 0, 406, 20,0 }, - { 346, 346, 40, 0, 406, 73,0 }, - { 346, 346, 42, 0, 406, 20,0 }, - { 346, 346, 44, 0, 306, 20,0 }, - { 510, 510, 55, 0, 1866, 646,0 }, - { 346, 346, 46, 0, 306, 20,0 }, - { 136, 136, 80, 0, 1600, 573,0 }, - { 486, 486, 24, 0, 1193, 426,0 }, - { 153, 153, 50, 0, 106, 40,0 }, - { 346, 346, 24, 0, 540, 73,0 }, - { 516, 516, 31, 0, 626, 240,0 }, - { 498, 498, 35, 0, 3760, 880,0 }, - { 517, 517, 60, 0, 286, 133,0 }, - { 530, 530, 36, 0, 40000, 0,0 }, - { 530, 530, 48, 0, 40000, 0,0 }, - { 589, 589, 0, 0, 40000, 0,0 }, - { 139, 139, 76, 0, 253, 106,0 }, - { 156, 156, 48, 0, 206, 80,0 }, - { 157, 157, 48, 0, 426, 106,0 }, - { 165, 165, 69, 0, 120, 66,0 }, - { 167, 167, 75, 0, 546, 306,0 }, - { 590, 590, 0, 0, 40000, 0,0 }, - { 591, 591, 0, 0, 15486, 1580,0 }, - { 592, 592, 0, 0, 3446, 106,0 }, - { 593, 593, 0, 0, 1926, 146,0 }, - { 594, 594, 0, 0, 7293, 2380,0 }, - { 595, 595, 0, 0, 7613, 1566,0 }, - { 596, 596, 0, 0, 1153, 460,0 }, - { 597, 597, 0, 0, 1166, 400,0 }, - { 598, 598, 0, 0, 40000, 73,0 }, - { 599, 599, 0, 0, 40000, 766,0 }, - { 600, 600, 0, 0, 40000, 80,0 }, - { 601, 601, 0, 0, 1840, 513,0 }, - { 602, 602, 0, 0, 40000, 0,0 }, - { 603, 603, 0, 0, 4480, 733,0 }, - { 604, 604, 0, 0, 18226, 786,0 }, - { 605, 605, 0, 0, 4333, 233,0 }, - { 606, 606, 0, 0, 40000, 106,0 }, - { 607, 607, 0, 0, 40000, 366,0 }, - { 608, 608, 0, 0, 40000, 200,0 }, - { 609, 609, 0, 0, 713, 200,0 }, - { 610, 610, 0, 0, 8866, 1366,0 }, - { 611, 611, 0, 0, 2300, 73,0 }, - { 612, 612, 0, 0, 40000, 126,0 }, - { 613, 613, 0, 0, 40000, 1413,0 }, - { 614, 614, 0, 0, 40000, 333,0 }, - { 615, 615, 0, 0, 40000, 333,0 }, - { 616, 616, 0, 0, 40000, 26,0 }, - { 617, 617, 0, 0, 40000, 40,0 }, - { 618, 618, 0, 0, 4240, 353,0 }, - { 619, 619, 0, 0, 40000, 0,0 }, - { 620, 620, 0, 0, 40000, 73,0 }, - { 621, 621, 0, 0, 9020, 60,0 }, - { 622, 622, 0, 0, 3020, 0,0 }, - { 623, 623, 0, 0, 40000, 60,0 }, - { 624, 624, 0, 0, 40000, 73,0 }, - { 625, 625, 0, 0, 40000, 60,0 }, - { 626, 626, 0, 0, 40000, 53,0 }, - { 627, 627, 0, 0, 40000, 0,0 }, - { 628, 628, 0, 0, 40000, 66,0 }, - { 629, 629, 0, 0, 40000, 66,0 }, - { 630, 630, 0, 0, 5913, 426,0 }, - { 631, 631, 0, 0, 40000, 246,0 }, - { 632, 632, 0, 0, 40000, 206,0 }, - { 633, 633, 0, 0, 40000, 0,0 }, - { 634, 634, 0, 0, 2453, 780,0 }, - { 635, 635, 0, 0, 4740, 240,0 }, - { 636, 636, 0, 0, 1840, 353,0 }, - { 637, 637, 0, 0, 40000, 86,0 }, - { 638, 638, 0, 0, 3446, 1786,0 }, - { 346, 346, 0, 0, 540, 20,0 }, - { 639, 639, 0, 0, 7406, 2486,0 }, - { 404, 404, 0, 0, 1220, 466,0 }, - { 506, 506, 0, 0, 1000, 813,0 }, - { 639, 639, 60, 0, 2666, 913,0 }, - { 639, 639, 79, 0, 1366, 486,0 }, - { 640, 640, 65, 0, 2053, 646,0 }, - { 486, 486, 31, 0, 1206, 440,0 }, - { 486, 486, 36, 0, 1200, 433,0 }, - { 640, 640, 72, 0, 1713, 520,0 }, - { 136, 136, 79, 0, 1580, 560,0 }, - { 148, 148, 57, 0, 520, 206,0 }, - { 150, 150, 53, 0, 500, 193,0 }, - { 641, 641, 84, 0, 226, 66,0 }, - { 520, 520, 66, 0, 173, 20,0 }, - { 642, 642, 31, 0, 40000, 113,0 }, - { 642, 642, 29, 0, 40000, 113,0 }, - { 356, 356, 31, 0, 1366, 486,0 }, - { 356, 356, 19, 0, 1866, 633,0 }, - { 643, 643, 31, 0, 40000, 73,0 }, - { 643, 643, 29, 0, 40000, 73,0 }, - { 644, 644, 31, 0, 2286, 400,0 }, - { 644, 644, 35, 0, 2313, 420,0 }, - { 644, 644, 40, 0, 2353, 433,0 }, - { 644, 644, 47, 0, 1860, 346,0 }, - { 516, 516, 32, 0, 626, 240,0 }, - { 516, 516, 43, 0, 506, 200,0 }, - { 495, 495, 26, 0, 3180, 240,0 }, - { 495, 495, 44, 0, 2553, 206,0 }, - { 496, 496, 26, 0, 160, 73,0 }, - { 496, 496, 51, 0, 146, 66,0 }, - { 496, 496, 39, 0, 160, 73,0 }, - { 495, 495, 30, 0, 3180, 240,0 }, - { 645, 645, 44, 0, 1880, 653,0 }, - { 645, 645, 43, 0, 1886, 653,0 }, - { 646, 646, 0, 0, 2393, 833,0 }, - { 647, 647, 0, 0, 4693, 26,0 }, - { 648, 648, 0, 0, 2306, 773,0 }, - { 649, 649, 0, 0, 40000, 120,0 }, - { 650, 650, 0, 0, 40000, 66,0 }, - { 651, 651, 0, 0, 5866, 1206,0 }, - { 652, 652, 0, 0, 40000, 426,0 }, - { 653, 653, 0, 0, 1873, 633,0 }, - { 654, 654, 0, 0, 40000, 66,0 }, - { 655, 655, 0, 0, 40000, 73,0 }, - { 656, 656, 0, 0, 40000, 73,0 }, - { 657, 657, 0, 0, 40000, 0,0 }, - { 658, 658, 0, 0, 2040, 380,0 }, - { 659, 659, 0, 0, 40000, 73,0 }, - { 660, 660, 0, 0, 3720, 1260,0 }, - { 661, 661, 0, 0, 4080, 1046,0 }, - { 662, 662, 0, 0, 8693, 4666,0 }, - { 663, 663, 0, 0, 1926, 73,0 }, - { 664, 664, 0, 0, 8326, 646,0 }, - { 665, 665, 0, 0, 40000, 240,0 }, - { 666, 666, 0, 0, 40000, 226,0 }, - { 667, 667, 0, 0, 40000, 220,0 }, - { 668, 668, 0, 0, 40000, 0,0 }, - { 669, 669, 0, 0, 40000, 193,0 }, - { 670, 670, 0, 0, 880, 20,0 }, - { 671, 671, 0, 0, 4873, 120,0 }, - { 672, 672, 0, 0, 40000, 413,0 }, - { 673, 673, 0, 0, 700, 106,0 }, - { 674, 674, 0, 0, 700, 100,0 }, - { 675, 675, 0, 0, 40000, 126,0 }, - { 676, 676, 0, 0, 8113, 806,0 }, - { 677, 677, 0, 0, 8900, 80,0 }, - { 678, 678, 0, 0, 1893, 653,0 }, - { 679, 679, 0, 0, 3973, 206,0 }, - { 680, 680, 0, 0, 40000, 173,0 }, - { 681, 681, 0, 0, 40000, 73,0 }, - { 682, 682, 0, 0, 40000, 93,0 }, - { 683, 683, 0, 0, 1606, 640,0 }, - { 684, 684, 0, 0, 15486, 1580,0 }, - { 685, 685, 0, 0, 40000, 346,0 }, - { 686, 686, 0, 0, 40000, 786,0 }, - { 687, 687, 0, 0, 386, 240,0 }, - { 688, 688, 0, 0, 40000, 2066,0 }, - { 689, 689, 0, 0, 15453, 73,0 }, - { 690, 690, 0, 0, 1206, 240,0 }, - { 691, 691, 0, 0, 8866, 1366,0 }, - { 692, 692, 0, 0, 5913, 2253,0 }, - { 693, 693, 0, 0, 773, 106,0 }, - { 694, 694, 0, 0, 3793, 73,0 }, - { 695, 695, 0, 0, 40000, 73,0 }, - { 645, 645, 0, 0, 3633, 1180,0 }, - { 696, 696, 0, 0, 40000, 80,0 }, - { 697, 697, 0, 0, 40000, 0,0 }, - { 698, 698, 0, 0, 40000, 66,0 }, - { 699, 699, 0, 0, 40000, 66,0 }, - { 700, 700, 0, 0, 106, 0,0 }, - { 701, 701, 0, 0, 40000, 200,0 }, - { 702, 702, 0, 0, 3913, 73,0 }, - { 703, 703, 0, 0, 40000, 73,0 }, - { 704, 704, 0, 0, 40000, 73,0 }, - { 705, 705, 0, 0, 40000, 73,0 }, - { 706, 706, 0, 0, 40000, 66,0 }, - { 707, 707, 0, 0, 40000, 313,0 }, - { 708, 708, 0, 0, 40000, 100,0 }, - { 709, 709, 0, 0, 40000, 213,0 }, - { 710, 710, 0, 0, 40000, 53,0 }, - { 711, 711, 0, 0, 40000, 40,0 }, - { 712, 712, 0, 0, 40000, 73,0 }, - { 713, 713, 0, 0, 40000, 140,0 }, - { 714, 714, 0, 0, 40000, 606,0 }, - { 715, 715, 0, 0, 40000, 226,0 }, - { 716, 716, 0, 0, 3746, 1273,0 }, - { 717, 717, 0, 0, 40000, 80,0 }, - { 718, 718, 0, 0, 2360, 806,0 }, - { 719, 719, 0, 0, 1186, 420,0 }, - { 720, 720, 0, 0, 12533, 1953,0 }, - { 721, 721, 0, 0, 973, 1280,0 }, - { 722, 722, 0, 0, 40000, 426,0 }, - { 723, 723, 0, 0, 40000, 53,0 }, - { 724, 724, 0, 0, 40000, 66,0 }, - { 725, 725, 0, 0, 1246, 73,0 }, - { 726, 726, 0, 0, 3726, 1246,0 }, - { 727, 727, 0, 0, 2346, 813,0 }, - { 728, 728, 0, 0, 1206, 433,0 }, - { 507, 507, 0, 0, 306, 246,0 }, - { 512, 512, 0, 0, 526, 840,0 }, - { 729, 729, 0, 0, 14793, 4933,0 }, - { 730, 730, 0, 0, 14640, 4806,0 }, - { 731, 731, 0, 0, 5233, 633,0 }, - { 732, 732, 0, 0, 40000, 2513,0 }, - { 733, 733, 0, 0, 40000, 820,0 }, - { 734, 734, 0, 0, 40000, 0,0 }, - { 735, 735, 0, 0, 1726, 793,0 }, - { 736, 736, 0, 0, 513, 20,0 }, - { 737, 737, 0, 2, 6, 0,0 }, - { 738, 738, 38, 0, 1020, 413,0 }, - { 739, 739, 44, 0, 220, 33,0 }, - { 500, 500, 58, 0, 100, 0,0 }, - { 740, 740, 24, 0, 513, 206,0 }, - { 741, 741, 60, 0, 220, 26,0 }, - { 736, 736, 44, 0, 286, 20,0 }, - { 742, 742, 25, 0, 626, 246,0 }, - { 743, 743, 60, 0, 146, 86,0 }, - { 742, 742, 30, 0, 626, 240,0 }, - { 377, 377, 60, 0, 446, 626,0 }, - { 742, 742, 33, 0, 620, 226,0 }, - { 744, 744, 60, 0, 220, 113,0 }, - { 742, 742, 35, 0, 620, 233,0 }, - { 742, 742, 37, 0, 633, 246,0 }, - { 745, 745, 0, 0, 1880, 640,0 }, - { 742, 742, 40, 0, 640, 260,0 }, - { 746, 746,102, 0, 960, 300,0 }, - { 747, 747, 80, 0, 1106, 126,0 }, - { 377, 377, 0, 0, 500, 760,0 }, - { 748, 748, 56, 0, 100, 0,0 }, - { 749, 749, 0, 0, 973, 1300,0 }, - { 746, 746,100, 0, 960, 340,0 }, - { 750, 750, 40, 0, 626, 240,0 }, - { 750, 750, 35, 0, 626, 240,0 }, - { 751, 751, 29, 0, 206, 106,0 }, - { 750, 750, 29, 0, 633, 240,0 }, - { 750, 750, 22, 0, 640, 233,0 }, - { 500, 500, 0, 0, 106, 0,0 }, - { 752, 752, 0, 0, 206, 26,0 }, - { 753, 753, 84, 0, 166, 20,0 }, - { 754, 754, 84, 0, 1580, 553,0 }, - { 755, 755, 0, 0, 633, 233,0 }, - { 755, 755, 71, 0, 440, 180,0 }, - { 755, 755, 53, 0, 513, 200,0 }, - { 755, 755, 48, 0, 520, 206,0 }, - { 756, 756, 95, 0, 286, 20,0 }, - { 757, 757, 95, 0, 1880, 20,0 }, - { 758, 758, 0, 0, 14413, 333,0 }, - { 759, 759, 0, 0, 14453, 360,0 }, - { 760, 760, 0, 0, 14940, 353,0 }, - { 761, 761, 0, 0, 7286, 340,0 }, - { 762, 762, 0, 0, 14700, 60,0 }, - { 763, 763, 0, 0, 14506, 340,0 }, - { 764, 764, 0, 0, 14706, 200,0 }, - { 765, 765, 0, 0, 40000, 0,0 }, - { 766, 766, 0, 0, 2900, 426,0 }, - { 767, 767, 0, 0, 2986, 753,0 }, - { 768, 768, 0, 0, 1706, 680,0 }, - { 769, 769, 0, 0, 14646, 1253,0 }, - { 770, 770, 0, 0, 1713, 486,0 }, - { 771, 771, 0, 0, 966, 346,0 }, - { 772, 772, 0, 0, 3453, 766,0 }, - { 773, 773, 0, 0, 2866, 486,0 }, - { 774, 774, 0, 0, 40000, 73,0 }, - { 775, 775, 0, 0, 40000, 73,0 }, - { 776, 776, 0, 0, 40000, 166,0 }, - { 777, 777, 0, 0, 40000, 126,0 }, - { 778, 778, 0, 0, 40000, 113,0 }, - { 779, 779, 0, 0, 40000, 113,0 }, - { 780, 780, 0, 0, 40000, 93,0 }, - { 781, 781, 0, 0, 40000, 200,0 }, - { 782, 782, 0, 0, 7186, 93,0 }, - { 783, 783, 0, 0, 6406, 120,0 }, - { 784, 784, 0, 0, 40000, 0,0 }, - { 785, 785, 0, 0, 40000, 0,0 }, - { 786, 786, 0, 0, 1220, 73,0 }, - { 787, 787, 0, 0, 40000, 0,0 }, - { 788, 788, 0, 0, 17566, 66,0 }, - { 789, 789, 0, 0, 2333, 26,0 }, - { 790, 790, 0, 0, 4560, 153,0 }, - { 791, 791, 0, 0, 40000, 0,0 }, - { 792, 792, 0, 0, 40000, 0,0 }, - { 793, 793, 0, 0, 40000, 0,0 }, - { 794, 794, 0, 0, 2506, 126,0 }, - { 795, 795, 0, 0, 2513, 126,0 }, - { 796, 796, 0, 0, 40000, 0,0 }, - { 797, 797, 0, 0, 3386, 80,0 }, - { 798, 798, 0, 0, 40000, 100,0 }, - { 799, 799, 0, 0, 40000, 100,0 }, - { 800, 800, 0, 0, 40000, 120,0 }, - { 801, 801, 0, 0, 40000, 0,0 }, - { 802, 802, 0, 0, 40000, 200,0 }, - { 803, 803, 0, 0, 1080, 180,0 }, - { 804, 804, 0, 0, 3620, 1166,0 }, - { 805, 805, 0, 0, 1186, 393,0 }, - { 806, 806, 0, 0, 40000, 213,0 }, - { 807, 807, 0, 0, 40000, 426,0 }, - { 808, 808, 0, 0, 40000, 146,0 }, - { 809, 809, 0, 0, 40000, 146,0 }, - { 810, 810, 0, 0, 40000, 60,0 }, - { 811, 811, 0, 0, 40000, 113,0 }, - { 812, 812, 0, 0, 40000, 93,0 }, - { 813, 813, 0, 0, 1186, 153,0 }, - { 814, 814, 0, 0, 40000, 0,0 }, - { 815, 815, 0, 0, 40000, 80,0 }, - { 816, 816, 0, 0, 40000, 80,0 }, - { 817, 817, 0, 0, 40000, 46,0 }, - { 818, 818, 0, 0, 40000, 0,0 }, - { 819, 819, 0, 0, 40000, 66,0 }, - { 820, 820, 0, 0, 40000, 126,0 }, - { 821, 821, 0, 0, 40000, 213,0 }, - { 822, 822, 0, 0, 40000, 80,0 }, - { 823, 823, 0, 0, 40000, 73,0 }, - { 824, 824, 0, 0, 40000, 73,0 }, - { 825, 825, 0, 0, 40000, 100,0 }, - { 826, 826, 0, 0, 40000, 93,0 }, - { 827, 827, 0, 0, 40000, 73,0 }, - { 828, 828, 0, 0, 40000, 73,0 }, - { 829, 829, 0, 0, 40000, 80,0 }, - { 830, 830, 0, 0, 40000, 80,0 }, - { 831, 831, 0, 0, 40000, 80,0 }, - { 832, 832, 0, 0, 40000, 73,0 }, - { 833, 833, 0, 0, 40000, 80,0 }, - { 834, 834, 0, 0, 40000, 86,0 }, - { 835, 835, 0, 0, 40000, 100,0 }, - { 836, 836, 0, 0, 40000, 100,0 }, - { 837, 837, 0, 0, 40000, 140,0 }, - { 838, 838, 0, 0, 40000, 73,0 }, - { 839, 839, 0, 0, 40000, 0,0 }, - { 840, 840, 0, 0, 40000, 93,0 }, - { 841, 841, 0, 0, 40000, 0,0 }, - { 842, 842, 0, 0, 40000, 0,0 }, - { 843, 843, 0, 0, 40000, 73,0 }, - { 844, 844, 0, 0, 40000, 66,0 }, - { 845, 845, 0, 0, 40000, 0,0 }, - { 846, 846, 0, 0, 40000, 193,0 }, - { 847, 847, 0, 0, 40000, 340,0 }, - { 848, 848, 0, 0, 40000, 233,0 }, - { 849, 849, 0, 0, 40000, 80,0 }, - { 850, 850, 0, 0, 40000, 186,0 }, - { 851, 851, 0, 0, 9973, 426,0 }, - { 852, 852, 0, 0, 40000, 200,0 }, - { 853, 853, 0, 0, 40000, 400,0 }, - { 854, 854, 0, 0, 14633, 200,0 }, - { 855, 855, 0, 0, 40000, 333,0 }, - { 856, 856, 0, 0, 4620, 800,0 }, - { 857, 857, 0, 0, 8940, 386,0 }, - { 858, 858, 0, 0, 8966, 740,0 }, - { 859, 859, 0, 0, 40000, 273,0 }, - { 860, 860, 0, 0, 40000, 126,0 }, - { 861, 861, 0, 0, 40000, 400,0 }, - { 862, 862, 0, 0, 4480, 213,0 }, - { 863, 863, 0, 0, 633, 100,0 }, - { 864, 864, 0, 0, 3740, 353,0 }, - { 865, 865, 0, 0, 2333, 406,0 }, - { 866, 866, 0, 0, 1933, 566,0 }, - { 867, 867, 0, 0, 40000, 93,0 }, - { 868, 868, 0, 0, 40000, 106,0 }, - { 869, 869, 0, 0, 40000, 100,0 }, - { 870, 870, 0, 0, 3093, 240,0 }, - { 871, 871, 0, 0, 513, 93,0 }, - { 872, 872, 0, 0, 700, 180,0 }, - { 361, 361, 0, 0, 373, 40,0 }, - { 873, 873, 0, 0, 1046, 446,0 }, - { 874, 874, 0, 0, 1886, 520,0 }, - { 875, 875, 0, 0, 1226, 366,0 }, - { 876, 876, 0, 0, 4193, 73,0 }, - { 877, 877, 0, 0, 826, 120,0 }, - { 878, 878, 0, 0, 280, 146,0 }, - { 879, 879, 0, 0, 5266, 806,0 }, - { 880, 880, 0, 0, 386, 80,0 }, - { 881, 881, 0, 0, 40000, 100,0 }, - { 882, 882, 0, 0, 40000, 413,0 }, - { 883, 883, 0, 0, 40000, 0,0 }, - { 884, 884, 36, 0, 233, 80,0 }, - { 885, 885, 48, 0, 193, 93,0 }, - { 885, 885, 36, 0, 226, 100,0 }, - { 886, 886, 36, 0, 113, 0,0 }, - { 887, 887, 32, 0, 133, 40,0 }, - { 767, 767, 96, 0, 1760, 480,0 }, - { 888, 888, 30, 0, 246, 40,0 }, - { 889, 889, 35, 0, 420, 140,0 }, - { 890, 890, 60, 0, 240, 60,0 }, - { 884, 884, 59, 0, 146, 20,0 }, - { 890, 890, 44, 0, 240, 60,0 }, - { 891, 891, 41, 0, 713, 273,0 }, - { 892, 892, 47, 0, 173, 93,0 }, - { 891, 891, 44, 0, 513, 206,0 }, - { 891, 891, 48, 0, 506, 200,0 }, - { 893, 893, 62, 0, 1926, 93,0 }, - { 891, 891, 51, 0, 520, 200,0 }, - { 891, 891, 54, 0, 513, 206,0 }, - { 894, 894, 40, 0, 1280, 793,0 }, - { 891, 891, 57, 0, 380, 160,0 }, - { 895, 895, 97, 0, 233, 106,0 }, - { 896, 896, 50, 0, 220, 93,0 }, - { 376, 376, 60, 0, 1573, 713,0 }, - { 897, 897, 53, 0, 126, 73,0 }, - { 898, 898, 46, 0, 173, 133,0 }, - { 897, 897, 57, 0, 126, 33,0 }, - { 899, 899, 42, 0, 626, 233,0 }, - { 899, 899, 37, 0, 633, 240,0 }, - { 900, 900, 41, 0, 626, 240,0 }, - { 900, 900, 37, 0, 626, 240,0 }, - { 871, 871, 77, 0, 173, 40,0 }, - { 871, 871, 72, 0, 173, 40,0 }, - { 388, 388, 70, 0, 213, 86,0 }, - { 901, 901, 39, 0, 260, 26,0 }, - { 902, 902, 36, 0, 1093, 73,0 }, - { 903, 903, 46, 0, 120, 73,0 }, - { 904, 904, 48, 0, 766, 80,0 }, - { 905, 905, 85, 0, 126, 26,0 }, - { 361, 361, 66, 0, 180, 26,0 }, - { 906, 906, 41, 0, 193, 73,0 }, - { 907, 907, 41, 0, 333, 106,0 }, - { 908, 908, 81, 0, 160, 26,0 }, - { 400, 400, 10, 0, 1186, 413,0 }, - { 886, 886, 60, 0, 100, 0,0 }, - { 873, 873, 53, 0, 846, 360,0 }, - { 909, 909, 0, 0, 5593, 340,0 }, - { 910, 910, 0, 0, 14646, 346,0 }, - { 911, 911, 0, 0, 6826, 280,0 }, - { 912, 912, 0, 0, 7000, 306,0 }, - { 913, 913, 0, 0, 8793, 133,0 }, - { 914, 914, 0, 0, 14680, 346,0 }, - { 915, 915, 0, 0, 7246, 126,0 }, - { 916, 916, 0, 0, 40000, 0,0 }, - { 917, 917, 0, 0, 1866, 433,0 }, - { 362, 362, 0, 0, 1106, 340,0 }, - { 918, 918, 0, 0, 1053, 273,0 }, - { 919, 919, 0, 0, 14513, 1213,0 }, - { 920, 920, 0, 0, 1886, 646,0 }, - { 921, 921, 0, 0, 926, 313,0 }, - { 922, 922, 0, 0, 2340, 806,0 }, - { 923, 923, 0, 0, 2966, 553,0 }, - { 924, 924, 0, 0, 40000, 66,0 }, - { 925, 925, 0, 0, 40000, 73,0 }, - { 926, 926, 0, 0, 40000, 0,0 }, - { 927, 927, 0, 0, 40000, 126,0 }, - { 928, 928, 0, 0, 40000, 113,0 }, - { 929, 929, 0, 0, 40000, 113,0 }, - { 930, 930, 0, 0, 40000, 93,0 }, - { 931, 931, 0, 0, 40000, 113,0 }, - { 932, 932, 0, 0, 7200, 86,0 }, - { 933, 933, 0, 0, 5373, 106,0 }, - { 934, 934, 0, 0, 40000, 0,0 }, - { 935, 935, 0, 0, 40000, 0,0 }, - { 936, 936, 0, 0, 2380, 73,0 }, - { 937, 937, 0, 0, 40000, 0,0 }, - { 938, 938, 0, 0, 40000, 0,0 }, - { 939, 939, 0, 0, 6013, 53,0 }, - { 940, 940, 0, 0, 3713, 126,0 }, - { 941, 941, 0, 0, 17566, 26,0 }, - { 942, 942, 0, 0, 40000, 0,0 }, - { 943, 943, 0, 0, 40000, 0,0 }, - { 944, 944, 0, 0, 2506, 126,0 }, - { 945, 945, 0, 0, 3733, 73,0 }, - { 946, 946, 0, 0, 40000, 0,0 }, - { 947, 947, 0, 0, 3386, 80,0 }, - { 948, 948, 0, 0, 40000, 100,0 }, - { 949, 949, 0, 0, 40000, 100,0 }, - { 950, 950, 0, 0, 40000, 113,0 }, - { 951, 951, 0, 0, 40000, 0,0 }, - { 952, 952, 0, 0, 40000, 200,0 }, - { 953, 953, 0, 0, 1140, 213,0 }, - { 954, 954, 0, 0, 2140, 400,0 }, - { 955, 955, 0, 0, 813, 240,0 }, - { 956, 956, 0, 0, 40000, 100,0 }, - { 957, 957, 0, 0, 40000, 426,0 }, - { 958, 958, 0, 0, 40000, 0,0 }, - { 959, 959, 0, 0, 40000, 146,0 }, - { 960, 960, 0, 0, 40000, 120,0 }, - { 961, 961, 0, 0, 40000, 93,0 }, - { 962, 962, 0, 0, 1193, 153,0 }, - { 963, 963, 0, 0, 40000, 46,0 }, - { 964, 964, 0, 0, 40000, 80,0 }, - { 965, 965, 0, 0, 40000, 80,0 }, - { 966, 966, 0, 0, 40000, 20,0 }, - { 967, 967, 0, 0, 40000, 0,0 }, - { 968, 968, 0, 0, 40000, 93,0 }, - { 969, 969, 0, 0, 40000, 86,0 }, - { 970, 970, 0, 0, 40000, 213,0 }, - { 971, 971, 0, 0, 40000, 80,0 }, - { 972, 972, 0, 0, 40000, 73,0 }, - { 973, 973, 0, 0, 40000, 0,0 }, - { 974, 974, 0, 0, 40000, 93,0 }, - { 975, 975, 0, 0, 40000, 73,0 }, - { 976, 976, 0, 0, 40000, 73,0 }, - { 977, 977, 0, 0, 40000, 66,0 }, - { 978, 978, 0, 0, 40000, 66,0 }, - { 979, 979, 0, 0, 40000, 100,0 }, - { 980, 980, 0, 0, 40000, 73,0 }, - { 981, 981, 0, 0, 40000, 73,0 }, - { 982, 982, 0, 0, 40000, 80,0 }, - { 983, 983, 0, 0, 40000, 100,0 }, - { 984, 984, 0, 0, 40000, 100,0 }, - { 985, 985, 0, 0, 40000, 100,0 }, - { 986, 986, 0, 0, 40000, 80,0 }, - { 987, 987, 0, 0, 40000, 73,0 }, - { 988, 988, 0, 0, 40000, 0,0 }, - { 989, 989, 0, 0, 40000, 86,0 }, - { 990, 990, 0, 0, 40000, 0,0 }, - { 991, 991, 0, 0, 40000, 0,0 }, - { 992, 992, 0, 0, 40000, 80,0 }, - { 993, 993, 0, 0, 40000, 86,0 }, - { 994, 994, 0, 0, 40000, 0,0 }, - { 995, 995, 0, 0, 40000, 0,0 }, - { 996, 996, 0, 0, 40000, 333,0 }, - { 997, 997, 0, 0, 40000, 180,0 }, - { 998, 998, 0, 0, 40000, 80,0 }, - { 999, 999, 0, 0, 40000, 120,0 }, - {1000,1000, 0, 0, 10006, 460,0 }, - {1001,1001, 0, 0, 40000, 186,0 }, - {1002,1002, 0, 0, 40000, 400,0 }, - {1003,1003, 0, 0, 20333, 260,0 }, - {1004,1004, 0, 0, 40000, 373,0 }, - {1005,1005, 0, 0, 4520, 400,0 }, - {1006,1006, 0, 0, 8213, 306,0 }, - {1007,1007, 0, 0, 8646, 360,0 }, - {1008,1008, 0, 0, 40000, 160,0 }, - {1009,1009, 0, 0, 40000, 133,0 }, - {1010,1010, 0, 0, 40000, 400,0 }, - {1011,1011, 0, 0, 4473, 193,0 }, - {1012,1012, 0, 0, 1813, 0,0 }, - {1013,1013, 0, 0, 3726, 353,0 }, - {1014,1014, 0, 0, 4400, 373,0 }, - {1015,1015, 0, 0, 953, 166,0 }, - {1016,1016, 0, 0, 40000, 73,0 }, - {1017,1017, 0, 0, 40000, 100,0 }, - {1018,1018, 0, 0, 40000, 100,0 }, - {1019,1019, 0, 0, 3100, 240,0 }, - { 444, 444, 0, 0, 513, 93,0 }, - {1020,1020, 0, 0, 626, 180,0 }, - { 449, 449, 0, 0, 373, 80,0 }, - { 453, 453, 0, 0, 40000, 0,0 }, - {1021,1021, 0, 0, 1020, 340,0 }, - {1022,1022, 0, 0, 1200, 366,0 }, - {1023,1023, 0, 0, 4193, 73,0 }, - {1024,1024, 0, 0, 820, 120,0 }, - {1025,1025, 0, 0, 680, 213,0 }, - {1026,1026, 0, 0, 5260, 806,0 }, - {1027,1027, 0, 0, 9193, 86,0 }, - {1028,1028, 0, 0, 40000, 100,0 }, - {1029,1029, 0, 0, 40000, 426,0 }, - {1030,1030, 0, 0, 40000, 260,0 }, - {1031,1031, 0, 0, 3480, 66,0 }, - {1032,1032, 32, 0, 133, 46,0 }, - {1033,1033, 30, 0, 200, 40,0 }, - {1034,1034, 96, 0, 146, 73,0 }, - {1035,1035, 60, 0, 553, 186,0 }, - {1036,1036, 0, 0, 13193, 260,0 }, - {1037,1037, 0, 0, 40000, 100,0 }, - {1038,1038, 0, 0, 7980, 66,0 }, - {1039,1039, 0, 0, 40000, 0,0 }, - {1040,1040, 0, 0, 980, 340,0 }, - {1041,1041, 0, 0, 7413, 2480,0 }, - {1042,1042, 0, 0, 2906, 520,0 }, - {1043,1043, 0, 0, 40000, 73,0 }, - {1044,1044, 0, 0, 40000, 53,0 }, - {1045,1045, 0, 0, 40000, 113,0 }, - {1046,1046, 0, 0, 5380, 113,0 }, - {1047,1047, 0, 0, 40000, 0,0 }, - {1048,1048, 0, 0, 2366, 73,0 }, - {1049,1049, 0, 0, 40000, 0,0 }, - {1050,1050, 0, 0, 18293, 80,0 }, - {1051,1051, 0, 0, 18466, 146,0 }, - {1052,1052, 0, 0, 9220, 73,0 }, - {1053,1053, 0, 0, 40000, 240,0 }, - {1054,1054, 0, 0, 40000, 0,0 }, - {1055,1055, 0, 0, 1086, 126,0 }, - {1056,1056, 0, 0, 3766, 73,0 }, - {1057,1057, 0, 0, 1186, 226,0 }, - {1058,1058, 0, 0, 3373, 73,0 }, - {1059,1059, 0, 0, 40000, 246,0 }, - {1060,1060, 0, 0, 340, 220,0 }, - {1061,1061, 0, 0, 1186, 386,0 }, - {1062,1062, 0, 0, 40000, 253,0 }, - {1063,1063, 0, 0, 40000, 440,0 }, - {1064,1064, 0, 0, 40000, 46,0 }, - {1065,1065, 0, 0, 40000, 80,0 }, - {1066,1066, 0, 0, 40000, 126,0 }, - {1067,1067, 0, 0, 40000, 133,0 }, - {1068,1068, 0, 0, 40000, 93,0 }, - {1069,1069, 0, 0, 40000, 86,0 }, - {1070,1070, 0, 0, 40000, 93,0 }, - {1071,1071, 0, 0, 40000, 66,0 }, - {1072,1072, 0, 0, 40000, 93,0 }, - {1073,1073, 0, 0, 40000, 73,0 }, - {1074,1074, 0, 0, 40000, 173,0 }, - {1075,1075, 0, 0, 586, 193,0 }, - {1076,1076, 0, 0, 40000, 146,0 }, - {1077,1077, 0, 0, 18460, 73,0 }, - {1078,1078, 0, 0, 846, 93,0 }, - {1079,1079, 0, 0, 40000, 0,0 }, - {1080,1080, 0, 0, 40000, 86,0 }, - {1081,1081, 0, 0, 40000, 0,0 }, - {1082,1082, 0, 0, 40000, 353,0 }, - {1083,1083, 0, 0, 40000, 300,0 }, - {1084,1084, 0, 0, 40000, 320,0 }, - {1085,1085, 0, 0, 9920, 1553,0 }, - {1086,1086, 0, 0, 40000, 386,0 }, - {1087,1087, 0, 0, 40000, 0,0 }, - {1088,1088, 0, 0, 9980, 873,0 }, - {1089,1089, 0, 0, 40000, 386,0 }, - {1090,1090, 0, 0, 966, 126,0 }, - {1091,1091, 0, 0, 40000, 820,0 }, - {1092,1092, 0, 0, 8620, 366,0 }, - {1093,1093, 0, 0, 40000, 826,0 }, - {1094,1094, 0, 0, 40000, 433,0 }, - {1095,1095, 0, 0, 633, 73,0 }, - {1096,1096, 0, 0, 3693, 126,0 }, - {1097,1097, 0, 0, 40000, 0,0 }, - {1098,1098, 0, 0, 40000, 153,0 }, - {1099,1099, 0, 0, 40000, 0,0 }, - {1100,1100, 0, 0, 40000, 0,0 }, - {1101,1101, 0, 0, 40000, 306,0 }, - {1102,1102, 0, 0, 3666, 3093,0 }, - {1103,1103, 0, 0, 1873, 653,0 }, - {1104,1104, 0, 0, 40000, 0,0 }, - {1105,1105, 0, 0, 11293, 886,0 }, - {1106,1106, 0, 0, 40000, 546,0 }, - { 430, 430, 0, 0, 1146, 80,0 }, - {1107,1107, 35, 0, 580, 80,0 }, - {1090,1090, 77, 0, 280, 60,0 }, - {1090,1090, 72, 0, 280, 60,0 }, - {1108,1108, 0, 0, 10180, 600,0 }, - {1109,1109, 0, 0, 10053, 353,0 }, - {1110,1111, 0, 1, 9940, 480,0 }, - {1112,1113, 0, 1, 10620, 473,0.03125 }, - {1114,1114, 0, 0, 40000, 0,0 }, - {1115,1116, 0, 1, 9833, 220,0 }, - {1117,1117, 0, 0, 10286, 473,0 }, - {1118,1118, 0, 0, 7686, 93,0 }, - {1119,1119, 0, 0, 7220, 613,0 }, - {1120,1120, 0, 0, 11513, 1666,0 }, - {1121,1121, 0, 0, 5200, 1700,0 }, - {1122,1122, 0, 0, 10173, 626,0 }, - {1123,1123, 0, 0, 1206, 380,0 }, - {1124,1124, 0, 0, 1953, 866,0 }, - {1125,1125, 0, 0, 4686, 1586,0 }, - {1126,1126, 0, 0, 3786, 893,0 }, - {1127,1127, 0, 0, 40000, 126,0 }, - {1128,1128, 0, 0, 40000, 120,0 }, - {1129,1130, 0, 1, 40000, 146,0.15625 }, - {1131,1131, 0, 0, 40000, 433,0 }, - {1132,1132, 0, 0, 40000, 133,0 }, - {1133,1134, 0, 1, 40000, 126,-0.046875 }, - {1135,1135, 0, 0, 40000, 113,0 }, - {1136,1137, 0, 1, 40000, 253,2.5e-05 }, - {1138,1138, 0, 0, 18440, 240,0 }, - {1139,1139, 0, 0, 5213, 886,0 }, - {1140,1140, 0, 0, 1446, 113,0 }, - {1141,1141, 0, 0, 5233, 106,0 }, - {1142,1142, 0, 0, 5286, 266,0 }, - {1143,1143, 0, 0, 40000, 66,0 }, - {1144,1144, 0, 0, 40000, 66,0 }, - {1145,1145, 0, 0, 10593, 106,0 }, - {1146,1146, 0, 0, 2733, 160,0 }, - {1147,1147, 0, 0, 10313, 93,0 }, - {1148,1148, 0, 0, 40000, 0,0 }, - {1149,1150, 0, 1, 40000, 0,-0.03125 }, - {1151,1151, 0, 0, 40000, 53,0 }, - {1152,1152, 0, 0, 10560, 246,0 }, - {1153,1153, 0, 0, 2700, 153,0 }, - {1154,1154, 0, 1, 40000, 100,-0.15625 }, - {1155,1155, 0, 0, 40000, 73,0 }, - {1156,1156, 0, 0, 40000, 220,0 }, - {1157,1157, 0, 0, 40000, 140,0 }, - {1158,1158, 0, 0, 40000, 380,0 }, - {1159,1160, 0, 1, 40000, 400,0.171875 }, - {1161,1161, 0, 0, 40000, 0,0 }, - {1162,1162, 0, 0, 40000, 0,0 }, - {1163,1163, 0, 0, 4733, 906,0 }, - {1164,1165, 0, 1, 40000, 393,-0.125 }, - {1166,1167, 0, 1, 40000, 366,0.078125 }, - {1168,1168, 0, 1, 40000, 2453,-0.078125 }, - {1169,1170, 0, 1, 40000, 546,0.0625 }, - {1171,1172, 0, 1, 40000, 786,0.15625 }, - {1173,1173, 0, 0, 40000, 0,0 }, - {1174,1174, 0, 0, 40000, 513,0 }, - {1175,1176, 0, 1, 2300, 533,0 }, - {1177,1177, 0, 0, 40000, 80,0 }, - {1178,1178, 0, 0, 40000, 60,0 }, - {1179,1179, 0, 0, 40000, 0,0 }, - {1180,1180, 0, 0, 10653, 86,0 }, - {1181,1182, 0, 1, 40000, 0,2.5e-05 }, - {1183,1184, 0, 1, 40000, 86,0.046875 }, - {1185,1186, 0, 1, 40000, 0,0.09375 }, - {1187,1188, 0, 1, 40000, 0,0.09375 }, - {1189,1189, 0, 0, 40000, 133,0 }, - {1190,1190, 0, 0, 40000, 140,0 }, - {1191,1191, 0, 0, 40000, 73,0 }, - {1192,1192, 0, 0, 40000, 60,0 }, - {1193,1193, 0, 0, 40000, 106,0 }, - {1194,1194, 0, 0, 40000, 93,0 }, - {1195,1195, 0, 0, 40000, 66,0 }, - {1196,1196, 0, 0, 40000, 93,0 }, - {1197,1197, 0, 0, 40000, 60,0 }, - {1198,1198, 0, 0, 40000, 66,0 }, - {1199,1199, 0, 0, 40000, 120,0 }, - {1200,1200, 0, 0, 40000, 100,0 }, - {1201,1201, 0, 0, 40000, 86,0 }, - {1202,1202, 0, 0, 40000, 0,0 }, - {1203,1203, 0, 0, 40000, 233,0 }, - {1204,1204, 0, 0, 40000, 100,0 }, - {1205,1206, 0, 1, 40000, 266,0.03125 }, - {1207,1208, 0, 1, 40000, 260,-2.5e-05 }, - {1209,1209, 0, 0, 40000, 146,0 }, - {1210,1211, 0, 1, 40000, 60,0.03125 }, - {1212,1212, 0, 0, 40000, 53,0 }, - {1213,1214, 0, 1, 40000, 706,-0.09375 }, - {1215,1216, 0, 1, 40000, 660,-0.046875 }, - {1217,1217, 0, 0, 40000, 133,0 }, - {1218,1219, 0, 1, 40000, 426,0.03125 }, - {1220,1220, 0, 1, 40000, 0,0.03125 }, - {1221,1222, 0, 1, 40000, 260,0.171875 }, - {1223,1223, 0, 0, 40000, 0,0 }, - {1224,1224, 0, 0, 6100, 1580,0 }, - {1225,1150, 0, 1, 40000, 73,-0.03125 }, - {1226,1226, 0, 0, 40000, 1580,0 }, - {1227,1227, 0, 0, 40000, 40,0 }, - {1228,1229, 0, 1, 40000, 113,0.125 }, - {1230,1230, 0, 0, 2666, 846,0 }, - {1231,1232, 0, 1, 40000, 0,-0.03125 }, - {1233,1234, 0, 1, 9233, 2413,-0.1875 }, - {1235,1235, 0, 0, 40000, 1020,0 }, - {1236,1236, 0, 0, 40000, 0,0 }, - {1237,1237, 0, 0, 9633, 3073,0 }, - {1238,1238, 0, 0, 40000, 0,0 }, - {1239,1239, 0, 0, 2446, 386,0 }, - {1240,1241, 0, 1, 3113, 1133,0 }, - {1242,1242, 0, 0, 18473, 813,0 }, - {1243,1243, 0, 0, 1206, 660,0 }, - {1244,1244, 0, 0, 40000, 153,0 }, - {1245,1245, 0, 0, 40000, 160,0 }, - {1246,1246, 0, 0, 40000, 133,0 }, - {1247,1247, 0, 0, 8660, 2386,0 }, - {1248,1248, 0, 0, 293, 106,0 }, - {1249,1249, 0, 0, 40000, 433,0 }, - {1250,1250, 0, 0, 426, 80,0 }, - {1251,1251, 0, 0, 973, 360,0 }, - {1252,1252, 0, 0, 573, 153,0 }, - {1253,1253, 0, 0, 3746, 126,0 }, - {1254,1254, 0, 0, 2313, 73,0 }, - {1255,1255, 0, 0, 1473, 106,0 }, - {1256,1256, 0, 0, 1500, 320,0 }, - {1257,1257, 0, 0, 5280, 1593,0 }, - {1258,1258, 0, 0, 40000, 60,0 }, - {1259,1259, 0, 0, 40000, 146,0 }, - {1260,1260, 29, 0, 40000, 300,0 }, - {1261,1261, 65, 0, 40000, 2040,0 }, - {1262,1262, 0, 0, 626, 240,0 }, - {1263,1263, 25, 0, 626, 226,0 }, - {1264,1264, 83, 0, 180, 80,0 }, - {1265,1265, 32, 0, 260, 140,0 }, - {1266,1266, 60, 0, 40000, 0,0 }, - {1267,1267, 36, 0, 286, 40,0 }, - {1268,1268, 27, 0, 573, 80,0 }, - {1269,1269, 31, 0, 693, 106,0 }, - {1270,1270, 21, 0, 500, 146,0 }, - {1270,1270, 26, 0, 493, 140,0 }, - {1270,1270, 28, 0, 500, 146,0 }, - {1271,1271, 60, 0, 2420, 1080,0 }, - {1270,1270, 32, 0, 413, 126,0 }, - {1272,1272, 60, 0, 806, 300,0 }, - {1273,1273, 96, 0, 1146, 493,0 }, - {1274,1274, 72, 0, 1246, 586,0 }, - {1275,1275, 79, 0, 286, 106,0 }, - {1276,1276, 69, 0, 1193, 1046,0 }, - {1277,1277, 71, 0, 340, 93,0 }, - {1278,1278, 22, 0, 1880, 653,0 }, - {1279,1279, 55, 0, 246, 120,0 }, - {1279,1279, 48, 0, 286, 133,0 }, - {1280,1280, 0, 0, 40, 0,0 }, - {1281,1281, 49, 2, 40, 0,0 }, - {1282,1282, 73, 0, 166, 33,0 }, - {1282,1282, 68, 0, 166, 33,0 }, - {1282,1282, 61, 0, 200, 40,0 }, - {1283,1283, 0, 0, 40, 0,0 }, - {1284,1284, 0, 0, 40000, 100,0 }, - {1285,1285, 0, 0, 40000, 60,0 }, - {1286,1286, 0, 0, 40000, 0,0 }, - {1287,1287, 0, 0, 10460, 153,0 }, - {1288,1289, 0, 1, 40000, 0,0 }, - {1290,1290, 0, 0, 40000, 0,0 }, - {1291,1292, 36, 1, 353, 153,0 }, - {1293,1293, 69, 0, 1206, 1060,0 }, - {1294,1294, 0, 0, 40000, 0,0 }, - {1295,1295, 0, 0, 40000, 73,0 }, - {1296,1296, 0, 0, 40000, 0,0 }, - {1297,1297, 22, 0, 1880, 653,0 }, - {1298,1298, 0, 0, 40000, 73,0 }, - {1299,1299, 0, 0, 3913, 420,0 }, - {1300,1300, 0, 0, 9233, 240,0 }, - {1301,1301, 0, 0, 4660, 1573,0 }, - {1302,1302, 0, 0, 1166, 400,0 }, - {1303,1303, 0, 0, 40000, 126,0 }, - {1304,1304, 0, 0, 40000, 93,0 }, - {1305,1305, 0, 0, 40000, 93,0 }, - {1306,1306, 0, 0, 40000, 553,0 }, - {1307,1307, 0, 0, 40000, 660,0 }, - {1308,1308, 0, 0, 40000, 73,0 }, - {1309,1309, 0, 0, 40000, 146,0 }, - {1310,1310, 0, 0, 40000, 146,0 }, - {1311,1311, 0, 0, 4026, 100,0 }, - {1312,1312, 0, 0, 18226, 100,0 }, - {1313,1313, 0, 0, 40000, 0,0 }, - {1314,1314, 0, 0, 40000, 73,0 }, - {1315,1315, 0, 0, 40000, 140,0 }, - {1316,1316, 0, 0, 40000, 393,0 }, - {1317,1317, 0, 0, 40000, 406,0 }, - {1318,1318, 0, 0, 40000, 373,0 }, - {1319,1319, 0, 0, 40000, 0,0 }, - {1320,1320, 0, 0, 40000, 360,0 }, - {1321,1321, 0, 0, 1060, 380,0 }, - {1322,1322, 0, 0, 40000, 66,0 }, - {1323,1323, 0, 0, 40000, 66,0 }, - {1324,1324, 0, 0, 40000, 86,0 }, - {1325,1325, 0, 0, 40000, 73,0 }, - { 260, 260, 0, 0, 40000, 80,0 }, - {1326,1326, 0, 0, 40000, 80,0 }, - {1327,1327, 0, 0, 40000, 73,0 }, - {1328,1328, 0, 0, 40000, 73,0 }, - {1329,1329, 0, 0, 40000, 153,0 }, - {1330,1330, 0, 0, 40000, 153,0 }, - {1331,1331, 0, 0, 40000, 146,0 }, - {1332,1332, 0, 0, 40000, 146,0 }, - {1333,1333, 0, 0, 40000, 73,0 }, - {1334,1334, 0, 0, 40000, 153,0 }, - {1335,1335, 0, 0, 40000, 233,0 }, - {1336,1336, 0, 0, 40000, 400,0 }, - {1337,1337, 0, 0, 40000, 1373,0 }, - {1338,1338, 0, 0, 40000, 193,0 }, - {1339,1339, 0, 0, 40000, 1273,0 }, - {1340,1340, 0, 0, 40000, 186,0 }, - {1341,1341, 0, 0, 40000, 86,0 }, - {1342,1342, 0, 0, 7440, 2473,0 }, - {1343,1343, 0, 0, 40000, 160,0 }, - {1344,1344, 0, 0, 8966, 406,0 }, - {1345,1345, 0, 0, 40000, 1353,0 }, - {1346,1346, 0, 0, 14180, 4406,0 }, - { 378, 378, 84, 0, 1333, 460,0 }, - {1347,1347, 24, 0, 1893, 633,0 }, - {1348,1348, 44, 0, 206, 86,0 }, - {1349,1349, 40, 0, 586, 140,0 }, - {1350,1350, 60, 0, 1026, 320,0 }, - {1351,1351, 0, 0, 6560, 33,0 }, - {1352,1352, 0, 0, 7373, 2453,0 }, - {1353,1353, 0, 0, 4660, 1573,0 }, - {1354,1354, 0, 0, 40000, 346,0 }, - {1355,1355, 0, 0, 7126, 86,0 }, - {1356,1356, 0, 0, 40000, 213,0 }, - {1357,1357, 0, 0, 1180, 340,0 }, - {1358,1358, 0, 0, 3893, 1466,0 }, - {1359,1359, 0, 0, 2053, 1173,0 }, - {1360,1360, 0, 0, 40000, 200,0 }, - {1361,1361, 0, 0, 40000, 353,0 }, - {1362,1362, 0, 0, 40000, 273,0 }, - {1363,1363, 0, 0, 40000, 433,0 }, - {1364,1364, 0, 0, 1940, 426,0 }, - {1365,1365, 0, 0, 40000, 80,0 }, - {1366,1366, 0, 0, 40000, 106,0 }, - {1367,1367, 0, 0, 40000, 60,0 }, - {1368,1368, 0, 0, 40000, 140,0 }, - {1369,1369, 0, 0, 40000, 93,0 }, - {1370,1370, 0, 0, 40000, 73,0 }, - {1371,1371, 0, 0, 40000, 73,0 }, - {1372,1372, 0, 0, 40000, 93,0 }, - {1373,1373, 0, 0, 40000, 73,0 }, - {1374,1374, 0, 0, 40000, 80,0 }, - {1375,1375, 0, 0, 40000, 746,0 }, - {1376,1376, 0, 0, 2360, 813,0 }, - {1377,1377, 0, 0, 340, 146,0 }, - {1378,1378, 35, 0, 713, 273,0 }, - {1379,1379, 49, 0, 173, 93,0 }, - {1377,1377, 48, 0, 286, 126,0 }, - {1380,1380, 58, 0, 173, 100,0 }, - {1377,1377, 60, 0, 286, 133,0 }, - {1381,1381, 47, 0, 973, 360,0 }, - {1382,1382, 60, 0, 146, 86,0 }, - {1381,1381, 49, 0, 966, 333,0 }, - {1383,1383, 72, 0, 506, 206,0 }, - {1381,1381, 51, 0, 953, 340,0 }, - {1384,1384, 84, 0, 1340, 480,0 }, - {1381,1381, 54, 0, 986, 360,0 }, - {1381,1381, 57, 0, 980, 346,0 }, - {1385,1385, 72, 0, 1573, 440,0 }, - {1381,1381, 60, 0, 953, 340,0 }, - {1386,1386, 36, 0, 2673, 900,0 }, - {1387,1387, 93, 0, 233, 106,0 }, - {1388,1388, 72, 0, 966, 353,0 }, - {1389,1389, 84, 0, 1366, 473,0 }, - {1390,1390, 36, 0, 1326, 446,0 }, - {1391,1391, 64, 0, 220, 86,0 }, - {1392,1392, 68, 0, 126, 220,0 }, - {1393,1393, 0, 0, 4513, 640,0 }, - {1394,1394, 0, 0, 40000, 353,0 }, - {1395,1395, 0, 0, 40000, 73,0 }, - {1396,1396, 0, 0, 2040, 380,0 }, - {1397,1397, 0, 0, 40000, 240,0 }, - {1398,1398, 0, 0, 3246, 753,0 }, - {1399,1399, 0, 0, 40000, 66,0 }, - {1400,1400, 0, 0, 40000, 0,0 }, - {1401,1401, 0, 0, 40000, 0,0 }, - {1402,1402, 0, 0, 7720, 1260,0 }, - {1403,1403, 0, 0, 213, 6420,0 }, - {1404,1404, 0, 0, 40000, 66,0 }, - {1405,1405, 0, 0, 40000, 73,0 }, - {1406,1406, 0, 0, 40000, 93,0 }, - {1407,1407, 0, 0, 1606, 640,0 }, - {1408,1408, 0, 0, 15486, 1580,0 }, - {1409,1409, 0, 0, 40000, 353,0 }, - {1410,1410, 0, 0, 40000, 2066,0 }, - {1411,1411, 0, 0, 40000, 0,0 }, - {1412,1412, 0, 0, 15453, 73,0 }, - {1413,1413, 0, 0, 3726, 1240,0 }, - {1414,1414, 0, 0, 40000, 86,0 }, - {1415,1415, 0, 0, 40000, 200,0 }, - {1416,1416, 0, 0, 40000, 53,0 }, - {1417,1417, 0, 0, 40000, 73,0 }, - {1418,1418, 0, 0, 40000, 66,0 }, - {1419,1419, 0, 0, 40000, 26,0 }, - {1420,1420, 0, 0, 40000, 53,0 }, - {1421,1421, 0, 0, 40000, 40,0 }, - {1422,1422, 0, 0, 40000, 126,0 }, - {1423,1423, 0, 0, 40000, 0,0 }, - {1424,1424, 0, 0, 13653, 0,0 }, - {1425,1425, 0, 0, 12533, 1953,0 }, - {1426,1426, 0, 0, 973, 1280,0 }, - {1427,1427, 0, 0, 40000, 426,0 }, - {1428,1428, 0, 0, 40000, 53,0 }, - {1429,1429, 0, 0, 40000, 66,0 }, - {1430,1430, 0, 0, 526, 840,0 }, - {1431,1431, 0, 0, 286, 1293,0 }, - {1432,1432, 0, 0, 14726, 4920,0 }, - {1433,1433, 0, 0, 5233, 633,0 }, - {1434,1434, 0, 0, 13226, 2500,0 }, - { 740, 740, 0, 0, 513, 200,0 }, - {1435,1435, 0, 0, 40000, 5666,0 }, - { 739, 739, 48, 0, 213, 20,0 }, - { 500, 500, 55, 0, 100, 0,0 }, - { 740, 740, 60, 0, 226, 113,0 }, - { 500, 500, 41, 0, 106, 0,0 }, - {1436,1436, 84, 0, 160, 26,0 }, - {1437,1437, 84, 0, 386, 493,0 }, - { 500, 500, 48, 0, 100, 0,0 }, - {1438,1438, 15, 0, 340, 140,0 }, - { 752, 752, 49, 0, 173, 20,0 }, - {1438,1438, 16, 0, 346, 146,0 }, - {1438,1438, 12, 0, 340, 140,0 }, - { 740, 740, 55, 0, 220, 113,0 }, - { 752, 752, 18, 0, 206, 20,0 }, - { 752, 752, 15, 0, 200, 20,0 }, - { 752, 752, 17, 0, 206, 20,0 }, - {1439,1440, 0, 4, 40000, 0,0 }, - {1441,1442, 0, 4, 7360, 200,0 }, - {1443,1444, 0, 4, 11840, 320,0 }, - {1445,1446, 0, 4, 9920, 326,0 }, - {1447,1448, 0, 4, 10213, 0,0 }, - {1449,1450, 0, 4, 7440, 2486,0 }, - { 181,1451, 0, 4, 2360, 733,0 }, - {1452,1453, 0, 4, 9260, 240,0 }, - {1454,1455, 0, 4, 40000, 0,0 }, - {1456,1457, 0, 4, 660, 126,0 }, - {1458,1459, 0, 4, 40000, 66,0 }, - { 190,1460, 0, 4, 40000, 60,0 }, - { 192,1461, 0, 4, 40000, 73,0 }, - {1462,1463, 0, 4, 40000, 353,0 }, - {1464,1465, 0, 4, 40000, 353,0 }, - {1466,1467, 0, 4, 40000, 66,0 }, - {1468,1469, 0, 4, 40000, 46,0 }, - { 35,1470, 0, 4, 40000, 46,0 }, - { 36,1471, 0, 4, 320, 0,0 }, - {1472,1473, 0, 4, 320, 0,0 }, - {1474,1475, 0, 4, 7986, 93,0 }, - { 39,1476, 0, 4, 1053, 226,0 }, - {1477,1476, 0, 4, 1060, 226,0 }, - {1478,1479, 0, 4, 40000, 453,0 }, - { 50,1480, 0, 4, 40000, 400,0 }, - {1481,1482, 0, 4, 40000, 133,0 }, - {1483,1484, 0, 4, 40000, 0,0 }, - {1485,1486, 0, 4, 40000, 226,0 }, - { 55,1487, 0, 4, 40000, 100,0 }, - {1488,1489, 0, 4, 40000, 93,0 }, - {1490,1491, 0, 4, 40000, 73,0 }, - {1492,1493, 0, 4, 40000, 73,0 }, - {1494,1495, 0, 4, 40000, 73,0 }, - {1496,1497, 0, 4, 40000, 80,0 }, - {1496,1498, 0, 4, 40000, 73,0 }, - {1499,1500, 0, 4, 40000, 66,0 }, - {1501,1502, 0, 4, 40000, 146,0 }, - {1503,1504, 0, 4, 40000, 93,0 }, - {1505,1506, 0, 4, 40000, 73,0 }, - { 86,1507, 0, 4, 40000, 80,0 }, - {1508,1509, 0, 4, 40000, 0,0 }, - {1510,1511, 0, 4, 40000, 60,0 }, - {1512,1513, 0, 4, 40000, 0,0 }, - {1514,1515, 0, 4, 40000, 0,0 }, - {1516,1517, 0, 4, 40000, 773,0 }, - {1518,1519, 0, 4, 5346, 2973,0 }, - {1520,1521, 0, 4, 40000, 406,0 }, - {1522,1523, 0, 4, 9080, 360,0 }, - {1524,1525, 0, 4, 40000, 1200,0 }, - {1526,1527, 0, 4, 40000, 800,0 }, - {1528,1529, 0, 4, 40000, 960,0 }, - { 111,1530, 0, 4, 1200, 433,0 }, - {1531,1532, 0, 4, 226, 386,0 }, - { 115,1533, 0, 4, 2433, 0,0 }, - {1534,1535, 0, 4, 1873, 646,0 }, - {1536,1537, 0, 4, 3013, 53,0 }, - {1538,1539, 0, 4, 1560, 720,0 }, - {1540, 339, 0, 6, 6, 0,0 }, - {1541, 339, 0, 6, 6, 0,0 }, - {1542,1543, 0, 4, 993, 93,0 }, - {1544,1545, 0, 4, 293, 86,0 }, - {1546,1547, 0, 4, 40000, 153,0 }, - { 364, 365, 44, 4, 120, 0,0 }, - { 129,1548, 48, 4, 173, 0,0 }, - { 367, 368, 58, 4, 173, 0,0 }, - { 129,1549, 60, 4, 173, 0,0 }, - {1550,1551, 48, 4, 520, 200,0 }, - { 132,1552, 43, 4, 173, 0,0 }, - {1550,1551, 49, 4, 520, 200,0 }, - {1553,1554, 43, 4, 160, 80,0 }, - {1550,1551, 51, 4, 513, 0,0 }, - { 134,1555, 43, 4, 1733, 0,0 }, - {1550,1551, 54, 4, 506, 0,0 }, - {1550,1551, 57, 4, 506, 0,0 }, - { 380, 381, 72, 4, 1580, 0,0 }, - {1550,1551, 60, 4, 520, 0,0 }, - {1556,1557, 70, 4, 826, 306,0 }, - { 374, 375, 60, 4, 973, 0,0 }, - {1558,1559, 36, 4, 1233, 0,0 }, - {1560,1561, 65, 4, 293, 133,0 }, - {1562,1563, 84, 4, 1360, 0,0 }, - {1564,1565, 59, 4, 380, 0,0 }, - {1566,1567, 84, 4, 1593, 566,0 }, - {1568,1569, 35, 4, 1353, 473,0 }, - {1570,1571, 44, 4, 413, 0,0 }, - {1572,1573, 67, 4, 246, 0,0 }, - {1574,1575, 66, 4, 293, 0,0 }, - { 145,1576, 59, 4, 146, 0,0 }, - {1577,1578, 51, 4, 360, 0,0 }, - {1579,1580, 45, 4, 246, 0,0 }, - {1581,1582, 71, 4, 433, 0,0 }, - { 149,1583, 60, 4, 280, 0,0 }, - {1584,1585, 58, 4, 173, 0,0 }, - {1586,1587, 53, 4, 173, 0,0 }, - { 397,1588, 64, 4, 220, 80,0 }, - {1589,1590, 71, 4, 106, 53,0 }, - {1591,1592, 61, 4, 1000, 340,0 }, - {1593,1594, 61, 4, 1000, 340,0 }, - { 391, 392, 48, 4, 160, 46,0 }, - { 391, 393, 48, 4, 380, 60,0 }, - {1595,1596, 69, 4, 120, 0,0 }, - { 159,1597, 68, 4, 120, 0,0 }, - { 159,1597, 63, 4, 140, 0,0 }, - {1598,1599, 74, 4, 893, 273,0 }, - {1600,1601, 60, 4, 1013, 306,0 }, - {1602,1603, 80, 4, 220, 0,0 }, - {1604,1605, 64, 4, 1366, 0,0 }, - {1606,1607, 69, 4, 120, 73,0 }, - { 398, 399, 55, 4, 1540, 193,0 }, - {1608,1609, 75, 4, 1573, 0,0 }, - {1610,1611, 68, 4, 120, 0,0 }, - {1612,1613, 48, 4, 360, 0,0 }, - {1614,1615, 53, 4, 606, 0,0 }, - {1616,1616, 0, 0, 40000, 1586,0 }, - {1617,1617, 0, 0, 40000, 1226,0 }, - {1618,1618, 0, 0, 4546, 766,0 }, - {1619,1619, 0, 0, 40000, 420,0 }, - {1620,1620, 0, 0, 40000, 1573,0 }, - {1621,1621, 0, 0, 3326, 806,0 }, - {1622,1622, 0, 0, 40000, 746,0 }, - {1623,1623, 0, 0, 40000, 900,0 }, - {1624,1624, 0, 0, 12166, 1573,0 }, - {1625,1625, 0, 0, 40000, 80,0 }, - {1626,1626, 0, 0, 40000, 80,0 }, - {1627,1627, 0, 0, 40000, 80,0 }, - {1628,1628, 0, 0, 40000, 2713,0 }, - {1629,1629, 0, 0, 40000, 86,0 }, - {1630,1630, 0, 0, 40000, 80,0 }, - {1631,1631, 0, 0, 40000, 80,0 }, - {1632,1632, 0, 0, 40000, 813,0 }, - {1633,1633, 0, 0, 40000, 80,0 }, - {1634,1634, 0, 0, 40000, 80,0 }, - {1635,1635, 0, 0, 40000, 80,0 }, - {1636,1636, 0, 0, 40000, 193,0 }, - {1637,1637, 0, 0, 2920, 733,0 }, - {1638,1638, 0, 0, 40000, 373,0 }, - {1639,1639, 0, 0, 2286, 226,0 }, - {1640,1640, 0, 0, 40000, 226,0 }, - {1641,1641, 0, 0, 40000, 226,0 }, - {1642,1642, 0, 0, 40000, 433,0 }, - {1643,1643, 0, 0, 40000, 813,0 }, - {1644,1644, 0, 0, 40000, 80,0 }, - {1645,1645, 0, 0, 40000, 80,0 }, - {1646,1646, 0, 0, 40000, 80,0 }, - {1647,1647, 0, 0, 40000, 80,0 }, - {1648,1648, 0, 0, 40000, 80,0 }, - {1649,1649, 0, 0, 40000, 80,0 }, - {1650,1650, 0, 0, 40000, 146,0 }, - {1651,1651, 0, 0, 40000, 1280,0 }, - {1652,1652, 0, 0, 40000, 513,0 }, - {1653,1653, 0, 0, 40000, 313,0 }, - {1654,1654, 0, 0, 40000, 773,0 }, - {1655,1655, 0, 0, 7400, 2480,0 }, - {1656,1656, 0, 0, 3760, 1253,0 }, - {1657,1657, 0, 0, 40000, 380,0 }, - {1658,1658, 0, 0, 40000, 333,0 }, - {1659,1659, 0, 0, 40000, 2926,0 }, - {1660,1660, 0, 0, 40000, 5666,0 }, - {1661,1661, 0, 0, 40000, 1613,0 }, - {1662,1662, 0, 0, 3746, 1273,0 }, - {1663,1663, 0, 0, 13653, 0,0 }, - {1664,1664, 0, 0, 4640, 1553,0 }, - {1665,1665, 0, 0, 40000, 680,0 }, - {1666,1666, 0, 0, 6393, 426,0 }, - {1667,1667, 0, 0, 40000, 713,0 }, - {1668,1668, 12, 0, 166, 20,0 }, - {1669,1669, 48, 0, 460, 193,0 }, - { 736, 736, 52, 0, 286, 20,0 }, - {1670,1670, 48, 0, 506, 200,0 }, - {1670,1670, 36, 0, 713, 260,0 }, - { 377, 377, 84, 0, 386, 493,0 }, - { 730, 730, 95, 0, 1886, 653,0 }, - {1669,1669, 84, 0, 386, 166,0 }, - { 755, 755, 20, 0, 633, 240,0 }, - { 755, 755, 22, 0, 626, 240,0 }, - { 755, 755, 24, 0, 633, 246,0 }, - {1671,1671, 0, 0, 2233, 220,0 }, - {1672,1672, 0, 0, 2233, 240,0 }, - {1673,1673, 0, 0, 2233, 206,0 }, - {1674,1674, 0, 0, 2126, 173,0 }, - {1675,1675, 0, 0, 7473, 73,0 }, - {1676,1676, 0, 0, 40000, 0,0 }, - {1677,1677, 0, 0, 3493, 193,0 }, - {1678,1678, 0, 0, 1746, 73,0 }, - {1679,1679, 0, 0, 1013, 400,0 }, - {1680,1680, 0, 0, 3473, 1560,0 }, - {1681,1681, 0, 0, 1073, 40,0 }, - {1682,1682, 0, 0, 40000, 380,0 }, - {1683,1683, 0, 0, 1166, 400,0 }, - {1684,1684, 0, 0, 606, 146,0 }, - {1685,1685, 0, 0, 4553, 1486,0 }, - {1686,1686, 0, 0, 1126, 80,0 }, - {1687,1687, 0, 0, 40000, 73,0 }, - {1688,1688, 0, 0, 40000, 60,0 }, - {1689,1689, 0, 0, 40000, 66,0 }, - {1690,1690, 0, 0, 40000, 73,0 }, - {1691,1691, 0, 0, 40000, 73,0 }, - {1692,1692, 0, 0, 40000, 73,0 }, - {1693,1693, 0, 0, 40000, 73,0 }, - {1694,1694, 0, 0, 6380, 53,0 }, - {1695,1695, 0, 0, 6380, 60,0 }, - {1696,1696, 0, 0, 40000, 53,0 }, - {1697,1697, 0, 0, 40000, 0,0 }, - {1698,1698, 0, 0, 1880, 80,0 }, - {1699,1699, 0, 0, 40000, 60,0 }, - {1700,1700, 0, 0, 40000, 60,0 }, - {1701,1701, 0, 0, 1460, 80,0 }, - {1702,1702, 0, 0, 40000, 73,0 }, - {1703,1703, 0, 0, 40000, 0,0 }, - {1704,1704, 0, 0, 40000, 146,0 }, - {1705,1705, 0, 0, 40000, 66,0 }, - {1706,1706, 0, 0, 40000, 73,0 }, - {1707,1707, 0, 0, 40000, 160,0 }, - {1708,1708, 0, 0, 40000, 73,0 }, - {1709,1709, 0, 0, 40000, 193,0 }, - {1710,1710, 0, 0, 3740, 1260,0 }, - {1711,1711, 0, 0, 40000, 180,0 }, - {1712,1712, 0, 0, 40000, 173,0 }, - {1713,1713, 0, 0, 40000, 113,0 }, - {1714,1714, 0, 0, 40000, 86,0 }, - {1715,1715, 0, 0, 1853, 633,0 }, - {1716,1716, 0, 0, 40000, 0,0 }, - {1717,1717, 0, 0, 1066, 306,0 }, - {1718,1718, 0, 0, 40000, 86,0 }, - {1719,1719, 0, 0, 40000, 586,0 }, - {1720,1720, 0, 0, 40000, 86,0 }, - {1721,1721, 0, 0, 40000, 93,0 }, - {1722,1722, 0, 0, 40000, 373,0 }, - {1723,1723, 0, 0, 40000, 113,0 }, - {1724,1724, 0, 0, 40000, 353,0 }, - {1725,1725, 0, 0, 420, 73,0 }, - {1726,1726, 0, 0, 40000, 66,0 }, - {1727,1727, 0, 0, 40000, 53,0 }, - {1728,1728, 0, 0, 40000, 66,0 }, - {1729,1729, 0, 0, 40000, 100,0 }, - {1730,1730, 0, 0, 40000, 93,0 }, - {1731,1731, 0, 0, 40000, 0,0 }, - {1732,1732, 0, 0, 40000, 73,0 }, - {1733,1733, 0, 0, 40000, 80,0 }, - {1734,1734, 0, 0, 40000, 80,0 }, - {1735,1735, 0, 0, 40000, 80,0 }, - {1736,1736, 0, 0, 40000, 80,0 }, - {1737,1737, 0, 0, 40000, 80,0 }, - {1738,1738, 0, 0, 40000, 73,0 }, - {1739,1739, 0, 0, 40000, 73,0 }, - {1740,1740, 0, 0, 40000, 106,0 }, - {1741,1741, 0, 0, 40000, 73,0 }, - {1742,1742, 0, 0, 40000, 73,0 }, - {1743,1743, 0, 0, 40000, 80,0 }, - {1744,1744, 0, 0, 40000, 0,0 }, - {1745,1745, 0, 0, 40000, 80,0 }, - {1746,1746, 0, 0, 40000, 66,0 }, - {1747,1747, 0, 0, 40000, 73,0 }, - {1748,1748, 0, 0, 40000, 0,0 }, - {1749,1749, 0, 0, 40000, 80,0 }, - {1750,1750, 0, 0, 40000, 66,0 }, - {1751,1751, 0, 0, 40000, 73,0 }, - {1752,1752, 0, 0, 40000, 80,0 }, - {1753,1753, 0, 0, 40000, 33,0 }, - {1754,1754, 0, 0, 40000, 0,0 }, - {1755,1755, 0, 0, 40000, 266,0 }, - {1756,1756, 0, 0, 40000, 160,0 }, - {1757,1757, 0, 0, 40000, 93,0 }, - {1758,1758, 0, 0, 40000, 660,0 }, - {1759,1759, 0, 0, 40000, 1453,0 }, - {1760,1760, 0, 0, 40000, 660,0 }, - {1761,1761, 0, 0, 40000, 120,0 }, - {1762,1762, 0, 0, 40000, 140,0 }, - {1763,1763, 0, 0, 9820, 393,0 }, - {1764,1764, 0, 0, 40000, 73,0 }, - {1765,1765, 0, 0, 3620, 1166,0 }, - {1766,1766, 0, 0, 40000, 0,0 }, - {1767,1767, 0, 0, 40000, 0,0 }, - {1768,1768, 0, 0, 40000, 813,0 }, - {1769,1769, 0, 0, 40000, 0,0 }, - {1770,1770, 0, 0, 40000, 2386,0 }, - {1771,1771, 0, 0, 4380, 400,0 }, - {1772,1772, 0, 0, 853, 0,0 }, - {1773,1773, 0, 0, 3700, 93,0 }, - {1774,1774, 0, 0, 1580, 300,0 }, - {1775,1775, 0, 0, 453, 140,0 }, - {1776,1776, 0, 0, 40000, 66,0 }, - {1777,1777, 0, 0, 40000, 73,0 }, - {1778,1778, 0, 0, 40000, 206,0 }, - {1779,1779, 0, 0, 4646, 1560,0 }, - {1780,1780, 0, 0, 353, 146,0 }, - {1781,1781, 0, 0, 1300, 400,0 }, - {1782,1782, 0, 0, 4593, 1546,0 }, - {1783,1783, 0, 0, 613, 226,0 }, - {1784,1784, 0, 0, 626, 233,0 }, - {1785,1785, 0, 0, 3020, 66,0 }, - {1786,1786, 0, 0, 1093, 186,0 }, - {1787,1787, 0, 0, 6053, 1240,0 }, - {1788,1788, 0, 0, 633, 126,0 }, - {1789,1789, 0, 0, 40000, 66,0 }, - {1790,1790, 0, 0, 40000, 73,0 }, - {1791,1791, 0, 0, 40000, 1253,0 }, - {1792,1792, 0, 0, 626, 246,0 }, - {1793,1793, 48, 0, 293, 120,0 }, - {1794,1794, 48, 0, 100, 0,0 }, - {1795,1795, 60, 0, 240, 133,0 }, - {1796,1796, 60, 0, 160, 66,0 }, - {1797,1797, 70, 0, 140, 33,0 }, - {1798,1798, 51, 0, 526, 206,0 }, - {1799,1799, 60, 0, 173, 93,0 }, - {1798,1798, 54, 0, 520, 200,0 }, - {1800,1800, 60, 0, 153, 80,0 }, - {1798,1798, 56, 0, 520, 206,0 }, - {1801,1801, 60, 0, 673, 206,0 }, - {1798,1798, 61, 0, 506, 200,0 }, - {1798,1798, 63, 0, 513, 206,0 }, - {1802,1802, 48, 0, 673, 200,0 }, - {1798,1798, 68, 0, 440, 180,0 }, - {1803,1803, 60, 0, 1873, 653,0 }, - {1804,1804, 60, 0, 673, 200,0 }, - {1805,1805, 66, 0, 306, 120,0 }, - {1806,1806, 60, 0, 673, 200,0 }, - { 379, 379, 59, 0, 173, 93,0 }, - {1802,1802, 64, 0, 673, 206,0 }, - {1807,1807, 48, 0, 1006, 20,0 }, - {1808,1808, 56, 0, 120, 40,0 }, - {1809,1809, 53, 0, 286, 133,0 }, - {1810,1810, 65, 0, 106, 0,0 }, - {1811,1811, 49, 0, 293, 133,0 }, - {1811,1811, 43, 0, 293, 133,0 }, - { 386, 386, 65, 0, 1013, 673,0 }, - { 386, 386, 60, 0, 1000, 660,0 }, - {1812,1812, 70, 0, 260, 113,0 }, - {1812,1812, 65, 0, 306, 120,0 }, - {1813,1813, 60, 0, 246, 106,0 }, - {1814,1814, 60, 0, 193, 120,0 }, - {1815,1815, 56, 0, 206, 13,0 }, - {1816,1816, 53, 0, 433, 73,0 }, - {1817,1817, 60, 0, 220, 113,0 }, - {1818,1818, 48, 0, 300, 66,0 }, - {1819,1819, 69, 0, 126, 0,0 }, - { 328, 328, 67, 0, 140, 93,0 }, - { 328, 328, 62, 0, 153, 100,0 }, - {1820,1820, 65, 0, 433, 100,0 }, - {1821,1821, 60, 0, 426, 100,0 }, - {1822,1822, 63, 0, 113, 46,0 }, - {1823,1823, 63, 0, 1866, 653,0 }, - {1824,1824, 67, 0, 273, 60,0 }, - {1825,1825, 60, 0, 973, 360,0 }, - {1825,1825, 72, 0, 806, 273,0 }, - { 401, 401, 62, 0, 46, 0,0 }, - {1826,1826, 48, 0, 126, 66,0 }, - {1827,1827, 53, 0, 980, 353,0 }, - {1828,1828, 60, 0, 293, 133,0 }, - {1829,1829, 60, 0, 160, 20,0 }, - {1830,1830, 60, 0, 126, 86,0 }, - {1831,1831, 60, 0, 173, 93,0 }, - {1832,1832, 0, 0, 40000, 106,0 }, - {1833,1833, 0, 0, 3780, 73,0 }, - {1834,1834, 0, 0, 3820, 1666,0 }, - {1835,1835, 0, 0, 40000, 73,0 }, - {1836,1836, 0, 0, 40000, 333,0 }, - {1837,1837, 0, 0, 40000, 220,0 }, - {1838,1838, 0, 0, 40000, 0,0 }, - {1839,1839, 0, 0, 40000, 53,0 }, - {1840,1840, 0, 0, 40000, 60,0 }, - {1841,1841, 0, 0, 5913, 2306,0 }, - {1842,1842, 0, 0, 7713, 2466,0 }, - { 525, 525, 0, 0, 4660, 660,0 }, - {1843,1843, 0, 0, 40000, 313,0 }, - {1844,1844, 0, 0, 40000, 0,0 }, - {1845,1845, 0, 0, 40000, 0,0 }, - {1846,1846, 0, 0, 1246, 453,0 }, - {1847,1847, 0, 0, 9600, 1580,0 }, - {1848,1848, 0, 0, 40000, 106,0 }, - {1849,1849, 0, 0, 2040, 400,0 }, - {1850,1850, 0, 0, 40000, 73,0 }, - {1851,1851, 0, 0, 4220, 620,0 }, - {1852,1852, 0, 0, 40000, 0,0 }, - {1853,1853, 0, 0, 40000, 433,0 }, - {1854,1854, 0, 0, 40000, 66,0 }, - {1855,1855, 0, 0, 40000, 46,0 }, - {1856,1856, 0, 0, 40000, 240,0 }, - {1857,1857, 0, 0, 40000, 313,0 }, - {1858,1858, 0, 0, 40000, 26,0 }, - {1859,1859, 0, 0, 40000, 0,0 }, - {1860,1860, 0, 0, 40000, 73,0 }, - {1861,1861, 0, 0, 6940, 66,0 }, - {1862,1862, 0, 0, 40000, 0,0 }, - {1863,1863, 0, 0, 40000, 60,0 }, - {1864,1864, 0, 0, 8140, 1440,0 }, - {1865,1865, 0, 0, 40000, 0,0 }, - {1866,1866, 0, 0, 40000, 613,0 }, - {1867,1867, 0, 0, 40000, 0,0 }, - {1868,1868, 0, 0, 633, 233,0 }, - {1869,1869, 0, 0, 40000, 226,0 }, - {1870,1870, 0, 0, 2280, 746,0 }, - {1871,1871, 0, 0, 1940, 633,0 }, - {1872,1872, 0, 0, 4220, 620,0 }, - {1873,1873, 0, 0, 40000, 133,0 }, - {1874,1874, 41, 0, 380, 153,0 }, - {1875,1875, 70, 0, 106, 0,0 }, - {1876,1876, 60, 0, 380, 206,0 }, - {1877,1877, 80, 0, 100, 0,0 }, - {1878,1878, 84, 0, 120, 0,0 }, - {1879,1879, 72, 0, 500, 433,0 }, - {1880,1880, 84, 0, 860, 553,0 }, - { 128, 128, 70, 0, 106, 0,0 }, - { 132, 132, 60, 0, 146, 86,0 }, - {1881,1882, 0, 4, 40000, 260,0 }, - {1883,1883, 0, 0, 40000, 0,0 }, - {1884,1885, 0, 4, 40000, 73,0 }, - {1886,1887, 0, 4, 40000, 86,0 }, - {1888,1889, 0, 4, 40000, 73,0 }, - {1890,1890, 0, 0, 40000, 300,0 }, - {1891,1891, 0, 0, 40000, 693,0 }, - {1892,1892, 0, 0, 40000, 586,0 }, - {1893,1893, 0, 0, 40000, 286,0 }, - {1894,1894, 0, 0, 1620, 773,0 }, - {1895,1895, 0, 0, 40000, 0,0 }, - {1896,1896, 0, 0, 40000, 193,0 }, - {1897,1897, 0, 0, 1873, 820,0 }, - {1898,1898, 0, 0, 4520, 753,0 }, - {1899,1899, 0, 0, 40000, 0,0 }, - {1900,1900, 0, 0, 40000, 220,0 }, - {1901,1901, 0, 0, 40000, 133,0 }, - {1902,1902, 0, 0, 40000, 73,0 }, - {1903,1903, 0, 0, 40000, 0,0 }, - {1904,1904, 0, 0, 7326, 2420,0 }, - {1905,1905, 0, 0, 1186, 446,0 }, - {1906,1906, 0, 0, 40000, 553,0 }, - {1907,1907, 0, 0, 40000, 293,0 }, - {1908,1908, 0, 0, 40000, 586,0 }, - {1909,1909, 0, 0, 2326, 793,0 }, - { 501, 501, 0, 0, 480, 226,0 }, - {1910,1910, 0, 0, 40000, 93,0 }, - {1911,1911, 0, 0, 620, 226,0 }, - {1912,1912, 0, 0, 2373, 800,0 }, - {1913,1913, 0, 0, 40000, 4986,0 }, - {1914,1914, 0, 0, 626, 240,0 }, - { 511, 511, 0, 0, 2326, 800,0 }, - {1915,1915, 0, 0, 340, 146,0 }, - {1910,1910, 60, 0, 40000, 93,0 }, - { 511, 511, 72, 0, 1566, 546,0 }, - {1915,1915, 84, 0, 246, 120,0 }, - {1916,1916, 0, 0, 40000, 0,0 }, - {1917,1917, 0, 0, 2713, 666,0 }, - {1918,1918, 0, 0, 40000, 0,0 }, - {1919,1919, 0, 0, 40000, 46,0 }, - {1920,1920, 0, 0, 40000, 0,0 }, - {1921,1921, 0, 0, 40000, 53,0 }, - {1922,1922, 0, 0, 40000, 33,0 }, - {1923,1923, 0, 0, 2073, 193,0 }, - {1924,1924, 0, 0, 40000, 146,0 }, - {1925,1925, 0, 0, 40000, 100,0 }, - {1926,1926, 0, 0, 40000, 93,0 }, - {1927,1927, 0, 0, 40000, 73,0 }, - {1928,1928, 0, 0, 40000, 540,0 }, - {1929,1929, 0, 0, 40000, 520,0 }, - {1930,1930, 0, 0, 40000, 506,0 }, - {1931,1931, 0, 0, 7406, 200,0 }, - {1932,1932, 0, 0, 5906, 133,0 }, - {1933,1933, 0, 0, 7426, 240,0 }, - {1934,1934, 0, 0, 7426, 240,0 }, - {1935,1935, 0, 0, 40000, 66,0 }, - {1936,1936, 0, 0, 40000, 66,0 }, - {1937,1937, 0, 0, 40000, 53,0 }, - {1938,1938, 0, 0, 40000, 66,0 }, - {1939,1939, 0, 0, 40000, 66,0 }, - {1940,1940, 0, 0, 40000, 53,0 }, - {1941,1941, 0, 0, 40000, 2146,0 }, - {1942,1942, 0, 0, 40000, 1126,0 }, - {1943,1943, 0, 0, 40000, 1020,0 }, - {1944,1944, 0, 0, 40000, 433,0 }, - {1945,1945, 0, 0, 40000, 0,0 }, - {1946,1946, 0, 0, 40000, 140,0 }, - {1947,1947, 0, 0, 4660, 660,0 }, - {1948,1948, 0, 0, 40000, 66,0 }, - {1949,1949, 0, 0, 40000, 4193,0 }, - {1950,1950, 0, 0, 7713, 2466,0 }, - {1951,1951, 0, 0, 40000, 73,0 }, - {1952,1952, 0, 0, 8100, 2093,0 }, - {1953,1953, 0, 0, 40000, 86,0 }, - {1954,1954, 0, 0, 40000, 80,0 }, - {1955,1955, 0, 0, 4113, 1526,0 }, - {1956,1956, 0, 0, 40000, 66,0 }, - {1957,1957, 0, 0, 40000, 100,0 }, - {1958,1958, 0, 0, 40000, 213,0 }, - {1959,1959, 0, 0, 40000, 100,0 }, - {1960,1960, 0, 0, 1186, 100,0 }, - {1961,1961, 0, 0, 40000, 433,0 }, - {1962,1962, 0, 0, 40000, 146,0 }, - {1963,1963, 0, 0, 40000, 400,0 }, - {1964,1964, 0, 0, 40000, 66,0 }, - {1965,1965, 0, 0, 40000, 193,0 }, - {1966,1966, 0, 0, 1153, 100,0 }, - {1967,1967, 0, 0, 4800, 1400,0 }, - {1968,1968, 0, 0, 2906, 713,0 }, - {1969,1969, 0, 0, 40000, 73,0 }, - {1970,1970, 0, 0, 2280, 746,0 }, - {1971,1971, 0, 0, 40000, 66,0 }, - {1972,1972, 0, 0, 40000, 86,0 }, - {1973,1973, 0, 0, 40000, 86,0 }, - {1974,1974, 0, 0, 40000, 66,0 }, - {1975,1975, 0, 0, 40000, 66,0 }, - {1976,1976, 0, 0, 40000, 66,0 }, - {1977,1977, 0, 0, 40000, 46,0 }, - {1978,1978, 0, 0, 40000, 73,0 }, - {1979,1979, 0, 0, 40000, 73,0 }, - {1980,1980, 0, 0, 40000, 66,0 }, - {1981,1981, 0, 0, 40000, 66,0 }, - {1982,1982, 0, 0, 40000, 66,0 }, - {1983,1983, 0, 0, 40000, 73,0 }, - {1984,1984, 0, 0, 40000, 73,0 }, - {1985,1985, 0, 0, 40000, 253,0 }, - {1986,1986, 0, 0, 40000, 126,0 }, - {1987,1987, 0, 0, 40000, 126,0 }, - {1988,1988, 0, 0, 40000, 66,0 }, - {1989,1989, 0, 0, 40000, 66,0 }, - {1990,1990, 0, 0, 40000, 53,0 }, - {1991,1991, 0, 0, 40000, 140,0 }, - {1992,1992, 0, 0, 40000, 40,0 }, - {1993,1993, 0, 0, 40000, 73,0 }, - {1994,1994, 0, 0, 40000, 66,0 }, - {1995,1995, 0, 0, 40000, 73,0 }, - {1996,1996, 0, 0, 40000, 73,0 }, - {1997,1997, 0, 0, 40000, 73,0 }, - {1998,1998, 0, 0, 40000, 73,0 }, - {1999,1999, 0, 0, 40000, 66,0 }, - {2000,2000, 0, 0, 40000, 433,0 }, - {2001,2001, 0, 0, 40000, 433,0 }, - {2002,2002, 0, 0, 2440, 706,0 }, - {2003,2003, 0, 0, 13960, 4800,0 }, - {2004,2004, 0, 0, 7393, 2480,0 }, - {2005,2005, 0, 0, 7220, 2073,0 }, - {2006,2006, 0, 0, 633, 233,0 }, - {2007,2007, 0, 0, 2326, 780,0 }, - {2008,2008, 0, 0, 40000, 73,0 }, - {2009,2009, 0, 0, 40000, 106,0 }, - {2010,2010, 0, 0, 40000, 126,0 }, - {2011,2011, 0, 0, 40000, 386,0 }, - {2012,2012, 0, 0, 40000, 66,0 }, - {2013,2013, 0, 0, 6893, 1273,0 }, - {2014,2014, 0, 0, 2546, 633,0 }, - {2015,2015, 0, 0, 206, 106,0 }, - {2016,2016, 0, 0, 213, 113,0 }, - {2017,2017, 0, 0, 360, 140,0 }, - {2018,2018, 0, 0, 1013, 193,0 }, - {2019,2019, 0, 0, 266, 66,0 }, - {2020,2020, 0, 0, 1880, 660,0 }, - {2021,2021, 0, 0, 286, 206,0 }, - {2022,2022, 0, 0, 3706, 1353,0 }, - {2023,2023, 0, 0, 1106, 380,0 }, - {2024,2024, 0, 0, 13220, 2466,0 }, - {2025,2025, 0, 0, 333, 26,0 }, - {2026,2026, 0, 0, 7346, 2440,0 }, - {2027,2027, 0, 0, 1273, 453,0 }, - { 352, 352, 51, 2, 6, 0,0 }, - {2028,2028, 35, 0, 700, 253,0 }, - {2028,2028, 36, 0, 706, 266,0 }, - {2029,2029, 47, 0, 100, 0,0 }, - {2030,2030, 38, 0, 346, 140,0 }, - {2019,2019, 39, 0, 220, 106,0 }, - {2031,2031, 45, 0, 286, 133,0 }, - { 492, 492, 41, 0, 1040, 406,0 }, - {2032,2032, 42, 0, 220, 106,0 }, - {2033,2033, 44, 0, 500, 193,0 }, - { 492, 492, 48, 0, 833, 346,0 }, - {2034,2034, 46, 0, 1866, 646,0 }, - { 492, 492, 53, 0, 873, 386,0 }, - { 167, 167, 56, 0, 646, 353,0 }, - {2035,2035, 61, 0, 366, 146,0 }, - {2036,2036, 56, 0, 1346, 473,0 }, - {2037,2037, 60, 0, 213, 126,0 }, - { 144, 144, 59, 0, 213, 0,0 }, - {2038,2038, 59, 0, 106, 0,0 }, - { 169, 169, 51, 0, 380, 366,0 }, - { 169, 169, 45, 0, 380, 366,0 }, - {2039,2039, 72, 0, 246, 20,0 }, - {2040,2040, 60, 0, 280, 20,0 }, - {2041,2041, 58, 0, 373, 360,0 }, - {2042,2042, 53, 0, 380, 366,0 }, - {2043,2043, 73, 0, 120, 26,0 }, - { 158, 158, 75, 0, 126, 140,0 }, - {2044,2044, 0, 0, 6786, 1073,0 }, - {2045,2045, 0, 0, 2046, 473,0 }, - {2046,2046, 0, 0, 3746, 1273,0 }, - {2047,2047, 0, 0, 1200, 3086,0 }, - {2048,2048, 0, 0, 1200, 3080,0 }, - {2049,2049, 0, 0, 40000, 2453,0 }, - {2050,2050, 0, 0, 40000, 413,0 }, - {2051,2051, 0, 0, 980, 2553,0 }, - {2052,2052, 0, 0, 40000, 2420,0 }, - {2053,2053, 0, 0, 40000, 2506,0 }, - {2054,2054, 0, 0, 40000, 380,0 }, - {2055,2055, 0, 0, 40000, 660,0 }, - {2056,2056, 0, 0, 40000, 73,0 }, - {2057,2057, 0, 0, 40000, 333,0 }, - {2058,2058, 0, 0, 833, 146,0 }, - {2059,2059, 0, 0, 1686, 620,0 }, - {2060,2060, 0, 0, 40000, 73,0 }, - {2061,2061, 0, 0, 40000, 0,0 }, - {2062,2062, 0, 0, 1873, 633,0 }, - {2063,2063, 0, 0, 40000, 380,0 }, - {2064,2064, 0, 0, 366, 286,0 }, - {2065,2065, 0, 0, 8866, 1366,0 }, - {2066,2066, 0, 0, 40000, 1513,0 }, - {2067,2067, 0, 0, 40000, 333,0 }, - {2068,2068, 0, 0, 9600, 1573,0 }, - {2069,2069, 0, 0, 3293, 746,0 }, - {2070,2070, 0, 0, 40000, 53,0 }, - {2071,2071, 0, 0, 40000, 73,0 }, - {2072,2072, 0, 0, 40000, 73,0 }, - {2073,2073, 0, 0, 40000, 240,0 }, - {2074,2074, 0, 0, 40000, 240,0 }, - {2075,2075, 0, 0, 40000, 140,0 }, - {2076,2076, 0, 0, 40000, 113,0 }, - {2077,2077, 0, 0, 40000, 240,0 }, - {2078,2078, 0, 0, 3613, 1146,0 }, - {2079,2079, 0, 0, 40000, 126,0 }, - {2080,2080, 0, 0, 40000, 0,0 }, - {2081,2081, 0, 0, 40000, 633,0 }, - {2082,2082, 0, 0, 40000, 453,0 }, - {2083,2083, 0, 0, 40000, 1146,0 }, - {2084,2084, 0, 0, 40000, 3600,0 }, - {2085,2085, 0, 0, 40000, 1586,0 }, - {2086,2086, 0, 0, 40000, 1586,0 }, - {2087,2087, 0, 0, 40000, 1586,0 }, - {2088,2088, 0, 0, 40000, 1646,0 }, - {2089,2089, 0, 0, 40000, 1580,0 }, - {2090,2090, 0, 0, 40000, 4393,0 }, - {2091,2091, 0, 0, 40000, 4540,0 }, - {2092,2092, 0, 0, 21373, 6160,0 }, - {2093,2093, 0, 0, 40000, 633,0 }, - {2094,2094, 0, 0, 18420, 6146,0 }, - {2095,2095, 0, 0, 2306, 813,0 }, - {2096,2096, 0, 0, 2813, 333,0 }, - {2097,2097, 0, 0, 3106, 600,0 }, - {2098,2098, 0, 0, 1026, 1580,0 }, - {2099,2099, 0, 0, 1873, 346,0 }, - {2100,2100, 0, 0, 40000, 73,0 }, - {2101,2101, 0, 0, 40000, 73,0 }, - {2102,2102, 0, 0, 1200, 1906,0 }, - {2103,2103, 0, 0, 980, 1313,0 }, - {2104,2104, 0, 0, 200, 20,0 }, - {2105,2105, 0, 0, 640, 253,0 }, - {2106,2106, 0, 0, 3120, 240,0 }, - {2107,2107, 0, 0, 753, 146,0 }, - {2108,2108, 0, 0, 40000, 3060,0 }, - {2109,2109, 0, 0, 40000, 233,0 }, - {2110,2110, 0, 0, 40000, 246,0 }, - {2111,2111, 0, 0, 40000, 240,0 }, - { 752, 752, 60, 0, 173, 20,0 }, - { 755, 755, 12, 0, 626, 240,0 }, - {2112,2112, 89, 0, 113, 0,0 }, - {2113,2113, 89, 0, 700, 266,0 }, - { 755, 755, 14, 0, 626, 240,0 }, - { 755, 755, 16, 0, 626, 246,0 }, - {2114,2114, 84, 0, 1593, 553,0 }, - { 755, 755, 19, 0, 626, 240,0 }, - {2115,2115, 38, 0, 220, 166,0 }, - {2116,2116, 36, 0, 1686, 760,0 }, - { 755, 755, 28, 0, 626, 240,0 }, - { 755, 755, 26, 0, 626, 240,0 }, - { 755, 755, 35, 0, 633, 246,0 }, - { 755, 755, 30, 0, 626, 240,0 }, - {2117,2117, 60, 0, 180, 53,0 }, - {2104,2104, 60, 0, 173, 20,0 }, - {2104,2104, 55, 0, 173, 20,0 }, - { 730, 730, 94, 0, 1886, 660,0 }, - {2118,2118, 0, 0, 1226, 73,0 }, - {2119,2119, 0, 0, 40000, 0,0 }, - {2120,2120, 0, 0, 40000, 146,0 }, - {2121,2121, 0, 0, 40000, 80,0 }, - {2122,2122, 0, 0, 40000, 80,0 }, - {2123,2123, 0, 0, 40000, 0,0 }, - {2124,2124, 0, 0, 40000, 126,0 }, - {2125,2125, 0, 0, 40000, 213,0 }, - {2126,2126, 0, 0, 40000, 80,0 }, - {2127,2127, 0, 0, 40000, 73,0 }, - {2128,2128, 0, 0, 40000, 73,0 }, - {2129,2129, 0, 0, 40000, 73,0 }, - {2130,2130, 0, 0, 40000, 80,0 }, - {2131,2131, 0, 0, 40000, 73,0 }, - {2132,2132, 0, 0, 40000, 73,0 }, - {2133,2133, 0, 0, 40000, 66,0 }, - {2134,2134, 0, 0, 40000, 186,0 }, - {2135,2135, 0, 0, 9966, 426,0 }, - {2136,2136, 0, 0, 40000, 400,0 }, - {2137,2137, 0, 0, 40000, 326,0 }, - {2138,2138, 0, 0, 386, 80,0 }, - {2139,2139, 0, 0, 40000, 246,0 }, - {2140,2140, 0, 0, 3473, 73,0 }, - {2141,2141, 60, 0, 160, 66,0 }, - {2141,2141, 44, 0, 160, 60,0 }, - {2142,2142, 47, 0, 173, 93,0 }, - {2143,2143, 47, 0, 186, 80,0 }, - {2144,2144, 62, 0, 1933, 93,0 }, - {2145,2145, 93, 0, 1146, 473,0 }, - {2146,2146, 50, 0, 286, 93,0 }, - {2145,2145, 40, 0, 2013, 840,0 }, - {2147,2147, 60, 0, 106, 73,0 }, - { 898, 898, 60, 0, 173, 133,0 }, - {2147,2147, 57, 0, 106, 73,0 }, - { 900, 900, 42, 0, 620, 240,0 }, - { 900, 900, 38, 0, 626, 240,0 }, - { 908, 908, 88, 0, 160, 26,0 }, - {2148,2148, 0, 0, 9440, 140,0 }, - {2149,2149, 0, 0, 40000, 73,0 }, - {2150,2150, 0, 0, 4613, 420,0 }, - {2151,2151, 0, 0, 40000, 86,0 }, - {2152,2152, 0, 0, 40000, 406,0 }, - {2153,2153, 0, 0, 40000, 440,0 }, - {2154,2154, 0, 0, 4340, 133,0 }, - {2155,2155, 0, 0, 4460, 706,0 }, - {2156,2156, 0, 0, 40000, 73,0 }, - {2157,2157, 0, 0, 4660, 1573,0 }, - {2158,2158, 0, 0, 966, 333,0 }, - {2159,2159, 0, 0, 1933, 640,0 }, - { 136, 136, 0, 0, 2326, 786,0 }, - { 168, 168, 0, 0, 286, 366,0 }, - { 164, 164, 0, 0, 7373, 2460,0 }, - { 167, 167, 0, 0, 793, 426,0 }, - {2160,2160, 65, 0, 166, 73,0 }, - {2161,2161, 21, 0, 480, 146,0 }, - {2162, 173, 0, 4, 4220, 80,0 }, - {2163,2164, 0, 4, 4640, 3066,0 }, - {2165,2166, 0, 4, 7273, 3920,0 }, - {2167,2168, 0, 4, 3766, 1253,0 }, - {2169,2170, 0, 4, 6266, 2400,0 }, - {2171,2172, 0, 4, 18213, 0,0 }, - {2173,2174, 0, 4, 40000, 713,0 }, - {2175,2174, 0, 4, 40000, 733,0 }, - {2176, 299, 0, 4, 40000, 273,0 }, - {2177,2178, 0, 4, 40000, 66,0 }, - {2179,2180, 0, 4, 40000, 393,0 }, - {2181,2182, 0, 4, 40000, 413,0 }, - {2183,2184, 0, 4, 7406, 200,0 }, - { 127, 127, 65, 0, 226, 120,0 }, - { 127, 127, 72, 0, 180, 100,0 }, - { 364, 365, 52, 4, 120, 0,0 }, - {2185,2186, 60, 4, 173, 0,0 }, - {1550,1551, 47, 4, 520, 0,0 }, - {1556,1557, 76, 4, 833, 0,0 }, - { 374, 375, 84, 4, 813, 0,0 }, - {1564,1565, 83, 4, 220, 0,0 }, - {1568,1569, 24, 4, 1840, 620,0 }, - {1556,1557, 77, 4, 820, 300,0 }, - {1572,1573, 60, 4, 286, 0,0 }, - {1574,1575, 65, 4, 293, 0,0 }, - { 391, 392, 44, 4, 160, 53,0 }, - { 391, 393, 40, 4, 460, 66,0 }, - {1606,1607, 72, 4, 120, 73,0 }, - { 398, 399, 73, 4, 1293, 173,0 }, - {1608,1609, 70, 4, 1580, 0,0 }, - {2187,2187, 0, 0, 40000, 353,0 }, - {2188,2188, 0, 0, 40000, 333,0 }, - {2189,2189, 0, 0, 5913, 2306,0 }, - {2190,2190, 0, 0, 7720, 1260,0 }, - {2191,2191, 0, 0, 213, 6420,0 }, - {2192,2192, 0, 0, 40000, 380,0 }, - {2193,2193, 0, 0, 1153, 760,0 }, - {2194,2194, 0, 0, 40000, 66,0 }, - {2195,2195, 0, 0, 4440, 66,0 }, - {2196,2196, 0, 0, 40000, 73,0 }, - {2197,2197, 0, 0, 40000, 53,0 }, - {2198,2198, 0, 0, 40000, 60,0 }, - {2199,2199, 0, 0, 40000, 60,0 }, - {2200,2200, 0, 0, 8133, 1433,0 }, - { 528, 528, 0, 0, 966, 346,0 }, - {2201,2201, 0, 0, 40000, 126,0 }, - {2202,2202, 0, 0, 286, 1293,0 }, - {2203,2203, 0, 0, 40000, 0,0 }, - {2204,2204, 41, 0, 246, 20,0 }, - {2205,2205, 84, 0, 160, 26,0 }, - {2206,2206, 72, 0, 440, 180,0 }, - { 741, 741, 48, 0, 220, 26,0 }, - {2207,2207, 0, 0, 2126, 173,0 }, - {2208,2208, 0, 0, 40000, 0,0 }, - {2209,2209, 0, 0, 40000, 380,0 }, - {2210,2210, 0, 0, 4553, 1486,0 }, - {2211,2211, 0, 0, 40000, 73,0 }, - {2212,2212, 0, 0, 40000, 73,0 }, - {2213,2213, 0, 0, 1460, 80,0 }, - {2214,2214, 0, 0, 40000, 66,0 }, - {2215,2215, 0, 0, 40000, 186,0 }, - {2216,2216, 0, 0, 40000, 180,0 }, - {2217,2217, 0, 0, 40000, 173,0 }, - {2218,2218, 0, 0, 40000, 113,0 }, - {2219,2219, 0, 0, 40000, 86,0 }, - {2220,2220, 0, 0, 40000, 373,0 }, - {2221,2221, 0, 0, 40000, 113,0 }, - {2222,2222, 0, 0, 40000, 353,0 }, - {2223,2223, 0, 0, 40000, 66,0 }, - {2224,2224, 0, 0, 40000, 53,0 }, - {2225,2225, 0, 0, 40000, 66,0 }, - {2226,2226, 0, 0, 40000, 100,0 }, - {2227,2227, 0, 0, 40000, 73,0 }, - {2228,2228, 0, 0, 40000, 73,0 }, - {2229,2229, 0, 0, 40000, 66,0 }, - {2230,2230, 0, 0, 40000, 66,0 }, - {2231,2231, 0, 0, 40000, 80,0 }, - {2232,2232, 0, 0, 40000, 66,0 }, - {2233,2233, 0, 0, 40000, 80,0 }, - {2234,2234, 0, 0, 40000, 660,0 }, - {2235,2235, 0, 0, 40000, 120,0 }, - {2236,2236, 0, 0, 9820, 393,0 }, - {2237,2237, 0, 0, 40000, 73,0 }, - {2238,2238, 0, 0, 3620, 1166,0 }, - {2239,2239, 0, 0, 40000, 0,0 }, - {2240,2240, 0, 0, 40000, 0,0 }, - {2241,2241, 0, 0, 3020, 66,0 }, - {2242,2242, 0, 0, 6053, 1240,0 }, - {2243,2243, 0, 0, 633, 126,0 }, - {2244,2244, 0, 0, 40000, 66,0 }, - {2245,2245, 0, 0, 40000, 73,0 }, - {2246,2246, 0, 0, 626, 246,0 }, - {2247,2247, 60, 0, 173, 93,0 }, - {2248,2248, 60, 0, 673, 206,0 }, - {2249,2249, 48, 0, 673, 200,0 }, - {2250,2250, 60, 0, 1873, 653,0 }, - {2251,2251, 60, 0, 673, 200,0 }, - {2252,2252, 66, 0, 306, 120,0 }, - {2253,2253, 60, 0, 673, 200,0 }, - {2249,2249, 64, 0, 673, 206,0 }, - {2254,2254, 60, 0, 246, 106,0 }, - {2255,2255, 60, 0, 193, 120,0 }, - {2256,2256, 56, 0, 206, 13,0 }, - {2257,2257, 53, 0, 433, 73,0 }, - {2258,2258, 60, 0, 220, 113,0 }, - {2259,2259, 48, 0, 300, 66,0 }, - {2260,2260, 67, 0, 273, 60,0 }, - {2261,2261, 60, 0, 973, 360,0 }, - {2261,2261, 72, 0, 806, 273,0 }, - {2262,2262, 60, 0, 173, 93,0 }, - {2263,2263, 0, 0, 2493, 866,0 }, - {2264,2264, 24, 0, 173, 93,0 }, - {2265,2265, 36, 0, 140, 0,0 }, - { 343, 343, 36, 0, 146, 80,0 }, - { 347, 347, 0, 0, 353, 133,0 }, - { 347, 347, 12, 0, 420, 146,0 }, - {2266,2266, 12, 0, 346, 100,0 }, - {2267,2267, 24, 0, 106, 46,0 }, - {2267,2267, 36, 0, 100, 0,0 }, - {2268,2268, 0, 0, 1006, 293,0 }, - {2266,2266, 24, 0, 293, 93,0 }, - {2269,2269, 88, 0, 1106, 120,0 }, - {2270,2270, 88, 0, 666, 120,0 }, - {2271,2271, 13, 0, 760, 360,0 }, - { 351, 351, 0, 0, 966, 346,0 }, - {2271,2271, 15, 0, 760, 420,0 }, - {2272,2272, 0, 0, 4513, 640,0 }, - {2273,2273, 0, 0, 15486, 1580,0 }, - {2274,2274, 0, 0, 6940, 66,0 }, - {2275,2275, 0, 0, 6866, 2380,0 }, - {2276,2276, 0, 0, 7613, 1566,0 }, - {2277,2277, 0, 0, 1186, 420,0 }, - {2278,2278, 0, 0, 1166, 400,0 }, - {2279,2279, 0, 0, 40000, 2940,0 }, - {2280,2280, 0, 0, 40000, 0,0 }, - {2281,2281, 0, 0, 18226, 786,0 }, - {2282,2282, 0, 0, 40000, 0,0 }, - {2283,2283, 0, 0, 713, 200,0 }, - {2284,2284, 0, 0, 40000, 126,0 }, - {2285,2285, 0, 0, 40000, 353,0 }, - {2286,2286, 0, 0, 40000, 333,0 }, - {2287,2287, 0, 0, 40000, 0,0 }, - {2288,2288, 0, 0, 40000, 0,0 }, - {2289,2289, 0, 0, 40000, 0,0 }, - {2290,2290, 0, 0, 40000, 0,0 }, - {2291,2291, 0, 0, 40000, 73,0 }, - {2292,2292, 0, 0, 40000, 66,0 }, - {2293,2293, 0, 0, 15893, 153,0 }, - {2294,2294, 0, 0, 40000, 253,0 }, - {2295,2295, 0, 0, 2813, 333,0 }, - {2296,2296, 0, 0, 40000, 3920,0 }, - {2297,2297, 79, 0, 113, 0,0 }, - {2297,2297, 72, 0, 126, 140,0 }, - {2298,2298, 72, 0, 100, 26,0 }, - {2298,2298, 79, 0, 100, 0,0 }, - { 554, 554, 60, 0, 400, 126,0 }, - {2299,2299, 72, 0, 793, 173,0 }, - {2300,2300, 84, 0, 226, 66,0 }, - { 555, 555, 66, 0, 113, 0,0 }, - {2301,2302, 35, 4, 2333, 800,0 }, - {2303,2304, 52, 4, 120, 0,0 }, - {2305,1548, 48, 4, 173, 0,0 }, - {1595,1595, 58, 0, 146, 166,0 }, - {2305,1548, 60, 4, 173, 0,0 }, - {2306,2307, 47, 4, 1893, 700,0 }, - {2306,2307, 43, 4, 1953, 740,0 }, - {2306,2307, 49, 4, 1880, 686,0 }, - {2306,2307, 51, 4, 1886, 706,0 }, - {2306,2307, 54, 4, 1906, 720,0 }, - {2306,2307, 57, 4, 1900, 720,0 }, - {2306,2307, 72, 4, 1593, 606,0 }, - {2306,2307, 60, 4, 1900, 720,0 }, - {2306,2307, 76, 4, 1593, 606,0 }, - {2306,2307, 84, 4, 1593, 613,0 }, - {2306,2307, 36, 4, 2386, 920,0 }, - {1560,2308, 65, 4, 293, 213,0 }, - {2309,2310, 84, 4, 1373, 306,0 }, - {1564,1564, 83, 0, 220, 113,0 }, - { 380, 381, 84, 4, 1593, 566,0 }, - {1568,1568, 24, 0, 1833, 613,0 }, - {2306,2307, 77, 4, 1593, 606,0 }, - {2311,2312, 60, 4, 286, 0,0 }, - {2313,2314, 65, 4, 513, 0,0 }, - {2315,2315, 59, 0, 106, 0,0 }, - {2316,2316, 51, 0, 386, 373,0 }, - {1612,1612, 45, 0, 393, 380,0 }, - {2317,2317, 71, 0, 446, 180,0 }, - {2318,2318, 60, 0, 280, 20,0 }, - {2319,2319, 58, 0, 393, 373,0 }, - {2320,2320, 53, 0, 393, 380,0 }, - { 397, 397, 64, 0, 220, 86,0 }, - {2321,2321, 71, 0, 106, 46,0 }, - {2322,2322, 61, 0, 986, 340,0 }, - {2323,2323, 61, 0, 1893, 633,0 }, - {2324, 392, 44, 4, 166, 46,0 }, - {2324, 393, 40, 4, 460, 60,0 }, - {1595,1595, 69, 0, 126, 140,0 }, - {1595,1595, 68, 0, 126, 140,0 }, - {1595,1595, 63, 0, 146, 166,0 }, - {2325,2326, 74, 4, 380, 106,0 }, - {2327,2328, 60, 4, 1026, 333,0 }, - {2329,2330, 80, 4, 40000, 0,0 }, - {2331,2332, 64, 4, 1900, 640,0 }, - { 397, 397, 72, 0, 193, 80,0 }, - {2333,2334, 78, 4, 820, 0,0 }, - {1608,1609, 82, 4, 1580, 0,0 }, - {2315,2315, 48, 0, 106, 0,0 }, - {2316,2316, 53, 0, 386, 373,0 }, - {2335,2335, 0, 0, 3586, 1133,0 }, - {2336,2337, 0, 4, 1186, 420,0 }, - {2338,2339, 0, 4, 40000, 320,0 }, - {2340,2340, 0, 0, 8826, 1346,0 }, - {2341,2341, 0, 0, 3440, 753,0 }, - {2342,2342, 0, 0, 40000, 360,0 }, - {2343,2343, 0, 0, 40000, 413,0 }, - {2344,2345, 0, 4, 40000, 60,0 }, - {2346,2346, 0, 0, 40000, 60,0 }, - {2347,2348, 0, 4, 40000, 126,0 }, - {2349,2350, 0, 4, 40000, 73,0 }, - {2351,2352, 0, 4, 40000, 73,0 }, - {2353,2354, 0, 4, 40000, 86,0 }, - {2355,2356, 0, 4, 40000, 453,0 }, - {2357,2357, 14, 0, 186, 20,0 }, - {2358,2358, 35, 0, 246, 73,0 }, - {2357,2357, 19, 0, 166, 26,0 }, - {2359,2359, 43, 0, 286, 133,0 }, - {2360,2360, 41, 0, 300, 113,0 }, - {2360,2360, 43, 0, 253, 106,0 }, - {2360,2360, 45, 0, 240, 100,0 }, - {2360,2360, 47, 0, 240, 100,0 }, - {2361,2362, 0, 4, 14720, 333,0 }, - {2363,2363, 0, 0, 7373, 1246,0 }, - {2364,2364, 0, 0, 4900, 233,0 }, - {2365,2365, 0, 0, 5106, 606,0 }, - {2366,2366, 0, 0, 1333, 153,0 }, - {2367,2367, 0, 0, 2093, 840,0 }, - {2368,2368, 0, 0, 3700, 226,0 }, - {2369,2369, 0, 0, 3546, 0,0 }, - {2370,2370, 0, 0, 4606, 420,0 }, - {2371,2371, 0, 0, 14366, 606,0 }, - {2372,2372, 0, 0, 40000, 426,0 }, - {2373,2373, 0, 0, 3700, 200,0 }, - {2374,2374, 0, 0, 880, 440,0 }, - {2375,2375, 0, 0, 4660, 660,0 }, - {2376,2376, 0, 0, 3600, 1153,0 }, - {2377,2377, 0, 0, 40000, 73,0 }, - {2378,2378, 0, 0, 40000, 53,0 }, - {2379,2379, 0, 0, 40000, 333,0 }, - {2380,2380, 0, 0, 40000, 73,0 }, - {2381,2381, 0, 0, 40000, 73,0 }, - {2382,2382, 0, 0, 40000, 66,0 }, - {2383,2383, 0, 0, 40000, 73,0 }, - {2384,2384, 0, 0, 40000, 73,0 }, - {2385,2385, 0, 0, 840, 226,0 }, - {2386,2386, 0, 0, 2093, 86,0 }, - {2387,2387, 0, 0, 906, 73,0 }, - { 402, 402, 0, 0, 273, 60,0 }, - {2388,2388, 0, 0, 40000, 820,0 }, - {2389,2389, 0, 0, 4740, 93,0 }, - {2390,2390, 0, 0, 706, 106,0 }, - {2391,2391, 0, 0, 40000, 0,0 }, - {2392,2392, 0, 0, 3840, 2306,0 }, - {2393,2393, 0, 0, 3400, 493,0 }, - {2394,2394, 0, 0, 40000, 53,0 }, - {2395,2395, 0, 0, 40000, 133,0 }, - {2396,2397, 0, 4, 3093, 1400,0 }, - {2398,2398, 0, 0, 1080, 580,0 }, - {2399,2400, 0, 4, 2220, 400,0 }, - {2401,2401, 0, 0, 40000, 193,0 }, - {2402,2402, 0, 0, 40000, 60,0 }, - {2403,2404, 0, 4, 40000, 146,0 }, - {2405,2406, 0, 4, 40000, 133,0 }, - {2407,2408, 0, 4, 40000, 66,0 }, - {2409,2409, 0, 0, 40000, 0,0 }, - {2410,2410, 0, 0, 40000, 73,0 }, - {2411,2411, 0, 0, 40000, 66,0 }, - {2412,2413, 0, 4, 40000, 153,0 }, - {2414,2414, 0, 0, 40000, 126,0 }, - {2415,2416, 0, 4, 40000, 466,0 }, - {2417,2418, 0, 4, 40000, 113,0 }, - {2419,2420, 0, 4, 1280, 73,0 }, - {2421,2422, 0, 4, 1113, 146,0 }, - {2423,2424, 0, 4, 3660, 113,0 }, - {2425,2426, 0, 4, 40000, 80,0 }, - {2427,2427, 33, 0, 300, 246,0 }, - {2428,2429, 38, 4, 53, 0,0 }, - {2430,2430, 38, 0, 106, 0,0 }, - {2431,2431, 38, 0, 340, 20,0 }, - {2432,2432, 40, 0, 73, 0,0 }, - {2433,2434, 41, 4, 300, 0,0 }, - {2435,2435, 0, 0, 133, 73,0 }, - {2435,2435, 41, 0, 133, 73,0 }, - {2360,2360, 48, 0, 240, 100,0 }, - {2436,2436, 17, 0, 4620, 1553,0 }, - {2360,2360, 50, 0, 240, 100,0 }, - {2435,2435, 45, 0, 126, 66,0 }, - {2437,2437,254, 2, 6, 0,0 }, - {2438,2438, 60, 0, 226, 93,0 }, - {2439,2439, 56, 0, 233, 93,0 }, - {2440,2440, 60, 0, 140, 66,0 }, - {2440,2440, 55, 0, 140, 60,0 }, - {2441,2441, 63, 0, 286, 126,0 }, - {2442,2442, 57, 0, 173, 93,0 }, - {2443,2443, 0, 0, 40000, 280,0 }, - {2444,2444, 0, 0, 40000, 0,0 }, - {2445,2445, 0, 0, 40000, 746,0 }, - {2446,2446, 0, 0, 40000, 353,0 }, - {2447,2447, 0, 0, 40000, 1173,0 }, - {2448,2448, 0, 0, 40000, 146,0 }, - {2449,2449, 0, 0, 40000, 1160,0 }, - {2450,2450, 0, 0, 40000, 353,0 }, - {2451,2451, 0, 0, 18313, 6046,0 }, - {2452,2452, 0, 0, 1206, 420,0 }, - { 752, 752, 55, 0, 173, 20,0 }, - {2453,2453, 0, 0, 2860, 806,0 }, - {2454,2454, 0, 0, 2506, 126,0 }, - {2455,2455, 0, 0, 520, 93,0 }, - {2456,2456, 0, 0, 1420, 160,0 }, - {2457,2457, 0, 0, 40000, 53,0 }, - {2458,2458, 0, 0, 9106, 100,0 }, - {2459,2459, 0, 0, 3706, 100,0 }, - {2460,2460, 0, 0, 17933, 100,0 }, - {2461,2461, 0, 0, 40000, 0,0 }, - {2462,2462, 0, 0, 40000, 66,0 }, - {2463,2463, 0, 0, 40000, 0,0 }, - { 884, 884, 0, 0, 306, 73,0 }, - { 884, 884, 28, 0, 306, 73,0 }, - {2464,2464, 29, 0, 226, 93,0 }, - { 886, 886, 31, 0, 113, 0,0 }, - { 360, 360, 32, 0, 133, 40,0 }, - { 361, 361, 33, 0, 286, 80,0 }, - {2453,2453, 34, 0, 2873, 813,0 }, - { 888, 888, 29, 0, 246, 46,0 }, - { 886, 886, 55, 0, 100, 0,0 }, - { 890, 890, 48, 0, 240, 60,0 }, - { 884, 884, 58, 0, 146, 26,0 }, - {2465,2465, 45, 0, 173, 93,0 }, - {2465,2465, 43, 0, 173, 93,0 }, - {2466,2466, 73, 0, 1633, 86,0 }, - {2467,2467, 72, 0, 866, 553,0 }, - {2468,2468, 76, 0, 1380, 0,0 }, - {2467,2467, 84, 0, 873, 560,0 }, - {2468,2468, 36, 0, 1933, 880,0 }, - {2469,2469, 65, 0, 300, 120,0 }, - {2470,2470, 83, 0, 193, 86,0 }, - {2471,2471, 50, 0, 966, 126,0 }, - {2468,2468, 77, 0, 1373, 620,0 }, - { 897, 897, 55, 0, 126, 40,0 }, - {2472,2472, 60, 0, 180, 140,0 }, - { 897, 897, 50, 0, 126, 40,0 }, - {2473,2473, 42, 0, 633, 240,0 }, - {2473,2473, 46, 0, 513, 200,0 }, - {2474,2474, 71, 0, 433, 180,0 }, - {2474,2474, 60, 0, 513, 206,0 }, - {2455,2455, 58, 0, 220, 46,0 }, - {2455,2455, 53, 0, 286, 60,0 }, - {2475,2475, 91, 0, 186, 100,0 }, - {2476,2476, 61, 0, 226, 26,0 }, - {2477,2477, 61, 0, 886, 73,0 }, - {2478,2478, 44, 0, 120, 73,0 }, - {2479,2479, 40, 0, 933, 73,0 }, - {2480,2480, 69, 0, 146, 33,0 }, - { 361, 361, 68, 0, 153, 26,0 }, - { 361, 361, 63, 0, 180, 26,0 }, - {2481,2481, 74, 0, 153, 73,0 }, - {2482,2482, 60, 0, 280, 100,0 }, - { 908, 908, 80, 0, 160, 26,0 }, - {2483,2483, 64, 0, 986, 353,0 }, - {2483,2483, 73, 0, 813, 306,0 }, - {2483,2483, 70, 0, 820, 306,0 }, - { 886, 886, 68, 0, 93, 0,0 }, - { 886, 886, 48, 0, 106, 0,0 }, - {2484,2484, 0, 0, 40000, 0,0 }, - {2485,2485, 0, 0, 3226, 753,0 }, - {2486,2486, 0, 0, 1773, 553,0 }, - {2487,2487, 0, 0, 7473, 2460,0 }, - {2488,2488, 0, 0, 40000, 0,0 }, - {2489,2489, 0, 0, 40000, 353,0 }, - {2490,2490, 0, 0, 40000, 206,0 }, - {2491,2491, 0, 0, 40000, 86,0 }, - {2492,2492, 0, 0, 4740, 86,0 }, - {2493,2493, 0, 0, 6193, 193,0 }, - {2494,2494, 0, 0, 6200, 240,0 }, - {2495,2495, 0, 0, 40000, 0,0 }, - {2496,2496, 0, 0, 1586, 73,0 }, - {2497,2497, 0, 0, 560, 73,0 }, - {2498,2498, 0, 0, 40000, 480,0 }, - {2499,2499, 0, 0, 40000, 80,0 }, - {2500,2500, 0, 0, 40000, 66,0 }, - {2501,2501, 0, 0, 40000, 380,0 }, - {2502,2502, 0, 0, 280, 100,0 }, - {2503,2503, 0, 0, 6193, 233,0 }, - {2504,2504, 0, 0, 40000, 380,0 }, - {2505,2505, 0, 0, 40000, 0,0 }, - {2506,2506, 0, 0, 40000, 380,0 }, - {2507,2507, 0, 0, 40000, 200,0 }, - {2508,2508, 0, 0, 40000, 320,0 }, - {2509,2509, 0, 0, 40000, 126,0 }, - {2510,2510, 0, 0, 40000, 293,0 }, - {2511,2511, 0, 0, 40000, 0,0 }, - {2512,2512, 0, 0, 40000, 40,0 }, - {2513,2513, 0, 0, 40000, 106,0 }, - {2514,2514, 0, 0, 3846, 73,0 }, - {2515,2515, 0, 0, 40000, 0,0 }, - {2516,2516, 0, 0, 40000, 73,0 }, - {2517,2517, 0, 0, 40000, 533,0 }, - {2518,2518, 0, 0, 40000, 1020,0 }, - {2519,2519, 0, 0, 40000, 73,0 }, - {2520,2520, 0, 0, 40000, 53,0 }, - {2521,2521, 0, 0, 6153, 1433,0 }, - {2522,2522, 0, 0, 18813, 773,0 }, - {2523,2523, 0, 0, 40000, 433,0 }, - {2524,2524, 0, 0, 40000, 0,0 }, - {2525,2525, 0, 0, 40000, 133,0 }, - {2526,2526, 0, 0, 4486, 73,0 }, - { 346, 346, 30, 0, 540, 33,0 }, - { 346, 346, 31, 0, 406, 20,0 }, - { 346, 346, 32, 0, 406, 20,0 }, - { 346, 346, 33, 0, 406, 73,0 }, - { 346, 346, 34, 0, 406, 20,0 }, - { 346, 346, 35, 0, 406, 20,0 }, - { 346, 346, 37, 0, 406, 73,0 }, - { 346, 346, 39, 0, 406, 73,0 }, - { 346, 346, 41, 0, 406, 20,0 }, - { 346, 346, 43, 0, 306, 20,0 }, - { 346, 346, 45, 0, 306, 20,0 }, - { 346, 346, 47, 0, 306, 20,0 }, - { 346, 346, 48, 0, 306, 20,0 }, - { 346, 346, 49, 0, 306, 20,0 }, - { 512, 512, 84, 0, 353, 466,0 }, - {2206,2206, 84, 0, 440, 180,0 }, - {2527,2527, 55, 0, 100, 0,0 }, - {2528,2528, 36, 0, 400, 160,0 }, - {2529,2529, 38, 0, 313, 226,0 }, - {2530,2530, 60, 0, 286, 133,0 }, - {2531,2531, 38, 0, 200, 100,0 }, - {2532,2532, 17, 0, 6186, 240,0 }, - {2532,2532, 18, 0, 6186, 240,0 }, - {2532,2532, 19, 0, 6193, 233,0 }, - {2532,2532, 20, 0, 6193, 193,0 }, - {2532,2532, 21, 0, 6193, 193,0 }, - {2532,2532, 22, 0, 6193, 193,0 }, - {2532,2532, 23, 0, 6193, 193,0 }, - {2532,2532, 24, 0, 6193, 193,0 }, - {2532,2532, 25, 0, 6193, 193,0 }, - {2532,2532, 26, 0, 6193, 193,0 }, - {2532,2532, 27, 0, 6193, 253,0 }, - {2532,2532, 28, 0, 6193, 246,0 }, - {2532,2532, 29, 0, 6193, 246,0 }, - {2533,2533, 84, 0, 433, 180,0 }, - {2534,2534, 48, 0, 280, 93,0 }, - {2535,2535, 65, 0, 1166, 360,0 }, - {2536,2536, 65, 0, 1853, 633,0 }, - {2537,2537, 55, 0, 453, 366,0 }, - {2537,2537, 41, 0, 540, 433,0 }, - { 346, 346, 63, 0, 240, 66,0 }, - { 346, 346, 55, 0, 240, 66,0 }, - {2538,2538, 55, 0, 2586, 200,0 }, - {2538,2538, 53, 0, 2586, 200,0 }, - {2534,2534, 50, 0, 280, 93,0 }, - { 506, 506, 84, 0, 693, 566,0 }, - { 506, 506, 74, 0, 693, 560,0 }, - { 504, 504, 84, 0, 1566, 546,0 }, - { 504, 504, 74, 0, 1586, 560,0 }, - {2539,2539, 84, 0, 440, 20,0 }, - {2540,2540, 74, 0, 126, 26,0 }, - {1911,1911, 48, 0, 500, 180,0 }, - {1911,1911, 36, 0, 606, 220,0 }, - {2541,2541, 74, 0, 686, 560,0 }, - {2542,2542, 0, 0, 7313, 13,0 }, - {2543,2543, 0, 0, 40000, 1306,0 }, - {2544,2544, 0, 0, 40000, 0,0 }, - {2545,2545, 0, 0, 4613, 13,0 }, - {2546,2547, 0, 4, 6933, 133,0 }, - {2548,2549, 0, 4, 40000, 86,0 }, - {2550,2550, 0, 0, 9233, 100,0 }, - {2551,2552, 0, 4, 4640, 73,0 }, - {2553,2553, 0, 0, 40000, 73,0 }, - {2554,2554, 0, 0, 40000, 0,0 }, - {2555,2556, 0, 4, 40000, 73,0 }, - {2557,2557, 0, 0, 40000, 60,0 }, - {2558,1467, 0, 4, 40000, 66,0 }, - {2559,2560, 0, 4, 40000, 40,0 }, - {2561,2561, 0, 0, 40000, 186,0 }, - {2562,2562, 0, 0, 4026, 66,0 }, - {2563,2564, 0, 4, 14586, 80,0 }, - {2565,2565, 0, 0, 40000, 0,0 }, - {2566,2567, 0, 4, 40000, 40,0 }, - {2568,2568, 0, 0, 4020, 73,0 }, - {2569,2569, 0, 0, 40000, 0,0 }, - {2570,2570, 0, 0, 40000, 0,0 }, - {2571,2572, 0, 4, 40000, 126,0 }, - {2573,2574, 0, 4, 40000, 100,0 }, - {2575,2575, 0, 0, 40000, 213,0 }, - { 229,2576, 0, 4, 40000, 166,0 }, - {2577,2577, 0, 0, 7366, 53,0 }, - { 239,2578, 0, 4, 40000, 133,0 }, - {2579,2579, 0, 0, 40000, 80,0 }, - {2580,2580, 0, 0, 40000, 140,0 }, - {2581,2582, 0, 4, 16980, 1173,0 }, - {2583,2584, 0, 4, 726, 100,0 }, - {2585,2586, 0, 4, 40000, 73,0 }, - {2587,2588, 0, 4, 40000, 73,0 }, - {2589,2589, 0, 0, 40000, 60,0 }, - {2590,2590, 0, 0, 40000, 80,0 }, - {2591,2592, 0, 4, 40000, 73,0 }, - {2593,2594, 0, 4, 40000, 60,0 }, - {2595,2595, 0, 0, 40000, 66,0 }, - {2596,2597, 0, 4, 40000, 66,0 }, - {2598,2599, 0, 4, 40000, 60,0 }, - {2600,2601, 0, 4, 40000, 173,0 }, - {2602,2602, 0, 0, 40000, 60,0 }, - {2603,2603, 0, 0, 40000, 73,0 }, - {2604,2604, 0, 0, 40000, 93,0 }, - {2605,2606, 0, 4, 40000, 73,0 }, - {2607,2607, 0, 0, 40000, 66,0 }, - {2608,2609, 0, 4, 40000, 66,0 }, - {2610,2610, 0, 0, 40000, 86,0 }, - {2611,2611, 0, 0, 40000, 60,0 }, - {2612,2612, 0, 0, 14286, 73,0 }, - {2613,2613, 0, 0, 40000, 0,0 }, - {2614,2615, 0, 4, 40000, 73,0 }, - {2616,2617, 0, 4, 40000, 66,0 }, - {2618,2619, 0, 4, 133, 0,0 }, - {2620,2621, 0, 4, 40000, 1280,0 }, - {2622,2623, 0, 4, 40000, 160,0 }, - {2624,2625, 0, 4, 40000, 0,0 }, - {2626,2627, 0, 4, 40000, 73,0 }, - {2628,2629, 0, 4, 40000, 0,0 }, - {1516,2630, 0, 4, 1193, 406,0 }, - {2631,2632, 0, 4, 40000, 553,0 }, - {2633,2633, 0, 0, 40000, 40,0 }, - {2634,2635, 0, 4, 40000, 773,0 }, - {2636,2636, 0, 0, 40000, 320,0 }, - {2637,2637, 0, 0, 1880, 73,0 }, - {2638,2639, 0, 4, 486, 0,0 }, - {2640,2641, 0, 4, 17020, 1193,0 }, - {2642,2642, 0, 0, 40000, 720,0 }, - {2643,2644, 0, 4, 1880, 40,0 }, - {2645,2645, 0, 0, 40000, 73,0 }, - {2646,2647, 0, 4, 40000, 46,0 }, - {2648,2648, 0, 0, 2466, 80,0 }, - {2649,2649, 0, 0, 40000, 193,0 }, - {2650,2651, 0, 4, 993, 73,0 }, - {2652,2652, 0, 0, 40000, 220,0 }, - {2653,2654, 0, 4, 40000, 46,0 }, - {2655,2656, 0, 4, 40000, 46,0 }, - {2657,2657, 0, 0, 40000, 66,0 }, - {2658,2658, 35, 0, 626, 20,0 }, - {2659,2659, 35, 0, 306, 26,0 }, - {2660,2660, 52, 0, 126, 26,0 }, - {2661,2661, 60, 0, 286, 20,0 }, - {2662,2662, 58, 0, 113, 0,0 }, - {2663,2663, 60, 0, 380, 20,0 }, - {2664,2664, 50, 0, 1640, 66,0 }, - {2665,2665, 43, 0, 153, 20,0 }, - {2664,2664, 55, 0, 1640, 20,0 }, - {1553,1553, 43, 0, 160, 80,0 }, - {2666,2666, 50, 0, 980, 20,0 }, - {2667,2667, 43, 0, 446, 73,0 }, - {2666,2666, 53, 0, 1000, 80,0 }, - {2666,2666, 57, 0, 700, 73,0 }, - {2668,2668, 72, 0, 773, 13,0 }, - {2666,2666, 60, 0, 686, 20,0 }, - { 373, 373, 76, 0, 826, 20,0 }, - {2669,2669, 84, 0, 713, 20,0 }, - {2670,2670, 42, 0, 1186, 20,0 }, - {2671,2671, 65, 0, 293, 33,0 }, - {2672,2672, 84, 0, 386, 33,0 }, - {2673,2673, 84, 0, 1366, 20,0 }, - {2674,2674, 24, 0, 960, 73,0 }, - { 383, 383, 77, 0, 800, 20,0 }, - {2675,2675, 58, 0, 426, 26,0 }, - {2676,2676, 53, 0, 426, 20,0 }, - {2677,2677, 64, 0, 200, 66,0 }, - {2678,2678, 71, 0, 113, 13,0 }, - {2679,2679, 44, 0, 766, 66,0 }, - {2680,2680, 40, 0, 460, 60,0 }, - {2681,2681, 69, 0, 126, 26,0 }, - {2682,2682, 60, 0, 573, 66,0 }, - {2683,2683, 80, 0, 226, 20,0 }, - {2684,2684, 64, 0, 2693, 20,0 }, - {2685,2685, 72, 0, 120, 66,0 }, - {2686,2686, 70, 0, 820, 20,0 }, - {2687,2687, 48, 0, 173, 20,0 }, - {2688,2688, 53, 0, 980, 33,0 }, - {2689,2690, 0, 4, 40000, 286,0 }, - {2691,2692, 0, 4, 2340, 100,0 }, - {2693,2694, 0, 4, 380, 80,0 }, - {2695,2696, 0, 4, 14793, 73,0 }, - {2697,2698, 0, 4, 40000, 40,0 }, - { 192,2699, 0, 4, 40000, 73,0 }, - {2700,2701, 0, 4, 973, 126,0 }, - {2702,2703, 0, 4, 4666, 106,0 }, - {2704,2705, 0, 4, 40000, 73,0 }, - {2706,2707, 0, 4, 40000, 73,0 }, - {2708,2709, 0, 4, 40000, 73,0 }, - {2710,2711, 0, 4, 2053, 0,0 }, - {2712,1473, 0, 4, 320, 26,0 }, - {2713,2714, 0, 4, 573, 93,0 }, - {2715,2716, 0, 4, 6513, 0,0 }, - {1478,2717, 0, 4, 40000, 146,0 }, - {2718,2719, 0, 4, 40000, 66,0 }, - { 286,2720, 0, 4, 40000, 73,0 }, - {2721,2722, 0, 4, 40000, 86,0 }, - {2723,2724, 0, 4, 40000, 60,0 }, - {2725,2726, 0, 4, 393, 73,0 }, - {2727,2724, 0, 4, 40000, 60,0 }, - {1514,2728, 0, 4, 40000, 180,0 }, - {2729,2730, 0, 4, 40000, 0,0 }, - {2731,2732, 0, 4, 486, 0,0 }, - {2733,2734, 0, 4, 733, 0,0 }, - {2735,2736, 0, 4, 286, 40,0 }, - {2737,2738, 0, 4, 40000, 73,0 }, - {2739,2740, 0, 4, 1326, 746,0 }, - {2741,2742, 0, 4, 1340, 700,0 }, - {2743,2744, 0, 4, 40000, 0,0 }, - {2745,2746, 0, 4, 2046, 0,0 }, - {2747,2747, 35, 0, 386, 166,0 }, - {2748,2748, 60, 0, 493, 193,0 }, - {2749,2749, 43, 0, 126, 66,0 }, - {2750,2750, 0, 0, 3740, 1260,0 }, - {2751,2752, 0, 4, 14846, 353,0 }, - {2753,2754, 0, 4, 10266, 0,0 }, - {2755,2756, 0, 4, 18286, 146,0 }, - {2757,2758, 0, 4, 14520, 333,0 }, - {2759,2760, 0, 4, 14686, 633,0 }, - {2761,2762, 0, 4, 14826, 300,0 }, - {2763,2764, 0, 4, 10493, 0,0 }, - {2765,2766, 0, 4, 40000, 60,0 }, - {2767,2768, 0, 4, 40000, 80,0 }, - {2769,2770, 0, 4, 40000, 80,0 }, - {2771,2772, 0, 4, 40000, 73,0 }, - {2773,2774, 0, 4, 40000, 73,0 }, - {2775,2776, 0, 4, 40000, 80,0 }, - {2777,2778, 0, 4, 40000, 73,0 }, - {2779,2780, 0, 4, 40000, 73,0 }, - {2781,2782, 0, 4, 40000, 66,0 }, - {2783,2784, 0, 4, 7260, 186,0 }, - {2785,2786, 0, 4, 10386, 0,0 }, - {2787,2788, 0, 4, 40000, 246,0 }, - {2789,2790, 0, 4, 9173, 746,0 }, - {2791,2792, 0, 4, 7440, 666,0 }, - {2793,2794, 0, 4, 40000, 0,0 }, - {2795,2796, 0, 4, 40000, 413,0 }, - {2795,2797, 0, 4, 40000, 1506,0 }, - {2798,2799, 0, 4, 40000, 60,0 }, - {2800,2801, 0, 4, 40000, 233,0 }, - {2802,2803, 0, 4, 40000, 80,0 }, - {2804,2805, 0, 4, 40000, 80,0 }, - {2806,2807, 0, 4, 4520, 80,0 }, - {2808,2809, 0, 4, 40000, 73,0 }, - {2810,2811, 0, 4, 1186, 100,0 }, - {2812,2813, 0, 4, 953, 153,0 }, - {2814,2815, 0, 4, 14786, 126,0 }, - {2816,2817, 0, 4, 14800, 193,0 }, - {2818,2819, 0, 4, 14573, 626,0 }, - {2820,2821, 0, 4, 2200, 73,0 }, - {2822,2823, 0, 4, 373, 86,0 }, - {2824,2825, 0, 4, 12780, 200,0 }, - {2826,2827, 0, 4, 40000, 73,0 }, - {2828,2829, 0, 4, 9193, 146,0 }, - {2830,2831, 0, 4, 2540, 326,0 }, - {2832,2833, 0, 4, 6933, 200,0 }, - {2834,2835, 0, 4, 40000, 413,0 }, - {2836,2837, 0, 4, 4826, 1313,0 }, - {2838,2839, 0, 4, 14740, 340,0 }, - {2840,2841, 0, 4, 1886, 653,0 }, - {2842,2843, 0, 4, 5280, 260,0 }, - {2844,2845, 0, 4, 40000, 240,0 }, - {2846,2847, 0, 4, 40000, 240,0 }, - {2848,2849, 0, 4, 40000, 240,0 }, - {2850,2851, 0, 4, 40000, 406,0 }, - {2852,2853, 0, 4, 40000, 406,0 }, - {2854,2855, 0, 4, 40000, 146,0 }, - {2856,2856, 0, 0, 2400, 1126,0 }, - {2857,2857, 0, 0, 2400, 1126,0 }, - {2858,2859, 0, 4, 4613, 73,0 }, - {2860,2861, 0, 4, 40000, 426,0 }, - {2862,2863, 0, 4, 4580, 100,0 }, - {2864,2865, 0, 4, 40000, 80,0 }, - {2866,2867, 0, 4, 5300, 53,0 }, - {2868,2869, 0, 4, 5313, 113,0 }, - {2870,2871, 0, 4, 7080, 186,0 }, - {2872,2873, 0, 4, 4720, 106,0 }, - {2874,2875, 0, 4, 40000, 73,0 }, - {2876,2877, 0, 4, 1640, 0,0 }, - {2878,2879, 0, 4, 7306, 186,0 }, - {2880,2881, 0, 4, 7373, 1246,0 }, - {2882,2883, 0, 4, 4620, 93,0 }, - {2884,2885, 0, 4, 3460, 926,0 }, - {2886,2887, 0, 4, 40000, 73,0 }, - {2888,2888, 0, 0, 18926, 426,0 }, - {2889,2889, 0, 0, 18520, 73,0 }, - {2890,2890, 0, 0, 18473, 73,0 }, - {2891,2892, 0, 4, 40000, 93,0 }, - {2893,2893, 0, 0, 8006, 133,0 }, - {2894,2894, 0, 0, 18533, 66,0 }, - {2895,2895, 0, 0, 14786, 4966,0 }, - {2896,2897, 0, 4, 40000, 80,0 }, - {2898,2899, 0, 4, 40000, 73,0 }, - {2353,2900, 0, 4, 18520, 86,0 }, - {2901,2901, 0, 0, 40000, 0,0 }, - {2902,2903, 0, 4, 40000, 100,0 }, - {2904,2905, 0, 4, 40000, 93,0 }, - {2906,2907, 0, 4, 40000, 73,0 }, - {2908,2909, 0, 4, 10720, 153,0 }, - {2910,2911, 0, 4, 40000, 73,0 }, - {2912,2912, 0, 0, 40000, 40,0 }, - {2913,2914, 0, 4, 8720, 446,0 }, - {2915,2916, 0, 4, 14706, 653,0 }, - {2917,2918, 0, 4, 9213, 426,0 }, - {2919,2920, 0, 4, 9286, 240,0 }, - {2921,2922, 0, 4, 8706, 413,0 }, - {2923,2924, 0, 4, 2233, 346,0 }, - {2925,2926, 0, 4, 2373, 426,0 }, - {2927,2928, 0, 4, 2353, 233,0 }, - {2929,2929, 0, 0, 40000, 140,0 }, - {2930,2931, 0, 4, 40000, 100,0 }, - {2932,2933, 0, 4, 40000, 73,0 }, - {2934,2935, 0, 4, 40000, 80,0 }, - {2936,2937, 0, 4, 40000, 80,0 }, - {2938,2939, 0, 4, 40000, 246,0 }, - {2940,2940, 0, 0, 553, 446,0 }, - {2941,2941, 0, 0, 40000, 193,0 }, - {2942,2943, 0, 4, 1206, 406,0 }, - {2944,2944, 0, 0, 7026, 1553,0 }, - {2945,2945, 0, 0, 3426, 360,0 }, - {2946,2947, 0, 4, 7313, 646,0 }, - {2948,2948, 0, 0, 40000, 386,0 }, - {2949,2949, 0, 0, 1953, 726,0 }, - {2950,2951, 0, 4, 14606, 106,0 }, - {2952,2953, 0, 4, 40000, 1566,0 }, - {2954,2954, 60, 2, 6, 0,0 }, - {2955,2956, 0, 4, 40000, 240,0 }, - {2957,2958, 0, 4, 40000, 80,0 }, - {2959,2960, 0, 4, 40000, 113,0 }, - {2961,2962, 0, 4, 40000, 240,0 }, - {2963,2963, 0, 0, 8506, 680,0 }, - {2964,2964, 0, 0, 40000, 1593,0 }, - {2436,2436, 49, 0, 1873, 633,0 }, - {2357,2357, 61, 0, 113, 20,0 }, - {2357,2357, 56, 0, 113, 26,0 }, - {2357,2357, 58, 0, 113, 26,0 }, - {2357,2357, 49, 0, 126, 26,0 }, - {2357,2357, 44, 0, 126, 26,0 }, - {2965,2965, 0, 0, 40000, 380,0 }, - {2966,2966, 0, 0, 4440, 66,0 }, - {2967,2967, 0, 0, 8133, 1433,0 }, - {2968,2968, 0, 0, 40000, 126,0 }, - {2969,2969, 0, 0, 40000, 0,0 }, - {2970,2970, 84, 0, 160, 26,0 }, - {2971,2971, 72, 0, 440, 180,0 }, - {2972,2972, 0, 0, 8313, 580,0 }, - {2973,2973, 0, 0, 40000, 160,0 }, - {2974,2974, 0, 0, 40000, 3000,0 }, - {2975,2975, 0, 0, 8300, 493,0 }, - {2976,2976, 0, 0, 973, 673,0 }, - {2977,2977, 0, 0, 40000, 73,0 }, - {2978,2978, 0, 0, 40000, 133,0 }, - {2979,2979, 0, 0, 40000, 140,0 }, - {2980,2980, 0, 0, 40000, 346,0 }, - {2981,2981, 0, 0, 40000, 1006,0 }, - {2982,2982, 0, 0, 40000, 966,0 }, - {2983,2983, 0, 0, 40000, 0,0 }, - {2984,2984, 0, 0, 40000, 0,0 }, - {2985,2985, 0, 0, 40000, 66,0 }, - {2986,2986, 0, 0, 40000, 66,0 }, - {2987,2987, 0, 0, 40000, 46,0 }, - {2988,2988, 0, 0, 40000, 533,0 }, - {2989,2989, 0, 0, 2400, 780,0 }, - {2990,2990, 0, 0, 820, 66,0 }, - {2991,2991, 0, 0, 40000, 240,0 }, - {2992,2992, 0, 0, 40000, 220,0 }, - {2993,2993, 0, 0, 40000, 0,0 }, - {2994,2994, 0, 0, 15100, 73,0 }, - {2995,2995, 0, 0, 40000, 200,0 }, - {2996,2996, 0, 0, 2426, 93,0 }, - {2997,2997, 0, 0, 4640, 1553,0 }, - {2998,2998, 0, 0, 40000, 73,0 }, - {2999,2999, 0, 0, 40000, 73,0 }, - {3000,3000, 0, 0, 1133, 633,0 }, - {3001,3001, 0, 0, 40000, 0,0 }, - {3002,3002, 0, 0, 40000, 1006,0 }, - {3003,3003, 0, 0, 4653, 653,0 }, - {3004,3004, 0, 0, 40000, 1000,0 }, - {3005,3005, 0, 0, 40000, 53,0 }, - {3006,3006, 0, 0, 40000, 60,0 }, - {3007,3007, 0, 0, 40000, 0,0 }, - { 350, 350, 0, 0, 513, 200,0 }, - {3008,3008, 0, 0, 213, 106,0 }, - {3009,3009, 0, 0, 280, 126,0 }, - {3010,3010, 0, 0, 1193, 426,0 }, - {3011,3011, 0, 0, 14653, 4906,0 }, - {3012,3012, 0, 0, 1040, 326,0 }, - {3013,3013, 0, 0, 5740, 2326,0 }, - {3014,3014, 0, 0, 40000, 73,0 }, - {3015,3015, 0, 0, 40000, 240,0 }, - { 350, 350, 36, 0, 380, 153,0 }, - { 369, 369, 37, 0, 213, 66,0 }, - {3008,3008, 38, 0, 213, 106,0 }, - { 369, 369, 24, 0, 193, 13,0 }, - {3008,3008, 32, 0, 206, 106,0 }, - { 369, 369, 48, 0, 186, 20,0 }, - {3009,3009, 42, 0, 220, 106,0 }, - { 369, 369, 50, 0, 186, 73,0 }, - { 369, 369, 52, 0, 186, 73,0 }, - { 369, 369, 54, 0, 186, 33,0 }, - { 369, 369, 55, 0, 186, 33,0 }, - { 369, 369, 57, 0, 180, 33,0 }, - {3010,3010, 51, 0, 966, 353,0 }, - { 144, 144, 61, 0, 213, 126,0 }, - {3016,3016, 0, 0, 8340, 520,0 }, - {3016,3016, 63, 0, 6106, 373,0 }, - {3016,3016, 64, 0, 6073, 380,0 }, - {3017,3017, 40, 0, 206, 100,0 }, - {3017,3017, 70, 0, 160, 93,0 }, - {3018,3018, 0, 0, 40000, 73,0 }, - {3019,3019, 0, 0, 40000, 73,0 }, - {3020,3020, 0, 0, 40000, 73,0 }, - {3021,3021, 0, 0, 40000, 73,0 }, - {3022,3022, 38, 0, 246, 33,0 }, - {2441,2441, 57, 0, 286, 126,0 }, - {3023,3023, 63, 0, 146, 126,0 }, - {3024,3024, 74, 0, 280, 73,0 }, - {3025,3025, 74, 0, 453, 100,0 }, - {3026,3026, 60, 0, 666, 33,0 }, - {1439,1440, 0, 0, 13566, 273,0 }, - {1593,1594, 35, 0, 2200, 673,0 }, - {1564,1565, 35, 0, 740, 280,0 }, - {1443,1444, 0, 0, 11886, 333,0 }, - {1481,1482, 0, 0, 40000, 133,0 }, - { 185, 186, 0, 0, 5980, 1540,0 }, - { 235, 237, 0, 0, 3366, 1093,0 }, - { 239, 240, 0, 0, 40000, 133,0 }, - {1477,1476, 0, 0, 40000, 160,0 }, - { 268, 269, 0, 0, 40000, 80,0 }, - { 176, 177, 0, 0, 40000, 0,0 }, - {1490,1491, 0, 0, 40000, 60,0 }, - { 231, 232, 0, 0, 40000, 146,0 }, - { 233, 234, 0, 0, 40000, 433,0 }, - { 254, 255, 0, 0, 40000, 93,0 }, - { 192, 193, 0, 0, 40000, 66,0 }, - { 252, 253, 0, 0, 40000, 73,0 }, - { 248,3027, 0, 0, 40000, 80,0 }, - { 39,1476, 0, 0, 40000, 160,0 }, - { 241, 242, 0, 0, 40000, 146,0 }, - {1508,1509, 0, 0, 40000, 0,0 }, - { 246, 247, 0, 0, 3966, 800,0 }, - { 181,1451, 0, 0, 2153, 640,0 }, - { 209, 210, 0, 0, 4453, 100,0 }, - { 270, 271, 0, 0, 40000, 80,0 }, - { 115,1533, 0, 0, 4260, 1720,0 }, - {1454,1455, 0, 0, 40000, 0,0 }, - { 107, 319, 0, 0, 1266, 413,0 }, - { 46, 238, 0, 0, 6873, 1246,0 }, - { 216, 217, 0, 0, 4046, 100,0 }, - { 272, 273, 0, 0, 40000, 126,0 }, - {1445,3028, 0, 0, 9966, 386,0 }, - { 172, 173, 0, 0, 7340, 100,0 }, - { 174, 175, 0, 0, 6913, 100,0 }, - {1447,3029, 0, 0, 10306, 80,0 }, - {1452,3030, 0, 0, 9240, 240,0 }, - { 183, 184, 0, 0, 586, 253,0 }, - {1456,1457, 0, 0, 1386, 180,0 }, - {1458,1459, 0, 0, 40000, 60,0 }, - { 190,1460, 0, 0, 40000, 46,0 }, - {1462,1463, 0, 0, 40000, 340,0 }, - {1464,1465, 0, 0, 40000, 360,0 }, - { 195, 196, 0, 0, 40000, 66,0 }, - { 197, 198, 0, 0, 40000, 86,0 }, - { 199, 200, 0, 0, 40000, 60,0 }, - { 201, 202, 0, 0, 3713, 100,0 }, - { 203, 204, 0, 0, 14633, 126,0 }, - { 205, 206, 0, 0, 9440, 153,0 }, - { 214, 215, 0, 0, 17020, 100,0 }, - { 218, 219, 0, 0, 14000, 180,0 }, - { 220, 221, 0, 0, 2846, 100,0 }, - {1472,1473, 0, 0, 8066, 66,0 }, - {1474,1475, 0, 0, 8040, 93,0 }, - { 225, 226, 0, 0, 8066, 106,0 }, - { 229, 230, 0, 0, 40000, 160,0 }, - {1478,1479, 0, 0, 40000, 413,0 }, - { 50,1480, 0, 0, 40000, 393,0 }, - {1485,1486, 0, 0, 40000, 226,0 }, - { 258, 259, 0, 0, 40000, 73,0 }, - { 262, 263, 0, 0, 40000, 160,0 }, - { 264, 265, 0, 0, 40000, 160,0 }, - {1494,1495, 0, 0, 40000, 80,0 }, - {1496,1497, 0, 0, 40000, 73,0 }, - { 274, 275, 0, 0, 40000, 100,0 }, - {1499,1500, 0, 0, 40000, 73,0 }, - { 277, 278, 0, 0, 40000, 173,0 }, - { 279, 280, 0, 0, 40000, 160,0 }, - { 281, 282, 0, 0, 40000, 173,0 }, - {1501,1502, 0, 0, 40000, 146,0 }, - { 284, 285, 0, 0, 40000, 66,0 }, - { 286, 287, 0, 0, 40000, 86,0 }, - {1503,1504, 0, 0, 40000, 86,0 }, - {1505,1506, 0, 0, 40000, 73,0 }, - { 289, 290, 0, 0, 40000, 66,0 }, - { 291, 292, 0, 0, 40000, 160,0 }, - { 293, 294, 0, 0, 40000, 200,0 }, - { 86,1507, 0, 0, 40000, 80,0 }, - { 88, 297, 0, 0, 40000, 1346,0 }, - { 298, 299, 0, 0, 40000, 320,0 }, - { 300, 301, 0, 0, 40000, 1273,0 }, - {1514,1515, 0, 0, 40000, 100,0 }, - {1518,1519, 0, 0, 4733, 0,0 }, - {1520,1521, 0, 0, 40000, 440,0 }, - {1524,1525, 0, 0, 40000, 1180,0 }, - {1526,1527, 0, 0, 40000, 746,0 }, - {1528,1529, 0, 0, 40000, 920,0 }, - { 311, 312, 0, 0, 15306, 213,0 }, - { 313, 314, 0, 0, 7280, 340,0 }, - { 315, 316, 0, 0, 3693, 346,0 }, - { 317, 318, 0, 0, 13720, 4033,0 }, - { 108, 320, 0, 0, 40000, 66,0 }, - { 109, 321, 0, 0, 40000, 180,0 }, - { 322, 323, 0, 0, 40000, 73,0 }, - { 111,1530, 0, 0, 4053, 426,0 }, - { 324, 325, 0, 0, 626, 260,0 }, - { 326, 327, 0, 0, 1166, 400,0 }, - {1531,1532, 0, 0, 186, 340,0 }, - {1534,1535, 0, 0, 3240, 440,0 }, - { 330, 331, 0, 0, 1920, 360,0 }, - {1536,1537, 0, 0, 3020, 0,0 }, - {1538,1539, 0, 0, 1660, 846,0 }, - {1541, 339, 0, 0, 9213, 813,0 }, - {1542,1543, 0, 0, 993, 100,0 }, - {1544,3031, 0, 0, 860, 180,0 }, - {1546,3032, 0, 0, 40000, 80,0 }, - { 338, 339, 0, 0, 40000, 200,0 }, - { 340, 341, 0, 0, 40000, 0,0 }, - {1441,1442, 0, 0, 7393, 186,0 }, - { 207, 208, 0, 0, 14373, 126,0 }, - {1466,1467, 0, 0, 40000, 66,0 }, - {1468,1469, 0, 0, 40000, 46,0 }, - { 179, 180, 0, 0, 4080, 346,0 }, - {1449,1450, 0, 0, 8313, 3373,0 }, - { 35,1470, 0, 0, 40000, 0,0 }, - { 36,1471, 0, 0, 8093, 40,0 }, - { 235, 236, 0, 0, 2393, 333,0 }, - {1483,1484, 0, 0, 40000, 0,0 }, - { 55,1487, 0, 0, 40000, 80,0 }, - {1488,1489, 0, 0, 40000, 80,0 }, - {1492,1493, 0, 0, 40000, 66,0 }, - { 256, 257, 0, 0, 40000, 53,0 }, - { 260, 261, 0, 0, 40000, 86,0 }, - {1512,1513, 0, 0, 40000, 40,0 }, - {1510,1511, 0, 0, 40000, 80,0 }, - {1496,1498, 0, 0, 40000, 73,0 }, - { 295, 296, 0, 0, 40000, 340,0 }, - {1540, 339, 0, 0, 2466, 633,0 }, - { 398, 399, 35, 0, 1860, 226,0 }, - {1516,1517, 0, 0, 40000, 660,0 }, - {1550,3033, 35, 0, 213, 26,0 }, - {1556,1557, 35, 0, 1200, 426,0 }, - {1558,1559, 35, 0, 1173, 406,0 }, - {1570,1571, 35, 0, 1160, 140,0 }, - {1608,1609, 35, 0, 2100, 320,0 }, - {1595,1596, 35, 0, 220, 273,0 }, - { 159,1597, 35, 0, 220, 266,0 }, - {1610,1611, 35, 0, 220, 273,0 }, - { 397,1588, 35, 0, 253, 86,0 }, - {1606,1607, 35, 0, 133, 66,0 }, - { 145,1576, 35, 0, 180, 0,0 }, - {1612,1613, 35, 0, 526, 400,0 }, - {1577,1578, 35, 0, 506, 453,0 }, - {1614,1615, 35, 0, 773, 933,0 }, - { 305, 306, 0, 0, 40000, 1160,0 }, - {1522,1523, 0, 0, 40000, 0,0 }, - {1550,1551, 35, 0, 526, 146,0 }, - { 364, 365, 35, 0, 186, 20,0 }, - { 129,1549, 35, 0, 326, 133,0 }, - { 132,1552, 35, 0, 226, 113,0 }, - {1553,1554, 35, 0, 206, 73,0 }, - { 129,1548, 35, 0, 326, 133,0 }, - { 134,1555, 35, 0, 2580, 893,0 }, - {1560,1561, 35, 0, 600, 366,0 }, - {1562,1563, 35, 0, 40000, 0,0 }, - {1572,1573, 35, 0, 340, 133,0 }, - {1574,1575, 35, 0, 406, 226,0 }, - {1581,1582, 35, 0, 640, 213,0 }, - { 149,1583, 35, 0, 326, 20,0 }, - {1584,1585, 35, 0, 633, 240,0 }, - {1591,1592, 35, 0, 1226, 413,0 }, - {1568,1569, 35, 0, 1313, 460,0 }, - {1579,1580, 35, 0, 326, 0,0 }, - {1586,1587, 35, 0, 606, 220,0 }, - {1589,1590, 35, 0, 120, 86,0 }, - {1600,1601, 35, 0, 1326, 420,0 }, - {1602,1603, 35, 0, 706, 266,0 }, - {1604,1605, 35, 0, 4540, 1326,0 }, - { 391, 392, 35, 0, 360, 153,0 }, - { 391, 393, 35, 0, 453, 153,0 }, - {1598,1599, 35, 0, 1246, 346,0 }, - { 367, 368, 35, 0, 600, 153,0 }, - { 380, 381, 35, 0, 40000, 0,0 }, - { 374, 375, 35, 0, 40000, 0,0 }, - {1566,1567, 35, 0, 40000, 0,0 }, - {2306,2307, 35, 0, 7660, 1560,0 }, - {3034, 339, 35, 0, 5860, 426,0 }, - {2301,2302, 35, 0, 2146, 753,0 }, - {2305,1548, 35, 0, 326, 133,0 }, - {1595,1595, 35, 0, 220, 273,0 }, - {2303,2304, 35, 0, 186, 20,0 }, - {1560,2308, 35, 0, 600, 373,0 }, - {2309,2310, 35, 0, 40000, 0,0 }, - {1568,1568, 35, 0, 1280, 453,0 }, - {2311,2312, 35, 0, 360, 106,0 }, - {2313,2314, 35, 0, 620, 0,0 }, - {2315,2315, 35, 0, 106, 0,0 }, - {2316,2316, 35, 0, 506, 453,0 }, - {1612,1612, 35, 0, 526, 400,0 }, - {2317,2317, 35, 0, 640, 253,0 }, - {2318,2318, 35, 0, 326, 20,0 }, - {2319,2319, 35, 0, 453, 446,0 }, - {2320,2320, 35, 0, 466, 453,0 }, - {2321,2321, 35, 0, 120, 26,0 }, - {2322,2322, 35, 0, 1220, 406,0 }, - {2323,2323, 35, 0, 2360, 786,0 }, - {2324, 392, 35, 0, 353, 146,0 }, - {2324, 393, 35, 0, 453, 146,0 }, - {2325,2326, 35, 0, 533, 140,0 }, - {2327,2328, 35, 0, 1273, 393,0 }, - {2329,2330, 35, 0, 40000, 0,0 }, - {2331,2332, 35, 0, 40000, 0,0 }, - {3035,3036, 35, 0, 4133, 433,0 }, - {3037,3038, 35, 0, 1740, 286,0 }, - {1564,1564, 35, 0, 713, 273,0 }, - {3039,3039, 0, 0, 40000, 0,0 }, - {3040,3040, 0, 0, 6100, 146,0 }, - {3041,3041, 0, 0, 2386, 26,0 }, - {3042,3042, 0, 0, 4320, 80,0 }, - {3043,3043, 0, 0, 3433, 313,0 }, - {3044,3044, 0, 0, 6620, 2446,0 }, - {3045,3045, 0, 0, 3726, 1253,0 }, - {3046,3046, 0, 0, 40000, 133,0 }, - {3047,3047, 0, 0, 4566, 1253,0 }, - {3048,3048, 0, 0, 40000, 813,0 }, - {3049,3049, 0, 0, 18513, 1560,0 }, - {3050,3050, 0, 0, 2186, 426,0 }, - {3051,3051, 0, 0, 1186, 420,0 }, - {3052,3052, 0, 0, 766, 420,0 }, - {3053,3053, 0, 0, 14513, 4713,0 }, - {3054,3054, 0, 0, 15493, 1580,0 }, - {3055,3055, 0, 0, 40000, 66,0 }, - {3056,3056, 0, 0, 40000, 60,0 }, - {3057,3057, 0, 0, 4740, 100,0 }, - {3058,3058, 0, 0, 40000, 66,0 }, - {3059,3059, 0, 0, 40000, 73,0 }, - {3060,3060, 0, 0, 40000, 73,0 }, - {3061,3061, 0, 0, 40000, 0,0 }, - {3062,3062, 0, 0, 8373, 633,0 }, - {3063,3063, 0, 0, 7560, 133,0 }, - {3064,3064, 0, 0, 40000, 0,0 }, - {3065,3065, 0, 0, 40000, 86,0 }, - {3066,3066, 0, 0, 340, 140,0 }, - {3067,3067, 0, 0, 40000, 0,0 }, - {3068,3068, 0, 0, 40000, 166,0 }, - {3069,3069, 0, 0, 4280, 1466,0 }, - {3070,3070, 0, 0, 2193, 73,0 }, - {3071,3071, 0, 0, 4846, 100,0 }, - {3072,3072, 0, 0, 12740, 93,0 }, - {3073,3073, 0, 0, 6953, 200,0 }, - {3074,3074, 0, 0, 13780, 73,0 }, - {3075,3075, 0, 0, 40000, 73,0 }, - {3076,3076, 0, 0, 5860, 600,0 }, - {3077,3077, 0, 0, 2206, 73,0 }, - {3078,3078, 0, 0, 40000, 140,0 }, - {3079,3079, 0, 0, 40000, 53,0 }, - {3080,3080, 0, 0, 40000, 120,0 }, - {3081,3081, 0, 0, 40000, 140,0 }, - {3082,3082, 0, 0, 40000, 126,0 }, - {3083,3083, 0, 0, 360, 140,0 }, - {3084,3084, 0, 0, 8880, 1373,0 }, - {3085,3085, 0, 0, 593, 73,0 }, - {3086,3086, 0, 0, 40000, 193,0 }, - {3087,3087, 0, 0, 40000, 200,0 }, - {3088,3088, 0, 0, 40000, 160,0 }, - {3089,3089, 0, 0, 40000, 200,0 }, - {3090,3090, 0, 0, 40000, 53,0 }, - {3091,3091, 0, 0, 40000, 73,0 }, - {3092,3092, 0, 0, 40000, 73,0 }, - {3093,3093, 0, 0, 760, 213,0 }, - {3094,3094, 0, 0, 40000, 133,0 }, - {3095,3095, 0, 0, 40000, 220,0 }, - {3096,3096, 0, 0, 40000, 100,0 }, - {3097,3097, 0, 0, 40000, 73,0 }, - {3098,3098, 0, 0, 40000, 140,0 }, - {3099,3099, 0, 0, 40000, 140,0 }, - {3100,3100, 0, 0, 40000, 140,0 }, - {3101,3101, 0, 0, 40000, 73,0 }, - {3102,3102, 0, 0, 40000, 73,0 }, - {3103,3103, 0, 0, 40000, 73,0 }, - {3104,3104, 0, 0, 40000, 73,0 }, - {3105,3105, 0, 0, 40000, 66,0 }, - {3106,3106, 0, 0, 40000, 66,0 }, - {3107,3107, 0, 0, 40000, 73,0 }, - {3108,3108, 0, 0, 40000, 73,0 }, - {3109,3109, 0, 0, 40000, 73,0 }, - {3110,3110, 0, 0, 40000, 73,0 }, - {3111,3111, 0, 0, 40000, 86,0 }, - {3112,3112, 0, 0, 5393, 100,0 }, - {3113,3113, 0, 0, 40000, 60,0 }, - {3114,3114, 0, 0, 18500, 73,0 }, - {3115,3115, 0, 0, 40000, 93,0 }, - {3116,3116, 0, 0, 40000, 86,0 }, - {3117,3117, 0, 0, 40000, 173,0 }, - {3118,3118, 0, 0, 40000, 1353,0 }, - {3119,3119, 0, 0, 17506, 73,0 }, - {3120,3120, 0, 0, 40000, 100,0 }, - {3121,3121, 0, 0, 40000, 73,0 }, - {3122,3122, 0, 0, 5620, 193,0 }, - {3123,3123, 0, 0, 3700, 80,0 }, - {3124,3124, 0, 0, 40000, 66,0 }, - {3125,3125, 0, 0, 2740, 80,0 }, - {3126,3126, 0, 0, 8333, 173,0 }, - {3127,3127, 0, 0, 2226, 466,0 }, - {3128,3128, 0, 0, 340, 146,0 }, - {3129,3129, 0, 0, 19980, 6280,0 }, - {3130,3130, 0, 0, 353, 73,0 }, - {3131,3131, 35, 0, 566, 233,0 }, - {3132,3132, 35, 0, 226, 46,0 }, - {3133,3133, 35, 0, 40000, 100,0 }, - {3134,3134, 35, 0, 40000, 100,0 }, - {3135,3135, 35, 0, 360, 146,0 }, - {3061,3061, 35, 0, 40000, 0,0 }, - {3136,3136, 35, 0, 366, 20,0 }, - { 739, 739, 35, 0, 246, 20,0 }, - {3137,3137, 35, 0, 333, 33,0 }, - {3138,3138, 35, 0, 420, 166,0 }, - {3139,3139, 35, 0, 626, 240,0 }, - {3140,3140, 35, 0, 233, 100,0 }, - {3141,3141, 35, 0, 1166, 440,0 }, - {3142,3142, 35, 0, 166, 66,0 }, - {3143,3143, 35, 0, 1166, 440,0 }, - {3144,3144, 35, 0, 813, 100,0 }, - {3145,3145, 35, 0, 1040, 440,0 }, - {3146,3146, 35, 0, 40000, 0,0 }, - {3147,3147, 35, 0, 40000, 0,0 }, - {3148,3148, 35, 0, 180, 40,0 }, - {3149,3149, 35, 0, 40000, 0,0 }, - {3150,3150, 0, 0, 40000, 0,0 }, - {3151,3151, 0, 0, 4900, 240,0 }, - {3152,3152, 0, 0, 3480, 80,0 }, - {3153,3153, 0, 0, 3586, 86,0 }, - {3154,3154, 0, 0, 4626, 633,0 }, - {3155,3155, 0, 0, 4293, 2286,0 }, - {3156,3156, 0, 0, 13653, 0,0 }, - {3157,3157, 0, 0, 1206, 426,0 }, - {3158,3158, 0, 0, 653, 426,0 }, - {3159,3159, 0, 0, 40000, 0,0 }, - {3160,3160, 0, 0, 4633, 633,0 }, - {3161,3161, 0, 0, 40000, 73,0 }, - {3162,3162, 0, 0, 40000, 60,0 }, - {3163,3163, 0, 0, 40000, 146,0 }, - {3164,3164, 0, 0, 40000, 73,0 }, - {3165,3165, 0, 0, 40000, 73,0 }, - {3166,3166, 0, 0, 40000, 0,0 }, - {3167,3167, 0, 0, 40000, 66,0 }, - {3168,3168, 0, 0, 3680, 1180,0 }, - {3169,3169, 0, 0, 2406, 846,0 }, - {3170,3170, 0, 0, 1560, 73,0 }, - {3171,3171, 0, 0, 1946, 226,0 }, - {3172,3172, 0, 0, 4333, 13,0 }, - {3173,3173, 0, 0, 40000, 0,0 }, - {3174,3174, 0, 0, 40000, 0,0 }, - {3175,3175, 0, 0, 40000, 66,0 }, - {3176,3176, 0, 0, 40000, 180,0 }, - {3177,3177, 0, 0, 15380, 80,0 }, - {3178,3178, 0, 0, 18213, 73,0 }, - {3179,3179, 0, 0, 1706, 0,0 }, - {3180,3180, 0, 0, 5733, 1266,0 }, - {3181,3181, 0, 0, 40000, 0,0 }, - {3182,3182, 0, 0, 40000, 366,0 }, - {3183,3183, 0, 0, 40000, 66,0 }, - {3184,3184, 0, 0, 4786, 73,0 }, - {3185,3185, 0, 0, 5660, 720,0 }, - {3186,3186, 0, 0, 1293, 406,0 }, - {3187,3187, 0, 0, 40000, 0,0 }, - {3188,3188, 0, 0, 2686, 233,0 }, - {3189,3189, 0, 0, 40000, 0,0 }, - {3190,3190, 0, 0, 40000, 73,0 }, - {3191,3191, 0, 0, 40000, 0,0 }, - {3192,3192, 0, 0, 40000, 73,0 }, - {3193,3193, 0, 0, 40000, 0,0 }, - {3194,3194, 0, 0, 3920, 73,0 }, - {3195,3195, 0, 0, 40000, 73,0 }, - {3196,3196, 0, 0, 40000, 66,0 }, - {3197,3197, 0, 0, 40000, 80,0 }, - {3198,3198, 0, 0, 40000, 86,0 }, - {3199,3199, 0, 0, 40000, 60,0 }, - {3200,3200, 0, 0, 40000, 0,0 }, - {3201,3201, 0, 0, 40000, 353,0 }, - {3202,3202, 0, 0, 3920, 73,0 }, - {3203,3203, 0, 0, 5833, 813,0 }, - {3204,3204, 0, 0, 40000, 60,0 }, - {3205,3205, 0, 0, 40000, 73,0 }, - {3206,3206, 0, 0, 1400, 406,0 }, - {3207,3207, 0, 0, 40000, 66,0 }, - {3208,3208, 0, 0, 9066, 2220,0 }, - {3209,3209, 0, 0, 1473, 773,0 }, - {3210,3210, 0, 0, 40000, 120,0 }, - {3211,3211, 0, 0, 40000, 306,0 }, - {3212,3212, 0, 0, 9306, 3013,0 }, - {3213,3213, 0, 0, 40000, 60,0 }, - {3214,3214, 0, 0, 40000, 73,0 }, - {3215,3215, 0, 0, 40000, 73,0 }, - {3216,3216, 0, 0, 40000, 453,0 }, - {3217,3217, 0, 0, 40000, 3460,0 }, - {3218,3218, 0, 0, 40000, 453,0 }, - {3219,3219, 0, 0, 40000, 40,0 }, - {3220,3220, 0, 0, 40000, 3926,0 }, - {3221,3221, 0, 0, 40000, 4506,0 }, - {3222,3222, 0, 0, 4646, 646,0 }, - {3223,3223, 0, 0, 773, 100,0 }, - {3224,3224, 0, 0, 40000, 73,0 }, - {3225,3225, 0, 0, 40000, 173,0 }, - {3226,3226, 0, 0, 1606, 653,0 }, - {3227,3227, 0, 0, 2353, 806,0 }, - {3228,3228, 0, 0, 980, 360,0 }, - {3229,3229, 0, 0, 1193, 413,0 }, - { 499, 499, 0, 0, 266, 0,0 }, - {3230,3230, 0, 0, 973, 360,0 }, - {3231,3231, 0, 0, 273, 53,0 }, - {3232,3232, 0, 0, 726, 220,0 }, - {3233,3233, 0, 0, 19933, 6093,0 }, - {3234,3234, 0, 0, 40000, 0,0 }, - { 403, 403, 0, 0, 40000, 73,0 }, - {3235,3235, 0, 0, 4966, 233,0 }, - {3236,3236, 0, 0, 4946, 240,0 }, - {3237,3237, 0, 0, 4946, 233,0 }, - {3238,3238, 0, 0, 4640, 1613,0 }, - {3239,3239, 0, 0, 2360, 806,0 }, - {3240,3240, 0, 0, 4466, 200,0 }, - {3241,3241, 0, 0, 40000, 73,0 }, - {3242,3242, 0, 0, 40000, 73,0 }, - {3243,3243, 0, 0, 40000, 73,0 }, - {3244,3244, 0, 0, 40000, 73,0 }, - {3245,3245, 0, 0, 40000, 240,0 }, - {3246,3246, 0, 0, 40000, 226,0 }, - {3247,3247, 0, 0, 40000, 233,0 }, - {3248,3248, 0, 0, 40000, 240,0 }, - {3249,3249, 0, 0, 4306, 1253,0 }, - {3250,3250, 0, 0, 3873, 1206,0 }, - {3251,3251, 0, 0, 4640, 633,0 }, - {3252,3252, 0, 0, 1233, 80,0 }, - {3253,3253, 0, 0, 1233, 26,0 }, - {3254,3254, 0, 0, 1233, 26,0 }, - {3255,3255, 0, 0, 4573, 1253,0 }, - {3256,3256, 0, 0, 3793, 1240,0 }, - {3257,3257, 0, 0, 40000, 73,0 }, - {3258,3258, 0, 0, 40000, 73,0 }, - {3259,3259, 0, 0, 40000, 140,0 }, - {3260,3260, 0, 0, 40000, 146,0 }, - {3261,3261, 0, 0, 40000, 80,0 }, - {3262,3262, 0, 0, 5953, 200,0 }, - {3263,3263, 0, 0, 5926, 200,0 }, - {3264,3264, 0, 0, 5866, 26,0 }, - {3265,3265, 0, 0, 18573, 6153,0 }, - {3266,3266, 0, 0, 40000, 2093,0 }, - {3267,3267, 0, 0, 40000, 73,0 }, - {3268,3268, 0, 0, 18626, 1553,0 }, - {3269,3269, 0, 0, 40000, 1820,0 }, - {3270,3270, 0, 0, 40000, 500,0 }, - {3271,3271, 0, 0, 18206, 5900,0 }, - {3272,3272, 0, 0, 14200, 93,0 }, - {3273,3273, 0, 0, 40000, 2873,0 }, - {3274,3274, 0, 0, 14960, 4913,0 }, - {3275,3275, 0, 0, 40000, 86,0 }, - {3276,3276, 0, 0, 40000, 826,0 }, - {3277,3277, 0, 0, 40000, 200,0 }, - {3278,3278, 0, 0, 40000, 340,0 }, - {3279,3279, 0, 0, 13220, 2500,0 }, - {3280,3280, 0, 0, 40000, 100,0 }, - {3281,3281, 0, 0, 40000, 1026,0 }, - {3282,3282, 0, 0, 40000, 366,0 }, - {3283,3283, 0, 0, 40000, 386,0 }, - {3284,3284, 0, 0, 40000, 0,0 }, - {3285,3285, 0, 0, 40000, 0,0 }, - {3286,3286, 0, 0, 40000, 140,0 }, - {3287,3287, 0, 0, 40000, 53,0 }, - {3288,3288, 0, 0, 40000, 120,0 }, - {3289,3289, 0, 0, 8866, 1366,0 }, - {3290,3290, 0, 0, 4193, 1400,0 }, - {3291,3291, 0, 0, 8353, 673,0 }, - {3292,3292, 0, 0, 8353, 673,0 }, - {3293,3293, 0, 0, 8400, 593,0 }, - {3294,3294, 0, 0, 8440, 666,0 }, - {3295,3295, 0, 0, 9600, 1580,0 }, - {3296,3296, 0, 0, 40000, 46,0 }, - {3297,3297, 0, 0, 40000, 0,0 }, - {3298,3298, 0, 0, 1653, 93,0 }, - {3299,3299, 0, 0, 2706, 73,0 }, - {3300,3300, 0, 0, 11680, 26,0 }, - {3301,3301, 0, 0, 6500, 340,0 }, - {3302,3302, 0, 0, 40000, 0,0 }, - {3303,3303, 0, 0, 40000, 0,0 }, - {3304,3304, 0, 0, 40000, 73,0 }, - {3305,3305, 0, 0, 40000, 73,0 }, - {3306,3306, 0, 0, 40000, 73,0 }, - {3307,3307, 0, 0, 40000, 73,0 }, - {3308,3308, 0, 0, 40000, 73,0 }, - {3309,3309, 0, 0, 40000, 73,0 }, - {3310,3310, 0, 0, 40000, 73,0 }, - {3311,3311, 0, 0, 40000, 73,0 }, - {3312,3312, 0, 0, 40000, 73,0 }, - {3313,3313, 0, 0, 40000, 133,0 }, - {3314,3314, 0, 0, 40000, 126,0 }, - {3315,3315, 0, 0, 40000, 73,0 }, - {3316,3316, 0, 0, 40000, 73,0 }, - {3317,3317, 0, 0, 40000, 73,0 }, - {3318,3318, 0, 0, 40000, 200,0 }, - {3319,3319, 0, 0, 40000, 133,0 }, - {3320,3320, 0, 0, 40000, 0,0 }, - {3321,3321, 0, 0, 40000, 240,0 }, - {3322,3322, 0, 0, 40000, 220,0 }, - {3323,3323, 0, 0, 40000, 226,0 }, - {3324,3324, 0, 0, 40000, 100,0 }, - {3325,3325, 0, 0, 40000, 140,0 }, - {3326,3326, 0, 0, 40000, 0,0 }, - {3327,3327, 0, 0, 40000, 426,0 }, - {3328,3328, 0, 0, 40000, 426,0 }, - {3329,3329, 0, 0, 3680, 1220,0 }, - {3330,3330, 0, 0, 40000, 533,0 }, - {3331,3331, 0, 0, 40000, 813,0 }, - {3332,3332, 0, 0, 14506, 4706,0 }, - {3333,3333, 0, 0, 766, 420,0 }, - {3334,3334, 0, 0, 40000, 1566,0 }, - {3335,3335, 0, 0, 40000, 120,0 }, - {3336,3336, 0, 0, 40000, 2380,0 }, - {3337,3337, 0, 0, 5666, 300,0 }, - {3338,3338, 0, 0, 40000, 73,0 }, - {3339,3339, 0, 0, 40000, 2513,0 }, - {3340,3340, 0, 0, 1260, 826,0 }, - {3341,3341, 0, 0, 2420, 413,0 }, - {3342,3342, 0, 0, 626, 240,0 }, - {3343,3343, 0, 0, 273, 60,0 }, - {3344,3344, 0, 0, 540, 20,0 }, - {3345,3345, 0, 0, 540, 20,0 }, - {3346,3346, 0, 0, 540, 20,0 }, - {3347,3347, 0, 0, 1153, 760,0 }, - {3348,3348, 0, 0, 40000, 100,0 }, - {3349,3349, 0, 0, 7326, 2380,0 }, - {3350,3350, 0, 0, 40000, 4426,0 }, - {3351,3351, 0, 0, 7413, 2493,0 }, - {3352,3352, 0, 0, 253, 20,0 }, - {3353,3353, 0, 0, 246, 33,0 }, - {3354,3354, 0, 0, 286, 13,0 }, - {3355,3355, 0, 0, 953, 13,0 }, - {3356,3356, 0, 0, 293, 20,0 }, - { 142, 142, 20, 0, 1893, 620,0 }, - {3357,1451, 0, 4, 2373, 780,0 }, - {3358,3359, 0, 4, 9260, 246,0 }, - {3360,1455, 0, 4, 40000, 0,0 }, - {3361,1463, 0, 4, 40000, 266,0 }, - { 225,3362, 0, 4, 7993, 100,0 }, - {3363,1545, 0, 4, 293, 86,0 }, - {3364,1547, 0, 4, 40000, 180,0 }, - {3365,3366, 39, 4, 66, 0,0 }, - {3367, 368, 58, 4, 173, 0,0 }, - {3368,1551, 48, 4, 520, 200,0 }, - {3368,3033, 49, 4, 53, 0,0 }, - {3368,3033, 51, 4, 53, 0,0 }, - {3368,3033, 54, 4, 60, 0,0 }, - {3368,3033, 57, 4, 60, 0,0 }, - {3368,3033, 60, 4, 60, 0,0 }, - {3369,3370, 70, 4, 840, 0,0 }, - {1564,1565, 80, 4, 220, 0,0 }, - {3371,1571, 44, 4, 420, 0,0 }, - {3372,3372, 0, 0, 8366, 666,0 }, - {3373,3373, 0, 0, 8366, 666,0 }, - {3374,3374, 0, 0, 3773, 73,0 }, - {3375,3375, 0, 0, 8366, 666,0 }, - {3376,3376, 0, 0, 4693, 26,0 }, - {3377,3377, 0, 0, 7400, 80,0 }, - {3378,3378, 0, 0, 3586, 80,0 }, - {3379,3379, 0, 0, 8366, 666,0 }, - {3380,3380, 0, 0, 3786, 1240,0 }, - {3381,3381, 0, 0, 9013, 1466,0 }, - {3382,3382, 0, 0, 1200, 73,0 }, - {3383,3383, 0, 0, 8146, 1446,0 }, - {3384,3384, 0, 0, 3660, 1206,0 }, - {3385,3385, 0, 0, 200, 100,0 }, - {3386,3386, 0, 0, 40000, 0,0 }, - {3387,3387, 0, 0, 1213, 426,0 }, - {3388,3388, 0, 0, 40000, 2573,0 }, - {3389,3389, 0, 0, 40000, 3446,0 }, - {3390,3390, 0, 0, 40000, 333,0 }, - {3391,3391, 0, 0, 40000, 73,0 }, - {3392,3392, 0, 0, 40000, 93,0 }, - {3393,3393, 0, 0, 40000, 73,0 }, - {3394,3394, 0, 0, 40000, 73,0 }, - {3395,3395, 0, 0, 40000, 73,0 }, - {3396,3396, 0, 0, 2193, 413,0 }, - {3397,3397, 0, 0, 14606, 2886,0 }, - {3398,3398, 0, 0, 10626, 4520,0 }, - {3399,3399, 0, 0, 2413, 100,0 }, - {3400,3400, 0, 0, 3593, 1140,0 }, - {3401,3401, 0, 0, 40000, 146,0 }, - {3402,3402, 0, 0, 40000, 86,0 }, - {3403,3403, 0, 0, 40000, 86,0 }, - {3404,3404, 0, 0, 9366, 106,0 }, - {3405,3405, 0, 0, 40000, 73,0 }, - {3406,3406, 0, 0, 40000, 0,0 }, - {3407,3407, 0, 0, 40000, 0,0 }, - {3408,3408, 0, 0, 1626, 400,0 }, - {3409,3409, 0, 0, 4473, 2933,0 }, - {3410,3410, 0, 0, 40000, 66,0 }, - {3411,3411, 0, 0, 40000, 0,0 }, - {3412,3412, 0, 0, 40000, 253,0 }, - {3413,3413, 0, 0, 40000, 233,0 }, - {3414,3414, 0, 0, 40000, 346,0 }, - {3415,3415, 0, 0, 1966, 26,0 }, - {3416,3416, 0, 0, 40000, 366,0 }, - {3417,3417, 0, 0, 2266, 386,0 }, - {3418,3418, 0, 0, 40000, 0,0 }, - {3419,3419, 0, 0, 2313, 766,0 }, - {3420,3420, 0, 0, 40000, 340,0 }, - {3421,3421, 0, 0, 40000, 346,0 }, - {3422,3422, 0, 0, 40000, 340,0 }, - {3423,3423, 0, 0, 40000, 353,0 }, - {3424,3424, 0, 0, 40000, 353,0 }, - {3425,3425, 0, 0, 40000, 226,0 }, - {3426,3426, 0, 0, 40000, 73,0 }, - {3427,3427, 0, 0, 940, 253,0 }, - {3428,3428, 0, 0, 40000, 73,0 }, - {3429,3429, 0, 0, 40000, 80,0 }, - {3430,3430, 0, 0, 40000, 240,0 }, - {3431,3431, 0, 0, 40000, 80,0 }, - {3432,3432, 0, 0, 40000, 73,0 }, - {3433,3433, 0, 0, 40000, 73,0 }, - {3434,3434, 0, 0, 40000, 73,0 }, - {3435,3435, 0, 0, 40000, 73,0 }, - {3436,3436, 0, 0, 40000, 73,0 }, - {3437,3437, 0, 0, 40000, 73,0 }, - {3438,3438, 0, 0, 40000, 73,0 }, - {3439,3439, 0, 0, 40000, 73,0 }, - {3440,3440, 0, 0, 40000, 73,0 }, - {3441,3441, 0, 0, 40000, 73,0 }, - {3442,3442, 0, 0, 40000, 66,0 }, - {3443,3443, 0, 0, 40000, 73,0 }, - {3444,3444, 0, 0, 40000, 80,0 }, - {3445,3445, 0, 0, 40000, 66,0 }, - {3446,3446, 0, 0, 40000, 66,0 }, - {3447,3447, 0, 0, 40000, 66,0 }, - {3448,3448, 0, 0, 40000, 66,0 }, - {3449,3449, 0, 0, 40000, 80,0 }, - {3450,3450, 0, 0, 40000, 353,0 }, - {3451,3451, 0, 0, 40000, 0,0 }, - {3452,3452, 0, 0, 18440, 100,0 }, - {3453,3453, 0, 0, 18086, 100,0 }, - {3454,3454, 0, 0, 266, 66,0 }, - {3455,3455, 0, 0, 40000, 80,0 }, - {3456,3456, 0, 0, 40000, 100,0 }, - {3457,3457, 0, 0, 40000, 80,0 }, - {3458,3458, 0, 0, 40000, 120,0 }, - {3459,3459, 0, 0, 40000, 93,0 }, - {3460,3460, 0, 0, 40000, 233,0 }, - {3461,3461, 0, 0, 40000, 0,0 }, - {3462,3462, 0, 0, 40000, 86,0 }, - {3463,3463, 0, 0, 40000, 820,0 }, - {3464,3464, 0, 0, 40000, 4986,0 }, - {3465,3465, 0, 0, 40000, 146,0 }, - {3466,3466, 0, 0, 40000, 100,0 }, - {3467,3467, 0, 0, 40000, 3346,0 }, - {3468,3468, 0, 0, 40000, 660,0 }, - {3469,3469, 0, 0, 40000, 366,0 }, - {3470,3470, 0, 0, 40000, 1480,0 }, - {3471,3471, 0, 0, 40000, 646,0 }, - {3472,3472, 0, 0, 40000, 2673,0 }, - {3473,3473, 0, 0, 40000, 2500,0 }, - {3474,3474, 0, 0, 40000, 2513,0 }, - {3475,3475, 0, 0, 40000, 66,0 }, - {3476,3476, 0, 0, 9600, 1580,0 }, - {3477,3477, 0, 0, 40000, 46,0 }, - {3478,3478, 0, 0, 10673, 100,0 }, - {3479,3479, 0, 0, 2333, 800,0 }, - {3480,3480, 0, 0, 3673, 1200,0 }, - {3481,3481, 0, 0, 40000, 73,0 }, - {3482,3482, 0, 0, 40000, 146,0 }, - {3483,3483, 0, 0, 40000, 73,0 }, - {3484,3484, 0, 0, 2266, 726,0 }, - {3485,3485, 0, 0, 333, 140,0 }, - {3486,3486, 0, 0, 2286, 746,0 }, - {3487,3487, 0, 0, 293, 126,0 }, - {3488,3488, 0, 0, 3700, 1213,0 }, - {3489,3489, 0, 0, 3773, 1186,0 }, - {3490,3490, 0, 0, 3646, 1200,0 }, - {3491,3491, 0, 0, 3020, 73,0 }, - {3492,3492, 0, 0, 786, 273,0 }, - {3493,3493, 0, 0, 40000, 146,0 }, - {3494,3494, 0, 0, 40000, 3093,0 }, - {3495,3495, 0, 0, 273, 60,0 }, - {3496,3496, 0, 0, 40000, 73,0 }, - {3497,3497, 0, 0, 40000, 73,0 }, - {3498,3498, 0, 0, 40000, 3093,0 }, - {3499,3499, 0, 0, 40000, 240,0 }, - {3500,3500, 0, 2, 6, 0,0 }, - { 739, 739, 46, 0, 220, 33,0 }, - {3501,3501, 47, 0, 973, 93,0 }, - {3502,3502, 64, 0, 126, 66,0 }, - {3503,3503, 40, 0, 340, 146,0 }, - {3504,3504, 48, 0, 100, 0,0 }, - {3505,3505, 48, 0, 286, 133,0 }, - {3506,3506, 46, 0, 466, 166,0 }, - {3507,3507,111, 0, 226, 113,0 }, - {3508,3508, 49, 0, 473, 166,0 }, - {3509,3509, 56, 0, 126, 40,0 }, - {3510,3510, 52, 0, 520, 206,0 }, - {3511,3511, 96, 0, 1346, 473,0 }, - {3510,3510, 54, 0, 513, 206,0 }, - {3512,3512, 57, 0, 973, 266,0 }, - {3513,3513, 82, 0, 1580, 553,0 }, - {3510,3510, 60, 0, 506, 200,0 }, - {3514,3514, 60, 0, 1886, 646,0 }, - {3515,3515, 92, 0, 1026, 520,0 }, - {3516,3516, 60, 0, 180, 93,0 }, - {3517,3517, 58, 0, 213, 213,0 }, - {3518,3518, 22, 0, 2300, 766,0 }, - {3519,3519, 60, 0, 1873, 653,0 }, - {3520,3520, 72, 0, 260, 93,0 }, - {3521,3521, 77, 0, 253, 93,0 }, - {3522,3522, 70, 0, 206, 93,0 }, - {3523,3523, 75, 0, 173, 93,0 }, - {3524,3524, 69, 0, 406, 113,0 }, - {3525,3525, 59, 0, 380, 160,0 }, - {3526,3526, 48, 0, 373, 40,0 }, - {3527,3527, 89, 0, 433, 180,0 }, - {3528,3528, 84, 0, 813, 180,0 }, - {3529,3529, 33, 0, 240, 53,0 }, - {3530,3530, 55, 0, 220, 86,0 }, - {3531,3531, 58, 0, 526, 200,0 }, - {3532,3532, 52, 0, 526, 193,0 }, - {3533,3533, 57, 0, 166, 80,0 }, - {3534,3534, 57, 0, 240, 100,0 }, - {3535,3535, 85, 0, 220, 113,0 }, - {3536,3536, 68, 0, 173, 93,0 }, - {3536,3536, 61, 0, 220, 113,0 }, - {3537,3537, 64, 0, 346, 53,0 }, - {3538,3538, 44, 0, 1080, 346,0 }, - {3539,3539,100, 0, 193, 20,0 }, - {3540,3540,100, 0, 793, 26,0 }, - {3541,3541, 0, 0, 14166, 320,0 }, - {3542,3542, 0, 0, 3873, 1613,0 }, - {3543,3543, 0, 0, 3586, 86,0 }, - {3544,3544, 0, 0, 7406, 2486,0 }, - {3545,3545, 0, 0, 4640, 1560,0 }, - {3546,3546, 0, 0, 446, 440,0 }, - {3547,3547, 0, 0, 9253, 3100,0 }, - {3548,3548, 0, 0, 4646, 646,0 }, - {3549,3549, 0, 0, 40000, 66,0 }, - {3550,3550, 0, 0, 40000, 73,0 }, - {3551,3551, 0, 0, 40000, 113,0 }, - {3552,3552, 0, 0, 40000, 73,0 }, - {3553,3553, 0, 0, 40000, 73,0 }, - {3554,3554, 0, 0, 40000, 0,0 }, - {3555,3555, 0, 0, 40000, 60,0 }, - {3556,3556, 0, 0, 3673, 1206,0 }, - {3557,3557, 0, 0, 3706, 1293,0 }, - {3558,3558, 0, 0, 5693, 1126,0 }, - {3559,3559, 0, 0, 2406, 846,0 }, - {3560,3560, 0, 0, 40000, 66,0 }, - {3561,3561, 0, 0, 40000, 73,0 }, - {3562,3562, 0, 0, 4333, 13,0 }, - {3563,3563, 0, 0, 3700, 66,0 }, - {3564,3564, 0, 0, 40000, 0,0 }, - {3565,3565, 0, 0, 3713, 1260,0 }, - {3566,3566, 0, 0, 1140, 126,0 }, - {3567,3567, 0, 0, 40000, 186,0 }, - {3568,3568, 0, 0, 40000, 0,0 }, - {3569,3569, 0, 0, 14400, 6,0 }, - {3570,3570, 0, 0, 14580, 66,0 }, - {3571,3571, 0, 0, 40000, 73,0 }, - {3572,3572, 0, 0, 40000, 353,0 }, - {3573,3573, 0, 0, 40000, 0,0 }, - {3574,3574, 0, 0, 40000, 173,0 }, - {3575,3575, 0, 0, 1833, 600,0 }, - {3576,3576, 0, 0, 40000, 0,0 }, - {3577,3577, 0, 0, 40000, 206,0 }, - {3578,3578, 0, 0, 40000, 46,0 }, - {3579,3579, 0, 0, 40000, 73,0 }, - {3580,3580, 0, 0, 9166, 2900,0 }, - {3581,3581, 0, 0, 5640, 680,0 }, - {3582,3582, 0, 0, 640, 220,0 }, - {3583,3583, 0, 0, 40000, 53,0 }, - {3584,3584, 0, 0, 40000, 26,0 }, - {3585,3585, 0, 0, 40000, 0,0 }, - {3586,3586, 0, 0, 40000, 66,0 }, - {3587,3587, 0, 0, 40000, 60,0 }, - {3588,3588, 0, 0, 40000, 0,0 }, - {3589,3589, 0, 0, 40000, 73,0 }, - {3590,3590, 0, 0, 40000, 0,0 }, - {3591,3591, 0, 0, 40000, 0,0 }, - {3592,3592, 0, 0, 3780, 73,0 }, - {3593,3593, 0, 0, 40000, 0,0 }, - {3594,3594, 0, 0, 3786, 73,0 }, - {3595,3595, 0, 0, 40000, 73,0 }, - {3596,3596, 0, 0, 40000, 66,0 }, - {3597,3597, 0, 0, 40000, 73,0 }, - {3598,3598, 0, 0, 40000, 53,0 }, - {3599,3599, 0, 0, 40000, 426,0 }, - {3600,3600, 0, 0, 40000, 133,0 }, - {3601,3601, 0, 0, 40000, 66,0 }, - {3602,3602, 0, 0, 40000, 433,0 }, - {3603,3603, 0, 0, 393, 126,0 }, - {3604,3604, 0, 0, 40000, 66,0 }, - {3605,3605, 0, 0, 40000, 353,0 }, - {3606,3606, 0, 0, 3813, 73,0 }, - {3607,3607, 0, 0, 5793, 780,0 }, - {3608,3608, 0, 0, 40000, 73,0 }, - {3609,3609, 0, 0, 40000, 86,0 }, - {3610,3610, 0, 0, 820, 206,0 }, - {3611,3611, 0, 0, 40000, 66,0 }, - {3612,3612, 0, 0, 40000, 200,0 }, - {3613,3613, 0, 0, 18186, 720,0 }, - {3614,3614, 0, 0, 40000, 0,0 }, - {3615,3615, 0, 0, 40000, 493,0 }, - {3616,3616, 0, 0, 40000, 306,0 }, - {3617,3617, 0, 0, 2166, 600,0 }, - {3618,3618, 0, 0, 40000, 73,0 }, - {3619,3619, 0, 0, 40000, 3073,0 }, - {3620,3620, 0, 0, 2333, 413,0 }, - {3621,3621, 0, 0, 14880, 73,0 }, - {3622,3622, 0, 0, 40000, 66,0 }, - {3623,3623, 0, 0, 40000, 73,0 }, - {3624,3624, 0, 0, 40000, 1873,0 }, - {3625,3625, 0, 0, 40000, 446,0 }, - {3626,3626, 0, 0, 40000, 3126,0 }, - {3627,3627, 0, 0, 18446, 6140,0 }, - {3628,3628, 0, 0, 1113, 240,0 }, - {3629,3629, 0, 0, 40000, 3600,0 }, - {3630,3630, 0, 0, 40000, 4726,0 }, - {3631,3631, 0, 0, 40000, 0,0 }, - {3632,3632, 0, 0, 2893, 606,0 }, - {3633,3633, 0, 0, 40000, 0,0 }, - {3634,3634, 0, 0, 40000, 0,0 }, - {3635,3635, 0, 0, 40000, 173,0 }, - {3636,3636, 0, 0, 40000, 60,0 }, - {3637,3637, 0, 0, 40000, 0,0 }, - {3638,3638, 0, 0, 986, 326,0 }, - {3639,3639, 0, 0, 1873, 646,0 }, - {3640,3640, 0, 0, 200, 260,0 }, - {3641,3641, 0, 0, 1180, 393,0 }, - {3642,3642, 0, 0, 266, 0,0 }, - {3643,3643, 0, 0, 313, 126,0 }, - {3644,3644, 0, 0, 406, 253,0 }, - {3645,3645, 0, 0, 1013, 813,0 }, - {3646,3646, 0, 0, 273, 53,0 }, - {3647,3647, 0, 0, 720, 213,0 }, - {3648,3648, 0, 0, 386, 120,0 }, - {3649,3649, 0, 0, 40000, 766,0 }, - {3650,3650, 0, 0, 40000, 66,0 }, - {3651,3651, 0, 0, 40000, 73,0 }, - {3652,3652, 0, 0, 1186, 426,0 }, - {3653,3653, 0, 0, 16720, 240,0 }, - {3654,3654, 0, 0, 8026, 246,0 }, - {3655,3655, 0, 0, 18186, 140,0 }, - {3656,3656, 0, 0, 14566, 200,0 }, - {3657,3657, 0, 0, 7973, 20,0 }, - {3658,3658, 0, 0, 4446, 86,0 }, - {3659,3659, 0, 0, 4473, 100,0 }, - {3660,3660, 0, 0, 8646, 153,0 }, - {3661,3661, 0, 0, 3726, 660,0 }, - {3662,3662, 0, 0, 1893, 653,0 }, - {3663,3663, 0, 0, 1933, 760,0 }, - {3664,3664, 0, 0, 9160, 240,0 }, - {3665,3665, 0, 0, 1133, 100,0 }, - {3666,3666, 0, 0, 633, 233,0 }, - {3667,3667, 0, 0, 9153, 3060,0 }, - {3668,3668, 0, 0, 2166, 406,0 }, - {3669,3669, 0, 0, 40000, 66,0 }, - {3670,3670, 0, 0, 40000, 73,0 }, - {3671,3671, 0, 0, 40000, 73,0 }, - {3672,3672, 0, 0, 40000, 73,0 }, - {3673,3673, 0, 0, 40000, 346,0 }, - {3674,3674, 0, 0, 40000, 353,0 }, - {3675,3675, 0, 0, 40000, 200,0 }, - {3676,3676, 0, 0, 40000, 320,0 }, - {3677,3677, 0, 0, 4646, 100,0 }, - {3678,3678, 0, 0, 4426, 133,0 }, - {3679,3679, 0, 0, 4633, 100,0 }, - {3680,3680, 0, 0, 2266, 133,0 }, - {3681,3681, 0, 0, 2346, 53,0 }, - {3682,3682, 0, 0, 40000, 66,0 }, - {3683,3683, 0, 0, 9686, 173,0 }, - {3684,3684, 0, 0, 14300, 66,0 }, - {3685,3685, 0, 0, 40000, 0,0 }, - {3686,3686, 0, 0, 40000, 0,0 }, - {3687,3687, 0, 0, 40000, 0,0 }, - {3688,3688, 0, 0, 8613, 73,0 }, - {3689,3689, 0, 0, 40000, 0,0 }, - {3690,3690, 0, 0, 40000, 0,0 }, - {3691,3691, 0, 0, 40000, 0,0 }, - {3692,3692, 0, 0, 40000, 0,0 }, - {3693,3693, 0, 0, 40000, 393,0 }, - {3694,3694, 0, 0, 40000, 126,0 }, - {3695,3695, 0, 0, 40000, 120,0 }, - {3696,3696, 0, 0, 40000, 0,0 }, - {3697,3697, 0, 0, 40000, 226,0 }, - {3698,3698, 0, 0, 7420, 1186,0 }, - {3699,3699, 0, 0, 3280, 1726,0 }, - {3700,3700, 0, 0, 3680, 1220,0 }, - {3701,3701, 0, 0, 40000, 480,0 }, - {3702,3702, 0, 0, 40000, 306,0 }, - {3703,3703, 0, 0, 40000, 433,0 }, - {3704,3704, 0, 0, 40000, 133,0 }, - {3705,3705, 0, 0, 40000, 0,0 }, - {3706,3706, 0, 0, 40000, 0,0 }, - {3707,3707, 0, 0, 1166, 380,0 }, - {3708,3708, 0, 0, 40000, 140,0 }, - {3709,3709, 0, 0, 40000, 126,0 }, - {3710,3710, 0, 0, 40000, 100,0 }, - {3711,3711, 0, 0, 40000, 66,0 }, - {3712,3712, 0, 0, 40000, 226,0 }, - {3713,3713, 0, 0, 40000, 133,0 }, - {3714,3714, 0, 0, 40000, 73,0 }, - {3715,3715, 0, 0, 40000, 226,0 }, - {3716,3716, 0, 0, 40000, 100,0 }, - {3717,3717, 0, 0, 40000, 80,0 }, - {3718,3718, 0, 0, 40000, 100,0 }, - {3719,3719, 0, 0, 40000, 73,0 }, - {3720,3720, 0, 0, 40000, 73,0 }, - {3721,3721, 0, 0, 40000, 73,0 }, - {3722,3722, 0, 0, 40000, 126,0 }, - {3723,3723, 0, 0, 40000, 80,0 }, - {3724,3724, 0, 0, 40000, 73,0 }, - {3725,3725, 0, 0, 40000, 86,0 }, - {3726,3726, 0, 0, 40000, 100,0 }, - {3727,3727, 0, 0, 40000, 0,0 }, - {3728,3728, 0, 0, 40000, 126,0 }, - {3729,3729, 0, 0, 40000, 133,0 }, - {3730,3730, 0, 0, 40000, 140,0 }, - {3731,3731, 0, 0, 40000, 73,0 }, - {3732,3732, 0, 0, 40000, 60,0 }, - {3733,3733, 0, 0, 40000, 93,0 }, - {3734,3734, 0, 0, 40000, 80,0 }, - {3735,3735, 0, 0, 40000, 66,0 }, - {3736,3736, 0, 0, 40000, 0,0 }, - {3737,3737, 0, 0, 40000, 220,0 }, - {3738,3738, 0, 0, 40000, 80,0 }, - {3739,3739, 0, 0, 40000, 400,0 }, - {3740,3740, 0, 0, 40000, 1373,0 }, - {3741,3741, 0, 0, 40000, 86,0 }, - {3742,3742, 0, 0, 40000, 1313,0 }, - {3743,3743, 0, 0, 40000, 0,0 }, - {3744,3744, 0, 0, 11486, 593,0 }, - {3745,3745, 0, 0, 40000, 1246,0 }, - {3746,3746, 0, 0, 40000, 140,0 }, - {3747,3747, 0, 0, 14386, 2680,0 }, - {3748,3748, 0, 0, 40000, 653,0 }, - {3749,3749, 0, 0, 2286, 713,0 }, - {3750,3750, 0, 0, 40000, 253,0 }, - {3751,3751, 0, 0, 6933, 406,0 }, - {3752,3752, 0, 0, 40000, 1313,0 }, - {3753,3753, 0, 0, 40000, 1440,0 }, - {3754,3754, 0, 0, 40000, 73,0 }, - {3755,3755, 0, 0, 11100, 420,0 }, - {3756,3756, 0, 0, 6493, 320,0 }, - {3757,3757, 0, 0, 3486, 126,0 }, - {3758,3758, 0, 0, 6620, 2133,0 }, - {3759,3759, 0, 0, 1180, 413,0 }, - {3760,3760, 0, 0, 40000, 73,0 }, - {3761,3761, 0, 0, 40000, 73,0 }, - {3762,3762, 0, 0, 40000, 66,0 }, - {3763,3763, 0, 0, 4580, 413,0 }, - {3764,3764, 0, 0, 340, 146,0 }, - {3765,3765, 0, 0, 1166, 400,0 }, - {3766,3766, 0, 0, 1346, 660,0 }, - {3767,3767, 0, 0, 1260, 393,0 }, - {3768,3768, 0, 0, 3646, 1186,0 }, - {3769,3769, 0, 0, 2713, 400,0 }, - {3770,3770, 0, 0, 1780, 73,0 }, - {3771,3771, 0, 0, 800, 213,0 }, - {3772,3772, 0, 0, 660, 173,0 }, - {3773,3773, 0, 0, 12146, 73,0 }, - {3774,3774, 0, 0, 273, 60,0 }, - {3775,3775, 0, 0, 40000, 73,0 }, - {3776,3776, 0, 0, 380, 53,0 }, - {3777,3777, 0, 0, 40000, 200,0 }, - {3778,3778, 0, 0, 586, 20,0 }, - {3779,3779, 0, 2, 6, 0,0 }, - { 738, 738, 44, 0, 840, 340,0 }, - {3780,3780, 36, 0, 7366, 140,0 }, - {3781,3781, 32, 0, 100, 0,0 }, - {2030,2030, 60, 0, 293, 126,0 }, - {3782,3782, 24, 0, 100, 0,0 }, - {3783,3783, 60, 0, 126, 73,0 }, - {3784,3784, 44, 0, 393, 93,0 }, - { 132, 132, 44, 0, 173, 100,0 }, - {3785,3785, 47, 0, 393, 93,0 }, - { 152, 152, 44, 0, 213, 86,0 }, - {3784,3784, 50, 0, 393, 93,0 }, - { 139, 139, 44, 0, 293, 100,0 }, - {3784,3784, 54, 0, 393, 93,0 }, - {3784,3784, 57, 0, 393, 93,0 }, - {3786,3786, 60, 0, 1900, 666,0 }, - {3784,3784, 60, 0, 393, 93,0 }, - {3787,3787, 60, 0, 1900, 666,0 }, - {3788,3788, 60, 0, 1886, 666,0 }, - {3789,3789, 60, 0, 1866, 653,0 }, - {3790,3790, 60, 0, 1873, 633,0 }, - {3791,3791, 44, 0, 946, 333,0 }, - {2037,2037, 44, 0, 213, 126,0 }, - { 144, 144, 44, 0, 213, 126,0 }, - {2038,2038, 44, 0, 106, 0,0 }, - {3792,3792, 44, 0, 380, 360,0 }, - {3793,3793, 44, 0, 520, 206,0 }, - {3794,3794, 45, 0, 273, 100,0 }, - {3795,3795, 33, 0, 326, 106,0 }, - {3796,3796, 56, 0, 506, 200,0 }, - {3796,3796, 51, 0, 506, 200,0 }, - {3797,3797, 44, 0, 126, 66,0 }, - {3798,3798, 44, 0, 553, 186,0 }, - {3534,3534, 56, 0, 240, 100,0 }, - { 158, 158, 68, 0, 126, 140,0 }, - {3799,3799, 51, 0, 513, 206,0 }, - {3800,3800, 46, 0, 506, 200,0 }, - {3801,3801, 44, 0, 513, 206,0 }, - {3802,3802, 44, 0, 3720, 1260,0 }, - { 152, 152, 45, 0, 220, 80,0 }, - {3803,3803, 0, 0, 40000, 86,0 }, - {3804,3804, 0, 0, 40000, 226,0 }, - {3805,3805, 0, 0, 40000, 73,0 }, - {3806,3806, 0, 0, 40000, 73,0 }, - {3807,3807, 0, 0, 40000, 93,0 }, - {3808,3808, 0, 0, 4653, 660,0 }, - {3809,3809, 0, 0, 6686, 2246,0 }, - {3810,3810, 0, 0, 1180, 413,0 }, - {3811,3811, 0, 0, 966, 293,0 }, - {3812,3812, 0, 0, 1780, 66,0 }, - {3780,3780, 45, 0, 5900, 113,0 }, - {3061,3061, 45, 0, 40000, 0,0 }, - {3813,3813, 60, 0, 126, 226,0 }, - {3781,3781, 60, 0, 93, 0,0 }, - {3814,3814, 44, 0, 393, 86,0 }, - {3815,3815, 57, 0, 166, 80,0 }, - {3816,3816, 56, 0, 240, 100,0 }, - {3817,3817, 60, 0, 113, 0,0 }, - {3818,3818, 60, 0, 113, 0,0 }, - {3517,3517, 45, 0, 213, 213,0 }, - {3819,3819, 0, 0, 4033, 100,0 }, - {3820,3820, 0, 0, 5200, 873,0 }, - {3821,3821, 0, 0, 40000, 0,0 }, - {3822,3822, 0, 0, 10493, 160,0 }, - {3823,3823, 0, 0, 40000, 740,0 }, - {3824,3825, 0, 1, 40000, 366,0.078125 }, - {3826,3826, 0, 0, 40000, 5100,0 }, - {3827,3827, 0, 0, 40000, 766,0 }, - {3828,1172, 0, 1, 40000, 780,0.15625 }, - {3829,3829, 0, 0, 40000, 60,0 }, - {3830,3830, 0, 0, 566, 133,0 }, - {3831,3831, 32, 0, 146, 0,0 }, - {3832,3832, 36, 0, 273, 0,0 }, - {3833,3833, 88, 0, 340, 120,0 }, - {3834,3834, 0, 0, 9006, 240,0 }, - {3835,3835, 0, 0, 9206, 246,0 }, - {3836,3836, 0, 0, 9246, 386,0 }, - {3837,3837, 0, 0, 9440, 220,0 }, - {3838,3838, 0, 0, 8900, 133,0 }, - {3839,3839, 0, 0, 9400, 253,0 }, - {3840,3840, 0, 0, 4613, 420,0 }, - {3841,3841, 0, 0, 9233, 426,0 }, - {3842,3842, 0, 0, 40000, 526,0 }, - {3843,3843, 0, 0, 40000, 640,0 }, - {3844,3844, 0, 0, 40000, 666,0 }, - {3845,3845, 0, 0, 40000, 1053,0 }, - {3846,3846, 0, 0, 40000, 173,0 }, - {3847,3847, 0, 0, 40000, 246,0 }, - {3848,3848, 0, 0, 40000, 226,0 }, - {3849,3849, 0, 0, 4073, 233,0 }, - {3850,3850, 0, 0, 14286, 326,0 }, - {3851,3851, 0, 0, 9233, 146,0 }, - {3852,3852, 0, 0, 4480, 133,0 }, - {3853,3853, 0, 0, 40000, 53,0 }, - {3854,3854, 0, 0, 40000, 126,0 }, - {3855,3855, 0, 0, 40000, 126,0 }, - {3856,3856, 0, 0, 18226, 146,0 }, - {3857,3857, 0, 0, 40000, 326,0 }, - {3858,3858, 0, 0, 40000, 0,0 }, - {3859,3859, 0, 0, 40000, 300,0 }, - {3860,3860, 0, 0, 40000, 0,0 }, - {3861,3861, 0, 0, 40000, 0,0 }, - {3862,3862, 0, 0, 40000, 0,0 }, - {3863,3863, 0, 0, 40000, 140,0 }, - {3864,3864, 0, 0, 40000, 153,0 }, - {3865,3865, 0, 0, 40000, 233,0 }, - {3866,3866, 0, 0, 40000, 186,0 }, - {3867,3867, 0, 0, 40000, 413,0 }, - {3868,3868, 0, 0, 40000, 373,0 }, - {3869,3869, 0, 0, 1246, 440,0 }, - {3870,3870, 0, 0, 4620, 1513,0 }, - {3871,3871, 0, 0, 40000, 433,0 }, - {3872,3872, 0, 0, 40000, 453,0 }, - {3873,3873, 0, 0, 40000, 1440,0 }, - {3874,3874, 0, 0, 40000, 480,0 }, - {3875,3875, 0, 0, 40000, 1360,0 }, - {3876,3876, 0, 0, 40000, 0,0 }, - {3877,3877, 0, 0, 40000, 353,0 }, - {3878,3878, 0, 0, 40000, 86,0 }, - {3879,3879, 0, 0, 40000, 126,0 }, - {3880,3880, 0, 0, 40000, 73,0 }, - {3881,3881, 0, 0, 40000, 80,0 }, - {3882,3882, 0, 0, 40000, 246,0 }, - {3883,3883, 0, 0, 40000, 93,0 }, - {3884,3884, 0, 0, 40000, 120,0 }, - {3885,3885, 0, 0, 40000, 180,0 }, - {3886,3886, 0, 0, 40000, 133,0 }, - {3887,3887, 0, 0, 40000, 133,0 }, - {3888,3888, 0, 0, 40000, 153,0 }, - {3889,3889, 0, 0, 40000, 93,0 }, - {3890,3890, 0, 0, 40000, 140,0 }, - {3891,3891, 0, 0, 40000, 100,0 }, - {3892,3892, 0, 0, 40000, 146,0 }, - {3893,3893, 0, 0, 40000, 126,0 }, - {3894,3894, 0, 0, 40000, 160,0 }, - {3895,3895, 0, 0, 40000, 226,0 }, - {3896,3896, 0, 0, 40000, 140,0 }, - {3897,3897, 0, 0, 40000, 200,0 }, - {3898,3898, 0, 0, 40000, 66,0 }, - {3899,3899, 0, 0, 40000, 446,0 }, - {3900,3900, 0, 0, 40000, 140,0 }, - {3901,3901, 0, 0, 40000, 400,0 }, - {3902,3902, 0, 0, 40000, 373,0 }, - {3903,3903, 0, 0, 40000, 1306,0 }, - {3904,3904, 0, 0, 40000, 186,0 }, - {3905,3905, 0, 0, 40000, 640,0 }, - {3906,3906, 0, 0, 40000, 346,0 }, - {3907,3907, 0, 0, 40000, 140,0 }, - {3908,3908, 0, 0, 40000, 253,0 }, - {3909,3909, 0, 0, 8980, 746,0 }, - {3910,3910, 0, 0, 40000, 1266,0 }, - {3911,3911, 0, 0, 40000, 1306,0 }, - {3912,3912, 0, 0, 7226, 593,0 }, - {3913,3913, 0, 0, 40000, 140,0 }, - {3914,3914, 0, 0, 40000, 220,0 }, - {3915,3915, 0, 0, 40000, 146,0 }, - {3916,3916, 0, 0, 4606, 1506,0 }, - {3917,3917, 0, 0, 40000, 80,0 }, - {3918,3918, 0, 0, 40000, 0,0 }, - {3919,3919, 0, 0, 40000, 0,0 }, - {3920,3920, 0, 0, 613, 226,0 }, - {3921,3921, 0, 0, 9073, 2946,0 }, - {3922,3922, 0, 0, 40000, 73,0 }, - {3923,3923, 0, 0, 3726, 200,0 }, - {3924,3924, 0, 0, 3680, 373,0 }, - {3925,3925, 0, 0, 7113, 186,0 }, - {3926,3926, 0, 0, 2406, 106,0 }, - {3927,3927, 0, 0, 40000, 0,0 }, - {3928,3928, 0, 0, 40000, 253,0 }, - {3929,3929, 0, 0, 40000, 0,0 }, - {3930,3930, 0, 0, 40000, 80,0 }, - {3931,3931, 0, 0, 40000, 86,0 }, - {3932,3932, 0, 0, 18186, 740,0 }, - {3933,3933, 0, 0, 18426, 813,0 }, - { 523, 523, 0, 0, 200, 260,0 }, - {3934,3934, 0, 0, 340, 146,0 }, - {3935,3935, 0, 0, 366, 260,0 }, - {3936,3936, 48, 0, 126, 0,0 }, - {3937,3937, 27, 0, 200, 106,0 }, - {3938,3938, 40, 0, 1073, 800,0 }, - {3939,3939, 48, 0, 100, 0,0 }, - {3938,3938, 45, 0, 933, 666,0 }, - {3940,3940, 48, 0, 140, 333,0 }, - {3938,3938, 47, 0, 933, 666,0 }, - {3941,3941, 48, 0, 1840, 0,0 }, - {3938,3938, 49, 0, 953, 686,0 }, - {3938,3938, 53, 0, 906, 686,0 }, - {3938,3938, 56, 0, 913, 693,0 }, - { 129, 129, 52, 0, 293, 126,0 }, - { 130, 130, 48, 0, 173, 93,0 }, - { 129, 129, 58, 0, 286, 126,0 }, - { 132, 132, 47, 0, 173, 100,0 }, - { 492, 492, 43, 0, 820, 306,0 }, - { 132, 132, 49, 0, 173, 93,0 }, - { 132, 132, 51, 0, 173, 93,0 }, - { 132, 132, 54, 0, 173, 93,0 }, - { 132, 132, 57, 0, 146, 86,0 }, - { 492, 492, 72, 0, 706, 300,0 }, - { 137, 137, 76, 0, 1900, 666,0 }, - { 138, 138, 84, 0, 740, 300,0 }, - { 139, 139, 36, 0, 353, 146,0 }, - { 140, 140, 76, 0, 1886, 680,0 }, - { 141, 141, 84, 0, 220, 113,0 }, - { 135, 135, 83, 0, 1353, 480,0 }, - { 142, 142, 84, 0, 386, 160,0 }, - {3942,3942, 24, 0, 2313, 780,0 }, - { 137, 137, 77, 0, 1893, 660,0 }, - { 144, 144, 60, 0, 213, 0,0 }, - { 145, 145, 65, 0, 180, 146,0 }, - { 146, 146, 59, 0, 173, 93,0 }, - { 147, 147, 51, 0, 266, 213,0 }, - { 148, 148, 45, 0, 513, 200,0 }, - { 149, 149, 71, 0, 246, 26,0 }, - { 150, 150, 60, 0, 500, 193,0 }, - { 151, 151, 58, 0, 513, 200,0 }, - { 152, 152, 53, 0, 220, 86,0 }, - { 153, 153, 64, 0, 113, 40,0 }, - { 154, 154, 71, 0, 840, 300,0 }, - { 156, 156, 61, 0, 166, 80,0 }, - { 158, 158, 48, 0, 173, 213,0 }, - { 159, 159, 69, 0, 126, 140,0 }, - { 160, 160, 68, 0, 126, 140,0 }, - { 161, 161, 63, 0, 326, 113,0 }, - { 162, 162, 74, 0, 860, 286,0 }, - { 163, 163, 60, 0, 386, 160,0 }, - { 164, 164, 80, 0, 1106, 273,0 }, - { 165, 165, 64, 0, 126, 66,0 }, - { 166, 166, 69, 0, 386, 80,0 }, - { 167, 167, 73, 0, 546, 306,0 }, - { 168, 168, 75, 0, 126, 140,0 }, - { 169, 169, 68, 0, 340, 320,0 }, - { 131, 131, 48, 0, 520, 200,0 }, - {3061,3061, 53, 0, 40000, 0,0 }, - {3943,3944, 0, 4, 2153, 0,0 }, - {3945,3946, 0, 4, 9060, 393,0 }, - { 174,3947, 0, 4, 6953, 0,0 }, - {3948,3949, 0, 4, 9386, 140,0 }, - { 9,3950, 0, 4, 1626, 426,0 }, - {3951,3952, 0, 4, 18466, 240,0 }, - {3953,3954, 0, 4, 4666, 1486,0 }, - { 15,3955, 0, 4, 5700, 1986,0 }, - {3956,3957, 0, 4, 40000, 100,0 }, - {3958,3959, 0, 4, 40000, 73,0 }, - {3960,3961, 0, 4, 40000, 73,0 }, - {3962,3963, 0, 4, 40000, 73,0 }, - {3964,3965, 0, 4, 18280, 153,0 }, - {3966,3965, 0, 4, 18686, 160,0 }, - { 31,3967, 0, 4, 40000, 0,0 }, - {3968,3969, 0, 4, 17966, 100,0 }, - {3970,3971, 0, 4, 40000, 66,0 }, - {3972,3971, 0, 4, 40000, 66,0 }, - {3973,3974, 0, 4, 40000, 46,0 }, - {3975,3976, 0, 4, 18693, 106,0 }, - {3977,3976, 0, 4, 18593, 106,0 }, - {3978,3979, 0, 4, 9366, 106,0 }, - {3980,3981, 0, 4, 9120, 226,0 }, - {3982,3983, 0, 4, 40000, 140,0 }, - {3984,3985, 0, 4, 40000, 800,0 }, - { 54,3986, 0, 4, 2520, 706,0 }, - {3987,3988, 0, 4, 40000, 86,0 }, - {3989,3990, 0, 4, 40000, 233,0 }, - {3991, 253, 0, 4, 40000, 66,0 }, - {3992,3992, 0, 0, 40000, 0,0 }, - {3993,3993, 0, 0, 40000, 120,0 }, - {3994,3995, 0, 4, 40000, 80,0 }, - {3996,3997, 0, 4, 40000, 73,0 }, - {3998,3999, 0, 4, 40000, 86,0 }, - {1503,4000, 0, 4, 40000, 93,0 }, - { 88,4001, 0, 4, 40000, 1220,0 }, - {3743,4002, 0, 4, 7706, 1260,0 }, - { 92,4003, 0, 4, 40000, 186,0 }, - { 93,4004, 0, 4, 40000, 813,0 }, - { 94,4005, 0, 4, 7720, 1260,0 }, - { 96,4006, 0, 4, 40000, 2460,0 }, - { 103,4007, 0, 4, 3720, 1240,0 }, - { 104,4008, 0, 4, 3020, 1226,0 }, - { 105,4009, 0, 4, 6086, 2453,0 }, - { 107,4010, 0, 4, 2100, 760,0 }, - { 108,4011, 0, 4, 40000, 73,0 }, - { 110,4012, 0, 4, 40000, 100,0 }, - { 111,4013, 0, 4, 2366, 820,0 }, - {4014,4015, 0, 4, 1026, 326,0 }, - { 115,4016, 0, 4, 1853, 0,0 }, - { 118,4017, 0, 4, 1553, 53,0 }, - { 119,4018, 0, 4, 593, 0,0 }, - { 120,4019, 0, 4, 2293, 1173,0 }, - { 121,4020, 0, 4, 10673, 3000,0 }, - { 123,4021, 0, 4, 7413, 2486,0 }, - { 124,4022, 0, 4, 40000, 1126,0 }, - { 125,4023, 0, 4, 40000, 1546,0 }, - {4024,4024, 35, 0, 706, 266,0 }, - {4025,4026, 38, 1, 273, 106,0 }, - {4027,4028, 38, 1, 366, 133,0 }, - {4029,4030, 48, 1, 280, 133,-1.90625 }, - {4031,4031, 51, 0, 113, 80,0 }, - {4032,4033, 48, 1, 953, 346,-1.90625 }, - {4034,4034, 61, 1, 3200, 540,0.09375 }, - {3369,1557, 70, 4, 833, 0,0 }, - {4035,4036, 79, 1, 1306, 513,0.078125 }, - {4037,4037, 62, 0, 5200, 466,0 }, - {4038,4039, 67, 1, 2153, 1080,0.078125 }, - {4040,4040, 62, 1, 3226, 573,0.09375 }, - {4041,4042, 54, 1, 286, 133,0 }, - {4041,4043, 48, 1, 286, 126,0 }, - { 389, 389, 42, 0, 266, 73,0 }, - {4044,4045, 48, 1, 280, 126,0 }, - {4046,4047, 48, 1, 380, 60,0 }, - {4048,4048, 16, 0, 180, 20,0 }, - {4049,4049, 16, 0, 740, 20,0 }, - {4050,4051, 64, 4, 1366, 0,0 }, - { 844, 844,244, 2, 6, 0,0 }, - { 855, 855,244, 2, 6, 0,0 }, - { 880, 880,232, 0, 253, 80,0 }, - { 882, 882,220, 0, 40000, 266,0 }, - { 887, 887, 35, 0, 133, 46,0 }, - { 884, 884, 35, 0, 233, 80,0 }, - { 885, 885, 35, 0, 226, 86,0 }, - { 886, 886, 35, 0, 113, 0,0 }, - { 361, 361, 35, 0, 286, 73,0 }, - { 767, 767, 35, 0, 3020, 786,0 }, - { 888, 888, 35, 0, 246, 53,0 }, - {2141,2141, 35, 0, 186, 73,0 }, - { 891, 891, 35, 0, 713, 266,0 }, - {2142,2142, 35, 0, 200, 100,0 }, - {2143,2143, 35, 0, 220, 80,0 }, - {2144,2144, 35, 0, 2393, 100,0 }, - {2145,2145, 35, 0, 1980, 813,0 }, - { 376, 376, 35, 0, 1880, 840,0 }, - { 895, 895, 35, 0, 366, 140,0 }, - {2146,2146, 35, 0, 346, 106,0 }, - { 382, 382, 35, 0, 1073, 113,0 }, - {2147,2147, 35, 0, 106, 80,0 }, - { 898, 898, 35, 0, 206, 153,0 }, - { 899, 899, 35, 0, 633, 240,0 }, - { 900, 900, 35, 0, 620, 240,0 }, - { 871, 871, 35, 0, 380, 73,0 }, - { 388, 388, 35, 0, 286, 80,0 }, - { 901, 901, 35, 0, 260, 26,0 }, - { 902, 902, 35, 0, 1093, 73,0 }, - { 903, 903, 35, 0, 126, 73,0 }, - {3500,3500, 35, 2, 6, 0,0 }, - {4052,4052, 0, 0, 14166, 320,0 }, - {4053,4053, 0, 0, 7413, 653,0 }, - {4054,4054, 0, 0, 40000, 146,0 }, - {4055,4055, 0, 0, 40000, 113,0 }, - {4056,4056, 0, 0, 16773, 193,0 }, - {4057,4057, 0, 0, 40000, 73,0 }, - {4058,4058, 0, 0, 40000, 0,0 }, - {4059,4059, 0, 0, 966, 373,0 }, - {4060,4060, 0, 0, 40000, 80,0 }, - {4061,4061, 0, 0, 40000, 80,0 }, - {4062,4062, 0, 0, 18473, 93,0 }, - {4063,4063, 0, 0, 40000, 60,0 }, - {4064,4064, 0, 0, 40000, 73,0 }, - {4065,4065, 0, 0, 40000, 0,0 }, - {4066,4066, 0, 0, 40000, 213,0 }, - {4067,4067, 0, 0, 40000, 66,0 }, - {4068,4068, 0, 0, 1413, 1026,0 }, - {4069,4069, 0, 0, 506, 200,0 }, - {4070,4070, 0, 0, 3793, 1106,0 }, - {4071,4071, 0, 0, 40000, 220,0 }, - {4072,4072, 0, 0, 40000, 46,0 }, - {4073,4073, 0, 0, 40000, 0,0 }, - {4074,4074, 0, 0, 40000, 60,0 }, - {4075,4075, 0, 0, 40000, 0,0 }, - {4076,4076, 0, 0, 40000, 33,0 }, - {4077,4077, 0, 0, 40000, 0,0 }, - {4078,4078, 0, 0, 40000, 146,0 }, - {4079,4079, 0, 0, 40000, 66,0 }, - {4080,4080, 0, 0, 40000, 353,0 }, - {4081,4081, 0, 0, 40000, 66,0 }, - {4082,4082, 0, 0, 40000, 53,0 }, - {4083,4083, 0, 0, 40000, 73,0 }, - {4084,4084, 0, 0, 40000, 66,0 }, - {4085,4085, 0, 0, 40000, 926,0 }, - {4086,4086, 0, 0, 2833, 200,0 }, - { 127, 127, 36, 0, 386, 166,0 }, - {4087,4087, 36, 0, 100, 0,0 }, - {2030,2030, 36, 0, 346, 140,0 }, - {3782,3782, 48, 0, 93, 0,0 }, - {3783,3783, 36, 0, 146, 0,0 }, - {4088,4088, 48, 0, 1886, 653,0 }, - { 132, 132, 69, 0, 126, 66,0 }, - {4088,4088, 52, 0, 1853, 626,0 }, - { 152, 152, 48, 0, 220, 86,0 }, - {4088,4088, 55, 0, 1886, 640,0 }, - { 139, 139, 57, 0, 293, 133,0 }, - {4088,4088, 58, 0, 1860, 633,0 }, - {4088,4088, 60, 0, 1886, 633,0 }, - {4089,4089, 62, 0, 2660, 900,0 }, - {4088,4088, 63, 0, 1880, 646,0 }, - { 134, 134, 70, 0, 966, 360,0 }, - {4090,4090, 70, 0, 973, 346,0 }, - {4091,4091, 53, 0, 1866, 640,0 }, - {3516,3516, 48, 0, 180, 93,0 }, - {4092,4092, 84, 0, 1360, 473,0 }, - {4093,4093, 43, 0, 513, 206,0 }, - {4094,4094, 56, 0, 1353, 480,0 }, - {3791,3791, 24, 0, 1866, 613,0 }, - { 134, 134, 65, 0, 1346, 486,0 }, - { 146, 146, 48, 0, 173, 93,0 }, - { 146, 146, 54, 0, 173, 93,0 }, - {4095,4095, 42, 0, 246, 140,0 }, - {4095,4095, 39, 0, 240, 133,0 }, - {3816,3816, 52, 0, 306, 113,0 }, - {4096,4096, 52, 0, 413, 86,0 }, - { 158, 158, 60, 0, 146, 166,0 }, - { 158, 158, 66, 0, 146, 166,0 }, - { 158, 158, 59, 0, 146, 166,0 }, - {3538,3538, 91, 0, 773, 233,0 }, - {3547,3547,109, 0, 5300, 1786,0 }, - {4097,4097, 79, 0, 560, 313,0 }, - {4098,4098, 0, 0, 10646, 73,0 }, - {4099,4100, 0, 1, 14166, 586,0.03125 }, - {4101,4102, 0, 1, 15553, 546,0.03125 }, - {4103,4104, 0, 1, 11746, 320,0.046875 }, - {4105,4106, 0, 1, 14706, 646,0.15625 }, - {4107,4108, 0, 1, 7320, 100,0.046875 }, - {4109,4110, 0, 1, 40000, 0,0.0625 }, - {4111,4112, 0, 1, 13660, 260,0 }, - {4113,4114, 0, 1, 15026, 133,0 }, - {4115,4116, 0, 1, 40000, 0,2.5e-05 }, - {4117,4118, 0, 1, 4980, 3400,0 }, - {4119,4120, 0, 1, 7840, 2660,0.046875 }, - {4121,4122, 0, 1, 8326, 180,0 }, - {4123,4124, 0, 1, 1093, 140,0 }, - {4125,4126, 0, 1, 2280, 400,0 }, - {4127,4128, 0, 1, 4553, 1486,0.03125 }, - {4129,4129, 0, 1, 40000, 0,0.03125 }, - {4130,4131, 0, 1, 40000, 60,0.15625 }, - {4132,4133, 0, 1, 40000, 93,0.078125 }, - {4134,4135, 0, 1, 40000, 86,0.15625 }, - {4136,4137, 0, 1, 40000, 520,0.03125 }, - {4138,4139, 0, 1, 40000, 140,0.0625 }, - {4140,4141, 0, 1, 40000, 133,0.140625 }, - {4142,4143, 0, 1, 40000, 73,0 }, - {4144,4145, 0, 1, 40000, 346,0.109375 }, - {4146,4147, 0, 1, 3693, 86,0 }, - {4148,4149, 0, 1, 6586, 460,2.5e-05 }, - {4150,4151, 0, 1, 4320, 93,0 }, - {4152,4153, 0, 1, 7346, 126,0.046875 }, - {4154,4155, 0, 1, 3633, 260,0 }, - {4156,4157, 0, 1, 40000, 126,-1.95312 }, - {4158,4159, 0, 1, 40000, 126,-1.9375 }, - {4160,4161, 0, 1, 40000, 46,0.234375 }, - {4162,4163, 0, 1, 40000, 0,0.03125 }, - {4164,4165, 0, 1, 10320, 86,0 }, - {4166,4167, 0, 1, 12933, 133,0 }, - {4168,4169, 0, 1, 11820, 240,0.046875 }, - {4170,4171, 0, 1, 3966, 166,0 }, - {4172,4173, 0, 1, 40000, 0,0 }, - {4174,4174, 0, 0, 2666, 160,0 }, - {4175,4176, 0, 1, 15046, 93,0.078125 }, - {4177,4178, 0, 1, 40000, 100,0 }, - {4179,4179, 0, 0, 40000, 260,0 }, - {4180,4181, 0, 1, 40000, 126,2.5e-05 }, - {4182,4182, 0, 0, 40000, 233,0 }, - {4183,4184, 0, 1, 40000, 440,0.078125 }, - {4185,4186, 0, 1, 2160, 606,0.109375 }, - {4187,4188, 0, 1, 14753, 2400,0.03125 }, - {4189,4190, 0, 1, 7680, 646,0.03125 }, - {4191,4192, 0, 1, 40000, 446,0.0625 }, - {4193,4194, 0, 1, 40000, 866,-0.0625 }, - {4195,4195, 0, 1, 40000, 1220,0.078125 }, - {4196,4196, 0, 1, 40000, 1960,0.0625 }, - {4197,4198, 0, 1, 40000, 433,0.125 }, - {4199,4200, 0, 1, 40000, 140,0.140625 }, - {4201,4202, 0, 1, 40000, 806,0.109375 }, - {4203,4204, 0, 1, 2040, 486,0.125 }, - {4205,4206, 0, 1, 40000, 86,0 }, - {4207,4208, 0, 1, 40000, 80,0.03125 }, - {4209,4209, 0, 0, 40000, 73,0 }, - {4210,4210, 0, 0, 40000, 126,0 }, - {4211,4212, 0, 1, 40000, 400,0.0625 }, - {4213,4214, 0, 1, 40000, 120,0.0625 }, - {4215,4216, 0, 1, 40000, 0,0.09375 }, - {4217,4217, 0, 1, 40000, 0,0.125 }, - {4218,4219, 0, 1, 40000, 186,0 }, - {4220,4220, 0, 0, 40000, 166,0 }, - {4221,4221, 0, 0, 40000, 73,0 }, - {4222,4222, 0, 0, 40000, 60,0 }, - {4223,4224, 0, 1, 40000, 140,0 }, - {4225,4225, 0, 0, 40000, 140,0 }, - {4226,4226, 0, 0, 40000, 66,0 }, - {4227,4228, 0, 1, 40000, 133,0 }, - {4229,4229, 0, 0, 40000, 86,0 }, - {4230,4230, 0, 0, 40000, 73,0 }, - {4231,4231, 0, 0, 40000, 106,0 }, - {4232,4233, 0, 1, 40000, 186,0.03125 }, - {4234,4235, 0, 1, 40000, 86,0.046875 }, - {4236,4237, 0, 1, 40000, 0,0.03125 }, - {4238,4238, 0, 0, 40000, 300,0 }, - {4239,4239, 0, 0, 40000, 66,0 }, - {4240,4241, 0, 1, 40000, 73,0.125 }, - {4242,4243, 0, 1, 40000, 86,0.109375 }, - {4244,4245, 0, 1, 40000, 146,0.109375 }, - {4246,4247, 0, 1, 40000, 66,-0.03125 }, - {4248,4248, 0, 0, 40000, 60,0 }, - {4249,4250, 0, 1, 40000, 213,0.15625 }, - {4251,4252, 0, 1, 40000, 66,0.125 }, - {4253,4254, 0, 1, 40000, 100,0.03125 }, - {4255,4256, 0, 1, 40000, 1513,0.078125 }, - {4257,4258, 0, 1, 40000, 353,0.109375 }, - {4259,4260, 0, 1, 40000, 133,0.078125 }, - {4261,4262, 0, 1, 40000, 746,0.140625 }, - {4263,4264, 0, 1, 40000, 0,0.109375 }, - {4265,4266, 0, 1, 5033, 1606,0.0625 }, - {4267,4268, 0, 1, 40000, 1146,0.09375 }, - {4269,4270, 0, 1, 40000, 1586,0.109375 }, - {4271,4272, 0, 1, 40000, 0,0.09375 }, - {4273,4274, 0, 1, 40000, 1006,0.125 }, - {4275,4275, 0, 1, 2680, 793,0.109375 }, - {4276,4277, 0, 1, 40000, 0,-0.046875 }, - {4278,4279, 0, 1, 9000, 3186,0.125 }, - {4280,4281, 0, 1, 40000, 1073,-0.078125 }, - {4282,4283, 0, 1, 40000, 2093,0.140625 }, - {4284,4285, 0, 1, 40000, 0,0.078125 }, - {4286,4287, 0, 1, 9580, 713,0.03125 }, - {4288,4289, 0, 1, 6286, 380,0 }, - {4290,4291, 0, 1, 2220, 426,0.03125 }, - {4292,4292, 0, 0, 1166, 760,0 }, - {4293,4294, 0, 1, 1186, 240,0 }, - {4295,4296, 0, 1, 40000, 100,0.0625 }, - {4297,4297, 0, 0, 40000, 160,0 }, - {4298,4298, 0, 0, 40000, 120,0 }, - {4299,4299, 0, 0, 8673, 2413,0 }, - {4300,4300, 0, 0, 393, 126,0 }, - {4301,4302, 0, 1, 1220, 393,0.03125 }, - {4303,4303, 0, 0, 246, 93,0 }, - {4304,4305, 0, 1, 1953, 393,0 }, - {4306,4307, 0, 1, 566, 146,0 }, - {4308,4309, 0, 1, 4220, 133,0 }, - {4310,4311, 0, 1, 2873, 73,0.109375 }, - {4312,4312, 0, 0, 613, 60,0 }, - {4313,4314, 0, 1, 40000, 186,0 }, - {4315,4316, 0, 1, 11880, 2993,0 }, - {4317,4317, 0, 0, 1573, 86,0 }, - {4318,4319, 0, 1, 40000, 793,0 }, - {4320,4321, 0, 1, 40000, 173,0 }, - {4322,4323, 0, 1, 40000, 793,0 }, - {4324,4324, 0, 0, 606, 133,0 }, - {4325,4325, 34, 0, 133, 40,0 }, - {4326,4326, 28, 0, 193, 46,0 }, - {4327,4328, 39, 1, 553, 126,0 }, - {4327,4328, 33, 1, 553, 126,0 }, - {4329,4330, 63, 1, 160, 80,0 }, - {4331,4331, 15, 0, 113, 0,0 }, - {4332,4332, 36, 0, 106, 0,0 }, - {4332,4333, 36, 1, 480, 173,0.40625 }, - {4334,4335, 25, 1, 313, 153,0 }, - {4336,4335, 25, 1, 206, 100,0 }, - {4337,4338, 61, 1, 153, 93,0 }, - {4339,4340, 38, 1, 340, 133,0 }, - {4341,4342, 37, 1, 206, 93,0 }, - {4343,4344, 15, 1, 346, 153,0 }, - {4345,4346,100, 1, 146, 0,0.140625 }, - {4347,4348, 19, 1, 553, 200,0 }, - {4349,4349, 48, 0, 180, 86,0 }, - {4350,4351, 15, 1, 333, 153,0 }, - {4352,4353, 12, 1, 340, 146,0 }, - {4354,4355, 11, 1, 346, 146,0 }, - {4356,4357, 61, 1, 2706, 1033,0.09375 }, - {4358,4355, 8, 1, 340, 146,0 }, - {4359,4360, 91, 1, 1166, 366,-0.046875 }, - {4361,4361, 70, 0, 966, 346,0 }, - {4362,4363, 80, 1, 300, 93,0.125 }, - {4364,4364, 58, 0, 206, 53,0 }, - {4365,4357, 62, 1, 2333, 820,0.09375 }, - {4366,4367, 31, 1, 773, 200,0 }, - {4368,4360, 91, 1, 1160, 360,-0.03125 }, - {4369,4370, 41, 1, 373, 113,0 }, - {4371,4372, 35, 1, 406, 126,0 }, - {4373,4374, 29, 1, 146, 106,0 }, - {4375,4376, 41, 1, 400, 126,0 }, - {4375,4376, 37, 1, 400, 126,0 }, - {4377,4378, 54, 1, 286, 133,0 }, - {4377,4379, 48, 1, 286, 126,0 }, - {4380,4381, 77, 1, 193, 93,0 }, - {4382,4383, 72, 1, 200, 93,0 }, - {4384,4384, 40, 0, 513, 0,0 }, - {4385,4385, 38, 0, 200, 20,0 }, - {4386,4386, 36, 0, 620, 20,0 }, - {4387,4388, 60, 1, 120, 80,0 }, - {4388,4389, 60, 1, 380, 80,0 }, - {4390,4390, 73, 0, 166, 33,0 }, - {4391,4392, 68, 1, 153, 40,0 }, - {4393,4394, 18, 1, 200, 80,0 }, - {4395,4396, 18, 1, 253, 73,0 }, - {4397,4397, 90, 0, 193, 20,0 }, - {4398,4398, 90, 0, 793, 40,0 }, - {4399,4400, 64, 1, 373, 73,0.03125 }, - {4401,4402, 80, 1, 406, 153,0.03125 }, - {4403,4404, 64, 1, 1866, 606,0 }, - {4405,4405, 67, 0, 106, 26,0 }, - {4406,4407, 50, 1, 173, 0,0 }, - {4408,4408, 36, 0, 4646, 0,0 }, - {4409,4409, 0, 0, 40000, 86,0 }, - {4410,4410, 0, 0, 40000, 73,0 }, - {4411,4411, 0, 0, 2433, 700,0 }, - {4412,4412, 0, 0, 1233, 26,0 }, - {4413,4413, 0, 0, 40000, 66,0 }, - {4414,4414, 0, 0, 40000, 60,0 }, - {4415,4415, 0, 0, 40000, 60,0 }, - {4416,4416, 0, 0, 40000, 66,0 }, - {4417,4417, 0, 0, 40000, 66,0 }, - {4418,4418, 0, 0, 40000, 0,0 }, - {4418,4418, 73, 0, 40000, 0,0 }, - {4419,4419, 0, 0, 40000, 60,0 }, - {4420,4420, 0, 0, 40000, 60,0 }, - {4421,4421, 0, 0, 7326, 2486,0 }, - {4422,4422, 0, 0, 4886, 1586,0 }, - {4423,4423, 0, 0, 646, 20,0 }, - {4424,4424, 0, 0, 253, 20,0 }, - {4424,4424, 12, 0, 253, 20,0 }, - {4425,4425, 0, 0, 640, 100,0 }, - {4425,4425, 1, 0, 640, 106,0 }, - {4426,4426, 0, 0, 133, 106,0 }, - {4426,4426, 23, 0, 133, 106,0 }, - {4427,4427, 0, 0, 653, 100,0 }, - {4428,4428, 0, 0, 4166, 1546,0 }, - {4429,4429, 0, 0, 40000, 73,0 }, - {4430,4430, 0, 0, 40000, 60,0 }, - {4431,4431, 0, 0, 40000, 53,0 }, - {4432,4432, 0, 0, 40000, 0,0 }, - {4433,4433, 0, 0, 246, 20,0 }, - {4434,4434, 0, 2, 6, 0,0 }, - {4435,4435, 0, 0, 4946, 233,0 }, - {4436,4436, 0, 0, 4946, 233,0 }, - {4437,4437, 0, 0, 4953, 240,0 }, - {4438,4438, 0, 0, 4946, 233,0 }, - {4439,4439, 0, 0, 18233, 46,0 }, - {4440,4440, 0, 0, 2386, 26,0 }, - {4441,4441, 0, 0, 4640, 633,0 }, - {4442,4442, 0, 0, 18466, 100,0 }, - {4443,4443, 0, 0, 18440, 66,-2 }, - {4444,4444, 0, 0, 18440, 6140,-2 }, - {4445,4445, 0, 0, 1206, 433,-2 }, - {4446,4446, 0, 0, 4626, 240,0 }, - {4447,4447, 0, 0, 726, 400,0 }, - {4448,4448, 0, 0, 5866, 73,0 }, - {4449,4449, 0, 0, 40000, 73,0 }, - {4450,4450, 0, 0, 40000, 73,0 }, - {4451,4451, 0, 0, 40000, 73,0 }, - {4452,4452, 0, 0, 40000, 73,0 }, - {4453,4453, 0, 0, 6500, 346,0 }, - {4454,4454, 0, 0, 6506, 346,0 }, - {4455,4455, 0, 0, 40000, 66,-2 }, - {4456,4456, 0, 0, 40000, 66,-2 }, - {4457,4457, 0, 0, 40000, 0,0 }, - {4458,4458, 0, 0, 40000, 46,0 }, - {4459,4459, 0, 0, 40000, 0,0 }, - {4459,4459, 0, 0, 40000, 0,-2 }, - {4460,4460, 0, 0, 2386, 26,0 }, - {4461,4461, 0, 0, 40000, 73,-2 }, - {4462,4462, 0, 0, 5866, 26,-2 }, - {4463,4463, 0, 0, 40000, 133,0 }, - {4464,4464, 0, 0, 40000, 133,0 }, - {4465,4465, 0, 0, 40000, 126,0 }, - {4466,4466, 0, 0, 253, 20,0 }, - {4467,4467, 0, 0, 8866, 1366,0 }, - {4468,4468, 0, 0, 1040, 766,0 }, - {4469,4469, 0, 0, 40000, 146,-2 }, - {4470,4470, 0, 0, 40000, 153,-2 }, - {4471,4471, 0, 0, 40000, 466,-2 }, - {4472,4472, 0, 0, 40000, 66,0 }, - {4473,4473, 0, 0, 2333, 566,0 }, - {4474,4474, 0, 0, 40000, 140,-2 }, - {4475,4475, 0, 0, 40000, 100,-2 }, - {4476,4476, 0, 0, 40000, 226,-2 }, - {4477,4477, 0, 0, 40000, 0,0 }, - {3712,3712, 0, 0, 40000, 226,-2 }, - {4478,4478, 0, 0, 40000, 140,-2 }, - {4479,4479, 0, 0, 40000, 66,0 }, - {4480,4480, 0, 0, 40000, 73,0 }, - {4481,4481, 0, 0, 40000, 73,0 }, - {4482,4482, 0, 0, 40000, 86,-2 }, - {4483,4483, 0, 0, 40000, 80,0 }, - {4484,4484, 0, 0, 40000, 73,-2 }, - {4485,4485, 0, 0, 40000, 80,-2 }, - {4486,4486, 0, 0, 40000, 73,-2 }, - {4487,4487, 0, 0, 40000, 73,0 }, - {4488,4488, 0, 0, 40000, 73,0 }, - {4489,4489, 0, 0, 40000, 93,0 }, - {4490,4490, 0, 0, 40000, 73,0 }, - {4491,4491, 0, 0, 11946, 13,0 }, - {4492,4492, 0, 0, 40000, 73,0 }, - {4462,4462, 0, 0, 5866, 26,0 }, - {4493,4493, 0, 0, 40000, 820,0 }, - {4494,4494, 0, 0, 2153, 873,0 }, - {1221,1221, 0, 0, 40000, 293,0.171875 }, - {4495,4495, 0, 0, 1620, 120,0 }, - {4496,4496, 0, 0, 15120, 93,0 }, - {4497,4497, 0, 0, 14613, 93,0 }, - {4498,4498, 0, 0, 2346, 793,0 }, - {4499,4499, 0, 0, 40000, 2380,0 }, - {4500,4500, 0, 0, 40000, 1280,0 }, - {4501,4501, 0, 0, 40000, 1460,0 }, - {4502,4502, 0, 0, 40000, 2513,0 }, - {4503,4503, 0, 0, 14840, 1266,0 }, - {4504,4504, 0, 0, 4513, 640,0 }, - {4505,4505, 0, 0, 4680, 806,0 }, - {4506,4506, 0, 0, 40000, 100,0 }, - {4507,4507, 0, 0, 40000, 66,0 }, - {4508,4508, 0, 0, 2420, 413,0 }, - {4509,4509, 0, 0, 406, 73,-2 }, - {4510,4510, 0, 0, 1166, 400,0 }, - {4511,4511, 0, 0, 1213, 106,0 }, - {4512,4512, 0, 0, 273, 60,-2 }, - {4513,4513, 0, 0, 40000, 2380,0 }, - {4514,4514, 0, 0, 40000, 440,0 }, - {1261,1261, 0, 0, 40000, 2960,0 }, - {4515,4515, 37, 0, 973, 73,-2 }, - {4516,4516, 48, 0, 106, 0,-2 }, - {4517,4517, 48, 0, 286, 133,-2 }, - {4518,4518, 62, 0, 166, 60,0 }, - {4519,4519, 44, 0, 980, 360,0 }, - {4520,4520, 80, 0, 100, 0,0 }, - {4519,4519, 50, 0, 980, 346,0 }, - {4521,4521, 48, 0, 106, 0,-2 }, - {4519,4519, 55, 0, 973, 360,0 }, - {4522,4522, 61, 0, 513, 20,0 }, - {4519,4519, 58, 0, 966, 353,0 }, - {4519,4519, 63, 0, 973, 353,0 }, - {4523,4523, 71, 0, 1366, 580,0 }, - {4519,4519, 72, 0, 820, 306,0 }, - {4524,4524, 70, 0, 1886, 666,0 }, - {4523,4523, 88, 0, 1353, 560,0 }, - {4525,4525, 76, 0, 1873, 653,0 }, - {4526,4526, 84, 0, 260, 113,0 }, - {4523,4523, 68, 0, 1366, 553,0 }, - {4527,4527, 72, 0, 153, 53,0 }, - {4528,4528, 28, 0, 1193, 413,0 }, - {4524,4524, 81, 0, 1353, 480,0 }, - {4529,4529, 58, 0, 246, 120,-2 }, - {4529,4529, 55, 0, 246, 120,-2 }, - {4529,4529, 44, 0, 246, 120,-2 }, - {4529,4529, 49, 0, 246, 120,-2 }, - {4529,4529, 40, 0, 286, 133,-2 }, - {4530,4530, 55, 0, 740, 560,-2 }, - {4530,4530, 48, 0, 893, 693,-2 }, - {4531,4531, 52, 0, 513, 206,0 }, - {4531,4531, 45, 0, 513, 206,0 }, - {4532,4532, 48, 0, 173, 100,-2 }, - {4533,4533, 48, 0, 120, 266,-2 }, - {4534,4534, 48, 0, 253, 60,-2 }, - {4509,4509, 73, 0, 160, 20,-2 }, - {4509,4509, 68, 0, 160, 20,-2 }, - {4509,4509, 63, 0, 193, 20,-2 }, - {4535,4535,108, 0, 406, 26,0 }, - {4536,4536,108, 0, 740, 26,0 }, + { 0, 0, 0, 0, 9006, 133, 0, 0 }, + { 1, 1, 0, 0, 9206, 146, 0, 0 }, + { 2, 2, 0, 0, 9246, 240, 0, 0 }, + { 3, 3, 0, 0, 9440, 140, 0, 0 }, + { 4, 4, 0, 0, 8900, 120, 0, 0 }, + { 5, 5, 0, 0, 9400, 140, 0, 0 }, + { 6, 6, 0, 0, 7460, 380, 0, 0 }, + { 7, 7, 0, 0, 9226, 93, 0, 0 }, + { 8, 8, 0, 0, 4613, 420, 0, 0 }, + { 9, 9, 0, 0, 7286, 4713, 0, 0 }, + { 10, 10, 0, 0, 2280, 746, 0, 0 }, + { 11, 11, 0, 0, 9233, 240, 0, 0 }, + { 12, 12, 0, 0, 346, 153, 0, 0 }, + { 13, 13, 0, 0, 633, 233, 0, 0 }, + { 14, 14, 0, 0, 4660, 1573, 0, 0 }, + { 15, 15, 0, 0, 1166, 400, 0, 0 }, + { 16, 16, 0, 0, 40000, 126, 0, 0 }, + { 17, 17, 0, 0, 40000, 93, 0, 0 }, + { 18, 18, 0, 0, 40000, 93, 0, 0 }, + { 19, 19, 0, 0, 40000, 553, 0, 0 }, + { 20, 20, 0, 0, 40000, 660, 0, 0 }, + { 21, 21, 0, 0, 40000, 73, 0, 0 }, + { 22, 22, 0, 0, 40000, 146, 0, 0 }, + { 23, 23, 0, 0, 40000, 146, 0, 0 }, + { 24, 24, 0, 0, 4026, 100, 0, 0 }, + { 25, 25, 0, 0, 14286, 120, 0, 0 }, + { 26, 26, 0, 0, 9233, 106, 0, 0 }, + { 27, 27, 0, 0, 4480, 100, 0, 0 }, + { 28, 28, 0, 0, 40000, 60, 0, 0 }, + { 29, 29, 0, 0, 40000, 80, 0, 0 }, + { 30, 30, 0, 0, 40000, 80, 0, 0 }, + { 31, 31, 0, 0, 18226, 100, 0, 0 }, + { 32, 32, 0, 0, 40000, 0, 0, 0 }, + { 33, 33, 0, 0, 40000, 80, 0, 0 }, + { 34, 34, 0, 0, 40000, 0, 0, 0 }, + { 35, 35, 0, 0, 40000, 53, 0, 0 }, + { 36, 36, 0, 0, 40000, 0, 0, 0 }, + { 37, 37, 0, 0, 40000, 0, 0, 0 }, + { 38, 38, 0, 0, 40000, 0, 0, 0 }, + { 39, 39, 0, 0, 40000, 160, 0, 0 }, + { 40, 40, 0, 0, 40000, 233, 0, 0 }, + { 41, 41, 0, 0, 40000, 73, 0, 0 }, + { 42, 42, 0, 0, 40000, 233, 0, 0 }, + { 43, 43, 0, 0, 40000, 213, 0, 0 }, + { 44, 44, 0, 0, 1246, 453, 0, 0 }, + { 45, 45, 0, 0, 4580, 786, 0, 0 }, + { 46, 46, 0, 0, 6873, 1246, 0, 0 }, + { 47, 47, 0, 0, 40000, 100, 0, 0 }, + { 48, 48, 0, 0, 40000, 140, 0, 0 }, + { 49, 49, 0, 0, 40000, 393, 0, 0 }, + { 50, 50, 0, 0, 40000, 406, 0, 0 }, + { 51, 51, 0, 0, 40000, 373, 0, 0 }, + { 52, 52, 0, 0, 40000, 0, 0, 0 }, + { 53, 53, 0, 0, 40000, 360, 0, 0 }, + { 54, 54, 0, 0, 1060, 380, 0, 0 }, + { 55, 55, 0, 0, 40000, 80, 0, 0 }, + { 56, 56, 0, 0, 40000, 73, 0, 0 }, + { 57, 57, 0, 0, 40000, 66, 0, 0 }, + { 58, 58, 0, 0, 40000, 60, 0, 0 }, + { 59, 59, 0, 0, 40000, 73, 0, 0 }, + { 60, 60, 0, 0, 40000, 66, 0, 0 }, + { 61, 61, 0, 0, 40000, 86, 0, 0 }, + { 62, 62, 0, 0, 40000, 66, 0, 0 }, + { 63, 63, 0, 0, 40000, 73, 0, 0 }, + { 64, 64, 0, 0, 40000, 80, 0, 0 }, + { 65, 65, 0, 0, 40000, 80, 0, 0 }, + { 66, 66, 0, 0, 40000, 73, 0, 0 }, + { 67, 67, 0, 0, 40000, 73, 0, 0 }, + { 68, 68, 0, 0, 40000, 53, 0, 0 }, + { 69, 69, 0, 0, 40000, 73, 0, 0 }, + { 70, 70, 0, 0, 40000, 126, 0, 0 }, + { 71, 71, 0, 0, 40000, 73, 0, 0 }, + { 72, 72, 0, 0, 40000, 73, 0, 0 }, + { 73, 73, 0, 0, 40000, 73, 0, 0 }, + { 74, 74, 0, 0, 40000, 66, 0, 0 }, + { 75, 75, 0, 0, 40000, 153, 0, 0 }, + { 76, 76, 0, 0, 40000, 153, 0, 0 }, + { 77, 77, 0, 0, 40000, 146, 0, 0 }, + { 78, 78, 0, 0, 40000, 146, 0, 0 }, + { 79, 79, 0, 0, 40000, 66, 0, 0 }, + { 80, 80, 0, 0, 40000, 60, 0, 0 }, + { 81, 81, 0, 0, 40000, 86, 0, 0 }, + { 82, 82, 0, 0, 40000, 73, 0, 0 }, + { 83, 83, 0, 0, 40000, 66, 0, 0 }, + { 84, 84, 0, 0, 40000, 153, 0, 0 }, + { 85, 85, 0, 0, 40000, 233, 0, 0 }, + { 86, 86, 0, 0, 40000, 80, 0, 0 }, + { 87, 87, 0, 0, 40000, 400, 0, 0 }, + { 88, 88, 0, 0, 40000, 1373, 0, 0 }, + { 89, 89, 0, 0, 40000, 193, 0, 0 }, + { 90, 90, 0, 0, 40000, 1273, 0, 0 }, + { 91, 91, 0, 0, 40000, 186, 0, 0 }, + { 92, 92, 0, 0, 40000, 86, 0, 0 }, + { 93, 93, 0, 0, 40000, 286, 0, 0 }, + { 94, 94, 0, 0, 40000, 140, 0, 0 }, + { 95, 95, 0, 0, 7440, 2473, 0, 0 }, + { 96, 96, 0, 0, 40000, 1220, 0, 0 }, + { 97, 97, 0, 0, 4946, 2713, 0, 0 }, + { 98, 98, 0, 0, 40000, 160, 0, 0 }, + { 99, 99, 0, 0, 8966, 406, 0, 0 }, + { 100, 100, 0, 0, 40000, 1353, 0, 0 }, + { 101, 101, 0, 0, 40000, 1306, 0, 0 }, + { 102, 102, 0, 0, 40000, 933, 0, 0 }, + { 103, 103, 0, 0, 9086, 226, 0, 0 }, + { 104, 104, 0, 0, 7233, 326, 0, 0 }, + { 105, 105, 0, 0, 7286, 200, 0, 0 }, + { 106, 106, 0, 0, 14180, 4406, 0, 0 }, + { 107, 107, 0, 0, 1180, 406, 0, 0 }, + { 108, 108, 0, 0, 40000, 66, 0, 0 }, + { 109, 109, 0, 0, 40000, 213, 0, 0 }, + { 110, 110, 0, 0, 40000, 73, 0, 0 }, + { 111, 111, 0, 0, 4606, 413, 0, 0 }, + { 112, 112, 0, 0, 613, 240, 0, 0 }, + { 113, 113, 0, 0, 1166, 400, 0, 0 }, + { 114, 114, 0, 0, 200, 353, 0, 0 }, + { 115, 115, 0, 0, 4553, 1480, 0, 0 }, + { 116, 116, 0, 0, 3740, 1260, 0, 0 }, + { 117, 117, 0, 0, 7240, 2300, 0, 0 }, + { 118, 118, 0, 0, 3020, 73, 0, 0 }, + { 119, 119, 0, 0, 1626, 800, 0, 0 }, + { 120, 120, 0, 0, 2466, 620, 0, 0 }, + { 121, 121, 0, 0, 12053, 3160, 0, 0 }, + { 122, 122, 0, 0, 466, 120, 0, 0 }, + { 123, 123, 0, 0, 1000, 320, 0, 0 }, + { 124, 124, 0, 0, 380, 60, 0, 0 }, + { 125, 125, 0, 0, 40000, 200, 0, 0 }, + { 126, 126, 0, 0, 560, 86, 0, 0 }, + { 127, 127, 35, 0, 386, 160, 0, 0 }, + { 128, 128, 52, 0, 126, 26, 0, 0 }, + { 129, 129, 48, 0, 286, 126, 0, 0 }, + { 130, 130, 58, 0, 173, 93, 0, 0 }, + { 129, 129, 60, 0, 286, 126, 0, 0 }, + { 131, 131, 47, 0, 520, 200, 0, 0 }, + { 132, 132, 43, 0, 173, 93, 0, 0 }, + { 131, 131, 49, 0, 520, 200, 0, 0 }, + { 133, 133, 43, 0, 160, 80, 0, 0 }, + { 131, 131, 51, 0, 526, 206, 0, 0 }, + { 134, 134, 43, 0, 1860, 653, 0, 0 }, + { 131, 131, 54, 0, 520, 200, 0, 0 }, + { 131, 131, 57, 0, 520, 200, 0, 0 }, + { 135, 135, 72, 0, 1860, 633, 0, 0 }, + { 131, 131, 60, 0, 506, 200, 0, 0 }, + { 136, 136, 76, 0, 1566, 546, 0, 0 }, + { 137, 137, 84, 0, 1340, 466, 0, 0 }, + { 138, 138, 36, 0, 1220, 433, 0, 0 }, + { 139, 139, 65, 0, 293, 133, 0, 0 }, + { 140, 140, 84, 0, 1333, 460, 0, 0 }, + { 141, 141, 83, 0, 220, 113, 0, 0 }, + { 135, 135, 84, 0, 1366, 473, 0, 0 }, + { 142, 142, 24, 0, 1893, 633, 0, 0 }, + { 136, 136, 77, 0, 1586, 553, 0, 0 }, + { 143, 143, 60, 0, 173, 93, 0, 0 }, + { 144, 144, 65, 0, 213, 126, 0, 0 }, + { 145, 145, 59, 0, 173, 0, 0, 0 }, + { 146, 146, 51, 0, 173, 100, 0, 0 }, + { 147, 147, 45, 0, 260, 206, 0, 0 }, + { 148, 148, 71, 0, 433, 180, 0, 0 }, + { 149, 149, 60, 0, 280, 26, 0, 0 }, + { 150, 150, 58, 0, 500, 186, 0, 0 }, + { 151, 151, 53, 0, 513, 200, 0, 0 }, + { 152, 152, 64, 0, 220, 86, 0, 0 }, + { 153, 153, 71, 0, 106, 46, 0, 0 }, + { 154, 154, 61, 0, 993, 340, 0, 0 }, + { 155, 155, 61, 0, 1906, 640, 0, 0 }, + { 156, 156, 44, 0, 206, 86, 0, 0 }, + { 157, 157, 40, 0, 586, 140, 0, 0 }, + { 158, 158, 69, 0, 126, 140, 0, 0 }, + { 159, 159, 68, 0, 126, 140, 0, 0 }, + { 160, 160, 63, 0, 146, 166, 0, 0 }, + { 161, 161, 74, 0, 280, 100, 0, 0 }, + { 162, 162, 60, 0, 1026, 320, 0, 0 }, + { 163, 163, 80, 0, 226, 100, 0, 0 }, + { 164, 164, 64, 0, 2713, 913, 0, 0 }, + { 165, 165, 72, 0, 120, 66, 0, 0 }, + { 166, 166, 73, 0, 386, 80, 0, 0 }, + { 167, 167, 70, 0, 553, 306, 0, 0 }, + { 168, 168, 68, 0, 126, 140, 0, 0 }, + { 169, 169, 48, 0, 386, 373, 0, 0 }, + { 131, 131, 53, 0, 520, 206, 0, 0 }, + { 170, 170, 0, 0, 40000, 0, 0, 0 }, + { 171, 171, 0, 0, 40000, 73, 0, 0 }, + { 172, 173, 0, 4, 5886, 100, 0, 0 }, + { 174, 175, 0, 4, 6913, 0, 0, 0 }, + { 176, 177, 0, 4, 4873, 0, 0, 0 }, + { 178, 178, 0, 0, 40000, 0, 0, 0 }, + { 179, 180, 0, 4, 4653, 433, 0, 0 }, + { 181, 181, 0, 0, 2280, 746, 0, 0 }, + { 182, 182, 0, 0, 40000, 0, 0, 0 }, + { 183, 184, 0, 4, 626, 0, 0, 0 }, + { 185, 186, 0, 4, 4653, 1546, 0, 0 }, + { 187, 187, 0, 0, 1166, 400, 0, 0 }, + { 188, 189, 0, 4, 40000, 60, 0, 0 }, + { 190, 191, 0, 4, 40000, 60, 0, 0 }, + { 192, 193, 0, 4, 40000, 73, 0, 0 }, + { 194, 194, 0, 0, 40000, 73, 0, 0 }, + { 195, 196, 0, 4, 40000, 66, 0, 0 }, + { 197, 198, 0, 4, 40000, 86, 0, 0 }, + { 199, 200, 0, 4, 40000, 66, 0, 0 }, + { 201, 202, 0, 4, 3713, 100, 0, 0 }, + { 203, 204, 0, 4, 14753, 126, 0, 0 }, + { 205, 206, 0, 4, 9286, 146, 0, 0 }, + { 207, 208, 0, 4, 14713, 126, 0, 0 }, + { 209, 210, 0, 4, 4653, 0, 0, 0 }, + { 211, 212, 0, 4, 40000, 66, 0, 0 }, + { 213, 213, 0, 0, 40000, 73, 0, 0 }, + { 214, 215, 0, 4, 626, 0, 0, 0 }, + { 216, 217, 0, 4, 4066, 100, 0, 0 }, + { 218, 219, 0, 4, 14586, 193, 0, 0 }, + { 220, 221, 0, 4, 2813, 106, 0, 0 }, + { 222, 223, 0, 4, 500, 0, 0, 0 }, + { 224, 224, 0, 0, 40000, 0, 0, 0 }, + { 225, 226, 0, 4, 7993, 93, 0, 0 }, + { 227, 227, 0, 0, 40000, 0, 0, 0 }, + { 228, 228, 0, 0, 40000, 133, 0, 0 }, + { 229, 230, 0, 4, 720, 213, 0, 0 }, + { 231, 232, 0, 4, 40000, 146, 0, 0 }, + { 233, 234, 0, 4, 40000, 0, 0, 0 }, + { 235, 236, 0, 4, 1000, 340, 0, 0 }, + { 235, 237, 0, 4, 3280, 1120, 0, 0 }, + { 46, 238, 0, 4, 6920, 0, 0, 0 }, + { 239, 240, 0, 4, 40000, 140, 0, 0 }, + { 241, 242, 0, 4, 40000, 146, 0, 0 }, + { 243, 243, 0, 0, 40000, 100, 0, 0 }, + { 244, 244, 0, 0, 40000, 60, 0, 0 }, + { 245, 245, 0, 0, 40000, 73, 0, 0 }, + { 246, 247, 0, 4, 720, 106, 0, 0 }, + { 248, 249, 0, 4, 40000, 126, 0, 0 }, + { 250, 250, 0, 0, 40000, 0, 0, 0 }, + { 251, 251, 0, 0, 40000, 126, 0, 0 }, + { 252, 253, 0, 4, 40000, 66, 0, 0 }, + { 254, 255, 0, 4, 40000, 93, 0, 0 }, + { 256, 257, 0, 4, 40000, 73, 0, 0 }, + { 258, 259, 0, 4, 40000, 86, 0, 0 }, + { 260, 261, 0, 4, 40000, 93, 0, 0 }, + { 262, 263, 0, 4, 40000, 80, 0, 0 }, + { 264, 265, 0, 4, 40000, 200, 0, 0 }, + { 266, 267, 0, 4, 40000, 73, 0, 0 }, + { 268, 269, 0, 4, 40000, 80, 0, 0 }, + { 270, 271, 0, 4, 40000, 73, 0, 0 }, + { 272, 273, 0, 4, 40000, 126, 0, 0 }, + { 274, 275, 0, 4, 40000, 100, 0, 0 }, + { 276, 276, 0, 0, 40000, 113, 0, 0 }, + { 277, 278, 0, 4, 40000, 186, 0, 0 }, + { 279, 280, 0, 4, 40000, 160, 0, 0 }, + { 281, 282, 0, 4, 40000, 206, 0, 0 }, + { 283, 283, 0, 0, 40000, 80, 0, 0 }, + { 284, 285, 0, 4, 40000, 73, 0, 0 }, + { 286, 287, 0, 4, 40000, 73, 0, 0 }, + { 288, 288, 0, 0, 40000, 93, 0, 0 }, + { 289, 290, 0, 4, 40000, 66, 0, 0 }, + { 291, 292, 0, 4, 40000, 153, 0, 0 }, + { 293, 294, 0, 4, 40000, 153, 0, 0 }, + { 295, 296, 0, 4, 40000, 320, 0, 0 }, + { 88, 297, 0, 4, 40000, 1280, 0, 0 }, + { 298, 299, 0, 4, 40000, 266, 0, 0 }, + { 300, 301, 0, 4, 40000, 1180, 0, 0 }, + { 302, 302, 0, 0, 40000, 286, 0, 0 }, + { 303, 303, 0, 0, 40000, 140, 0, 0 }, + { 304, 304, 0, 0, 13246, 2473, 0, 0 }, + { 305, 306, 0, 4, 40000, 1073, 0, 0 }, + { 307, 307, 0, 0, 9233, 240, 0, 0 }, + { 308, 308, 0, 0, 1186, 406, 0, 0 }, + { 309, 309, 0, 0, 40000, 1306, 0, 0 }, + { 310, 310, 0, 0, 40000, 933, 0, 0 }, + { 311, 312, 0, 4, 9146, 240, 0, 0 }, + { 313, 314, 0, 4, 7306, 326, 0, 0 }, + { 315, 316, 0, 4, 3586, 326, 0, 0 }, + { 317, 318, 0, 4, 7180, 0, 0, 0 }, + { 107, 319, 0, 4, 1180, 406, 0, 0 }, + { 108, 320, 0, 4, 40000, 66, 0, 0 }, + { 109, 321, 0, 4, 720, 213, 0, 0 }, + { 322, 323, 0, 4, 40000, 73, 0, 0 }, + { 324, 325, 0, 4, 613, 246, 0, 0 }, + { 326, 327, 0, 4, 1213, 386, 0, 0 }, + { 328, 328, 0, 0, 173, 106, 0, 0 }, + { 329, 329, 0, 0, 966, 333, 0, 0 }, + { 330, 331, 0, 4, 1906, 320, 0, 0 }, + { 332, 332, 0, 0, 3120, 73, 0, 0 }, + { 333, 333, 0, 0, 226, 73, 0, 0 }, + { 334, 334, 0, 0, 6600, 806, 0, 0 }, + { 335, 335, 0, 0, 273, 60, 0, 0 }, + { 336, 336, 0, 0, 12053, 660, 0, 0 }, + { 337, 337, 0, 0, 40000, 240, 0, 0 }, + { 338, 339, 0, 6, 6, 0, 0, 0 }, + { 340, 341, 0, 4, 560, 0, 0, 0 }, + { 342, 342, 35, 0, 40000, 0, 0, 0 }, + { 343, 343, 0, 0, 180, 100, 0, 0 }, + { 344, 344, 35, 0, 340, 146, 0, 0 }, + { 345, 345, 35, 0, 213, 33, 0, 0 }, + { 346, 346, 50, 0, 306, 20, 0, 0 }, + { 347, 347, 18, 0, 420, 146, 0, 0 }, + { 348, 348, 72, 0, 173, 86, 0, 0 }, + { 349, 349, 74, 0, 160, 93, 0, 0 }, + { 350, 350, 35, 0, 380, 146, 0, 0 }, + { 351, 351, 16, 0, 1206, 420, 0, 0 }, + { 352, 352, 0, 2, 6, 0, 0, 0 }, + { 353, 353, 38, 0, 200, 106, 0, 0 }, + { 354, 354, 38, 0, 346, 146, 0, 0 }, + { 355, 355, 31, 0, 406, 20, 0, 0 }, + { 355, 355, 35, 0, 406, 66, 0, 0 }, + { 355, 355, 38, 0, 406, 66, 0, 0 }, + { 355, 355, 41, 0, 406, 66, 0, 0 }, + { 355, 355, 45, 0, 306, 73, 0, 0 }, + { 355, 355, 50, 0, 306, 73, 0, 0 }, + { 356, 356, 36, 0, 1373, 493, 0, 0 }, + { 357, 357, 36, 0, 146, 33, 0, 0 }, + { 358, 358, 48, 0, 213, 86, 0, 0 }, + { 358, 358, 36, 0, 246, 86, 0, 0 }, + { 359, 359, 36, 0, 113, 0, 0, 0 }, + { 360, 360, 0, 0, 133, 40, 0, 0 }, + { 361, 361, 61, 0, 180, 26, 0, 0 }, + { 362, 362, 96, 0, 706, 266, 0, 0 }, + { 363, 363, 38, 0, 520, 193, 0, 0 }, + { 127, 127, 16, 0, 620, 233, 0, 0 }, + { 364, 365, 18, 4, 200, 0, 0, 0 }, + { 366, 366, 30, 0, 406, 246, 0, 0 }, + { 367, 368, 35, 4, 200, 0, 0, 0 }, + { 129, 129, 0, 0, 353, 153, 0, 0 }, + { 369, 369, 0, 0, 213, 13, 0, 0 }, + { 370, 370, 88, 0, 333, 113, 0, 0 }, + { 371, 371, 88, 0, 140, 73, 0, 0 }, + { 372, 372, 79, 0, 2540, 1040, 0, 0 }, + { 135, 135, 14, 0, 9213, 3066, 0, 0 }, + { 373, 373, 46, 0, 1093, 60, 0, 0 }, + { 374, 375,129, 4, 1200, 433, 0, 0 }, + { 376, 376, 58, 0, 1600, 726, 0, 0 }, + { 377, 377,164, 0, 526, 820, 0, 0 }, + { 378, 378,142, 0, 9153, 3073, 0, 0 }, + { 379, 379, 9, 0, 200, 100, 0, 0 }, + { 380, 381, 35, 4, 2353, 813, 0, 0 }, + { 382, 382, 28, 0, 1060, 120, 0, 0 }, + { 383, 383, 46, 0, 953, 20, 0, 0 }, + { 384, 384, 60, 0, 440, 160, 0, 0 }, + { 384, 384, 54, 0, 513, 180, 0, 0 }, + { 385, 385, 72, 0, 253, 120, 0, 0 }, + { 385, 385, 67, 0, 253, 113, 0, 0 }, + { 385, 385, 60, 0, 253, 106, 0, 0 }, + { 386, 386, 1, 0, 966, 613, 0, 0 }, + { 387, 387, 77, 0, 340, 86, 0, 0 }, + { 387, 387, 72, 0, 340, 86, 0, 0 }, + { 388, 388, 90, 0, 213, 86, 0, 0 }, + { 389, 389, 39, 0, 266, 73, 0, 0 }, + { 390, 390, 36, 0, 593, 73, 0, 0 }, + { 391, 392, 35, 4, 173, 46, 0, 0 }, + { 391, 393, 35, 4, 460, 66, 0, 0 }, + { 394, 394, 60, 0, 173, 20, 0, 0 }, + { 328, 328, 7, 0, 173, 0, 0, 0 }, + { 395, 395, 90, 0, 193, 20, 0, 0 }, + { 396, 396, 90, 0, 793, 40, 0, 0 }, + { 397, 397, 35, 0, 253, 86, 0, 0 }, + { 398, 399, 5, 4, 1913, 226, 0, 0 }, + { 400, 400,103, 0, 713, 273, 0, 0 }, + { 401, 401, 3, 0, 100, 0, 0, 0 }, + { 169, 169, 1, 0, 466, 413, 0, 0 }, + { 131, 131, 0, 0, 613, 226, 0, 0 }, + { 402, 402, 36, 0, 273, 53, 0, 0 }, + { 403, 403, 60, 0, 40000, 73, 0, 0 }, + { 404, 404, 37, 0, 1193, 426, 0, 0 }, + { 405, 405, 36, 0, 406, 20, 0, 0 }, + { 406, 406, 32, 0, 146, 73, 0, 0 }, + { 407, 407, 50, 0, 40000, 0, 0, 0 }, + { 408, 408, 50, 0, 793, 346, 0, 0 }, + { 409, 409, 83, 0, 120, 13, 0, 0 }, + { 410, 410, 72, 0, 433, 0, 0, 0 }, + { 148, 148, 59, 0, 513, 200, 0, 0 }, + { 411, 411, 64, 0, 173, 93, 0, 0 }, + { 411, 411, 60, 0, 173, 93, 0, 0 }, + { 412, 412, 72, 0, 160, 93, 0, 0 }, + { 412, 412, 62, 0, 173, 93, 0, 0 }, + { 413, 413, 83, 0, 773, 60, 0, 0 }, + { 414, 414, 0, 0, 40000, 80, 0, 0 }, + { 415, 415, 0, 0, 40000, 0, 0, 0 }, + { 416, 416, 0, 0, 40000, 73, 0, 0 }, + { 417, 417, 0, 0, 40000, 86, 0, 0 }, + { 418, 418, 0, 0, 40000, 0, 0, 0 }, + { 419, 419, 0, 0, 3440, 100, 0, 0 }, + { 420, 420, 0, 0, 3913, 420, 0, 0 }, + { 421, 421, 0, 0, 13620, 4640, 0, 0 }, + { 422, 422, 0, 0, 9233, 240, 0, 0 }, + { 423, 423, 0, 0, 633, 233, 0, 0 }, + { 424, 424, 0, 0, 4660, 1573, 0, 0 }, + { 425, 425, 0, 0, 4480, 1413, 0, 0 }, + { 426, 426, 0, 0, 40000, 0, 0, 0 }, + { 427, 427, 0, 0, 40000, 86, 0, 0 }, + { 428, 428, 60, 2, 6, 0, 0, 0 }, + { 429, 429, 73, 0, 593, 86, 0, 0 }, + { 429, 429, 74, 0, 593, 86, 0, 0 }, + { 429, 429, 80, 0, 593, 86, 0, 0 }, + { 429, 429, 84, 0, 593, 86, 0, 0 }, + { 429, 429, 92, 0, 520, 86, 0, 0 }, + { 430, 430, 81, 0, 786, 80, 0, 0 }, + { 430, 430, 83, 0, 786, 80, 0, 0 }, + { 430, 430, 95, 0, 680, 80, 0, 0 }, + { 431, 431, 35, 0, 593, 140, 0, 0 }, + { 432, 432, 60, 0, 213, 133, 0, 0 }, + { 357, 357, 59, 0, 113, 0, 0, 0 }, + { 432, 432, 44, 0, 213, 133, 0, 0 }, + { 433, 433, 41, 0, 713, 273, 0, 0 }, + { 434, 434, 97, 0, 113, 46, 0, 0 }, + { 433, 433, 44, 0, 513, 206, 0, 0 }, + { 433, 433, 48, 0, 506, 200, 0, 0 }, + { 435, 435, 96, 0, 700, 86, 0, 0 }, + { 433, 433, 51, 0, 520, 200, 0, 0 }, + { 433, 433, 54, 0, 513, 206, 0, 0 }, + { 436, 436, 40, 0, 1506, 793, 0, 0 }, + { 433, 433, 57, 0, 380, 160, 0, 0 }, + { 437, 437, 58, 0, 1600, 726, 0, 0 }, + { 438, 438, 97, 0, 233, 106, 0, 0 }, + { 439, 439, 50, 0, 186, 93, 0, 0 }, + { 437, 437, 60, 0, 1573, 713, 0, 0 }, + { 440, 440, 53, 0, 180, 73, 0, 0 }, + { 441, 441, 46, 0, 173, 126, 0, 0 }, + { 440, 440, 57, 0, 180, 40, 0, 0 }, + { 442, 442, 42, 0, 640, 240, 0, 0 }, + { 442, 442, 37, 0, 633, 233, 0, 0 }, + { 443, 443, 41, 0, 626, 240, 0, 0 }, + { 443, 443, 37, 0, 620, 233, 0, 0 }, + { 444, 444, 77, 0, 173, 40, 0, 0 }, + { 444, 444, 72, 0, 173, 40, 0, 0 }, + { 445, 445, 70, 0, 233, 100, 0, 0 }, + { 445, 445, 90, 0, 233, 93, 0, 0 }, + { 446, 446, 46, 0, 133, 73, 0, 0 }, + { 447, 447, 48, 0, 333, 73, 0, 0 }, + { 448, 448, 85, 0, 106, 0, 0, 0 }, + { 449, 449, 66, 0, 180, 26, 0, 0 }, + { 449, 449, 61, 0, 180, 26, 0, 0 }, + { 450, 450, 41, 0, 200, 66, 0, 0 }, + { 451, 451, 41, 0, 253, 66, 0, 0 }, + { 452, 452, 81, 0, 253, 26, 0, 0 }, + { 400, 400, 81, 0, 820, 306, 0, 0 }, + { 400, 400, 76, 0, 813, 300, 0, 0 }, + { 359, 359, 60, 0, 100, 0, 0, 0 }, + { 453, 453, 53, 0, 40000, 0, 0, 0 }, + { 454, 454, 0, 2, 6, 0, 0, 0 }, + { 455, 455, 0, 0, 200, 20, 0, 0 }, + { 456, 456, 0, 0, 4480, 100, 0, 0 }, + { 457, 457, 0, 0, 1180, 406, 0, 0 }, + { 458, 458, 0, 0, 40000, 86, 0, 0 }, + { 459, 459, 0, 0, 40000, 73, 0, 0 }, + { 460, 460, 0, 0, 3700, 66, 0, 0 }, + { 461, 461, 0, 0, 40000, 0, 0, 0 }, + { 462, 462, 0, 0, 6746, 2606, 0, 0 }, + { 463, 463, 0, 0, 40000, 213, 0, 0 }, + { 464, 464, 0, 0, 40000, 66, 0, 0 }, + { 465, 465, 0, 0, 40000, 100, 0, 0 }, + { 466, 466, 0, 0, 40000, 100, 0, 0 }, + { 467, 467, 0, 0, 5840, 806, 0, 0 }, + { 468, 468, 0, 0, 40000, 0, 0, 0 }, + { 469, 469, 0, 0, 40000, 0, 0, 0 }, + { 470, 470, 0, 0, 40000, 73, 0, 0 }, + { 471, 471, 0, 0, 40000, 133, 0, 0 }, + { 472, 472, 0, 0, 3320, 800, 0, 0 }, + { 473, 473, 0, 0, 40000, 173, 0, 0 }, + { 474, 474, 0, 0, 40000, 193, 0, 0 }, + { 475, 475, 0, 0, 2373, 800, 0, 0 }, + { 476, 476, 0, 0, 40000, 4986, 0, 0 }, + { 477, 477, 0, 0, 1180, 413, 0, 0 }, + { 478, 478, 0, 0, 3673, 1200, 0, 0 }, + { 479, 479, 0, 0, 973, 800, 0, 0 }, + { 480, 480, 0, 0, 7233, 2286, 0, 0 }, + { 481, 481, 0, 0, 40000, 73, 0, 0 }, + { 482, 482, 0, 0, 2526, 73, 0, 0 }, + { 483, 483, 0, 0, 393, 126, 0, 0 }, + { 484, 484, 0, 0, 40000, 200, 0, 0 }, + { 485, 485, 0, 0, 40000, 546, 0, 0 }, + { 486, 486, 0, 0, 1186, 413, 0, 0 }, + { 487, 487, 0, 0, 14166, 320, 0, 0 }, + { 488, 488, 0, 0, 8326, 646, 0, 0 }, + { 489, 489, 0, 0, 513, 206, 0, 0 }, + { 490, 490, 0, 0, 40000, 93, 0, 0 }, + { 491, 491, 50, 0, 1406, 353, 0, 0 }, + { 492, 492, 37, 0, 1040, 400, 0, 0 }, + { 493, 493, 39, 0, 406, 73, 0, 0 }, + { 494, 494, 39, 0, 3746, 860, 0, 0 }, + { 495, 495, 86, 0, 2133, 173, 0, 0 }, + { 496, 496, 43, 0, 140, 66, 0, 0 }, + { 127, 127, 24, 0, 513, 206, 0, 0 }, + { 127, 127, 29, 0, 520, 206, 0, 0 }, + { 497, 497, 50, 0, 340, 20, 0, 0 }, + { 498, 498, 30, 0, 5306, 1266, 0, 0 }, + { 498, 498, 33, 0, 3773, 886, 0, 0 }, + { 498, 498, 38, 0, 3746, 860, 0, 0 }, + { 498, 498, 42, 0, 3793, 906, 0, 0 }, + { 499, 499, 24, 0, 266, 0, 0, 0 }, + { 499, 499, 27, 0, 260, 153, 0, 0 }, + { 499, 499, 29, 0, 260, 153, 0, 0 }, + { 499, 499, 32, 0, 260, 153, 0, 0 }, + { 500, 500, 32, 0, 106, 0, 0, 0 }, + { 501, 501, 53, 0, 373, 186, 0, 0 }, + { 501, 501, 57, 0, 380, 193, 0, 0 }, + { 502, 502, 60, 0, 286, 133, 0, 0 }, + { 503, 503, 55, 0, 460, 126, 0, 0 }, + { 486, 486, 85, 0, 813, 293, 0, 0 }, + { 504, 504, 90, 0, 1580, 546, 0, 0 }, + { 505, 505, 84, 0, 246, 120, 0, 0 }, + { 506, 506, 48, 0, 826, 646, 0, 0 }, + { 507, 507, 48, 0, 266, 213, 0, 0 }, + { 132, 132, 72, 0, 126, 66, 0, 0 }, + { 508, 508, 72, 0, 106, 0, 0, 0 }, + { 509, 509, 72, 0, 100, 0, 0, 0 }, + { 510, 510, 63, 0, 1860, 633, 0, 0 }, + { 510, 510, 65, 0, 1853, 633, 0, 0 }, + { 511, 511, 79, 0, 1573, 553, 0, 0 }, + { 512, 512, 38, 0, 520, 793, 0, 0 }, + { 513, 513, 94, 0, 380, 160, 0, 0 }, + { 514, 514, 87, 0, 433, 306, 0, 0 }, + { 514, 514, 94, 0, 380, 273, 0, 0 }, + { 515, 515, 80, 0, 546, 273, 0, 0 }, + { 516, 516, 47, 0, 506, 200, 0, 0 }, + { 517, 517, 61, 0, 286, 133, 0, 0 }, + { 517, 517, 68, 0, 246, 120, 0, 0 }, + { 518, 518, 61, 0, 513, 206, 0, 0 }, + { 518, 518, 68, 0, 433, 180, 0, 0 }, + { 499, 499, 60, 0, 220, 133, 0, 0 }, + { 519, 519, 60, 0, 153, 46, 0, 0 }, + { 520, 520, 36, 0, 200, 20, 0, 0 }, + { 520, 520, 60, 0, 173, 20, 0, 0 }, + { 521, 521, 60, 0, 173, 20, 0, 0 }, + { 522, 522, 68, 0, 126, 26, 0, 0 }, + { 523, 523, 71, 0, 160, 186, 0, 0 }, + { 523, 523, 72, 0, 160, 186, 0, 0 }, + { 524, 524,101, 0, 966, 353, 0, 0 }, + { 525, 525, 36, 0, 3333, 480, 0, 0 }, + { 526, 526, 25, 0, 40000, 2293, 0, 0 }, + { 527, 527, 37, 0, 2106, 426, 0, 0 }, + { 528, 528, 36, 0, 720, 266, 0, 0 }, + { 528, 528, 41, 0, 713, 266, 0, 0 }, + { 529, 529, 84, 0, 173, 60, 0, 0 }, + { 530, 530, 54, 0, 40000, 0, 0, 0 }, + { 481, 481, 48, 0, 40000, 73, 0, 0 }, + { 531, 531, 0, 0, 10060, 1266, 0, 0 }, + { 532, 532, 0, 0, 4600, 606, 0, 0 }, + { 533, 533, 0, 0, 40000, 253, 0, 0 }, + { 534, 534, 0, 0, 40000, 73, 0, 0 }, + { 535, 535, 0, 0, 40000, 66, 0, 0 }, + { 536, 536, 0, 0, 40000, 80, 0, 0 }, + { 537, 537, 0, 0, 9413, 1393, 0, 0 }, + { 538, 538, 0, 0, 9000, 66, 0, 0 }, + { 539, 539, 0, 0, 40000, 0, 0, 0 }, + { 540, 540, 0, 0, 40000, 80, 0, 0 }, + { 541, 541, 0, 0, 40000, 120, 0, 0 }, + { 542, 542, 0, 0, 253, 73, 0, 0 }, + { 543, 543, 0, 0, 40000, 73, 0, 0 }, + { 544, 544, 0, 0, 18280, 800, 0, 0 }, + { 545, 545, 0, 0, 40000, 1133, 0, 0 }, + { 546, 546, 0, 0, 40000, 1226, 0, 0 }, + { 547, 547, 0, 0, 40000, 153, 0, 0 }, + { 135, 135, 49, 0, 3633, 1186, 0, 0 }, + { 548, 548, 35, 0, 2193, 80, 0, 0 }, + { 549, 549, 41, 0, 73, 0, 0, 0 }, + { 366, 366, 38, 0, 406, 246, 0, 0 }, + { 550, 550, 39, 0, 106, 20, 0, 0 }, + { 551, 551, 49, 0, 200, 133, 0, 0 }, + { 408, 408, 59, 0, 780, 326, 0, 0 }, + { 552, 552, 24, 0, 40000, 0, 0, 0 }, + { 552, 552, 27, 0, 40000, 0, 0, 0 }, + { 552, 552, 29, 0, 40000, 0, 0, 0 }, + { 552, 552, 32, 0, 40000, 0, 0, 0 }, + { 553, 553, 84, 0, 200, 33, 0, 0 }, + { 512, 512, 79, 0, 346, 460, 0, 0 }, + { 554, 554, 61, 0, 400, 126, 0, 0 }, + { 554, 554, 68, 0, 353, 120, 0, 0 }, + { 555, 555, 36, 0, 146, 86, 0, 0 }, + { 555, 555, 60, 0, 113, 0, 0, 0 }, + { 556, 556, 36, 0, 273, 53, 0, 0 }, + { 115, 115, 37, 0, 4580, 1513, 0, 0 }, + { 557, 557, 0, 0, 3806, 73, 0, 0 }, + { 558, 558, 0, 0, 40000, 0, 0, 0 }, + { 559, 559, 0, 0, 40000, 66, 0, 0 }, + { 560, 560, 0, 0, 5886, 133, 0, 0 }, + { 561, 561, 0, 0, 253, 26, 0, 0 }, + { 562, 562, 0, 0, 3246, 753, 0, 0 }, + { 563, 563, 0, 0, 40000, 100, 0, 0 }, + { 564, 564, 0, 0, 1620, 366, 0, 0 }, + { 565, 565, 0, 0, 40000, 0, 0, 0 }, + { 566, 566, 0, 0, 40000, 0, 0, 0 }, + { 567, 567, 0, 0, 40000, 0, 0, 0 }, + { 568, 568, 0, 0, 40000, 80, 0, 0 }, + { 569, 569, 0, 0, 760, 340, 0, 0 }, + { 570, 570, 0, 0, 40000, 0, 0, 0 }, + { 571, 571, 0, 0, 40000, 0, 0, 0 }, + { 572, 572, 0, 0, 40000, 0, 0, 0 }, + { 356, 356, 0, 0, 1893, 646, 0, 0 }, + { 573, 573, 0, 0, 40000, 93, 0, 0 }, + { 574, 574, 0, 0, 40000, 93, 0, 0 }, + { 575, 575, 0, 0, 40000, 200, 0, 0 }, + { 576, 576, 0, 0, 40000, 200, 0, 0 }, + { 577, 577, 0, 0, 40000, 126, 0, 0 }, + { 578, 578, 0, 0, 40000, 353, 0, 0 }, + { 579, 579, 0, 0, 40000, 346, 0, 0 }, + { 580, 580, 0, 0, 40000, 353, 0, 0 }, + { 581, 581, 0, 0, 40000, 100, 0, 0 }, + { 582, 582, 0, 0, 40000, 133, 0, 0 }, + { 583, 583, 0, 0, 2286, 713, 0, 0 }, + { 584, 584, 0, 0, 40000, 193, 0, 0 }, + { 585, 585, 0, 0, 40000, 0, 0, 0 }, + { 516, 516, 0, 0, 633, 240, 0, 0 }, + { 586, 586, 0, 0, 40000, 73, 0, 0 }, + { 587, 587, 0, 0, 40000, 73, 0, 0 }, + { 588, 588, 0, 0, 40000, 73, 0, 0 }, + { 498, 498, 26, 0, 5293, 1253, 0, 0 }, + { 494, 494, 35, 0, 3800, 913, 0, 0 }, + { 350, 350, 41, 0, 380, 153, 0, 0 }, + { 353, 353, 48, 0, 173, 100, 0, 0 }, + { 354, 354, 67, 0, 246, 120, 0, 0 }, + { 502, 502, 24, 0, 340, 146, 0, 0 }, + { 346, 346, 36, 0, 406, 73, 0, 0 }, + { 346, 346, 38, 0, 406, 20, 0, 0 }, + { 346, 346, 40, 0, 406, 73, 0, 0 }, + { 346, 346, 42, 0, 406, 20, 0, 0 }, + { 346, 346, 44, 0, 306, 20, 0, 0 }, + { 510, 510, 55, 0, 1866, 646, 0, 0 }, + { 346, 346, 46, 0, 306, 20, 0, 0 }, + { 136, 136, 80, 0, 1600, 573, 0, 0 }, + { 486, 486, 24, 0, 1193, 426, 0, 0 }, + { 153, 153, 50, 0, 106, 40, 0, 0 }, + { 346, 346, 24, 0, 540, 73, 0, 0 }, + { 516, 516, 31, 0, 626, 240, 0, 0 }, + { 498, 498, 35, 0, 3760, 880, 0, 0 }, + { 517, 517, 60, 0, 286, 133, 0, 0 }, + { 530, 530, 36, 0, 40000, 0, 0, 0 }, + { 530, 530, 48, 0, 40000, 0, 0, 0 }, + { 589, 589, 0, 0, 40000, 0, 0, 0 }, + { 139, 139, 76, 0, 253, 106, 0, 0 }, + { 156, 156, 48, 0, 206, 80, 0, 0 }, + { 157, 157, 48, 0, 426, 106, 0, 0 }, + { 165, 165, 69, 0, 120, 66, 0, 0 }, + { 167, 167, 75, 0, 546, 306, 0, 0 }, + { 590, 590, 0, 0, 40000, 0, 0, 0 }, + { 591, 591, 0, 0, 15486, 1580, 0, 0 }, + { 592, 592, 0, 0, 3446, 106, 0, 0 }, + { 593, 593, 0, 0, 1926, 146, 0, 0 }, + { 594, 594, 0, 0, 7293, 2380, 0, 0 }, + { 595, 595, 0, 0, 7613, 1566, 0, 0 }, + { 596, 596, 0, 0, 1153, 460, 0, 0 }, + { 597, 597, 0, 0, 1166, 400, 0, 0 }, + { 598, 598, 0, 0, 40000, 73, 0, 0 }, + { 599, 599, 0, 0, 40000, 766, 0, 0 }, + { 600, 600, 0, 0, 40000, 80, 0, 0 }, + { 601, 601, 0, 0, 1840, 513, 0, 0 }, + { 602, 602, 0, 0, 40000, 0, 0, 0 }, + { 603, 603, 0, 0, 4480, 733, 0, 0 }, + { 604, 604, 0, 0, 18226, 786, 0, 0 }, + { 605, 605, 0, 0, 4333, 233, 0, 0 }, + { 606, 606, 0, 0, 40000, 106, 0, 0 }, + { 607, 607, 0, 0, 40000, 366, 0, 0 }, + { 608, 608, 0, 0, 40000, 200, 0, 0 }, + { 609, 609, 0, 0, 713, 200, 0, 0 }, + { 610, 610, 0, 0, 8866, 1366, 0, 0 }, + { 611, 611, 0, 0, 2300, 73, 0, 0 }, + { 612, 612, 0, 0, 40000, 126, 0, 0 }, + { 613, 613, 0, 0, 40000, 1413, 0, 0 }, + { 614, 614, 0, 0, 40000, 333, 0, 0 }, + { 615, 615, 0, 0, 40000, 333, 0, 0 }, + { 616, 616, 0, 0, 40000, 26, 0, 0 }, + { 617, 617, 0, 0, 40000, 40, 0, 0 }, + { 618, 618, 0, 0, 4240, 353, 0, 0 }, + { 619, 619, 0, 0, 40000, 0, 0, 0 }, + { 620, 620, 0, 0, 40000, 73, 0, 0 }, + { 621, 621, 0, 0, 9020, 60, 0, 0 }, + { 622, 622, 0, 0, 3020, 0, 0, 0 }, + { 623, 623, 0, 0, 40000, 60, 0, 0 }, + { 624, 624, 0, 0, 40000, 73, 0, 0 }, + { 625, 625, 0, 0, 40000, 60, 0, 0 }, + { 626, 626, 0, 0, 40000, 53, 0, 0 }, + { 627, 627, 0, 0, 40000, 0, 0, 0 }, + { 628, 628, 0, 0, 40000, 66, 0, 0 }, + { 629, 629, 0, 0, 40000, 66, 0, 0 }, + { 630, 630, 0, 0, 5913, 426, 0, 0 }, + { 631, 631, 0, 0, 40000, 246, 0, 0 }, + { 632, 632, 0, 0, 40000, 206, 0, 0 }, + { 633, 633, 0, 0, 40000, 0, 0, 0 }, + { 634, 634, 0, 0, 2453, 780, 0, 0 }, + { 635, 635, 0, 0, 4740, 240, 0, 0 }, + { 636, 636, 0, 0, 1840, 353, 0, 0 }, + { 637, 637, 0, 0, 40000, 86, 0, 0 }, + { 638, 638, 0, 0, 3446, 1786, 0, 0 }, + { 346, 346, 0, 0, 540, 20, 0, 0 }, + { 639, 639, 0, 0, 7406, 2486, 0, 0 }, + { 404, 404, 0, 0, 1220, 466, 0, 0 }, + { 506, 506, 0, 0, 1000, 813, 0, 0 }, + { 639, 639, 60, 0, 2666, 913, 0, 0 }, + { 639, 639, 79, 0, 1366, 486, 0, 0 }, + { 640, 640, 65, 0, 2053, 646, 0, 0 }, + { 486, 486, 31, 0, 1206, 440, 0, 0 }, + { 486, 486, 36, 0, 1200, 433, 0, 0 }, + { 640, 640, 72, 0, 1713, 520, 0, 0 }, + { 136, 136, 79, 0, 1580, 560, 0, 0 }, + { 148, 148, 57, 0, 520, 206, 0, 0 }, + { 150, 150, 53, 0, 500, 193, 0, 0 }, + { 641, 641, 84, 0, 226, 66, 0, 0 }, + { 520, 520, 66, 0, 173, 20, 0, 0 }, + { 642, 642, 31, 0, 40000, 113, 0, 0 }, + { 642, 642, 29, 0, 40000, 113, 0, 0 }, + { 356, 356, 31, 0, 1366, 486, 0, 0 }, + { 356, 356, 19, 0, 1866, 633, 0, 0 }, + { 643, 643, 31, 0, 40000, 73, 0, 0 }, + { 643, 643, 29, 0, 40000, 73, 0, 0 }, + { 644, 644, 31, 0, 2286, 400, 0, 0 }, + { 644, 644, 35, 0, 2313, 420, 0, 0 }, + { 644, 644, 40, 0, 2353, 433, 0, 0 }, + { 644, 644, 47, 0, 1860, 346, 0, 0 }, + { 516, 516, 32, 0, 626, 240, 0, 0 }, + { 516, 516, 43, 0, 506, 200, 0, 0 }, + { 495, 495, 26, 0, 3180, 240, 0, 0 }, + { 495, 495, 44, 0, 2553, 206, 0, 0 }, + { 496, 496, 26, 0, 160, 73, 0, 0 }, + { 496, 496, 51, 0, 146, 66, 0, 0 }, + { 496, 496, 39, 0, 160, 73, 0, 0 }, + { 495, 495, 30, 0, 3180, 240, 0, 0 }, + { 645, 645, 44, 0, 1880, 653, 0, 0 }, + { 645, 645, 43, 0, 1886, 653, 0, 0 }, + { 646, 646, 0, 0, 2393, 833, 0, 0 }, + { 647, 647, 0, 0, 4693, 26, 0, 0 }, + { 648, 648, 0, 0, 2306, 773, 0, 0 }, + { 649, 649, 0, 0, 40000, 120, 0, 0 }, + { 650, 650, 0, 0, 40000, 66, 0, 0 }, + { 651, 651, 0, 0, 5866, 1206, 0, 0 }, + { 652, 652, 0, 0, 40000, 426, 0, 0 }, + { 653, 653, 0, 0, 1873, 633, 0, 0 }, + { 654, 654, 0, 0, 40000, 66, 0, 0 }, + { 655, 655, 0, 0, 40000, 73, 0, 0 }, + { 656, 656, 0, 0, 40000, 73, 0, 0 }, + { 657, 657, 0, 0, 40000, 0, 0, 0 }, + { 658, 658, 0, 0, 2040, 380, 0, 0 }, + { 659, 659, 0, 0, 40000, 73, 0, 0 }, + { 660, 660, 0, 0, 3720, 1260, 0, 0 }, + { 661, 661, 0, 0, 4080, 1046, 0, 0 }, + { 662, 662, 0, 0, 8693, 4666, 0, 0 }, + { 663, 663, 0, 0, 1926, 73, 0, 0 }, + { 664, 664, 0, 0, 8326, 646, 0, 0 }, + { 665, 665, 0, 0, 40000, 240, 0, 0 }, + { 666, 666, 0, 0, 40000, 226, 0, 0 }, + { 667, 667, 0, 0, 40000, 220, 0, 0 }, + { 668, 668, 0, 0, 40000, 0, 0, 0 }, + { 669, 669, 0, 0, 40000, 193, 0, 0 }, + { 670, 670, 0, 0, 880, 20, 0, 0 }, + { 671, 671, 0, 0, 4873, 120, 0, 0 }, + { 672, 672, 0, 0, 40000, 413, 0, 0 }, + { 673, 673, 0, 0, 700, 106, 0, 0 }, + { 674, 674, 0, 0, 700, 100, 0, 0 }, + { 675, 675, 0, 0, 40000, 126, 0, 0 }, + { 676, 676, 0, 0, 8113, 806, 0, 0 }, + { 677, 677, 0, 0, 8900, 80, 0, 0 }, + { 678, 678, 0, 0, 1893, 653, 0, 0 }, + { 679, 679, 0, 0, 3973, 206, 0, 0 }, + { 680, 680, 0, 0, 40000, 173, 0, 0 }, + { 681, 681, 0, 0, 40000, 73, 0, 0 }, + { 682, 682, 0, 0, 40000, 93, 0, 0 }, + { 683, 683, 0, 0, 1606, 640, 0, 0 }, + { 684, 684, 0, 0, 15486, 1580, 0, 0 }, + { 685, 685, 0, 0, 40000, 346, 0, 0 }, + { 686, 686, 0, 0, 40000, 786, 0, 0 }, + { 687, 687, 0, 0, 386, 240, 0, 0 }, + { 688, 688, 0, 0, 40000, 2066, 0, 0 }, + { 689, 689, 0, 0, 15453, 73, 0, 0 }, + { 690, 690, 0, 0, 1206, 240, 0, 0 }, + { 691, 691, 0, 0, 8866, 1366, 0, 0 }, + { 692, 692, 0, 0, 5913, 2253, 0, 0 }, + { 693, 693, 0, 0, 773, 106, 0, 0 }, + { 694, 694, 0, 0, 3793, 73, 0, 0 }, + { 695, 695, 0, 0, 40000, 73, 0, 0 }, + { 645, 645, 0, 0, 3633, 1180, 0, 0 }, + { 696, 696, 0, 0, 40000, 80, 0, 0 }, + { 697, 697, 0, 0, 40000, 0, 0, 0 }, + { 698, 698, 0, 0, 40000, 66, 0, 0 }, + { 699, 699, 0, 0, 40000, 66, 0, 0 }, + { 700, 700, 0, 0, 106, 0, 0, 0 }, + { 701, 701, 0, 0, 40000, 200, 0, 0 }, + { 702, 702, 0, 0, 3913, 73, 0, 0 }, + { 703, 703, 0, 0, 40000, 73, 0, 0 }, + { 704, 704, 0, 0, 40000, 73, 0, 0 }, + { 705, 705, 0, 0, 40000, 73, 0, 0 }, + { 706, 706, 0, 0, 40000, 66, 0, 0 }, + { 707, 707, 0, 0, 40000, 313, 0, 0 }, + { 708, 708, 0, 0, 40000, 100, 0, 0 }, + { 709, 709, 0, 0, 40000, 213, 0, 0 }, + { 710, 710, 0, 0, 40000, 53, 0, 0 }, + { 711, 711, 0, 0, 40000, 40, 0, 0 }, + { 712, 712, 0, 0, 40000, 73, 0, 0 }, + { 713, 713, 0, 0, 40000, 140, 0, 0 }, + { 714, 714, 0, 0, 40000, 606, 0, 0 }, + { 715, 715, 0, 0, 40000, 226, 0, 0 }, + { 716, 716, 0, 0, 3746, 1273, 0, 0 }, + { 717, 717, 0, 0, 40000, 80, 0, 0 }, + { 718, 718, 0, 0, 2360, 806, 0, 0 }, + { 719, 719, 0, 0, 1186, 420, 0, 0 }, + { 720, 720, 0, 0, 12533, 1953, 0, 0 }, + { 721, 721, 0, 0, 973, 1280, 0, 0 }, + { 722, 722, 0, 0, 40000, 426, 0, 0 }, + { 723, 723, 0, 0, 40000, 53, 0, 0 }, + { 724, 724, 0, 0, 40000, 66, 0, 0 }, + { 725, 725, 0, 0, 1246, 73, 0, 0 }, + { 726, 726, 0, 0, 3726, 1246, 0, 0 }, + { 727, 727, 0, 0, 2346, 813, 0, 0 }, + { 728, 728, 0, 0, 1206, 433, 0, 0 }, + { 507, 507, 0, 0, 306, 246, 0, 0 }, + { 512, 512, 0, 0, 526, 840, 0, 0 }, + { 729, 729, 0, 0, 14793, 4933, 0, 0 }, + { 730, 730, 0, 0, 14640, 4806, 0, 0 }, + { 731, 731, 0, 0, 5233, 633, 0, 0 }, + { 732, 732, 0, 0, 40000, 2513, 0, 0 }, + { 733, 733, 0, 0, 40000, 820, 0, 0 }, + { 734, 734, 0, 0, 40000, 0, 0, 0 }, + { 735, 735, 0, 0, 1726, 793, 0, 0 }, + { 736, 736, 0, 0, 513, 20, 0, 0 }, + { 737, 737, 0, 2, 6, 0, 0, 0 }, + { 738, 738, 38, 0, 1020, 413, 0, 0 }, + { 739, 739, 44, 0, 220, 33, 0, 0 }, + { 500, 500, 58, 0, 100, 0, 0, 0 }, + { 740, 740, 24, 0, 513, 206, 0, 0 }, + { 741, 741, 60, 0, 220, 26, 0, 0 }, + { 736, 736, 44, 0, 286, 20, 0, 0 }, + { 742, 742, 25, 0, 626, 246, 0, 0 }, + { 743, 743, 60, 0, 146, 86, 0, 0 }, + { 742, 742, 30, 0, 626, 240, 0, 0 }, + { 377, 377, 60, 0, 446, 626, 0, 0 }, + { 742, 742, 33, 0, 620, 226, 0, 0 }, + { 744, 744, 60, 0, 220, 113, 0, 0 }, + { 742, 742, 35, 0, 620, 233, 0, 0 }, + { 742, 742, 37, 0, 633, 246, 0, 0 }, + { 745, 745, 0, 0, 1880, 640, 0, 0 }, + { 742, 742, 40, 0, 640, 260, 0, 0 }, + { 746, 746,102, 0, 960, 300, 0, 0 }, + { 747, 747, 80, 0, 1106, 126, 0, 0 }, + { 377, 377, 0, 0, 500, 760, 0, 0 }, + { 748, 748, 56, 0, 100, 0, 0, 0 }, + { 749, 749, 0, 0, 973, 1300, 0, 0 }, + { 746, 746,100, 0, 960, 340, 0, 0 }, + { 750, 750, 40, 0, 626, 240, 0, 0 }, + { 750, 750, 35, 0, 626, 240, 0, 0 }, + { 751, 751, 29, 0, 206, 106, 0, 0 }, + { 750, 750, 29, 0, 633, 240, 0, 0 }, + { 750, 750, 22, 0, 640, 233, 0, 0 }, + { 500, 500, 0, 0, 106, 0, 0, 0 }, + { 752, 752, 0, 0, 206, 26, 0, 0 }, + { 753, 753, 84, 0, 166, 20, 0, 0 }, + { 754, 754, 84, 0, 1580, 553, 0, 0 }, + { 755, 755, 0, 0, 633, 233, 0, 0 }, + { 755, 755, 71, 0, 440, 180, 0, 0 }, + { 755, 755, 53, 0, 513, 200, 0, 0 }, + { 755, 755, 48, 0, 520, 206, 0, 0 }, + { 756, 756, 95, 0, 286, 20, 0, 0 }, + { 757, 757, 95, 0, 1880, 20, 0, 0 }, + { 758, 758, 0, 0, 14413, 333, 0, 0 }, + { 759, 759, 0, 0, 14453, 360, 0, 0 }, + { 760, 760, 0, 0, 14940, 353, 0, 0 }, + { 761, 761, 0, 0, 7286, 340, 0, 0 }, + { 762, 762, 0, 0, 14700, 60, 0, 0 }, + { 763, 763, 0, 0, 14506, 340, 0, 0 }, + { 764, 764, 0, 0, 14706, 200, 0, 0 }, + { 765, 765, 0, 0, 40000, 0, 0, 0 }, + { 766, 766, 0, 0, 2900, 426, 0, 0 }, + { 767, 767, 0, 0, 2986, 753, 0, 0 }, + { 768, 768, 0, 0, 1706, 680, 0, 0 }, + { 769, 769, 0, 0, 14646, 1253, 0, 0 }, + { 770, 770, 0, 0, 1713, 486, 0, 0 }, + { 771, 771, 0, 0, 966, 346, 0, 0 }, + { 772, 772, 0, 0, 3453, 766, 0, 0 }, + { 773, 773, 0, 0, 2866, 486, 0, 0 }, + { 774, 774, 0, 0, 40000, 73, 0, 0 }, + { 775, 775, 0, 0, 40000, 73, 0, 0 }, + { 776, 776, 0, 0, 40000, 166, 0, 0 }, + { 777, 777, 0, 0, 40000, 126, 0, 0 }, + { 778, 778, 0, 0, 40000, 113, 0, 0 }, + { 779, 779, 0, 0, 40000, 113, 0, 0 }, + { 780, 780, 0, 0, 40000, 93, 0, 0 }, + { 781, 781, 0, 0, 40000, 200, 0, 0 }, + { 782, 782, 0, 0, 7186, 93, 0, 0 }, + { 783, 783, 0, 0, 6406, 120, 0, 0 }, + { 784, 784, 0, 0, 40000, 0, 0, 0 }, + { 785, 785, 0, 0, 40000, 0, 0, 0 }, + { 786, 786, 0, 0, 1220, 73, 0, 0 }, + { 787, 787, 0, 0, 40000, 0, 0, 0 }, + { 788, 788, 0, 0, 17566, 66, 0, 0 }, + { 789, 789, 0, 0, 2333, 26, 0, 0 }, + { 790, 790, 0, 0, 4560, 153, 0, 0 }, + { 791, 791, 0, 0, 40000, 0, 0, 0 }, + { 792, 792, 0, 0, 40000, 0, 0, 0 }, + { 793, 793, 0, 0, 40000, 0, 0, 0 }, + { 794, 794, 0, 0, 2506, 126, 0, 0 }, + { 795, 795, 0, 0, 2513, 126, 0, 0 }, + { 796, 796, 0, 0, 40000, 0, 0, 0 }, + { 797, 797, 0, 0, 3386, 80, 0, 0 }, + { 798, 798, 0, 0, 40000, 100, 0, 0 }, + { 799, 799, 0, 0, 40000, 100, 0, 0 }, + { 800, 800, 0, 0, 40000, 120, 0, 0 }, + { 801, 801, 0, 0, 40000, 0, 0, 0 }, + { 802, 802, 0, 0, 40000, 200, 0, 0 }, + { 803, 803, 0, 0, 1080, 180, 0, 0 }, + { 804, 804, 0, 0, 3620, 1166, 0, 0 }, + { 805, 805, 0, 0, 1186, 393, 0, 0 }, + { 806, 806, 0, 0, 40000, 213, 0, 0 }, + { 807, 807, 0, 0, 40000, 426, 0, 0 }, + { 808, 808, 0, 0, 40000, 146, 0, 0 }, + { 809, 809, 0, 0, 40000, 146, 0, 0 }, + { 810, 810, 0, 0, 40000, 60, 0, 0 }, + { 811, 811, 0, 0, 40000, 113, 0, 0 }, + { 812, 812, 0, 0, 40000, 93, 0, 0 }, + { 813, 813, 0, 0, 1186, 153, 0, 0 }, + { 814, 814, 0, 0, 40000, 0, 0, 0 }, + { 815, 815, 0, 0, 40000, 80, 0, 0 }, + { 816, 816, 0, 0, 40000, 80, 0, 0 }, + { 817, 817, 0, 0, 40000, 46, 0, 0 }, + { 818, 818, 0, 0, 40000, 0, 0, 0 }, + { 819, 819, 0, 0, 40000, 66, 0, 0 }, + { 820, 820, 0, 0, 40000, 126, 0, 0 }, + { 821, 821, 0, 0, 40000, 213, 0, 0 }, + { 822, 822, 0, 0, 40000, 80, 0, 0 }, + { 823, 823, 0, 0, 40000, 73, 0, 0 }, + { 824, 824, 0, 0, 40000, 73, 0, 0 }, + { 825, 825, 0, 0, 40000, 100, 0, 0 }, + { 826, 826, 0, 0, 40000, 93, 0, 0 }, + { 827, 827, 0, 0, 40000, 73, 0, 0 }, + { 828, 828, 0, 0, 40000, 73, 0, 0 }, + { 829, 829, 0, 0, 40000, 80, 0, 0 }, + { 830, 830, 0, 0, 40000, 80, 0, 0 }, + { 831, 831, 0, 0, 40000, 80, 0, 0 }, + { 832, 832, 0, 0, 40000, 73, 0, 0 }, + { 833, 833, 0, 0, 40000, 80, 0, 0 }, + { 834, 834, 0, 0, 40000, 86, 0, 0 }, + { 835, 835, 0, 0, 40000, 100, 0, 0 }, + { 836, 836, 0, 0, 40000, 100, 0, 0 }, + { 837, 837, 0, 0, 40000, 140, 0, 0 }, + { 838, 838, 0, 0, 40000, 73, 0, 0 }, + { 839, 839, 0, 0, 40000, 0, 0, 0 }, + { 840, 840, 0, 0, 40000, 93, 0, 0 }, + { 841, 841, 0, 0, 40000, 0, 0, 0 }, + { 842, 842, 0, 0, 40000, 0, 0, 0 }, + { 843, 843, 0, 0, 40000, 73, 0, 0 }, + { 844, 844, 0, 0, 40000, 66, 0, 0 }, + { 845, 845, 0, 0, 40000, 0, 0, 0 }, + { 846, 846, 0, 0, 40000, 193, 0, 0 }, + { 847, 847, 0, 0, 40000, 340, 0, 0 }, + { 848, 848, 0, 0, 40000, 233, 0, 0 }, + { 849, 849, 0, 0, 40000, 80, 0, 0 }, + { 850, 850, 0, 0, 40000, 186, 0, 0 }, + { 851, 851, 0, 0, 9973, 426, 0, 0 }, + { 852, 852, 0, 0, 40000, 200, 0, 0 }, + { 853, 853, 0, 0, 40000, 400, 0, 0 }, + { 854, 854, 0, 0, 14633, 200, 0, 0 }, + { 855, 855, 0, 0, 40000, 333, 0, 0 }, + { 856, 856, 0, 0, 4620, 800, 0, 0 }, + { 857, 857, 0, 0, 8940, 386, 0, 0 }, + { 858, 858, 0, 0, 8966, 740, 0, 0 }, + { 859, 859, 0, 0, 40000, 273, 0, 0 }, + { 860, 860, 0, 0, 40000, 126, 0, 0 }, + { 861, 861, 0, 0, 40000, 400, 0, 0 }, + { 862, 862, 0, 0, 4480, 213, 0, 0 }, + { 863, 863, 0, 0, 633, 100, 0, 0 }, + { 864, 864, 0, 0, 3740, 353, 0, 0 }, + { 865, 865, 0, 0, 2333, 406, 0, 0 }, + { 866, 866, 0, 0, 1933, 566, 0, 0 }, + { 867, 867, 0, 0, 40000, 93, 0, 0 }, + { 868, 868, 0, 0, 40000, 106, 0, 0 }, + { 869, 869, 0, 0, 40000, 100, 0, 0 }, + { 870, 870, 0, 0, 3093, 240, 0, 0 }, + { 871, 871, 0, 0, 513, 93, 0, 0 }, + { 872, 872, 0, 0, 700, 180, 0, 0 }, + { 361, 361, 0, 0, 373, 40, 0, 0 }, + { 873, 873, 0, 0, 1046, 446, 0, 0 }, + { 874, 874, 0, 0, 1886, 520, 0, 0 }, + { 875, 875, 0, 0, 1226, 366, 0, 0 }, + { 876, 876, 0, 0, 4193, 73, 0, 0 }, + { 877, 877, 0, 0, 826, 120, 0, 0 }, + { 878, 878, 0, 0, 280, 146, 0, 0 }, + { 879, 879, 0, 0, 5266, 806, 0, 0 }, + { 880, 880, 0, 0, 386, 80, 0, 0 }, + { 881, 881, 0, 0, 40000, 100, 0, 0 }, + { 882, 882, 0, 0, 40000, 413, 0, 0 }, + { 883, 883, 0, 0, 40000, 0, 0, 0 }, + { 884, 884, 36, 0, 233, 80, 0, 0 }, + { 885, 885, 48, 0, 193, 93, 0, 0 }, + { 885, 885, 36, 0, 226, 100, 0, 0 }, + { 886, 886, 36, 0, 113, 0, 0, 0 }, + { 887, 887, 32, 0, 133, 40, 0, 0 }, + { 767, 767, 96, 0, 1760, 480, 0, 0 }, + { 888, 888, 30, 0, 246, 40, 0, 0 }, + { 889, 889, 35, 0, 420, 140, 0, 0 }, + { 890, 890, 60, 0, 240, 60, 0, 0 }, + { 884, 884, 59, 0, 146, 20, 0, 0 }, + { 890, 890, 44, 0, 240, 60, 0, 0 }, + { 891, 891, 41, 0, 713, 273, 0, 0 }, + { 892, 892, 47, 0, 173, 93, 0, 0 }, + { 891, 891, 44, 0, 513, 206, 0, 0 }, + { 891, 891, 48, 0, 506, 200, 0, 0 }, + { 893, 893, 62, 0, 1926, 93, 0, 0 }, + { 891, 891, 51, 0, 520, 200, 0, 0 }, + { 891, 891, 54, 0, 513, 206, 0, 0 }, + { 894, 894, 40, 0, 1280, 793, 0, 0 }, + { 891, 891, 57, 0, 380, 160, 0, 0 }, + { 895, 895, 97, 0, 233, 106, 0, 0 }, + { 896, 896, 50, 0, 220, 93, 0, 0 }, + { 376, 376, 60, 0, 1573, 713, 0, 0 }, + { 897, 897, 53, 0, 126, 73, 0, 0 }, + { 898, 898, 46, 0, 173, 133, 0, 0 }, + { 897, 897, 57, 0, 126, 33, 0, 0 }, + { 899, 899, 42, 0, 626, 233, 0, 0 }, + { 899, 899, 37, 0, 633, 240, 0, 0 }, + { 900, 900, 41, 0, 626, 240, 0, 0 }, + { 900, 900, 37, 0, 626, 240, 0, 0 }, + { 871, 871, 77, 0, 173, 40, 0, 0 }, + { 871, 871, 72, 0, 173, 40, 0, 0 }, + { 388, 388, 70, 0, 213, 86, 0, 0 }, + { 901, 901, 39, 0, 260, 26, 0, 0 }, + { 902, 902, 36, 0, 1093, 73, 0, 0 }, + { 903, 903, 46, 0, 120, 73, 0, 0 }, + { 904, 904, 48, 0, 766, 80, 0, 0 }, + { 905, 905, 85, 0, 126, 26, 0, 0 }, + { 361, 361, 66, 0, 180, 26, 0, 0 }, + { 906, 906, 41, 0, 193, 73, 0, 0 }, + { 907, 907, 41, 0, 333, 106, 0, 0 }, + { 908, 908, 81, 0, 160, 26, 0, 0 }, + { 400, 400, 10, 0, 1186, 413, 0, 0 }, + { 886, 886, 60, 0, 100, 0, 0, 0 }, + { 873, 873, 53, 0, 846, 360, 0, 0 }, + { 909, 909, 0, 0, 5593, 340, 0, 0 }, + { 910, 910, 0, 0, 14646, 346, 0, 0 }, + { 911, 911, 0, 0, 6826, 280, 0, 0 }, + { 912, 912, 0, 0, 7000, 306, 0, 0 }, + { 913, 913, 0, 0, 8793, 133, 0, 0 }, + { 914, 914, 0, 0, 14680, 346, 0, 0 }, + { 915, 915, 0, 0, 7246, 126, 0, 0 }, + { 916, 916, 0, 0, 40000, 0, 0, 0 }, + { 917, 917, 0, 0, 1866, 433, 0, 0 }, + { 362, 362, 0, 0, 1106, 340, 0, 0 }, + { 918, 918, 0, 0, 1053, 273, 0, 0 }, + { 919, 919, 0, 0, 14513, 1213, 0, 0 }, + { 920, 920, 0, 0, 1886, 646, 0, 0 }, + { 921, 921, 0, 0, 926, 313, 0, 0 }, + { 922, 922, 0, 0, 2340, 806, 0, 0 }, + { 923, 923, 0, 0, 2966, 553, 0, 0 }, + { 924, 924, 0, 0, 40000, 66, 0, 0 }, + { 925, 925, 0, 0, 40000, 73, 0, 0 }, + { 926, 926, 0, 0, 40000, 0, 0, 0 }, + { 927, 927, 0, 0, 40000, 126, 0, 0 }, + { 928, 928, 0, 0, 40000, 113, 0, 0 }, + { 929, 929, 0, 0, 40000, 113, 0, 0 }, + { 930, 930, 0, 0, 40000, 93, 0, 0 }, + { 931, 931, 0, 0, 40000, 113, 0, 0 }, + { 932, 932, 0, 0, 7200, 86, 0, 0 }, + { 933, 933, 0, 0, 5373, 106, 0, 0 }, + { 934, 934, 0, 0, 40000, 0, 0, 0 }, + { 935, 935, 0, 0, 40000, 0, 0, 0 }, + { 936, 936, 0, 0, 2380, 73, 0, 0 }, + { 937, 937, 0, 0, 40000, 0, 0, 0 }, + { 938, 938, 0, 0, 40000, 0, 0, 0 }, + { 939, 939, 0, 0, 6013, 53, 0, 0 }, + { 940, 940, 0, 0, 3713, 126, 0, 0 }, + { 941, 941, 0, 0, 17566, 26, 0, 0 }, + { 942, 942, 0, 0, 40000, 0, 0, 0 }, + { 943, 943, 0, 0, 40000, 0, 0, 0 }, + { 944, 944, 0, 0, 2506, 126, 0, 0 }, + { 945, 945, 0, 0, 3733, 73, 0, 0 }, + { 946, 946, 0, 0, 40000, 0, 0, 0 }, + { 947, 947, 0, 0, 3386, 80, 0, 0 }, + { 948, 948, 0, 0, 40000, 100, 0, 0 }, + { 949, 949, 0, 0, 40000, 100, 0, 0 }, + { 950, 950, 0, 0, 40000, 113, 0, 0 }, + { 951, 951, 0, 0, 40000, 0, 0, 0 }, + { 952, 952, 0, 0, 40000, 200, 0, 0 }, + { 953, 953, 0, 0, 1140, 213, 0, 0 }, + { 954, 954, 0, 0, 2140, 400, 0, 0 }, + { 955, 955, 0, 0, 813, 240, 0, 0 }, + { 956, 956, 0, 0, 40000, 100, 0, 0 }, + { 957, 957, 0, 0, 40000, 426, 0, 0 }, + { 958, 958, 0, 0, 40000, 0, 0, 0 }, + { 959, 959, 0, 0, 40000, 146, 0, 0 }, + { 960, 960, 0, 0, 40000, 120, 0, 0 }, + { 961, 961, 0, 0, 40000, 93, 0, 0 }, + { 962, 962, 0, 0, 1193, 153, 0, 0 }, + { 963, 963, 0, 0, 40000, 46, 0, 0 }, + { 964, 964, 0, 0, 40000, 80, 0, 0 }, + { 965, 965, 0, 0, 40000, 80, 0, 0 }, + { 966, 966, 0, 0, 40000, 20, 0, 0 }, + { 967, 967, 0, 0, 40000, 0, 0, 0 }, + { 968, 968, 0, 0, 40000, 93, 0, 0 }, + { 969, 969, 0, 0, 40000, 86, 0, 0 }, + { 970, 970, 0, 0, 40000, 213, 0, 0 }, + { 971, 971, 0, 0, 40000, 80, 0, 0 }, + { 972, 972, 0, 0, 40000, 73, 0, 0 }, + { 973, 973, 0, 0, 40000, 0, 0, 0 }, + { 974, 974, 0, 0, 40000, 93, 0, 0 }, + { 975, 975, 0, 0, 40000, 73, 0, 0 }, + { 976, 976, 0, 0, 40000, 73, 0, 0 }, + { 977, 977, 0, 0, 40000, 66, 0, 0 }, + { 978, 978, 0, 0, 40000, 66, 0, 0 }, + { 979, 979, 0, 0, 40000, 100, 0, 0 }, + { 980, 980, 0, 0, 40000, 73, 0, 0 }, + { 981, 981, 0, 0, 40000, 73, 0, 0 }, + { 982, 982, 0, 0, 40000, 80, 0, 0 }, + { 983, 983, 0, 0, 40000, 100, 0, 0 }, + { 984, 984, 0, 0, 40000, 100, 0, 0 }, + { 985, 985, 0, 0, 40000, 100, 0, 0 }, + { 986, 986, 0, 0, 40000, 80, 0, 0 }, + { 987, 987, 0, 0, 40000, 73, 0, 0 }, + { 988, 988, 0, 0, 40000, 0, 0, 0 }, + { 989, 989, 0, 0, 40000, 86, 0, 0 }, + { 990, 990, 0, 0, 40000, 0, 0, 0 }, + { 991, 991, 0, 0, 40000, 0, 0, 0 }, + { 992, 992, 0, 0, 40000, 80, 0, 0 }, + { 993, 993, 0, 0, 40000, 86, 0, 0 }, + { 994, 994, 0, 0, 40000, 0, 0, 0 }, + { 995, 995, 0, 0, 40000, 0, 0, 0 }, + { 996, 996, 0, 0, 40000, 333, 0, 0 }, + { 997, 997, 0, 0, 40000, 180, 0, 0 }, + { 998, 998, 0, 0, 40000, 80, 0, 0 }, + { 999, 999, 0, 0, 40000, 120, 0, 0 }, + {1000,1000, 0, 0, 10006, 460, 0, 0 }, + {1001,1001, 0, 0, 40000, 186, 0, 0 }, + {1002,1002, 0, 0, 40000, 400, 0, 0 }, + {1003,1003, 0, 0, 20333, 260, 0, 0 }, + {1004,1004, 0, 0, 40000, 373, 0, 0 }, + {1005,1005, 0, 0, 4520, 400, 0, 0 }, + {1006,1006, 0, 0, 8213, 306, 0, 0 }, + {1007,1007, 0, 0, 8646, 360, 0, 0 }, + {1008,1008, 0, 0, 40000, 160, 0, 0 }, + {1009,1009, 0, 0, 40000, 133, 0, 0 }, + {1010,1010, 0, 0, 40000, 400, 0, 0 }, + {1011,1011, 0, 0, 4473, 193, 0, 0 }, + {1012,1012, 0, 0, 1813, 0, 0, 0 }, + {1013,1013, 0, 0, 3726, 353, 0, 0 }, + {1014,1014, 0, 0, 4400, 373, 0, 0 }, + {1015,1015, 0, 0, 953, 166, 0, 0 }, + {1016,1016, 0, 0, 40000, 73, 0, 0 }, + {1017,1017, 0, 0, 40000, 100, 0, 0 }, + {1018,1018, 0, 0, 40000, 100, 0, 0 }, + {1019,1019, 0, 0, 3100, 240, 0, 0 }, + { 444, 444, 0, 0, 513, 93, 0, 0 }, + {1020,1020, 0, 0, 626, 180, 0, 0 }, + { 449, 449, 0, 0, 373, 80, 0, 0 }, + { 453, 453, 0, 0, 40000, 0, 0, 0 }, + {1021,1021, 0, 0, 1020, 340, 0, 0 }, + {1022,1022, 0, 0, 1200, 366, 0, 0 }, + {1023,1023, 0, 0, 4193, 73, 0, 0 }, + {1024,1024, 0, 0, 820, 120, 0, 0 }, + {1025,1025, 0, 0, 680, 213, 0, 0 }, + {1026,1026, 0, 0, 5260, 806, 0, 0 }, + {1027,1027, 0, 0, 9193, 86, 0, 0 }, + {1028,1028, 0, 0, 40000, 100, 0, 0 }, + {1029,1029, 0, 0, 40000, 426, 0, 0 }, + {1030,1030, 0, 0, 40000, 260, 0, 0 }, + {1031,1031, 0, 0, 3480, 66, 0, 0 }, + {1032,1032, 32, 0, 133, 46, 0, 0 }, + {1033,1033, 30, 0, 200, 40, 0, 0 }, + {1034,1034, 96, 0, 146, 73, 0, 0 }, + {1035,1035, 60, 0, 553, 186, 0, 0 }, + {1036,1036, 0, 0, 13193, 260, 0, 0 }, + {1037,1037, 0, 0, 40000, 100, 0, 0 }, + {1038,1038, 0, 0, 7980, 66, 0, 0 }, + {1039,1039, 0, 0, 40000, 0, 0, 0 }, + {1040,1040, 0, 0, 980, 340, 0, 0 }, + {1041,1041, 0, 0, 7413, 2480, 0, 0 }, + {1042,1042, 0, 0, 2906, 520, 0, 0 }, + {1043,1043, 0, 0, 40000, 73, 0, 0 }, + {1044,1044, 0, 0, 40000, 53, 0, 0 }, + {1045,1045, 0, 0, 40000, 113, 0, 0 }, + {1046,1046, 0, 0, 5380, 113, 0, 0 }, + {1047,1047, 0, 0, 40000, 0, 0, 0 }, + {1048,1048, 0, 0, 2366, 73, 0, 0 }, + {1049,1049, 0, 0, 40000, 0, 0, 0 }, + {1050,1050, 0, 0, 18293, 80, 0, 0 }, + {1051,1051, 0, 0, 18466, 146, 0, 0 }, + {1052,1052, 0, 0, 9220, 73, 0, 0 }, + {1053,1053, 0, 0, 40000, 240, 0, 0 }, + {1054,1054, 0, 0, 40000, 0, 0, 0 }, + {1055,1055, 0, 0, 1086, 126, 0, 0 }, + {1056,1056, 0, 0, 3766, 73, 0, 0 }, + {1057,1057, 0, 0, 1186, 226, 0, 0 }, + {1058,1058, 0, 0, 3373, 73, 0, 0 }, + {1059,1059, 0, 0, 40000, 246, 0, 0 }, + {1060,1060, 0, 0, 340, 220, 0, 0 }, + {1061,1061, 0, 0, 1186, 386, 0, 0 }, + {1062,1062, 0, 0, 40000, 253, 0, 0 }, + {1063,1063, 0, 0, 40000, 440, 0, 0 }, + {1064,1064, 0, 0, 40000, 46, 0, 0 }, + {1065,1065, 0, 0, 40000, 80, 0, 0 }, + {1066,1066, 0, 0, 40000, 126, 0, 0 }, + {1067,1067, 0, 0, 40000, 133, 0, 0 }, + {1068,1068, 0, 0, 40000, 93, 0, 0 }, + {1069,1069, 0, 0, 40000, 86, 0, 0 }, + {1070,1070, 0, 0, 40000, 93, 0, 0 }, + {1071,1071, 0, 0, 40000, 66, 0, 0 }, + {1072,1072, 0, 0, 40000, 93, 0, 0 }, + {1073,1073, 0, 0, 40000, 73, 0, 0 }, + {1074,1074, 0, 0, 40000, 173, 0, 0 }, + {1075,1075, 0, 0, 586, 193, 0, 0 }, + {1076,1076, 0, 0, 40000, 146, 0, 0 }, + {1077,1077, 0, 0, 18460, 73, 0, 0 }, + {1078,1078, 0, 0, 846, 93, 0, 0 }, + {1079,1079, 0, 0, 40000, 0, 0, 0 }, + {1080,1080, 0, 0, 40000, 86, 0, 0 }, + {1081,1081, 0, 0, 40000, 0, 0, 0 }, + {1082,1082, 0, 0, 40000, 353, 0, 0 }, + {1083,1083, 0, 0, 40000, 300, 0, 0 }, + {1084,1084, 0, 0, 40000, 320, 0, 0 }, + {1085,1085, 0, 0, 9920, 1553, 0, 0 }, + {1086,1086, 0, 0, 40000, 386, 0, 0 }, + {1087,1087, 0, 0, 40000, 0, 0, 0 }, + {1088,1088, 0, 0, 9980, 873, 0, 0 }, + {1089,1089, 0, 0, 40000, 386, 0, 0 }, + {1090,1090, 0, 0, 966, 126, 0, 0 }, + {1091,1091, 0, 0, 40000, 820, 0, 0 }, + {1092,1092, 0, 0, 8620, 366, 0, 0 }, + {1093,1093, 0, 0, 40000, 826, 0, 0 }, + {1094,1094, 0, 0, 40000, 433, 0, 0 }, + {1095,1095, 0, 0, 633, 73, 0, 0 }, + {1096,1096, 0, 0, 3693, 126, 0, 0 }, + {1097,1097, 0, 0, 40000, 0, 0, 0 }, + {1098,1098, 0, 0, 40000, 153, 0, 0 }, + {1099,1099, 0, 0, 40000, 0, 0, 0 }, + {1100,1100, 0, 0, 40000, 0, 0, 0 }, + {1101,1101, 0, 0, 40000, 306, 0, 0 }, + {1102,1102, 0, 0, 3666, 3093, 0, 0 }, + {1103,1103, 0, 0, 1873, 653, 0, 0 }, + {1104,1104, 0, 0, 40000, 0, 0, 0 }, + {1105,1105, 0, 0, 11293, 886, 0, 0 }, + {1106,1106, 0, 0, 40000, 546, 0, 0 }, + { 430, 430, 0, 0, 1146, 80, 0, 0 }, + {1107,1107, 35, 0, 580, 80, 0, 0 }, + {1090,1090, 77, 0, 280, 60, 0, 0 }, + {1090,1090, 72, 0, 280, 60, 0, 0 }, + {1108,1108, 0, 0, 10180, 600, 0, 0 }, + {1109,1109, 0, 0, 10053, 353, 0, 0 }, + {1110,1111, 0, 1, 9940, 480, 0, 0 }, + {1112,1113, 0, 1, 10620, 473, 0, 0.03125 }, + {1114,1114, 0, 0, 40000, 0, 0, 0 }, + {1115,1116, 0, 1, 9833, 220, 0, 0 }, + {1117,1117, 0, 0, 10286, 473, 0, 0 }, + {1118,1118, 0, 0, 7686, 93, 0, 0 }, + {1119,1119, 0, 0, 7220, 613, 0, 0 }, + {1120,1120, 0, 0, 11513, 1666, 0, 0 }, + {1121,1121, 0, 0, 5200, 1700, 0, 0 }, + {1122,1122, 0, 0, 10173, 626, 0, 0 }, + {1123,1123, 0, 0, 1206, 380, 0, 0 }, + {1124,1124, 0, 0, 1953, 866, 0, 0 }, + {1125,1125, 0, 0, 4686, 1586, 0, 0 }, + {1126,1126, 0, 0, 3786, 893, 0, 0 }, + {1127,1127, 0, 0, 40000, 126, 0, 0 }, + {1128,1128, 0, 0, 40000, 120, 0, 0 }, + {1129,1130, 0, 1, 40000, 146, 0, 0.15625 }, + {1131,1131, 0, 0, 40000, 433, 0, 0 }, + {1132,1132, 0, 0, 40000, 133, 0, 0 }, + {1133,1134, 0, 1, 40000, 126, 0, -0.046875 }, + {1135,1135, 0, 0, 40000, 113, 0, 0 }, + {1136,1137, 0, 1, 40000, 253, 0, 2.5e-05 }, + {1138,1138, 0, 0, 18440, 240, 0, 0 }, + {1139,1139, 0, 0, 5213, 886, 0, 0 }, + {1140,1140, 0, 0, 1446, 113, 0, 0 }, + {1141,1141, 0, 0, 5233, 106, 0, 0 }, + {1142,1142, 0, 0, 5286, 266, 0, 0 }, + {1143,1143, 0, 0, 40000, 66, 0, 0 }, + {1144,1144, 0, 0, 40000, 66, 0, 0 }, + {1145,1145, 0, 0, 10593, 106, 0, 0 }, + {1146,1146, 0, 0, 2733, 160, 0, 0 }, + {1147,1147, 0, 0, 10313, 93, 0, 0 }, + {1148,1148, 0, 0, 40000, 0, 0, 0 }, + {1149,1150, 0, 1, 40000, 0, 0, -0.03125 }, + {1151,1151, 0, 0, 40000, 53, 0, 0 }, + {1152,1152, 0, 0, 10560, 246, 0, 0 }, + {1153,1153, 0, 0, 2700, 153, 0, 0 }, + {1154,1154, 0, 1, 40000, 100, 0, -0.15625 }, + {1155,1155, 0, 0, 40000, 73, 0, 0 }, + {1156,1156, 0, 0, 40000, 220, 0, 0 }, + {1157,1157, 0, 0, 40000, 140, 0, 0 }, + {1158,1158, 0, 0, 40000, 380, 0, 0 }, + {1159,1160, 0, 1, 40000, 400, 0, 0.171875 }, + {1161,1161, 0, 0, 40000, 0, 0, 0 }, + {1162,1162, 0, 0, 40000, 0, 0, 0 }, + {1163,1163, 0, 0, 4733, 906, 0, 0 }, + {1164,1165, 0, 1, 40000, 393, 0, -0.125 }, + {1166,1167, 0, 1, 40000, 366, 0, 0.078125 }, + {1168,1168, 0, 1, 40000, 2453, 0, -0.078125 }, + {1169,1170, 0, 1, 40000, 546, 0, 0.0625 }, + {1171,1172, 0, 1, 40000, 786, 0, 0.15625 }, + {1173,1173, 0, 0, 40000, 0, 0, 0 }, + {1174,1174, 0, 0, 40000, 513, 0, 0 }, + {1175,1176, 0, 1, 2300, 533, 0, 0 }, + {1177,1177, 0, 0, 40000, 80, 0, 0 }, + {1178,1178, 0, 0, 40000, 60, 0, 0 }, + {1179,1179, 0, 0, 40000, 0, 0, 0 }, + {1180,1180, 0, 0, 10653, 86, 0, 0 }, + {1181,1182, 0, 1, 40000, 0, 0, 2.5e-05 }, + {1183,1184, 0, 1, 40000, 86, 0, 0.046875 }, + {1185,1186, 0, 1, 40000, 0, 0, 0.09375 }, + {1187,1188, 0, 1, 40000, 0, 0, 0.09375 }, + {1189,1189, 0, 0, 40000, 133, 0, 0 }, + {1190,1190, 0, 0, 40000, 140, 0, 0 }, + {1191,1191, 0, 0, 40000, 73, 0, 0 }, + {1192,1192, 0, 0, 40000, 60, 0, 0 }, + {1193,1193, 0, 0, 40000, 106, 0, 0 }, + {1194,1194, 0, 0, 40000, 93, 0, 0 }, + {1195,1195, 0, 0, 40000, 66, 0, 0 }, + {1196,1196, 0, 0, 40000, 93, 0, 0 }, + {1197,1197, 0, 0, 40000, 60, 0, 0 }, + {1198,1198, 0, 0, 40000, 66, 0, 0 }, + {1199,1199, 0, 0, 40000, 120, 0, 0 }, + {1200,1200, 0, 0, 40000, 100, 0, 0 }, + {1201,1201, 0, 0, 40000, 86, 0, 0 }, + {1202,1202, 0, 0, 40000, 0, 0, 0 }, + {1203,1203, 0, 0, 40000, 233, 0, 0 }, + {1204,1204, 0, 0, 40000, 100, 0, 0 }, + {1205,1206, 0, 1, 40000, 266, 0, 0.03125 }, + {1207,1208, 0, 1, 40000, 260, 0, -2.5e-05 }, + {1209,1209, 0, 0, 40000, 146, 0, 0 }, + {1210,1211, 0, 1, 40000, 60, 0, 0.03125 }, + {1212,1212, 0, 0, 40000, 53, 0, 0 }, + {1213,1214, 0, 1, 40000, 706, 0, -0.09375 }, + {1215,1216, 0, 1, 40000, 660, 0, -0.046875 }, + {1217,1217, 0, 0, 40000, 133, 0, 0 }, + {1218,1219, 0, 1, 40000, 426, 0, 0.03125 }, + {1220,1220, 0, 1, 40000, 0, 0, 0.03125 }, + {1221,1222, 0, 1, 40000, 260, 0, 0.171875 }, + {1223,1223, 0, 0, 40000, 0, 0, 0 }, + {1224,1224, 0, 0, 6100, 1580, 0, 0 }, + {1225,1150, 0, 1, 40000, 73, 0, -0.03125 }, + {1226,1226, 0, 0, 40000, 1580, 0, 0 }, + {1227,1227, 0, 0, 40000, 40, 0, 0 }, + {1228,1229, 0, 1, 40000, 113, 0, 0.125 }, + {1230,1230, 0, 0, 2666, 846, 0, 0 }, + {1231,1232, 0, 1, 40000, 0, 0, -0.03125 }, + {1233,1234, 0, 1, 9233, 2413, 0, -0.1875 }, + {1235,1235, 0, 0, 40000, 1020, 0, 0 }, + {1236,1236, 0, 0, 40000, 0, 0, 0 }, + {1237,1237, 0, 0, 9633, 3073, 0, 0 }, + {1238,1238, 0, 0, 40000, 0, 0, 0 }, + {1239,1239, 0, 0, 2446, 386, 0, 0 }, + {1240,1241, 0, 1, 3113, 1133, 0, 0 }, + {1242,1242, 0, 0, 18473, 813, 0, 0 }, + {1243,1243, 0, 0, 1206, 660, 0, 0 }, + {1244,1244, 0, 0, 40000, 153, 0, 0 }, + {1245,1245, 0, 0, 40000, 160, 0, 0 }, + {1246,1246, 0, 0, 40000, 133, 0, 0 }, + {1247,1247, 0, 0, 8660, 2386, 0, 0 }, + {1248,1248, 0, 0, 293, 106, 0, 0 }, + {1249,1249, 0, 0, 40000, 433, 0, 0 }, + {1250,1250, 0, 0, 426, 80, 0, 0 }, + {1251,1251, 0, 0, 973, 360, 0, 0 }, + {1252,1252, 0, 0, 573, 153, 0, 0 }, + {1253,1253, 0, 0, 3746, 126, 0, 0 }, + {1254,1254, 0, 0, 2313, 73, 0, 0 }, + {1255,1255, 0, 0, 1473, 106, 0, 0 }, + {1256,1256, 0, 0, 1500, 320, 0, 0 }, + {1257,1257, 0, 0, 5280, 1593, 0, 0 }, + {1258,1258, 0, 0, 40000, 60, 0, 0 }, + {1259,1259, 0, 0, 40000, 146, 0, 0 }, + {1260,1260, 29, 0, 40000, 300, 0, 0 }, + {1261,1261, 65, 0, 40000, 2040, 0, 0 }, + {1262,1262, 0, 0, 626, 240, 0, 0 }, + {1263,1263, 25, 0, 626, 226, 0, 0 }, + {1264,1264, 83, 0, 180, 80, 0, 0 }, + {1265,1265, 32, 0, 260, 140, 0, 0 }, + {1266,1266, 60, 0, 40000, 0, 0, 0 }, + {1267,1267, 36, 0, 286, 40, 0, 0 }, + {1268,1268, 27, 0, 573, 80, 0, 0 }, + {1269,1269, 31, 0, 693, 106, 0, 0 }, + {1270,1270, 21, 0, 500, 146, 0, 0 }, + {1270,1270, 26, 0, 493, 140, 0, 0 }, + {1270,1270, 28, 0, 500, 146, 0, 0 }, + {1271,1271, 60, 0, 2420, 1080, 0, 0 }, + {1270,1270, 32, 0, 413, 126, 0, 0 }, + {1272,1272, 60, 0, 806, 300, 0, 0 }, + {1273,1273, 96, 0, 1146, 493, 0, 0 }, + {1274,1274, 72, 0, 1246, 586, 0, 0 }, + {1275,1275, 79, 0, 286, 106, 0, 0 }, + {1276,1276, 69, 0, 1193, 1046, 0, 0 }, + {1277,1277, 71, 0, 340, 93, 0, 0 }, + {1278,1278, 22, 0, 1880, 653, 0, 0 }, + {1279,1279, 55, 0, 246, 120, 0, 0 }, + {1279,1279, 48, 0, 286, 133, 0, 0 }, + {1280,1280, 0, 0, 40, 0, 0, 0 }, + {1281,1281, 49, 2, 40, 0, 0, 0 }, + {1282,1282, 73, 0, 166, 33, 0, 0 }, + {1282,1282, 68, 0, 166, 33, 0, 0 }, + {1282,1282, 61, 0, 200, 40, 0, 0 }, + {1283,1283, 0, 0, 40, 0, 0, 0 }, + {1284,1284, 0, 0, 40000, 100, 0, 0 }, + {1285,1285, 0, 0, 40000, 60, 0, 0 }, + {1286,1286, 0, 0, 40000, 0, 0, 0 }, + {1287,1287, 0, 0, 10460, 153, 0, 0 }, + {1288,1289, 0, 1, 40000, 0, 0, 0 }, + {1290,1290, 0, 0, 40000, 0, 0, 0 }, + {1291,1292, 36, 1, 353, 153, 0, 0 }, + {1293,1293, 69, 0, 1206, 1060, 0, 0 }, + {1294,1294, 0, 0, 40000, 0, 0, 0 }, + {1295,1295, 0, 0, 40000, 73, 0, 0 }, + {1296,1296, 0, 0, 40000, 0, 0, 0 }, + {1297,1297, 22, 0, 1880, 653, 0, 0 }, + {1298,1298, 0, 0, 40000, 73, 0, 0 }, + {1299,1299, 0, 0, 3913, 420, 0, 0 }, + {1300,1300, 0, 0, 9233, 240, 0, 0 }, + {1301,1301, 0, 0, 4660, 1573, 0, 0 }, + {1302,1302, 0, 0, 1166, 400, 0, 0 }, + {1303,1303, 0, 0, 40000, 126, 0, 0 }, + {1304,1304, 0, 0, 40000, 93, 0, 0 }, + {1305,1305, 0, 0, 40000, 93, 0, 0 }, + {1306,1306, 0, 0, 40000, 553, 0, 0 }, + {1307,1307, 0, 0, 40000, 660, 0, 0 }, + {1308,1308, 0, 0, 40000, 73, 0, 0 }, + {1309,1309, 0, 0, 40000, 146, 0, 0 }, + {1310,1310, 0, 0, 40000, 146, 0, 0 }, + {1311,1311, 0, 0, 4026, 100, 0, 0 }, + {1312,1312, 0, 0, 18226, 100, 0, 0 }, + {1313,1313, 0, 0, 40000, 0, 0, 0 }, + {1314,1314, 0, 0, 40000, 73, 0, 0 }, + {1315,1315, 0, 0, 40000, 140, 0, 0 }, + {1316,1316, 0, 0, 40000, 393, 0, 0 }, + {1317,1317, 0, 0, 40000, 406, 0, 0 }, + {1318,1318, 0, 0, 40000, 373, 0, 0 }, + {1319,1319, 0, 0, 40000, 0, 0, 0 }, + {1320,1320, 0, 0, 40000, 360, 0, 0 }, + {1321,1321, 0, 0, 1060, 380, 0, 0 }, + {1322,1322, 0, 0, 40000, 66, 0, 0 }, + {1323,1323, 0, 0, 40000, 66, 0, 0 }, + {1324,1324, 0, 0, 40000, 86, 0, 0 }, + {1325,1325, 0, 0, 40000, 73, 0, 0 }, + { 260, 260, 0, 0, 40000, 80, 0, 0 }, + {1326,1326, 0, 0, 40000, 80, 0, 0 }, + {1327,1327, 0, 0, 40000, 73, 0, 0 }, + {1328,1328, 0, 0, 40000, 73, 0, 0 }, + {1329,1329, 0, 0, 40000, 153, 0, 0 }, + {1330,1330, 0, 0, 40000, 153, 0, 0 }, + {1331,1331, 0, 0, 40000, 146, 0, 0 }, + {1332,1332, 0, 0, 40000, 146, 0, 0 }, + {1333,1333, 0, 0, 40000, 73, 0, 0 }, + {1334,1334, 0, 0, 40000, 153, 0, 0 }, + {1335,1335, 0, 0, 40000, 233, 0, 0 }, + {1336,1336, 0, 0, 40000, 400, 0, 0 }, + {1337,1337, 0, 0, 40000, 1373, 0, 0 }, + {1338,1338, 0, 0, 40000, 193, 0, 0 }, + {1339,1339, 0, 0, 40000, 1273, 0, 0 }, + {1340,1340, 0, 0, 40000, 186, 0, 0 }, + {1341,1341, 0, 0, 40000, 86, 0, 0 }, + {1342,1342, 0, 0, 7440, 2473, 0, 0 }, + {1343,1343, 0, 0, 40000, 160, 0, 0 }, + {1344,1344, 0, 0, 8966, 406, 0, 0 }, + {1345,1345, 0, 0, 40000, 1353, 0, 0 }, + {1346,1346, 0, 0, 14180, 4406, 0, 0 }, + { 378, 378, 84, 0, 1333, 460, 0, 0 }, + {1347,1347, 24, 0, 1893, 633, 0, 0 }, + {1348,1348, 44, 0, 206, 86, 0, 0 }, + {1349,1349, 40, 0, 586, 140, 0, 0 }, + {1350,1350, 60, 0, 1026, 320, 0, 0 }, + {1351,1351, 0, 0, 6560, 33, 0, 0 }, + {1352,1352, 0, 0, 7373, 2453, 0, 0 }, + {1353,1353, 0, 0, 4660, 1573, 0, 0 }, + {1354,1354, 0, 0, 40000, 346, 0, 0 }, + {1355,1355, 0, 0, 7126, 86, 0, 0 }, + {1356,1356, 0, 0, 40000, 213, 0, 0 }, + {1357,1357, 0, 0, 1180, 340, 0, 0 }, + {1358,1358, 0, 0, 3893, 1466, 0, 0 }, + {1359,1359, 0, 0, 2053, 1173, 0, 0 }, + {1360,1360, 0, 0, 40000, 200, 0, 0 }, + {1361,1361, 0, 0, 40000, 353, 0, 0 }, + {1362,1362, 0, 0, 40000, 273, 0, 0 }, + {1363,1363, 0, 0, 40000, 433, 0, 0 }, + {1364,1364, 0, 0, 1940, 426, 0, 0 }, + {1365,1365, 0, 0, 40000, 80, 0, 0 }, + {1366,1366, 0, 0, 40000, 106, 0, 0 }, + {1367,1367, 0, 0, 40000, 60, 0, 0 }, + {1368,1368, 0, 0, 40000, 140, 0, 0 }, + {1369,1369, 0, 0, 40000, 93, 0, 0 }, + {1370,1370, 0, 0, 40000, 73, 0, 0 }, + {1371,1371, 0, 0, 40000, 73, 0, 0 }, + {1372,1372, 0, 0, 40000, 93, 0, 0 }, + {1373,1373, 0, 0, 40000, 73, 0, 0 }, + {1374,1374, 0, 0, 40000, 80, 0, 0 }, + {1375,1375, 0, 0, 40000, 746, 0, 0 }, + {1376,1376, 0, 0, 2360, 813, 0, 0 }, + {1377,1377, 0, 0, 340, 146, 0, 0 }, + {1378,1378, 35, 0, 713, 273, 0, 0 }, + {1379,1379, 49, 0, 173, 93, 0, 0 }, + {1377,1377, 48, 0, 286, 126, 0, 0 }, + {1380,1380, 58, 0, 173, 100, 0, 0 }, + {1377,1377, 60, 0, 286, 133, 0, 0 }, + {1381,1381, 47, 0, 973, 360, 0, 0 }, + {1382,1382, 60, 0, 146, 86, 0, 0 }, + {1381,1381, 49, 0, 966, 333, 0, 0 }, + {1383,1383, 72, 0, 506, 206, 0, 0 }, + {1381,1381, 51, 0, 953, 340, 0, 0 }, + {1384,1384, 84, 0, 1340, 480, 0, 0 }, + {1381,1381, 54, 0, 986, 360, 0, 0 }, + {1381,1381, 57, 0, 980, 346, 0, 0 }, + {1385,1385, 72, 0, 1573, 440, 0, 0 }, + {1381,1381, 60, 0, 953, 340, 0, 0 }, + {1386,1386, 36, 0, 2673, 900, 0, 0 }, + {1387,1387, 93, 0, 233, 106, 0, 0 }, + {1388,1388, 72, 0, 966, 353, 0, 0 }, + {1389,1389, 84, 0, 1366, 473, 0, 0 }, + {1390,1390, 36, 0, 1326, 446, 0, 0 }, + {1391,1391, 64, 0, 220, 86, 0, 0 }, + {1392,1392, 68, 0, 126, 220, 0, 0 }, + {1393,1393, 0, 0, 4513, 640, 0, 0 }, + {1394,1394, 0, 0, 40000, 353, 0, 0 }, + {1395,1395, 0, 0, 40000, 73, 0, 0 }, + {1396,1396, 0, 0, 2040, 380, 0, 0 }, + {1397,1397, 0, 0, 40000, 240, 0, 0 }, + {1398,1398, 0, 0, 3246, 753, 0, 0 }, + {1399,1399, 0, 0, 40000, 66, 0, 0 }, + {1400,1400, 0, 0, 40000, 0, 0, 0 }, + {1401,1401, 0, 0, 40000, 0, 0, 0 }, + {1402,1402, 0, 0, 7720, 1260, 0, 0 }, + {1403,1403, 0, 0, 213, 6420, 0, 0 }, + {1404,1404, 0, 0, 40000, 66, 0, 0 }, + {1405,1405, 0, 0, 40000, 73, 0, 0 }, + {1406,1406, 0, 0, 40000, 93, 0, 0 }, + {1407,1407, 0, 0, 1606, 640, 0, 0 }, + {1408,1408, 0, 0, 15486, 1580, 0, 0 }, + {1409,1409, 0, 0, 40000, 353, 0, 0 }, + {1410,1410, 0, 0, 40000, 2066, 0, 0 }, + {1411,1411, 0, 0, 40000, 0, 0, 0 }, + {1412,1412, 0, 0, 15453, 73, 0, 0 }, + {1413,1413, 0, 0, 3726, 1240, 0, 0 }, + {1414,1414, 0, 0, 40000, 86, 0, 0 }, + {1415,1415, 0, 0, 40000, 200, 0, 0 }, + {1416,1416, 0, 0, 40000, 53, 0, 0 }, + {1417,1417, 0, 0, 40000, 73, 0, 0 }, + {1418,1418, 0, 0, 40000, 66, 0, 0 }, + {1419,1419, 0, 0, 40000, 26, 0, 0 }, + {1420,1420, 0, 0, 40000, 53, 0, 0 }, + {1421,1421, 0, 0, 40000, 40, 0, 0 }, + {1422,1422, 0, 0, 40000, 126, 0, 0 }, + {1423,1423, 0, 0, 40000, 0, 0, 0 }, + {1424,1424, 0, 0, 13653, 0, 0, 0 }, + {1425,1425, 0, 0, 12533, 1953, 0, 0 }, + {1426,1426, 0, 0, 973, 1280, 0, 0 }, + {1427,1427, 0, 0, 40000, 426, 0, 0 }, + {1428,1428, 0, 0, 40000, 53, 0, 0 }, + {1429,1429, 0, 0, 40000, 66, 0, 0 }, + {1430,1430, 0, 0, 526, 840, 0, 0 }, + {1431,1431, 0, 0, 286, 1293, 0, 0 }, + {1432,1432, 0, 0, 14726, 4920, 0, 0 }, + {1433,1433, 0, 0, 5233, 633, 0, 0 }, + {1434,1434, 0, 0, 13226, 2500, 0, 0 }, + { 740, 740, 0, 0, 513, 200, 0, 0 }, + {1435,1435, 0, 0, 40000, 5666, 0, 0 }, + { 739, 739, 48, 0, 213, 20, 0, 0 }, + { 500, 500, 55, 0, 100, 0, 0, 0 }, + { 740, 740, 60, 0, 226, 113, 0, 0 }, + { 500, 500, 41, 0, 106, 0, 0, 0 }, + {1436,1436, 84, 0, 160, 26, 0, 0 }, + {1437,1437, 84, 0, 386, 493, 0, 0 }, + { 500, 500, 48, 0, 100, 0, 0, 0 }, + {1438,1438, 15, 0, 340, 140, 0, 0 }, + { 752, 752, 49, 0, 173, 20, 0, 0 }, + {1438,1438, 16, 0, 346, 146, 0, 0 }, + {1438,1438, 12, 0, 340, 140, 0, 0 }, + { 740, 740, 55, 0, 220, 113, 0, 0 }, + { 752, 752, 18, 0, 206, 20, 0, 0 }, + { 752, 752, 15, 0, 200, 20, 0, 0 }, + { 752, 752, 17, 0, 206, 20, 0, 0 }, + {1439,1440, 0, 4, 40000, 0, 0, 0 }, + {1441,1442, 0, 4, 7360, 200, 0, 0 }, + {1443,1444, 0, 4, 11840, 320, 0, 0 }, + {1445,1446, 0, 4, 9920, 326, 0, 0 }, + {1447,1448, 0, 4, 10213, 0, 0, 0 }, + {1449,1450, 0, 4, 7440, 2486, 0, 0 }, + { 181,1451, 0, 4, 2360, 733, 0, 0 }, + {1452,1453, 0, 4, 9260, 240, 0, 0 }, + {1454,1455, 0, 4, 40000, 0, 0, 0 }, + {1456,1457, 0, 4, 660, 126, 0, 0 }, + {1458,1459, 0, 4, 40000, 66, 0, 0 }, + { 190,1460, 0, 4, 40000, 60, 0, 0 }, + { 192,1461, 0, 4, 40000, 73, 0, 0 }, + {1462,1463, 0, 4, 40000, 353, 0, 0 }, + {1464,1465, 0, 4, 40000, 353, 0, 0 }, + {1466,1467, 0, 4, 40000, 66, 0, 0 }, + {1468,1469, 0, 4, 40000, 46, 0, 0 }, + { 35,1470, 0, 4, 40000, 46, 0, 0 }, + { 36,1471, 0, 4, 320, 0, 0, 0 }, + {1472,1473, 0, 4, 320, 0, 0, 0 }, + {1474,1475, 0, 4, 7986, 93, 0, 0 }, + { 39,1476, 0, 4, 1053, 226, 0, 0 }, + {1477,1476, 0, 4, 1060, 226, 0, 0 }, + {1478,1479, 0, 4, 40000, 453, 0, 0 }, + { 50,1480, 0, 4, 40000, 400, 0, 0 }, + {1481,1482, 0, 4, 40000, 133, 0, 0 }, + {1483,1484, 0, 4, 40000, 0, 0, 0 }, + {1485,1486, 0, 4, 40000, 226, 0, 0 }, + { 55,1487, 0, 4, 40000, 100, 0, 0 }, + {1488,1489, 0, 4, 40000, 93, 0, 0 }, + {1490,1491, 0, 4, 40000, 73, 0, 0 }, + {1492,1493, 0, 4, 40000, 73, 0, 0 }, + {1494,1495, 0, 4, 40000, 73, 0, 0 }, + {1496,1497, 0, 4, 40000, 80, 0, 0 }, + {1496,1498, 0, 4, 40000, 73, 0, 0 }, + {1499,1500, 0, 4, 40000, 66, 0, 0 }, + {1501,1502, 0, 4, 40000, 146, 0, 0 }, + {1503,1504, 0, 4, 40000, 93, 0, 0 }, + {1505,1506, 0, 4, 40000, 73, 0, 0 }, + { 86,1507, 0, 4, 40000, 80, 0, 0 }, + {1508,1509, 0, 4, 40000, 0, 0, 0 }, + {1510,1511, 0, 4, 40000, 60, 0, 0 }, + {1512,1513, 0, 4, 40000, 0, 0, 0 }, + {1514,1515, 0, 4, 40000, 0, 0, 0 }, + {1516,1517, 0, 4, 40000, 773, 0, 0 }, + {1518,1519, 0, 4, 5346, 2973, 0, 0 }, + {1520,1521, 0, 4, 40000, 406, 0, 0 }, + {1522,1523, 0, 4, 9080, 360, 0, 0 }, + {1524,1525, 0, 4, 40000, 1200, 0, 0 }, + {1526,1527, 0, 4, 40000, 800, 0, 0 }, + {1528,1529, 0, 4, 40000, 960, 0, 0 }, + { 111,1530, 0, 4, 1200, 433, 0, 0 }, + {1531,1532, 0, 4, 226, 386, 0, 0 }, + { 115,1533, 0, 4, 2433, 0, 0, 0 }, + {1534,1535, 0, 4, 1873, 646, 0, 0 }, + {1536,1537, 0, 4, 3013, 53, 0, 0 }, + {1538,1539, 0, 4, 1560, 720, 0, 0 }, + {1540, 339, 0, 6, 6, 0, 0, 0 }, + {1541, 339, 0, 6, 6, 0, 0, 0 }, + {1542,1543, 0, 4, 993, 93, 0, 0 }, + {1544,1545, 0, 4, 293, 86, 0, 0 }, + {1546,1547, 0, 4, 40000, 153, 0, 0 }, + { 364, 365, 44, 4, 120, 0, 0, 0 }, + { 129,1548, 48, 4, 173, 0, 0, 0 }, + { 367, 368, 58, 4, 173, 0, 0, 0 }, + { 129,1549, 60, 4, 173, 0, 0, 0 }, + {1550,1551, 48, 4, 520, 200, 0, 0 }, + { 132,1552, 43, 4, 173, 0, 0, 0 }, + {1550,1551, 49, 4, 520, 200, 0, 0 }, + {1553,1554, 43, 4, 160, 80, 0, 0 }, + {1550,1551, 51, 4, 513, 0, 0, 0 }, + { 134,1555, 43, 4, 1733, 0, 0, 0 }, + {1550,1551, 54, 4, 506, 0, 0, 0 }, + {1550,1551, 57, 4, 506, 0, 0, 0 }, + { 380, 381, 72, 4, 1580, 0, 0, 0 }, + {1550,1551, 60, 4, 520, 0, 0, 0 }, + {1556,1557, 70, 4, 826, 306, 0, 0 }, + { 374, 375, 60, 4, 973, 0, 0, 0 }, + {1558,1559, 36, 4, 1233, 0, 0, 0 }, + {1560,1561, 65, 4, 293, 133, 0, 0 }, + {1562,1563, 84, 4, 1360, 0, 0, 0 }, + {1564,1565, 59, 4, 380, 0, 0, 0 }, + {1566,1567, 84, 4, 1593, 566, 0, 0 }, + {1568,1569, 35, 4, 1353, 473, 0, 0 }, + {1570,1571, 44, 4, 413, 0, 0, 0 }, + {1572,1573, 67, 4, 246, 0, 0, 0 }, + {1574,1575, 66, 4, 293, 0, 0, 0 }, + { 145,1576, 59, 4, 146, 0, 0, 0 }, + {1577,1578, 51, 4, 360, 0, 0, 0 }, + {1579,1580, 45, 4, 246, 0, 0, 0 }, + {1581,1582, 71, 4, 433, 0, 0, 0 }, + { 149,1583, 60, 4, 280, 0, 0, 0 }, + {1584,1585, 58, 4, 173, 0, 0, 0 }, + {1586,1587, 53, 4, 173, 0, 0, 0 }, + { 397,1588, 64, 4, 220, 80, 0, 0 }, + {1589,1590, 71, 4, 106, 53, 0, 0 }, + {1591,1592, 61, 4, 1000, 340, 0, 0 }, + {1593,1594, 61, 4, 1000, 340, 0, 0 }, + { 391, 392, 48, 4, 160, 46, 0, 0 }, + { 391, 393, 48, 4, 380, 60, 0, 0 }, + {1595,1596, 69, 4, 120, 0, 0, 0 }, + { 159,1597, 68, 4, 120, 0, 0, 0 }, + { 159,1597, 63, 4, 140, 0, 0, 0 }, + {1598,1599, 74, 4, 893, 273, 0, 0 }, + {1600,1601, 60, 4, 1013, 306, 0, 0 }, + {1602,1603, 80, 4, 220, 0, 0, 0 }, + {1604,1605, 64, 4, 1366, 0, 0, 0 }, + {1606,1607, 69, 4, 120, 73, 0, 0 }, + { 398, 399, 55, 4, 1540, 193, 0, 0 }, + {1608,1609, 75, 4, 1573, 0, 0, 0 }, + {1610,1611, 68, 4, 120, 0, 0, 0 }, + {1612,1613, 48, 4, 360, 0, 0, 0 }, + {1614,1615, 53, 4, 606, 0, 0, 0 }, + {1616,1616, 0, 0, 40000, 1586, 0, 0 }, + {1617,1617, 0, 0, 40000, 1226, 0, 0 }, + {1618,1618, 0, 0, 4546, 766, 0, 0 }, + {1619,1619, 0, 0, 40000, 420, 0, 0 }, + {1620,1620, 0, 0, 40000, 1573, 0, 0 }, + {1621,1621, 0, 0, 3326, 806, 0, 0 }, + {1622,1622, 0, 0, 40000, 746, 0, 0 }, + {1623,1623, 0, 0, 40000, 900, 0, 0 }, + {1624,1624, 0, 0, 12166, 1573, 0, 0 }, + {1625,1625, 0, 0, 40000, 80, 0, 0 }, + {1626,1626, 0, 0, 40000, 80, 0, 0 }, + {1627,1627, 0, 0, 40000, 80, 0, 0 }, + {1628,1628, 0, 0, 40000, 2713, 0, 0 }, + {1629,1629, 0, 0, 40000, 86, 0, 0 }, + {1630,1630, 0, 0, 40000, 80, 0, 0 }, + {1631,1631, 0, 0, 40000, 80, 0, 0 }, + {1632,1632, 0, 0, 40000, 813, 0, 0 }, + {1633,1633, 0, 0, 40000, 80, 0, 0 }, + {1634,1634, 0, 0, 40000, 80, 0, 0 }, + {1635,1635, 0, 0, 40000, 80, 0, 0 }, + {1636,1636, 0, 0, 40000, 193, 0, 0 }, + {1637,1637, 0, 0, 2920, 733, 0, 0 }, + {1638,1638, 0, 0, 40000, 373, 0, 0 }, + {1639,1639, 0, 0, 2286, 226, 0, 0 }, + {1640,1640, 0, 0, 40000, 226, 0, 0 }, + {1641,1641, 0, 0, 40000, 226, 0, 0 }, + {1642,1642, 0, 0, 40000, 433, 0, 0 }, + {1643,1643, 0, 0, 40000, 813, 0, 0 }, + {1644,1644, 0, 0, 40000, 80, 0, 0 }, + {1645,1645, 0, 0, 40000, 80, 0, 0 }, + {1646,1646, 0, 0, 40000, 80, 0, 0 }, + {1647,1647, 0, 0, 40000, 80, 0, 0 }, + {1648,1648, 0, 0, 40000, 80, 0, 0 }, + {1649,1649, 0, 0, 40000, 80, 0, 0 }, + {1650,1650, 0, 0, 40000, 146, 0, 0 }, + {1651,1651, 0, 0, 40000, 1280, 0, 0 }, + {1652,1652, 0, 0, 40000, 513, 0, 0 }, + {1653,1653, 0, 0, 40000, 313, 0, 0 }, + {1654,1654, 0, 0, 40000, 773, 0, 0 }, + {1655,1655, 0, 0, 7400, 2480, 0, 0 }, + {1656,1656, 0, 0, 3760, 1253, 0, 0 }, + {1657,1657, 0, 0, 40000, 380, 0, 0 }, + {1658,1658, 0, 0, 40000, 333, 0, 0 }, + {1659,1659, 0, 0, 40000, 2926, 0, 0 }, + {1660,1660, 0, 0, 40000, 5666, 0, 0 }, + {1661,1661, 0, 0, 40000, 1613, 0, 0 }, + {1662,1662, 0, 0, 3746, 1273, 0, 0 }, + {1663,1663, 0, 0, 13653, 0, 0, 0 }, + {1664,1664, 0, 0, 4640, 1553, 0, 0 }, + {1665,1665, 0, 0, 40000, 680, 0, 0 }, + {1666,1666, 0, 0, 6393, 426, 0, 0 }, + {1667,1667, 0, 0, 40000, 713, 0, 0 }, + {1668,1668, 12, 0, 166, 20, 0, 0 }, + {1669,1669, 48, 0, 460, 193, 0, 0 }, + { 736, 736, 52, 0, 286, 20, 0, 0 }, + {1670,1670, 48, 0, 506, 200, 0, 0 }, + {1670,1670, 36, 0, 713, 260, 0, 0 }, + { 377, 377, 84, 0, 386, 493, 0, 0 }, + { 730, 730, 95, 0, 1886, 653, 0, 0 }, + {1669,1669, 84, 0, 386, 166, 0, 0 }, + { 755, 755, 20, 0, 633, 240, 0, 0 }, + { 755, 755, 22, 0, 626, 240, 0, 0 }, + { 755, 755, 24, 0, 633, 246, 0, 0 }, + {1671,1671, 0, 0, 2233, 220, 0, 0 }, + {1672,1672, 0, 0, 2233, 240, 0, 0 }, + {1673,1673, 0, 0, 2233, 206, 0, 0 }, + {1674,1674, 0, 0, 2126, 173, 0, 0 }, + {1675,1675, 0, 0, 7473, 73, 0, 0 }, + {1676,1676, 0, 0, 40000, 0, 0, 0 }, + {1677,1677, 0, 0, 3493, 193, 0, 0 }, + {1678,1678, 0, 0, 1746, 73, 0, 0 }, + {1679,1679, 0, 0, 1013, 400, 0, 0 }, + {1680,1680, 0, 0, 3473, 1560, 0, 0 }, + {1681,1681, 0, 0, 1073, 40, 0, 0 }, + {1682,1682, 0, 0, 40000, 380, 0, 0 }, + {1683,1683, 0, 0, 1166, 400, 0, 0 }, + {1684,1684, 0, 0, 606, 146, 0, 0 }, + {1685,1685, 0, 0, 4553, 1486, 0, 0 }, + {1686,1686, 0, 0, 1126, 80, 0, 0 }, + {1687,1687, 0, 0, 40000, 73, 0, 0 }, + {1688,1688, 0, 0, 40000, 60, 0, 0 }, + {1689,1689, 0, 0, 40000, 66, 0, 0 }, + {1690,1690, 0, 0, 40000, 73, 0, 0 }, + {1691,1691, 0, 0, 40000, 73, 0, 0 }, + {1692,1692, 0, 0, 40000, 73, 0, 0 }, + {1693,1693, 0, 0, 40000, 73, 0, 0 }, + {1694,1694, 0, 0, 6380, 53, 0, 0 }, + {1695,1695, 0, 0, 6380, 60, 0, 0 }, + {1696,1696, 0, 0, 40000, 53, 0, 0 }, + {1697,1697, 0, 0, 40000, 0, 0, 0 }, + {1698,1698, 0, 0, 1880, 80, 0, 0 }, + {1699,1699, 0, 0, 40000, 60, 0, 0 }, + {1700,1700, 0, 0, 40000, 60, 0, 0 }, + {1701,1701, 0, 0, 1460, 80, 0, 0 }, + {1702,1702, 0, 0, 40000, 73, 0, 0 }, + {1703,1703, 0, 0, 40000, 0, 0, 0 }, + {1704,1704, 0, 0, 40000, 146, 0, 0 }, + {1705,1705, 0, 0, 40000, 66, 0, 0 }, + {1706,1706, 0, 0, 40000, 73, 0, 0 }, + {1707,1707, 0, 0, 40000, 160, 0, 0 }, + {1708,1708, 0, 0, 40000, 73, 0, 0 }, + {1709,1709, 0, 0, 40000, 193, 0, 0 }, + {1710,1710, 0, 0, 3740, 1260, 0, 0 }, + {1711,1711, 0, 0, 40000, 180, 0, 0 }, + {1712,1712, 0, 0, 40000, 173, 0, 0 }, + {1713,1713, 0, 0, 40000, 113, 0, 0 }, + {1714,1714, 0, 0, 40000, 86, 0, 0 }, + {1715,1715, 0, 0, 1853, 633, 0, 0 }, + {1716,1716, 0, 0, 40000, 0, 0, 0 }, + {1717,1717, 0, 0, 1066, 306, 0, 0 }, + {1718,1718, 0, 0, 40000, 86, 0, 0 }, + {1719,1719, 0, 0, 40000, 586, 0, 0 }, + {1720,1720, 0, 0, 40000, 86, 0, 0 }, + {1721,1721, 0, 0, 40000, 93, 0, 0 }, + {1722,1722, 0, 0, 40000, 373, 0, 0 }, + {1723,1723, 0, 0, 40000, 113, 0, 0 }, + {1724,1724, 0, 0, 40000, 353, 0, 0 }, + {1725,1725, 0, 0, 420, 73, 0, 0 }, + {1726,1726, 0, 0, 40000, 66, 0, 0 }, + {1727,1727, 0, 0, 40000, 53, 0, 0 }, + {1728,1728, 0, 0, 40000, 66, 0, 0 }, + {1729,1729, 0, 0, 40000, 100, 0, 0 }, + {1730,1730, 0, 0, 40000, 93, 0, 0 }, + {1731,1731, 0, 0, 40000, 0, 0, 0 }, + {1732,1732, 0, 0, 40000, 73, 0, 0 }, + {1733,1733, 0, 0, 40000, 80, 0, 0 }, + {1734,1734, 0, 0, 40000, 80, 0, 0 }, + {1735,1735, 0, 0, 40000, 80, 0, 0 }, + {1736,1736, 0, 0, 40000, 80, 0, 0 }, + {1737,1737, 0, 0, 40000, 80, 0, 0 }, + {1738,1738, 0, 0, 40000, 73, 0, 0 }, + {1739,1739, 0, 0, 40000, 73, 0, 0 }, + {1740,1740, 0, 0, 40000, 106, 0, 0 }, + {1741,1741, 0, 0, 40000, 73, 0, 0 }, + {1742,1742, 0, 0, 40000, 73, 0, 0 }, + {1743,1743, 0, 0, 40000, 80, 0, 0 }, + {1744,1744, 0, 0, 40000, 0, 0, 0 }, + {1745,1745, 0, 0, 40000, 80, 0, 0 }, + {1746,1746, 0, 0, 40000, 66, 0, 0 }, + {1747,1747, 0, 0, 40000, 73, 0, 0 }, + {1748,1748, 0, 0, 40000, 0, 0, 0 }, + {1749,1749, 0, 0, 40000, 80, 0, 0 }, + {1750,1750, 0, 0, 40000, 66, 0, 0 }, + {1751,1751, 0, 0, 40000, 73, 0, 0 }, + {1752,1752, 0, 0, 40000, 80, 0, 0 }, + {1753,1753, 0, 0, 40000, 33, 0, 0 }, + {1754,1754, 0, 0, 40000, 0, 0, 0 }, + {1755,1755, 0, 0, 40000, 266, 0, 0 }, + {1756,1756, 0, 0, 40000, 160, 0, 0 }, + {1757,1757, 0, 0, 40000, 93, 0, 0 }, + {1758,1758, 0, 0, 40000, 660, 0, 0 }, + {1759,1759, 0, 0, 40000, 1453, 0, 0 }, + {1760,1760, 0, 0, 40000, 660, 0, 0 }, + {1761,1761, 0, 0, 40000, 120, 0, 0 }, + {1762,1762, 0, 0, 40000, 140, 0, 0 }, + {1763,1763, 0, 0, 9820, 393, 0, 0 }, + {1764,1764, 0, 0, 40000, 73, 0, 0 }, + {1765,1765, 0, 0, 3620, 1166, 0, 0 }, + {1766,1766, 0, 0, 40000, 0, 0, 0 }, + {1767,1767, 0, 0, 40000, 0, 0, 0 }, + {1768,1768, 0, 0, 40000, 813, 0, 0 }, + {1769,1769, 0, 0, 40000, 0, 0, 0 }, + {1770,1770, 0, 0, 40000, 2386, 0, 0 }, + {1771,1771, 0, 0, 4380, 400, 0, 0 }, + {1772,1772, 0, 0, 853, 0, 0, 0 }, + {1773,1773, 0, 0, 3700, 93, 0, 0 }, + {1774,1774, 0, 0, 1580, 300, 0, 0 }, + {1775,1775, 0, 0, 453, 140, 0, 0 }, + {1776,1776, 0, 0, 40000, 66, 0, 0 }, + {1777,1777, 0, 0, 40000, 73, 0, 0 }, + {1778,1778, 0, 0, 40000, 206, 0, 0 }, + {1779,1779, 0, 0, 4646, 1560, 0, 0 }, + {1780,1780, 0, 0, 353, 146, 0, 0 }, + {1781,1781, 0, 0, 1300, 400, 0, 0 }, + {1782,1782, 0, 0, 4593, 1546, 0, 0 }, + {1783,1783, 0, 0, 613, 226, 0, 0 }, + {1784,1784, 0, 0, 626, 233, 0, 0 }, + {1785,1785, 0, 0, 3020, 66, 0, 0 }, + {1786,1786, 0, 0, 1093, 186, 0, 0 }, + {1787,1787, 0, 0, 6053, 1240, 0, 0 }, + {1788,1788, 0, 0, 633, 126, 0, 0 }, + {1789,1789, 0, 0, 40000, 66, 0, 0 }, + {1790,1790, 0, 0, 40000, 73, 0, 0 }, + {1791,1791, 0, 0, 40000, 1253, 0, 0 }, + {1792,1792, 0, 0, 626, 246, 0, 0 }, + {1793,1793, 48, 0, 293, 120, 0, 0 }, + {1794,1794, 48, 0, 100, 0, 0, 0 }, + {1795,1795, 60, 0, 240, 133, 0, 0 }, + {1796,1796, 60, 0, 160, 66, 0, 0 }, + {1797,1797, 70, 0, 140, 33, 0, 0 }, + {1798,1798, 51, 0, 526, 206, 0, 0 }, + {1799,1799, 60, 0, 173, 93, 0, 0 }, + {1798,1798, 54, 0, 520, 200, 0, 0 }, + {1800,1800, 60, 0, 153, 80, 0, 0 }, + {1798,1798, 56, 0, 520, 206, 0, 0 }, + {1801,1801, 60, 0, 673, 206, 0, 0 }, + {1798,1798, 61, 0, 506, 200, 0, 0 }, + {1798,1798, 63, 0, 513, 206, 0, 0 }, + {1802,1802, 48, 0, 673, 200, 0, 0 }, + {1798,1798, 68, 0, 440, 180, 0, 0 }, + {1803,1803, 60, 0, 1873, 653, 0, 0 }, + {1804,1804, 60, 0, 673, 200, 0, 0 }, + {1805,1805, 66, 0, 306, 120, 0, 0 }, + {1806,1806, 60, 0, 673, 200, 0, 0 }, + { 379, 379, 59, 0, 173, 93, 0, 0 }, + {1802,1802, 64, 0, 673, 206, 0, 0 }, + {1807,1807, 48, 0, 1006, 20, 0, 0 }, + {1808,1808, 56, 0, 120, 40, 0, 0 }, + {1809,1809, 53, 0, 286, 133, 0, 0 }, + {1810,1810, 65, 0, 106, 0, 0, 0 }, + {1811,1811, 49, 0, 293, 133, 0, 0 }, + {1811,1811, 43, 0, 293, 133, 0, 0 }, + { 386, 386, 65, 0, 1013, 673, 0, 0 }, + { 386, 386, 60, 0, 1000, 660, 0, 0 }, + {1812,1812, 70, 0, 260, 113, 0, 0 }, + {1812,1812, 65, 0, 306, 120, 0, 0 }, + {1813,1813, 60, 0, 246, 106, 0, 0 }, + {1814,1814, 60, 0, 193, 120, 0, 0 }, + {1815,1815, 56, 0, 206, 13, 0, 0 }, + {1816,1816, 53, 0, 433, 73, 0, 0 }, + {1817,1817, 60, 0, 220, 113, 0, 0 }, + {1818,1818, 48, 0, 300, 66, 0, 0 }, + {1819,1819, 69, 0, 126, 0, 0, 0 }, + { 328, 328, 67, 0, 140, 93, 0, 0 }, + { 328, 328, 62, 0, 153, 100, 0, 0 }, + {1820,1820, 65, 0, 433, 100, 0, 0 }, + {1821,1821, 60, 0, 426, 100, 0, 0 }, + {1822,1822, 63, 0, 113, 46, 0, 0 }, + {1823,1823, 63, 0, 1866, 653, 0, 0 }, + {1824,1824, 67, 0, 273, 60, 0, 0 }, + {1825,1825, 60, 0, 973, 360, 0, 0 }, + {1825,1825, 72, 0, 806, 273, 0, 0 }, + { 401, 401, 62, 0, 46, 0, 0, 0 }, + {1826,1826, 48, 0, 126, 66, 0, 0 }, + {1827,1827, 53, 0, 980, 353, 0, 0 }, + {1828,1828, 60, 0, 293, 133, 0, 0 }, + {1829,1829, 60, 0, 160, 20, 0, 0 }, + {1830,1830, 60, 0, 126, 86, 0, 0 }, + {1831,1831, 60, 0, 173, 93, 0, 0 }, + {1832,1832, 0, 0, 40000, 106, 0, 0 }, + {1833,1833, 0, 0, 3780, 73, 0, 0 }, + {1834,1834, 0, 0, 3820, 1666, 0, 0 }, + {1835,1835, 0, 0, 40000, 73, 0, 0 }, + {1836,1836, 0, 0, 40000, 333, 0, 0 }, + {1837,1837, 0, 0, 40000, 220, 0, 0 }, + {1838,1838, 0, 0, 40000, 0, 0, 0 }, + {1839,1839, 0, 0, 40000, 53, 0, 0 }, + {1840,1840, 0, 0, 40000, 60, 0, 0 }, + {1841,1841, 0, 0, 5913, 2306, 0, 0 }, + {1842,1842, 0, 0, 7713, 2466, 0, 0 }, + { 525, 525, 0, 0, 4660, 660, 0, 0 }, + {1843,1843, 0, 0, 40000, 313, 0, 0 }, + {1844,1844, 0, 0, 40000, 0, 0, 0 }, + {1845,1845, 0, 0, 40000, 0, 0, 0 }, + {1846,1846, 0, 0, 1246, 453, 0, 0 }, + {1847,1847, 0, 0, 9600, 1580, 0, 0 }, + {1848,1848, 0, 0, 40000, 106, 0, 0 }, + {1849,1849, 0, 0, 2040, 400, 0, 0 }, + {1850,1850, 0, 0, 40000, 73, 0, 0 }, + {1851,1851, 0, 0, 4220, 620, 0, 0 }, + {1852,1852, 0, 0, 40000, 0, 0, 0 }, + {1853,1853, 0, 0, 40000, 433, 0, 0 }, + {1854,1854, 0, 0, 40000, 66, 0, 0 }, + {1855,1855, 0, 0, 40000, 46, 0, 0 }, + {1856,1856, 0, 0, 40000, 240, 0, 0 }, + {1857,1857, 0, 0, 40000, 313, 0, 0 }, + {1858,1858, 0, 0, 40000, 26, 0, 0 }, + {1859,1859, 0, 0, 40000, 0, 0, 0 }, + {1860,1860, 0, 0, 40000, 73, 0, 0 }, + {1861,1861, 0, 0, 6940, 66, 0, 0 }, + {1862,1862, 0, 0, 40000, 0, 0, 0 }, + {1863,1863, 0, 0, 40000, 60, 0, 0 }, + {1864,1864, 0, 0, 8140, 1440, 0, 0 }, + {1865,1865, 0, 0, 40000, 0, 0, 0 }, + {1866,1866, 0, 0, 40000, 613, 0, 0 }, + {1867,1867, 0, 0, 40000, 0, 0, 0 }, + {1868,1868, 0, 0, 633, 233, 0, 0 }, + {1869,1869, 0, 0, 40000, 226, 0, 0 }, + {1870,1870, 0, 0, 2280, 746, 0, 0 }, + {1871,1871, 0, 0, 1940, 633, 0, 0 }, + {1872,1872, 0, 0, 4220, 620, 0, 0 }, + {1873,1873, 0, 0, 40000, 133, 0, 0 }, + {1874,1874, 41, 0, 380, 153, 0, 0 }, + {1875,1875, 70, 0, 106, 0, 0, 0 }, + {1876,1876, 60, 0, 380, 206, 0, 0 }, + {1877,1877, 80, 0, 100, 0, 0, 0 }, + {1878,1878, 84, 0, 120, 0, 0, 0 }, + {1879,1879, 72, 0, 500, 433, 0, 0 }, + {1880,1880, 84, 0, 860, 553, 0, 0 }, + { 128, 128, 70, 0, 106, 0, 0, 0 }, + { 132, 132, 60, 0, 146, 86, 0, 0 }, + {1881,1882, 0, 4, 40000, 260, 0, 0 }, + {1883,1883, 0, 0, 40000, 0, 0, 0 }, + {1884,1885, 0, 4, 40000, 73, 0, 0 }, + {1886,1887, 0, 4, 40000, 86, 0, 0 }, + {1888,1889, 0, 4, 40000, 73, 0, 0 }, + {1890,1890, 0, 0, 40000, 300, 0, 0 }, + {1891,1891, 0, 0, 40000, 693, 0, 0 }, + {1892,1892, 0, 0, 40000, 586, 0, 0 }, + {1893,1893, 0, 0, 40000, 286, 0, 0 }, + {1894,1894, 0, 0, 1620, 773, 0, 0 }, + {1895,1895, 0, 0, 40000, 0, 0, 0 }, + {1896,1896, 0, 0, 40000, 193, 0, 0 }, + {1897,1897, 0, 0, 1873, 820, 0, 0 }, + {1898,1898, 0, 0, 4520, 753, 0, 0 }, + {1899,1899, 0, 0, 40000, 0, 0, 0 }, + {1900,1900, 0, 0, 40000, 220, 0, 0 }, + {1901,1901, 0, 0, 40000, 133, 0, 0 }, + {1902,1902, 0, 0, 40000, 73, 0, 0 }, + {1903,1903, 0, 0, 40000, 0, 0, 0 }, + {1904,1904, 0, 0, 7326, 2420, 0, 0 }, + {1905,1905, 0, 0, 1186, 446, 0, 0 }, + {1906,1906, 0, 0, 40000, 553, 0, 0 }, + {1907,1907, 0, 0, 40000, 293, 0, 0 }, + {1908,1908, 0, 0, 40000, 586, 0, 0 }, + {1909,1909, 0, 0, 2326, 793, 0, 0 }, + { 501, 501, 0, 0, 480, 226, 0, 0 }, + {1910,1910, 0, 0, 40000, 93, 0, 0 }, + {1911,1911, 0, 0, 620, 226, 0, 0 }, + {1912,1912, 0, 0, 2373, 800, 0, 0 }, + {1913,1913, 0, 0, 40000, 4986, 0, 0 }, + {1914,1914, 0, 0, 626, 240, 0, 0 }, + { 511, 511, 0, 0, 2326, 800, 0, 0 }, + {1915,1915, 0, 0, 340, 146, 0, 0 }, + {1910,1910, 60, 0, 40000, 93, 0, 0 }, + { 511, 511, 72, 0, 1566, 546, 0, 0 }, + {1915,1915, 84, 0, 246, 120, 0, 0 }, + {1916,1916, 0, 0, 40000, 0, 0, 0 }, + {1917,1917, 0, 0, 2713, 666, 0, 0 }, + {1918,1918, 0, 0, 40000, 0, 0, 0 }, + {1919,1919, 0, 0, 40000, 46, 0, 0 }, + {1920,1920, 0, 0, 40000, 0, 0, 0 }, + {1921,1921, 0, 0, 40000, 53, 0, 0 }, + {1922,1922, 0, 0, 40000, 33, 0, 0 }, + {1923,1923, 0, 0, 2073, 193, 0, 0 }, + {1924,1924, 0, 0, 40000, 146, 0, 0 }, + {1925,1925, 0, 0, 40000, 100, 0, 0 }, + {1926,1926, 0, 0, 40000, 93, 0, 0 }, + {1927,1927, 0, 0, 40000, 73, 0, 0 }, + {1928,1928, 0, 0, 40000, 540, 0, 0 }, + {1929,1929, 0, 0, 40000, 520, 0, 0 }, + {1930,1930, 0, 0, 40000, 506, 0, 0 }, + {1931,1931, 0, 0, 7406, 200, 0, 0 }, + {1932,1932, 0, 0, 5906, 133, 0, 0 }, + {1933,1933, 0, 0, 7426, 240, 0, 0 }, + {1934,1934, 0, 0, 7426, 240, 0, 0 }, + {1935,1935, 0, 0, 40000, 66, 0, 0 }, + {1936,1936, 0, 0, 40000, 66, 0, 0 }, + {1937,1937, 0, 0, 40000, 53, 0, 0 }, + {1938,1938, 0, 0, 40000, 66, 0, 0 }, + {1939,1939, 0, 0, 40000, 66, 0, 0 }, + {1940,1940, 0, 0, 40000, 53, 0, 0 }, + {1941,1941, 0, 0, 40000, 2146, 0, 0 }, + {1942,1942, 0, 0, 40000, 1126, 0, 0 }, + {1943,1943, 0, 0, 40000, 1020, 0, 0 }, + {1944,1944, 0, 0, 40000, 433, 0, 0 }, + {1945,1945, 0, 0, 40000, 0, 0, 0 }, + {1946,1946, 0, 0, 40000, 140, 0, 0 }, + {1947,1947, 0, 0, 4660, 660, 0, 0 }, + {1948,1948, 0, 0, 40000, 66, 0, 0 }, + {1949,1949, 0, 0, 40000, 4193, 0, 0 }, + {1950,1950, 0, 0, 7713, 2466, 0, 0 }, + {1951,1951, 0, 0, 40000, 73, 0, 0 }, + {1952,1952, 0, 0, 8100, 2093, 0, 0 }, + {1953,1953, 0, 0, 40000, 86, 0, 0 }, + {1954,1954, 0, 0, 40000, 80, 0, 0 }, + {1955,1955, 0, 0, 4113, 1526, 0, 0 }, + {1956,1956, 0, 0, 40000, 66, 0, 0 }, + {1957,1957, 0, 0, 40000, 100, 0, 0 }, + {1958,1958, 0, 0, 40000, 213, 0, 0 }, + {1959,1959, 0, 0, 40000, 100, 0, 0 }, + {1960,1960, 0, 0, 1186, 100, 0, 0 }, + {1961,1961, 0, 0, 40000, 433, 0, 0 }, + {1962,1962, 0, 0, 40000, 146, 0, 0 }, + {1963,1963, 0, 0, 40000, 400, 0, 0 }, + {1964,1964, 0, 0, 40000, 66, 0, 0 }, + {1965,1965, 0, 0, 40000, 193, 0, 0 }, + {1966,1966, 0, 0, 1153, 100, 0, 0 }, + {1967,1967, 0, 0, 4800, 1400, 0, 0 }, + {1968,1968, 0, 0, 2906, 713, 0, 0 }, + {1969,1969, 0, 0, 40000, 73, 0, 0 }, + {1970,1970, 0, 0, 2280, 746, 0, 0 }, + {1971,1971, 0, 0, 40000, 66, 0, 0 }, + {1972,1972, 0, 0, 40000, 86, 0, 0 }, + {1973,1973, 0, 0, 40000, 86, 0, 0 }, + {1974,1974, 0, 0, 40000, 66, 0, 0 }, + {1975,1975, 0, 0, 40000, 66, 0, 0 }, + {1976,1976, 0, 0, 40000, 66, 0, 0 }, + {1977,1977, 0, 0, 40000, 46, 0, 0 }, + {1978,1978, 0, 0, 40000, 73, 0, 0 }, + {1979,1979, 0, 0, 40000, 73, 0, 0 }, + {1980,1980, 0, 0, 40000, 66, 0, 0 }, + {1981,1981, 0, 0, 40000, 66, 0, 0 }, + {1982,1982, 0, 0, 40000, 66, 0, 0 }, + {1983,1983, 0, 0, 40000, 73, 0, 0 }, + {1984,1984, 0, 0, 40000, 73, 0, 0 }, + {1985,1985, 0, 0, 40000, 253, 0, 0 }, + {1986,1986, 0, 0, 40000, 126, 0, 0 }, + {1987,1987, 0, 0, 40000, 126, 0, 0 }, + {1988,1988, 0, 0, 40000, 66, 0, 0 }, + {1989,1989, 0, 0, 40000, 66, 0, 0 }, + {1990,1990, 0, 0, 40000, 53, 0, 0 }, + {1991,1991, 0, 0, 40000, 140, 0, 0 }, + {1992,1992, 0, 0, 40000, 40, 0, 0 }, + {1993,1993, 0, 0, 40000, 73, 0, 0 }, + {1994,1994, 0, 0, 40000, 66, 0, 0 }, + {1995,1995, 0, 0, 40000, 73, 0, 0 }, + {1996,1996, 0, 0, 40000, 73, 0, 0 }, + {1997,1997, 0, 0, 40000, 73, 0, 0 }, + {1998,1998, 0, 0, 40000, 73, 0, 0 }, + {1999,1999, 0, 0, 40000, 66, 0, 0 }, + {2000,2000, 0, 0, 40000, 433, 0, 0 }, + {2001,2001, 0, 0, 40000, 433, 0, 0 }, + {2002,2002, 0, 0, 2440, 706, 0, 0 }, + {2003,2003, 0, 0, 13960, 4800, 0, 0 }, + {2004,2004, 0, 0, 7393, 2480, 0, 0 }, + {2005,2005, 0, 0, 7220, 2073, 0, 0 }, + {2006,2006, 0, 0, 633, 233, 0, 0 }, + {2007,2007, 0, 0, 2326, 780, 0, 0 }, + {2008,2008, 0, 0, 40000, 73, 0, 0 }, + {2009,2009, 0, 0, 40000, 106, 0, 0 }, + {2010,2010, 0, 0, 40000, 126, 0, 0 }, + {2011,2011, 0, 0, 40000, 386, 0, 0 }, + {2012,2012, 0, 0, 40000, 66, 0, 0 }, + {2013,2013, 0, 0, 6893, 1273, 0, 0 }, + {2014,2014, 0, 0, 2546, 633, 0, 0 }, + {2015,2015, 0, 0, 206, 106, 0, 0 }, + {2016,2016, 0, 0, 213, 113, 0, 0 }, + {2017,2017, 0, 0, 360, 140, 0, 0 }, + {2018,2018, 0, 0, 1013, 193, 0, 0 }, + {2019,2019, 0, 0, 266, 66, 0, 0 }, + {2020,2020, 0, 0, 1880, 660, 0, 0 }, + {2021,2021, 0, 0, 286, 206, 0, 0 }, + {2022,2022, 0, 0, 3706, 1353, 0, 0 }, + {2023,2023, 0, 0, 1106, 380, 0, 0 }, + {2024,2024, 0, 0, 13220, 2466, 0, 0 }, + {2025,2025, 0, 0, 333, 26, 0, 0 }, + {2026,2026, 0, 0, 7346, 2440, 0, 0 }, + {2027,2027, 0, 0, 1273, 453, 0, 0 }, + { 352, 352, 51, 2, 6, 0, 0, 0 }, + {2028,2028, 35, 0, 700, 253, 0, 0 }, + {2028,2028, 36, 0, 706, 266, 0, 0 }, + {2029,2029, 47, 0, 100, 0, 0, 0 }, + {2030,2030, 38, 0, 346, 140, 0, 0 }, + {2019,2019, 39, 0, 220, 106, 0, 0 }, + {2031,2031, 45, 0, 286, 133, 0, 0 }, + { 492, 492, 41, 0, 1040, 406, 0, 0 }, + {2032,2032, 42, 0, 220, 106, 0, 0 }, + {2033,2033, 44, 0, 500, 193, 0, 0 }, + { 492, 492, 48, 0, 833, 346, 0, 0 }, + {2034,2034, 46, 0, 1866, 646, 0, 0 }, + { 492, 492, 53, 0, 873, 386, 0, 0 }, + { 167, 167, 56, 0, 646, 353, 0, 0 }, + {2035,2035, 61, 0, 366, 146, 0, 0 }, + {2036,2036, 56, 0, 1346, 473, 0, 0 }, + {2037,2037, 60, 0, 213, 126, 0, 0 }, + { 144, 144, 59, 0, 213, 0, 0, 0 }, + {2038,2038, 59, 0, 106, 0, 0, 0 }, + { 169, 169, 51, 0, 380, 366, 0, 0 }, + { 169, 169, 45, 0, 380, 366, 0, 0 }, + {2039,2039, 72, 0, 246, 20, 0, 0 }, + {2040,2040, 60, 0, 280, 20, 0, 0 }, + {2041,2041, 58, 0, 373, 360, 0, 0 }, + {2042,2042, 53, 0, 380, 366, 0, 0 }, + {2043,2043, 73, 0, 120, 26, 0, 0 }, + { 158, 158, 75, 0, 126, 140, 0, 0 }, + {2044,2044, 0, 0, 6786, 1073, 0, 0 }, + {2045,2045, 0, 0, 2046, 473, 0, 0 }, + {2046,2046, 0, 0, 3746, 1273, 0, 0 }, + {2047,2047, 0, 0, 1200, 3086, 0, 0 }, + {2048,2048, 0, 0, 1200, 3080, 0, 0 }, + {2049,2049, 0, 0, 40000, 2453, 0, 0 }, + {2050,2050, 0, 0, 40000, 413, 0, 0 }, + {2051,2051, 0, 0, 980, 2553, 0, 0 }, + {2052,2052, 0, 0, 40000, 2420, 0, 0 }, + {2053,2053, 0, 0, 40000, 2506, 0, 0 }, + {2054,2054, 0, 0, 40000, 380, 0, 0 }, + {2055,2055, 0, 0, 40000, 660, 0, 0 }, + {2056,2056, 0, 0, 40000, 73, 0, 0 }, + {2057,2057, 0, 0, 40000, 333, 0, 0 }, + {2058,2058, 0, 0, 833, 146, 0, 0 }, + {2059,2059, 0, 0, 1686, 620, 0, 0 }, + {2060,2060, 0, 0, 40000, 73, 0, 0 }, + {2061,2061, 0, 0, 40000, 0, 0, 0 }, + {2062,2062, 0, 0, 1873, 633, 0, 0 }, + {2063,2063, 0, 0, 40000, 380, 0, 0 }, + {2064,2064, 0, 0, 366, 286, 0, 0 }, + {2065,2065, 0, 0, 8866, 1366, 0, 0 }, + {2066,2066, 0, 0, 40000, 1513, 0, 0 }, + {2067,2067, 0, 0, 40000, 333, 0, 0 }, + {2068,2068, 0, 0, 9600, 1573, 0, 0 }, + {2069,2069, 0, 0, 3293, 746, 0, 0 }, + {2070,2070, 0, 0, 40000, 53, 0, 0 }, + {2071,2071, 0, 0, 40000, 73, 0, 0 }, + {2072,2072, 0, 0, 40000, 73, 0, 0 }, + {2073,2073, 0, 0, 40000, 240, 0, 0 }, + {2074,2074, 0, 0, 40000, 240, 0, 0 }, + {2075,2075, 0, 0, 40000, 140, 0, 0 }, + {2076,2076, 0, 0, 40000, 113, 0, 0 }, + {2077,2077, 0, 0, 40000, 240, 0, 0 }, + {2078,2078, 0, 0, 3613, 1146, 0, 0 }, + {2079,2079, 0, 0, 40000, 126, 0, 0 }, + {2080,2080, 0, 0, 40000, 0, 0, 0 }, + {2081,2081, 0, 0, 40000, 633, 0, 0 }, + {2082,2082, 0, 0, 40000, 453, 0, 0 }, + {2083,2083, 0, 0, 40000, 1146, 0, 0 }, + {2084,2084, 0, 0, 40000, 3600, 0, 0 }, + {2085,2085, 0, 0, 40000, 1586, 0, 0 }, + {2086,2086, 0, 0, 40000, 1586, 0, 0 }, + {2087,2087, 0, 0, 40000, 1586, 0, 0 }, + {2088,2088, 0, 0, 40000, 1646, 0, 0 }, + {2089,2089, 0, 0, 40000, 1580, 0, 0 }, + {2090,2090, 0, 0, 40000, 4393, 0, 0 }, + {2091,2091, 0, 0, 40000, 4540, 0, 0 }, + {2092,2092, 0, 0, 21373, 6160, 0, 0 }, + {2093,2093, 0, 0, 40000, 633, 0, 0 }, + {2094,2094, 0, 0, 18420, 6146, 0, 0 }, + {2095,2095, 0, 0, 2306, 813, 0, 0 }, + {2096,2096, 0, 0, 2813, 333, 0, 0 }, + {2097,2097, 0, 0, 3106, 600, 0, 0 }, + {2098,2098, 0, 0, 1026, 1580, 0, 0 }, + {2099,2099, 0, 0, 1873, 346, 0, 0 }, + {2100,2100, 0, 0, 40000, 73, 0, 0 }, + {2101,2101, 0, 0, 40000, 73, 0, 0 }, + {2102,2102, 0, 0, 1200, 1906, 0, 0 }, + {2103,2103, 0, 0, 980, 1313, 0, 0 }, + {2104,2104, 0, 0, 200, 20, 0, 0 }, + {2105,2105, 0, 0, 640, 253, 0, 0 }, + {2106,2106, 0, 0, 3120, 240, 0, 0 }, + {2107,2107, 0, 0, 753, 146, 0, 0 }, + {2108,2108, 0, 0, 40000, 3060, 0, 0 }, + {2109,2109, 0, 0, 40000, 233, 0, 0 }, + {2110,2110, 0, 0, 40000, 246, 0, 0 }, + {2111,2111, 0, 0, 40000, 240, 0, 0 }, + { 752, 752, 60, 0, 173, 20, 0, 0 }, + { 755, 755, 12, 0, 626, 240, 0, 0 }, + {2112,2112, 89, 0, 113, 0, 0, 0 }, + {2113,2113, 89, 0, 700, 266, 0, 0 }, + { 755, 755, 14, 0, 626, 240, 0, 0 }, + { 755, 755, 16, 0, 626, 246, 0, 0 }, + {2114,2114, 84, 0, 1593, 553, 0, 0 }, + { 755, 755, 19, 0, 626, 240, 0, 0 }, + {2115,2115, 38, 0, 220, 166, 0, 0 }, + {2116,2116, 36, 0, 1686, 760, 0, 0 }, + { 755, 755, 28, 0, 626, 240, 0, 0 }, + { 755, 755, 26, 0, 626, 240, 0, 0 }, + { 755, 755, 35, 0, 633, 246, 0, 0 }, + { 755, 755, 30, 0, 626, 240, 0, 0 }, + {2117,2117, 60, 0, 180, 53, 0, 0 }, + {2104,2104, 60, 0, 173, 20, 0, 0 }, + {2104,2104, 55, 0, 173, 20, 0, 0 }, + { 730, 730, 94, 0, 1886, 660, 0, 0 }, + {2118,2118, 0, 0, 1226, 73, 0, 0 }, + {2119,2119, 0, 0, 40000, 0, 0, 0 }, + {2120,2120, 0, 0, 40000, 146, 0, 0 }, + {2121,2121, 0, 0, 40000, 80, 0, 0 }, + {2122,2122, 0, 0, 40000, 80, 0, 0 }, + {2123,2123, 0, 0, 40000, 0, 0, 0 }, + {2124,2124, 0, 0, 40000, 126, 0, 0 }, + {2125,2125, 0, 0, 40000, 213, 0, 0 }, + {2126,2126, 0, 0, 40000, 80, 0, 0 }, + {2127,2127, 0, 0, 40000, 73, 0, 0 }, + {2128,2128, 0, 0, 40000, 73, 0, 0 }, + {2129,2129, 0, 0, 40000, 73, 0, 0 }, + {2130,2130, 0, 0, 40000, 80, 0, 0 }, + {2131,2131, 0, 0, 40000, 73, 0, 0 }, + {2132,2132, 0, 0, 40000, 73, 0, 0 }, + {2133,2133, 0, 0, 40000, 66, 0, 0 }, + {2134,2134, 0, 0, 40000, 186, 0, 0 }, + {2135,2135, 0, 0, 9966, 426, 0, 0 }, + {2136,2136, 0, 0, 40000, 400, 0, 0 }, + {2137,2137, 0, 0, 40000, 326, 0, 0 }, + {2138,2138, 0, 0, 386, 80, 0, 0 }, + {2139,2139, 0, 0, 40000, 246, 0, 0 }, + {2140,2140, 0, 0, 3473, 73, 0, 0 }, + {2141,2141, 60, 0, 160, 66, 0, 0 }, + {2141,2141, 44, 0, 160, 60, 0, 0 }, + {2142,2142, 47, 0, 173, 93, 0, 0 }, + {2143,2143, 47, 0, 186, 80, 0, 0 }, + {2144,2144, 62, 0, 1933, 93, 0, 0 }, + {2145,2145, 93, 0, 1146, 473, 0, 0 }, + {2146,2146, 50, 0, 286, 93, 0, 0 }, + {2145,2145, 40, 0, 2013, 840, 0, 0 }, + {2147,2147, 60, 0, 106, 73, 0, 0 }, + { 898, 898, 60, 0, 173, 133, 0, 0 }, + {2147,2147, 57, 0, 106, 73, 0, 0 }, + { 900, 900, 42, 0, 620, 240, 0, 0 }, + { 900, 900, 38, 0, 626, 240, 0, 0 }, + { 908, 908, 88, 0, 160, 26, 0, 0 }, + {2148,2148, 0, 0, 9440, 140, 0, 0 }, + {2149,2149, 0, 0, 40000, 73, 0, 0 }, + {2150,2150, 0, 0, 4613, 420, 0, 0 }, + {2151,2151, 0, 0, 40000, 86, 0, 0 }, + {2152,2152, 0, 0, 40000, 406, 0, 0 }, + {2153,2153, 0, 0, 40000, 440, 0, 0 }, + {2154,2154, 0, 0, 4340, 133, 0, 0 }, + {2155,2155, 0, 0, 4460, 706, 0, 0 }, + {2156,2156, 0, 0, 40000, 73, 0, 0 }, + {2157,2157, 0, 0, 4660, 1573, 0, 0 }, + {2158,2158, 0, 0, 966, 333, 0, 0 }, + {2159,2159, 0, 0, 1933, 640, 0, 0 }, + { 136, 136, 0, 0, 2326, 786, 0, 0 }, + { 168, 168, 0, 0, 286, 366, 0, 0 }, + { 164, 164, 0, 0, 7373, 2460, 0, 0 }, + { 167, 167, 0, 0, 793, 426, 0, 0 }, + {2160,2160, 65, 0, 166, 73, 0, 0 }, + {2161,2161, 21, 0, 480, 146, 0, 0 }, + {2162, 173, 0, 4, 4220, 80, 0, 0 }, + {2163,2164, 0, 4, 4640, 3066, 0, 0 }, + {2165,2166, 0, 4, 7273, 3920, 0, 0 }, + {2167,2168, 0, 4, 3766, 1253, 0, 0 }, + {2169,2170, 0, 4, 6266, 2400, 0, 0 }, + {2171,2172, 0, 4, 18213, 0, 0, 0 }, + {2173,2174, 0, 4, 40000, 713, 0, 0 }, + {2175,2174, 0, 4, 40000, 733, 0, 0 }, + {2176, 299, 0, 4, 40000, 273, 0, 0 }, + {2177,2178, 0, 4, 40000, 66, 0, 0 }, + {2179,2180, 0, 4, 40000, 393, 0, 0 }, + {2181,2182, 0, 4, 40000, 413, 0, 0 }, + {2183,2184, 0, 4, 7406, 200, 0, 0 }, + { 127, 127, 65, 0, 226, 120, 0, 0 }, + { 127, 127, 72, 0, 180, 100, 0, 0 }, + { 364, 365, 52, 4, 120, 0, 0, 0 }, + {2185,2186, 60, 4, 173, 0, 0, 0 }, + {1550,1551, 47, 4, 520, 0, 0, 0 }, + {1556,1557, 76, 4, 833, 0, 0, 0 }, + { 374, 375, 84, 4, 813, 0, 0, 0 }, + {1564,1565, 83, 4, 220, 0, 0, 0 }, + {1568,1569, 24, 4, 1840, 620, 0, 0 }, + {1556,1557, 77, 4, 820, 300, 0, 0 }, + {1572,1573, 60, 4, 286, 0, 0, 0 }, + {1574,1575, 65, 4, 293, 0, 0, 0 }, + { 391, 392, 44, 4, 160, 53, 0, 0 }, + { 391, 393, 40, 4, 460, 66, 0, 0 }, + {1606,1607, 72, 4, 120, 73, 0, 0 }, + { 398, 399, 73, 4, 1293, 173, 0, 0 }, + {1608,1609, 70, 4, 1580, 0, 0, 0 }, + {2187,2187, 0, 0, 40000, 353, 0, 0 }, + {2188,2188, 0, 0, 40000, 333, 0, 0 }, + {2189,2189, 0, 0, 5913, 2306, 0, 0 }, + {2190,2190, 0, 0, 7720, 1260, 0, 0 }, + {2191,2191, 0, 0, 213, 6420, 0, 0 }, + {2192,2192, 0, 0, 40000, 380, 0, 0 }, + {2193,2193, 0, 0, 1153, 760, 0, 0 }, + {2194,2194, 0, 0, 40000, 66, 0, 0 }, + {2195,2195, 0, 0, 4440, 66, 0, 0 }, + {2196,2196, 0, 0, 40000, 73, 0, 0 }, + {2197,2197, 0, 0, 40000, 53, 0, 0 }, + {2198,2198, 0, 0, 40000, 60, 0, 0 }, + {2199,2199, 0, 0, 40000, 60, 0, 0 }, + {2200,2200, 0, 0, 8133, 1433, 0, 0 }, + { 528, 528, 0, 0, 966, 346, 0, 0 }, + {2201,2201, 0, 0, 40000, 126, 0, 0 }, + {2202,2202, 0, 0, 286, 1293, 0, 0 }, + {2203,2203, 0, 0, 40000, 0, 0, 0 }, + {2204,2204, 41, 0, 246, 20, 0, 0 }, + {2205,2205, 84, 0, 160, 26, 0, 0 }, + {2206,2206, 72, 0, 440, 180, 0, 0 }, + { 741, 741, 48, 0, 220, 26, 0, 0 }, + {2207,2207, 0, 0, 2126, 173, 0, 0 }, + {2208,2208, 0, 0, 40000, 0, 0, 0 }, + {2209,2209, 0, 0, 40000, 380, 0, 0 }, + {2210,2210, 0, 0, 4553, 1486, 0, 0 }, + {2211,2211, 0, 0, 40000, 73, 0, 0 }, + {2212,2212, 0, 0, 40000, 73, 0, 0 }, + {2213,2213, 0, 0, 1460, 80, 0, 0 }, + {2214,2214, 0, 0, 40000, 66, 0, 0 }, + {2215,2215, 0, 0, 40000, 186, 0, 0 }, + {2216,2216, 0, 0, 40000, 180, 0, 0 }, + {2217,2217, 0, 0, 40000, 173, 0, 0 }, + {2218,2218, 0, 0, 40000, 113, 0, 0 }, + {2219,2219, 0, 0, 40000, 86, 0, 0 }, + {2220,2220, 0, 0, 40000, 373, 0, 0 }, + {2221,2221, 0, 0, 40000, 113, 0, 0 }, + {2222,2222, 0, 0, 40000, 353, 0, 0 }, + {2223,2223, 0, 0, 40000, 66, 0, 0 }, + {2224,2224, 0, 0, 40000, 53, 0, 0 }, + {2225,2225, 0, 0, 40000, 66, 0, 0 }, + {2226,2226, 0, 0, 40000, 100, 0, 0 }, + {2227,2227, 0, 0, 40000, 73, 0, 0 }, + {2228,2228, 0, 0, 40000, 73, 0, 0 }, + {2229,2229, 0, 0, 40000, 66, 0, 0 }, + {2230,2230, 0, 0, 40000, 66, 0, 0 }, + {2231,2231, 0, 0, 40000, 80, 0, 0 }, + {2232,2232, 0, 0, 40000, 66, 0, 0 }, + {2233,2233, 0, 0, 40000, 80, 0, 0 }, + {2234,2234, 0, 0, 40000, 660, 0, 0 }, + {2235,2235, 0, 0, 40000, 120, 0, 0 }, + {2236,2236, 0, 0, 9820, 393, 0, 0 }, + {2237,2237, 0, 0, 40000, 73, 0, 0 }, + {2238,2238, 0, 0, 3620, 1166, 0, 0 }, + {2239,2239, 0, 0, 40000, 0, 0, 0 }, + {2240,2240, 0, 0, 40000, 0, 0, 0 }, + {2241,2241, 0, 0, 3020, 66, 0, 0 }, + {2242,2242, 0, 0, 6053, 1240, 0, 0 }, + {2243,2243, 0, 0, 633, 126, 0, 0 }, + {2244,2244, 0, 0, 40000, 66, 0, 0 }, + {2245,2245, 0, 0, 40000, 73, 0, 0 }, + {2246,2246, 0, 0, 626, 246, 0, 0 }, + {2247,2247, 60, 0, 173, 93, 0, 0 }, + {2248,2248, 60, 0, 673, 206, 0, 0 }, + {2249,2249, 48, 0, 673, 200, 0, 0 }, + {2250,2250, 60, 0, 1873, 653, 0, 0 }, + {2251,2251, 60, 0, 673, 200, 0, 0 }, + {2252,2252, 66, 0, 306, 120, 0, 0 }, + {2253,2253, 60, 0, 673, 200, 0, 0 }, + {2249,2249, 64, 0, 673, 206, 0, 0 }, + {2254,2254, 60, 0, 246, 106, 0, 0 }, + {2255,2255, 60, 0, 193, 120, 0, 0 }, + {2256,2256, 56, 0, 206, 13, 0, 0 }, + {2257,2257, 53, 0, 433, 73, 0, 0 }, + {2258,2258, 60, 0, 220, 113, 0, 0 }, + {2259,2259, 48, 0, 300, 66, 0, 0 }, + {2260,2260, 67, 0, 273, 60, 0, 0 }, + {2261,2261, 60, 0, 973, 360, 0, 0 }, + {2261,2261, 72, 0, 806, 273, 0, 0 }, + {2262,2262, 60, 0, 173, 93, 0, 0 }, + {2263,2263, 0, 0, 2493, 866, 0, 0 }, + {2264,2264, 24, 0, 173, 93, 0, 0 }, + {2265,2265, 36, 0, 140, 0, 0, 0 }, + { 343, 343, 36, 0, 146, 80, 0, 0 }, + { 347, 347, 0, 0, 353, 133, 0, 0 }, + { 347, 347, 12, 0, 420, 146, 0, 0 }, + {2266,2266, 12, 0, 346, 100, 0, 0 }, + {2267,2267, 24, 0, 106, 46, 0, 0 }, + {2267,2267, 36, 0, 100, 0, 0, 0 }, + {2268,2268, 0, 0, 1006, 293, 0, 0 }, + {2266,2266, 24, 0, 293, 93, 0, 0 }, + {2269,2269, 88, 0, 1106, 120, 0, 0 }, + {2270,2270, 88, 0, 666, 120, 0, 0 }, + {2271,2271, 13, 0, 760, 360, 0, 0 }, + { 351, 351, 0, 0, 966, 346, 0, 0 }, + {2271,2271, 15, 0, 760, 420, 0, 0 }, + {2272,2272, 0, 0, 4513, 640, 0, 0 }, + {2273,2273, 0, 0, 15486, 1580, 0, 0 }, + {2274,2274, 0, 0, 6940, 66, 0, 0 }, + {2275,2275, 0, 0, 6866, 2380, 0, 0 }, + {2276,2276, 0, 0, 7613, 1566, 0, 0 }, + {2277,2277, 0, 0, 1186, 420, 0, 0 }, + {2278,2278, 0, 0, 1166, 400, 0, 0 }, + {2279,2279, 0, 0, 40000, 2940, 0, 0 }, + {2280,2280, 0, 0, 40000, 0, 0, 0 }, + {2281,2281, 0, 0, 18226, 786, 0, 0 }, + {2282,2282, 0, 0, 40000, 0, 0, 0 }, + {2283,2283, 0, 0, 713, 200, 0, 0 }, + {2284,2284, 0, 0, 40000, 126, 0, 0 }, + {2285,2285, 0, 0, 40000, 353, 0, 0 }, + {2286,2286, 0, 0, 40000, 333, 0, 0 }, + {2287,2287, 0, 0, 40000, 0, 0, 0 }, + {2288,2288, 0, 0, 40000, 0, 0, 0 }, + {2289,2289, 0, 0, 40000, 0, 0, 0 }, + {2290,2290, 0, 0, 40000, 0, 0, 0 }, + {2291,2291, 0, 0, 40000, 73, 0, 0 }, + {2292,2292, 0, 0, 40000, 66, 0, 0 }, + {2293,2293, 0, 0, 15893, 153, 0, 0 }, + {2294,2294, 0, 0, 40000, 253, 0, 0 }, + {2295,2295, 0, 0, 2813, 333, 0, 0 }, + {2296,2296, 0, 0, 40000, 3920, 0, 0 }, + {2297,2297, 79, 0, 113, 0, 0, 0 }, + {2297,2297, 72, 0, 126, 140, 0, 0 }, + {2298,2298, 72, 0, 100, 26, 0, 0 }, + {2298,2298, 79, 0, 100, 0, 0, 0 }, + { 554, 554, 60, 0, 400, 126, 0, 0 }, + {2299,2299, 72, 0, 793, 173, 0, 0 }, + {2300,2300, 84, 0, 226, 66, 0, 0 }, + { 555, 555, 66, 0, 113, 0, 0, 0 }, + {2301,2302, 35, 4, 2333, 800, 0, 0 }, + {2303,2304, 52, 4, 120, 0, 0, 0 }, + {2305,1548, 48, 4, 173, 0, 0, 0 }, + {1595,1595, 58, 0, 146, 166, 0, 0 }, + {2305,1548, 60, 4, 173, 0, 0, 0 }, + {2306,2307, 47, 4, 1893, 700, 0, 0 }, + {2306,2307, 43, 4, 1953, 740, 0, 0 }, + {2306,2307, 49, 4, 1880, 686, 0, 0 }, + {2306,2307, 51, 4, 1886, 706, 0, 0 }, + {2306,2307, 54, 4, 1906, 720, 0, 0 }, + {2306,2307, 57, 4, 1900, 720, 0, 0 }, + {2306,2307, 72, 4, 1593, 606, 0, 0 }, + {2306,2307, 60, 4, 1900, 720, 0, 0 }, + {2306,2307, 76, 4, 1593, 606, 0, 0 }, + {2306,2307, 84, 4, 1593, 613, 0, 0 }, + {2306,2307, 36, 4, 2386, 920, 0, 0 }, + {1560,2308, 65, 4, 293, 213, 0, 0 }, + {2309,2310, 84, 4, 1373, 306, 0, 0 }, + {1564,1564, 83, 0, 220, 113, 0, 0 }, + { 380, 381, 84, 4, 1593, 566, 0, 0 }, + {1568,1568, 24, 0, 1833, 613, 0, 0 }, + {2306,2307, 77, 4, 1593, 606, 0, 0 }, + {2311,2312, 60, 4, 286, 0, 0, 0 }, + {2313,2314, 65, 4, 513, 0, 0, 0 }, + {2315,2315, 59, 0, 106, 0, 0, 0 }, + {2316,2316, 51, 0, 386, 373, 0, 0 }, + {1612,1612, 45, 0, 393, 380, 0, 0 }, + {2317,2317, 71, 0, 446, 180, 0, 0 }, + {2318,2318, 60, 0, 280, 20, 0, 0 }, + {2319,2319, 58, 0, 393, 373, 0, 0 }, + {2320,2320, 53, 0, 393, 380, 0, 0 }, + { 397, 397, 64, 0, 220, 86, 0, 0 }, + {2321,2321, 71, 0, 106, 46, 0, 0 }, + {2322,2322, 61, 0, 986, 340, 0, 0 }, + {2323,2323, 61, 0, 1893, 633, 0, 0 }, + {2324, 392, 44, 4, 166, 46, 0, 0 }, + {2324, 393, 40, 4, 460, 60, 0, 0 }, + {1595,1595, 69, 0, 126, 140, 0, 0 }, + {1595,1595, 68, 0, 126, 140, 0, 0 }, + {1595,1595, 63, 0, 146, 166, 0, 0 }, + {2325,2326, 74, 4, 380, 106, 0, 0 }, + {2327,2328, 60, 4, 1026, 333, 0, 0 }, + {2329,2330, 80, 4, 40000, 0, 0, 0 }, + {2331,2332, 64, 4, 1900, 640, 0, 0 }, + { 397, 397, 72, 0, 193, 80, 0, 0 }, + {2333,2334, 78, 4, 820, 0, 0, 0 }, + {1608,1609, 82, 4, 1580, 0, 0, 0 }, + {2315,2315, 48, 0, 106, 0, 0, 0 }, + {2316,2316, 53, 0, 386, 373, 0, 0 }, + {2335,2335, 0, 0, 3586, 1133, 0, 0 }, + {2336,2337, 0, 4, 1186, 420, 0, 0 }, + {2338,2339, 0, 4, 40000, 320, 0, 0 }, + {2340,2340, 0, 0, 8826, 1346, 0, 0 }, + {2341,2341, 0, 0, 3440, 753, 0, 0 }, + {2342,2342, 0, 0, 40000, 360, 0, 0 }, + {2343,2343, 0, 0, 40000, 413, 0, 0 }, + {2344,2345, 0, 4, 40000, 60, 0, 0 }, + {2346,2346, 0, 0, 40000, 60, 0, 0 }, + {2347,2348, 0, 4, 40000, 126, 0, 0 }, + {2349,2350, 0, 4, 40000, 73, 0, 0 }, + {2351,2352, 0, 4, 40000, 73, 0, 0 }, + {2353,2354, 0, 4, 40000, 86, 0, 0 }, + {2355,2356, 0, 4, 40000, 453, 0, 0 }, + {2357,2357, 14, 0, 186, 20, 0, 0 }, + {2358,2358, 35, 0, 246, 73, 0, 0 }, + {2357,2357, 19, 0, 166, 26, 0, 0 }, + {2359,2359, 43, 0, 286, 133, 0, 0 }, + {2360,2360, 41, 0, 300, 113, 0, 0 }, + {2360,2360, 43, 0, 253, 106, 0, 0 }, + {2360,2360, 45, 0, 240, 100, 0, 0 }, + {2360,2360, 47, 0, 240, 100, 0, 0 }, + {2361,2362, 0, 4, 14720, 333, 0, 0 }, + {2363,2363, 0, 0, 7373, 1246, 0, 0 }, + {2364,2364, 0, 0, 4900, 233, 0, 0 }, + {2365,2365, 0, 0, 5106, 606, 0, 0 }, + {2366,2366, 0, 0, 1333, 153, 0, 0 }, + {2367,2367, 0, 0, 2093, 840, 0, 0 }, + {2368,2368, 0, 0, 3700, 226, 0, 0 }, + {2369,2369, 0, 0, 3546, 0, 0, 0 }, + {2370,2370, 0, 0, 4606, 420, 0, 0 }, + {2371,2371, 0, 0, 14366, 606, 0, 0 }, + {2372,2372, 0, 0, 40000, 426, 0, 0 }, + {2373,2373, 0, 0, 3700, 200, 0, 0 }, + {2374,2374, 0, 0, 880, 440, 0, 0 }, + {2375,2375, 0, 0, 4660, 660, 0, 0 }, + {2376,2376, 0, 0, 3600, 1153, 0, 0 }, + {2377,2377, 0, 0, 40000, 73, 0, 0 }, + {2378,2378, 0, 0, 40000, 53, 0, 0 }, + {2379,2379, 0, 0, 40000, 333, 0, 0 }, + {2380,2380, 0, 0, 40000, 73, 0, 0 }, + {2381,2381, 0, 0, 40000, 73, 0, 0 }, + {2382,2382, 0, 0, 40000, 66, 0, 0 }, + {2383,2383, 0, 0, 40000, 73, 0, 0 }, + {2384,2384, 0, 0, 40000, 73, 0, 0 }, + {2385,2385, 0, 0, 840, 226, 0, 0 }, + {2386,2386, 0, 0, 2093, 86, 0, 0 }, + {2387,2387, 0, 0, 906, 73, 0, 0 }, + { 402, 402, 0, 0, 273, 60, 0, 0 }, + {2388,2388, 0, 0, 40000, 820, 0, 0 }, + {2389,2389, 0, 0, 4740, 93, 0, 0 }, + {2390,2390, 0, 0, 706, 106, 0, 0 }, + {2391,2391, 0, 0, 40000, 0, 0, 0 }, + {2392,2392, 0, 0, 3840, 2306, 0, 0 }, + {2393,2393, 0, 0, 3400, 493, 0, 0 }, + {2394,2394, 0, 0, 40000, 53, 0, 0 }, + {2395,2395, 0, 0, 40000, 133, 0, 0 }, + {2396,2397, 0, 4, 3093, 1400, 0, 0 }, + {2398,2398, 0, 0, 1080, 580, 0, 0 }, + {2399,2400, 0, 4, 2220, 400, 0, 0 }, + {2401,2401, 0, 0, 40000, 193, 0, 0 }, + {2402,2402, 0, 0, 40000, 60, 0, 0 }, + {2403,2404, 0, 4, 40000, 146, 0, 0 }, + {2405,2406, 0, 4, 40000, 133, 0, 0 }, + {2407,2408, 0, 4, 40000, 66, 0, 0 }, + {2409,2409, 0, 0, 40000, 0, 0, 0 }, + {2410,2410, 0, 0, 40000, 73, 0, 0 }, + {2411,2411, 0, 0, 40000, 66, 0, 0 }, + {2412,2413, 0, 4, 40000, 153, 0, 0 }, + {2414,2414, 0, 0, 40000, 126, 0, 0 }, + {2415,2416, 0, 4, 40000, 466, 0, 0 }, + {2417,2418, 0, 4, 40000, 113, 0, 0 }, + {2419,2420, 0, 4, 1280, 73, 0, 0 }, + {2421,2422, 0, 4, 1113, 146, 0, 0 }, + {2423,2424, 0, 4, 3660, 113, 0, 0 }, + {2425,2426, 0, 4, 40000, 80, 0, 0 }, + {2427,2427, 33, 0, 300, 246, 0, 0 }, + {2428,2429, 38, 4, 53, 0, 0, 0 }, + {2430,2430, 38, 0, 106, 0, 0, 0 }, + {2431,2431, 38, 0, 340, 20, 0, 0 }, + {2432,2432, 40, 0, 73, 0, 0, 0 }, + {2433,2434, 41, 4, 300, 0, 0, 0 }, + {2435,2435, 0, 0, 133, 73, 0, 0 }, + {2435,2435, 41, 0, 133, 73, 0, 0 }, + {2360,2360, 48, 0, 240, 100, 0, 0 }, + {2436,2436, 17, 0, 4620, 1553, 0, 0 }, + {2360,2360, 50, 0, 240, 100, 0, 0 }, + {2435,2435, 45, 0, 126, 66, 0, 0 }, + {2437,2437,254, 2, 6, 0, 0, 0 }, + {2438,2438, 60, 0, 226, 93, 0, 0 }, + {2439,2439, 56, 0, 233, 93, 0, 0 }, + {2440,2440, 60, 0, 140, 66, 0, 0 }, + {2440,2440, 55, 0, 140, 60, 0, 0 }, + {2441,2441, 63, 0, 286, 126, 0, 0 }, + {2442,2442, 57, 0, 173, 93, 0, 0 }, + {2443,2443, 0, 0, 40000, 280, 0, 0 }, + {2444,2444, 0, 0, 40000, 0, 0, 0 }, + {2445,2445, 0, 0, 40000, 746, 0, 0 }, + {2446,2446, 0, 0, 40000, 353, 0, 0 }, + {2447,2447, 0, 0, 40000, 1173, 0, 0 }, + {2448,2448, 0, 0, 40000, 146, 0, 0 }, + {2449,2449, 0, 0, 40000, 1160, 0, 0 }, + {2450,2450, 0, 0, 40000, 353, 0, 0 }, + {2451,2451, 0, 0, 18313, 6046, 0, 0 }, + {2452,2452, 0, 0, 1206, 420, 0, 0 }, + { 752, 752, 55, 0, 173, 20, 0, 0 }, + {2453,2453, 0, 0, 2860, 806, 0, 0 }, + {2454,2454, 0, 0, 2506, 126, 0, 0 }, + {2455,2455, 0, 0, 520, 93, 0, 0 }, + {2456,2456, 0, 0, 1420, 160, 0, 0 }, + {2457,2457, 0, 0, 40000, 53, 0, 0 }, + {2458,2458, 0, 0, 9106, 100, 0, 0 }, + {2459,2459, 0, 0, 3706, 100, 0, 0 }, + {2460,2460, 0, 0, 17933, 100, 0, 0 }, + {2461,2461, 0, 0, 40000, 0, 0, 0 }, + {2462,2462, 0, 0, 40000, 66, 0, 0 }, + {2463,2463, 0, 0, 40000, 0, 0, 0 }, + { 884, 884, 0, 0, 306, 73, 0, 0 }, + { 884, 884, 28, 0, 306, 73, 0, 0 }, + {2464,2464, 29, 0, 226, 93, 0, 0 }, + { 886, 886, 31, 0, 113, 0, 0, 0 }, + { 360, 360, 32, 0, 133, 40, 0, 0 }, + { 361, 361, 33, 0, 286, 80, 0, 0 }, + {2453,2453, 34, 0, 2873, 813, 0, 0 }, + { 888, 888, 29, 0, 246, 46, 0, 0 }, + { 886, 886, 55, 0, 100, 0, 0, 0 }, + { 890, 890, 48, 0, 240, 60, 0, 0 }, + { 884, 884, 58, 0, 146, 26, 0, 0 }, + {2465,2465, 45, 0, 173, 93, 0, 0 }, + {2465,2465, 43, 0, 173, 93, 0, 0 }, + {2466,2466, 73, 0, 1633, 86, 0, 0 }, + {2467,2467, 72, 0, 866, 553, 0, 0 }, + {2468,2468, 76, 0, 1380, 0, 0, 0 }, + {2467,2467, 84, 0, 873, 560, 0, 0 }, + {2468,2468, 36, 0, 1933, 880, 0, 0 }, + {2469,2469, 65, 0, 300, 120, 0, 0 }, + {2470,2470, 83, 0, 193, 86, 0, 0 }, + {2471,2471, 50, 0, 966, 126, 0, 0 }, + {2468,2468, 77, 0, 1373, 620, 0, 0 }, + { 897, 897, 55, 0, 126, 40, 0, 0 }, + {2472,2472, 60, 0, 180, 140, 0, 0 }, + { 897, 897, 50, 0, 126, 40, 0, 0 }, + {2473,2473, 42, 0, 633, 240, 0, 0 }, + {2473,2473, 46, 0, 513, 200, 0, 0 }, + {2474,2474, 71, 0, 433, 180, 0, 0 }, + {2474,2474, 60, 0, 513, 206, 0, 0 }, + {2455,2455, 58, 0, 220, 46, 0, 0 }, + {2455,2455, 53, 0, 286, 60, 0, 0 }, + {2475,2475, 91, 0, 186, 100, 0, 0 }, + {2476,2476, 61, 0, 226, 26, 0, 0 }, + {2477,2477, 61, 0, 886, 73, 0, 0 }, + {2478,2478, 44, 0, 120, 73, 0, 0 }, + {2479,2479, 40, 0, 933, 73, 0, 0 }, + {2480,2480, 69, 0, 146, 33, 0, 0 }, + { 361, 361, 68, 0, 153, 26, 0, 0 }, + { 361, 361, 63, 0, 180, 26, 0, 0 }, + {2481,2481, 74, 0, 153, 73, 0, 0 }, + {2482,2482, 60, 0, 280, 100, 0, 0 }, + { 908, 908, 80, 0, 160, 26, 0, 0 }, + {2483,2483, 64, 0, 986, 353, 0, 0 }, + {2483,2483, 73, 0, 813, 306, 0, 0 }, + {2483,2483, 70, 0, 820, 306, 0, 0 }, + { 886, 886, 68, 0, 93, 0, 0, 0 }, + { 886, 886, 48, 0, 106, 0, 0, 0 }, + {2484,2484, 0, 0, 40000, 0, 0, 0 }, + {2485,2485, 0, 0, 3226, 753, 0, 0 }, + {2486,2486, 0, 0, 1773, 553, 0, 0 }, + {2487,2487, 0, 0, 7473, 2460, 0, 0 }, + {2488,2488, 0, 0, 40000, 0, 0, 0 }, + {2489,2489, 0, 0, 40000, 353, 0, 0 }, + {2490,2490, 0, 0, 40000, 206, 0, 0 }, + {2491,2491, 0, 0, 40000, 86, 0, 0 }, + {2492,2492, 0, 0, 4740, 86, 0, 0 }, + {2493,2493, 0, 0, 6193, 193, 0, 0 }, + {2494,2494, 0, 0, 6200, 240, 0, 0 }, + {2495,2495, 0, 0, 40000, 0, 0, 0 }, + {2496,2496, 0, 0, 1586, 73, 0, 0 }, + {2497,2497, 0, 0, 560, 73, 0, 0 }, + {2498,2498, 0, 0, 40000, 480, 0, 0 }, + {2499,2499, 0, 0, 40000, 80, 0, 0 }, + {2500,2500, 0, 0, 40000, 66, 0, 0 }, + {2501,2501, 0, 0, 40000, 380, 0, 0 }, + {2502,2502, 0, 0, 280, 100, 0, 0 }, + {2503,2503, 0, 0, 6193, 233, 0, 0 }, + {2504,2504, 0, 0, 40000, 380, 0, 0 }, + {2505,2505, 0, 0, 40000, 0, 0, 0 }, + {2506,2506, 0, 0, 40000, 380, 0, 0 }, + {2507,2507, 0, 0, 40000, 200, 0, 0 }, + {2508,2508, 0, 0, 40000, 320, 0, 0 }, + {2509,2509, 0, 0, 40000, 126, 0, 0 }, + {2510,2510, 0, 0, 40000, 293, 0, 0 }, + {2511,2511, 0, 0, 40000, 0, 0, 0 }, + {2512,2512, 0, 0, 40000, 40, 0, 0 }, + {2513,2513, 0, 0, 40000, 106, 0, 0 }, + {2514,2514, 0, 0, 3846, 73, 0, 0 }, + {2515,2515, 0, 0, 40000, 0, 0, 0 }, + {2516,2516, 0, 0, 40000, 73, 0, 0 }, + {2517,2517, 0, 0, 40000, 533, 0, 0 }, + {2518,2518, 0, 0, 40000, 1020, 0, 0 }, + {2519,2519, 0, 0, 40000, 73, 0, 0 }, + {2520,2520, 0, 0, 40000, 53, 0, 0 }, + {2521,2521, 0, 0, 6153, 1433, 0, 0 }, + {2522,2522, 0, 0, 18813, 773, 0, 0 }, + {2523,2523, 0, 0, 40000, 433, 0, 0 }, + {2524,2524, 0, 0, 40000, 0, 0, 0 }, + {2525,2525, 0, 0, 40000, 133, 0, 0 }, + {2526,2526, 0, 0, 4486, 73, 0, 0 }, + { 346, 346, 30, 0, 540, 33, 0, 0 }, + { 346, 346, 31, 0, 406, 20, 0, 0 }, + { 346, 346, 32, 0, 406, 20, 0, 0 }, + { 346, 346, 33, 0, 406, 73, 0, 0 }, + { 346, 346, 34, 0, 406, 20, 0, 0 }, + { 346, 346, 35, 0, 406, 20, 0, 0 }, + { 346, 346, 37, 0, 406, 73, 0, 0 }, + { 346, 346, 39, 0, 406, 73, 0, 0 }, + { 346, 346, 41, 0, 406, 20, 0, 0 }, + { 346, 346, 43, 0, 306, 20, 0, 0 }, + { 346, 346, 45, 0, 306, 20, 0, 0 }, + { 346, 346, 47, 0, 306, 20, 0, 0 }, + { 346, 346, 48, 0, 306, 20, 0, 0 }, + { 346, 346, 49, 0, 306, 20, 0, 0 }, + { 512, 512, 84, 0, 353, 466, 0, 0 }, + {2206,2206, 84, 0, 440, 180, 0, 0 }, + {2527,2527, 55, 0, 100, 0, 0, 0 }, + {2528,2528, 36, 0, 400, 160, 0, 0 }, + {2529,2529, 38, 0, 313, 226, 0, 0 }, + {2530,2530, 60, 0, 286, 133, 0, 0 }, + {2531,2531, 38, 0, 200, 100, 0, 0 }, + {2532,2532, 17, 0, 6186, 240, 0, 0 }, + {2532,2532, 18, 0, 6186, 240, 0, 0 }, + {2532,2532, 19, 0, 6193, 233, 0, 0 }, + {2532,2532, 20, 0, 6193, 193, 0, 0 }, + {2532,2532, 21, 0, 6193, 193, 0, 0 }, + {2532,2532, 22, 0, 6193, 193, 0, 0 }, + {2532,2532, 23, 0, 6193, 193, 0, 0 }, + {2532,2532, 24, 0, 6193, 193, 0, 0 }, + {2532,2532, 25, 0, 6193, 193, 0, 0 }, + {2532,2532, 26, 0, 6193, 193, 0, 0 }, + {2532,2532, 27, 0, 6193, 253, 0, 0 }, + {2532,2532, 28, 0, 6193, 246, 0, 0 }, + {2532,2532, 29, 0, 6193, 246, 0, 0 }, + {2533,2533, 84, 0, 433, 180, 0, 0 }, + {2534,2534, 48, 0, 280, 93, 0, 0 }, + {2535,2535, 65, 0, 1166, 360, 0, 0 }, + {2536,2536, 65, 0, 1853, 633, 0, 0 }, + {2537,2537, 55, 0, 453, 366, 0, 0 }, + {2537,2537, 41, 0, 540, 433, 0, 0 }, + { 346, 346, 63, 0, 240, 66, 0, 0 }, + { 346, 346, 55, 0, 240, 66, 0, 0 }, + {2538,2538, 55, 0, 2586, 200, 0, 0 }, + {2538,2538, 53, 0, 2586, 200, 0, 0 }, + {2534,2534, 50, 0, 280, 93, 0, 0 }, + { 506, 506, 84, 0, 693, 566, 0, 0 }, + { 506, 506, 74, 0, 693, 560, 0, 0 }, + { 504, 504, 84, 0, 1566, 546, 0, 0 }, + { 504, 504, 74, 0, 1586, 560, 0, 0 }, + {2539,2539, 84, 0, 440, 20, 0, 0 }, + {2540,2540, 74, 0, 126, 26, 0, 0 }, + {1911,1911, 48, 0, 500, 180, 0, 0 }, + {1911,1911, 36, 0, 606, 220, 0, 0 }, + {2541,2541, 74, 0, 686, 560, 0, 0 }, + {2542,2542, 0, 0, 7313, 13, 0, 0 }, + {2543,2543, 0, 0, 40000, 1306, 0, 0 }, + {2544,2544, 0, 0, 40000, 0, 0, 0 }, + {2545,2545, 0, 0, 4613, 13, 0, 0 }, + {2546,2547, 0, 4, 6933, 133, 0, 0 }, + {2548,2549, 0, 4, 40000, 86, 0, 0 }, + {2550,2550, 0, 0, 9233, 100, 0, 0 }, + {2551,2552, 0, 4, 4640, 73, 0, 0 }, + {2553,2553, 0, 0, 40000, 73, 0, 0 }, + {2554,2554, 0, 0, 40000, 0, 0, 0 }, + {2555,2556, 0, 4, 40000, 73, 0, 0 }, + {2557,2557, 0, 0, 40000, 60, 0, 0 }, + {2558,1467, 0, 4, 40000, 66, 0, 0 }, + {2559,2560, 0, 4, 40000, 40, 0, 0 }, + {2561,2561, 0, 0, 40000, 186, 0, 0 }, + {2562,2562, 0, 0, 4026, 66, 0, 0 }, + {2563,2564, 0, 4, 14586, 80, 0, 0 }, + {2565,2565, 0, 0, 40000, 0, 0, 0 }, + {2566,2567, 0, 4, 40000, 40, 0, 0 }, + {2568,2568, 0, 0, 4020, 73, 0, 0 }, + {2569,2569, 0, 0, 40000, 0, 0, 0 }, + {2570,2570, 0, 0, 40000, 0, 0, 0 }, + {2571,2572, 0, 4, 40000, 126, 0, 0 }, + {2573,2574, 0, 4, 40000, 100, 0, 0 }, + {2575,2575, 0, 0, 40000, 213, 0, 0 }, + { 229,2576, 0, 4, 40000, 166, 0, 0 }, + {2577,2577, 0, 0, 7366, 53, 0, 0 }, + { 239,2578, 0, 4, 40000, 133, 0, 0 }, + {2579,2579, 0, 0, 40000, 80, 0, 0 }, + {2580,2580, 0, 0, 40000, 140, 0, 0 }, + {2581,2582, 0, 4, 16980, 1173, 0, 0 }, + {2583,2584, 0, 4, 726, 100, 0, 0 }, + {2585,2586, 0, 4, 40000, 73, 0, 0 }, + {2587,2588, 0, 4, 40000, 73, 0, 0 }, + {2589,2589, 0, 0, 40000, 60, 0, 0 }, + {2590,2590, 0, 0, 40000, 80, 0, 0 }, + {2591,2592, 0, 4, 40000, 73, 0, 0 }, + {2593,2594, 0, 4, 40000, 60, 0, 0 }, + {2595,2595, 0, 0, 40000, 66, 0, 0 }, + {2596,2597, 0, 4, 40000, 66, 0, 0 }, + {2598,2599, 0, 4, 40000, 60, 0, 0 }, + {2600,2601, 0, 4, 40000, 173, 0, 0 }, + {2602,2602, 0, 0, 40000, 60, 0, 0 }, + {2603,2603, 0, 0, 40000, 73, 0, 0 }, + {2604,2604, 0, 0, 40000, 93, 0, 0 }, + {2605,2606, 0, 4, 40000, 73, 0, 0 }, + {2607,2607, 0, 0, 40000, 66, 0, 0 }, + {2608,2609, 0, 4, 40000, 66, 0, 0 }, + {2610,2610, 0, 0, 40000, 86, 0, 0 }, + {2611,2611, 0, 0, 40000, 60, 0, 0 }, + {2612,2612, 0, 0, 14286, 73, 0, 0 }, + {2613,2613, 0, 0, 40000, 0, 0, 0 }, + {2614,2615, 0, 4, 40000, 73, 0, 0 }, + {2616,2617, 0, 4, 40000, 66, 0, 0 }, + {2618,2619, 0, 4, 133, 0, 0, 0 }, + {2620,2621, 0, 4, 40000, 1280, 0, 0 }, + {2622,2623, 0, 4, 40000, 160, 0, 0 }, + {2624,2625, 0, 4, 40000, 0, 0, 0 }, + {2626,2627, 0, 4, 40000, 73, 0, 0 }, + {2628,2629, 0, 4, 40000, 0, 0, 0 }, + {1516,2630, 0, 4, 1193, 406, 0, 0 }, + {2631,2632, 0, 4, 40000, 553, 0, 0 }, + {2633,2633, 0, 0, 40000, 40, 0, 0 }, + {2634,2635, 0, 4, 40000, 773, 0, 0 }, + {2636,2636, 0, 0, 40000, 320, 0, 0 }, + {2637,2637, 0, 0, 1880, 73, 0, 0 }, + {2638,2639, 0, 4, 486, 0, 0, 0 }, + {2640,2641, 0, 4, 17020, 1193, 0, 0 }, + {2642,2642, 0, 0, 40000, 720, 0, 0 }, + {2643,2644, 0, 4, 1880, 40, 0, 0 }, + {2645,2645, 0, 0, 40000, 73, 0, 0 }, + {2646,2647, 0, 4, 40000, 46, 0, 0 }, + {2648,2648, 0, 0, 2466, 80, 0, 0 }, + {2649,2649, 0, 0, 40000, 193, 0, 0 }, + {2650,2651, 0, 4, 993, 73, 0, 0 }, + {2652,2652, 0, 0, 40000, 220, 0, 0 }, + {2653,2654, 0, 4, 40000, 46, 0, 0 }, + {2655,2656, 0, 4, 40000, 46, 0, 0 }, + {2657,2657, 0, 0, 40000, 66, 0, 0 }, + {2658,2658, 35, 0, 626, 20, 0, 0 }, + {2659,2659, 35, 0, 306, 26, 0, 0 }, + {2660,2660, 52, 0, 126, 26, 0, 0 }, + {2661,2661, 60, 0, 286, 20, 0, 0 }, + {2662,2662, 58, 0, 113, 0, 0, 0 }, + {2663,2663, 60, 0, 380, 20, 0, 0 }, + {2664,2664, 50, 0, 1640, 66, 0, 0 }, + {2665,2665, 43, 0, 153, 20, 0, 0 }, + {2664,2664, 55, 0, 1640, 20, 0, 0 }, + {1553,1553, 43, 0, 160, 80, 0, 0 }, + {2666,2666, 50, 0, 980, 20, 0, 0 }, + {2667,2667, 43, 0, 446, 73, 0, 0 }, + {2666,2666, 53, 0, 1000, 80, 0, 0 }, + {2666,2666, 57, 0, 700, 73, 0, 0 }, + {2668,2668, 72, 0, 773, 13, 0, 0 }, + {2666,2666, 60, 0, 686, 20, 0, 0 }, + { 373, 373, 76, 0, 826, 20, 0, 0 }, + {2669,2669, 84, 0, 713, 20, 0, 0 }, + {2670,2670, 42, 0, 1186, 20, 0, 0 }, + {2671,2671, 65, 0, 293, 33, 0, 0 }, + {2672,2672, 84, 0, 386, 33, 0, 0 }, + {2673,2673, 84, 0, 1366, 20, 0, 0 }, + {2674,2674, 24, 0, 960, 73, 0, 0 }, + { 383, 383, 77, 0, 800, 20, 0, 0 }, + {2675,2675, 58, 0, 426, 26, 0, 0 }, + {2676,2676, 53, 0, 426, 20, 0, 0 }, + {2677,2677, 64, 0, 200, 66, 0, 0 }, + {2678,2678, 71, 0, 113, 13, 0, 0 }, + {2679,2679, 44, 0, 766, 66, 0, 0 }, + {2680,2680, 40, 0, 460, 60, 0, 0 }, + {2681,2681, 69, 0, 126, 26, 0, 0 }, + {2682,2682, 60, 0, 573, 66, 0, 0 }, + {2683,2683, 80, 0, 226, 20, 0, 0 }, + {2684,2684, 64, 0, 2693, 20, 0, 0 }, + {2685,2685, 72, 0, 120, 66, 0, 0 }, + {2686,2686, 70, 0, 820, 20, 0, 0 }, + {2687,2687, 48, 0, 173, 20, 0, 0 }, + {2688,2688, 53, 0, 980, 33, 0, 0 }, + {2689,2690, 0, 4, 40000, 286, 0, 0 }, + {2691,2692, 0, 4, 2340, 100, 0, 0 }, + {2693,2694, 0, 4, 380, 80, 0, 0 }, + {2695,2696, 0, 4, 14793, 73, 0, 0 }, + {2697,2698, 0, 4, 40000, 40, 0, 0 }, + { 192,2699, 0, 4, 40000, 73, 0, 0 }, + {2700,2701, 0, 4, 973, 126, 0, 0 }, + {2702,2703, 0, 4, 4666, 106, 0, 0 }, + {2704,2705, 0, 4, 40000, 73, 0, 0 }, + {2706,2707, 0, 4, 40000, 73, 0, 0 }, + {2708,2709, 0, 4, 40000, 73, 0, 0 }, + {2710,2711, 0, 4, 2053, 0, 0, 0 }, + {2712,1473, 0, 4, 320, 26, 0, 0 }, + {2713,2714, 0, 4, 573, 93, 0, 0 }, + {2715,2716, 0, 4, 6513, 0, 0, 0 }, + {1478,2717, 0, 4, 40000, 146, 0, 0 }, + {2718,2719, 0, 4, 40000, 66, 0, 0 }, + { 286,2720, 0, 4, 40000, 73, 0, 0 }, + {2721,2722, 0, 4, 40000, 86, 0, 0 }, + {2723,2724, 0, 4, 40000, 60, 0, 0 }, + {2725,2726, 0, 4, 393, 73, 0, 0 }, + {2727,2724, 0, 4, 40000, 60, 0, 0 }, + {1514,2728, 0, 4, 40000, 180, 0, 0 }, + {2729,2730, 0, 4, 40000, 0, 0, 0 }, + {2731,2732, 0, 4, 486, 0, 0, 0 }, + {2733,2734, 0, 4, 733, 0, 0, 0 }, + {2735,2736, 0, 4, 286, 40, 0, 0 }, + {2737,2738, 0, 4, 40000, 73, 0, 0 }, + {2739,2740, 0, 4, 1326, 746, 0, 0 }, + {2741,2742, 0, 4, 1340, 700, 0, 0 }, + {2743,2744, 0, 4, 40000, 0, 0, 0 }, + {2745,2746, 0, 4, 2046, 0, 0, 0 }, + {2747,2747, 35, 0, 386, 166, 0, 0 }, + {2748,2748, 60, 0, 493, 193, 0, 0 }, + {2749,2749, 43, 0, 126, 66, 0, 0 }, + {2750,2750, 0, 0, 3740, 1260, 0, 0 }, + {2751,2752, 0, 4, 14846, 353, 0, 0 }, + {2753,2754, 0, 4, 10266, 0, 0, 0 }, + {2755,2756, 0, 4, 18286, 146, 0, 0 }, + {2757,2758, 0, 4, 14520, 333, 0, 0 }, + {2759,2760, 0, 4, 14686, 633, 0, 0 }, + {2761,2762, 0, 4, 14826, 300, 0, 0 }, + {2763,2764, 0, 4, 10493, 0, 0, 0 }, + {2765,2766, 0, 4, 40000, 60, 0, 0 }, + {2767,2768, 0, 4, 40000, 80, 0, 0 }, + {2769,2770, 0, 4, 40000, 80, 0, 0 }, + {2771,2772, 0, 4, 40000, 73, 0, 0 }, + {2773,2774, 0, 4, 40000, 73, 0, 0 }, + {2775,2776, 0, 4, 40000, 80, 0, 0 }, + {2777,2778, 0, 4, 40000, 73, 0, 0 }, + {2779,2780, 0, 4, 40000, 73, 0, 0 }, + {2781,2782, 0, 4, 40000, 66, 0, 0 }, + {2783,2784, 0, 4, 7260, 186, 0, 0 }, + {2785,2786, 0, 4, 10386, 0, 0, 0 }, + {2787,2788, 0, 4, 40000, 246, 0, 0 }, + {2789,2790, 0, 4, 9173, 746, 0, 0 }, + {2791,2792, 0, 4, 7440, 666, 0, 0 }, + {2793,2794, 0, 4, 40000, 0, 0, 0 }, + {2795,2796, 0, 4, 40000, 413, 0, 0 }, + {2795,2797, 0, 4, 40000, 1506, 0, 0 }, + {2798,2799, 0, 4, 40000, 60, 0, 0 }, + {2800,2801, 0, 4, 40000, 233, 0, 0 }, + {2802,2803, 0, 4, 40000, 80, 0, 0 }, + {2804,2805, 0, 4, 40000, 80, 0, 0 }, + {2806,2807, 0, 4, 4520, 80, 0, 0 }, + {2808,2809, 0, 4, 40000, 73, 0, 0 }, + {2810,2811, 0, 4, 1186, 100, 0, 0 }, + {2812,2813, 0, 4, 953, 153, 0, 0 }, + {2814,2815, 0, 4, 14786, 126, 0, 0 }, + {2816,2817, 0, 4, 14800, 193, 0, 0 }, + {2818,2819, 0, 4, 14573, 626, 0, 0 }, + {2820,2821, 0, 4, 2200, 73, 0, 0 }, + {2822,2823, 0, 4, 373, 86, 0, 0 }, + {2824,2825, 0, 4, 12780, 200, 0, 0 }, + {2826,2827, 0, 4, 40000, 73, 0, 0 }, + {2828,2829, 0, 4, 9193, 146, 0, 0 }, + {2830,2831, 0, 4, 2540, 326, 0, 0 }, + {2832,2833, 0, 4, 6933, 200, 0, 0 }, + {2834,2835, 0, 4, 40000, 413, 0, 0 }, + {2836,2837, 0, 4, 4826, 1313, 0, 0 }, + {2838,2839, 0, 4, 14740, 340, 0, 0 }, + {2840,2841, 0, 4, 1886, 653, 0, 0 }, + {2842,2843, 0, 4, 5280, 260, 0, 0 }, + {2844,2845, 0, 4, 40000, 240, 0, 0 }, + {2846,2847, 0, 4, 40000, 240, 0, 0 }, + {2848,2849, 0, 4, 40000, 240, 0, 0 }, + {2850,2851, 0, 4, 40000, 406, 0, 0 }, + {2852,2853, 0, 4, 40000, 406, 0, 0 }, + {2854,2855, 0, 4, 40000, 146, 0, 0 }, + {2856,2856, 0, 0, 2400, 1126, 0, 0 }, + {2857,2857, 0, 0, 2400, 1126, 0, 0 }, + {2858,2859, 0, 4, 4613, 73, 0, 0 }, + {2860,2861, 0, 4, 40000, 426, 0, 0 }, + {2862,2863, 0, 4, 4580, 100, 0, 0 }, + {2864,2865, 0, 4, 40000, 80, 0, 0 }, + {2866,2867, 0, 4, 5300, 53, 0, 0 }, + {2868,2869, 0, 4, 5313, 113, 0, 0 }, + {2870,2871, 0, 4, 7080, 186, 0, 0 }, + {2872,2873, 0, 4, 4720, 106, 0, 0 }, + {2874,2875, 0, 4, 40000, 73, 0, 0 }, + {2876,2877, 0, 4, 1640, 0, 0, 0 }, + {2878,2879, 0, 4, 7306, 186, 0, 0 }, + {2880,2881, 0, 4, 7373, 1246, 0, 0 }, + {2882,2883, 0, 4, 4620, 93, 0, 0 }, + {2884,2885, 0, 4, 3460, 926, 0, 0 }, + {2886,2887, 0, 4, 40000, 73, 0, 0 }, + {2888,2888, 0, 0, 18926, 426, 0, 0 }, + {2889,2889, 0, 0, 18520, 73, 0, 0 }, + {2890,2890, 0, 0, 18473, 73, 0, 0 }, + {2891,2892, 0, 4, 40000, 93, 0, 0 }, + {2893,2893, 0, 0, 8006, 133, 0, 0 }, + {2894,2894, 0, 0, 18533, 66, 0, 0 }, + {2895,2895, 0, 0, 14786, 4966, 0, 0 }, + {2896,2897, 0, 4, 40000, 80, 0, 0 }, + {2898,2899, 0, 4, 40000, 73, 0, 0 }, + {2353,2900, 0, 4, 18520, 86, 0, 0 }, + {2901,2901, 0, 0, 40000, 0, 0, 0 }, + {2902,2903, 0, 4, 40000, 100, 0, 0 }, + {2904,2905, 0, 4, 40000, 93, 0, 0 }, + {2906,2907, 0, 4, 40000, 73, 0, 0 }, + {2908,2909, 0, 4, 10720, 153, 0, 0 }, + {2910,2911, 0, 4, 40000, 73, 0, 0 }, + {2912,2912, 0, 0, 40000, 40, 0, 0 }, + {2913,2914, 0, 4, 8720, 446, 0, 0 }, + {2915,2916, 0, 4, 14706, 653, 0, 0 }, + {2917,2918, 0, 4, 9213, 426, 0, 0 }, + {2919,2920, 0, 4, 9286, 240, 0, 0 }, + {2921,2922, 0, 4, 8706, 413, 0, 0 }, + {2923,2924, 0, 4, 2233, 346, 0, 0 }, + {2925,2926, 0, 4, 2373, 426, 0, 0 }, + {2927,2928, 0, 4, 2353, 233, 0, 0 }, + {2929,2929, 0, 0, 40000, 140, 0, 0 }, + {2930,2931, 0, 4, 40000, 100, 0, 0 }, + {2932,2933, 0, 4, 40000, 73, 0, 0 }, + {2934,2935, 0, 4, 40000, 80, 0, 0 }, + {2936,2937, 0, 4, 40000, 80, 0, 0 }, + {2938,2939, 0, 4, 40000, 246, 0, 0 }, + {2940,2940, 0, 0, 553, 446, 0, 0 }, + {2941,2941, 0, 0, 40000, 193, 0, 0 }, + {2942,2943, 0, 4, 1206, 406, 0, 0 }, + {2944,2944, 0, 0, 7026, 1553, 0, 0 }, + {2945,2945, 0, 0, 3426, 360, 0, 0 }, + {2946,2947, 0, 4, 7313, 646, 0, 0 }, + {2948,2948, 0, 0, 40000, 386, 0, 0 }, + {2949,2949, 0, 0, 1953, 726, 0, 0 }, + {2950,2951, 0, 4, 14606, 106, 0, 0 }, + {2952,2953, 0, 4, 40000, 1566, 0, 0 }, + {2954,2954, 60, 2, 6, 0, 0, 0 }, + {2955,2956, 0, 4, 40000, 240, 0, 0 }, + {2957,2958, 0, 4, 40000, 80, 0, 0 }, + {2959,2960, 0, 4, 40000, 113, 0, 0 }, + {2961,2962, 0, 4, 40000, 240, 0, 0 }, + {2963,2963, 0, 0, 8506, 680, 0, 0 }, + {2964,2964, 0, 0, 40000, 1593, 0, 0 }, + {2436,2436, 49, 0, 1873, 633, 0, 0 }, + {2357,2357, 61, 0, 113, 20, 0, 0 }, + {2357,2357, 56, 0, 113, 26, 0, 0 }, + {2357,2357, 58, 0, 113, 26, 0, 0 }, + {2357,2357, 49, 0, 126, 26, 0, 0 }, + {2357,2357, 44, 0, 126, 26, 0, 0 }, + {2965,2965, 0, 0, 40000, 380, 0, 0 }, + {2966,2966, 0, 0, 4440, 66, 0, 0 }, + {2967,2967, 0, 0, 8133, 1433, 0, 0 }, + {2968,2968, 0, 0, 40000, 126, 0, 0 }, + {2969,2969, 0, 0, 40000, 0, 0, 0 }, + {2970,2970, 84, 0, 160, 26, 0, 0 }, + {2971,2971, 72, 0, 440, 180, 0, 0 }, + {2972,2972, 0, 0, 8313, 580, 0, 0 }, + {2973,2973, 0, 0, 40000, 160, 0, 0 }, + {2974,2974, 0, 0, 40000, 3000, 0, 0 }, + {2975,2975, 0, 0, 8300, 493, 0, 0 }, + {2976,2976, 0, 0, 973, 673, 0, 0 }, + {2977,2977, 0, 0, 40000, 73, 0, 0 }, + {2978,2978, 0, 0, 40000, 133, 0, 0 }, + {2979,2979, 0, 0, 40000, 140, 0, 0 }, + {2980,2980, 0, 0, 40000, 346, 0, 0 }, + {2981,2981, 0, 0, 40000, 1006, 0, 0 }, + {2982,2982, 0, 0, 40000, 966, 0, 0 }, + {2983,2983, 0, 0, 40000, 0, 0, 0 }, + {2984,2984, 0, 0, 40000, 0, 0, 0 }, + {2985,2985, 0, 0, 40000, 66, 0, 0 }, + {2986,2986, 0, 0, 40000, 66, 0, 0 }, + {2987,2987, 0, 0, 40000, 46, 0, 0 }, + {2988,2988, 0, 0, 40000, 533, 0, 0 }, + {2989,2989, 0, 0, 2400, 780, 0, 0 }, + {2990,2990, 0, 0, 820, 66, 0, 0 }, + {2991,2991, 0, 0, 40000, 240, 0, 0 }, + {2992,2992, 0, 0, 40000, 220, 0, 0 }, + {2993,2993, 0, 0, 40000, 0, 0, 0 }, + {2994,2994, 0, 0, 15100, 73, 0, 0 }, + {2995,2995, 0, 0, 40000, 200, 0, 0 }, + {2996,2996, 0, 0, 2426, 93, 0, 0 }, + {2997,2997, 0, 0, 4640, 1553, 0, 0 }, + {2998,2998, 0, 0, 40000, 73, 0, 0 }, + {2999,2999, 0, 0, 40000, 73, 0, 0 }, + {3000,3000, 0, 0, 1133, 633, 0, 0 }, + {3001,3001, 0, 0, 40000, 0, 0, 0 }, + {3002,3002, 0, 0, 40000, 1006, 0, 0 }, + {3003,3003, 0, 0, 4653, 653, 0, 0 }, + {3004,3004, 0, 0, 40000, 1000, 0, 0 }, + {3005,3005, 0, 0, 40000, 53, 0, 0 }, + {3006,3006, 0, 0, 40000, 60, 0, 0 }, + {3007,3007, 0, 0, 40000, 0, 0, 0 }, + { 350, 350, 0, 0, 513, 200, 0, 0 }, + {3008,3008, 0, 0, 213, 106, 0, 0 }, + {3009,3009, 0, 0, 280, 126, 0, 0 }, + {3010,3010, 0, 0, 1193, 426, 0, 0 }, + {3011,3011, 0, 0, 14653, 4906, 0, 0 }, + {3012,3012, 0, 0, 1040, 326, 0, 0 }, + {3013,3013, 0, 0, 5740, 2326, 0, 0 }, + {3014,3014, 0, 0, 40000, 73, 0, 0 }, + {3015,3015, 0, 0, 40000, 240, 0, 0 }, + { 350, 350, 36, 0, 380, 153, 0, 0 }, + { 369, 369, 37, 0, 213, 66, 0, 0 }, + {3008,3008, 38, 0, 213, 106, 0, 0 }, + { 369, 369, 24, 0, 193, 13, 0, 0 }, + {3008,3008, 32, 0, 206, 106, 0, 0 }, + { 369, 369, 48, 0, 186, 20, 0, 0 }, + {3009,3009, 42, 0, 220, 106, 0, 0 }, + { 369, 369, 50, 0, 186, 73, 0, 0 }, + { 369, 369, 52, 0, 186, 73, 0, 0 }, + { 369, 369, 54, 0, 186, 33, 0, 0 }, + { 369, 369, 55, 0, 186, 33, 0, 0 }, + { 369, 369, 57, 0, 180, 33, 0, 0 }, + {3010,3010, 51, 0, 966, 353, 0, 0 }, + { 144, 144, 61, 0, 213, 126, 0, 0 }, + {3016,3016, 0, 0, 8340, 520, 0, 0 }, + {3016,3016, 63, 0, 6106, 373, 0, 0 }, + {3016,3016, 64, 0, 6073, 380, 0, 0 }, + {3017,3017, 40, 0, 206, 100, 0, 0 }, + {3017,3017, 70, 0, 160, 93, 0, 0 }, + {3018,3018, 0, 0, 40000, 73, 0, 0 }, + {3019,3019, 0, 0, 40000, 73, 0, 0 }, + {3020,3020, 0, 0, 40000, 73, 0, 0 }, + {3021,3021, 0, 0, 40000, 73, 0, 0 }, + {3022,3022, 38, 0, 246, 33, 0, 0 }, + {2441,2441, 57, 0, 286, 126, 0, 0 }, + {3023,3023, 63, 0, 146, 126, 0, 0 }, + {3024,3024, 74, 0, 280, 73, 0, 0 }, + {3025,3025, 74, 0, 453, 100, 0, 0 }, + {3026,3026, 60, 0, 666, 33, 0, 0 }, + {1439,1440, 0, 0, 13566, 273, 0, 0 }, + {1593,1594, 35, 0, 2200, 673, 0, 0 }, + {1564,1565, 35, 0, 740, 280, 0, 0 }, + {1443,1444, 0, 0, 11886, 333, 0, 0 }, + {1481,1482, 0, 0, 40000, 133, 0, 0 }, + { 185, 186, 0, 0, 5980, 1540, 0, 0 }, + { 235, 237, 0, 0, 3366, 1093, 0, 0 }, + { 239, 240, 0, 0, 40000, 133, 0, 0 }, + {1477,1476, 0, 0, 40000, 160, 0, 0 }, + { 268, 269, 0, 0, 40000, 80, 0, 0 }, + { 176, 177, 0, 0, 40000, 0, 0, 0 }, + {1490,1491, 0, 0, 40000, 60, 0, 0 }, + { 231, 232, 0, 0, 40000, 146, 0, 0 }, + { 233, 234, 0, 0, 40000, 433, 0, 0 }, + { 254, 255, 0, 0, 40000, 93, 0, 0 }, + { 192, 193, 0, 0, 40000, 66, 0, 0 }, + { 252, 253, 0, 0, 40000, 73, 0, 0 }, + { 248,3027, 0, 0, 40000, 80, 0, 0 }, + { 39,1476, 0, 0, 40000, 160, 0, 0 }, + { 241, 242, 0, 0, 40000, 146, 0, 0 }, + {1508,1509, 0, 0, 40000, 0, 0, 0 }, + { 246, 247, 0, 0, 3966, 800, 0, 0 }, + { 181,1451, 0, 0, 2153, 640, 0, 0 }, + { 209, 210, 0, 0, 4453, 100, 0, 0 }, + { 270, 271, 0, 0, 40000, 80, 0, 0 }, + { 115,1533, 0, 0, 4260, 1720, 0, 0 }, + {1454,1455, 0, 0, 40000, 0, 0, 0 }, + { 107, 319, 0, 0, 1266, 413, 0, 0 }, + { 46, 238, 0, 0, 6873, 1246, 0, 0 }, + { 216, 217, 0, 0, 4046, 100, 0, 0 }, + { 272, 273, 0, 0, 40000, 126, 0, 0 }, + {1445,3028, 0, 0, 9966, 386, 0, 0 }, + { 172, 173, 0, 0, 7340, 100, 0, 0 }, + { 174, 175, 0, 0, 6913, 100, 0, 0 }, + {1447,3029, 0, 0, 10306, 80, 0, 0 }, + {1452,3030, 0, 0, 9240, 240, 0, 0 }, + { 183, 184, 0, 0, 586, 253, 0, 0 }, + {1456,1457, 0, 0, 1386, 180, 0, 0 }, + {1458,1459, 0, 0, 40000, 60, 0, 0 }, + { 190,1460, 0, 0, 40000, 46, 0, 0 }, + {1462,1463, 0, 0, 40000, 340, 0, 0 }, + {1464,1465, 0, 0, 40000, 360, 0, 0 }, + { 195, 196, 0, 0, 40000, 66, 0, 0 }, + { 197, 198, 0, 0, 40000, 86, 0, 0 }, + { 199, 200, 0, 0, 40000, 60, 0, 0 }, + { 201, 202, 0, 0, 3713, 100, 0, 0 }, + { 203, 204, 0, 0, 14633, 126, 0, 0 }, + { 205, 206, 0, 0, 9440, 153, 0, 0 }, + { 214, 215, 0, 0, 17020, 100, 0, 0 }, + { 218, 219, 0, 0, 14000, 180, 0, 0 }, + { 220, 221, 0, 0, 2846, 100, 0, 0 }, + {1472,1473, 0, 0, 8066, 66, 0, 0 }, + {1474,1475, 0, 0, 8040, 93, 0, 0 }, + { 225, 226, 0, 0, 8066, 106, 0, 0 }, + { 229, 230, 0, 0, 40000, 160, 0, 0 }, + {1478,1479, 0, 0, 40000, 413, 0, 0 }, + { 50,1480, 0, 0, 40000, 393, 0, 0 }, + {1485,1486, 0, 0, 40000, 226, 0, 0 }, + { 258, 259, 0, 0, 40000, 73, 0, 0 }, + { 262, 263, 0, 0, 40000, 160, 0, 0 }, + { 264, 265, 0, 0, 40000, 160, 0, 0 }, + {1494,1495, 0, 0, 40000, 80, 0, 0 }, + {1496,1497, 0, 0, 40000, 73, 0, 0 }, + { 274, 275, 0, 0, 40000, 100, 0, 0 }, + {1499,1500, 0, 0, 40000, 73, 0, 0 }, + { 277, 278, 0, 0, 40000, 173, 0, 0 }, + { 279, 280, 0, 0, 40000, 160, 0, 0 }, + { 281, 282, 0, 0, 40000, 173, 0, 0 }, + {1501,1502, 0, 0, 40000, 146, 0, 0 }, + { 284, 285, 0, 0, 40000, 66, 0, 0 }, + { 286, 287, 0, 0, 40000, 86, 0, 0 }, + {1503,1504, 0, 0, 40000, 86, 0, 0 }, + {1505,1506, 0, 0, 40000, 73, 0, 0 }, + { 289, 290, 0, 0, 40000, 66, 0, 0 }, + { 291, 292, 0, 0, 40000, 160, 0, 0 }, + { 293, 294, 0, 0, 40000, 200, 0, 0 }, + { 86,1507, 0, 0, 40000, 80, 0, 0 }, + { 88, 297, 0, 0, 40000, 1346, 0, 0 }, + { 298, 299, 0, 0, 40000, 320, 0, 0 }, + { 300, 301, 0, 0, 40000, 1273, 0, 0 }, + {1514,1515, 0, 0, 40000, 100, 0, 0 }, + {1518,1519, 0, 0, 4733, 0, 0, 0 }, + {1520,1521, 0, 0, 40000, 440, 0, 0 }, + {1524,1525, 0, 0, 40000, 1180, 0, 0 }, + {1526,1527, 0, 0, 40000, 746, 0, 0 }, + {1528,1529, 0, 0, 40000, 920, 0, 0 }, + { 311, 312, 0, 0, 15306, 213, 0, 0 }, + { 313, 314, 0, 0, 7280, 340, 0, 0 }, + { 315, 316, 0, 0, 3693, 346, 0, 0 }, + { 317, 318, 0, 0, 13720, 4033, 0, 0 }, + { 108, 320, 0, 0, 40000, 66, 0, 0 }, + { 109, 321, 0, 0, 40000, 180, 0, 0 }, + { 322, 323, 0, 0, 40000, 73, 0, 0 }, + { 111,1530, 0, 0, 4053, 426, 0, 0 }, + { 324, 325, 0, 0, 626, 260, 0, 0 }, + { 326, 327, 0, 0, 1166, 400, 0, 0 }, + {1531,1532, 0, 0, 186, 340, 0, 0 }, + {1534,1535, 0, 0, 3240, 440, 0, 0 }, + { 330, 331, 0, 0, 1920, 360, 0, 0 }, + {1536,1537, 0, 0, 3020, 0, 0, 0 }, + {1538,1539, 0, 0, 1660, 846, 0, 0 }, + {1541, 339, 0, 0, 9213, 813, 0, 0 }, + {1542,1543, 0, 0, 993, 100, 0, 0 }, + {1544,3031, 0, 0, 860, 180, 0, 0 }, + {1546,3032, 0, 0, 40000, 80, 0, 0 }, + { 338, 339, 0, 0, 40000, 200, 0, 0 }, + { 340, 341, 0, 0, 40000, 0, 0, 0 }, + {1441,1442, 0, 0, 7393, 186, 0, 0 }, + { 207, 208, 0, 0, 14373, 126, 0, 0 }, + {1466,1467, 0, 0, 40000, 66, 0, 0 }, + {1468,1469, 0, 0, 40000, 46, 0, 0 }, + { 179, 180, 0, 0, 4080, 346, 0, 0 }, + {1449,1450, 0, 0, 8313, 3373, 0, 0 }, + { 35,1470, 0, 0, 40000, 0, 0, 0 }, + { 36,1471, 0, 0, 8093, 40, 0, 0 }, + { 235, 236, 0, 0, 2393, 333, 0, 0 }, + {1483,1484, 0, 0, 40000, 0, 0, 0 }, + { 55,1487, 0, 0, 40000, 80, 0, 0 }, + {1488,1489, 0, 0, 40000, 80, 0, 0 }, + {1492,1493, 0, 0, 40000, 66, 0, 0 }, + { 256, 257, 0, 0, 40000, 53, 0, 0 }, + { 260, 261, 0, 0, 40000, 86, 0, 0 }, + {1512,1513, 0, 0, 40000, 40, 0, 0 }, + {1510,1511, 0, 0, 40000, 80, 0, 0 }, + {1496,1498, 0, 0, 40000, 73, 0, 0 }, + { 295, 296, 0, 0, 40000, 340, 0, 0 }, + {1540, 339, 0, 0, 2466, 633, 0, 0 }, + { 398, 399, 35, 0, 1860, 226, 0, 0 }, + {1516,1517, 0, 0, 40000, 660, 0, 0 }, + {1550,3033, 35, 0, 213, 26, 0, 0 }, + {1556,1557, 35, 0, 1200, 426, 0, 0 }, + {1558,1559, 35, 0, 1173, 406, 0, 0 }, + {1570,1571, 35, 0, 1160, 140, 0, 0 }, + {1608,1609, 35, 0, 2100, 320, 0, 0 }, + {1595,1596, 35, 0, 220, 273, 0, 0 }, + { 159,1597, 35, 0, 220, 266, 0, 0 }, + {1610,1611, 35, 0, 220, 273, 0, 0 }, + { 397,1588, 35, 0, 253, 86, 0, 0 }, + {1606,1607, 35, 0, 133, 66, 0, 0 }, + { 145,1576, 35, 0, 180, 0, 0, 0 }, + {1612,1613, 35, 0, 526, 400, 0, 0 }, + {1577,1578, 35, 0, 506, 453, 0, 0 }, + {1614,1615, 35, 0, 773, 933, 0, 0 }, + { 305, 306, 0, 0, 40000, 1160, 0, 0 }, + {1522,1523, 0, 0, 40000, 0, 0, 0 }, + {1550,1551, 35, 0, 526, 146, 0, 0 }, + { 364, 365, 35, 0, 186, 20, 0, 0 }, + { 129,1549, 35, 0, 326, 133, 0, 0 }, + { 132,1552, 35, 0, 226, 113, 0, 0 }, + {1553,1554, 35, 0, 206, 73, 0, 0 }, + { 129,1548, 35, 0, 326, 133, 0, 0 }, + { 134,1555, 35, 0, 2580, 893, 0, 0 }, + {1560,1561, 35, 0, 600, 366, 0, 0 }, + {1562,1563, 35, 0, 40000, 0, 0, 0 }, + {1572,1573, 35, 0, 340, 133, 0, 0 }, + {1574,1575, 35, 0, 406, 226, 0, 0 }, + {1581,1582, 35, 0, 640, 213, 0, 0 }, + { 149,1583, 35, 0, 326, 20, 0, 0 }, + {1584,1585, 35, 0, 633, 240, 0, 0 }, + {1591,1592, 35, 0, 1226, 413, 0, 0 }, + {1568,1569, 35, 0, 1313, 460, 0, 0 }, + {1579,1580, 35, 0, 326, 0, 0, 0 }, + {1586,1587, 35, 0, 606, 220, 0, 0 }, + {1589,1590, 35, 0, 120, 86, 0, 0 }, + {1600,1601, 35, 0, 1326, 420, 0, 0 }, + {1602,1603, 35, 0, 706, 266, 0, 0 }, + {1604,1605, 35, 0, 4540, 1326, 0, 0 }, + { 391, 392, 35, 0, 360, 153, 0, 0 }, + { 391, 393, 35, 0, 453, 153, 0, 0 }, + {1598,1599, 35, 0, 1246, 346, 0, 0 }, + { 367, 368, 35, 0, 600, 153, 0, 0 }, + { 380, 381, 35, 0, 40000, 0, 0, 0 }, + { 374, 375, 35, 0, 40000, 0, 0, 0 }, + {1566,1567, 35, 0, 40000, 0, 0, 0 }, + {2306,2307, 35, 0, 7660, 1560, 0, 0 }, + {3034, 339, 35, 0, 5860, 426, 0, 0 }, + {2301,2302, 35, 0, 2146, 753, 0, 0 }, + {2305,1548, 35, 0, 326, 133, 0, 0 }, + {1595,1595, 35, 0, 220, 273, 0, 0 }, + {2303,2304, 35, 0, 186, 20, 0, 0 }, + {1560,2308, 35, 0, 600, 373, 0, 0 }, + {2309,2310, 35, 0, 40000, 0, 0, 0 }, + {1568,1568, 35, 0, 1280, 453, 0, 0 }, + {2311,2312, 35, 0, 360, 106, 0, 0 }, + {2313,2314, 35, 0, 620, 0, 0, 0 }, + {2315,2315, 35, 0, 106, 0, 0, 0 }, + {2316,2316, 35, 0, 506, 453, 0, 0 }, + {1612,1612, 35, 0, 526, 400, 0, 0 }, + {2317,2317, 35, 0, 640, 253, 0, 0 }, + {2318,2318, 35, 0, 326, 20, 0, 0 }, + {2319,2319, 35, 0, 453, 446, 0, 0 }, + {2320,2320, 35, 0, 466, 453, 0, 0 }, + {2321,2321, 35, 0, 120, 26, 0, 0 }, + {2322,2322, 35, 0, 1220, 406, 0, 0 }, + {2323,2323, 35, 0, 2360, 786, 0, 0 }, + {2324, 392, 35, 0, 353, 146, 0, 0 }, + {2324, 393, 35, 0, 453, 146, 0, 0 }, + {2325,2326, 35, 0, 533, 140, 0, 0 }, + {2327,2328, 35, 0, 1273, 393, 0, 0 }, + {2329,2330, 35, 0, 40000, 0, 0, 0 }, + {2331,2332, 35, 0, 40000, 0, 0, 0 }, + {3035,3036, 35, 0, 4133, 433, 0, 0 }, + {3037,3038, 35, 0, 1740, 286, 0, 0 }, + {1564,1564, 35, 0, 713, 273, 0, 0 }, + {3039,3039, 0, 0, 40000, 0, 0, 0 }, + {3040,3040, 0, 0, 6100, 146, 0, 0 }, + {3041,3041, 0, 0, 2386, 26, 0, 0 }, + {3042,3042, 0, 0, 4320, 80, 0, 0 }, + {3043,3043, 0, 0, 3433, 313, 0, 0 }, + {3044,3044, 0, 0, 6620, 2446, 0, 0 }, + {3045,3045, 0, 0, 3726, 1253, 0, 0 }, + {3046,3046, 0, 0, 40000, 133, 0, 0 }, + {3047,3047, 0, 0, 4566, 1253, 0, 0 }, + {3048,3048, 0, 0, 40000, 813, 0, 0 }, + {3049,3049, 0, 0, 18513, 1560, 0, 0 }, + {3050,3050, 0, 0, 2186, 426, 0, 0 }, + {3051,3051, 0, 0, 1186, 420, 0, 0 }, + {3052,3052, 0, 0, 766, 420, 0, 0 }, + {3053,3053, 0, 0, 14513, 4713, 0, 0 }, + {3054,3054, 0, 0, 15493, 1580, 0, 0 }, + {3055,3055, 0, 0, 40000, 66, 0, 0 }, + {3056,3056, 0, 0, 40000, 60, 0, 0 }, + {3057,3057, 0, 0, 4740, 100, 0, 0 }, + {3058,3058, 0, 0, 40000, 66, 0, 0 }, + {3059,3059, 0, 0, 40000, 73, 0, 0 }, + {3060,3060, 0, 0, 40000, 73, 0, 0 }, + {3061,3061, 0, 0, 40000, 0, 0, 0 }, + {3062,3062, 0, 0, 8373, 633, 0, 0 }, + {3063,3063, 0, 0, 7560, 133, 0, 0 }, + {3064,3064, 0, 0, 40000, 0, 0, 0 }, + {3065,3065, 0, 0, 40000, 86, 0, 0 }, + {3066,3066, 0, 0, 340, 140, 0, 0 }, + {3067,3067, 0, 0, 40000, 0, 0, 0 }, + {3068,3068, 0, 0, 40000, 166, 0, 0 }, + {3069,3069, 0, 0, 4280, 1466, 0, 0 }, + {3070,3070, 0, 0, 2193, 73, 0, 0 }, + {3071,3071, 0, 0, 4846, 100, 0, 0 }, + {3072,3072, 0, 0, 12740, 93, 0, 0 }, + {3073,3073, 0, 0, 6953, 200, 0, 0 }, + {3074,3074, 0, 0, 13780, 73, 0, 0 }, + {3075,3075, 0, 0, 40000, 73, 0, 0 }, + {3076,3076, 0, 0, 5860, 600, 0, 0 }, + {3077,3077, 0, 0, 2206, 73, 0, 0 }, + {3078,3078, 0, 0, 40000, 140, 0, 0 }, + {3079,3079, 0, 0, 40000, 53, 0, 0 }, + {3080,3080, 0, 0, 40000, 120, 0, 0 }, + {3081,3081, 0, 0, 40000, 140, 0, 0 }, + {3082,3082, 0, 0, 40000, 126, 0, 0 }, + {3083,3083, 0, 0, 360, 140, 0, 0 }, + {3084,3084, 0, 0, 8880, 1373, 0, 0 }, + {3085,3085, 0, 0, 593, 73, 0, 0 }, + {3086,3086, 0, 0, 40000, 193, 0, 0 }, + {3087,3087, 0, 0, 40000, 200, 0, 0 }, + {3088,3088, 0, 0, 40000, 160, 0, 0 }, + {3089,3089, 0, 0, 40000, 200, 0, 0 }, + {3090,3090, 0, 0, 40000, 53, 0, 0 }, + {3091,3091, 0, 0, 40000, 73, 0, 0 }, + {3092,3092, 0, 0, 40000, 73, 0, 0 }, + {3093,3093, 0, 0, 760, 213, 0, 0 }, + {3094,3094, 0, 0, 40000, 133, 0, 0 }, + {3095,3095, 0, 0, 40000, 220, 0, 0 }, + {3096,3096, 0, 0, 40000, 100, 0, 0 }, + {3097,3097, 0, 0, 40000, 73, 0, 0 }, + {3098,3098, 0, 0, 40000, 140, 0, 0 }, + {3099,3099, 0, 0, 40000, 140, 0, 0 }, + {3100,3100, 0, 0, 40000, 140, 0, 0 }, + {3101,3101, 0, 0, 40000, 73, 0, 0 }, + {3102,3102, 0, 0, 40000, 73, 0, 0 }, + {3103,3103, 0, 0, 40000, 73, 0, 0 }, + {3104,3104, 0, 0, 40000, 73, 0, 0 }, + {3105,3105, 0, 0, 40000, 66, 0, 0 }, + {3106,3106, 0, 0, 40000, 66, 0, 0 }, + {3107,3107, 0, 0, 40000, 73, 0, 0 }, + {3108,3108, 0, 0, 40000, 73, 0, 0 }, + {3109,3109, 0, 0, 40000, 73, 0, 0 }, + {3110,3110, 0, 0, 40000, 73, 0, 0 }, + {3111,3111, 0, 0, 40000, 86, 0, 0 }, + {3112,3112, 0, 0, 5393, 100, 0, 0 }, + {3113,3113, 0, 0, 40000, 60, 0, 0 }, + {3114,3114, 0, 0, 18500, 73, 0, 0 }, + {3115,3115, 0, 0, 40000, 93, 0, 0 }, + {3116,3116, 0, 0, 40000, 86, 0, 0 }, + {3117,3117, 0, 0, 40000, 173, 0, 0 }, + {3118,3118, 0, 0, 40000, 1353, 0, 0 }, + {3119,3119, 0, 0, 17506, 73, 0, 0 }, + {3120,3120, 0, 0, 40000, 100, 0, 0 }, + {3121,3121, 0, 0, 40000, 73, 0, 0 }, + {3122,3122, 0, 0, 5620, 193, 0, 0 }, + {3123,3123, 0, 0, 3700, 80, 0, 0 }, + {3124,3124, 0, 0, 40000, 66, 0, 0 }, + {3125,3125, 0, 0, 2740, 80, 0, 0 }, + {3126,3126, 0, 0, 8333, 173, 0, 0 }, + {3127,3127, 0, 0, 2226, 466, 0, 0 }, + {3128,3128, 0, 0, 340, 146, 0, 0 }, + {3129,3129, 0, 0, 19980, 6280, 0, 0 }, + {3130,3130, 0, 0, 353, 73, 0, 0 }, + {3131,3131, 35, 0, 566, 233, 0, 0 }, + {3132,3132, 35, 0, 226, 46, 0, 0 }, + {3133,3133, 35, 0, 40000, 100, 0, 0 }, + {3134,3134, 35, 0, 40000, 100, 0, 0 }, + {3135,3135, 35, 0, 360, 146, 0, 0 }, + {3061,3061, 35, 0, 40000, 0, 0, 0 }, + {3136,3136, 35, 0, 366, 20, 0, 0 }, + { 739, 739, 35, 0, 246, 20, 0, 0 }, + {3137,3137, 35, 0, 333, 33, 0, 0 }, + {3138,3138, 35, 0, 420, 166, 0, 0 }, + {3139,3139, 35, 0, 626, 240, 0, 0 }, + {3140,3140, 35, 0, 233, 100, 0, 0 }, + {3141,3141, 35, 0, 1166, 440, 0, 0 }, + {3142,3142, 35, 0, 166, 66, 0, 0 }, + {3143,3143, 35, 0, 1166, 440, 0, 0 }, + {3144,3144, 35, 0, 813, 100, 0, 0 }, + {3145,3145, 35, 0, 1040, 440, 0, 0 }, + {3146,3146, 35, 0, 40000, 0, 0, 0 }, + {3147,3147, 35, 0, 40000, 0, 0, 0 }, + {3148,3148, 35, 0, 180, 40, 0, 0 }, + {3149,3149, 35, 0, 40000, 0, 0, 0 }, + {3150,3150, 0, 0, 40000, 0, 0, 0 }, + {3151,3151, 0, 0, 4900, 240, 0, 0 }, + {3152,3152, 0, 0, 3480, 80, 0, 0 }, + {3153,3153, 0, 0, 3586, 86, 0, 0 }, + {3154,3154, 0, 0, 4626, 633, 0, 0 }, + {3155,3155, 0, 0, 4293, 2286, 0, 0 }, + {3156,3156, 0, 0, 13653, 0, 0, 0 }, + {3157,3157, 0, 0, 1206, 426, 0, 0 }, + {3158,3158, 0, 0, 653, 426, 0, 0 }, + {3159,3159, 0, 0, 40000, 0, 0, 0 }, + {3160,3160, 0, 0, 4633, 633, 0, 0 }, + {3161,3161, 0, 0, 40000, 73, 0, 0 }, + {3162,3162, 0, 0, 40000, 60, 0, 0 }, + {3163,3163, 0, 0, 40000, 146, 0, 0 }, + {3164,3164, 0, 0, 40000, 73, 0, 0 }, + {3165,3165, 0, 0, 40000, 73, 0, 0 }, + {3166,3166, 0, 0, 40000, 0, 0, 0 }, + {3167,3167, 0, 0, 40000, 66, 0, 0 }, + {3168,3168, 0, 0, 3680, 1180, 0, 0 }, + {3169,3169, 0, 0, 2406, 846, 0, 0 }, + {3170,3170, 0, 0, 1560, 73, 0, 0 }, + {3171,3171, 0, 0, 1946, 226, 0, 0 }, + {3172,3172, 0, 0, 4333, 13, 0, 0 }, + {3173,3173, 0, 0, 40000, 0, 0, 0 }, + {3174,3174, 0, 0, 40000, 0, 0, 0 }, + {3175,3175, 0, 0, 40000, 66, 0, 0 }, + {3176,3176, 0, 0, 40000, 180, 0, 0 }, + {3177,3177, 0, 0, 15380, 80, 0, 0 }, + {3178,3178, 0, 0, 18213, 73, 0, 0 }, + {3179,3179, 0, 0, 1706, 0, 0, 0 }, + {3180,3180, 0, 0, 5733, 1266, 0, 0 }, + {3181,3181, 0, 0, 40000, 0, 0, 0 }, + {3182,3182, 0, 0, 40000, 366, 0, 0 }, + {3183,3183, 0, 0, 40000, 66, 0, 0 }, + {3184,3184, 0, 0, 4786, 73, 0, 0 }, + {3185,3185, 0, 0, 5660, 720, 0, 0 }, + {3186,3186, 0, 0, 1293, 406, 0, 0 }, + {3187,3187, 0, 0, 40000, 0, 0, 0 }, + {3188,3188, 0, 0, 2686, 233, 0, 0 }, + {3189,3189, 0, 0, 40000, 0, 0, 0 }, + {3190,3190, 0, 0, 40000, 73, 0, 0 }, + {3191,3191, 0, 0, 40000, 0, 0, 0 }, + {3192,3192, 0, 0, 40000, 73, 0, 0 }, + {3193,3193, 0, 0, 40000, 0, 0, 0 }, + {3194,3194, 0, 0, 3920, 73, 0, 0 }, + {3195,3195, 0, 0, 40000, 73, 0, 0 }, + {3196,3196, 0, 0, 40000, 66, 0, 0 }, + {3197,3197, 0, 0, 40000, 80, 0, 0 }, + {3198,3198, 0, 0, 40000, 86, 0, 0 }, + {3199,3199, 0, 0, 40000, 60, 0, 0 }, + {3200,3200, 0, 0, 40000, 0, 0, 0 }, + {3201,3201, 0, 0, 40000, 353, 0, 0 }, + {3202,3202, 0, 0, 3920, 73, 0, 0 }, + {3203,3203, 0, 0, 5833, 813, 0, 0 }, + {3204,3204, 0, 0, 40000, 60, 0, 0 }, + {3205,3205, 0, 0, 40000, 73, 0, 0 }, + {3206,3206, 0, 0, 1400, 406, 0, 0 }, + {3207,3207, 0, 0, 40000, 66, 0, 0 }, + {3208,3208, 0, 0, 9066, 2220, 0, 0 }, + {3209,3209, 0, 0, 1473, 773, 0, 0 }, + {3210,3210, 0, 0, 40000, 120, 0, 0 }, + {3211,3211, 0, 0, 40000, 306, 0, 0 }, + {3212,3212, 0, 0, 9306, 3013, 0, 0 }, + {3213,3213, 0, 0, 40000, 60, 0, 0 }, + {3214,3214, 0, 0, 40000, 73, 0, 0 }, + {3215,3215, 0, 0, 40000, 73, 0, 0 }, + {3216,3216, 0, 0, 40000, 453, 0, 0 }, + {3217,3217, 0, 0, 40000, 3460, 0, 0 }, + {3218,3218, 0, 0, 40000, 453, 0, 0 }, + {3219,3219, 0, 0, 40000, 40, 0, 0 }, + {3220,3220, 0, 0, 40000, 3926, 0, 0 }, + {3221,3221, 0, 0, 40000, 4506, 0, 0 }, + {3222,3222, 0, 0, 4646, 646, 0, 0 }, + {3223,3223, 0, 0, 773, 100, 0, 0 }, + {3224,3224, 0, 0, 40000, 73, 0, 0 }, + {3225,3225, 0, 0, 40000, 173, 0, 0 }, + {3226,3226, 0, 0, 1606, 653, 0, 0 }, + {3227,3227, 0, 0, 2353, 806, 0, 0 }, + {3228,3228, 0, 0, 980, 360, 0, 0 }, + {3229,3229, 0, 0, 1193, 413, 0, 0 }, + { 499, 499, 0, 0, 266, 0, 0, 0 }, + {3230,3230, 0, 0, 973, 360, 0, 0 }, + {3231,3231, 0, 0, 273, 53, 0, 0 }, + {3232,3232, 0, 0, 726, 220, 0, 0 }, + {3233,3233, 0, 0, 19933, 6093, 0, 0 }, + {3234,3234, 0, 0, 40000, 0, 0, 0 }, + { 403, 403, 0, 0, 40000, 73, 0, 0 }, + {3235,3235, 0, 0, 4966, 233, 0, 0 }, + {3236,3236, 0, 0, 4946, 240, 0, 0 }, + {3237,3237, 0, 0, 4946, 233, 0, 0 }, + {3238,3238, 0, 0, 4640, 1613, 0, 0 }, + {3239,3239, 0, 0, 2360, 806, 0, 0 }, + {3240,3240, 0, 0, 4466, 200, 0, 0 }, + {3241,3241, 0, 0, 40000, 73, 0, 0 }, + {3242,3242, 0, 0, 40000, 73, 0, 0 }, + {3243,3243, 0, 0, 40000, 73, 0, 0 }, + {3244,3244, 0, 0, 40000, 73, 0, 0 }, + {3245,3245, 0, 0, 40000, 240, 0, 0 }, + {3246,3246, 0, 0, 40000, 226, 0, 0 }, + {3247,3247, 0, 0, 40000, 233, 0, 0 }, + {3248,3248, 0, 0, 40000, 240, 0, 0 }, + {3249,3249, 0, 0, 4306, 1253, 0, 0 }, + {3250,3250, 0, 0, 3873, 1206, 0, 0 }, + {3251,3251, 0, 0, 4640, 633, 0, 0 }, + {3252,3252, 0, 0, 1233, 80, 0, 0 }, + {3253,3253, 0, 0, 1233, 26, 0, 0 }, + {3254,3254, 0, 0, 1233, 26, 0, 0 }, + {3255,3255, 0, 0, 4573, 1253, 0, 0 }, + {3256,3256, 0, 0, 3793, 1240, 0, 0 }, + {3257,3257, 0, 0, 40000, 73, 0, 0 }, + {3258,3258, 0, 0, 40000, 73, 0, 0 }, + {3259,3259, 0, 0, 40000, 140, 0, 0 }, + {3260,3260, 0, 0, 40000, 146, 0, 0 }, + {3261,3261, 0, 0, 40000, 80, 0, 0 }, + {3262,3262, 0, 0, 5953, 200, 0, 0 }, + {3263,3263, 0, 0, 5926, 200, 0, 0 }, + {3264,3264, 0, 0, 5866, 26, 0, 0 }, + {3265,3265, 0, 0, 18573, 6153, 0, 0 }, + {3266,3266, 0, 0, 40000, 2093, 0, 0 }, + {3267,3267, 0, 0, 40000, 73, 0, 0 }, + {3268,3268, 0, 0, 18626, 1553, 0, 0 }, + {3269,3269, 0, 0, 40000, 1820, 0, 0 }, + {3270,3270, 0, 0, 40000, 500, 0, 0 }, + {3271,3271, 0, 0, 18206, 5900, 0, 0 }, + {3272,3272, 0, 0, 14200, 93, 0, 0 }, + {3273,3273, 0, 0, 40000, 2873, 0, 0 }, + {3274,3274, 0, 0, 14960, 4913, 0, 0 }, + {3275,3275, 0, 0, 40000, 86, 0, 0 }, + {3276,3276, 0, 0, 40000, 826, 0, 0 }, + {3277,3277, 0, 0, 40000, 200, 0, 0 }, + {3278,3278, 0, 0, 40000, 340, 0, 0 }, + {3279,3279, 0, 0, 13220, 2500, 0, 0 }, + {3280,3280, 0, 0, 40000, 100, 0, 0 }, + {3281,3281, 0, 0, 40000, 1026, 0, 0 }, + {3282,3282, 0, 0, 40000, 366, 0, 0 }, + {3283,3283, 0, 0, 40000, 386, 0, 0 }, + {3284,3284, 0, 0, 40000, 0, 0, 0 }, + {3285,3285, 0, 0, 40000, 0, 0, 0 }, + {3286,3286, 0, 0, 40000, 140, 0, 0 }, + {3287,3287, 0, 0, 40000, 53, 0, 0 }, + {3288,3288, 0, 0, 40000, 120, 0, 0 }, + {3289,3289, 0, 0, 8866, 1366, 0, 0 }, + {3290,3290, 0, 0, 4193, 1400, 0, 0 }, + {3291,3291, 0, 0, 8353, 673, 0, 0 }, + {3292,3292, 0, 0, 8353, 673, 0, 0 }, + {3293,3293, 0, 0, 8400, 593, 0, 0 }, + {3294,3294, 0, 0, 8440, 666, 0, 0 }, + {3295,3295, 0, 0, 9600, 1580, 0, 0 }, + {3296,3296, 0, 0, 40000, 46, 0, 0 }, + {3297,3297, 0, 0, 40000, 0, 0, 0 }, + {3298,3298, 0, 0, 1653, 93, 0, 0 }, + {3299,3299, 0, 0, 2706, 73, 0, 0 }, + {3300,3300, 0, 0, 11680, 26, 0, 0 }, + {3301,3301, 0, 0, 6500, 340, 0, 0 }, + {3302,3302, 0, 0, 40000, 0, 0, 0 }, + {3303,3303, 0, 0, 40000, 0, 0, 0 }, + {3304,3304, 0, 0, 40000, 73, 0, 0 }, + {3305,3305, 0, 0, 40000, 73, 0, 0 }, + {3306,3306, 0, 0, 40000, 73, 0, 0 }, + {3307,3307, 0, 0, 40000, 73, 0, 0 }, + {3308,3308, 0, 0, 40000, 73, 0, 0 }, + {3309,3309, 0, 0, 40000, 73, 0, 0 }, + {3310,3310, 0, 0, 40000, 73, 0, 0 }, + {3311,3311, 0, 0, 40000, 73, 0, 0 }, + {3312,3312, 0, 0, 40000, 73, 0, 0 }, + {3313,3313, 0, 0, 40000, 133, 0, 0 }, + {3314,3314, 0, 0, 40000, 126, 0, 0 }, + {3315,3315, 0, 0, 40000, 73, 0, 0 }, + {3316,3316, 0, 0, 40000, 73, 0, 0 }, + {3317,3317, 0, 0, 40000, 73, 0, 0 }, + {3318,3318, 0, 0, 40000, 200, 0, 0 }, + {3319,3319, 0, 0, 40000, 133, 0, 0 }, + {3320,3320, 0, 0, 40000, 0, 0, 0 }, + {3321,3321, 0, 0, 40000, 240, 0, 0 }, + {3322,3322, 0, 0, 40000, 220, 0, 0 }, + {3323,3323, 0, 0, 40000, 226, 0, 0 }, + {3324,3324, 0, 0, 40000, 100, 0, 0 }, + {3325,3325, 0, 0, 40000, 140, 0, 0 }, + {3326,3326, 0, 0, 40000, 0, 0, 0 }, + {3327,3327, 0, 0, 40000, 426, 0, 0 }, + {3328,3328, 0, 0, 40000, 426, 0, 0 }, + {3329,3329, 0, 0, 3680, 1220, 0, 0 }, + {3330,3330, 0, 0, 40000, 533, 0, 0 }, + {3331,3331, 0, 0, 40000, 813, 0, 0 }, + {3332,3332, 0, 0, 14506, 4706, 0, 0 }, + {3333,3333, 0, 0, 766, 420, 0, 0 }, + {3334,3334, 0, 0, 40000, 1566, 0, 0 }, + {3335,3335, 0, 0, 40000, 120, 0, 0 }, + {3336,3336, 0, 0, 40000, 2380, 0, 0 }, + {3337,3337, 0, 0, 5666, 300, 0, 0 }, + {3338,3338, 0, 0, 40000, 73, 0, 0 }, + {3339,3339, 0, 0, 40000, 2513, 0, 0 }, + {3340,3340, 0, 0, 1260, 826, 0, 0 }, + {3341,3341, 0, 0, 2420, 413, 0, 0 }, + {3342,3342, 0, 0, 626, 240, 0, 0 }, + {3343,3343, 0, 0, 273, 60, 0, 0 }, + {3344,3344, 0, 0, 540, 20, 0, 0 }, + {3345,3345, 0, 0, 540, 20, 0, 0 }, + {3346,3346, 0, 0, 540, 20, 0, 0 }, + {3347,3347, 0, 0, 1153, 760, 0, 0 }, + {3348,3348, 0, 0, 40000, 100, 0, 0 }, + {3349,3349, 0, 0, 7326, 2380, 0, 0 }, + {3350,3350, 0, 0, 40000, 4426, 0, 0 }, + {3351,3351, 0, 0, 7413, 2493, 0, 0 }, + {3352,3352, 0, 0, 253, 20, 0, 0 }, + {3353,3353, 0, 0, 246, 33, 0, 0 }, + {3354,3354, 0, 0, 286, 13, 0, 0 }, + {3355,3355, 0, 0, 953, 13, 0, 0 }, + {3356,3356, 0, 0, 293, 20, 0, 0 }, + { 142, 142, 20, 0, 1893, 620, 0, 0 }, + {3357,1451, 0, 4, 2373, 780, 0, 0 }, + {3358,3359, 0, 4, 9260, 246, 0, 0 }, + {3360,1455, 0, 4, 40000, 0, 0, 0 }, + {3361,1463, 0, 4, 40000, 266, 0, 0 }, + { 225,3362, 0, 4, 7993, 100, 0, 0 }, + {3363,1545, 0, 4, 293, 86, 0, 0 }, + {3364,1547, 0, 4, 40000, 180, 0, 0 }, + {3365,3366, 39, 4, 66, 0, 0, 0 }, + {3367, 368, 58, 4, 173, 0, 0, 0 }, + {3368,1551, 48, 4, 520, 200, 0, 0 }, + {3368,3033, 49, 4, 53, 0, 0, 0 }, + {3368,3033, 51, 4, 53, 0, 0, 0 }, + {3368,3033, 54, 4, 60, 0, 0, 0 }, + {3368,3033, 57, 4, 60, 0, 0, 0 }, + {3368,3033, 60, 4, 60, 0, 0, 0 }, + {3369,3370, 70, 4, 840, 0, 0, 0 }, + {1564,1565, 80, 4, 220, 0, 0, 0 }, + {3371,1571, 44, 4, 420, 0, 0, 0 }, + {3372,3372, 0, 0, 8366, 666, 0, 0 }, + {3373,3373, 0, 0, 8366, 666, 0, 0 }, + {3374,3374, 0, 0, 3773, 73, 0, 0 }, + {3375,3375, 0, 0, 8366, 666, 0, 0 }, + {3376,3376, 0, 0, 4693, 26, 0, 0 }, + {3377,3377, 0, 0, 7400, 80, 0, 0 }, + {3378,3378, 0, 0, 3586, 80, 0, 0 }, + {3379,3379, 0, 0, 8366, 666, 0, 0 }, + {3380,3380, 0, 0, 3786, 1240, 0, 0 }, + {3381,3381, 0, 0, 9013, 1466, 0, 0 }, + {3382,3382, 0, 0, 1200, 73, 0, 0 }, + {3383,3383, 0, 0, 8146, 1446, 0, 0 }, + {3384,3384, 0, 0, 3660, 1206, 0, 0 }, + {3385,3385, 0, 0, 200, 100, 0, 0 }, + {3386,3386, 0, 0, 40000, 0, 0, 0 }, + {3387,3387, 0, 0, 1213, 426, 0, 0 }, + {3388,3388, 0, 0, 40000, 2573, 0, 0 }, + {3389,3389, 0, 0, 40000, 3446, 0, 0 }, + {3390,3390, 0, 0, 40000, 333, 0, 0 }, + {3391,3391, 0, 0, 40000, 73, 0, 0 }, + {3392,3392, 0, 0, 40000, 93, 0, 0 }, + {3393,3393, 0, 0, 40000, 73, 0, 0 }, + {3394,3394, 0, 0, 40000, 73, 0, 0 }, + {3395,3395, 0, 0, 40000, 73, 0, 0 }, + {3396,3396, 0, 0, 2193, 413, 0, 0 }, + {3397,3397, 0, 0, 14606, 2886, 0, 0 }, + {3398,3398, 0, 0, 10626, 4520, 0, 0 }, + {3399,3399, 0, 0, 2413, 100, 0, 0 }, + {3400,3400, 0, 0, 3593, 1140, 0, 0 }, + {3401,3401, 0, 0, 40000, 146, 0, 0 }, + {3402,3402, 0, 0, 40000, 86, 0, 0 }, + {3403,3403, 0, 0, 40000, 86, 0, 0 }, + {3404,3404, 0, 0, 9366, 106, 0, 0 }, + {3405,3405, 0, 0, 40000, 73, 0, 0 }, + {3406,3406, 0, 0, 40000, 0, 0, 0 }, + {3407,3407, 0, 0, 40000, 0, 0, 0 }, + {3408,3408, 0, 0, 1626, 400, 0, 0 }, + {3409,3409, 0, 0, 4473, 2933, 0, 0 }, + {3410,3410, 0, 0, 40000, 66, 0, 0 }, + {3411,3411, 0, 0, 40000, 0, 0, 0 }, + {3412,3412, 0, 0, 40000, 253, 0, 0 }, + {3413,3413, 0, 0, 40000, 233, 0, 0 }, + {3414,3414, 0, 0, 40000, 346, 0, 0 }, + {3415,3415, 0, 0, 1966, 26, 0, 0 }, + {3416,3416, 0, 0, 40000, 366, 0, 0 }, + {3417,3417, 0, 0, 2266, 386, 0, 0 }, + {3418,3418, 0, 0, 40000, 0, 0, 0 }, + {3419,3419, 0, 0, 2313, 766, 0, 0 }, + {3420,3420, 0, 0, 40000, 340, 0, 0 }, + {3421,3421, 0, 0, 40000, 346, 0, 0 }, + {3422,3422, 0, 0, 40000, 340, 0, 0 }, + {3423,3423, 0, 0, 40000, 353, 0, 0 }, + {3424,3424, 0, 0, 40000, 353, 0, 0 }, + {3425,3425, 0, 0, 40000, 226, 0, 0 }, + {3426,3426, 0, 0, 40000, 73, 0, 0 }, + {3427,3427, 0, 0, 940, 253, 0, 0 }, + {3428,3428, 0, 0, 40000, 73, 0, 0 }, + {3429,3429, 0, 0, 40000, 80, 0, 0 }, + {3430,3430, 0, 0, 40000, 240, 0, 0 }, + {3431,3431, 0, 0, 40000, 80, 0, 0 }, + {3432,3432, 0, 0, 40000, 73, 0, 0 }, + {3433,3433, 0, 0, 40000, 73, 0, 0 }, + {3434,3434, 0, 0, 40000, 73, 0, 0 }, + {3435,3435, 0, 0, 40000, 73, 0, 0 }, + {3436,3436, 0, 0, 40000, 73, 0, 0 }, + {3437,3437, 0, 0, 40000, 73, 0, 0 }, + {3438,3438, 0, 0, 40000, 73, 0, 0 }, + {3439,3439, 0, 0, 40000, 73, 0, 0 }, + {3440,3440, 0, 0, 40000, 73, 0, 0 }, + {3441,3441, 0, 0, 40000, 73, 0, 0 }, + {3442,3442, 0, 0, 40000, 66, 0, 0 }, + {3443,3443, 0, 0, 40000, 73, 0, 0 }, + {3444,3444, 0, 0, 40000, 80, 0, 0 }, + {3445,3445, 0, 0, 40000, 66, 0, 0 }, + {3446,3446, 0, 0, 40000, 66, 0, 0 }, + {3447,3447, 0, 0, 40000, 66, 0, 0 }, + {3448,3448, 0, 0, 40000, 66, 0, 0 }, + {3449,3449, 0, 0, 40000, 80, 0, 0 }, + {3450,3450, 0, 0, 40000, 353, 0, 0 }, + {3451,3451, 0, 0, 40000, 0, 0, 0 }, + {3452,3452, 0, 0, 18440, 100, 0, 0 }, + {3453,3453, 0, 0, 18086, 100, 0, 0 }, + {3454,3454, 0, 0, 266, 66, 0, 0 }, + {3455,3455, 0, 0, 40000, 80, 0, 0 }, + {3456,3456, 0, 0, 40000, 100, 0, 0 }, + {3457,3457, 0, 0, 40000, 80, 0, 0 }, + {3458,3458, 0, 0, 40000, 120, 0, 0 }, + {3459,3459, 0, 0, 40000, 93, 0, 0 }, + {3460,3460, 0, 0, 40000, 233, 0, 0 }, + {3461,3461, 0, 0, 40000, 0, 0, 0 }, + {3462,3462, 0, 0, 40000, 86, 0, 0 }, + {3463,3463, 0, 0, 40000, 820, 0, 0 }, + {3464,3464, 0, 0, 40000, 4986, 0, 0 }, + {3465,3465, 0, 0, 40000, 146, 0, 0 }, + {3466,3466, 0, 0, 40000, 100, 0, 0 }, + {3467,3467, 0, 0, 40000, 3346, 0, 0 }, + {3468,3468, 0, 0, 40000, 660, 0, 0 }, + {3469,3469, 0, 0, 40000, 366, 0, 0 }, + {3470,3470, 0, 0, 40000, 1480, 0, 0 }, + {3471,3471, 0, 0, 40000, 646, 0, 0 }, + {3472,3472, 0, 0, 40000, 2673, 0, 0 }, + {3473,3473, 0, 0, 40000, 2500, 0, 0 }, + {3474,3474, 0, 0, 40000, 2513, 0, 0 }, + {3475,3475, 0, 0, 40000, 66, 0, 0 }, + {3476,3476, 0, 0, 9600, 1580, 0, 0 }, + {3477,3477, 0, 0, 40000, 46, 0, 0 }, + {3478,3478, 0, 0, 10673, 100, 0, 0 }, + {3479,3479, 0, 0, 2333, 800, 0, 0 }, + {3480,3480, 0, 0, 3673, 1200, 0, 0 }, + {3481,3481, 0, 0, 40000, 73, 0, 0 }, + {3482,3482, 0, 0, 40000, 146, 0, 0 }, + {3483,3483, 0, 0, 40000, 73, 0, 0 }, + {3484,3484, 0, 0, 2266, 726, 0, 0 }, + {3485,3485, 0, 0, 333, 140, 0, 0 }, + {3486,3486, 0, 0, 2286, 746, 0, 0 }, + {3487,3487, 0, 0, 293, 126, 0, 0 }, + {3488,3488, 0, 0, 3700, 1213, 0, 0 }, + {3489,3489, 0, 0, 3773, 1186, 0, 0 }, + {3490,3490, 0, 0, 3646, 1200, 0, 0 }, + {3491,3491, 0, 0, 3020, 73, 0, 0 }, + {3492,3492, 0, 0, 786, 273, 0, 0 }, + {3493,3493, 0, 0, 40000, 146, 0, 0 }, + {3494,3494, 0, 0, 40000, 3093, 0, 0 }, + {3495,3495, 0, 0, 273, 60, 0, 0 }, + {3496,3496, 0, 0, 40000, 73, 0, 0 }, + {3497,3497, 0, 0, 40000, 73, 0, 0 }, + {3498,3498, 0, 0, 40000, 3093, 0, 0 }, + {3499,3499, 0, 0, 40000, 240, 0, 0 }, + {3500,3500, 0, 2, 6, 0, 0, 0 }, + { 739, 739, 46, 0, 220, 33, 0, 0 }, + {3501,3501, 47, 0, 973, 93, 0, 0 }, + {3502,3502, 64, 0, 126, 66, 0, 0 }, + {3503,3503, 40, 0, 340, 146, 0, 0 }, + {3504,3504, 48, 0, 100, 0, 0, 0 }, + {3505,3505, 48, 0, 286, 133, 0, 0 }, + {3506,3506, 46, 0, 466, 166, 0, 0 }, + {3507,3507,111, 0, 226, 113, 0, 0 }, + {3508,3508, 49, 0, 473, 166, 0, 0 }, + {3509,3509, 56, 0, 126, 40, 0, 0 }, + {3510,3510, 52, 0, 520, 206, 0, 0 }, + {3511,3511, 96, 0, 1346, 473, 0, 0 }, + {3510,3510, 54, 0, 513, 206, 0, 0 }, + {3512,3512, 57, 0, 973, 266, 0, 0 }, + {3513,3513, 82, 0, 1580, 553, 0, 0 }, + {3510,3510, 60, 0, 506, 200, 0, 0 }, + {3514,3514, 60, 0, 1886, 646, 0, 0 }, + {3515,3515, 92, 0, 1026, 520, 0, 0 }, + {3516,3516, 60, 0, 180, 93, 0, 0 }, + {3517,3517, 58, 0, 213, 213, 0, 0 }, + {3518,3518, 22, 0, 2300, 766, 0, 0 }, + {3519,3519, 60, 0, 1873, 653, 0, 0 }, + {3520,3520, 72, 0, 260, 93, 0, 0 }, + {3521,3521, 77, 0, 253, 93, 0, 0 }, + {3522,3522, 70, 0, 206, 93, 0, 0 }, + {3523,3523, 75, 0, 173, 93, 0, 0 }, + {3524,3524, 69, 0, 406, 113, 0, 0 }, + {3525,3525, 59, 0, 380, 160, 0, 0 }, + {3526,3526, 48, 0, 373, 40, 0, 0 }, + {3527,3527, 89, 0, 433, 180, 0, 0 }, + {3528,3528, 84, 0, 813, 180, 0, 0 }, + {3529,3529, 33, 0, 240, 53, 0, 0 }, + {3530,3530, 55, 0, 220, 86, 0, 0 }, + {3531,3531, 58, 0, 526, 200, 0, 0 }, + {3532,3532, 52, 0, 526, 193, 0, 0 }, + {3533,3533, 57, 0, 166, 80, 0, 0 }, + {3534,3534, 57, 0, 240, 100, 0, 0 }, + {3535,3535, 85, 0, 220, 113, 0, 0 }, + {3536,3536, 68, 0, 173, 93, 0, 0 }, + {3536,3536, 61, 0, 220, 113, 0, 0 }, + {3537,3537, 64, 0, 346, 53, 0, 0 }, + {3538,3538, 44, 0, 1080, 346, 0, 0 }, + {3539,3539,100, 0, 193, 20, 0, 0 }, + {3540,3540,100, 0, 793, 26, 0, 0 }, + {3541,3541, 0, 0, 14166, 320, 0, 0 }, + {3542,3542, 0, 0, 3873, 1613, 0, 0 }, + {3543,3543, 0, 0, 3586, 86, 0, 0 }, + {3544,3544, 0, 0, 7406, 2486, 0, 0 }, + {3545,3545, 0, 0, 4640, 1560, 0, 0 }, + {3546,3546, 0, 0, 446, 440, 0, 0 }, + {3547,3547, 0, 0, 9253, 3100, 0, 0 }, + {3548,3548, 0, 0, 4646, 646, 0, 0 }, + {3549,3549, 0, 0, 40000, 66, 0, 0 }, + {3550,3550, 0, 0, 40000, 73, 0, 0 }, + {3551,3551, 0, 0, 40000, 113, 0, 0 }, + {3552,3552, 0, 0, 40000, 73, 0, 0 }, + {3553,3553, 0, 0, 40000, 73, 0, 0 }, + {3554,3554, 0, 0, 40000, 0, 0, 0 }, + {3555,3555, 0, 0, 40000, 60, 0, 0 }, + {3556,3556, 0, 0, 3673, 1206, 0, 0 }, + {3557,3557, 0, 0, 3706, 1293, 0, 0 }, + {3558,3558, 0, 0, 5693, 1126, 0, 0 }, + {3559,3559, 0, 0, 2406, 846, 0, 0 }, + {3560,3560, 0, 0, 40000, 66, 0, 0 }, + {3561,3561, 0, 0, 40000, 73, 0, 0 }, + {3562,3562, 0, 0, 4333, 13, 0, 0 }, + {3563,3563, 0, 0, 3700, 66, 0, 0 }, + {3564,3564, 0, 0, 40000, 0, 0, 0 }, + {3565,3565, 0, 0, 3713, 1260, 0, 0 }, + {3566,3566, 0, 0, 1140, 126, 0, 0 }, + {3567,3567, 0, 0, 40000, 186, 0, 0 }, + {3568,3568, 0, 0, 40000, 0, 0, 0 }, + {3569,3569, 0, 0, 14400, 6, 0, 0 }, + {3570,3570, 0, 0, 14580, 66, 0, 0 }, + {3571,3571, 0, 0, 40000, 73, 0, 0 }, + {3572,3572, 0, 0, 40000, 353, 0, 0 }, + {3573,3573, 0, 0, 40000, 0, 0, 0 }, + {3574,3574, 0, 0, 40000, 173, 0, 0 }, + {3575,3575, 0, 0, 1833, 600, 0, 0 }, + {3576,3576, 0, 0, 40000, 0, 0, 0 }, + {3577,3577, 0, 0, 40000, 206, 0, 0 }, + {3578,3578, 0, 0, 40000, 46, 0, 0 }, + {3579,3579, 0, 0, 40000, 73, 0, 0 }, + {3580,3580, 0, 0, 9166, 2900, 0, 0 }, + {3581,3581, 0, 0, 5640, 680, 0, 0 }, + {3582,3582, 0, 0, 640, 220, 0, 0 }, + {3583,3583, 0, 0, 40000, 53, 0, 0 }, + {3584,3584, 0, 0, 40000, 26, 0, 0 }, + {3585,3585, 0, 0, 40000, 0, 0, 0 }, + {3586,3586, 0, 0, 40000, 66, 0, 0 }, + {3587,3587, 0, 0, 40000, 60, 0, 0 }, + {3588,3588, 0, 0, 40000, 0, 0, 0 }, + {3589,3589, 0, 0, 40000, 73, 0, 0 }, + {3590,3590, 0, 0, 40000, 0, 0, 0 }, + {3591,3591, 0, 0, 40000, 0, 0, 0 }, + {3592,3592, 0, 0, 3780, 73, 0, 0 }, + {3593,3593, 0, 0, 40000, 0, 0, 0 }, + {3594,3594, 0, 0, 3786, 73, 0, 0 }, + {3595,3595, 0, 0, 40000, 73, 0, 0 }, + {3596,3596, 0, 0, 40000, 66, 0, 0 }, + {3597,3597, 0, 0, 40000, 73, 0, 0 }, + {3598,3598, 0, 0, 40000, 53, 0, 0 }, + {3599,3599, 0, 0, 40000, 426, 0, 0 }, + {3600,3600, 0, 0, 40000, 133, 0, 0 }, + {3601,3601, 0, 0, 40000, 66, 0, 0 }, + {3602,3602, 0, 0, 40000, 433, 0, 0 }, + {3603,3603, 0, 0, 393, 126, 0, 0 }, + {3604,3604, 0, 0, 40000, 66, 0, 0 }, + {3605,3605, 0, 0, 40000, 353, 0, 0 }, + {3606,3606, 0, 0, 3813, 73, 0, 0 }, + {3607,3607, 0, 0, 5793, 780, 0, 0 }, + {3608,3608, 0, 0, 40000, 73, 0, 0 }, + {3609,3609, 0, 0, 40000, 86, 0, 0 }, + {3610,3610, 0, 0, 820, 206, 0, 0 }, + {3611,3611, 0, 0, 40000, 66, 0, 0 }, + {3612,3612, 0, 0, 40000, 200, 0, 0 }, + {3613,3613, 0, 0, 18186, 720, 0, 0 }, + {3614,3614, 0, 0, 40000, 0, 0, 0 }, + {3615,3615, 0, 0, 40000, 493, 0, 0 }, + {3616,3616, 0, 0, 40000, 306, 0, 0 }, + {3617,3617, 0, 0, 2166, 600, 0, 0 }, + {3618,3618, 0, 0, 40000, 73, 0, 0 }, + {3619,3619, 0, 0, 40000, 3073, 0, 0 }, + {3620,3620, 0, 0, 2333, 413, 0, 0 }, + {3621,3621, 0, 0, 14880, 73, 0, 0 }, + {3622,3622, 0, 0, 40000, 66, 0, 0 }, + {3623,3623, 0, 0, 40000, 73, 0, 0 }, + {3624,3624, 0, 0, 40000, 1873, 0, 0 }, + {3625,3625, 0, 0, 40000, 446, 0, 0 }, + {3626,3626, 0, 0, 40000, 3126, 0, 0 }, + {3627,3627, 0, 0, 18446, 6140, 0, 0 }, + {3628,3628, 0, 0, 1113, 240, 0, 0 }, + {3629,3629, 0, 0, 40000, 3600, 0, 0 }, + {3630,3630, 0, 0, 40000, 4726, 0, 0 }, + {3631,3631, 0, 0, 40000, 0, 0, 0 }, + {3632,3632, 0, 0, 2893, 606, 0, 0 }, + {3633,3633, 0, 0, 40000, 0, 0, 0 }, + {3634,3634, 0, 0, 40000, 0, 0, 0 }, + {3635,3635, 0, 0, 40000, 173, 0, 0 }, + {3636,3636, 0, 0, 40000, 60, 0, 0 }, + {3637,3637, 0, 0, 40000, 0, 0, 0 }, + {3638,3638, 0, 0, 986, 326, 0, 0 }, + {3639,3639, 0, 0, 1873, 646, 0, 0 }, + {3640,3640, 0, 0, 200, 260, 0, 0 }, + {3641,3641, 0, 0, 1180, 393, 0, 0 }, + {3642,3642, 0, 0, 266, 0, 0, 0 }, + {3643,3643, 0, 0, 313, 126, 0, 0 }, + {3644,3644, 0, 0, 406, 253, 0, 0 }, + {3645,3645, 0, 0, 1013, 813, 0, 0 }, + {3646,3646, 0, 0, 273, 53, 0, 0 }, + {3647,3647, 0, 0, 720, 213, 0, 0 }, + {3648,3648, 0, 0, 386, 120, 0, 0 }, + {3649,3649, 0, 0, 40000, 766, 0, 0 }, + {3650,3650, 0, 0, 40000, 66, 0, 0 }, + {3651,3651, 0, 0, 40000, 73, 0, 0 }, + {3652,3652, 0, 0, 1186, 426, 0, 0 }, + {3653,3653, 0, 0, 16720, 240, 0, 0 }, + {3654,3654, 0, 0, 8026, 246, 0, 0 }, + {3655,3655, 0, 0, 18186, 140, 0, 0 }, + {3656,3656, 0, 0, 14566, 200, 0, 0 }, + {3657,3657, 0, 0, 7973, 20, 0, 0 }, + {3658,3658, 0, 0, 4446, 86, 0, 0 }, + {3659,3659, 0, 0, 4473, 100, 0, 0 }, + {3660,3660, 0, 0, 8646, 153, 0, 0 }, + {3661,3661, 0, 0, 3726, 660, 0, 0 }, + {3662,3662, 0, 0, 1893, 653, 0, 0 }, + {3663,3663, 0, 0, 1933, 760, 0, 0 }, + {3664,3664, 0, 0, 9160, 240, 0, 0 }, + {3665,3665, 0, 0, 1133, 100, 0, 0 }, + {3666,3666, 0, 0, 633, 233, 0, 0 }, + {3667,3667, 0, 0, 9153, 3060, 0, 0 }, + {3668,3668, 0, 0, 2166, 406, 0, 0 }, + {3669,3669, 0, 0, 40000, 66, 0, 0 }, + {3670,3670, 0, 0, 40000, 73, 0, 0 }, + {3671,3671, 0, 0, 40000, 73, 0, 0 }, + {3672,3672, 0, 0, 40000, 73, 0, 0 }, + {3673,3673, 0, 0, 40000, 346, 0, 0 }, + {3674,3674, 0, 0, 40000, 353, 0, 0 }, + {3675,3675, 0, 0, 40000, 200, 0, 0 }, + {3676,3676, 0, 0, 40000, 320, 0, 0 }, + {3677,3677, 0, 0, 4646, 100, 0, 0 }, + {3678,3678, 0, 0, 4426, 133, 0, 0 }, + {3679,3679, 0, 0, 4633, 100, 0, 0 }, + {3680,3680, 0, 0, 2266, 133, 0, 0 }, + {3681,3681, 0, 0, 2346, 53, 0, 0 }, + {3682,3682, 0, 0, 40000, 66, 50, 0 }, + {3683,3683, 0, 0, 9686, 173, 20, 0 }, + {3684,3684, 0, 0, 14300, 66, 0, 0 }, + {3685,3685, 0, 0, 40000, 0, 0, 0 }, + {3686,3686, 0, 0, 40000, 0, 0, 0 }, + {3687,3687, 0, 0, 40000, 0, 0, 0 }, + {3688,3688, 0, 0, 8613, 73, 0, 0 }, + {3689,3689, 0, 0, 40000, 0, 0, 0 }, + {3690,3690, 0, 0, 40000, 0, 0, 0 }, + {3691,3691, 0, 0, 40000, 0, 0, 0 }, + {3692,3692, 0, 0, 40000, 0, 0, 0 }, + {3693,3693, 0, 0, 40000, 393, 0, 0 }, + {3694,3694, 0, 0, 40000, 126, 0, 0 }, + {3695,3695, 0, 0, 40000, 120, 0, 0 }, + {3696,3696, 0, 0, 40000, 0, 0, 0 }, + {3697,3697, 0, 0, 40000, 226, 0, 0 }, + {3698,3698, 0, 0, 7420, 1186, 0, 0 }, + {3699,3699, 0, 0, 3280, 1726, 0, 0 }, + {3700,3700, 0, 0, 3680, 1220, 0, 0 }, + {3701,3701, 0, 0, 40000, 480, 0, 0 }, + {3702,3702, 0, 0, 40000, 306, 0, 0 }, + {3703,3703, 0, 0, 40000, 433, 0, 0 }, + {3704,3704, 0, 0, 40000, 133, 0, 0 }, + {3705,3705, 0, 0, 40000, 0, 0, 0 }, + {3706,3706, 0, 0, 40000, 0, 0, 0 }, + {3707,3707, 0, 0, 1166, 380, 0, 0 }, + {3708,3708, 0, 0, 40000, 140, 0, 0 }, + {3709,3709, 0, 0, 40000, 126, 0, 0 }, + {3710,3710, 0, 0, 40000, 100, 0, 0 }, + {3711,3711, 0, 0, 40000, 66, 0, 0 }, + {3712,3712, 0, 0, 40000, 226, 0, 0 }, + {3713,3713, 0, 0, 40000, 133, 0, 0 }, + {3714,3714, 0, 0, 40000, 73, 0, 0 }, + {3715,3715, 0, 0, 40000, 226, 0, 0 }, + {3716,3716, 0, 0, 40000, 100, 0, 0 }, + {3717,3717, 0, 0, 40000, 80, 0, 0 }, + {3718,3718, 0, 0, 40000, 100, 0, 0 }, + {3719,3719, 0, 0, 40000, 73, 0, 0 }, + {3720,3720, 0, 0, 40000, 73, 0, 0 }, + {3721,3721, 0, 0, 40000, 73, 0, 0 }, + {3722,3722, 0, 0, 40000, 126, 0, 0 }, + {3723,3723, 0, 0, 40000, 80, 0, 0 }, + {3724,3724, 0, 0, 40000, 73, 0, 0 }, + {3725,3725, 0, 0, 40000, 86, 0, 0 }, + {3726,3726, 0, 0, 40000, 100, 0, 0 }, + {3727,3727, 0, 0, 40000, 0, 0, 0 }, + {3728,3728, 0, 0, 40000, 126, 0, 0 }, + {3729,3729, 0, 0, 40000, 133, 0, 0 }, + {3730,3730, 0, 0, 40000, 140, 0, 0 }, + {3731,3731, 0, 0, 40000, 73, 0, 0 }, + {3732,3732, 0, 0, 40000, 60, 0, 0 }, + {3733,3733, 0, 0, 40000, 93, 0, 0 }, + {3734,3734, 0, 0, 40000, 80, 0, 0 }, + {3735,3735, 0, 0, 40000, 66, 0, 0 }, + {3736,3736, 0, 0, 40000, 0, 0, 0 }, + {3737,3737, 0, 0, 40000, 220, 0, 0 }, + {3738,3738, 0, 0, 40000, 80, 0, 0 }, + {3739,3739, 0, 0, 40000, 400, 0, 0 }, + {3740,3740, 0, 0, 40000, 1373, 0, 0 }, + {3741,3741, 0, 0, 40000, 86, 0, 0 }, + {3742,3742, 0, 0, 40000, 1313, 0, 0 }, + {3743,3743, 0, 0, 40000, 0, -50, 0 }, + {3744,3744, 0, 0, 11486, 593, 0, 0 }, + {3745,3745, 0, 0, 40000, 1246, 0, 0 }, + {3746,3746, 0, 0, 40000, 140, -20, 0 }, + {3747,3747, 0, 0, 14386, 2680, 0, 0 }, + {3748,3748, 0, 0, 40000, 653, 0, 0 }, + {3749,3749, 0, 0, 2286, 713, 0, 0 }, + {3750,3750, 0, 0, 40000, 253, 0, 0 }, + {3751,3751, 0, 0, 6933, 406, 0, 0 }, + {3752,3752, 0, 0, 40000, 1313, 0, 0 }, + {3753,3753, 0, 0, 40000, 1440, 0, 0 }, + {3754,3754, 0, 0, 40000, 73, 0, 0 }, + {3755,3755, 0, 0, 11100, 420, 0, 0 }, + {3756,3756, 0, 0, 6493, 320, 0, 0 }, + {3757,3757, 0, 0, 3486, 126, 0, 0 }, + {3758,3758, 0, 0, 6620, 2133, 0, 0 }, + {3759,3759, 0, 0, 1180, 413, 0, 0 }, + {3760,3760, 0, 0, 40000, 73, 0, 0 }, + {3761,3761, 0, 0, 40000, 73, 0, 0 }, + {3762,3762, 0, 0, 40000, 66, 0, 0 }, + {3763,3763, 0, 0, 4580, 413, 0, 0 }, + {3764,3764, 0, 0, 340, 146, 0, 0 }, + {3765,3765, 0, 0, 1166, 400, 0, 0 }, + {3766,3766, 0, 0, 1346, 660, 0, 0 }, + {3767,3767, 0, 0, 1260, 393, 0, 0 }, + {3768,3768, 0, 0, 3646, 1186, 0, 0 }, + {3769,3769, 0, 0, 2713, 400, 0, 0 }, + {3770,3770, 0, 0, 1780, 73, 0, 0 }, + {3771,3771, 0, 0, 800, 213, 0, 0 }, + {3772,3772, 0, 0, 660, 173, 0, 0 }, + {3773,3773, 0, 0, 12146, 73, 0, 0 }, + {3774,3774, 0, 0, 273, 60, 0, 0 }, + {3775,3775, 0, 0, 40000, 73, 0, 0 }, + {3776,3776, 0, 0, 380, 53, 0, 0 }, + {3777,3777, 0, 0, 40000, 200, 0, 0 }, + {3778,3778, 0, 0, 586, 20, 0, 0 }, + {3779,3779, 0, 2, 6, 0, 40, 0 }, + { 738, 738, 44, 0, 840, 340, 33, 0 }, + {3780,3780, 36, 0, 7366, 140, 33, 0 }, + {3781,3781, 32, 0, 100, 0, 40, 0 }, + {2030,2030, 60, 0, 293, 126, 50, 0 }, + {3782,3782, 24, 0, 100, 0, 40, 0 }, + {3783,3783, 60, 0, 126, 73, 50, 0 }, + {3784,3784, 44, 0, 393, 93, 50, 0 }, + { 132, 132, 44, 0, 173, 100, 40, 0 }, + {3785,3785, 47, 0, 393, 93, 50, 0 }, + { 152, 152, 44, 0, 213, 86, 40, 0 }, + {3784,3784, 50, 0, 393, 93, 50, 0 }, + { 139, 139, 44, 0, 293, 100, 40, 0 }, + {3784,3784, 54, 0, 393, 93, 50, 0 }, + {3784,3784, 57, 0, 393, 93, 50, 0 }, + {3786,3786, 60, 0, 1900, 666, 40, 0 }, + {3784,3784, 60, 0, 393, 93, 50, 0 }, + {3514,3514, 60, 0, 1886, 646, 30, 0 }, + {3787,3787, 60, 0, 1900, 666, 45, 0 }, + {3788,3788, 60, 0, 1886, 666, 30, 0 }, + {3516,3516, 60, 0, 180, 93, 40, 0 }, + {3789,3789, 60, 0, 1866, 653, 40, 0 }, + {3517,3517, 58, 0, 213, 213, 40, 0 }, + {3790,3790, 60, 0, 1873, 633, 40, 0 }, + {3791,3791, 44, 0, 946, 333, 40, 0 }, + {3519,3519, 60, 0, 1873, 653, 20, 0 }, + {2037,2037, 44, 0, 213, 126, 40, 0 }, + { 144, 144, 44, 0, 213, 126, 40, 0 }, + {2038,2038, 44, 0, 106, 0, 40, 0 }, + {3792,3792, 44, 0, 380, 360, 40, 0 }, + {3793,3793, 44, 0, 520, 206, 40, 0 }, + {3794,3794, 45, 0, 273, 100, 40, 0 }, + {3795,3795, 33, 0, 326, 106, 40, 0 }, + {3796,3796, 56, 0, 506, 200, 40, 0 }, + {3796,3796, 51, 0, 506, 200, 40, 0 }, + {3530,3530, 55, 0, 220, 86, 40, 0 }, + {3797,3797, 44, 0, 126, 66, 40, 0 }, + {3798,3798, 44, 0, 553, 186, 40, 0 }, + {3533,3533, 57, 0, 166, 80, 40, 0 }, + {3534,3534, 56, 0, 240, 100, 40, 0 }, + { 158, 158, 68, 0, 126, 140, 40, 0 }, + {3799,3799, 51, 0, 513, 206, 40, 0 }, + {3800,3800, 46, 0, 506, 200, 40, 0 }, + {3537,3537, 64, 0, 346, 53, 40, 0 }, + {3538,3538, 44, 0, 1080, 346, 40, 0 }, + {3801,3801, 44, 0, 513, 206, 40, 0 }, + {3802,3802, 44, 0, 3720, 1260, 40, 0 }, + { 152, 152, 45, 0, 220, 80, 20, 0 }, + {3683,3683, 0, 0, 9686, 173, 50, 0 }, + {3803,3803, 0, 0, 40000, 86, 20, 0 }, + {3804,3804, 0, 0, 40000, 226, 0, 0 }, + {3712,3712, 0, 0, 40000, 226, 50, 0 }, + {3805,3805, 0, 0, 40000, 73, 0, 0 }, + {3806,3806, 0, 0, 40000, 73, 0, 0 }, + {3807,3807, 0, 0, 40000, 93, 0, 0 }, + {3808,3808, 0, 0, 4653, 660, -18, 0 }, + {3809,3809, 0, 0, 6686, 2246, 10, 0 }, + {3810,3810, 0, 0, 1180, 413, 0, 0 }, + {3811,3811, 0, 0, 966, 293, 30, 0 }, + {3812,3812, 0, 0, 1780, 66, 0, 0 }, + {3780,3780, 45, 0, 5900, 113, 20, 0 }, + {3061,3061, 45, 0, 40000, 0, 40, 0 }, + {3813,3813, 60, 0, 126, 226, 60, 0 }, + {3781,3781, 60, 0, 93, 0, 60, 0 }, + {3814,3814, 44, 0, 393, 86, 50, 0 }, + {3815,3815, 57, 0, 166, 80, 127, 0 }, + {3816,3816, 56, 0, 240, 100, 127, 0 }, + {3817,3817, 60, 0, 113, 0, 60, 0 }, + {3818,3818, 60, 0, 113, 0, 60, 0 }, + {3061,3061, 45, 0, 40000, 0, 20, 0 }, + {3517,3517, 45, 0, 213, 213, 20, 0 }, + {3819,3819, 0, 0, 4033, 100, 0, 0 }, + {3820,3820, 0, 0, 5200, 873, 0, 0 }, + {3821,3821, 0, 0, 40000, 0, 0, 0 }, + {3822,3822, 0, 0, 10493, 160, 0, 0 }, + {3823,3823, 0, 0, 40000, 740, 0, 0 }, + {3824,3825, 0, 1, 40000, 366, 0, 0.078125 }, + {3826,3826, 0, 0, 40000, 5100, 0, 0 }, + {3827,3827, 0, 0, 40000, 766, 0, 0 }, + {3828,1172, 0, 1, 40000, 780, 0, 0.15625 }, + {3829,3829, 0, 0, 40000, 60, 0, 0 }, + {3830,3830, 0, 0, 566, 133, 0, 0 }, + {3831,3831, 32, 0, 146, 0, 0, 0 }, + {3832,3832, 36, 0, 273, 0, 0, 0 }, + {3833,3833, 88, 0, 340, 120, 0, 0 }, + {3834,3834, 0, 0, 9006, 240, 0, 0 }, + {3835,3835, 0, 0, 9206, 246, 0, 0 }, + {3836,3836, 0, 0, 9246, 386, 0, 0 }, + {3837,3837, 0, 0, 9440, 220, 0, 0 }, + {3838,3838, 0, 0, 8900, 133, 0, 0 }, + {3839,3839, 0, 0, 9400, 253, 0, 0 }, + {3840,3840, 0, 0, 4613, 420, 0, 0 }, + {3841,3841, 0, 0, 9233, 426, 0, 0 }, + {3842,3842, 0, 0, 40000, 526, 0, 0 }, + {3843,3843, 0, 0, 40000, 640, 0, 0 }, + {3844,3844, 0, 0, 40000, 666, 0, 0 }, + {3845,3845, 0, 0, 40000, 1053, 0, 0 }, + {3846,3846, 0, 0, 40000, 173, 0, 0 }, + {3847,3847, 0, 0, 40000, 246, 0, 0 }, + {3848,3848, 0, 0, 40000, 226, 0, 0 }, + {3849,3849, 0, 0, 4073, 233, 0, 0 }, + {3850,3850, 0, 0, 14286, 326, 0, 0 }, + {3851,3851, 0, 0, 9233, 146, 0, 0 }, + {3852,3852, 0, 0, 4480, 133, 0, 0 }, + {3853,3853, 0, 0, 40000, 53, 0, 0 }, + {3854,3854, 0, 0, 40000, 126, 0, 0 }, + {3855,3855, 0, 0, 40000, 126, 0, 0 }, + {3856,3856, 0, 0, 18226, 146, 0, 0 }, + {3857,3857, 0, 0, 40000, 326, 0, 0 }, + {3858,3858, 0, 0, 40000, 0, 0, 0 }, + {3859,3859, 0, 0, 40000, 300, 0, 0 }, + {3860,3860, 0, 0, 40000, 0, 0, 0 }, + {3861,3861, 0, 0, 40000, 0, 0, 0 }, + {3862,3862, 0, 0, 40000, 0, 0, 0 }, + {3863,3863, 0, 0, 40000, 140, 0, 0 }, + {3864,3864, 0, 0, 40000, 153, 0, 0 }, + {3865,3865, 0, 0, 40000, 233, 0, 0 }, + {3866,3866, 0, 0, 40000, 186, 0, 0 }, + {3867,3867, 0, 0, 40000, 413, 0, 0 }, + {3868,3868, 0, 0, 40000, 373, 0, 0 }, + {3869,3869, 0, 0, 1246, 440, 0, 0 }, + {3870,3870, 0, 0, 4620, 1513, 0, 0 }, + {3871,3871, 0, 0, 40000, 433, 0, 0 }, + {3872,3872, 0, 0, 40000, 453, 0, 0 }, + {3873,3873, 0, 0, 40000, 1440, 0, 0 }, + {3874,3874, 0, 0, 40000, 480, 0, 0 }, + {3875,3875, 0, 0, 40000, 1360, 0, 0 }, + {3876,3876, 0, 0, 40000, 0, 0, 0 }, + {3877,3877, 0, 0, 40000, 353, 0, 0 }, + {3878,3878, 0, 0, 40000, 86, 0, 0 }, + {3879,3879, 0, 0, 40000, 126, 0, 0 }, + {3880,3880, 0, 0, 40000, 73, 0, 0 }, + {3881,3881, 0, 0, 40000, 80, 0, 0 }, + {3882,3882, 0, 0, 40000, 246, 0, 0 }, + {3883,3883, 0, 0, 40000, 93, 0, 0 }, + {3884,3884, 0, 0, 40000, 120, 0, 0 }, + {3885,3885, 0, 0, 40000, 180, 0, 0 }, + {3886,3886, 0, 0, 40000, 133, 0, 0 }, + {3887,3887, 0, 0, 40000, 133, 0, 0 }, + {3888,3888, 0, 0, 40000, 153, 0, 0 }, + {3889,3889, 0, 0, 40000, 93, 0, 0 }, + {3890,3890, 0, 0, 40000, 140, 0, 0 }, + {3891,3891, 0, 0, 40000, 100, 0, 0 }, + {3892,3892, 0, 0, 40000, 146, 0, 0 }, + {3893,3893, 0, 0, 40000, 126, 0, 0 }, + {3894,3894, 0, 0, 40000, 160, 0, 0 }, + {3895,3895, 0, 0, 40000, 226, 0, 0 }, + {3896,3896, 0, 0, 40000, 140, 0, 0 }, + {3897,3897, 0, 0, 40000, 200, 0, 0 }, + {3898,3898, 0, 0, 40000, 66, 0, 0 }, + {3899,3899, 0, 0, 40000, 446, 0, 0 }, + {3900,3900, 0, 0, 40000, 140, 0, 0 }, + {3901,3901, 0, 0, 40000, 400, 0, 0 }, + {3902,3902, 0, 0, 40000, 373, 0, 0 }, + {3903,3903, 0, 0, 40000, 1306, 0, 0 }, + {3904,3904, 0, 0, 40000, 186, 0, 0 }, + {3905,3905, 0, 0, 40000, 640, 0, 0 }, + {3906,3906, 0, 0, 40000, 346, 0, 0 }, + {3907,3907, 0, 0, 40000, 140, 0, 0 }, + {3908,3908, 0, 0, 40000, 253, 0, 0 }, + {3909,3909, 0, 0, 8980, 746, 0, 0 }, + {3910,3910, 0, 0, 40000, 1266, 0, 0 }, + {3911,3911, 0, 0, 40000, 1306, 0, 0 }, + {3912,3912, 0, 0, 7226, 593, 0, 0 }, + {3913,3913, 0, 0, 40000, 140, 0, 0 }, + {3914,3914, 0, 0, 40000, 220, 0, 0 }, + {3915,3915, 0, 0, 40000, 146, 0, 0 }, + {3916,3916, 0, 0, 4606, 1506, 0, 0 }, + {3917,3917, 0, 0, 40000, 80, 0, 0 }, + {3918,3918, 0, 0, 40000, 0, 0, 0 }, + {3919,3919, 0, 0, 40000, 0, 0, 0 }, + {3920,3920, 0, 0, 613, 226, 0, 0 }, + {3921,3921, 0, 0, 9073, 2946, 0, 0 }, + {3922,3922, 0, 0, 40000, 73, 0, 0 }, + {3923,3923, 0, 0, 3726, 200, 0, 0 }, + {3924,3924, 0, 0, 3680, 373, 0, 0 }, + {3925,3925, 0, 0, 7113, 186, 0, 0 }, + {3926,3926, 0, 0, 2406, 106, 0, 0 }, + {3927,3927, 0, 0, 40000, 0, 0, 0 }, + {3928,3928, 0, 0, 40000, 253, 0, 0 }, + {3929,3929, 0, 0, 40000, 0, 0, 0 }, + {3930,3930, 0, 0, 40000, 80, 0, 0 }, + {3931,3931, 0, 0, 40000, 86, 0, 0 }, + {3932,3932, 0, 0, 18186, 740, 0, 0 }, + {3933,3933, 0, 0, 18426, 813, 0, 0 }, + { 523, 523, 0, 0, 200, 260, 0, 0 }, + {3934,3934, 0, 0, 340, 146, 0, 0 }, + {3935,3935, 0, 0, 366, 260, 0, 0 }, + {3936,3936, 48, 0, 126, 0, 0, 0 }, + {3937,3937, 27, 0, 200, 106, 0, 0 }, + {3938,3938, 40, 0, 1073, 800, 0, 0 }, + {3939,3939, 48, 0, 100, 0, 0, 0 }, + {3938,3938, 45, 0, 933, 666, 0, 0 }, + {3940,3940, 48, 0, 140, 333, 0, 0 }, + {3938,3938, 47, 0, 933, 666, 0, 0 }, + {3941,3941, 48, 0, 1840, 0, 0, 0 }, + {3938,3938, 49, 0, 953, 686, 0, 0 }, + {3938,3938, 53, 0, 906, 686, 0, 0 }, + {3938,3938, 56, 0, 913, 693, 0, 0 }, + { 129, 129, 52, 0, 293, 126, 0, 0 }, + { 130, 130, 48, 0, 173, 93, 0, 0 }, + { 129, 129, 58, 0, 286, 126, 0, 0 }, + { 132, 132, 47, 0, 173, 100, 0, 0 }, + { 492, 492, 43, 0, 820, 306, 0, 0 }, + { 132, 132, 49, 0, 173, 93, 0, 0 }, + { 132, 132, 51, 0, 173, 93, 0, 0 }, + { 132, 132, 54, 0, 173, 93, 0, 0 }, + { 132, 132, 57, 0, 146, 86, 0, 0 }, + { 492, 492, 72, 0, 706, 300, 0, 0 }, + { 137, 137, 76, 0, 1900, 666, 0, 0 }, + { 138, 138, 84, 0, 740, 300, 0, 0 }, + { 139, 139, 36, 0, 353, 146, 0, 0 }, + { 140, 140, 76, 0, 1886, 680, 0, 0 }, + { 141, 141, 84, 0, 220, 113, 0, 0 }, + { 135, 135, 83, 0, 1353, 480, 0, 0 }, + { 142, 142, 84, 0, 386, 160, 0, 0 }, + {3942,3942, 24, 0, 2313, 780, 0, 0 }, + { 137, 137, 77, 0, 1893, 660, 0, 0 }, + { 144, 144, 60, 0, 213, 0, 0, 0 }, + { 145, 145, 65, 0, 180, 146, 0, 0 }, + { 146, 146, 59, 0, 173, 93, 0, 0 }, + { 147, 147, 51, 0, 266, 213, 0, 0 }, + { 148, 148, 45, 0, 513, 200, 0, 0 }, + { 149, 149, 71, 0, 246, 26, 0, 0 }, + { 150, 150, 60, 0, 500, 193, 0, 0 }, + { 151, 151, 58, 0, 513, 200, 0, 0 }, + { 152, 152, 53, 0, 220, 86, 0, 0 }, + { 153, 153, 64, 0, 113, 40, 0, 0 }, + { 154, 154, 71, 0, 840, 300, 0, 0 }, + { 156, 156, 61, 0, 166, 80, 0, 0 }, + { 158, 158, 48, 0, 173, 213, 0, 0 }, + { 159, 159, 69, 0, 126, 140, 0, 0 }, + { 160, 160, 68, 0, 126, 140, 0, 0 }, + { 161, 161, 63, 0, 326, 113, 0, 0 }, + { 162, 162, 74, 0, 860, 286, 0, 0 }, + { 163, 163, 60, 0, 386, 160, 0, 0 }, + { 164, 164, 80, 0, 1106, 273, 0, 0 }, + { 165, 165, 64, 0, 126, 66, 0, 0 }, + { 166, 166, 69, 0, 386, 80, 0, 0 }, + { 167, 167, 73, 0, 546, 306, 0, 0 }, + { 168, 168, 75, 0, 126, 140, 0, 0 }, + { 169, 169, 68, 0, 340, 320, 0, 0 }, + { 131, 131, 48, 0, 520, 200, 0, 0 }, + {3061,3061, 53, 0, 40000, 0, 0, 0 }, + {3943,3944, 0, 4, 2153, 0, 0, 0 }, + {3945,3946, 0, 4, 9060, 393, 0, 0 }, + { 174,3947, 0, 4, 6953, 0, 0, 0 }, + {3948,3949, 0, 4, 9386, 140, 0, 0 }, + { 9,3950, 0, 4, 1626, 426, 0, 0 }, + {3951,3952, 0, 4, 18466, 240, 0, 0 }, + {3953,3954, 0, 4, 4666, 1486, 0, 0 }, + { 15,3955, 0, 4, 5700, 1986, 0, 0 }, + {3956,3957, 0, 4, 40000, 100, 0, 0 }, + {3958,3959, 0, 4, 40000, 73, 0, 0 }, + {3960,3961, 0, 4, 40000, 73, 0, 0 }, + {3962,3963, 0, 4, 40000, 73, 0, 0 }, + {3964,3965, 0, 4, 18280, 153, 0, 0 }, + {3966,3965, 0, 4, 18686, 160, 0, 0 }, + { 31,3967, 0, 4, 40000, 0, 0, 0 }, + {3968,3969, 0, 4, 17966, 100, 0, 0 }, + {3970,3971, 0, 4, 40000, 66, 0, 0 }, + {3972,3971, 0, 4, 40000, 66, 0, 0 }, + {3973,3974, 0, 4, 40000, 46, 0, 0 }, + {3975,3976, 0, 4, 18693, 106, 0, 0 }, + {3977,3976, 0, 4, 18593, 106, 0, 0 }, + {3978,3979, 0, 4, 9366, 106, 0, 0 }, + {3980,3981, 0, 4, 9120, 226, 0, 0 }, + {3982,3983, 0, 4, 40000, 140, 0, 0 }, + {3984,3985, 0, 4, 40000, 800, 0, 0 }, + { 54,3986, 0, 4, 2520, 706, 0, 0 }, + {3987,3988, 0, 4, 40000, 86, 0, 0 }, + {3989,3990, 0, 4, 40000, 233, 0, 0 }, + {3991, 253, 0, 4, 40000, 66, 0, 0 }, + {3992,3992, 0, 0, 40000, 0, 0, 0 }, + {3993,3993, 0, 0, 40000, 120, 0, 0 }, + {3994,3995, 0, 4, 40000, 80, 0, 0 }, + {3996,3997, 0, 4, 40000, 73, 0, 0 }, + {3998,3999, 0, 4, 40000, 86, 0, 0 }, + {1503,4000, 0, 4, 40000, 93, 0, 0 }, + { 88,4001, 0, 4, 40000, 1220, 0, 0 }, + {3743,4002, 0, 4, 7706, 1260, 0, 0 }, + { 92,4003, 0, 4, 40000, 186, 0, 0 }, + { 93,4004, 0, 4, 40000, 813, 0, 0 }, + { 94,4005, 0, 4, 7720, 1260, 0, 0 }, + { 96,4006, 0, 4, 40000, 2460, 0, 0 }, + { 103,4007, 0, 4, 3720, 1240, 0, 0 }, + { 104,4008, 0, 4, 3020, 1226, 0, 0 }, + { 105,4009, 0, 4, 6086, 2453, 0, 0 }, + { 107,4010, 0, 4, 2100, 760, 0, 0 }, + { 108,4011, 0, 4, 40000, 73, 0, 0 }, + { 110,4012, 0, 4, 40000, 100, 0, 0 }, + { 111,4013, 0, 4, 2366, 820, 0, 0 }, + {4014,4015, 0, 4, 1026, 326, 0, 0 }, + { 115,4016, 0, 4, 1853, 0, 0, 0 }, + { 118,4017, 0, 4, 1553, 53, 0, 0 }, + { 119,4018, 0, 4, 593, 0, 0, 0 }, + { 120,4019, 0, 4, 2293, 1173, 0, 0 }, + { 121,4020, 0, 4, 10673, 3000, 0, 0 }, + { 123,4021, 0, 4, 7413, 2486, 0, 0 }, + { 124,4022, 0, 4, 40000, 1126, 0, 0 }, + { 125,4023, 0, 4, 40000, 1546, 0, 0 }, + {4024,4024, 35, 0, 706, 266, 0, 0 }, + {4025,4026, 38, 1, 273, 106, 0, 0 }, + {4027,4028, 38, 1, 366, 133, 0, 0 }, + {4029,4030, 48, 1, 280, 133, 0, -1.90625 }, + {4031,4031, 51, 0, 113, 80, 0, 0 }, + {4032,4033, 48, 1, 953, 346, 0, -1.90625 }, + {4034,4034, 61, 1, 3200, 540, 0, 0.09375 }, + {3369,1557, 70, 4, 833, 0, 0, 0 }, + {4035,4036, 79, 1, 1306, 513, 0, 0.078125 }, + {4037,4037, 62, 0, 5200, 466, 0, 0 }, + {4038,4039, 67, 1, 2153, 1080, 0, 0.078125 }, + {4040,4040, 62, 1, 3226, 573, 0, 0.09375 }, + {4041,4042, 54, 1, 286, 133, 0, 0 }, + {4041,4043, 48, 1, 286, 126, 0, 0 }, + { 389, 389, 42, 0, 266, 73, 0, 0 }, + {4044,4045, 48, 1, 280, 126, 0, 0 }, + {4046,4047, 48, 1, 380, 60, 0, 0 }, + {4048,4048, 16, 0, 180, 20, 0, 0 }, + {4049,4049, 16, 0, 740, 20, 0, 0 }, + {4050,4051, 64, 4, 1366, 0, 0, 0 }, + { 844, 844,244, 2, 6, 0, 0, 0 }, + { 855, 855,244, 2, 6, 0, 0, 0 }, + { 880, 880,232, 0, 253, 80, 0, 0 }, + { 882, 882,220, 0, 40000, 266, 0, 0 }, + { 887, 887, 35, 0, 133, 46, 0, 0 }, + { 884, 884, 35, 0, 233, 80, 0, 0 }, + { 885, 885, 35, 0, 226, 86, 0, 0 }, + { 886, 886, 35, 0, 113, 0, 0, 0 }, + { 361, 361, 35, 0, 286, 73, 0, 0 }, + { 767, 767, 35, 0, 3020, 786, 0, 0 }, + { 888, 888, 35, 0, 246, 53, 0, 0 }, + {2141,2141, 35, 0, 186, 73, 0, 0 }, + { 891, 891, 35, 0, 713, 266, 0, 0 }, + {2142,2142, 35, 0, 200, 100, 0, 0 }, + {2143,2143, 35, 0, 220, 80, 0, 0 }, + {2144,2144, 35, 0, 2393, 100, 0, 0 }, + {2145,2145, 35, 0, 1980, 813, 0, 0 }, + { 376, 376, 35, 0, 1880, 840, 0, 0 }, + { 895, 895, 35, 0, 366, 140, 0, 0 }, + {2146,2146, 35, 0, 346, 106, 0, 0 }, + { 382, 382, 35, 0, 1073, 113, 0, 0 }, + {2147,2147, 35, 0, 106, 80, 0, 0 }, + { 898, 898, 35, 0, 206, 153, 0, 0 }, + { 899, 899, 35, 0, 633, 240, 0, 0 }, + { 900, 900, 35, 0, 620, 240, 0, 0 }, + { 871, 871, 35, 0, 380, 73, 0, 0 }, + { 388, 388, 35, 0, 286, 80, 0, 0 }, + { 901, 901, 35, 0, 260, 26, 0, 0 }, + { 902, 902, 35, 0, 1093, 73, 0, 0 }, + { 903, 903, 35, 0, 126, 73, 0, 0 }, + {3500,3500, 35, 2, 6, 0, 0, 0 }, + {4052,4052, 0, 0, 14166, 320, 0, 0 }, + {4053,4053, 0, 0, 7413, 653, 0, 0 }, + {4054,4054, 0, 0, 40000, 146, 0, 0 }, + {4055,4055, 0, 0, 40000, 113, 0, 0 }, + {4056,4056, 0, 0, 16773, 193, 0, 0 }, + {4057,4057, 0, 0, 40000, 73, 0, 0 }, + {4058,4058, 0, 0, 40000, 0, 0, 0 }, + {4059,4059, 0, 0, 966, 373, 0, 0 }, + {4060,4060, 0, 0, 40000, 80, 0, 0 }, + {4061,4061, 0, 0, 40000, 80, 0, 0 }, + {4062,4062, 0, 0, 18473, 93, 0, 0 }, + {4063,4063, 0, 0, 40000, 60, 0, 0 }, + {4064,4064, 0, 0, 40000, 73, 0, 0 }, + {4065,4065, 0, 0, 40000, 0, 0, 0 }, + {4066,4066, 0, 0, 40000, 213, 0, 0 }, + {4067,4067, 0, 0, 40000, 66, 0, 0 }, + {4068,4068, 0, 0, 1413, 1026, 0, 0 }, + {4069,4069, 0, 0, 506, 200, 0, 0 }, + {4070,4070, 0, 0, 3793, 1106, 0, 0 }, + {4071,4071, 0, 0, 40000, 220, 0, 0 }, + {4072,4072, 0, 0, 40000, 46, 0, 0 }, + {4073,4073, 0, 0, 40000, 0, 0, 0 }, + {4074,4074, 0, 0, 40000, 60, 0, 0 }, + {4075,4075, 0, 0, 40000, 0, 0, 0 }, + {4076,4076, 0, 0, 40000, 33, 0, 0 }, + {4077,4077, 0, 0, 40000, 0, 0, 0 }, + {4078,4078, 0, 0, 40000, 146, 0, 0 }, + {4079,4079, 0, 0, 40000, 66, 0, 0 }, + {4080,4080, 0, 0, 40000, 353, 0, 0 }, + {4081,4081, 0, 0, 40000, 66, 0, 0 }, + {4082,4082, 0, 0, 40000, 53, 0, 0 }, + {4083,4083, 0, 0, 40000, 73, 0, 0 }, + {4084,4084, 0, 0, 40000, 66, 0, 0 }, + {4085,4085, 0, 0, 40000, 926, 0, 0 }, + {4086,4086, 0, 0, 2833, 200, 0, 0 }, + { 127, 127, 36, 0, 386, 166, 0, 0 }, + {4087,4087, 36, 0, 100, 0, 0, 0 }, + {2030,2030, 36, 0, 346, 140, 0, 0 }, + {3782,3782, 48, 0, 93, 0, 0, 0 }, + {3783,3783, 36, 0, 146, 0, 0, 0 }, + {4088,4088, 48, 0, 1886, 653, 0, 0 }, + { 132, 132, 69, 0, 126, 66, 0, 0 }, + {4088,4088, 52, 0, 1853, 626, 0, 0 }, + { 152, 152, 48, 0, 220, 86, 0, 0 }, + {4088,4088, 55, 0, 1886, 640, 0, 0 }, + { 139, 139, 57, 0, 293, 133, 0, 0 }, + {4088,4088, 58, 0, 1860, 633, 0, 0 }, + {4088,4088, 60, 0, 1886, 633, 0, 0 }, + {4089,4089, 62, 0, 2660, 900, 0, 0 }, + {4088,4088, 63, 0, 1880, 646, 0, 0 }, + { 134, 134, 70, 0, 966, 360, 0, 0 }, + {4090,4090, 70, 0, 973, 346, 0, 0 }, + {4091,4091, 53, 0, 1866, 640, 0, 0 }, + {3516,3516, 48, 0, 180, 93, 0, 0 }, + {4092,4092, 84, 0, 1360, 473, 0, 0 }, + {4093,4093, 43, 0, 513, 206, 0, 0 }, + {4094,4094, 56, 0, 1353, 480, 0, 0 }, + {3791,3791, 24, 0, 1866, 613, 0, 0 }, + { 134, 134, 65, 0, 1346, 486, 0, 0 }, + { 146, 146, 48, 0, 173, 93, 0, 0 }, + { 146, 146, 54, 0, 173, 93, 0, 0 }, + {4095,4095, 42, 0, 246, 140, 0, 0 }, + {4095,4095, 39, 0, 240, 133, 0, 0 }, + {3816,3816, 52, 0, 306, 113, 0, 0 }, + {4096,4096, 52, 0, 413, 86, 0, 0 }, + { 158, 158, 60, 0, 146, 166, 0, 0 }, + { 158, 158, 66, 0, 146, 166, 0, 0 }, + { 158, 158, 59, 0, 146, 166, 0, 0 }, + {3538,3538, 91, 0, 773, 233, 0, 0 }, + {3547,3547,109, 0, 5300, 1786, 0, 0 }, + {4097,4097, 79, 0, 560, 313, 0, 0 }, + {4098,4098, 0, 0, 10646, 73, 0, 0 }, + {4099,4100, 0, 1, 14166, 586, 0, 0.03125 }, + {4101,4102, 0, 1, 15553, 546, 0, 0.03125 }, + {4103,4104, 0, 1, 11746, 320, 0, 0.046875 }, + {4105,4106, 0, 1, 14706, 646, 0, 0.15625 }, + {4107,4108, 0, 1, 7320, 100, 0, 0.046875 }, + {4109,4110, 0, 1, 40000, 0, 0, 0.0625 }, + {4111,4112, 0, 1, 13660, 260, 0, 0 }, + {4113,4114, 0, 1, 15026, 133, 0, 0 }, + {4115,4116, 0, 1, 40000, 0, 0, 2.5e-05 }, + {4117,4118, 0, 1, 4980, 3400, 0, 0 }, + {4119,4120, 0, 1, 7840, 2660, 0, 0.046875 }, + {4121,4122, 0, 1, 8326, 180, 0, 0 }, + {4123,4124, 0, 1, 1093, 140, 0, 0 }, + {4125,4126, 0, 1, 2280, 400, 0, 0 }, + {4127,4128, 0, 1, 4553, 1486, 0, 0.03125 }, + {4129,4129, 0, 1, 40000, 0, 0, 0.03125 }, + {4130,4131, 0, 1, 40000, 60, 0, 0.15625 }, + {4132,4133, 0, 1, 40000, 93, 0, 0.078125 }, + {4134,4135, 0, 1, 40000, 86, 0, 0.15625 }, + {4136,4137, 0, 1, 40000, 520, 0, 0.03125 }, + {4138,4139, 0, 1, 40000, 140, 0, 0.0625 }, + {4140,4141, 0, 1, 40000, 133, 0, 0.140625 }, + {4142,4143, 0, 1, 40000, 73, 0, 0 }, + {4144,4145, 0, 1, 40000, 346, 0, 0.109375 }, + {4146,4147, 0, 1, 3693, 86, 0, 0 }, + {4148,4149, 0, 1, 6586, 460, 0, 2.5e-05 }, + {4150,4151, 0, 1, 4320, 93, 0, 0 }, + {4152,4153, 0, 1, 7346, 126, 0, 0.046875 }, + {4154,4155, 0, 1, 3633, 260, 0, 0 }, + {4156,4157, 0, 1, 40000, 126, 0, -1.95312 }, + {4158,4159, 0, 1, 40000, 126, 0, -1.9375 }, + {4160,4161, 0, 1, 40000, 46, 0, 0.234375 }, + {4162,4163, 0, 1, 40000, 0, 0, 0.03125 }, + {4164,4165, 0, 1, 10320, 86, 0, 0 }, + {4166,4167, 0, 1, 12933, 133, 0, 0 }, + {4168,4169, 0, 1, 11820, 240, 0, 0.046875 }, + {4170,4171, 0, 1, 3966, 166, 0, 0 }, + {4172,4173, 0, 1, 40000, 0, 0, 0 }, + {4174,4174, 0, 0, 2666, 160, 0, 0 }, + {4175,4176, 0, 1, 15046, 93, 0, 0.078125 }, + {4177,4178, 0, 1, 40000, 100, 0, 0 }, + {4179,4179, 0, 0, 40000, 260, 0, 0 }, + {4180,4181, 0, 1, 40000, 126, 0, 2.5e-05 }, + {4182,4182, 0, 0, 40000, 233, 0, 0 }, + {4183,4184, 0, 1, 40000, 440, 0, 0.078125 }, + {4185,4186, 0, 1, 2160, 606, 0, 0.109375 }, + {4187,4188, 0, 1, 14753, 2400, 0, 0.03125 }, + {4189,4190, 0, 1, 7680, 646, 0, 0.03125 }, + {4191,4192, 0, 1, 40000, 446, 0, 0.0625 }, + {4193,4194, 0, 1, 40000, 866, 0, -0.0625 }, + {4195,4195, 0, 1, 40000, 1220, 0, 0.078125 }, + {4196,4196, 0, 1, 40000, 1960, 0, 0.0625 }, + {4197,4198, 0, 1, 40000, 433, 0, 0.125 }, + {4199,4200, 0, 1, 40000, 140, 0, 0.140625 }, + {4201,4202, 0, 1, 40000, 806, 0, 0.109375 }, + {4203,4204, 0, 1, 2040, 486, 0, 0.125 }, + {4205,4206, 0, 1, 40000, 86, 0, 0 }, + {4207,4208, 0, 1, 40000, 80, 0, 0.03125 }, + {4209,4209, 0, 0, 40000, 73, 0, 0 }, + {4210,4210, 0, 0, 40000, 126, 0, 0 }, + {4211,4212, 0, 1, 40000, 400, 0, 0.0625 }, + {4213,4214, 0, 1, 40000, 120, 0, 0.0625 }, + {4215,4216, 0, 1, 40000, 0, 0, 0.09375 }, + {4217,4217, 0, 1, 40000, 0, 0, 0.125 }, + {4218,4219, 0, 1, 40000, 186, 0, 0 }, + {4220,4220, 0, 0, 40000, 166, 0, 0 }, + {4221,4221, 0, 0, 40000, 73, 0, 0 }, + {4222,4222, 0, 0, 40000, 60, 0, 0 }, + {4223,4224, 0, 1, 40000, 140, 0, 0 }, + {4225,4225, 0, 0, 40000, 140, 0, 0 }, + {4226,4226, 0, 0, 40000, 66, 0, 0 }, + {4227,4228, 0, 1, 40000, 133, 0, 0 }, + {4229,4229, 0, 0, 40000, 86, 0, 0 }, + {4230,4230, 0, 0, 40000, 73, 0, 0 }, + {4231,4231, 0, 0, 40000, 106, 0, 0 }, + {4232,4233, 0, 1, 40000, 186, 0, 0.03125 }, + {4234,4235, 0, 1, 40000, 86, 0, 0.046875 }, + {4236,4237, 0, 1, 40000, 0, 0, 0.03125 }, + {4238,4238, 0, 0, 40000, 300, 0, 0 }, + {4239,4239, 0, 0, 40000, 66, 0, 0 }, + {4240,4241, 0, 1, 40000, 73, 0, 0.125 }, + {4242,4243, 0, 1, 40000, 86, 0, 0.109375 }, + {4244,4245, 0, 1, 40000, 146, 0, 0.109375 }, + {4246,4247, 0, 1, 40000, 66, 0, -0.03125 }, + {4248,4248, 0, 0, 40000, 60, 0, 0 }, + {4249,4250, 0, 1, 40000, 213, 0, 0.15625 }, + {4251,4252, 0, 1, 40000, 66, 0, 0.125 }, + {4253,4254, 0, 1, 40000, 100, 0, 0.03125 }, + {4255,4256, 0, 1, 40000, 1513, 0, 0.078125 }, + {4257,4258, 0, 1, 40000, 353, 0, 0.109375 }, + {4259,4260, 0, 1, 40000, 133, 0, 0.078125 }, + {4261,4262, 0, 1, 40000, 746, 0, 0.140625 }, + {4263,4264, 0, 1, 40000, 0, 0, 0.109375 }, + {4265,4266, 0, 1, 5033, 1606, 0, 0.0625 }, + {4267,4268, 0, 1, 40000, 1146, 0, 0.09375 }, + {4269,4270, 0, 1, 40000, 1586, 0, 0.109375 }, + {4271,4272, 0, 1, 40000, 0, 0, 0.09375 }, + {4273,4274, 0, 1, 40000, 1006, 0, 0.125 }, + {4275,4275, 0, 1, 2680, 793, 0, 0.109375 }, + {4276,4277, 0, 1, 40000, 0, 0, -0.046875 }, + {4278,4279, 0, 1, 9000, 3186, 0, 0.125 }, + {4280,4281, 0, 1, 40000, 1073, 0, -0.078125 }, + {4282,4283, 0, 1, 40000, 2093, 0, 0.140625 }, + {4284,4285, 0, 1, 40000, 0, 0, 0.078125 }, + {4286,4287, 0, 1, 9580, 713, 0, 0.03125 }, + {4288,4289, 0, 1, 6286, 380, 0, 0 }, + {4290,4291, 0, 1, 2220, 426, 0, 0.03125 }, + {4292,4292, 0, 0, 1166, 760, 0, 0 }, + {4293,4294, 0, 1, 1186, 240, 0, 0 }, + {4295,4296, 0, 1, 40000, 100, 0, 0.0625 }, + {4297,4297, 0, 0, 40000, 160, 0, 0 }, + {4298,4298, 0, 0, 40000, 120, 0, 0 }, + {4299,4299, 0, 0, 8673, 2413, 0, 0 }, + {4300,4300, 0, 0, 393, 126, 0, 0 }, + {4301,4302, 0, 1, 1220, 393, 0, 0.03125 }, + {4303,4303, 0, 0, 246, 93, 0, 0 }, + {4304,4305, 0, 1, 1953, 393, 0, 0 }, + {4306,4307, 0, 1, 566, 146, 0, 0 }, + {4308,4309, 0, 1, 4220, 133, 0, 0 }, + {4310,4311, 0, 1, 2873, 73, 0, 0.109375 }, + {4312,4312, 0, 0, 613, 60, 0, 0 }, + {4313,4314, 0, 1, 40000, 186, 0, 0 }, + {4315,4316, 0, 1, 11880, 2993, 0, 0 }, + {4317,4317, 0, 0, 1573, 86, 0, 0 }, + {4318,4319, 0, 1, 40000, 793, 0, 0 }, + {4320,4321, 0, 1, 40000, 173, 0, 0 }, + {4322,4323, 0, 1, 40000, 793, 0, 0 }, + {4324,4324, 0, 0, 606, 133, 0, 0 }, + {4325,4325, 34, 0, 133, 40, 0, 0 }, + {4326,4326, 28, 0, 193, 46, 0, 0 }, + {4327,4328, 39, 1, 553, 126, 0, 0 }, + {4327,4328, 33, 1, 553, 126, 0, 0 }, + {4329,4330, 63, 1, 160, 80, 0, 0 }, + {4331,4331, 15, 0, 113, 0, 0, 0 }, + {4332,4332, 36, 0, 106, 0, 0, 0 }, + {4332,4333, 36, 1, 480, 173, 0, 0.40625 }, + {4334,4335, 25, 1, 313, 153, 0, 0 }, + {4336,4335, 25, 1, 206, 100, 0, 0 }, + {4337,4338, 61, 1, 153, 93, 0, 0 }, + {4339,4340, 38, 1, 340, 133, 0, 0 }, + {4341,4342, 37, 1, 206, 93, 0, 0 }, + {4343,4344, 15, 1, 346, 153, 10, 0 }, + {4345,4346,100, 1, 146, 0, 0, 0.140625 }, + {4347,4348, 19, 1, 553, 200, 10, 0 }, + {4349,4349, 48, 0, 180, 86, 0, 0 }, + {4350,4351, 15, 1, 333, 153, 20, 0 }, + {4352,4353, 12, 1, 340, 146, 20, 0 }, + {4354,4355, 11, 1, 346, 146, 20, 0 }, + {4356,4357, 61, 1, 2706, 1033, 0, 0.09375 }, + {4358,4355, 8, 1, 340, 146, 20, 0 }, + {4359,4360, 91, 1, 1166, 366, 0, -0.046875 }, + {4361,4361, 70, 0, 966, 346, 0, 0 }, + {4362,4363, 80, 1, 300, 93, 0, 0.125 }, + {4364,4364, 58, 0, 206, 53, 0, 0 }, + {4365,4357, 62, 1, 2333, 820, 0, 0.09375 }, + {4366,4367, 31, 1, 773, 200, 0, 0 }, + {4368,4360, 91, 1, 1160, 360, 0, -0.03125 }, + {4369,4370, 41, 1, 373, 113, 0, 0 }, + {4371,4372, 35, 1, 406, 126, 0, 0 }, + {4373,4374, 29, 1, 146, 106, 0, 0 }, + {4375,4376, 41, 1, 400, 126, 0, 0 }, + {4375,4376, 37, 1, 400, 126, 0, 0 }, + {4377,4378, 54, 1, 286, 133, 0, 0 }, + {4377,4379, 48, 1, 286, 126, 0, 0 }, + {4380,4381, 77, 1, 193, 93, 0, 0 }, + {4382,4383, 72, 1, 200, 93, 0, 0 }, + {4384,4384, 40, 0, 513, 0, 0, 0 }, + {4385,4385, 38, 0, 200, 20, 0, 0 }, + {4386,4386, 36, 0, 620, 20, 0, 0 }, + {4387,4388, 60, 1, 120, 80, 0, 0 }, + {4388,4389, 60, 1, 380, 80, 0, 0 }, + {4390,4390, 73, 0, 166, 33, 0, 0 }, + {4391,4392, 68, 1, 153, 40, 0, 0 }, + {4393,4394, 18, 1, 200, 80, 0, 0 }, + {4395,4396, 18, 1, 253, 73, 0, 0 }, + {4397,4397, 90, 0, 193, 20, 0, 0 }, + {4398,4398, 90, 0, 793, 40, 0, 0 }, + {4399,4400, 64, 1, 373, 73, 0, 0.03125 }, + {4401,4402, 80, 1, 406, 153, 0, 0.03125 }, + {4403,4404, 64, 1, 1866, 606, 0, 0 }, + {4405,4405, 67, 0, 106, 26, 0, 0 }, + {4406,4407, 50, 1, 173, 0, 0, 0 }, + {4408,4408, 36, 0, 4646, 0, 0, 0 }, + {4409,4409, 0, 0, 40000, 86, 0, 0 }, + {4410,4410, 0, 0, 40000, 73, 0, 0 }, + {4411,4411, 0, 0, 2433, 700, 0, 0 }, + {4412,4412, 0, 0, 1233, 26, 0, 0 }, + {4413,4413, 0, 0, 40000, 66, 0, 0 }, + {4414,4414, 0, 0, 40000, 60, 0, 0 }, + {4415,4415, 0, 0, 40000, 60, 0, 0 }, + {4416,4416, 0, 0, 40000, 66, 0, 0 }, + {4417,4417, 0, 0, 40000, 66, 0, 0 }, + {4418,4418, 0, 0, 40000, 0, 0, 0 }, + {4418,4418, 73, 0, 40000, 0, 0, 0 }, + {4419,4419, 0, 0, 40000, 60, 0, 0 }, + {4420,4420, 0, 0, 40000, 60, 0, 0 }, + {4421,4421, 0, 0, 7326, 2486, 0, 0 }, + {4422,4422, 0, 0, 4886, 1586, 0, 0 }, + {4423,4423, 0, 0, 646, 20, 0, 0 }, + {4424,4424, 0, 0, 253, 20, 0, 0 }, + {4424,4424, 12, 0, 253, 20, 0, 0 }, + {4425,4425, 0, 0, 640, 100, 0, 0 }, + {4425,4425, 1, 0, 640, 106, 0, 0 }, + {4426,4426, 0, 0, 133, 106, 0, 0 }, + {4426,4426, 23, 0, 133, 106, 0, 0 }, + {4427,4427, 0, 0, 653, 100, 0, 0 }, + {4428,4428, 0, 0, 4166, 1546, 0, 0 }, + {4429,4429, 0, 0, 40000, 73, 0, 0 }, + {4430,4430, 0, 0, 40000, 60, 0, 0 }, + {4431,4431, 0, 0, 40000, 53, 0, 0 }, + {4432,4432, 0, 0, 40000, 0, 0, 0 }, + {4433,4433, 0, 0, 246, 20, 0, 0 }, + {4434,4434, 0, 2, 6, 0, 0, 0 }, + {4435,4435, 0, 0, 4946, 233, 0, 0 }, + {4436,4436, 0, 0, 4946, 233, 0, 0 }, + {4437,4437, 0, 0, 4953, 240, 0, 0 }, + {4438,4438, 0, 0, 4946, 233, 0, 0 }, + {4439,4439, 0, 0, 18233, 46, 0, 0 }, + {4440,4440, 0, 0, 2386, 26, 0, 0 }, + {4441,4441, 0, 0, 4640, 633, 0, 0 }, + {4442,4442, 0, 0, 18466, 100, 0, 0 }, + {4443,4443, 0, 0, 18440, 66, 0, -2 }, + {4444,4444, 0, 0, 18440, 6140, 0, -2 }, + {4445,4445, 0, 0, 1206, 433, 0, -2 }, + {4446,4446, 0, 0, 4626, 240, 0, 0 }, + {4447,4447, 0, 0, 726, 400, 0, 0 }, + {4448,4448, 0, 0, 5866, 73, 0, 0 }, + {4449,4449, 0, 0, 40000, 73, 0, 0 }, + {4450,4450, 0, 0, 40000, 73, 0, 0 }, + {4451,4451, 0, 0, 40000, 73, 0, 0 }, + {4452,4452, 0, 0, 40000, 73, 0, 0 }, + {4453,4453, 0, 0, 6500, 346, 0, 0 }, + {4454,4454, 0, 0, 6506, 346, 0, 0 }, + {4455,4455, 0, 0, 40000, 66, 0, -2 }, + {4456,4456, 0, 0, 40000, 66, 0, -2 }, + {4457,4457, 0, 0, 40000, 0, 0, 0 }, + {4458,4458, 0, 0, 40000, 46, 0, 0 }, + {4459,4459, 0, 0, 40000, 0, 0, 0 }, + {4459,4459, 0, 0, 40000, 0, 0, -2 }, + {4460,4460, 0, 0, 2386, 26, 0, 0 }, + {4461,4461, 0, 0, 40000, 73, 0, -2 }, + {4462,4462, 0, 0, 5866, 26, 0, -2 }, + {4463,4463, 0, 0, 40000, 133, 0, 0 }, + {4464,4464, 0, 0, 40000, 133, 0, 0 }, + {4465,4465, 0, 0, 40000, 126, 0, 0 }, + {4466,4466, 0, 0, 253, 20, 0, 0 }, + {4467,4467, 0, 0, 8866, 1366, 0, 0 }, + {4468,4468, 0, 0, 1040, 766, 0, 0 }, + {4469,4469, 0, 0, 40000, 146, 0, -2 }, + {4470,4470, 0, 0, 40000, 153, 0, -2 }, + {4471,4471, 0, 0, 40000, 466, 0, -2 }, + {4472,4472, 0, 0, 40000, 66, 0, 0 }, + {4473,4473, 0, 0, 2333, 566, 0, 0 }, + {4474,4474, 0, 0, 40000, 140, 0, -2 }, + {4475,4475, 0, 0, 40000, 100, 0, -2 }, + {4476,4476, 0, 0, 40000, 226, 0, -2 }, + {4477,4477, 0, 0, 40000, 0, 0, 0 }, + {3712,3712, 0, 0, 40000, 226, 0, -2 }, + {4478,4478, 0, 0, 40000, 140, 0, -2 }, + {4479,4479, 0, 0, 40000, 66, 0, 0 }, + {4480,4480, 0, 0, 40000, 73, 0, 0 }, + {4481,4481, 0, 0, 40000, 73, 0, 0 }, + {4482,4482, 0, 0, 40000, 86, 0, -2 }, + {4483,4483, 0, 0, 40000, 80, 0, 0 }, + {4484,4484, 0, 0, 40000, 73, 0, -2 }, + {4485,4485, 0, 0, 40000, 80, 0, -2 }, + {4486,4486, 0, 0, 40000, 73, 0, -2 }, + {4487,4487, 0, 0, 40000, 73, 0, 0 }, + {4488,4488, 0, 0, 40000, 73, 0, 0 }, + {4489,4489, 0, 0, 40000, 93, 0, 0 }, + {4490,4490, 0, 0, 40000, 73, 0, 0 }, + {4491,4491, 0, 0, 11946, 13, 0, 0 }, + {4492,4492, 0, 0, 40000, 73, 0, 0 }, + {4462,4462, 0, 0, 5866, 26, 0, 0 }, + {4493,4493, 0, 0, 40000, 820, 0, 0 }, + {4494,4494, 0, 0, 2153, 873, 0, 0 }, + {1221,1221, 0, 0, 40000, 293, 0, 0.171875 }, + {4495,4495, 0, 0, 1620, 120, 0, 0 }, + {4496,4496, 0, 0, 15120, 93, 0, 0 }, + {4497,4497, 0, 0, 14613, 93, 0, 0 }, + {4498,4498, 0, 0, 2346, 793, 0, 0 }, + {4499,4499, 0, 0, 40000, 2380, 0, 0 }, + {4500,4500, 0, 0, 40000, 1280, 0, 0 }, + {4501,4501, 0, 0, 40000, 1460, 0, 0 }, + {4502,4502, 0, 0, 40000, 2513, 0, 0 }, + {4503,4503, 0, 0, 14840, 1266, 0, 0 }, + {4504,4504, 0, 0, 4513, 640, 0, 0 }, + {4505,4505, 0, 0, 4680, 806, 0, 0 }, + {4506,4506, 0, 0, 40000, 100, 0, 0 }, + {4507,4507, 0, 0, 40000, 66, 0, 0 }, + {4508,4508, 0, 0, 2420, 413, 0, 0 }, + {4509,4509, 0, 0, 406, 73, 0, -2 }, + {4510,4510, 0, 0, 1166, 400, 0, 0 }, + {4511,4511, 0, 0, 1213, 106, 0, 0 }, + {4512,4512, 0, 0, 273, 60, 0, -2 }, + {4513,4513, 0, 0, 40000, 2380, 0, 0 }, + {4514,4514, 0, 0, 40000, 440, 0, 0 }, + {1261,1261, 0, 0, 40000, 2960, 0, 0 }, + {4515,4515, 37, 0, 973, 73, 0, -2 }, + {4516,4516, 48, 0, 106, 0, 0, -2 }, + {4517,4517, 48, 0, 286, 133, 0, -2 }, + {4518,4518, 62, 0, 166, 60, 0, 0 }, + {4519,4519, 44, 0, 980, 360, 0, 0 }, + {4520,4520, 80, 0, 100, 0, 0, 0 }, + {4519,4519, 50, 0, 980, 346, 0, 0 }, + {4521,4521, 48, 0, 106, 0, 0, -2 }, + {4519,4519, 55, 0, 973, 360, 0, 0 }, + {4522,4522, 61, 0, 513, 20, 0, 0 }, + {4519,4519, 58, 0, 966, 353, 0, 0 }, + {4519,4519, 63, 0, 973, 353, 0, 0 }, + {4523,4523, 71, 0, 1366, 580, 0, 0 }, + {4519,4519, 72, 0, 820, 306, 0, 0 }, + {4524,4524, 70, 0, 1886, 666, 0, 0 }, + {4523,4523, 88, 0, 1353, 560, 0, 0 }, + {4525,4525, 76, 0, 1873, 653, 0, 0 }, + {4526,4526, 84, 0, 260, 113, 0, 0 }, + {4523,4523, 68, 0, 1366, 553, 0, 0 }, + {4527,4527, 72, 0, 153, 53, 0, 0 }, + {4528,4528, 28, 0, 1193, 413, 0, 0 }, + {4524,4524, 81, 0, 1353, 480, 0, 0 }, + {4529,4529, 58, 0, 246, 120, 0, -2 }, + {4529,4529, 55, 0, 246, 120, 0, -2 }, + {4529,4529, 44, 0, 246, 120, 0, -2 }, + {4529,4529, 49, 0, 246, 120, 0, -2 }, + {4529,4529, 40, 0, 286, 133, 0, -2 }, + {4530,4530, 55, 0, 740, 560, 0, -2 }, + {4530,4530, 48, 0, 893, 693, 0, -2 }, + {4531,4531, 52, 0, 513, 206, 0, 0 }, + {4531,4531, 45, 0, 513, 206, 0, 0 }, + {4532,4532, 48, 0, 173, 100, 0, -2 }, + {4533,4533, 48, 0, 120, 266, 0, -2 }, + {4534,4534, 48, 0, 253, 60, 0, -2 }, + {4509,4509, 73, 0, 160, 20, 0, -2 }, + {4509,4509, 68, 0, 160, 20, 0, -2 }, + {4509,4509, 63, 0, 193, 20, 0, -2 }, + {4535,4535,108, 0, 406, 26, 0, 0 }, + {4536,4536,108, 0, 740, 26, 0, 0 }, }; @@ -10579,42 +10590,42 @@ const unsigned short banks[75][256] = 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067, -4068,4069,4070,3788,4071,4072,3790,4073,3791,4074,4075,3793,4076,4077,4078,4079, -4080,4081,4082,4083,4084,4064,3804,4085,4086,3807,4087,4088,4089,4090,3812,3813, -4091,4092,4093, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, +4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083, +4084,4085,4086,4087,4088,4064,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098, +4099,4100,4101, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, }, { 3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943, -3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3958,4094,3959, -3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,4095,3973,3974,3975, -3968,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,4096,3990, +3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,4102,4103,3959, +3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,4104,3973,3974,3975, +3968,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,4105,3988,4106,3990, 3991,3992,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005, -4097,4007,4098,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021, -4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4099,4100,4101,4035,4036,4037, -4038,4039,4040,4041,4102,4043,4044,4103,4046,4047,4048,4049,4050,4051,4052,4053, -4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104, -4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4105,4105,4105,4105,4106, -4105,4105,4105,4055,4056,4107,4058,4059,4060,4108,4062,4063,4064,4065,4066,4067, -4068,4069,4070,3788,4071,4072,3790,4073,3791,4074,4075,3793,4076,4077,4078,4079, -4080,4081,4082,4083,4084,4064,3804,4085,4086,4109,4110,4088,4111,4112,3812,3813, -4091,4092,4093,4105,4105,4105,4105,4105,4105,4104,4113,4113,4113,4113,4113,4113, -4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113, -4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113, +4107,4007,4108,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021, +4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4109,4110,4111,4035,4036,4037, +4038,4039,4040,4041,4112,4043,4044,4113,4046,4047,4048,4049,4050,4051,4052,4053, +4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114, +4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4115,4115,4115,4115,4116, +4115,4115,4115,4055,4056,4117,4058,4059,4060,4118,4062,4063,4064,4065,4066,4067, +4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083, +4084,4085,4086,4087,4088,4064,4089,4090,4091,4119,4120,4094,4121,4122,4097,4098, +4099,4100,4101,4115,4115,4115,4115,4115,4123,4114,4124,4124,4124,4124,4124,4124, +4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124, +4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124, }, { 1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237, -1238,1239,1240,1241,1242,1243,1244,1245,4114,4115,4116,1249,1250,1376,1377,1253, -1378,1255,1256,4117,1380,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,4118, -1270,4119,4120,4121,4122,1275,1276,1277,1278,1279,1381,1281,1282,1283,1284,1285, +1238,1239,1240,1241,1242,1243,1244,1245,4125,4126,4127,1249,1250,1376,1377,1253, +1378,1255,1256,4128,1380,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,4129, +1270,4130,4131,4132,4133,1275,1276,1277,1278,1279,1381,1281,1282,1283,1284,1285, 1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301, -1302,1303,1304,1305,4123,1307,1308,1309,1309,1310,1311,1312,1313,1314,1315,1316, +1302,1303,1304,1305,4134,1307,1308,1309,1309,1310,1311,1312,1313,1314,1315,1316, 1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332, -1333,1334,1335,1336,1337,4124,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348, +1333,1334,1335,1336,1337,4135,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, - 295, 295, 295, 312,1349,1350,4125,1352,4126,1354,4127,1355, 320,1356, 321,1357, + 295, 295, 295, 312,1349,1350,4136,1352,4137,1354,4138,1355, 320,1356, 321,1357, 1358,1359,1360,1361,1362,1363,1364,1383,1366,1359,1384,1361, 332, 333, 334, 335, 336,1368,1369, 338, 339, 320,1370, 295, 295, 295, 295,1372,1373,1374,1375, 295, 347, 348, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, @@ -10622,14 +10633,14 @@ const unsigned short banks[75][256] = 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, }, { -4128,4129,4130,4131,4132,4133, 6, 7,4134, 9, 10,4135, 12, 13, 14, 15, -4136,4137,4138,4139, 20,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150, - 32,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164, 46, -4165,4166,4167,4168,4169,4170,4171, 54,4172,4173,4174,4175,4176,4177,4178,4179, -4180,4181,4182, 66,4183,4184, 69,4185,4186,4187,4188, 74, 75, 76, 77, 78, -4189,4190,4191, 82,4192,4193, 85,4194,4195, 88,4196,4197,4198,4199,4200,4201, - 95, 96, 97,4202,4203,4204,4205, 102, 103,4206, 105, 106, 107,4207,4208,4209, -4210, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121,4211,4212,4213, 125,4214, +4139,4140,4141,4142,4143,4144, 6, 7,4145, 9, 10,4146, 12, 13, 14, 15, +4147,4148,4149,4150, 20,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161, + 32,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175, 46, +4176,4177,4178,4179,4180,4181,4182, 54,4183,4184,4185,4186,4187,4188,4189,4190, +4191,4192,4193, 66,4194,4195, 69,4196,4197,4198,4199, 74, 75, 76, 77, 78, +4200,4201,4202, 82,4203,4204, 85,4205,4206, 88,4207,4208,4209,4210,4211,4212, + 95, 96, 97,4213,4214,4215,4216, 102, 103,4217, 105, 106, 107,4218,4219,4220, +4221, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121,4222,4223,4224, 125,4225, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784, @@ -10640,18 +10651,18 @@ const unsigned short banks[75][256] = 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, }, { -3415,3416, 466,3417, 713,3324,3418, 467,3419, 632,3420,3421,3422,3423,4215,3425, -3426, 598,4216,3428,3429,3430,3431,3432,4217,4218,4219,4220, 759, 437, 438,3435, -3436,3437, 439,3438, 440,4221, 442,4222,3440,3441,3442,3443,2306,4223,3445, 582, -3446,3447, 452,3448,3449,4224,3450,3451,3452, 778,3453,2312, 779,3454,3455,3456, +3415,3416, 466,3417, 713,3324,3418, 467,3419, 632,3420,3421,3422,3423,4226,3425, +3426, 598,4227,3428,3429,3430,3431,3432,4228,4229,4230,4231, 759, 437, 438,3435, +3436,3437, 439,3438, 440,4232, 442,4233,3440,3441,3442,3443,2306,4234,3445, 582, +3446,3447, 452,3448,3449,4235,3450,3451,3452, 778,3453,2312, 779,3454,3455,3456, 3457, 769,3458,3459,3460,3461, 663, 664,3462,2316,3463,3464,3465,1299,3466,3467, -3468,3469,4225,3471,3472,3473,4226, 442,3475,3476,3477,3432,3478,1669,3479,3480, -3481,3482,3483,3484,4227, 261,3485,3486,1919,2420,3487,3488, 676,3489,3490,3491, -3492,4228,3494,3495,4229,4230, 680,3497,3498, 462,3499, 455,3500,2421,3501, 465, +3468,3469,4236,3471,3472,3473,4237, 442,3475,3476,3477,3432,3478,1669,3479,3480, +3481,3482,3483,3484,4238, 261,3485,3486,1919,2420,3487,3488, 676,3489,3490,3491, +3492,4239,3494,3495,4240,4241, 680,3497,3498, 462,3499, 455,3500,2421,3501, 465, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, - 295, 295, 295,3772,3773,4231,3777,3776,4232,4233,4234,4235,4236,4237,4238,4239, -4240,3786,4241,3788,3786,3789,3790,3786,3791,3786,3792,2617,3794,3795,3796,3797, + 295, 295, 295,3772,3773,4242,3777,3776,4243,4244,4245,4246,4247,4248,4249,4250, +4251,3786,4252,3788,3786,3789,3790,3786,3791,3786,3792,2617,3794,3795,3796,3797, 3798,3799,3800,3801,3802, 160,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813, 3814,3815, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, @@ -10668,28 +10679,28 @@ const unsigned short banks[75][256] = 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, - 127, 127, 127, 127,4242,4243,4244, 141,4245,4246,4247,4246,4248,4246,4249,4250, -4251,1954,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265, -4266,4267,4268,4269,4270,4271, 163,4272, 625,4273,4274,4275,4276,4277,4278,4279, -4280,4281,4282,4283,4284,4285,4286, 127, 127, 127, 127, 127, 127, 127, 127, 127, + 127, 127, 127, 127,4253,4254,4255, 141,4256,4257,4258,4257,4259,4257,4260,4261, +4262,1954,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276, +4277,4278,4279,4280,4281,4282, 163,4283, 625,4284,4285,4286,4287,4288,4289,4290, +4291,4292,4293,4294,4295,4296,4297, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, }, { -4287,4288,1553,1554, 181,4289,4290,1555, 185,4291,3625,4292,1559, 188,4293,4294, -4295,1562,4296,4297,1565, 195,4298, 197,4299,4300, 200, 201, 28,1566,1567,4301, -4302,4303,4304,4305,4306,4307,4308,4309,1572,1573, 214, 215, 216, 217, 218, 219, - 220,4310,4311,1575,1576,1577,1578,4312,1579,1580,4313,1581,4314,4315,4316,4317, - 232, 233, 234, 235,4318, 237, 238,4319,1584,1585, 240,1586, 242, 243, 244,1587, - 246,4320,4321,1589, 249, 250, 251,1590, 252,4322, 254, 255,4323,4324,4325,4326, -1595,4327,1596,1597,1598,1599,1600,1601,4328,4329,4330, 267,4331,4332, 270,4333, -4334,4335, 273,1603,4336,1605, 276,4337,4338,4339,4340,1610,4341,4342,4343, 126, +4298,4299,1553,1554, 181,4300,4301,1555, 185,4302,3625,4303,1559, 188,4304,4305, +4306,1562,4307,4308,1565, 195,4309, 197,4310,4311, 200, 201, 28,1566,1567,4312, +4313,4314,4315,4316,4317,4318,4319,4320,1572,1573, 214, 215, 216, 217, 218, 219, + 220,4321,4322,1575,1576,1577,1578,4323,1579,1580,4324,1581,4325,4326,4327,4328, + 232, 233, 234, 235,4329, 237, 238,4330,1584,1585, 240,1586, 242, 243, 244,1587, + 246,4331,4332,1589, 249, 250, 251,1590, 252,4333, 254, 255,4334,4335,4336,4337, +1595,4338,1596,1597,1598,1599,1600,1601,4339,4340,4341, 267,4342,4343, 270,4344, +4345,4346, 273,1603,4347,1605, 276,4348,4349,4350,4351,1610,4352,4353,4354, 126, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, - 295, 295, 295,4344,1470,1613,4345,1615,4346,1475,4347,1477,4348,1479,4349,1481, -1482,4350,1484,4351,4352,4353,1630,4354,2291,4355,1634,3642,1636,1637,1638,1639, -1640,4356,4357,1643,1644,1645,1646,4358, 342,4359,4360,1651,1652,1653,4361,4362, -1656,4363,1658,1659,1660,1661,1662,1663, 295, 295, 295, 295, 295, 295, 295, 295, + 295, 295, 295,4355,1470,1613,4356,1615,4357,1475,4358,1477,4359,1479,4360,1481, +1482,4361,1484,4362,4363,4364,1630,4365,2291,4366,1634,3642,1636,1637,1638,1639, +1640,4367,4368,1643,1644,1645,1646,4369, 342,4370,4371,1651,1652,1653,4372,4373, +1656,4374,1658,1659,1660,1661,1662,1663, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, }, @@ -10701,9 +10712,9 @@ const unsigned short banks[75][256] = 2224, 909,2225, 911, 912,2226,2227, 915, 916,2228,2229, 919, 920, 921, 922, 923, 2230, 925, 926, 927, 928, 929, 295, 931, 932, 933, 934, 935,2232,2233, 938,2234, 940, 295, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, - 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966,4366, 968,4367, 295, 295, -4368,4369,4370,4371,4372,4373,4374, 978,4375,4376,4377,4378,4379,4380,4381,4382, -4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393, 975, 971, 972, 973, 974, + 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966,4377, 968,4378, 295, 295, +4379,4380,4381,4382,4383,4384,4385, 978,4386,4387,4388,4389,4390,4391,4392,4393, +4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404, 975, 971, 972, 973, 974, 975, 310, 976, 977, 978, 974,2239, 980,2240, 982,2241, 984,2242, 985,2243, 987, 988,2244, 990, 325,2244, 325, 991,2244,2245,2246, 330, 993,2247,2248,2249, 997, 998,2250,2251,1001,1002,1003, 340,1004,1005,1006,1007,1008,1009, 310,1010,1011, @@ -10712,20 +10723,20 @@ const unsigned short banks[75][256] = 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, }, { -3415,4395,3324,3324,4396,3324,3324,3324,3324,3324,3324, 378,3324,3324,3822,3324, -3324,4397,3324,4398,4399,4400,3324,3324,3324, 370,3324,4401,4402,4403,4404,4405, -3324,4406,4407,4408,3438,3438,4409, 442,4410,3324,3324,4411,4412,4411, 676,4413, -4414,3324,3324,4415, 51,3324,3324,3324,4416,3452,4417,3324, 59,4418,4416, 62, -3324,4419,4419,4420, 67,3324, 664,4421,3324,2316,3324,4422, 70,3324,4423, 78, -4424,4425, 81,3324,3324,3324,3324,3324,3324,3324,3324, 90,3324,4426, 93,4427, -3324,3324,3324,3324,3324,3324,3324,4428,3324,3324,3324,3324,3324,3324,3324,3324, -3324,3324,3324,3324,3324,4229,3324,4429,3324,3324,3324,3324,3324,3324,3324,3324, +3415,4406,3324,3324,4407,3324,3324,3324,3324,3324,3324, 378,3324,3324,3822,3324, +3324,4408,3324,4409,4410,4411,3324,3324,3324, 370,3324,4412,4413,4414,4415,4416, +3324,4417,4418,4419,3438,3438,4420, 442,4421,3324,3324,4422,4423,4422, 676,4424, +4425,3324,3324,4426, 51,3324,3324,3324,4427,3452,4428,3324, 59,4429,4427, 62, +3324,4430,4430,4431, 67,3324, 664,4432,3324,2316,3324,4433, 70,3324,4434, 78, +4435,4436, 81,3324,3324,3324,3324,3324,3324,3324,3324, 90,3324,4437, 93,4438, +3324,3324,3324,3324,3324,3324,3324,4439,3324,3324,3324,3324,3324,3324,3324,3324, +3324,3324,3324,3324,3324,4240,3324,4440,3324,3324,3324,3324,3324,3324,3324,3324, 3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324, 3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324, -3324,3324,3324,4430,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441, -4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,3324,3324,4454, 154, -4455,4456,4457,3324,3324, 160,3324,3324,3324,4458,4459,4460,4461,4462,4463,3324, -3324,4464, 160,4465,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324, +3324,3324,3324,4441,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452, +4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,3324,3324,4465, 154, +4466,4467,4468,3324,3324, 160,3324,3324,3324,4469,4470,4471,4472,4473,4474,3324, +3324,4475, 160,4476,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324, 3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324, 3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324,3324, }, @@ -10737,37 +10748,37 @@ const unsigned short banks[75][256] = 3991,3992,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005, 4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021, 4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037, -4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4466,4049,4050,4051,4052,4053, -4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104, -4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4104,4105,4105,4105,4105,4105, -4105,4105,4105,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067, -4068,4069,4070,3788,4071,4072,3790,4073,3791,4074,4075,3793,4076,4077,4078,4079, -4080,4081,4082,4083,4084,4064,3804,4085,4086,3807,4087,4088,4089,4090,3812,3813, -4091,4092,4093,4105,4105,4105,4105,4105,4105,4104,4113,4113,4113,4113,4113,4113, -4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113, -4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113,4113, +4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4477,4049,4050,4051,4052,4053, +4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114, +4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4114,4115,4115,4115,4115,4115, +4115,4115,4115,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067, +4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083, +4084,4085,4086,4087,4088,4064,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098, +4099,4100,4101,4115,4115,4115,4115,4115,4123,4114,4124,4124,4124,4124,4124,4124, +4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124, +4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124,4124, }, { -4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482, -4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498, -4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514, -4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530, -4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546, -4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562, -4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578, -4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594, - 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, - 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295,4595,4596,4597,4598,4599, -4600,4601,4602,4603,4604,4605,4606,4607,4346,4608,4609,4610,4611,4612,4349,4613, -4614,4615,4616,4617,4352,4618,4619,4354,4620,4621,4622,4623,4624,4625,4626,4627, -4628,4629,4630,4631,4632, 320,4633,4634,4635,4636,4637,4638,4639,1374,4640,4641, -4642,4643,4644,4645,4646,4647,4648,4649, 295, 295, 295, 295, 295, 295, 295, 295, +4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493, +4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509, +4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525, +4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541, +4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557, +4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573, +4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589, +4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605, + 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, + 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295,4606,4607,4608,4609,4610, +4611,4612,4613,4614,4615,4616,4617,4618,4357,4619,4620,4621,4622,4623,4360,4624, +4625,4626,4627,4628,4363,4629,4630,4365,4631,4632,4633,4634,4635,4636,4637,4638, +4639,4640,4641,4642,4643, 320,4644,4645,4646,4647,4648,4649,4650,1374,4651,4652, +4653,4654,4655,4656,4657,4658,4659,4660, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, }, { -4650,4651,4652,4653,4651,4654,4655,4656,4657,4658,4659,4661,4662,4663,4664,4665, -4666,4668,4670,4663,4672,4673,4674,4675,4676,4677,4678, 295, 28, 29, 30, 31, +4661,4662,4663,4664,4662,4665,4666,4667,4668,4669,4670,4672,4673,4674,4675,4676, +4677,4679,4681,4674,4683,4684,4685,4686,4687,4688,4689, 295, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 33, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, @@ -10776,28 +10787,28 @@ const unsigned short banks[75][256] = 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, - 295, 295, 295, 127,4667, 128,4669, 130, 131, 132,4671, 134, 135, 136, 137, 138, - 139, 140, 141, 142, 143, 144,4660, 146, 147, 148, 149, 150, 151, 152, 153, 154, + 295, 295, 295, 127,4678, 128,4680, 130, 131, 132,4682, 134, 135, 136, 137, 138, + 139, 140, 141, 142, 143, 144,4671, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, }, { -4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,3423,4689,4693, -3426,4694,4695,3426,4696,4697,4697,4697, 868, 869, 870,4698,4699,4700,4701,4702, -4703,4704,4705,4705,4706,4703,4707,4708,3970,4709,4710,4710,4711,4712,4713,4714, -4715,4716,4717,4717,4718,4224,3450,4719,4720,4721,4722,4723,4724,4720,4720,4725, -3457, 769,3458,3459,4726,4727,4728,4729,4730,4731,4732,4733,4734,4731,1300,4735, -4736,4737,4731,4696,4738,4720,4739,4740,3475,4741,4742,4743,4744,1314,4745,4746, -4747,4748,4749,4742,4742,1322,4750,4751,4752,4753,4754,4753,3423,4755,3970,4756, -4757,1334,4757,4758,4759,4760, 792,4761,1341,1342,1343,1344,4762,4763,4764,1348, - 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, - 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, - 295, 295, 295,4765,4765,4766,4767,4766,4768,4769,4770,4771,4772,4773,4774,4775, -4776,4777,4778,4779,4780,4781,4782,4783,4784,4777,4785,4786,4787,4788,4789,4790, -4791,4792,4793,4794,4795,4796,4797,4794,4795,4796,4798,4799,4800,4801,1375, 295, -4802,4803, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, +4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,3423,4700,4704, +3426,4705,4706,3426,4707,4708,4708,4708, 868, 869, 870,4709,4710,4711,4712,4713, +4714,4715,4716,4716,4717,4714,4718,4719,3970,4720,4721,4721,4722,4723,4724,4725, +4726,4727,4728,4728,4729,4235,3450,4730,4731,4732,4733,4734,4735,4731,4731,4736, +3457, 769,3458,3459,4737,4738,4739,4740,4741,4742,4743,4744,4745,4742,1300,4746, +4747,4748,4742,4707,4749,4731,4750,4751,3475,4752,4753,4754,4755,1314,4756,4757, +4758,4759,4760,4753,4753,1322,4761,4762,4763,4764,4765,4764,3423,4766,3970,4767, +4768,1334,4768,4769,4770,4771, 792,4772,1341,1342,1343,1344,4773,4774,4775,1348, + 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, + 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, + 295, 295, 295,4776,4776,4777,4778,4777,4779,4780,4781,4782,4783,4784,4785,4786, +4787,4788,4789,4790,4791,4792,4793,4794,4795,4788,4796,4797,4798,4799,4800,4801, +4802,4803,4804,4805,4806,4807,4808,4805,4806,4807,4809,4810,4811,4812,1375, 295, +4813,4814, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, }, diff --git a/src/adldata.hh b/src/adldata.hh index 73c3d94..93d4144 100644 --- a/src/adldata.hh +++ b/src/adldata.hh @@ -49,11 +49,15 @@ struct adlinsdata { enum { Flag_Pseudo4op = 0x01, Flag_NoSound = 0x02, Flag_Real4op = 0x04 }; + enum { Flag_RM_BassDrum = 0x08, Flag_RM_Snare = 0x10, Flag_RM_TomTom = 0x18, + Flag_RM_Cymbal = 0x20, Flag_RM_HiHat = 0x28, Mask_RhythmMode = 0x38 }; + uint16_t adlno1, adlno2; uint8_t tone; uint8_t flags; uint16_t ms_sound_kon; // Number of milliseconds it produces sound; uint16_t ms_sound_koff; + int8_t midi_velocity_offset; double voice2_fine_tune; }; ADLDATA_BYTE_COMPARABLE(struct adlinsdata) @@ -70,9 +74,9 @@ struct adlinsdata2 uint8_t flags; uint16_t ms_sound_kon; // Number of milliseconds it produces sound; uint16_t ms_sound_koff; + int8_t midi_velocity_offset; double voice2_fine_tune; - adlinsdata2() {} - explicit adlinsdata2(const adlinsdata &d); + static adlinsdata2 from_adldata(const adlinsdata &d); }; ADLDATA_BYTE_COMPARABLE(struct adlinsdata2) @@ -103,17 +107,22 @@ extern const AdlBankSetup adlbanksetup[]; /** * @brief Conversion of storage formats */ -inline adlinsdata2::adlinsdata2(const adlinsdata &d) - : tone(d.tone), flags(d.flags), - ms_sound_kon(d.ms_sound_kon), ms_sound_koff(d.ms_sound_koff), - voice2_fine_tune(d.voice2_fine_tune) +inline adlinsdata2 adlinsdata2::from_adldata(const adlinsdata &d) { + adlinsdata2 ins; + ins.tone = d.tone; + ins.flags = d.flags; + ins.ms_sound_kon = d.ms_sound_kon; + ins.ms_sound_koff = d.ms_sound_koff; + ins.midi_velocity_offset = d.midi_velocity_offset; + ins.voice2_fine_tune = d.voice2_fine_tune; #ifdef DISABLE_EMBEDDED_BANKS - std::memset(adl, 0, sizeof(adldata) * 2); + std::memset(ins.adl, 0, sizeof(adldata) * 2); #else - adl[0] = ::adl[d.adlno1]; - adl[1] = ::adl[d.adlno2]; + ins.adl[0] = ::adl[d.adlno1]; + ins.adl[1] = ::adl[d.adlno2]; #endif + return ins; } /** diff --git a/src/adlmidi.cpp b/src/adlmidi.cpp index 32872ef..c7c5cf3 100644 --- a/src/adlmidi.cpp +++ b/src/adlmidi.cpp @@ -72,6 +72,18 @@ ADLMIDI_EXPORT struct ADL_MIDIPlayer *adl_init(long sample_rate) return midi_device; } +ADLMIDI_EXPORT void adl_close(struct ADL_MIDIPlayer *device) +{ + if(!device) + return; + MIDIplay * play = reinterpret_cast<MIDIplay *>(device->adl_midiPlayer); + if(play) + delete play; + device->adl_midiPlayer = NULL; + free(device); + device = NULL; +} + ADLMIDI_EXPORT int adl_setDeviceIdentifier(ADL_MIDIPlayer *device, unsigned id) { if(!device || id > 0x0f) @@ -102,7 +114,7 @@ ADLMIDI_EXPORT int adl_setNumChips(ADL_MIDIPlayer *device, int numChips) } play->m_synth.m_numChips = play->m_setup.numChips; - adl_reset(device); + play->partialReset(); return adlRefreshNumCards(device); } @@ -123,8 +135,8 @@ ADLMIDI_EXPORT int adl_setBank(ADL_MIDIPlayer *device, int bank) ADL_UNUSED(bank); MidiPlayer *play = GET_MIDI_PLAYER(device); play->setErrorString("This build of libADLMIDI has no embedded banks. " - "Please load bank by using of adl_openBankFile() or " - "adl_openBankData() functions instead of adl_setBank()"); + "Please load banks by using adl_openBankFile() or " + "adl_openBankData() functions instead of adl_setBank()."); return -1; #else const uint32_t NumBanks = static_cast<uint32_t>(maxAdlBanks()); @@ -304,6 +316,37 @@ ADLMIDI_EXPORT int adl_setInstrument(ADL_MIDIPlayer *device, ADL_Bank *bank, uns return 0; } +ADLMIDI_EXPORT int adl_loadEmbeddedBank(struct ADL_MIDIPlayer *device, ADL_Bank *bank, int num) +{ + if(!device) + return -1; + MidiPlayer *play = GET_MIDI_PLAYER(device); + if (!play) + return -1; + +#ifdef DISABLE_EMBEDDED_BANKS + ADL_UNUSED(bank); + ADL_UNUSED(num); + play->setErrorString("This build of libADLMIDI has no embedded banks. " + "Please load banks by using adl_openBankFile() or " + "adl_openBankData() functions instead of adl_loadEmbeddedBank()."); + return -1; +#else + if(num < 0 || num >= maxAdlBanks()) + return -1; + + OPL3::BankMap::iterator it = OPL3::BankMap::iterator::from_ptrs(bank->pointer); + size_t id = it->first; + + for (unsigned i = 0; i < 128; ++i) { + size_t insno = i + ((id & OPL3::PercussionTag) ? 128 : 0); + size_t adlmeta = ::banks[num][insno]; + it->second.ins[i] = adlinsdata2::from_adldata(::adlins[adlmeta]); + } + return 0; +#endif +} + ADLMIDI_EXPORT int adl_setNumFourOpsChn(ADL_MIDIPlayer *device, int ops4) { if(!device) @@ -404,6 +447,16 @@ ADLMIDI_EXPORT void adl_setLoopEnabled(ADL_MIDIPlayer *device, int loopEn) #endif } +ADLMIDI_EXPORT void adl_setSoftPanEnabled(ADL_MIDIPlayer *device, int softPanEn) +{ + if(!device) + return; + MidiPlayer *play = GET_MIDI_PLAYER(device); + if(!play) + return; + play->m_synth.m_softPanning = (softPanEn != 0); +} + /* !!!DEPRECATED!!! */ ADLMIDI_EXPORT void adl_setLogarithmicVolumes(struct ADL_MIDIPlayer *device, int logvol) { @@ -560,10 +613,10 @@ ADLMIDI_EXPORT int adl_switchEmulator(struct ADL_MIDIPlayer *device, int emulato assert(play); if(!play) return -1; - if((emulator >= 0) && (emulator < ADLMIDI_EMU_end)) + if(adl_isEmulatorAvailable(emulator)) { play->m_setup.emulator = emulator; - adl_reset(device); + play->partialReset(); return 0; } play->setErrorString("OPL3 MIDI: Unknown emulation core!"); @@ -580,7 +633,7 @@ ADLMIDI_EXPORT int adl_setRunAtPcmRate(ADL_MIDIPlayer *device, int enabled) if(play) { play->m_setup.runAtPcmRate = (enabled != 0); - adl_reset(device); + play->partialReset(); return 0; } } @@ -617,33 +670,12 @@ ADLMIDI_EXPORT const char *adl_errorInfo(struct ADL_MIDIPlayer *device) return play->getErrorString().c_str(); } -ADLMIDI_EXPORT const char *adl_getMusicTitle(struct ADL_MIDIPlayer *device) -{ - return adl_metaMusicTitle(device); -} - -ADLMIDI_EXPORT void adl_close(struct ADL_MIDIPlayer *device) -{ - if(!device) - return; - MIDIplay * play = reinterpret_cast<MIDIplay *>(device->adl_midiPlayer); - if(play) - delete play; - device->adl_midiPlayer = NULL; - free(device); - device = NULL; -} - ADLMIDI_EXPORT void adl_reset(struct ADL_MIDIPlayer *device) { if(!device) return; MidiPlayer *play = GET_MIDI_PLAYER(device); - play->m_setup.tick_skip_samples_delay = 0; - play->m_synth.m_runAtPcmRate = play->m_setup.runAtPcmRate; - play->m_synth.reset(play->m_setup.emulator, play->m_setup.PCM_RATE, play); - play->m_chipChannels.clear(); - play->m_chipChannels.resize((size_t)play->m_synth.m_numChannels); + play->partialReset(); play->resetMIDI(); } @@ -757,6 +789,18 @@ ADLMIDI_EXPORT void adl_setTempo(struct ADL_MIDIPlayer *device, double tempo) } +ADLMIDI_EXPORT int adl_describeChannels(struct ADL_MIDIPlayer *device, char *str, char *attr, size_t size) +{ + if(!device) + return -1; + MIDIplay *play = reinterpret_cast<MIDIplay *>(device->adl_midiPlayer); + if(!play) + return -1; + play->describeChannels(str, attr, size); + return 0; +} + + ADLMIDI_EXPORT const char *adl_metaMusicTitle(struct ADL_MIDIPlayer *device) { #ifndef ADLMIDI_DISABLE_MIDI_SEQUENCER @@ -1281,7 +1325,7 @@ ADLMIDI_EXPORT int adl_generateFormat(struct ADL_MIDIPlayer *device, int sampleC #endif } -ADLMIDI_EXPORT double adl_tickEvents(struct ADL_MIDIPlayer *device, double seconds, double granuality) +ADLMIDI_EXPORT double adl_tickEvents(struct ADL_MIDIPlayer *device, double seconds, double granulality) { #ifndef ADLMIDI_DISABLE_MIDI_SEQUENCER if(!device) @@ -1289,11 +1333,11 @@ ADLMIDI_EXPORT double adl_tickEvents(struct ADL_MIDIPlayer *device, double secon MidiPlayer *play = GET_MIDI_PLAYER(device); if(!play) return -1.0; - return play->Tick(seconds, granuality); + return play->Tick(seconds, granulality); #else ADL_UNUSED(device); ADL_UNUSED(seconds); - ADL_UNUSED(granuality); + ADL_UNUSED(granulality); return -1.0; #endif } @@ -1313,6 +1357,82 @@ ADLMIDI_EXPORT int adl_atEnd(struct ADL_MIDIPlayer *device) #endif } +ADLMIDI_EXPORT size_t adl_trackCount(struct ADL_MIDIPlayer *device) +{ +#ifndef ADLMIDI_DISABLE_MIDI_SEQUENCER + if(!device) + return 0; + MidiPlayer *play = GET_MIDI_PLAYER(device); + if(!play) + return 0; + return play->m_sequencer.getTrackCount(); +#else + ADL_UNUSED(device); + return 0; +#endif +} + +ADLMIDI_EXPORT int adl_setTrackOptions(struct ADL_MIDIPlayer *device, size_t trackNumber, unsigned trackOptions) +{ +#ifndef ADLMIDI_DISABLE_MIDI_SEQUENCER + if(!device) + return -1; + MidiPlayer *play = GET_MIDI_PLAYER(device); + if(!play) + return -1; + MidiSequencer &seq = play->m_sequencer; + + unsigned enableFlag = trackOptions & 3; + trackOptions &= ~3u; + + // handle on/off/solo + switch(enableFlag) + { + default: + break; + case ADLMIDI_TrackOption_On: + case ADLMIDI_TrackOption_Off: + if(!seq.setTrackEnabled(trackNumber, enableFlag == ADLMIDI_TrackOption_On)) + return -1; + break; + case ADLMIDI_TrackOption_Solo: + seq.setSoloTrack(trackNumber); + break; + } + + // handle others... + if(trackOptions != 0) + return -1; + + return 0; + +#else + ADL_UNUSED(device); + ADL_UNUSED(trackNumber); + ADL_UNUSED(trackOptions); + return -1; +#endif +} + +ADLMIDI_EXPORT int adl_setTriggerHandler(struct ADL_MIDIPlayer *device, ADL_TriggerHandler handler, void *userData) +{ +#ifndef ADLMIDI_DISABLE_MIDI_SEQUENCER + if(!device) + return -1; + MidiPlayer *play = GET_MIDI_PLAYER(device); + if(!play) + return -1; + MidiSequencer &seq = play->m_sequencer; + seq.setTriggerHandler(handler, userData); + return 0; +#else + ADL_UNUSED(device); + ADL_UNUSED(handler); + ADL_UNUSED(userData); + return -1; +#endif +} + ADLMIDI_EXPORT void adl_panic(struct ADL_MIDIPlayer *device) { if(!device) diff --git a/src/adlmidi_bankmap.h b/src/adlmidi_bankmap.h index 29643f1..5d747d1 100644 --- a/src/adlmidi_bankmap.h +++ b/src/adlmidi_bankmap.h @@ -74,7 +74,7 @@ private: enum { hash_bits = 8, /* worst case # of collisions: 128^2/2^hash_bits */ - hash_buckets = 1 << hash_bits, + hash_buckets = 1 << hash_bits }; public: diff --git a/src/adlmidi_cvt.hpp b/src/adlmidi_cvt.hpp new file mode 100644 index 0000000..449fe2f --- /dev/null +++ b/src/adlmidi_cvt.hpp @@ -0,0 +1,124 @@ +/* + * libADLMIDI is a free MIDI to WAV conversion library with OPL3 emulation + * + * Original ADLMIDI code: Copyright (c) 2010-2014 Joel Yliluoma <bisqwit@iki.fi> + * ADLMIDI Library API: Copyright (c) 2015-2018 Vitaly Novichkov <admin@wohlnet.ru> + * + * Library is based on the ADLMIDI, a MIDI player for Linux and Windows with OPL3 emulation: + * http://iki.fi/bisqwit/source/adlmidi.html + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#include "adldata.hh" +#include "wopl/wopl_file.h" +#include <cmath> + +template <class WOPLI> +static void cvt_generic_to_FMIns(adlinsdata2 &ins, const WOPLI &in) +{ + ins.voice2_fine_tune = 0.0; + int8_t voice2_fine_tune = in.second_voice_detune; + if(voice2_fine_tune != 0) + { + if(voice2_fine_tune == 1) + ins.voice2_fine_tune = 0.000025; + else if(voice2_fine_tune == -1) + ins.voice2_fine_tune = -0.000025; + else + ins.voice2_fine_tune = voice2_fine_tune * (15.625 / 1000.0); + } + + ins.midi_velocity_offset = in.midi_velocity_offset; + ins.tone = in.percussion_key_number; + ins.flags = (in.inst_flags & WOPL_Ins_4op) && (in.inst_flags & WOPL_Ins_Pseudo4op) ? adlinsdata::Flag_Pseudo4op : 0; + ins.flags|= (in.inst_flags & WOPL_Ins_4op) && ((in.inst_flags & WOPL_Ins_Pseudo4op) == 0) ? adlinsdata::Flag_Real4op : 0; + ins.flags|= (in.inst_flags & WOPL_Ins_IsBlank) ? adlinsdata::Flag_NoSound : 0; + ins.flags|= in.inst_flags & WOPL_RhythmModeMask; + + for(size_t op = 0, slt = 0; op < 4; op++, slt++) + { + ins.adl[slt].carrier_E862 = + ((static_cast<uint32_t>(in.operators[op].waveform_E0) << 24) & 0xFF000000) //WaveForm + | ((static_cast<uint32_t>(in.operators[op].susrel_80) << 16) & 0x00FF0000) //SusRel + | ((static_cast<uint32_t>(in.operators[op].atdec_60) << 8) & 0x0000FF00) //AtDec + | ((static_cast<uint32_t>(in.operators[op].avekf_20) << 0) & 0x000000FF); //AVEKM + ins.adl[slt].carrier_40 = in.operators[op].ksl_l_40;//KSLL + + op++; + ins.adl[slt].modulator_E862 = + ((static_cast<uint32_t>(in.operators[op].waveform_E0) << 24) & 0xFF000000) //WaveForm + | ((static_cast<uint32_t>(in.operators[op].susrel_80) << 16) & 0x00FF0000) //SusRel + | ((static_cast<uint32_t>(in.operators[op].atdec_60) << 8) & 0x0000FF00) //AtDec + | ((static_cast<uint32_t>(in.operators[op].avekf_20) << 0) & 0x000000FF); //AVEKM + ins.adl[slt].modulator_40 = in.operators[op].ksl_l_40;//KSLL + } + + ins.adl[0].finetune = static_cast<int8_t>(in.note_offset1); + ins.adl[0].feedconn = in.fb_conn1_C0; + ins.adl[1].finetune = static_cast<int8_t>(in.note_offset2); + ins.adl[1].feedconn = in.fb_conn2_C0; + + ins.ms_sound_kon = in.delay_on_ms; + ins.ms_sound_koff = in.delay_off_ms; +} + +template <class WOPLI> +static void cvt_FMIns_to_generic(WOPLI &ins, const adlinsdata2 &in) +{ + ins.second_voice_detune = 0; + double voice2_fine_tune = in.voice2_fine_tune; + if(voice2_fine_tune != 0) + { + if(voice2_fine_tune > 0 && voice2_fine_tune <= 0.000025) + ins.second_voice_detune = 1; + else if(voice2_fine_tune < 0 && voice2_fine_tune >= -0.000025) + ins.second_voice_detune = -1; + else + { + long value = static_cast<long>(round(voice2_fine_tune * (1000.0 / 15.625))); + value = (value < -128) ? -128 : value; + value = (value > +127) ? +127 : value; + ins.second_voice_detune = static_cast<int8_t>(value); + } + } + + ins.midi_velocity_offset = in.midi_velocity_offset; + ins.percussion_key_number = in.tone; + ins.inst_flags = (in.flags & (adlinsdata::Flag_Pseudo4op|adlinsdata::Flag_Real4op)) ? WOPL_Ins_4op : 0; + ins.inst_flags|= (in.flags & adlinsdata::Flag_Pseudo4op) ? WOPL_Ins_Pseudo4op : 0; + ins.inst_flags|= (in.flags & adlinsdata::Flag_NoSound) ? WOPL_Ins_IsBlank : 0; + ins.inst_flags |= in.flags & adlinsdata::Mask_RhythmMode; + + for(size_t op = 0; op < 4; op++) + { + const adldata &in2op = in.adl[(op < 2) ? 0 : 1]; + uint32_t regE862 = ((op & 1) == 0) ? in2op.carrier_E862 : in2op.modulator_E862; + uint8_t reg40 = ((op & 1) == 0) ? in2op.carrier_40 : in2op.modulator_40; + + ins.operators[op].waveform_E0 = static_cast<uint8_t>(regE862 >> 24); + ins.operators[op].susrel_80 = static_cast<uint8_t>(regE862 >> 16); + ins.operators[op].atdec_60 = static_cast<uint8_t>(regE862 >> 8); + ins.operators[op].avekf_20 = static_cast<uint8_t>(regE862 >> 0); + ins.operators[op].ksl_l_40 = reg40; + } + + ins.note_offset1 = in.adl[0].finetune; + ins.fb_conn1_C0 = in.adl[0].feedconn; + ins.note_offset2 = in.adl[1].finetune; + ins.fb_conn2_C0 = in.adl[1].feedconn; + + ins.delay_on_ms = in.ms_sound_kon; + ins.delay_off_ms = in.ms_sound_koff; +} diff --git a/src/adlmidi_load.cpp b/src/adlmidi_load.cpp index fcabd2b..915b587 100644 --- a/src/adlmidi_load.cpp +++ b/src/adlmidi_load.cpp @@ -22,6 +22,7 @@ */ #include "adlmidi_private.hpp" +#include "adlmidi_cvt.hpp" #include "wopl/wopl_file.h" bool MIDIplay::LoadBank(const std::string &filename) @@ -38,118 +39,6 @@ bool MIDIplay::LoadBank(const void *data, size_t size) return LoadBank(file); } -template <class WOPLI> -static void cvt_generic_to_FMIns(adlinsdata2 &ins, const WOPLI &in) -{ - ins.voice2_fine_tune = 0.0; - int8_t voice2_fine_tune = in.second_voice_detune; - if(voice2_fine_tune != 0) - { - if(voice2_fine_tune == 1) - ins.voice2_fine_tune = 0.000025; - else if(voice2_fine_tune == -1) - ins.voice2_fine_tune = -0.000025; - else - ins.voice2_fine_tune = voice2_fine_tune * (15.625 / 1000.0); - } - - ins.tone = in.percussion_key_number; - ins.flags = (in.inst_flags & WOPL_Ins_4op) && (in.inst_flags & WOPL_Ins_Pseudo4op) ? adlinsdata::Flag_Pseudo4op : 0; - ins.flags|= (in.inst_flags & WOPL_Ins_4op) && ((in.inst_flags & WOPL_Ins_Pseudo4op) == 0) ? adlinsdata::Flag_Real4op : 0; - ins.flags|= (in.inst_flags & WOPL_Ins_IsBlank) ? adlinsdata::Flag_NoSound : 0; - - bool fourOps = (in.inst_flags & WOPL_Ins_4op) || (in.inst_flags & WOPL_Ins_Pseudo4op); - for(size_t op = 0, slt = 0; op < static_cast<size_t>(fourOps ? 4 : 2); op++, slt++) - { - ins.adl[slt].carrier_E862 = - ((static_cast<uint32_t>(in.operators[op].waveform_E0) << 24) & 0xFF000000) //WaveForm - | ((static_cast<uint32_t>(in.operators[op].susrel_80) << 16) & 0x00FF0000) //SusRel - | ((static_cast<uint32_t>(in.operators[op].atdec_60) << 8) & 0x0000FF00) //AtDec - | ((static_cast<uint32_t>(in.operators[op].avekf_20) << 0) & 0x000000FF); //AVEKM - ins.adl[slt].carrier_40 = in.operators[op].ksl_l_40;//KSLL - - op++; - ins.adl[slt].modulator_E862 = - ((static_cast<uint32_t>(in.operators[op].waveform_E0) << 24) & 0xFF000000) //WaveForm - | ((static_cast<uint32_t>(in.operators[op].susrel_80) << 16) & 0x00FF0000) //SusRel - | ((static_cast<uint32_t>(in.operators[op].atdec_60) << 8) & 0x0000FF00) //AtDec - | ((static_cast<uint32_t>(in.operators[op].avekf_20) << 0) & 0x000000FF); //AVEKM - ins.adl[slt].modulator_40 = in.operators[op].ksl_l_40;//KSLL - } - - ins.adl[0].finetune = static_cast<int8_t>(in.note_offset1); - ins.adl[0].feedconn = in.fb_conn1_C0; - if(!fourOps) - ins.adl[1] = ins.adl[0]; - else - { - ins.adl[1].finetune = static_cast<int8_t>(in.note_offset2); - ins.adl[1].feedconn = in.fb_conn2_C0; - } - - ins.ms_sound_kon = in.delay_on_ms; - ins.ms_sound_koff = in.delay_off_ms; -} - -template <class WOPLI> -static void cvt_FMIns_to_generic(WOPLI &ins, const adlinsdata2 &in) -{ - ins.second_voice_detune = 0; - double voice2_fine_tune = in.voice2_fine_tune; - if(voice2_fine_tune != 0) - { - if(voice2_fine_tune > 0 && voice2_fine_tune <= 0.000025) - ins.second_voice_detune = 1; - else if(voice2_fine_tune < 0 && voice2_fine_tune >= -0.000025) - ins.second_voice_detune = -1; - else - { - long value = static_cast<long>(round(voice2_fine_tune * (1000.0 / 15.625))); - value = (value < -128) ? -128 : value; - value = (value > +127) ? +127 : value; - ins.second_voice_detune = static_cast<int8_t>(value); - } - } - - ins.percussion_key_number = in.tone; - bool fourOps = (in.flags & adlinsdata::Flag_Pseudo4op) || in.adl[0] != in.adl[1]; - ins.inst_flags = fourOps ? WOPL_Ins_4op : 0; - ins.inst_flags|= (in.flags & adlinsdata::Flag_Pseudo4op) ? WOPL_Ins_Pseudo4op : 0; - ins.inst_flags|= (in.flags & adlinsdata::Flag_NoSound) ? WOPL_Ins_IsBlank : 0; - - for(size_t op = 0, slt = 0; op < static_cast<size_t>(fourOps ? 4 : 2); op++, slt++) - { - ins.operators[op].waveform_E0 = static_cast<uint8_t>(in.adl[slt].carrier_E862 >> 24); - ins.operators[op].susrel_80 = static_cast<uint8_t>(in.adl[slt].carrier_E862 >> 16); - ins.operators[op].atdec_60 = static_cast<uint8_t>(in.adl[slt].carrier_E862 >> 8); - ins.operators[op].avekf_20 = static_cast<uint8_t>(in.adl[slt].carrier_E862 >> 0); - ins.operators[op].ksl_l_40 = in.adl[slt].carrier_40; - - op++; - ins.operators[op].waveform_E0 = static_cast<uint8_t>(in.adl[slt].carrier_E862 >> 24); - ins.operators[op].susrel_80 = static_cast<uint8_t>(in.adl[slt].carrier_E862 >> 16); - ins.operators[op].atdec_60 = static_cast<uint8_t>(in.adl[slt].carrier_E862 >> 8); - ins.operators[op].avekf_20 = static_cast<uint8_t>(in.adl[slt].carrier_E862 >> 0); - ins.operators[op].ksl_l_40 = in.adl[slt].carrier_40; - } - - ins.note_offset1 = in.adl[0].finetune; - ins.fb_conn1_C0 = in.adl[0].feedconn; - if(!fourOps) - { - ins.operators[2] = ins.operators[0]; - ins.operators[3] = ins.operators[1]; - } - else - { - ins.note_offset2 = in.adl[1].finetune; - ins.fb_conn2_C0 = in.adl[1].feedconn; - } - - ins.delay_on_ms = in.ms_sound_kon; - ins.delay_off_ms = in.ms_sound_koff; -} - void cvt_ADLI_to_FMIns(adlinsdata2 &ins, const ADL_Instrument &in) { return cvt_generic_to_FMIns(ins, in); diff --git a/src/adlmidi_midiplay.cpp b/src/adlmidi_midiplay.cpp index 9841f73..ded81b3 100644 --- a/src/adlmidi_midiplay.cpp +++ b/src/adlmidi_midiplay.cpp @@ -129,7 +129,7 @@ MIDIplay::MIDIplay(unsigned long sampleRate): { m_midiDevices.clear(); - m_setup.emulator = ADLMIDI_EMU_NUKED; + m_setup.emulator = adl_getLowestEmulator(); m_setup.runAtPcmRate = false; m_setup.PCM_RATE = sampleRate; @@ -205,6 +205,16 @@ void MIDIplay::applySetup() m_arpeggioCounter = 0; } +void MIDIplay::partialReset() +{ + realTime_panic(); + m_setup.tick_skip_samples_delay = 0; + m_synth.m_runAtPcmRate = m_setup.runAtPcmRate; + m_synth.reset(m_setup.emulator, m_setup.PCM_RATE, this); + m_chipChannels.clear(); + m_chipChannels.resize((size_t)m_synth.m_numChannels); +} + void MIDIplay::resetMIDI() { m_masterVolume = MasterVolumeDefault; @@ -261,6 +271,8 @@ bool MIDIplay::realTime_NoteOn(uint8_t channel, uint8_t note, uint8_t velocity) MIDIchannel::activenoteiterator i = m_midiChannels[channel].activenotes_find(note); if(i) { + const int veloffset = i->ains->midi_velocity_offset; + velocity = (uint8_t)std::min(127, std::max(1, (int)velocity + veloffset)); i->vol = velocity; noteUpdate(channel, i, Upd_Volume); return false; @@ -283,14 +295,7 @@ bool MIDIplay::realTime_NoteOn(uint8_t channel, uint8_t note, uint8_t velocity) size_t midiins = midiChan.patch; bool isPercussion = (channel % 16 == 9) || midiChan.is_xg_percussion; - size_t bank = 0; - if(midiChan.bank_msb || midiChan.bank_lsb) - { - if((m_synthMode & Mode_GS) != 0) //in GS mode ignore LSB - bank = (midiChan.bank_msb * 256); - else - bank = (midiChan.bank_msb * 256) + midiChan.bank_lsb; - } + size_t bank = (midiChan.bank_msb * 256) + midiChan.bank_lsb; if(isPercussion) { @@ -321,44 +326,72 @@ bool MIDIplay::realTime_NoteOn(uint8_t channel, uint8_t note, uint8_t velocity) //Set bank bank const OPL3::Bank *bnk = NULL; - if((bank & ~(uint16_t)OPL3::PercussionTag) > 0) + bool caughtMissingBank = false; + if((bank & ~static_cast<uint16_t>(OPL3::PercussionTag)) > 0) { OPL3::BankMap::iterator b = m_synth.m_insBanks.find(bank); if(b != m_synth.m_insBanks.end()) bnk = &b->second; - if(bnk) ains = &bnk->ins[midiins]; - else if(hooks.onDebugMessage) + else + caughtMissingBank = true; + } + + //Or fall back to bank ignoring LSB (GS) + if((ains->flags & adlinsdata::Flag_NoSound) && ((m_synthMode & Mode_GS) != 0)) + { + size_t fallback = bank & ~(size_t)0x7F; + if(fallback != bank) + { + OPL3::BankMap::iterator b = m_synth.m_insBanks.find(fallback); + caughtMissingBank = false; + if(b != m_synth.m_insBanks.end()) + bnk = &b->second; + if(bnk) + ains = &bnk->ins[midiins]; + else + caughtMissingBank = true; + } + } + + if(caughtMissingBank && hooks.onDebugMessage) + { + std::set<size_t> &missing = (isPercussion) ? + caugh_missing_banks_percussion : caugh_missing_banks_melodic; + const char *text = (isPercussion) ? + "percussion" : "melodic"; + if(missing.insert(bank).second) { - std::set<size_t> &missing = (isPercussion) ? - caugh_missing_banks_percussion : caugh_missing_banks_melodic; - const char *text = (isPercussion) ? - "percussion" : "melodic"; - if(missing.insert(bank).second) - hooks.onDebugMessage(hooks.onDebugMessage_userData, "[%i] Playing missing %s MIDI bank %i (patch %i)", channel, text, bank, midiins); + hooks.onDebugMessage(hooks.onDebugMessage_userData, + "[%i] Playing missing %s MIDI bank %i (patch %i)", + channel, text, (bank & ~static_cast<uint16_t>(OPL3::PercussionTag)), midiins); } } + //Or fall back to first bank - if(ains->flags & adlinsdata::Flag_NoSound) + if((ains->flags & adlinsdata::Flag_NoSound) != 0) { OPL3::BankMap::iterator b = m_synth.m_insBanks.find(bank & OPL3::PercussionTag); if(b != m_synth.m_insBanks.end()) bnk = &b->second; - if(bnk) ains = &bnk->ins[midiins]; } + const int veloffset = ains->midi_velocity_offset; + velocity = (uint8_t)std::min(127, std::max(1, (int)velocity + veloffset)); + int32_t tone = note; if(!isPercussion && (bank > 0)) // For non-zero banks { if(ains->flags & adlinsdata::Flag_NoSound) { - if(hooks.onDebugMessage) + if(hooks.onDebugMessage && caugh_missing_instruments.insert(static_cast<uint8_t>(midiins)).second) { - if(caugh_missing_instruments.insert(static_cast<uint8_t>(midiins)).second) - hooks.onDebugMessage(hooks.onDebugMessage_userData, "[%i] Caught a blank instrument %i (offset %i) in the MIDI bank %u", channel, m_midiChannels[channel].patch, midiins, bank); + hooks.onDebugMessage(hooks.onDebugMessage_userData, + "[%i] Caught a blank instrument %i (offset %i) in the MIDI bank %u", + channel, m_midiChannels[channel].patch, midiins, bank); } bank = 0; midiins = midiChan.patch; @@ -377,12 +410,13 @@ bool MIDIplay::realTime_NoteOn(uint8_t channel, uint8_t note, uint8_t velocity) } //uint16_t i[2] = { ains->adlno1, ains->adlno2 }; + bool is_2op = !(ains->flags & (adlinsdata::Flag_Pseudo4op|adlinsdata::Flag_Real4op)); bool pseudo_4op = ains->flags & adlinsdata::Flag_Pseudo4op; #ifndef __WATCOMC__ MIDIchannel::NoteInfo::Phys voices[MIDIchannel::NoteInfo::MaxNumPhysChans] = { {0, ains->adl[0], false}, - {0, ains->adl[1], pseudo_4op} + {0, (!is_2op) ? ains->adl[1] : ains->adl[0], pseudo_4op} }; #else /* Unfortunately, WatCom can't brace-initialize structure that incluses structure fields */ MIDIchannel::NoteInfo::Phys voices[MIDIchannel::NoteInfo::MaxNumPhysChans]; @@ -390,14 +424,14 @@ bool MIDIplay::realTime_NoteOn(uint8_t channel, uint8_t note, uint8_t velocity) voices[0].ains = ains->adl[0]; voices[0].pseudo4op = false; voices[1].chip_chan = 0; - voices[1].ains = ains->adl[1]; + voices[1].ains = (!is_2op) ? ains->adl[1] : ains->adl[0]; voices[1].pseudo4op = pseudo_4op; #endif /* __WATCOMC__ */ if((m_synth.m_rhythmMode == 1) && PercussionMap[midiins & 0xFF]) voices[1] = voices[0];//i[1] = i[0]; - bool isBlankNote = (ains->flags & adlinsdata::Flag_NoSound); + bool isBlankNote = (ains->flags & adlinsdata::Flag_NoSound) != 0; if(hooks.onDebugMessage) { @@ -439,7 +473,7 @@ bool MIDIplay::realTime_NoteOn(uint8_t channel, uint8_t note, uint8_t velocity) if(ccount == 1 && static_cast<int32_t>(a) == adlchannel[0]) continue; // ^ Don't use the same channel for primary&secondary - if(voices[0].ains == voices[1].ains || pseudo_4op/*i[0] == i[1] || pseudo_4op*/) + if(is_2op || pseudo_4op) { // Only use regular channels uint32_t expected_mode = 0; @@ -654,9 +688,7 @@ void MIDIplay::realTime_Controller(uint8_t channel, uint8_t type, uint8_t value) break; case 10: // Change panning - m_midiChannels[channel].panning = 0x00; - if(value < 64 + 32) m_midiChannels[channel].panning |= OPL_PANNING_LEFT; - if(value >= 64 - 32) m_midiChannels[channel].panning |= OPL_PANNING_RIGHT; + m_midiChannels[channel].panning = value; noteUpdateAll(channel, Upd_Pan); break; @@ -1722,6 +1754,56 @@ void MIDIplay::updateGlide(double amount) } } +void MIDIplay::describeChannels(char *str, char *attr, size_t size) +{ + if (!str || size <= 0) + return; + + OPL3 &synth = m_synth; + uint32_t numChannels = synth.m_numChannels; + + uint32_t index = 0; + while(index < numChannels && index < size - 1) + { + const AdlChannel &adlChannel = m_chipChannels[index]; + + AdlChannel::LocationData *loc = adlChannel.users_first; + if(!loc) // off + { + str[index] = '-'; + } + else if(loc->next) // arpeggio + { + str[index] = '@'; + } + else // on + { + switch(synth.m_channelCategory[index]) + { + case OPL3::ChanCat_Regular: + str[index] = '+'; + break; + case OPL3::ChanCat_4op_Master: + case OPL3::ChanCat_4op_Slave: + str[index] = '#'; + break; + default: // rhythm-mode percussion + str[index] = 'r'; + break; + } + } + + uint8_t attribute = 0; + if (loc) // 4-bit color index of MIDI channel + attribute |= (uint8_t)(loc->loc.MidCh & 0xF); + + attr[index] = (char)attribute; + ++index; + } + + str[index] = 0; + attr[index] = 0; +} #ifndef ADLMIDI_DISABLE_CPP_EXTRAS @@ -1795,7 +1877,7 @@ ADLMIDI_EXPORT void AdlInstrumentTester::DoNote(int note) OPL3 *opl = P->opl; if(P->adl_ins_list.empty()) FindAdlList(); const unsigned meta = P->adl_ins_list[P->ins_idx]; - const adlinsdata2 ains(adlins[meta]); + const adlinsdata2 ains = adlinsdata2::from_adldata(::adlins[meta]); int tone = (P->cur_gm & 128) ? (P->cur_gm & 127) : (note + 50); if(ains.tone) @@ -1810,7 +1892,7 @@ ADLMIDI_EXPORT void AdlInstrumentTester::DoNote(int note) } double hertz = 172.00093 * std::exp(0.057762265 * (tone + 0.0)); int32_t adlchannel[2] = { 0, 3 }; - if(ains.adl[0] == ains.adl[1]) + if((ains.flags & (adlinsdata::Flag_Pseudo4op|adlinsdata::Flag_Real4op)) == 0) { adlchannel[1] = -1; adlchannel[0] = 6; // single-op @@ -1877,7 +1959,7 @@ ADLMIDI_EXPORT void AdlInstrumentTester::NextAdl(int offset) for(size_t a = 0, n = P->adl_ins_list.size(); a < n; ++a) { const unsigned i = P->adl_ins_list[a]; - const adlinsdata2 ains(adlins[i]); + const adlinsdata2 ains = adlinsdata2::from_adldata(::adlins[i]); char ToneIndication[8] = " "; if(ains.tone) @@ -1892,7 +1974,7 @@ ADLMIDI_EXPORT void AdlInstrumentTester::NextAdl(int offset) } std::printf("%s%s%s%u\t", ToneIndication, - ains.adl[0] != ains.adl[1] ? "[2]" : " ", + (ains.flags & (adlinsdata::Flag_Pseudo4op|adlinsdata::Flag_Real4op)) ? "[2]" : " ", (P->ins_idx == a) ? "->" : "\t", i ); diff --git a/src/adlmidi_opl3.cpp b/src/adlmidi_opl3.cpp index 3e33e86..94602ba 100644 --- a/src/adlmidi_opl3.cpp +++ b/src/adlmidi_opl3.cpp @@ -22,6 +22,8 @@ */ #include "adlmidi_private.hpp" +#include <stdlib.h> +#include <cassert> #ifdef ADLMIDI_HW_OPL static const unsigned OPLBase = 0x388; @@ -42,6 +44,46 @@ static const unsigned OPLBase = 0x388; # endif #endif +static const unsigned adl_emulatorSupport = 0 +#ifndef ADLMIDI_HW_OPL +# ifndef ADLMIDI_DISABLE_NUKED_EMULATOR + | (1u << ADLMIDI_EMU_NUKED) | (1u << ADLMIDI_EMU_NUKED_174) +# endif + +# ifndef ADLMIDI_DISABLE_DOSBOX_EMULATOR + | (1u << ADLMIDI_EMU_DOSBOX) +# endif +#endif +; + +//! Check emulator availability +bool adl_isEmulatorAvailable(int emulator) +{ + return (adl_emulatorSupport & (1u << (unsigned)emulator)) != 0; +} + +//! Find highest emulator +int adl_getHighestEmulator() +{ + int emu = -1; + for(unsigned m = adl_emulatorSupport; m > 0; m >>= 1) + ++emu; + return emu; +} + +//! Find lowest emulator +int adl_getLowestEmulator() +{ + int emu = -1; + unsigned m = adl_emulatorSupport; + if(m > 0) + { + for(emu = 0; (m & 1) == 0; m >>= 1) + ++emu; + } + return emu; +} + //! Per-channel and per-operator registers map static const uint16_t g_operatorsMap[23 * 2] = { @@ -122,6 +164,7 @@ OPL3::OPL3() : m_deepTremoloMode(false), m_deepVibratoMode(false), m_rhythmMode(false), + m_softPanning(false), m_musicMode(MODE_MIDI), m_volumeScale(VOLUME_Generic) { @@ -152,7 +195,7 @@ void OPL3::setEmbeddedBank(uint32_t bank) { size_t meta = banks[bank][i]; adlinsdata2 &ins = bank_pair[i / 128]->ins[i % 128]; - ins = adlinsdata2(adlins[meta]); + ins = adlinsdata2::from_adldata(::adlins[meta]); } #else ADL_UNUSED(bank); @@ -194,6 +237,17 @@ void OPL3::writeRegI(size_t chip, uint32_t address, uint32_t value) #endif } +void OPL3::writePan(size_t chip, uint32_t address, uint32_t value) +{ +#ifndef ADLMIDI_HW_OPL + m_chips[chip]->writePan(static_cast<uint16_t>(address), static_cast<uint8_t>(value)); +#else + ADL_UNUSED(chip); + ADL_UNUSED(address); + ADL_UNUSED(value); +#endif +} + void OPL3::noteOff(size_t c) { @@ -363,7 +417,24 @@ void OPL3::setPan(size_t c, uint8_t value) { size_t chip = c / 23, cc = c % 23; if(g_channelsMap[cc] != 0xFFF) - writeRegI(chip, 0xC0 + g_channelsMap[cc], m_insCache[c].feedconn | value); + { +#ifndef ADLMIDI_HW_OPL + if (m_softPanning) + { + writePan(chip, g_channelsMap[cc], value); + writeRegI(chip, 0xC0 + g_channelsMap[cc], m_insCache[c].feedconn | OPL_PANNING_BOTH); + } + else + { +#endif + int panning = 0; + if(value < 64 + 32) panning |= OPL_PANNING_LEFT; + if(value >= 64 - 32) panning |= OPL_PANNING_RIGHT; + writeRegI(chip, 0xC0 + g_channelsMap[cc], m_insCache[c].feedconn | panning); +#ifndef ADLMIDI_HW_OPL + } +#endif + } } void OPL3::silenceAll() // Silence all OPL channels. @@ -549,6 +620,8 @@ void OPL3::reset(int emulator, unsigned long PCM_RATE, void *audioTickHandler) switch(emulator) { default: + assert(false); + abort(); #ifndef ADLMIDI_DISABLE_NUKED_EMULATOR case ADLMIDI_EMU_NUKED: /* Latest Nuked OPL3 */ chip = new NukedOPL3; diff --git a/src/adlmidi_private.cpp b/src/adlmidi_private.cpp index ecedd9e..43fe8de 100644 --- a/src/adlmidi_private.cpp +++ b/src/adlmidi_private.cpp @@ -56,7 +56,7 @@ int adlRefreshNumCards(ADL_MIDIPlayer *device) adlinsdata2 &ins = it->second.ins[i]; if(ins.flags & adlinsdata::Flag_NoSound) continue; - if((ins.adl[0] != ins.adl[1]) && ((ins.flags & adlinsdata::Flag_Pseudo4op) == 0)) + if((ins.flags & adlinsdata::Flag_Real4op) != 0) ++n_fourop[div]; ++n_total[div]; } @@ -72,8 +72,8 @@ int adlRefreshNumCards(ADL_MIDIPlayer *device) if(insno == 198) continue; ++n_total[a / 128]; - adlinsdata2 ins(adlins[insno]); - if(ins.flags & adlinsdata::Flag_Real4op) + adlinsdata2 ins = adlinsdata2::from_adldata(::adlins[insno]); + if((ins.flags & adlinsdata::Flag_Real4op) != 0) ++n_fourop[a / 128]; } } diff --git a/src/adlmidi_private.hpp b/src/adlmidi_private.hpp index 7b59003..6bb1dcf 100644 --- a/src/adlmidi_private.hpp +++ b/src/adlmidi_private.hpp @@ -28,15 +28,13 @@ #ifndef ADLMIDI_EXPORT # if defined (_WIN32) && defined(ADLMIDI_BUILD_DLL) # define ADLMIDI_EXPORT __declspec(dllexport) -# elif defined (LIBADLMIDI_VISIBILITY) +# elif defined (LIBADLMIDI_VISIBILITY) && defined (__GNUC__) # define ADLMIDI_EXPORT __attribute__((visibility ("default"))) # else # define ADLMIDI_EXPORT # endif #endif -// Require declarations of unstable API for extern "C" -#define ADLMIDI_UNSTABLE_API #ifdef _WIN32 #define NOMINMAX 1 @@ -146,6 +144,7 @@ typedef BW_MidiSequencer MidiSequencer; #include "adldata.hh" +#define ADLMIDI_BUILD #include "adlmidi.h" //Main API #ifndef ADLMIDI_DISABLE_CPP_EXTRAS @@ -279,6 +278,8 @@ public: bool m_scaleModulators; //! Run emulator at PCM rate if that possible. Reduces sounding accuracy, but decreases CPU usage on lower rates. bool m_runAtPcmRate; + //! Enable soft panning + bool m_softPanning; //! Just a padding. Reserved. char _padding2[3]; @@ -369,7 +370,7 @@ public: /** * @brief Write data to OPL3 chip register * @param chip Index of emulated chip. In hardware OPL3 builds, this parameter is ignored - * @param index Register address to write + * @param address Register address to write * @param value Value to write */ void writeReg(size_t chip, uint16_t address, uint8_t value); @@ -377,12 +378,20 @@ public: /** * @brief Write data to OPL3 chip register * @param chip Index of emulated chip. In hardware OPL3 builds, this parameter is ignored - * @param index Register address to write + * @param address Register address to write * @param value Value to write */ void writeRegI(size_t chip, uint32_t address, uint32_t value); /** + * @brief Write to soft panning control of OPL3 chip emulator + * @param chip Index of emulated chip. + * @param address Register of channel to write + * @param value Value to write + */ + void writePan(size_t chip, uint32_t address, uint32_t value); + + /** * @brief Off the note in specified chip channel * @param c Channel of chip (Emulated chip choosing by next formula: [c = ch + (chipId * 23)]) */ @@ -490,6 +499,7 @@ public: void applySetup(); + void partialReset(); void resetMIDI(); /**********************Internal structures and classes**********************/ @@ -591,7 +601,7 @@ public: enum { MaxNumPhysChans = 2, - MaxNumPhysItemCount = MaxNumPhysChans, + MaxNumPhysItemCount = MaxNumPhysChans }; /** @@ -792,7 +802,7 @@ public: vibspeed = 2 * 3.141592653 * 5.0; vibdepth = 0.5 / 127; vibdelay = 0; - panning = OPL_PANNING_BOTH; + panning = 64; portamento = 0; portamentoEnable = false; portamentoSource = -1; @@ -848,7 +858,7 @@ public: Sustain_None = 0x00, Sustain_Pedal = 0x01, Sustain_Sostenuto = 0x02, - Sustain_ANY = Sustain_Pedal | Sustain_Sostenuto, + Sustain_ANY = Sustain_Pedal | Sustain_Sostenuto }; uint32_t sustained; char _padding[6]; @@ -989,7 +999,7 @@ public: Mode_GM = 0x00, Mode_GS = 0x01, Mode_XG = 0x02, - Mode_GM2 = 0x04, + Mode_GM2 = 0x04 }; //! MIDI Synthesizer mode uint32_t m_synthMode; @@ -1184,7 +1194,7 @@ public: /** * @brief MSB Bank Change CC * @param channel MIDI channel - * @param lsb MSB value of bank number + * @param msb MSB value of bank number */ void realTime_BankChangeMSB(uint8_t channel, uint8_t msb); @@ -1428,6 +1438,14 @@ public: * @return Offset of the MIDI Channels, multiple to 16 */ size_t chooseDevice(const std::string &name); + + /** + * @brief Gets a textual description of the state of chip channels + * @param text character pointer for text + * @param attr character pointer for text attributes + * @param size number of characters available to write + */ + void describeChannels(char *text, char *attr, size_t size); }; // I think, this is useless inside of Library @@ -1452,7 +1470,31 @@ struct FourChars #if defined(ADLMIDI_AUDIO_TICK_HANDLER) extern void adl_audioTickHandler(void *instance, uint32_t chipId, uint32_t rate); #endif + +/** + * @brief Automatically calculate and enable necessary count of 4-op channels on emulated chips + * @param device Library context + * @return Always 0 + */ extern int adlRefreshNumCards(ADL_MIDIPlayer *device); +/** + * @brief Check emulator availability + * @param emulator Emulator ID (ADL_Emulator) + * @return true when emulator is available + */ +extern bool adl_isEmulatorAvailable(int emulator); + +/** + * @brief Find highest emulator + * @return The ADL_Emulator enum value which contains ID of highest emulator + */ +extern int adl_getHighestEmulator(); + +/** + * @brief Find lowerest emulator + * @return The ADL_Emulator enum value which contains ID of lowerest emulator + */ +extern int adl_getLowestEmulator(); #endif // ADLMIDI_PRIVATE_HPP diff --git a/src/chips/dosbox/dbopl.cpp b/src/chips/dosbox/dbopl.cpp index 7d78c5f..4eb79f8 100644 --- a/src/chips/dosbox/dbopl.cpp +++ b/src/chips/dosbox/dbopl.cpp @@ -219,6 +219,29 @@ static const Bit8u KslShiftTable[4] = { 31,1,2,0 }; +// Pan law table +static const Bit16u PanLawTable[] = +{ + 65535, 65529, 65514, 65489, 65454, 65409, 65354, 65289, + 65214, 65129, 65034, 64929, 64814, 64689, 64554, 64410, + 64255, 64091, 63917, 63733, 63540, 63336, 63123, 62901, + 62668, 62426, 62175, 61914, 61644, 61364, 61075, 60776, + 60468, 60151, 59825, 59489, 59145, 58791, 58428, 58057, + 57676, 57287, 56889, 56482, 56067, 55643, 55211, 54770, + 54320, 53863, 53397, 52923, 52441, 51951, 51453, 50947, + 50433, 49912, 49383, 48846, 48302, 47750, 47191, + 46340, /* Center left */ + 46340, /* Center right */ + 45472, 44885, 44291, 43690, 43083, 42469, 41848, 41221, + 40588, 39948, 39303, 38651, 37994, 37330, 36661, 35986, + 35306, 34621, 33930, 33234, 32533, 31827, 31116, 30400, + 29680, 28955, 28225, 27492, 26754, 26012, 25266, 24516, + 23762, 23005, 22244, 21480, 20713, 19942, 19169, 18392, + 17613, 16831, 16046, 15259, 14469, 13678, 12884, 12088, + 11291, 10492, 9691, 8888, 8085, 7280, 6473, 5666, + 4858, 4050, 3240, 2431, 1620, 810, 0 +}; + //Generate a table index and table shift value using input value from a selected rate static void EnvelopeSelect( Bit8u val, Bit8u& index, Bit8u& shift ) { if ( val < 13 * 4 ) { //Rate 0 - 12 @@ -442,6 +465,7 @@ Bits Operator::TemplateVolume( ) { return vol; } //In sustain phase, but not sustaining, do regular release + /* fall through */ case RELEASE: vol += RateForward( releaseAdd );; if ( GCC_UNLIKELY(vol >= ENV_MAX) ) { @@ -757,6 +781,11 @@ void Channel::WriteC0(const Chip* chip, Bit8u val) { UpdateSynth(chip); } +void Channel::WritePan(Bit8u val) { + panLeft = PanLawTable[val & 0x7F]; + panRight = PanLawTable[0x7F - (val & 0x7F)]; +} + void Channel::UpdateSynth( const Chip* chip ) { //Select the new synth mode if ( chip->opl3Active ) { @@ -971,8 +1000,8 @@ Channel* Channel::BlockTemplate( Chip* chip, Bit32u samples, Bit32s* output ) { case sm3AMFM: case sm3FMAM: case sm3AMAM: - output[ i * 2 + 0 ] += sample & maskLeft; - output[ i * 2 + 1 ] += sample & maskRight; + output[ i * 2 + 0 ] += (sample * panLeft / 65535) & maskLeft; + output[ i * 2 + 1 ] += (sample * panRight / 65535) & maskRight; break; default: break; @@ -1388,6 +1417,10 @@ void Chip::Setup( Bit32u rate ) { WriteReg( i, 0xff ); WriteReg( i, 0x0 ); } + + for ( int i = 0; i < 18; i++ ) { + chan[i].WritePan( 0x40 ); + } } static bool doneTables = false; @@ -1614,5 +1647,14 @@ void Handler::Init( Bitu rate ) { chip.Setup( static_cast<Bit32u>(rate) ); } +void Handler::WritePan( Bit32u reg, Bit8u val ) +{ + Bitu index; + index = ((reg >> 4) & 0x10) | (reg & 0xf); + if (ChanOffsetTable[index]) { + Channel* regChan = (Channel*)(((char *)&chip) + ChanOffsetTable[index]); + regChan->WritePan(val); + } +} } //Namespace DBOPL diff --git a/src/chips/dosbox/dbopl.h b/src/chips/dosbox/dbopl.h index 73c0aa9..429735f 100644 --- a/src/chips/dosbox/dbopl.h +++ b/src/chips/dosbox/dbopl.h @@ -75,13 +75,13 @@ typedef enum { sm3AMAM, sm6Start, sm2Percussion, - sm3Percussion, + sm3Percussion } SynthMode; //Shifts for the values contained in chandata variable enum { SHIFT_KSLBASE = 16, - SHIFT_KEYCODE = 24, + SHIFT_KEYCODE = 24 }; struct Operator { @@ -91,7 +91,7 @@ public: MASK_KSR = 0x10, MASK_SUSTAIN = 0x20, MASK_VIBRATO = 0x40, - MASK_TREMOLO = 0x80, + MASK_TREMOLO = 0x80 }; typedef enum { @@ -99,7 +99,7 @@ public: RELEASE, SUSTAIN, DECAY, - ATTACK, + ATTACK } State; VolumeHandler volHandler; @@ -192,6 +192,9 @@ struct Channel { Bit8s maskLeft; //Sign extended values for both channel's panning Bit8s maskRight; + Bit16u panLeft; // Extended behavior, scale values for soft panning + Bit16u panRight; + //Forward the channel data to the operators of the channel void SetChanData( const Chip* chip, Bit32u data ); //Change in the chandata, check for new values and if we have to forward to operators @@ -201,6 +204,8 @@ struct Channel { void WriteB0( const Chip* chip, Bit8u val ); void WriteC0( const Chip* chip, Bit8u val ); + void WritePan( Bit8u val ); + //call this for the first channel template< bool opl3Mode > void GeneratePercussion( Chip* chip, Bit32s* output ); @@ -271,6 +276,7 @@ struct Chip { struct Handler { DBOPL::Chip chip; + void WritePan( Bit32u port, Bit8u val ); Bit32u WriteAddr( Bit32u port, Bit8u val ); void WriteReg( Bit32u addr, Bit8u val ); void GenerateArr(Bit32s *out, Bitu *samples); diff --git a/src/chips/dosbox_opl3.cpp b/src/chips/dosbox_opl3.cpp index 30fa38e..37f5e9c 100644 --- a/src/chips/dosbox_opl3.cpp +++ b/src/chips/dosbox_opl3.cpp @@ -1,3 +1,23 @@ +/* + * Interfaces over Yamaha OPL3 (YMF262) chip emulators + * + * Copyright (C) 2017-2018 Vitaly Novichkov (Wohlstand) + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #include "dosbox_opl3.h" #include "dosbox/dbopl.h" #include <new> @@ -41,6 +61,12 @@ void DosBoxOPL3::writeReg(uint16_t addr, uint8_t data) chip_r->WriteReg(static_cast<Bit32u>(addr), data); } +void DosBoxOPL3::writePan(uint16_t addr, uint8_t data) +{ + DBOPL::Handler *chip_r = reinterpret_cast<DBOPL::Handler*>(m_chip); + chip_r->WritePan(static_cast<Bit32u>(addr), data); +} + void DosBoxOPL3::nativeGenerateN(int16_t *output, size_t frames) { DBOPL::Handler *chip_r = reinterpret_cast<DBOPL::Handler*>(m_chip); diff --git a/src/chips/dosbox_opl3.h b/src/chips/dosbox_opl3.h index 1928026..eb79300 100644 --- a/src/chips/dosbox_opl3.h +++ b/src/chips/dosbox_opl3.h @@ -1,3 +1,23 @@ +/* + * Interfaces over Yamaha OPL3 (YMF262) chip emulators + * + * Copyright (C) 2017-2018 Vitaly Novichkov (Wohlstand) + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #ifndef DOSBOX_OPL3_H #define DOSBOX_OPL3_H @@ -14,6 +34,7 @@ public: void setRate(uint32_t rate) override; void reset() override; void writeReg(uint16_t addr, uint8_t data) override; + void writePan(uint16_t addr, uint8_t data) override; void nativePreGenerate() override {} void nativePostGenerate() override {} void nativeGenerateN(int16_t *output, size_t frames) override; diff --git a/src/chips/nuked/nukedopl3.c b/src/chips/nuked/nukedopl3.c index 87d3212..267e67a 100644 --- a/src/chips/nuked/nukedopl3.c +++ b/src/chips/nuked/nukedopl3.c @@ -1,16 +1,19 @@ /* * Copyright (C) 2013-2018 Alexey Khokholov (Nuke.YKT) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * Nuked OPL3 emulator. * Thanks: @@ -175,6 +178,32 @@ static const Bit8u ch_slot[18] = { }; /* + * Pan law table + */ + +static const Bit16u panlawtable[] = +{ + 65535, 65529, 65514, 65489, 65454, 65409, 65354, 65289, + 65214, 65129, 65034, 64929, 64814, 64689, 64554, 64410, + 64255, 64091, 63917, 63733, 63540, 63336, 63123, 62901, + 62668, 62426, 62175, 61914, 61644, 61364, 61075, 60776, + 60468, 60151, 59825, 59489, 59145, 58791, 58428, 58057, + 57676, 57287, 56889, 56482, 56067, 55643, 55211, 54770, + 54320, 53863, 53397, 52923, 52441, 51951, 51453, 50947, + 50433, 49912, 49383, 48846, 48302, 47750, 47191, + 46340, /* Center left */ + 46340, /* Center right */ + 45472, 44885, 44291, 43690, 43083, 42469, 41848, 41221, + 40588, 39948, 39303, 38651, 37994, 37330, 36661, 35986, + 35306, 34621, 33930, 33234, 32533, 31827, 31116, 30400, + 29680, 28955, 28225, 27492, 26754, 26012, 25266, 24516, + 23762, 23005, 22244, 21480, 20713, 19942, 19169, 18392, + 17613, 16831, 16046, 15259, 14469, 13678, 12884, 12088, + 11291, 10492, 9691, 8888, 8085, 7280, 6473, 5666, + 4858, 4050, 3240, 2431, 1620, 810, 0 +}; + +/* * Envelope generator */ @@ -1068,7 +1097,7 @@ void OPL3_Generate(opl3_chip *chip, Bit16s *buf) { accm += *chip->channel[ii].out[jj]; } - chip->mixbuff[0] += (Bit16s)(accm & chip->channel[ii].cha); + chip->mixbuff[0] += (Bit16s)((accm * chip->channel[ii].chl / 65535) & chip->channel[ii].cha); } for (ii = 15; ii < 18; ii++) @@ -1097,7 +1126,7 @@ void OPL3_Generate(opl3_chip *chip, Bit16s *buf) { accm += *chip->channel[ii].out[jj]; } - chip->mixbuff[1] += (Bit16s)(accm & chip->channel[ii].chb); + chip->mixbuff[1] += (Bit16s)((accm * chip->channel[ii].chr / 65535) & chip->channel[ii].chb); } for (ii = 33; ii < 36; ii++) @@ -1229,6 +1258,8 @@ void OPL3_Reset(opl3_chip *chip, Bit32u samplerate) chip->channel[channum].chtype = ch_2op; chip->channel[channum].cha = 0xffff; chip->channel[channum].chb = 0xffff; + chip->channel[channum].chl = 46340; + chip->channel[channum].chr = 46340; chip->channel[channum].ch_num = channum; OPL3_ChannelSetupAlg(&chip->channel[channum]); } @@ -1238,6 +1269,19 @@ void OPL3_Reset(opl3_chip *chip, Bit32u samplerate) chip->vibshift = 1; } +static void OPL3_ChannelWritePan(opl3_channel *channel, Bit8u data) +{ + channel->chl = panlawtable[data & 0x7F]; + channel->chr = panlawtable[0x7F - (data & 0x7F)]; +} + +void OPL3_WritePan(opl3_chip *chip, Bit16u reg, Bit8u v) +{ + Bit8u high = (reg >> 8) & 0x01; + Bit8u regm = reg & 0xff; + OPL3_ChannelWritePan(&chip->channel[9 * high + (regm & 0x0f)], v); +} + void OPL3_WriteReg(opl3_chip *chip, Bit16u reg, Bit8u v) { Bit8u high = (reg >> 8) & 0x01; diff --git a/src/chips/nuked/nukedopl3.h b/src/chips/nuked/nukedopl3.h index d57cf5f..268e8de 100644 --- a/src/chips/nuked/nukedopl3.h +++ b/src/chips/nuked/nukedopl3.h @@ -1,16 +1,19 @@ /* * Copyright (C) 2013-2018 Alexey Khokholov (Nuke.YKT) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * Nuked OPL3 emulator. * Thanks: @@ -98,6 +101,7 @@ struct _opl3_channel { Bit8u alg; Bit8u ksv; Bit16u cha, chb; + Bit16u chl, chr; Bit8u ch_num; }; @@ -150,6 +154,7 @@ void OPL3_GenerateResampled(opl3_chip *chip, Bit16s *buf); void OPL3_Reset(opl3_chip *chip, Bit32u samplerate); void OPL3_WriteReg(opl3_chip *chip, Bit16u reg, Bit8u v); void OPL3_WriteRegBuffered(opl3_chip *chip, Bit16u reg, Bit8u v); +void OPL3_WritePan(opl3_chip *chip, Bit16u reg, Bit8u v); void OPL3_GenerateStream(opl3_chip *chip, Bit16s *sndptr, Bit32u numsamples); void OPL3_GenerateStreamMix(opl3_chip *chip, Bit16s *sndptr, Bit32u numsamples); diff --git a/src/chips/nuked/nukedopl3_174.c b/src/chips/nuked/nukedopl3_174.c index 99eab16..8f818d4 100644 --- a/src/chips/nuked/nukedopl3_174.c +++ b/src/chips/nuked/nukedopl3_174.c @@ -230,6 +230,32 @@ static const Bit8u ch_slot[18] = { }; /* + * Pan law table + */ + +static const Bit16u panlawtable[] = +{ + 65535, 65529, 65514, 65489, 65454, 65409, 65354, 65289, + 65214, 65129, 65034, 64929, 64814, 64689, 64554, 64410, + 64255, 64091, 63917, 63733, 63540, 63336, 63123, 62901, + 62668, 62426, 62175, 61914, 61644, 61364, 61075, 60776, + 60468, 60151, 59825, 59489, 59145, 58791, 58428, 58057, + 57676, 57287, 56889, 56482, 56067, 55643, 55211, 54770, + 54320, 53863, 53397, 52923, 52441, 51951, 51453, 50947, + 50433, 49912, 49383, 48846, 48302, 47750, 47191, + 46340, /* Center left */ + 46340, /* Center right */ + 45472, 44885, 44291, 43690, 43083, 42469, 41848, 41221, + 40588, 39948, 39303, 38651, 37994, 37330, 36661, 35986, + 35306, 34621, 33930, 33234, 32533, 31827, 31116, 30400, + 29680, 28955, 28225, 27492, 26754, 26012, 25266, 24516, + 23762, 23005, 22244, 21480, 20713, 19942, 19169, 18392, + 17613, 16831, 16046, 15259, 14469, 13678, 12884, 12088, + 11291, 10492, 9691, 8888, 8085, 7280, 6473, 5666, + 4858, 4050, 3240, 2431, 1620, 810, 0 +}; + +/* * Envelope generator */ @@ -1082,7 +1108,7 @@ void OPL3v17_Generate(opl3_chip *chip, Bit16s *buf) { accm += *chip->channel[ii].out[jj]; } - chip->mixbuff[0] += (Bit16s)(accm & chip->channel[ii].cha); + chip->mixbuff[0] += (Bit16s)((accm * chip->channel[ii].chl / 65535) & chip->channel[ii].cha); } for (ii = 15; ii < 18; ii++) @@ -1121,7 +1147,7 @@ void OPL3v17_Generate(opl3_chip *chip, Bit16s *buf) { accm += *chip->channel[ii].out[jj]; } - chip->mixbuff[1] += (Bit16s)(accm & chip->channel[ii].chb); + chip->mixbuff[1] += (Bit16s)((accm * chip->channel[ii].chr / 65535) & chip->channel[ii].chb); } for (ii = 33; ii < 36; ii++) @@ -1220,8 +1246,10 @@ void OPL3v17_Reset(opl3_chip *chip, Bit32u samplerate) chip->channel[channum].out[2] = &chip->zeromod; chip->channel[channum].out[3] = &chip->zeromod; chip->channel[channum].chtype = ch_2op; - chip->channel[channum].cha = ~0; - chip->channel[channum].chb = ~0; + chip->channel[channum].cha = 0xffff; + chip->channel[channum].chb = 0xffff; + chip->channel[channum].chl = 46340; + chip->channel[channum].chr = 46340; OPL3_ChannelSetupAlg(&chip->channel[channum]); } chip->noise = 0x306600; @@ -1230,6 +1258,19 @@ void OPL3v17_Reset(opl3_chip *chip, Bit32u samplerate) chip->vibshift = 1; } +static void OPL3v17_ChannelWritePan(opl3_channel *channel, Bit8u data) +{ + channel->chl = panlawtable[data & 0x7F]; + channel->chr = panlawtable[0x7F - (data & 0x7F)]; +} + +void OPL3v17_WritePan(opl3_chip *chip, Bit16u reg, Bit8u v) +{ + Bit8u high = (reg >> 8) & 0x01; + Bit8u regm = reg & 0xff; + OPL3v17_ChannelWritePan(&chip->channel[9 * high + (regm & 0x0f)], v); +} + void OPL3v17_WriteReg(opl3_chip *chip, Bit16u reg, Bit8u v) { Bit8u high = (reg >> 8) & 0x01; diff --git a/src/chips/nuked/nukedopl3_174.h b/src/chips/nuked/nukedopl3_174.h index 240802f..cd18562 100644 --- a/src/chips/nuked/nukedopl3_174.h +++ b/src/chips/nuked/nukedopl3_174.h @@ -103,6 +103,7 @@ struct _opl3_channel { Bit8u alg; Bit8u ksv; Bit16u cha, chb; + Bit16u chl, chr; }; typedef struct _opl3_writebuf { @@ -142,6 +143,7 @@ struct _opl3_chip { void OPL3v17_Generate(opl3_chip *chip, Bit16s *buf); void OPL3v17_GenerateResampled(opl3_chip *chip, Bit16s *buf); void OPL3v17_Reset(opl3_chip *chip, Bit32u samplerate); +void OPL3v17_WritePan(opl3_chip *chip, Bit16u reg, Bit8u v); void OPL3v17_WriteReg(opl3_chip *chip, Bit16u reg, Bit8u v); void OPL3v17_WriteRegBuffered(opl3_chip *chip, Bit16u reg, Bit8u v); void OPL3v17_GenerateStream(opl3_chip *chip, Bit16s *sndptr, Bit32u numsamples); diff --git a/src/chips/nuked_opl3.cpp b/src/chips/nuked_opl3.cpp index 48e5c17..bbf4a25 100644 --- a/src/chips/nuked_opl3.cpp +++ b/src/chips/nuked_opl3.cpp @@ -1,3 +1,23 @@ +/* + * Interfaces over Yamaha OPL3 (YMF262) chip emulators + * + * Copyright (C) 2017-2018 Vitaly Novichkov (Wohlstand) + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #include "nuked_opl3.h" #include "nuked/nukedopl3.h" #include <cstring> @@ -37,6 +57,12 @@ void NukedOPL3::writeReg(uint16_t addr, uint8_t data) OPL3_WriteRegBuffered(chip_r, addr, data); } +void NukedOPL3::writePan(uint16_t addr, uint8_t data) +{ + opl3_chip *chip_r = reinterpret_cast<opl3_chip*>(m_chip); + OPL3_WritePan(chip_r, addr, data); +} + void NukedOPL3::nativeGenerate(int16_t *frame) { opl3_chip *chip_r = reinterpret_cast<opl3_chip*>(m_chip); diff --git a/src/chips/nuked_opl3.h b/src/chips/nuked_opl3.h index 1b34e9a..33baf54 100644 --- a/src/chips/nuked_opl3.h +++ b/src/chips/nuked_opl3.h @@ -1,3 +1,23 @@ +/* + * Interfaces over Yamaha OPL3 (YMF262) chip emulators + * + * Copyright (C) 2017-2018 Vitaly Novichkov (Wohlstand) + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #ifndef NUKED_OPL3_H #define NUKED_OPL3_H @@ -14,6 +34,7 @@ public: void setRate(uint32_t rate) override; void reset() override; void writeReg(uint16_t addr, uint8_t data) override; + void writePan(uint16_t addr, uint8_t data) override; void nativePreGenerate() override {} void nativePostGenerate() override {} void nativeGenerate(int16_t *frame) override; diff --git a/src/chips/nuked_opl3_v174.cpp b/src/chips/nuked_opl3_v174.cpp index e24b2e7..6bb06c2 100644 --- a/src/chips/nuked_opl3_v174.cpp +++ b/src/chips/nuked_opl3_v174.cpp @@ -1,3 +1,23 @@ +/* + * Interfaces over Yamaha OPL3 (YMF262) chip emulators + * + * Copyright (C) 2017-2018 Vitaly Novichkov (Wohlstand) + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #include "nuked_opl3_v174.h" #include "nuked/nukedopl3_174.h" #include <cstring> @@ -37,6 +57,12 @@ void NukedOPL3v174::writeReg(uint16_t addr, uint8_t data) OPL3v17_WriteReg(chip_r, addr, data); } +void NukedOPL3v174::writePan(uint16_t addr, uint8_t data) +{ + opl3_chip *chip_r = reinterpret_cast<opl3_chip*>(m_chip); + OPL3v17_WritePan(chip_r, addr, data); +} + void NukedOPL3v174::nativeGenerate(int16_t *frame) { opl3_chip *chip_r = reinterpret_cast<opl3_chip*>(m_chip); diff --git a/src/chips/nuked_opl3_v174.h b/src/chips/nuked_opl3_v174.h index f14221f..9eaeb19 100644 --- a/src/chips/nuked_opl3_v174.h +++ b/src/chips/nuked_opl3_v174.h @@ -1,3 +1,23 @@ +/* + * Interfaces over Yamaha OPL3 (YMF262) chip emulators + * + * Copyright (C) 2017-2018 Vitaly Novichkov (Wohlstand) + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #ifndef NUKED_OPL3174_H #define NUKED_OPL3174_H @@ -14,6 +34,7 @@ public: void setRate(uint32_t rate) override; void reset() override; void writeReg(uint16_t addr, uint8_t data) override; + void writePan(uint16_t addr, uint8_t data) override; void nativePreGenerate() override {} void nativePostGenerate() override {} void nativeGenerate(int16_t *frame) override; diff --git a/src/chips/opl_chip_base.h b/src/chips/opl_chip_base.h index 879d6da..723bbc9 100644 --- a/src/chips/opl_chip_base.h +++ b/src/chips/opl_chip_base.h @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2017-2018 Vitaly Novichkov (Wohlstand) + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #ifndef ONP_CHIP_BASE_H #define ONP_CHIP_BASE_H @@ -43,6 +61,9 @@ public: virtual void reset() = 0; virtual void writeReg(uint16_t addr, uint8_t data) = 0; + // extended + virtual void writePan(uint16_t addr, uint8_t data) { (void)addr; (void)data; } + virtual void nativePreGenerate() = 0; virtual void nativePostGenerate() = 0; virtual void nativeGenerate(int16_t *frame) = 0; diff --git a/src/cvt_xmi2mid.hpp b/src/cvt_xmi2mid.hpp index c164e3d..decb25c 100644 --- a/src/cvt_xmi2mid.hpp +++ b/src/cvt_xmi2mid.hpp @@ -57,6 +57,14 @@ typedef unsigned long uint32_t; #define XMI2MID_MIDI_STATUS_PITCH_WHEEL 0xE #define XMI2MID_MIDI_STATUS_SYSEX 0xF +#if 1 +#define XMI2MID_TRACE(...) +#else +#include <stdio.h> +#define XMI2MID_TRACE(fmt, ...) \ + fprintf(stderr, "XMI2MID: " fmt "\n", ## __VA_ARGS__) +#endif + typedef struct _xmi2mid_midi_event { int32_t time; uint8_t status; @@ -86,6 +94,12 @@ struct xmi2mid_xmi_ctx { midi_event *current; }; +typedef struct { + unsigned count; + uint8_t id[128]; + uint32_t offset[128]; +} xmi2mid_rbrn; + /* forward declarations of private functions */ static void xmi2mid_DeleteEventList(midi_event *mlist); static void xmi2mid_CreateNewEvent(struct xmi2mid_xmi_ctx *ctx, int32_t time); /* List manipulation */ @@ -96,7 +110,7 @@ static int xmi2mid_ConvertEvent(struct xmi2mid_xmi_ctx *ctx, const int32_t time, const uint8_t status, const int size); static int32_t xmi2mid_ConvertSystemMessage(struct xmi2mid_xmi_ctx *ctx, const int32_t time, const uint8_t status); -static int32_t xmi2mid_ConvertFiletoList(struct xmi2mid_xmi_ctx *ctx); +static int32_t xmi2mid_ConvertFiletoList(struct xmi2mid_xmi_ctx *ctx, const xmi2mid_rbrn *rbrn); static uint32_t xmi2mid_ConvertListToMTrk(struct xmi2mid_xmi_ctx *ctx, midi_event *mlist); static int xmi2mid_ParseXMI(struct xmi2mid_xmi_ctx *ctx); static int xmi2mid_ExtractTracks(struct xmi2mid_xmi_ctx *ctx); @@ -127,6 +141,16 @@ static uint32_t xmi2mid_read4(struct xmi2mid_xmi_ctx *ctx) return (b0 + ((uint32_t)b1<<8) + ((uint32_t)b2<<16) + ((uint32_t)b3<<24)); } +static uint32_t xmi2mid_read4le(struct xmi2mid_xmi_ctx *ctx) +{ + uint8_t b0, b1, b2, b3; + b3 = *ctx->src_ptr++; + b2 = *ctx->src_ptr++; + b1 = *ctx->src_ptr++; + b0 = *ctx->src_ptr++; + return (b3 + ((uint32_t)b2<<8) + ((uint32_t)b1<<16) + ((uint32_t)b0<<24)); +} + static void xmi2mid_copy(struct xmi2mid_xmi_ctx *ctx, char *b, uint32_t len) { memcpy(b, ctx->src_ptr, len); @@ -779,7 +803,7 @@ static int32_t xmi2mid_ConvertSystemMessage(struct xmi2mid_xmi_ctx *ctx, const i /* XMIDI and Midi to List * Returns XMIDI PPQN */ -static int32_t xmi2mid_ConvertFiletoList(struct xmi2mid_xmi_ctx *ctx) { +static int32_t xmi2mid_ConvertFiletoList(struct xmi2mid_xmi_ctx *ctx, const xmi2mid_rbrn *rbrn) { int32_t time = 0; uint32_t data; int32_t end = 0; @@ -787,6 +811,7 @@ static int32_t xmi2mid_ConvertFiletoList(struct xmi2mid_xmi_ctx *ctx) { int32_t tempo_set = 0; uint32_t status = 0; uint32_t file_size = xmi2mid_getsrcsize(ctx); + uint32_t begin = xmi2mid_getsrcpos(ctx); /* Set Drum track to correct setting if required */ if (ctx->convert_type == XMIDI_CONVERT_MT32_TO_GS127) { @@ -797,6 +822,32 @@ static int32_t xmi2mid_ConvertFiletoList(struct xmi2mid_xmi_ctx *ctx) { } while (!end && xmi2mid_getsrcpos(ctx) < file_size) { + uint32_t offset = xmi2mid_getsrcpos(ctx) - begin; + + /* search for branch to this offset */ + for (unsigned i = 0, n = rbrn->count; i < n; ++i) { + if (offset == rbrn->offset[i]) { + unsigned id = rbrn->id[i]; + + xmi2mid_CreateNewEvent(ctx, time); + + uint8_t *marker = (uint8_t *)malloc(sizeof(uint8_t)*8); + memcpy(marker, ":XBRN:", 6); + const char hex[] = "0123456789ABCDEF"; + marker[6] = hex[id >> 4]; + marker[7] = hex[id & 15]; + + XMI2MID_TRACE("Branch %u @ %u marker \"%.8s\"", + id, offset, marker); + + ctx->current->status = 0xFF; + ctx->current->data[0] = 0x06; + ctx->current->len = 8; + + ctx->current->buffer = marker; + } + } + xmi2mid_GetVLQ2(ctx, &data); time += data * 3; @@ -950,6 +1001,11 @@ static uint32_t xmi2mid_ExtractTracksFromXmi(struct xmi2mid_xmi_ctx *ctx) { uint32_t len = 0; int32_t begin; char buf[32]; + uint32_t branch[128]; + + /* clear branch points */ + for (unsigned i = 0; i < 128; ++i) + branch[i] = ~0u; while (xmi2mid_getsrcpos(ctx) < xmi2mid_getsrcsize(ctx) && num != ctx->info.tracks) { /* Read first 4 bytes of name */ @@ -963,6 +1019,36 @@ static uint32_t xmi2mid_ExtractTracksFromXmi(struct xmi2mid_xmi_ctx *ctx) { len = xmi2mid_read4(ctx); } + if (!memcmp(buf, "RBRN", 4)) { + begin = xmi2mid_getsrcpos(ctx); + uint32_t count; + + if (len < 2) { + /* insufficient data */ + goto rbrn_nodata; + } + + count = xmi2mid_read2(ctx); + if (len - 2 < 6 * count) { + /* insufficient data */ + goto rbrn_nodata; + } + + for (uint32_t i = 0; i < count; ++i) { + /* read branch point as byte offset */ + uint32_t ctlvalue = xmi2mid_read2(ctx); + uint32_t evtoffset = xmi2mid_read4le(ctx); + if(ctlvalue < 128) + branch[ctlvalue] = evtoffset; + XMI2MID_TRACE("RBRN %u/%u: id %u -> offset %u", + i + 1, count, ctlvalue, evtoffset); + } + + rbrn_nodata: + xmi2mid_seeksrc(ctx, begin + ((len + 1) & ~1)); + continue; + } + if (memcmp(buf, "EVNT", 4)) { xmi2mid_skipsrc(ctx, (len + 1) & ~1); continue; @@ -971,8 +1057,20 @@ static uint32_t xmi2mid_ExtractTracksFromXmi(struct xmi2mid_xmi_ctx *ctx) { ctx->list = NULL; begin = xmi2mid_getsrcpos(ctx); + /* Rearrange branches as structure */ + xmi2mid_rbrn rbrn; + rbrn.count = 0; + for (unsigned i = 0; i < 128; ++i) { + if (branch[i] != ~0u) { + unsigned index = rbrn.count; + rbrn.id[index] = i; + rbrn.offset[index] = branch[i]; + rbrn.count = index + 1; + } + } + /* Convert it */ - if (!(ppqn = xmi2mid_ConvertFiletoList(ctx))) { + if (!(ppqn = xmi2mid_ConvertFiletoList(ctx, &rbrn))) { /*_WM_GLOBAL_ERROR(__FUNCTION__, __LINE__, WM_ERR_CORUPT, NULL, 0);*/ break; } @@ -984,6 +1082,10 @@ static uint32_t xmi2mid_ExtractTracksFromXmi(struct xmi2mid_xmi_ctx *ctx) { /* go to start of next track */ xmi2mid_seeksrc(ctx, begin + ((len + 1) & ~1)); + + /* clear branch points */ + for (unsigned i = 0; i < 128; ++i) + branch[i] = ~0u; } /* Return how many were converted */ diff --git a/src/midi_sequencer.hpp b/src/midi_sequencer.hpp index 89b4619..a8cbfac 100644 --- a/src/midi_sequencer.hpp +++ b/src/midi_sequencer.hpp @@ -123,7 +123,16 @@ class BW_MidiSequencer //! [Non-Standard] Loop End point ST_LOOPEND = 0xE2,//size == 0 <CUSTOM> //! [Non-Standard] Raw OPL data - ST_RAWOPL = 0xE3//size == 0 <CUSTOM> + ST_RAWOPL = 0xE3,//size == 0 <CUSTOM> + + //! [Non-Standard] Loop Start point with support of multi-loops + ST_LOOPSTACK_BEGIN = 0xE4,//size == 1 <CUSTOM> + //! [Non-Standard] Loop End point with support of multi-loops + ST_LOOPSTACK_END = 0xE5,//size == 0 <CUSTOM> + //! [Non-Standard] Loop End point with support of multi-loops + ST_LOOPSTACK_BREAK = 0xE6,//size == 0 <CUSTOM> + //! [Non-Standard] Callback Trigger + ST_CALLBACK_TRIGGER = 0xE7//size == 1 <CUSTOM> }; //! Main type of event uint8_t type; @@ -221,10 +230,26 @@ class BW_MidiSequencer const BW_MidiRtInterface *m_interface; /** + * @brief Prepare internal events storage for track data building + * @param trackCount Count of tracks + */ + void buildSmfSetupReset(size_t trackCount); + + /** * @brief Build MIDI track data from the raw track data storage * @return true if everything successfully processed, or false on any error */ - bool buildTrackData(const std::vector<std::vector<uint8_t> > &trackData); + bool buildSmfTrackData(const std::vector<std::vector<uint8_t> > &trackData); + + /** + * @brief Build the time line from off loaded events + * @param tempos Pre-collected list of tempo events + * @param loopStartTicks Global loop start tick (give zero if no global loop presented) + * @param loopEndTicks Global loop end tick (give zero if no global loop presented) + */ + void buildTimeLine(const std::vector<MidiEvent> &tempos, + uint64_t loopStartTicks = 0, + uint64_t loopEndTicks = 0); /** * @brief Parse one event from raw MIDI track stream @@ -285,12 +310,16 @@ public: //! Id-Software Music File Format_IMF, //! EA-MUS format - Format_RSXX + Format_RSXX, + //! AIL's XMIDI format (act same as MIDI, but with exceptions) + Format_XMIDI }; private: //! Music file format type. MIDI is default. FileFormat m_format; + //! SMF format identifier. + unsigned m_smfFormat; //! Current position Position m_currentPosition; @@ -307,9 +336,9 @@ private: //! Delay after song playd before rejecting the output stream requests double m_postSongWaitDelay; - //! Loop start time + //! Global loop start time double m_loopStartTime; - //! Loop end time + //! Global loop end time double m_loopEndTime; //! Pre-processed track data storage @@ -336,12 +365,124 @@ private: double m_tempoMultiplier; //! Is song at end bool m_atEnd; - //! Loop start has reached - bool m_loopStart; - //! Loop end has reached, reset on handling - bool m_loopEnd; - //! Are loop points invalid? - bool m_invalidLoop; /*Loop points are invalid (loopStart after loopEnd or loopStart and loopEnd are on same place)*/ + + /** + * @brief Loop stack entry + */ + struct LoopStackEntry + { + //! is infinite loop + bool infinity; + //! Count of loops left to break. <0 - infinite loop + int loops; + //! Start position snapshot to return back + Position startPosition; + //! Loop start tick + uint64_t start; + //! Loop end tick + uint64_t end; + }; + + struct LoopState + { + //! Loop start has reached + bool caughtStart; + //! Loop end has reached, reset on handling + bool caughtEnd; + + //! Loop start has reached + bool caughtStackStart; + //! Loop next has reached, reset on handling + bool caughtStackEnd; + //! Loop break has reached, reset on handling + bool caughtStackBreak; + //! Skip next stack loop start event handling + bool skipStackStart; + + //! Are loop points invalid? + bool invalidLoop; /*Loop points are invalid (loopStart after loopEnd or loopStart and loopEnd are on same place)*/ + + //! Stack of nested loops + std::vector<LoopStackEntry> stack; + //! Current level on the loop stack (<0 - out of loop, 0++ - the index in the loop stack) + int stackLevel; + + /** + * @brief Reset loop state to initial + */ + void reset() + { + caughtStart = false; + caughtEnd = false; + caughtStackStart = false; + caughtStackEnd = false; + caughtStackBreak = false; + skipStackStart = false; + } + + void fullReset() + { + reset(); + invalidLoop = false; + stack.clear(); + stackLevel = -1; + } + + bool isStackEnd() + { + if(caughtStackEnd && (stackLevel >= 0) && (stackLevel < static_cast<int>(stack.size()))) + { + const LoopStackEntry &e = stack[stackLevel]; + if(e.infinity || (!e.infinity && e.loops > 0)) + return true; + } + return false; + } + + void stackUp(int count = 1) + { + stackLevel += count; + } + + void stackDown(int count = 1) + { + stackLevel -= count; + } + + LoopStackEntry &getCurStack() + { + if((stackLevel >= 0) && (stackLevel < static_cast<int>(stack.size()))) + return stack[stackLevel]; + if(stack.empty()) + { + LoopStackEntry d; + d.loops = 0; + d.infinity = 0; + d.start = 0; + d.end = 0; + stack.push_back(d); + } + return stack[0]; + } + } m_loop; + + //! Whether the nth track has playback disabled + std::vector<bool> m_trackDisable; + //! Index of solo track, or max for disabled + size_t m_trackSolo; + + /** + * @brief Handler of callback trigger events + * @param userData Pointer to user data (usually, context of something) + * @param trigger Value of the event which triggered this callback. + * @param track Identifier of the track which triggered this callback. + */ + typedef void (*TriggerHandler)(void *userData, unsigned trigger, size_t track); + + //! Handler of callback trigger events + TriggerHandler m_triggerHandler; + //! User data of callback trigger events + void *m_triggerUserData; //! File parsing errors string (adding into m_errorString on aborting of the process) std::string m_parsingErrorsString; @@ -354,7 +495,7 @@ public: /** * @brief Sets the RT interface - * @param interface Pre-Initialized interface structure (pointer will be taken) + * @param intrf Pre-Initialized interface structure (pointer will be taken) */ void setInterface(const BW_MidiRtInterface *intrf); @@ -365,6 +506,33 @@ public: FileFormat getFormat(); /** + * @brief Returns the number of tracks + * @return Track count + */ + size_t getTrackCount() const; + + /** + * @brief Sets whether a track is playing + * @param track Track identifier + * @param enable Whether to enable track playback + * @return true on success, false if there was no such track + */ + bool setTrackEnabled(size_t track, bool enable); + + /** + * @brief Enables or disables solo on a track + * @param track Identifier of solo track, or max to disable + */ + void setSoloTrack(size_t track); + + /** + * @brief Defines a handler for callback trigger events + * @param handler Handler to invoke from the sequencer when triggered, or NULL. + * @param userData Instance of the library + */ + void setTriggerHandler(TriggerHandler handler, void *userData); + + /** * @brief Get the list of CMF instruments (CMF only) * @return Array of raw CMF instruments entries */ @@ -496,6 +664,68 @@ public: * @param tempo Tempo multiplier: 1.0 - original tempo. >1 - faster, <1 - slower */ void setTempo(double tempo); + +private: + /** + * @brief Load file as Id-software-Music-File (Wolfenstein) + * @param fr Context with opened file + * @return true on successful load + */ + bool parseIMF(FileAndMemReader &fr); + + /** + * @brief Load file as EA MUS + * @param fr Context with opened file + * @return true on successful load + */ + bool parseRSXX(FileAndMemReader &fr); + + /** + * @brief Load file as Creative Music Format + * @param fr Context with opened file + * @return true on successful load + */ + bool parseCMF(FileAndMemReader &fr); + + /** + * @brief Load file as GMD/MUS files (ScummVM) + * @param fr Context with opened file + * @return true on successful load + */ + bool parseGMF(FileAndMemReader &fr); + + /** + * @brief Load file as Standard MIDI file + * @param fr Context with opened file + * @return true on successful load + */ + bool parseSMF(FileAndMemReader &fr); + + /** + * @brief Load file as RIFF MIDI + * @param fr Context with opened file + * @return true on successful load + */ + bool parseRMI(FileAndMemReader &fr); + +#ifndef BWMIDI_DISABLE_MUS_SUPPORT + /** + * @brief Load file as DMX MUS file (Doom) + * @param fr Context with opened file + * @return true on successful load + */ + bool parseMUS(FileAndMemReader &fr); +#endif + +#ifndef BWMIDI_DISABLE_XMI_SUPPORT + /** + * @brief Load file as AIL eXtended MIdi + * @param fr Context with opened file + * @return true on successful load + */ + bool parseXMI(FileAndMemReader &fr); +#endif + }; #endif /* BISQUIT_AND_WOHLSTANDS_MIDI_SEQUENCER_HHHHPPP */ diff --git a/src/midi_sequencer_impl.hpp b/src/midi_sequencer_impl.hpp index ce70c3e..0fe6192 100644 --- a/src/midi_sequencer_impl.hpp +++ b/src/midi_sequencer_impl.hpp @@ -173,8 +173,15 @@ void BW_MidiSequencer::MidiTrackRow::sortEvents(bool *noteStates) controllers.reserve(events.size()); controllers.push_back(events[i]); } - else if((events[i].type == MidiEvent::T_SPECIAL) - && ((events[i].subtype == MidiEvent::ST_MARKER) || (events[i].subtype == MidiEvent::ST_DEVICESWITCH))) + else if((events[i].type == MidiEvent::T_SPECIAL) && ( + (events[i].subtype == MidiEvent::ST_MARKER) || + (events[i].subtype == MidiEvent::ST_DEVICESWITCH) || + (events[i].subtype == MidiEvent::ST_LOOPSTART) || + (events[i].subtype == MidiEvent::ST_LOOPEND) || + (events[i].subtype == MidiEvent::ST_LOOPSTACK_BEGIN) || + (events[i].subtype == MidiEvent::ST_LOOPSTACK_END) || + (events[i].subtype == MidiEvent::ST_LOOPSTACK_BREAK) + )) { if(metas.capacity() == 0) metas.reserve(events.size()); @@ -262,6 +269,7 @@ void BW_MidiSequencer::MidiTrackRow::sortEvents(bool *noteStates) BW_MidiSequencer::BW_MidiSequencer() : m_interface(NULL), m_format(Format_MIDI), + m_smfFormat(0), m_loopEnabled(false), m_fullSongTimeLength(0.0), m_postSongWaitDelay(1.0), @@ -269,10 +277,13 @@ BW_MidiSequencer::BW_MidiSequencer() : m_loopEndTime(-1.0), m_tempoMultiplier(1.0), m_atEnd(false), - m_loopStart(false), - m_loopEnd(false), - m_invalidLoop(false) -{} + m_trackSolo(~(size_t)0), + m_triggerHandler(NULL), + m_triggerUserData(NULL) +{ + m_loop.reset(); + m_loop.invalidLoop = false; +} BW_MidiSequencer::~BW_MidiSequencer() {} @@ -307,6 +318,31 @@ BW_MidiSequencer::FileFormat BW_MidiSequencer::getFormat() return m_format; } +size_t BW_MidiSequencer::getTrackCount() const +{ + return m_trackData.size(); +} + +bool BW_MidiSequencer::setTrackEnabled(size_t track, bool enable) +{ + size_t trackCount = m_trackData.size(); + if(track >= trackCount) + return false; + m_trackDisable[track] = !enable; + return true; +} + +void BW_MidiSequencer::setSoloTrack(size_t track) +{ + m_trackSolo = track; +} + +void BW_MidiSequencer::setTriggerHandler(TriggerHandler handler, void *userData) +{ + m_triggerHandler = handler; + m_triggerUserData = userData; +} + const std::vector<BW_MidiSequencer::CmfInstrument> BW_MidiSequencer::getRawCmfInstruments() { return m_cmfInstruments; @@ -357,21 +393,39 @@ double BW_MidiSequencer::getTempoMultiplier() return m_tempoMultiplier; } -bool BW_MidiSequencer::buildTrackData(const std::vector<std::vector<uint8_t> > &trackData) + +void BW_MidiSequencer::buildSmfSetupReset(size_t trackCount) { m_fullSongTimeLength = 0.0; m_loopStartTime = -1.0; m_loopEndTime = -1.0; + m_trackDisable.clear(); + m_trackSolo = ~(size_t)0; m_musTitle.clear(); m_musCopyright.clear(); m_musTrackTitles.clear(); m_musMarkers.clear(); m_trackData.clear(); - const size_t trackCount = trackData.size(); m_trackData.resize(trackCount, MidiTrackQueue()); + m_trackDisable.resize(trackCount); + + m_loop.reset(); + m_loop.invalidLoop = false; + + m_currentPosition.track.clear(); + m_currentPosition.track.resize(trackCount); +} + +bool BW_MidiSequencer::buildSmfTrackData(const std::vector<std::vector<uint8_t> > &trackData) +{ + const size_t trackCount = trackData.size(); + buildSmfSetupReset(trackCount); + + bool gotGlobalLoopStart = false, + gotGlobalLoopEnd = false, + gotStackLoopStart = false, + gotLoopEventInThisRow = false; - m_invalidLoop = false; - bool gotLoopStart = false, gotLoopEnd = false, gotLoopEventInThisRow = false; //! Tick position of loop start tag uint64_t loopStartTicks = 0; //! Tick position of loop end tag @@ -381,17 +435,14 @@ bool BW_MidiSequencer::buildTrackData(const std::vector<std::vector<uint8_t> > & //! Cache for error message strign char error[150]; - m_currentPosition.track.clear(); - m_currentPosition.track.resize(trackCount); - //! Caches note on/off states. bool noteStates[16 * 255]; /* This is required to carefully detect zero-length notes * * and avoid a move of "note-off" event over "note-on" while sort. * * Otherwise, after sort those notes will play infinite sound */ - //Tempo change events - std::vector<MidiEvent> tempos; + //! Tempo change events list + std::vector<MidiEvent> temposList; /* * TODO: Make this be safer for memory in case of broken input data @@ -458,26 +509,26 @@ bool BW_MidiSequencer::buildTrackData(const std::vector<std::vector<uint8_t> > & if(event.subtype == MidiEvent::ST_TEMPOCHANGE) { event.absPosition = abs_position; - tempos.push_back(event); + temposList.push_back(event); } - else if(!m_invalidLoop && (event.subtype == MidiEvent::ST_LOOPSTART)) + else if(!m_loop.invalidLoop && (event.subtype == MidiEvent::ST_LOOPSTART)) { /* * loopStart is invalid when: * - starts together with loopEnd * - appears more than one time in same MIDI file */ - if(gotLoopStart || gotLoopEventInThisRow) - m_invalidLoop = true; + if(gotGlobalLoopStart || gotLoopEventInThisRow) + m_loop.invalidLoop = true; else { - gotLoopStart = true; + gotGlobalLoopStart = true; loopStartTicks = abs_position; } //In this row we got loop event, register this! gotLoopEventInThisRow = true; } - else if(!m_invalidLoop && (event.subtype == MidiEvent::ST_LOOPEND)) + else if(!m_loop.invalidLoop && (event.subtype == MidiEvent::ST_LOOPEND)) { /* * loopEnd is invalid when: @@ -485,16 +536,71 @@ bool BW_MidiSequencer::buildTrackData(const std::vector<std::vector<uint8_t> > & * - starts together with loopStart * - appars more than one time in same MIDI file */ - if(gotLoopEnd || gotLoopEventInThisRow) - m_invalidLoop = true; + if(gotGlobalLoopEnd || gotLoopEventInThisRow) + { + m_loop.invalidLoop = true; + if(m_interface->onDebugMessage) + { + m_interface->onDebugMessage( + m_interface->onDebugMessage_userData, + "== Invalid loop detected! %s %s ==", + (gotGlobalLoopEnd ? "[Caught more than 1 loopEnd!]" : ""), + (gotLoopEventInThisRow ? "[loopEnd in same row as loopStart!]" : "") + ); + } + } else { - gotLoopEnd = true; + gotGlobalLoopEnd = true; loopEndTicks = abs_position; } - //In this row we got loop event, register this! + // In this row we got loop event, register this! gotLoopEventInThisRow = true; } + else if(!m_loop.invalidLoop && (event.subtype == MidiEvent::ST_LOOPSTACK_BEGIN)) + { + if(!gotStackLoopStart) + { + if(!gotGlobalLoopStart) + loopStartTicks = abs_position; + gotStackLoopStart = true; + } + + m_loop.stackUp(); + if(m_loop.stackLevel >= static_cast<int>(m_loop.stack.size())) + { + LoopStackEntry e; + e.loops = event.data[0]; + e.infinity = (event.data[0] == 0); + e.start = abs_position; + e.end = abs_position; + m_loop.stack.push_back(e); + } + } + else if(!m_loop.invalidLoop && + ((event.subtype == MidiEvent::ST_LOOPSTACK_END) || + (event.subtype == MidiEvent::ST_LOOPSTACK_BREAK)) + ) + { + if(m_loop.stackLevel <= -1) + { + m_loop.invalidLoop = true; // Caught loop end without of loop start! + if(m_interface->onDebugMessage) + { + m_interface->onDebugMessage( + m_interface->onDebugMessage_userData, + "== Invalid loop detected! [Caught loop end without of loop start] ==" + ); + } + } + else + { + if(loopEndTicks < abs_position) + loopEndTicks = abs_position; + m_loop.getCurStack().end = abs_position; + m_loop.stackDown(); + } + } } if(event.subtype != MidiEvent::ST_ENDTRACK)//Don't try to read delta after EndOfTrack event! @@ -527,16 +633,35 @@ bool BW_MidiSequencer::buildTrackData(const std::vector<std::vector<uint8_t> > & m_currentPosition.track[tk].pos = m_trackData[tk].begin(); } - if(gotLoopStart && !gotLoopEnd) + if(gotGlobalLoopStart && !gotGlobalLoopEnd) { - gotLoopEnd = true; + gotGlobalLoopEnd = true; loopEndTicks = ticksSongLength; } //loopStart must be located before loopEnd! if(loopStartTicks >= loopEndTicks) - m_invalidLoop = true; + { + m_loop.invalidLoop = true; + if(m_interface->onDebugMessage && (gotGlobalLoopStart || gotGlobalLoopEnd)) + { + m_interface->onDebugMessage( + m_interface->onDebugMessage_userData, + "== Invalid loop detected! [loopEnd is going before loopStart] ==" + ); + } + } + + buildTimeLine(temposList, loopStartTicks, loopEndTicks); + + return true; +} +void BW_MidiSequencer::buildTimeLine(const std::vector<MidiEvent> &tempos, + uint64_t loopStartTicks, + uint64_t loopEndTicks) +{ + const size_t trackCount = m_trackData.size(); /********************************************************************************/ //Calculate time basing on collected tempo events /********************************************************************************/ @@ -580,7 +705,7 @@ bool BW_MidiSequencer::buildTrackData(const std::vector<std::vector<uint8_t> > & do { TempoChangePoint tempoMarker; - MidiEvent &tempoPoint = tempos[tempo_change_index]; + const MidiEvent &tempoPoint = tempos[tempo_change_index]; tempoMarker.absPos = tempoPoint.absPosition; tempoMarker.tempo = m_invDeltaTicks * fraction<uint64_t>(readBEint(tempoPoint.data.data(), tempoPoint.data.size())); points.push_back(tempoMarker); @@ -642,7 +767,7 @@ bool BW_MidiSequencer::buildTrackData(const std::vector<std::vector<uint8_t> > & } //Capture loop points time positions - if(!m_invalidLoop) + if(!m_loop.invalidLoop) { // Set loop points times if(loopStartTicks == pos.absPos) @@ -669,6 +794,8 @@ bool BW_MidiSequencer::buildTrackData(const std::vector<std::vector<uint8_t> > & m_trackBeginPosition = m_currentPosition; //Initial loop position will begin at begin of track until passing of the loop point m_loopBeginPosition = m_currentPosition; + //Set lowest level of the loop stack + m_loop.stackLevel = -1; /********************************************************************************/ //Resolve "hell of all times" of too short drum notes: @@ -788,7 +915,6 @@ bool BW_MidiSequencer::buildTrackData(const std::vector<std::vector<uint8_t> > & } #endif - return true; } bool BW_MidiSequencer::processEvents(bool isSeek) @@ -798,9 +924,14 @@ bool BW_MidiSequencer::processEvents(bool isSeek) if(m_atEnd) return false;//No more events in the queue - m_loopEnd = false; + m_loop.caughtEnd = false; const size_t TrackCount = m_currentPosition.track.size(); - const Position RowBeginPosition(m_currentPosition); + const Position rowBeginPosition(m_currentPosition); + bool doLoopJump = false; + unsigned caughLoopStart = 0; + unsigned caughLoopStackStart = 0; + unsigned caughLoopStackEnds = 0; + unsigned caughLoopStackBreaks = 0; #ifdef DEBUG_TIME_CALCULATION double maxTime = 0.0; @@ -823,14 +954,41 @@ bool BW_MidiSequencer::processEvents(bool isSeek) { const MidiEvent &evt = track.pos->events[i]; #ifdef ENABLE_BEGIN_SILENCE_SKIPPING - if(!CurrentPositionNew.began && (evt.type == MidiEvent::T_NOTEON)) - CurrentPositionNew.began = true; + if(!m_currentPosition.began && (evt.type == MidiEvent::T_NOTEON)) + m_currentPosition.began = true; #endif if(isSeek && (evt.type == MidiEvent::T_NOTEON)) continue; handleEvent(tk, evt, track.lastHandledEvent); - if(m_loopEnd) + + if(m_loop.caughtStart) + { + caughLoopStart++; + m_loop.caughtStart = false; + } + + if(m_loop.caughtStackStart) + { + caughLoopStackStart++; + m_loop.caughtStackStart = false; + } + + if(m_loop.caughtStackBreak) + { + caughLoopStackBreaks++; + m_loop.caughtStackBreak = false; + } + + if(m_loop.caughtEnd || m_loop.isStackEnd()) + { + if(m_loop.caughtStackEnd) + { + m_loop.caughtStackEnd = false; + caughLoopStackEnds++; + } + doLoopJump = true; break;//Stop event handling on catching loopEnd event! + } } #ifdef DEBUG_TIME_CALCULATION @@ -843,6 +1001,9 @@ bool BW_MidiSequencer::processEvents(bool isSeek) track.delay += track.pos->delay; track.pos++; } + + if(doLoopJump) + break; } } @@ -875,21 +1036,81 @@ bool BW_MidiSequencer::processEvents(bool isSeek) fraction<uint64_t> t = shortest * m_tempo; #ifdef ENABLE_BEGIN_SILENCE_SKIPPING - if(CurrentPositionNew.began) + if(m_currentPosition.began) #endif m_currentPosition.wait += t.value(); //if(shortest > 0) UI.PrintLn("Delay %ld (%g)", shortest, (double)t.valuel()); - if(m_loopStart) + if(caughLoopStart > 0) + m_loopBeginPosition = rowBeginPosition; + + if(caughLoopStackStart > 0) + { + while(caughLoopStackStart > 0) + { + m_loop.stackUp(); + LoopStackEntry &s = m_loop.getCurStack(); + s.startPosition = rowBeginPosition; + caughLoopStackStart--; + } + return true; + } + + if(caughLoopStackBreaks > 0) { - m_loopBeginPosition = RowBeginPosition; - m_loopStart = false; + while(caughLoopStackBreaks > 0) + { + LoopStackEntry &s = m_loop.getCurStack(); + s.loops = 0; + s.infinity = false; + // Quit the loop + m_loop.stackDown(); + caughLoopStackBreaks--; + } } - if(shortest_no || m_loopEnd) + if(caughLoopStackEnds > 0) + { + while(caughLoopStackEnds > 0) + { + LoopStackEntry &s = m_loop.getCurStack(); + if(s.infinity) + { + m_currentPosition = s.startPosition; + m_loop.skipStackStart = true; + return true; + } + else + if(s.loops >= 0) + { + s.loops--; + if(s.loops > 0) + { + m_currentPosition = s.startPosition; + m_loop.skipStackStart = true; + return true; + } + else + { + // Quit the loop + m_loop.stackDown(); + } + } + else + { + // Quit the loop + m_loop.stackDown(); + } + caughLoopStackEnds--; + } + + return true; + } + + if(shortest_no || m_loop.caughtEnd) { //Loop if song end or loop end point has reached - m_loopEnd = false; + m_loop.caughtEnd = false; shortest = 0; if(!m_loopEnabled) { @@ -1026,6 +1247,46 @@ BW_MidiSequencer::MidiEvent BW_MidiSequencer::parseEvent(const uint8_t **pptr, c evt.data.clear();//Data is not needed return evt; } + + if(data.substr(0, 10) == "loopstart=") + { + evt.type = MidiEvent::T_SPECIAL; + evt.subtype = MidiEvent::ST_LOOPSTACK_BEGIN; + uint8_t loops = static_cast<uint8_t>(atoi(data.substr(10).c_str())); + evt.data.clear(); + evt.data.push_back(loops); + + if(m_interface->onDebugMessage) + { + m_interface->onDebugMessage( + m_interface->onDebugMessage_userData, + "Stack Marker Loop Start at %d to %d level with %d loops", + m_loop.stackLevel, + m_loop.stackLevel + 1, + loops + ); + } + return evt; + } + + if(data.substr(0, 8) == "loopend=") + { + evt.type = MidiEvent::T_SPECIAL; + evt.subtype = MidiEvent::ST_LOOPSTACK_END; + evt.data.clear(); + + if(m_interface->onDebugMessage) + { + m_interface->onDebugMessage( + m_interface->onDebugMessage_userData, + "Stack Marker Loop %s at %d to %d level", + (evt.subtype == MidiEvent::ST_LOOPSTACK_END ? "End" : "Break"), + m_loop.stackLevel, + m_loop.stackLevel - 1 + ); + } + return evt; + } } if(evtype == MidiEvent::ST_ENDTRACK) @@ -1095,13 +1356,67 @@ BW_MidiSequencer::MidiEvent BW_MidiSequencer::parseEvent(const uint8_t **pptr, c if((evType == MidiEvent::T_NOTEON) && (evt.data[1] == 0)) { evt.type = MidiEvent::T_NOTEOFF; // Note ON with zero velocity is Note OFF! - } //111'th loopStart controller (RPG Maker and others) - else if((evType == MidiEvent::T_CTRLCHANGE) && (evt.data[0] == 111)) + } + else + if(evType == MidiEvent::T_CTRLCHANGE) { - //Change event type to custom Loop Start event and clear data - evt.type = MidiEvent::T_SPECIAL; - evt.subtype = MidiEvent::ST_LOOPSTART; - evt.data.clear(); + //111'th loopStart controller (RPG Maker and others) + if((m_format == Format_MIDI) && (evt.data[0] == 111)) + { + //Change event type to custom Loop Start event and clear data + evt.type = MidiEvent::T_SPECIAL; + evt.subtype = MidiEvent::ST_LOOPSTART; + evt.data.clear(); + } + + if(m_format == Format_XMIDI) + { + switch(evt.data[0]) + { + case 116: // For Loop Controller + evt.type = MidiEvent::T_SPECIAL; + evt.subtype = MidiEvent::ST_LOOPSTACK_BEGIN; + evt.data[0] = evt.data[1]; + evt.data.pop_back(); + + if(m_interface->onDebugMessage) + { + m_interface->onDebugMessage( + m_interface->onDebugMessage_userData, + "Stack XMI Loop Start at %d to %d level with %d loops", + m_loop.stackLevel, + m_loop.stackLevel + 1, + evt.data[0] + ); + } + break; + + case 117: // Next/Break Loop Controller + evt.type = MidiEvent::T_SPECIAL; + evt.subtype = evt.data[1] < 64 ? + MidiEvent::ST_LOOPSTACK_BREAK : + MidiEvent::ST_LOOPSTACK_END; + evt.data.clear(); + + if(m_interface->onDebugMessage) + { + m_interface->onDebugMessage( + m_interface->onDebugMessage_userData, + "Stack XMI Loop %s at %d to %d level", + (evt.subtype == MidiEvent::ST_LOOPSTACK_END ? "End" : "Break"), + m_loop.stackLevel, + m_loop.stackLevel - 1 + ); + } + break; + + case 119: // Callback Trigger + evt.type = MidiEvent::T_SPECIAL; + evt.subtype = MidiEvent::ST_CALLBACK_TRIGGER; + evt.data.assign(1, evt.data[1]); + break; + } + } } return evt; @@ -1122,6 +1437,20 @@ BW_MidiSequencer::MidiEvent BW_MidiSequencer::parseEvent(const uint8_t **pptr, c void BW_MidiSequencer::handleEvent(size_t track, const BW_MidiSequencer::MidiEvent &evt, int32_t &status) { + if(track == 0 && m_smfFormat < 2 && evt.type == MidiEvent::T_SPECIAL && + (evt.subtype == MidiEvent::ST_TEMPOCHANGE || evt.subtype == MidiEvent::ST_TIMESIGNATURE)) + { + /* never reject track 0 timing events on SMF format != 2 + note: multi-track XMI convert to format 2 SMF */ + } + else + { + if(m_trackSolo != ~(size_t)0 && track != m_trackSolo) + return; + if(m_trackDisable[track]) + return; + } + if(m_interface->onEvent) { m_interface->onEvent(m_interface->onEvent_userData, @@ -1148,7 +1477,7 @@ void BW_MidiSequencer::handleEvent(size_t track, const BW_MidiSequencer::MidiEve // Special event FF uint8_t evtype = evt.subtype; uint64_t length = (uint64_t)evt.data.size(); - std::string data(length ? (const char *)evt.data.data() : 0, (size_t)length); + const char *data(length ? (const char *)evt.data.data() : ""); if(evtype == MidiEvent::ST_ENDTRACK)//End Of Track { @@ -1171,9 +1500,9 @@ void BW_MidiSequencer::handleEvent(size_t track, const BW_MidiSequencer::MidiEve if(evtype == MidiEvent::ST_DEVICESWITCH) { if(m_interface->onDebugMessage) - m_interface->onDebugMessage(m_interface->onDebugMessage_userData, "Switching another device: %s", data.c_str()); + m_interface->onDebugMessage(m_interface->onDebugMessage_userData, "Switching another device: %s", data); if(m_interface->rt_deviceSwitch) - m_interface->rt_deviceSwitch(m_interface->rtUserData, track, data.c_str(), data.size()); + m_interface->rt_deviceSwitch(m_interface->rtUserData, track, data, length); return; } @@ -1181,21 +1510,58 @@ void BW_MidiSequencer::handleEvent(size_t track, const BW_MidiSequencer::MidiEve // UI.PrintLn("Meta %d: %s", evtype, data.c_str()); //Turn on Loop handling when loop is enabled - if(m_loopEnabled && !m_invalidLoop) + if(m_loopEnabled && !m_loop.invalidLoop) { if(evtype == MidiEvent::ST_LOOPSTART) // Special non-spec MIDI loop Start point { - m_loopStart = true; + m_loop.caughtStart = true; return; } if(evtype == MidiEvent::ST_LOOPEND) // Special non-spec MIDI loop End point { - m_loopEnd = true; + m_loop.caughtEnd = true; + return; + } + + if(evtype == MidiEvent::ST_LOOPSTACK_BEGIN) + { + if(m_loop.skipStackStart) + { + m_loop.skipStackStart = false; + return; + } + LoopStackEntry &s = m_loop.stack[(m_loop.stackLevel + 1)]; + s.loops = (int)data[0]; + s.infinity = (data[0] == 0); + m_loop.caughtStackStart = true; + return; + } + + if(evtype == MidiEvent::ST_LOOPSTACK_END) + { + m_loop.caughtStackEnd = true; + return; + } + + if(evtype == MidiEvent::ST_LOOPSTACK_BREAK) + { + m_loop.caughtStackBreak = true; return; } } + if(evtype == MidiEvent::ST_CALLBACK_TRIGGER) + { +#if 0 /* Print all callback triggers events */ + if(m_interface->onDebugMessage) + m_interface->onDebugMessage(m_interface->onDebugMessage_userData, "Callback Trigger: %02X", evt.data[0]); +#endif + if(m_triggerHandler) + m_triggerHandler(m_triggerUserData, data[0], track); + return; + } + if(evtype == MidiEvent::ST_RAWOPL) // Special non-spec ADLMIDI special for IMF playback: Direct poke to AdLib { if(m_interface->rt_rawOPL) @@ -1346,7 +1712,7 @@ double BW_MidiSequencer::seek(double seconds, const double granularity) * * TODO: Detect & set loopStart position on load time to don't break loop while seeking */ - m_loopStart = false; + m_loop.caughtStart = false; while((m_currentPosition.absTimePosition < seconds) && (m_currentPosition.absTimePosition < m_fullSongTimeLength)) @@ -1404,9 +1770,10 @@ double BW_MidiSequencer::getLoopEnd() void BW_MidiSequencer::rewind() { m_currentPosition = m_trackBeginPosition; - m_atEnd = false; - m_loopStart = true; - m_loopEnd = false; + m_atEnd = false; + + m_loop.reset(); + m_loop.caughtStart = true; } void BW_MidiSequencer::setTempo(double tempo) @@ -1451,13 +1818,69 @@ public: } }; +/** + * @brief Detect the EA-MUS file format + * @param head Header part + * @param fr Context with opened file data + * @return true if given file was identified as EA-MUS + */ +static bool detectRSXX(const char *head, FileAndMemReader &fr) +{ + char headerBuf[7] = ""; + bool ret = false; + + // Try to identify RSXX format + if(head[0] == 0x7D) + { + fr.seek(0x6D, FileAndMemReader::SET); + fr.read(headerBuf, 1, 6); + if(std::memcmp(headerBuf, "rsxx}u", 6) == 0) + ret = true; + } + + fr.seek(0, FileAndMemReader::SET); + return ret; +} + +/** + * @brief Detect the Id-software Music File format + * @param head Header part + * @param fr Context with opened file data + * @return true if given file was identified as IMF + */ +static bool detectIMF(const char *head, FileAndMemReader &fr) +{ + uint8_t raw[4]; + size_t end = static_cast<size_t>(head[0]) + 256 * static_cast<size_t>(head[1]); + + if(!end || (end & 3)) + return false; + + size_t backup_pos = fr.tell(); + int64_t sum1 = 0, sum2 = 0; + fr.seek(2, FileAndMemReader::SET); + + for(unsigned n = 0; n < 42; ++n) + { + if(fr.read(raw, 1, 4) != 4) + break; + int64_t value1 = raw[0]; + value1 += raw[1] << 8; + sum1 += value1; + int64_t value2 = raw[2]; + value2 += raw[3] << 8; + sum2 += value2; + } + + fr.seek(static_cast<long>(backup_pos), FileAndMemReader::SET); + + return (sum1 > sum2); +} + bool BW_MidiSequencer::loadMIDI(FileAndMemReader &fr) { size_t fsize; BW_MidiSequencer_UNUSED(fsize); - std::vector<std::vector<uint8_t> > rawTrackData; - //! Temp buffer for conversion - BufferGuard<uint8_t> cvt_buf; m_parsingErrorsString.clear(); assert(m_interface);// MIDI output interface must be defined! @@ -1472,21 +1895,15 @@ bool BW_MidiSequencer::loadMIDI(FileAndMemReader &fr) } m_atEnd = false; - m_loopStart = true; - m_invalidLoop = false; + m_loop.fullReset(); + m_loop.caughtStart = true; m_format = Format_MIDI; - - bool is_GMF = false; // GMD/MUS files (ScummVM) - bool is_IMF = false; // IMF - bool is_CMF = false; // Creative Music format (CMF/CTMF) - bool is_RSXX = false; // RSXX, such as Cartooners + m_smfFormat = 0; const size_t headerSize = 4 + 4 + 2 + 2 + 2; // 14 char headerBuf[headerSize] = ""; - size_t DeltaTicks = 192, TrackCount = 1; -riffskip: fsize = fr.read(headerBuf, 1, headerSize); if(fsize < headerSize) { @@ -1494,239 +1911,449 @@ riffskip: return false; } + + if(std::memcmp(headerBuf, "MThd\0\0\0\6", 8) == 0) + { + fr.seek(0, FileAndMemReader::SET); + return parseSMF(fr); + } + if(std::memcmp(headerBuf, "RIFF", 4) == 0) { - fr.seek(6l, FileAndMemReader::CUR); - goto riffskip; + fr.seek(0, FileAndMemReader::SET); + return parseRMI(fr); } if(std::memcmp(headerBuf, "GMF\x1", 4) == 0) { - // GMD/MUS files (ScummVM) - fr.seek(7 - static_cast<long>(headerSize), FileAndMemReader::CUR); - is_GMF = true; + fr.seek(0, FileAndMemReader::SET); + return parseGMF(fr); } + #ifndef BWMIDI_DISABLE_MUS_SUPPORT - else if(std::memcmp(headerBuf, "MUS\x1A", 4) == 0) + if(std::memcmp(headerBuf, "MUS\x1A", 4) == 0) { - // MUS/DMX files (Doom) - size_t mus_len = fr.fileSize(); fr.seek(0, FileAndMemReader::SET); - uint8_t *mus = (uint8_t *)malloc(mus_len); - if(!mus) - { - m_errorString = "Out of memory!"; - return false; - } - fsize = fr.read(mus, 1, mus_len); - if(fsize < mus_len) - { - fr.close(); - m_errorString = "Failed to read MUS file data!\n"; - return false; - } + return parseMUS(fr); + } +#endif - //Close source stream - fr.close(); +#ifndef BWMIDI_DISABLE_XMI_SUPPORT + if((std::memcmp(headerBuf, "FORM", 4) == 0) && (std::memcmp(headerBuf + 8, "XDIR", 4) == 0)) + { + fr.seek(0, FileAndMemReader::SET); + return parseXMI(fr); + } +#endif - uint8_t *mid = NULL; - uint32_t mid_len = 0; - int m2mret = Convert_mus2midi(mus, static_cast<uint32_t>(mus_len), - &mid, &mid_len, 0); - if(mus) - free(mus); - if(m2mret < 0) - { - m_errorString = "Invalid MUS/DMX data format!"; - return false; - } - cvt_buf.set(mid); - //Open converted MIDI file - fr.openData(mid, static_cast<size_t>(mid_len)); - //Re-Read header again! - goto riffskip; + if(std::memcmp(headerBuf, "CTMF", 4) == 0) + { + fr.seek(0, FileAndMemReader::SET); + return parseCMF(fr); } -#endif //BWMIDI_DISABLE_MUS_SUPPORT -#ifndef BWMIDI_DISABLE_XMI_SUPPORT - else if(std::memcmp(headerBuf, "FORM", 4) == 0) + if(detectIMF(headerBuf, fr)) + { + fr.seek(0, FileAndMemReader::SET); + return parseIMF(fr); + } + + if(detectRSXX(headerBuf, fr)) + { + fr.seek(0, FileAndMemReader::SET); + return parseRSXX(fr); + } + + m_errorString = "Unknown or unsupported file format"; + return false; +} + + +bool BW_MidiSequencer::parseIMF(FileAndMemReader &fr) +{ + const size_t deltaTicks = 1; + const size_t trackCount = 1; + const uint32_t imfTempo = 1428; + size_t imfEnd = 0; + uint64_t abs_position = 0; + uint8_t imfRaw[4]; + + MidiTrackRow evtPos; + MidiEvent event; + + std::vector<MidiEvent> temposList; + + m_format = Format_IMF; + + buildSmfSetupReset(trackCount); + + m_invDeltaTicks = fraction<uint64_t>(1, 1000000l * static_cast<uint64_t>(deltaTicks)); + m_tempo = fraction<uint64_t>(1, static_cast<uint64_t>(deltaTicks) * 2); + + fr.seek(0, FileAndMemReader::SET); + if(fr.read(imfRaw, 1, 2) != 2) + { + m_errorString = "Unexpected end of file at header!\n"; + return false; + } + + imfEnd = static_cast<size_t>(imfRaw[0]) + 256 * static_cast<size_t>(imfRaw[1]); + + // Define the playing tempo + event.type = MidiEvent::T_SPECIAL; + event.subtype = MidiEvent::ST_TEMPOCHANGE; + event.absPosition = 0; + event.data.resize(4); + event.data[0] = static_cast<uint8_t>((imfTempo >> 24) & 0xFF); + event.data[1] = static_cast<uint8_t>((imfTempo >> 16) & 0xFF); + event.data[2] = static_cast<uint8_t>((imfTempo >> 8) & 0xFF); + event.data[3] = static_cast<uint8_t>((imfTempo & 0xFF)); + evtPos.events.push_back(event); + temposList.push_back(event); + + // Define the draft for IMF events + event.type = MidiEvent::T_SPECIAL; + event.subtype = MidiEvent::ST_RAWOPL; + event.absPosition = 0; + event.data.resize(2); + + fr.seek(2, FileAndMemReader::SET); + while(fr.tell() < imfEnd && !fr.eof()) { - if(std::memcmp(headerBuf + 8, "XDIR", 4) != 0) + if(fr.read(imfRaw, 1, 4) != 4) + break; + + event.data[0] = imfRaw[0]; // port index + event.data[1] = imfRaw[1]; // port value + event.absPosition = abs_position; + event.isValid = true; + + evtPos.events.push_back(event); + evtPos.delay = static_cast<uint64_t>(imfRaw[2]) + 256 * static_cast<uint64_t>(imfRaw[3]); + + if(evtPos.delay > 0) { - fr.close(); - m_errorString = fr.fileName() + ": Invalid format\n"; - return false; + evtPos.absPos = abs_position; + abs_position += evtPos.delay; + m_trackData[0].push_back(evtPos); + evtPos.clear(); } + } - size_t mus_len = fr.fileSize(); - fr.seek(0, FileAndMemReader::SET); + if(m_trackData[0].size() > 0) + m_currentPosition.track[0].pos = m_trackData[0].begin(); + + buildTimeLine(temposList); + + return true; +} - uint8_t *mus = (uint8_t*)malloc(mus_len); - if(!mus) +bool BW_MidiSequencer::parseRSXX(FileAndMemReader &fr) +{ + const size_t headerSize = 4 + 4 + 2 + 2 + 2; // 14 + char headerBuf[headerSize] = ""; + size_t fsize = 0; + size_t deltaTicks = 192, trackCount = 1; + std::vector<std::vector<uint8_t> > rawTrackData; + + fsize = fr.read(headerBuf, 1, headerSize); + if(fsize < headerSize) + { + m_errorString = "Unexpected end of file at header!\n"; + return false; + } + + // Try to identify RSXX format + if(headerBuf[0] == 0x7D) + { + fr.seek(0x6D, FileAndMemReader::SET); + fr.read(headerBuf, 1, 6); + if(std::memcmp(headerBuf, "rsxx}u", 6) == 0) { - m_errorString = "Out of memory!"; - return false; + m_format = Format_RSXX; + fr.seek(0x7D, FileAndMemReader::SET); + trackCount = 1; + deltaTicks = 60; } - fsize = fr.read(mus, 1, mus_len); - if(fsize < mus_len) + else { - fr.close(); - m_errorString = "Failed to read XMI file data!\n"; + m_errorString = "Invalid RSXX header!\n"; return false; } + } - //Close source stream - fr.close(); + rawTrackData.clear(); + rawTrackData.resize(trackCount, std::vector<uint8_t>()); + m_invDeltaTicks = fraction<uint64_t>(1, 1000000l * static_cast<uint64_t>(deltaTicks)); + m_tempo = fraction<uint64_t>(1, static_cast<uint64_t>(deltaTicks)); + + size_t totalGotten = 0; + + for(size_t tk = 0; tk < trackCount; ++tk) + { + // Read track header + size_t trackLength; - uint8_t *mid = NULL; - uint32_t mid_len = 0; - int m2mret = Convert_xmi2midi(mus, static_cast<uint32_t>(mus_len), - &mid, &mid_len, XMIDI_CONVERT_NOCONVERSION); - if(mus) free(mus); - if(m2mret < 0) + size_t pos = fr.tell(); + fr.seek(0, FileAndMemReader::END); + trackLength = fr.tell() - pos; + fr.seek(static_cast<long>(pos), FileAndMemReader::SET); + + // Read track data + rawTrackData[tk].resize(trackLength); + fsize = fr.read(&rawTrackData[tk][0], 1, trackLength); + if(fsize < trackLength) { - m_errorString = "Invalid XMI data format!"; + m_errorString = fr.fileName() + ": Unexpected file ending while getting raw track data!\n"; return false; } - cvt_buf.set(mid); - //Open converted MIDI file - fr.openData(mid, static_cast<size_t>(mid_len)); - //Re-Read header again! - goto riffskip; - } -#endif //BWMIDI_DISABLE_XMI_SUPPORT - - else if(std::memcmp(headerBuf, "CTMF", 4) == 0) - { - // Creative Music Format (CMF). - // When playing CTMF files, use the following commandline: - // adlmidi song8.ctmf -p -v 1 1 0 - // i.e. enable percussion mode, deeper vibrato, and use only 1 card. - is_CMF = true; - m_format = Format_CMF; - //unsigned version = ReadLEint(HeaderBuf+4, 2); - uint64_t ins_start = readLEint(headerBuf + 6, 2); - uint64_t mus_start = readLEint(headerBuf + 8, 2); - //unsigned deltas = ReadLEint(HeaderBuf+10, 2); - uint64_t ticks = readLEint(headerBuf + 12, 2); - // Read title, author, remarks start offsets in file - fsize = fr.read(headerBuf, 1, 6); - if(fsize < 6) + totalGotten += fsize; + + //Finalize raw track data with a zero + rawTrackData[tk].push_back(0); + } + + for(size_t tk = 0; tk < trackCount; ++tk) + totalGotten += rawTrackData[tk].size(); + + if(totalGotten == 0) + { + m_errorString = fr.fileName() + ": Empty track data"; + return false; + } + + // Build new MIDI events table + if(!buildSmfTrackData(rawTrackData)) + { + m_errorString = fr.fileName() + ": MIDI data parsing error has occouped!\n" + m_parsingErrorsString; + return false; + } + + m_smfFormat = 0; + m_loop.stackLevel = -1; + + return true; +} + +bool BW_MidiSequencer::parseCMF(FileAndMemReader &fr) +{ + const size_t headerSize = 4 + 4 + 2 + 2 + 2; // 14 + char headerBuf[headerSize] = ""; + size_t fsize = 0; + size_t deltaTicks = 192, trackCount = 1; + std::vector<std::vector<uint8_t> > rawTrackData; + + fsize = fr.read(headerBuf, 1, headerSize); + if(fsize < headerSize) + { + m_errorString = "Unexpected end of file at header!\n"; + return false; + } + + if(std::memcmp(headerBuf, "CTMF", 4) != 0) + { + m_errorString = fr.fileName() + ": Invalid format, CTMF signature is not found!\n"; + return false; + } + + m_format = Format_CMF; + + //unsigned version = ReadLEint(HeaderBuf+4, 2); + uint64_t ins_start = readLEint(headerBuf + 6, 2); + uint64_t mus_start = readLEint(headerBuf + 8, 2); + //unsigned deltas = ReadLEint(HeaderBuf+10, 2); + uint64_t ticks = readLEint(headerBuf + 12, 2); + // Read title, author, remarks start offsets in file + fsize = fr.read(headerBuf, 1, 6); + if(fsize < 6) + { + fr.close(); + m_errorString = "Unexpected file ending on attempt to read CTMF header!"; + return false; + } + + //unsigned long notes_starts[3] = {ReadLEint(HeaderBuf+0,2),ReadLEint(HeaderBuf+0,4),ReadLEint(HeaderBuf+0,6)}; + fr.seek(16, FileAndMemReader::CUR); // Skip the channels-in-use table + fsize = fr.read(headerBuf, 1, 4); + if(fsize < 4) + { + fr.close(); + m_errorString = "Unexpected file ending on attempt to read CMF instruments block header!"; + return false; + } + + uint64_t ins_count = readLEint(headerBuf + 0, 2); //, basictempo = ReadLEint(HeaderBuf+2, 2); + fr.seek(static_cast<long>(ins_start), FileAndMemReader::SET); + + m_cmfInstruments.reserve(static_cast<size_t>(ins_count)); + for(uint64_t i = 0; i < ins_count; ++i) + { + CmfInstrument inst; + fsize = fr.read(inst.data, 1, 16); + if(fsize < 16) { fr.close(); - m_errorString = "Unexpected file ending on attempt to read CTMF header!"; + m_errorString = "Unexpected file ending on attempt to read CMF instruments raw data!"; return false; } + m_cmfInstruments.push_back(inst); + } - //unsigned long notes_starts[3] = {ReadLEint(HeaderBuf+0,2),ReadLEint(HeaderBuf+0,4),ReadLEint(HeaderBuf+0,6)}; - fr.seek(16, FileAndMemReader::CUR); // Skip the channels-in-use table - fsize = fr.read(headerBuf, 1, 4); - if(fsize < 4) + fr.seeku(mus_start, FileAndMemReader::SET); + trackCount = 1; + deltaTicks = (size_t)ticks; + + rawTrackData.clear(); + rawTrackData.resize(trackCount, std::vector<uint8_t>()); + m_invDeltaTicks = fraction<uint64_t>(1, 1000000l * static_cast<uint64_t>(deltaTicks)); + m_tempo = fraction<uint64_t>(1, static_cast<uint64_t>(deltaTicks)); + + size_t totalGotten = 0; + + for(size_t tk = 0; tk < trackCount; ++tk) + { + // Read track header + size_t trackLength; + size_t pos = fr.tell(); + fr.seek(0, FileAndMemReader::END); + trackLength = fr.tell() - pos; + fr.seek(static_cast<long>(pos), FileAndMemReader::SET); + + // Read track data + rawTrackData[tk].resize(trackLength); + fsize = fr.read(&rawTrackData[tk][0], 1, trackLength); + if(fsize < trackLength) { - fr.close(); - m_errorString = "Unexpected file ending on attempt to read CMF instruments block header!"; + m_errorString = fr.fileName() + ": Unexpected file ending while getting raw track data!\n"; return false; } + totalGotten += fsize; + } - uint64_t ins_count = readLEint(headerBuf + 0, 2); //, basictempo = ReadLEint(HeaderBuf+2, 2); - fr.seek(static_cast<long>(ins_start), FileAndMemReader::SET); + for(size_t tk = 0; tk < trackCount; ++tk) + totalGotten += rawTrackData[tk].size(); - m_cmfInstruments.reserve(static_cast<size_t>(ins_count)); - for(uint64_t i = 0; i < ins_count; ++i) - { - CmfInstrument inst; - fsize = fr.read(inst.data, 1, 16); - if(fsize < 16) - { - fr.close(); - m_errorString = "Unexpected file ending on attempt to read CMF instruments raw data!"; - return false; - } - m_cmfInstruments.push_back(inst); - } + if(totalGotten == 0) + { + m_errorString = fr.fileName() + ": Empty track data"; + return false; + } - fr.seeku(mus_start, FileAndMemReader::SET); - TrackCount = 1; - DeltaTicks = (size_t)ticks; + // Build new MIDI events table + if(!buildSmfTrackData(rawTrackData)) + { + m_errorString = fr.fileName() + ": MIDI data parsing error has occouped!\n" + m_parsingErrorsString; + return false; } - else + + return true; +} + +bool BW_MidiSequencer::parseGMF(FileAndMemReader &fr) +{ + const size_t headerSize = 4 + 4 + 2 + 2 + 2; // 14 + char headerBuf[headerSize] = ""; + size_t fsize = 0; + size_t deltaTicks = 192, trackCount = 1; + std::vector<std::vector<uint8_t> > rawTrackData; + + fsize = fr.read(headerBuf, 1, headerSize); + if(fsize < headerSize) { - // Try to identify RSXX format - if(headerBuf[0] == 0x7D) - { - fr.seek(0x6D, FileAndMemReader::SET); - fr.read(headerBuf, 1, 6); - if(std::memcmp(headerBuf, "rsxx}u", 6) == 0) - { - is_RSXX = true; - m_format = Format_RSXX; - fr.seek(0x7D, FileAndMemReader::SET); - TrackCount = 1; - DeltaTicks = 60; - } - } + m_errorString = "Unexpected end of file at header!\n"; + return false; + } + + if(std::memcmp(headerBuf, "GMF\x1", 4) != 0) + { + m_errorString = fr.fileName() + ": Invalid format, GMF\\x1 signature is not found!\n"; + return false; + } + + fr.seek(7 - static_cast<long>(headerSize), FileAndMemReader::CUR); + + rawTrackData.clear(); + rawTrackData.resize(trackCount, std::vector<uint8_t>()); + m_invDeltaTicks = fraction<uint64_t>(1, 1000000l * static_cast<uint64_t>(deltaTicks)); + m_tempo = fraction<uint64_t>(1, static_cast<uint64_t>(deltaTicks) * 2); + static const unsigned char EndTag[4] = {0xFF, 0x2F, 0x00, 0x00}; + size_t totalGotten = 0; - // Try parsing as an IMF file - if(!is_RSXX) + for(size_t tk = 0; tk < trackCount; ++tk) + { + // Read track header + size_t trackLength; + size_t pos = fr.tell(); + fr.seek(0, FileAndMemReader::END); + trackLength = fr.tell() - pos; + fr.seek(static_cast<long>(pos), FileAndMemReader::SET); + + // Read track data + rawTrackData[tk].resize(trackLength); + fsize = fr.read(&rawTrackData[tk][0], 1, trackLength); + if(fsize < trackLength) { - do - { - uint8_t raw[4]; - size_t end = static_cast<size_t>(headerBuf[0]) + 256 * static_cast<size_t>(headerBuf[1]); + m_errorString = fr.fileName() + ": Unexpected file ending while getting raw track data!\n"; + return false; + } + totalGotten += fsize; + // Note: GMF does include the track end tag. + rawTrackData[tk].insert(rawTrackData[tk].end(), EndTag + 0, EndTag + 4); + } - if(!end || (end & 3)) - break; + for(size_t tk = 0; tk < trackCount; ++tk) + totalGotten += rawTrackData[tk].size(); - size_t backup_pos = fr.tell(); - int64_t sum1 = 0, sum2 = 0; - fr.seek(2, FileAndMemReader::SET); + if(totalGotten == 0) + { + m_errorString = fr.fileName() + ": Empty track data"; + return false; + } - for(unsigned n = 0; n < 42; ++n) - { - if(fr.read(raw, 1, 4) != 4) - break; - int64_t value1 = raw[0]; - value1 += raw[1] << 8; - sum1 += value1; - int64_t value2 = raw[2]; - value2 += raw[3] << 8; - sum2 += value2; - } + // Build new MIDI events table + if(!buildSmfTrackData(rawTrackData)) + { + m_errorString = fr.fileName() + ": MIDI data parsing error has occouped!\n" + m_parsingErrorsString; + return false; + } - fr.seek(static_cast<long>(backup_pos), FileAndMemReader::SET); + return true; +} - if(sum1 > sum2) - { - is_IMF = true; - m_format = Format_IMF; - DeltaTicks = 1; - } - } while(false); - } +bool BW_MidiSequencer::parseSMF(FileAndMemReader &fr) +{ + const size_t headerSize = 4 + 4 + 2 + 2 + 2; // 14 + char headerBuf[headerSize] = ""; + size_t fsize = 0; + size_t deltaTicks = 192, TrackCount = 1; + unsigned smfFormat = 0; + std::vector<std::vector<uint8_t> > rawTrackData; - if(!is_IMF && !is_RSXX) - { - if(std::memcmp(headerBuf, "MThd\0\0\0\6", 8) != 0) - { - fr.close(); - m_errorString = fr.fileName() + ": Invalid format, Header signature is unknown!\n"; - return false; - } + fsize = fr.read(headerBuf, 1, headerSize); + if(fsize < headerSize) + { + m_errorString = "Unexpected end of file at header!\n"; + return false; + } - /*size_t Fmt = ReadBEint(HeaderBuf + 8, 2);*/ - TrackCount = (size_t)readBEint(headerBuf + 10, 2); - DeltaTicks = (size_t)readBEint(headerBuf + 12, 2); - } + if(std::memcmp(headerBuf, "MThd\0\0\0\6", 8) != 0) + { + m_errorString = fr.fileName() + ": Invalid format, MThd signature is not found!\n"; + return false; } + smfFormat = static_cast<unsigned>(readBEint(headerBuf + 8, 2)); + TrackCount = static_cast<size_t>(readBEint(headerBuf + 10, 2)); + deltaTicks = static_cast<size_t>(readBEint(headerBuf + 12, 2)); + + if(smfFormat > 2) + smfFormat = 1; + rawTrackData.clear(); rawTrackData.resize(TrackCount, std::vector<uint8_t>()); - m_invDeltaTicks = fraction<uint64_t>(1, 1000000l * static_cast<uint64_t>(DeltaTicks)); - if(is_CMF || is_RSXX) - m_tempo = fraction<uint64_t>(1, static_cast<uint64_t>(DeltaTicks)); - else - m_tempo = fraction<uint64_t>(1, static_cast<uint64_t>(DeltaTicks) * 2); - static const unsigned char EndTag[4] = {0xFF, 0x2F, 0x00, 0x00}; + m_invDeltaTicks = fraction<uint64_t>(1, 1000000l * static_cast<uint64_t>(deltaTicks)); + m_tempo = fraction<uint64_t>(1, static_cast<uint64_t>(deltaTicks) * 2); + size_t totalGotten = 0; for(size_t tk = 0; tk < TrackCount; ++tk) @@ -1734,87 +2361,24 @@ riffskip: // Read track header size_t trackLength; - if(is_IMF) + fsize = fr.read(headerBuf, 1, 8); + if((fsize < 8) || (std::memcmp(headerBuf, "MTrk", 4) != 0)) { - //std::fprintf(stderr, "Reading IMF file...\n"); - size_t end = static_cast<size_t>(headerBuf[0]) + 256 * static_cast<size_t>(headerBuf[1]); - unsigned IMF_tempo = 1428; - static const unsigned char imf_tempo[] = {0x0,//Zero delay! - MidiEvent::T_SPECIAL, MidiEvent::ST_TEMPOCHANGE, 0x4, - static_cast<uint8_t>(IMF_tempo >> 24), - static_cast<uint8_t>(IMF_tempo >> 16), - static_cast<uint8_t>(IMF_tempo >> 8), - static_cast<uint8_t>(IMF_tempo) - }; - rawTrackData[tk].insert(rawTrackData[tk].end(), imf_tempo, imf_tempo + sizeof(imf_tempo)); - rawTrackData[tk].push_back(0x00); - fr.seek(2, FileAndMemReader::SET); - - while(fr.tell() < end && !fr.eof()) - { - uint8_t special_event_buf[5]; - uint8_t raw[4]; - special_event_buf[0] = MidiEvent::T_SPECIAL; - special_event_buf[1] = MidiEvent::ST_RAWOPL; - special_event_buf[2] = 0x02; - if(fr.read(raw, 1, 4) != 4) - break; - special_event_buf[3] = raw[0]; // port index - special_event_buf[4] = raw[1]; // port value - uint32_t delay = static_cast<uint32_t>(raw[2]); - delay += 256 * static_cast<uint32_t>(raw[3]); - totalGotten += 4; - //if(special_event_buf[3] <= 8) continue; - //fprintf(stderr, "Put %02X <- %02X, plus %04X delay\n", special_event_buf[3],special_event_buf[4], delay); - rawTrackData[tk].insert(rawTrackData[tk].end(), special_event_buf, special_event_buf + 5); - //if(delay>>21) TrackData[tk].push_back( 0x80 | ((delay>>21) & 0x7F ) ); - if(delay >> 14) - rawTrackData[tk].push_back(static_cast<uint8_t>(0x80 | ((delay >> 14) & 0x7F))); - if(delay >> 7) - rawTrackData[tk].push_back(static_cast<uint8_t>(0x80 | ((delay >> 7) & 0x7F))); - rawTrackData[tk].push_back(static_cast<uint8_t>(((delay >> 0) & 0x7F))); - } - - rawTrackData[tk].insert(rawTrackData[tk].end(), EndTag + 0, EndTag + 4); + m_errorString = fr.fileName() + ": Invalid format, MTrk signature is not found!\n"; + return false; } - else - { - // Take the rest of the file - if(is_GMF || is_CMF || is_RSXX) - { - size_t pos = fr.tell(); - fr.seek(0, FileAndMemReader::END); - trackLength = fr.tell() - pos; - fr.seek(static_cast<long>(pos), FileAndMemReader::SET); - } - else - { - fsize = fr.read(headerBuf, 1, 8); - if((fsize < 8) || (std::memcmp(headerBuf, "MTrk", 4) != 0)) - { - fr.close(); - m_errorString = fr.fileName() + ": Invalid format, MTrk signature is not found!\n"; - return false; - } - trackLength = (size_t)readBEint(headerBuf + 4, 4); - } - - // Read track data - rawTrackData[tk].resize(trackLength); - fsize = fr.read(&rawTrackData[tk][0], 1, trackLength); - if(fsize < trackLength) - { - fr.close(); - m_errorString = fr.fileName() + ": Unexpected file ending while getting raw track data!\n"; - return false; - } - totalGotten += fsize; + trackLength = (size_t)readBEint(headerBuf + 4, 4); - if(is_GMF/*|| is_MUS*/) // Note: CMF does include the track end tag. - rawTrackData[tk].insert(rawTrackData[tk].end(), EndTag + 0, EndTag + 4); - if(is_RSXX)//Finalize raw track data with a zero - rawTrackData[tk].push_back(0); + // Read track data + rawTrackData[tk].resize(trackLength); + fsize = fr.read(&rawTrackData[tk][0], 1, trackLength); + if(fsize < trackLength) + { + m_errorString = fr.fileName() + ": Unexpected file ending while getting raw track data!\n"; + return false; } + + totalGotten += fsize; } for(size_t tk = 0; tk < TrackCount; ++tk) @@ -1827,11 +2391,167 @@ riffskip: } // Build new MIDI events table - if(!buildTrackData(rawTrackData)) + if(!buildSmfTrackData(rawTrackData)) { m_errorString = fr.fileName() + ": MIDI data parsing error has occouped!\n" + m_parsingErrorsString; return false; } + m_smfFormat = smfFormat; + m_loop.stackLevel = -1; + return true; } + +bool BW_MidiSequencer::parseRMI(FileAndMemReader &fr) +{ + const size_t headerSize = 4 + 4 + 2 + 2 + 2; // 14 + char headerBuf[headerSize] = ""; + + size_t fsize = fr.read(headerBuf, 1, headerSize); + if(fsize < headerSize) + { + m_errorString = "Unexpected end of file at header!\n"; + return false; + } + + if(std::memcmp(headerBuf, "RIFF", 4) != 0) + { + m_errorString = fr.fileName() + ": Invalid format, RIFF signature is not found!\n"; + return false; + } + + m_format = Format_MIDI; + + fr.seek(6l, FileAndMemReader::CUR); + return parseSMF(fr); +} + +#ifndef BWMIDI_DISABLE_MUS_SUPPORT +bool BW_MidiSequencer::parseMUS(FileAndMemReader &fr) +{ + const size_t headerSize = 4 + 4 + 2 + 2 + 2; // 14 + char headerBuf[headerSize] = ""; + size_t fsize = 0; + BufferGuard<uint8_t> cvt_buf; + + fsize = fr.read(headerBuf, 1, headerSize); + if(fsize < headerSize) + { + m_errorString = "Unexpected end of file at header!\n"; + return false; + } + + if(std::memcmp(headerBuf, "MUS\x1A", 4) != 0) + { + m_errorString = fr.fileName() + ": Invalid format, MUS\\x1A signature is not found!\n"; + return false; + } + + size_t mus_len = fr.fileSize(); + + fr.seek(0, FileAndMemReader::SET); + uint8_t *mus = (uint8_t *)malloc(mus_len); + if(!mus) + { + m_errorString = "Out of memory!"; + return false; + } + fsize = fr.read(mus, 1, mus_len); + if(fsize < mus_len) + { + m_errorString = "Failed to read MUS file data!\n"; + return false; + } + + //Close source stream + fr.close(); + + uint8_t *mid = NULL; + uint32_t mid_len = 0; + int m2mret = Convert_mus2midi(mus, static_cast<uint32_t>(mus_len), + &mid, &mid_len, 0); + if(mus) + free(mus); + + if(m2mret < 0) + { + m_errorString = "Invalid MUS/DMX data format!"; + return false; + } + cvt_buf.set(mid); + + //Open converted MIDI file + fr.openData(mid, static_cast<size_t>(mid_len)); + + return parseSMF(fr); +} +#endif //BWMIDI_DISABLE_MUS_SUPPORT + +#ifndef BWMIDI_DISABLE_XMI_SUPPORT +bool BW_MidiSequencer::parseXMI(FileAndMemReader &fr) +{ + const size_t headerSize = 4 + 4 + 2 + 2 + 2; // 14 + char headerBuf[headerSize] = ""; + size_t fsize = 0; + BufferGuard<uint8_t> cvt_buf; + + fsize = fr.read(headerBuf, 1, headerSize); + if(fsize < headerSize) + { + m_errorString = "Unexpected end of file at header!\n"; + return false; + } + + if(std::memcmp(headerBuf, "FORM", 4) != 0) + { + m_errorString = fr.fileName() + ": Invalid format, FORM signature is not found!\n"; + return false; + } + + if(std::memcmp(headerBuf + 8, "XDIR", 4) != 0) + { + m_errorString = fr.fileName() + ": Invalid format\n"; + return false; + } + + size_t mus_len = fr.fileSize(); + fr.seek(0, FileAndMemReader::SET); + + uint8_t *mus = (uint8_t*)malloc(mus_len); + if(!mus) + { + m_errorString = "Out of memory!"; + return false; + } + fsize = fr.read(mus, 1, mus_len); + if(fsize < mus_len) + { + m_errorString = "Failed to read XMI file data!\n"; + return false; + } + + //Close source stream + fr.close(); + + uint8_t *mid = NULL; + uint32_t mid_len = 0; + int m2mret = Convert_xmi2midi(mus, static_cast<uint32_t>(mus_len), + &mid, &mid_len, XMIDI_CONVERT_NOCONVERSION); + if(mus) + free(mus); + if(m2mret < 0) + { + m_errorString = "Invalid XMI data format!"; + return false; + } + + cvt_buf.set(mid); + //Open converted MIDI file + fr.openData(mid, static_cast<size_t>(mid_len)); + //Set format as XMIDI + m_format = Format_XMIDI; + + return parseSMF(fr); +} +#endif diff --git a/src/wopl/wopl_file.h b/src/wopl/wopl_file.h index 0e38842..fa270b6 100644 --- a/src/wopl/wopl_file.h +++ b/src/wopl/wopl_file.h @@ -71,13 +71,13 @@ typedef enum WOPL_InstrumentFlags WOPL_Ins_IsBlank = 0x04, /* RythmMode flags mask */ - WOPL_RythmModeMask = 0x38, + WOPL_RhythmModeMask = 0x38, /* Mask of the flags range */ WOPL_Ins_ALL_MASK = 0x07 } WOPL_InstrumentFlags; -typedef enum WOPL_RythmMode +typedef enum WOPL_RhythmMode { /* RythmMode: BassDrum */ WOPL_RM_BassDrum = 0x08, @@ -86,10 +86,13 @@ typedef enum WOPL_RythmMode /* RythmMode: TomTom */ WOPL_RM_TomTom = 0x18, /* RythmMode: Cymbell */ - WOPL_RM_Cymball = 0x20, + WOPL_RM_Cymbal = 0x20, /* RythmMode: HiHat */ WOPL_RM_HiHat = 0x28 -} WOPL_RythmMode; +} WOPL_RhythmMode; + +/* DEPRECATED: It has typo. Don't use it! */ +typedef WOPL_RhythmMode WOPL_RythmMode; /* Error codes */ typedef enum WOPL_ErrorCodes diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index bb5615e..ee02087 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -2,6 +2,7 @@ set(CMAKE_CXX_STANDARD 11) add_subdirectory(bankmap) +add_subdirectory(conversion) add_library(Catch-objects OBJECT "common/catch_main.cpp") target_include_directories(Catch-objects PRIVATE "common") diff --git a/test/conversion/CMakeLists.txt b/test/conversion/CMakeLists.txt new file mode 100644 index 0000000..361c7e8 --- /dev/null +++ b/test/conversion/CMakeLists.txt @@ -0,0 +1,12 @@ + +set(CMAKE_CXX_STANDARD 11) + +include_directories( + ${CMAKE_CURRENT_SOURCE_DIR}/../common + ${CMAKE_SOURCE_DIR}/include + ${CMAKE_SOURCE_DIR}/src) + +add_executable(ConversionTest conversion.cpp $<TARGET_OBJECTS:Catch-objects>) + +set_target_properties(ConversionTest PROPERTIES COMPILE_DEFINITIONS "GSL_THROW_ON_CONTRACT_VIOLATION") +add_test(NAME ConversionTest COMMAND ConversionTest) diff --git a/test/conversion/conversion.cpp b/test/conversion/conversion.cpp new file mode 100644 index 0000000..b4d64eb --- /dev/null +++ b/test/conversion/conversion.cpp @@ -0,0 +1,81 @@ +#include <catch.hpp> +#include <random> +#include "adlmidi.h" +#include "adlmidi_cvt.hpp" + +static std::mt19937 rng; + +static ADL_Instrument random_instrument() +{ + ADL_Instrument ins; + ins.version = ADLMIDI_InstrumentVersion; + ins.note_offset1 = std::uniform_int_distribution<int>(-128, 127)(rng); + ins.note_offset2 = std::uniform_int_distribution<int>(-128, 127)(rng); + ins.midi_velocity_offset = std::uniform_int_distribution<int>(-128, 127)(rng); + ins.second_voice_detune = std::uniform_int_distribution<int>(-128, 127)(rng); + ins.percussion_key_number = std::uniform_int_distribution<unsigned>(0, 127)(rng); + ins.inst_flags = + std::uniform_int_distribution<unsigned>(0, 255)(rng) & + (ADLMIDI_Ins_IsBlank|ADLMIDI_Ins_RhythmModeMask); + switch (std::uniform_int_distribution<unsigned>(0, 3)(rng)) { + case 0: // 2op + ins.inst_flags |= ADLMIDI_Ins_2op; + break; + case 1: // pseudo 4op + ins.inst_flags |= ADLMIDI_Ins_Pseudo4op; + // fall through + case 2: // real 4op + ins.inst_flags |= ADLMIDI_Ins_4op; + break; + } + ins.fb_conn1_C0 = std::uniform_int_distribution<unsigned>(0, 255)(rng); + ins.fb_conn2_C0 = std::uniform_int_distribution<unsigned>(0, 255)(rng); + ins.delay_on_ms = std::uniform_int_distribution<unsigned>(0, 40000)(rng); + ins.delay_off_ms = std::uniform_int_distribution<unsigned>(0, 40000)(rng); + for (unsigned op = 0; op < 4; ++op) { + ins.operators[op].avekf_20 = std::uniform_int_distribution<unsigned>(0, 255)(rng); + ins.operators[op].ksl_l_40 = std::uniform_int_distribution<unsigned>(0, 255)(rng); + ins.operators[op].atdec_60 = std::uniform_int_distribution<unsigned>(0, 255)(rng); + ins.operators[op].susrel_80 = std::uniform_int_distribution<unsigned>(0, 255)(rng); + ins.operators[op].waveform_E0 = std::uniform_int_distribution<unsigned>(0, 255)(rng); + } + return ins; +} + +static void check_instrument_equality(const ADL_Instrument &a, const ADL_Instrument &b) +{ + REQUIRE((int)a.note_offset1 == (int)b.note_offset1); + REQUIRE((int)a.note_offset2 == (int)b.note_offset2); + REQUIRE((int)a.midi_velocity_offset == (int)b.midi_velocity_offset); + REQUIRE((int)a.second_voice_detune == (int)b.second_voice_detune); + REQUIRE((int)a.percussion_key_number == (int)b.percussion_key_number); + REQUIRE((int)a.inst_flags == (int)b.inst_flags); + REQUIRE((int)a.fb_conn1_C0 == (int)b.fb_conn1_C0); + REQUIRE((int)a.fb_conn2_C0 == (int)b.fb_conn2_C0); + REQUIRE((int)a.delay_on_ms == (int)b.delay_on_ms); + REQUIRE((int)a.delay_off_ms == (int)b.delay_off_ms); + for (unsigned op = 0; op < 4; ++op) { + REQUIRE((int)a.operators[op].avekf_20 == (int)b.operators[op].avekf_20); + REQUIRE((int)a.operators[op].ksl_l_40 == (int)b.operators[op].ksl_l_40); + REQUIRE((int)a.operators[op].atdec_60 == (int)b.operators[op].atdec_60); + REQUIRE((int)a.operators[op].susrel_80 == (int)b.operators[op].susrel_80); + REQUIRE((int)a.operators[op].waveform_E0 == (int)b.operators[op].waveform_E0); + } +} + +TEST_CASE("[Conversion] Main") +{ + rng.seed(777); + + for (unsigned i = 0; i < 1000000; ++i) { + ADL_Instrument adl_ins = random_instrument(); + + adlinsdata2 internal_ins; + cvt_generic_to_FMIns(internal_ins, adl_ins); + + ADL_Instrument adl_ins2; + cvt_FMIns_to_generic(adl_ins2, internal_ins); + + check_instrument_equality(adl_ins, adl_ins2); + } +} diff --git a/utils/adlmidi-2/midiplay.cc b/utils/adlmidi-2/midiplay.cc index 8fe1c8a..b5f43dc 100644 --- a/utils/adlmidi-2/midiplay.cc +++ b/utils/adlmidi-2/midiplay.cc @@ -1608,6 +1608,7 @@ int main(int argc, char **argv) " -w [<filename>] Write WAV file rather than playing\n" " -d [<filename>] Write video file using ffmpeg\n" #ifndef HARDWARE_OPL3 + " -fp Enables full-panning stereo support\n" " --emu-nuked Uses Nuked OPL3 v 1.8 emulator\n" " --emu-nuked7 Uses Nuked OPL3 v 1.7.4 emulator\n" " --emu-dosbox Uses DosBox 0.74 OPL3 emulator\n" @@ -1676,6 +1677,8 @@ int main(int argc, char **argv) else if(!std::strcmp("-frb", argv[2])) adl_setFullRangeBrightness(myDevice, 1); #ifndef HARDWARE_OPL3 + else if(!std::strcmp("-fp", argv[2])) + adl_setSoftPanEnabled(myDevice, 1); else if(!std::strcmp("--emu-nuked", argv[2])) emulator = ADLMIDI_EMU_NUKED; else if(!std::strcmp("--emu-nuked7", argv[2])) diff --git a/utils/adlmidi-2/puzzlegame.cc b/utils/adlmidi-2/puzzlegame.cc index f8fa57c..e7b9890 100644 --- a/utils/adlmidi-2/puzzlegame.cc +++ b/utils/adlmidi-2/puzzlegame.cc @@ -90,7 +90,7 @@ bool ADLMIDI_PuzzleGame::TetrisArea::CascadeEmpty(int FirstY) * FIXME: Improve weird code fragment disliked by CLang * /////////BEGIN//////////// */ - auto label = + auto label = & " SINGLE " " DOUBLE " " TRIPLE " @@ -100,7 +100,7 @@ bool ADLMIDI_PuzzleGame::TetrisArea::CascadeEmpty(int FirstY) " SEXTUPLE " " SEPTUPLE " " OCTUPLE " - + ((n_full - 1) * 10); + [(n_full - 1) * 10]; for(int y = FirstY; y < Height - 1; ++y) { if(list_full & (1u << y)) @@ -214,9 +214,9 @@ int ADLMIDI_PuzzleGame::TetrisAIengine::AI_Run(const decltype(Area)&in_area, con for(unsigned rot2 = 0; rot2 < 4; ++rot2) for(int x2 = -1; x2 <= 1; ++x2) { - positions1.push_back(std::move<position> ({int(rot), x, int(rot2), x2})); + positions1.push_back(position{int(rot), x, int(rot2), x2}); if(rot2 == rot && x2 == 0) - positions2.push_back(std::move<position> ({int(rot), x, int(rot2), x2})); + positions2.push_back(position{int(rot), x, int(rot2), x2}); } confident = false; diff --git a/utils/gen_adldata/file_formats/load_ail.h b/utils/gen_adldata/file_formats/load_ail.h index e63b1d7..7f4d7ea 100644 --- a/utils/gen_adldata/file_formats/load_ail.h +++ b/utils/gen_adldata/file_formats/load_ail.h @@ -91,6 +91,7 @@ static bool LoadMiles(const char *fn, unsigned bank, const char *prefix) tmp2.pseudo4op = false; tmp2.real4op = (inscount > 1); tmp2.voice2_fine_tune = 0.0; + tmp2.midi_velocity_offset = 0; std::string name; if(midi_index >= 0) name = std::string(1, '\377') + MidiInsName[midi_index]; size_t resno = InsertIns(tmp[0], tmp[1], tmp2, name, name2, twoOp); diff --git a/utils/gen_adldata/file_formats/load_bisqwit.h b/utils/gen_adldata/file_formats/load_bisqwit.h index f5f73dc..3283aa9 100644 --- a/utils/gen_adldata/file_formats/load_bisqwit.h +++ b/utils/gen_adldata/file_formats/load_bisqwit.h @@ -26,6 +26,7 @@ static bool LoadBisqwit(const char *fn, unsigned bank, const char *prefix) tmp2.notenum = (uint8_t)std::fgetc(fp); tmp2.pseudo4op = false; tmp2.voice2_fine_tune = 0.0; + tmp2.midi_velocity_offset = 0; insdata tmp[2]; for(int side = 0; side < 2; ++side) diff --git a/utils/gen_adldata/file_formats/load_bnk.h b/utils/gen_adldata/file_formats/load_bnk.h index aa7701f..dfa066e 100644 --- a/utils/gen_adldata/file_formats/load_bnk.h +++ b/utils/gen_adldata/file_formats/load_bnk.h @@ -110,6 +110,7 @@ static bool LoadBNK(const char *fn, unsigned bank, const char *prefix, bool is_f tmp2.pseudo4op = false; tmp2.real4op = false; tmp2.voice2_fine_tune = 0.0; + tmp2.midi_velocity_offset = 0; if(is_fat) tmp.data[10] ^= 1; diff --git a/utils/gen_adldata/file_formats/load_bnk2.h b/utils/gen_adldata/file_formats/load_bnk2.h index 4772da5..a55551a 100644 --- a/utils/gen_adldata/file_formats/load_bnk2.h +++ b/utils/gen_adldata/file_formats/load_bnk2.h @@ -88,6 +88,7 @@ static bool LoadBNK2(const char *fn, unsigned bank, const char *prefix, tmp2.pseudo4op = false; tmp2.real4op = false; tmp2.voice2_fine_tune = 0.0; + tmp2.midi_velocity_offset = 0; if(xxP24NNN & 8) { diff --git a/utils/gen_adldata/file_formats/load_ibk.h b/utils/gen_adldata/file_formats/load_ibk.h index 12fa520..934fb67 100644 --- a/utils/gen_adldata/file_formats/load_ibk.h +++ b/utils/gen_adldata/file_formats/load_ibk.h @@ -63,6 +63,7 @@ static bool LoadIBK(const char *fn, unsigned bank, const char *prefix, bool perc tmp2.pseudo4op = false; tmp2.real4op = false; tmp2.voice2_fine_tune = 0.0; + tmp2.midi_velocity_offset = 0; size_t resno = InsertIns(tmp, tmp2, std::string(1, '\377') + name, name2); SetBank(bank, (unsigned int)gmno, resno); diff --git a/utils/gen_adldata/file_formats/load_jv.h b/utils/gen_adldata/file_formats/load_jv.h index 35caead..ad840d8 100644 --- a/utils/gen_adldata/file_formats/load_jv.h +++ b/utils/gen_adldata/file_formats/load_jv.h @@ -73,6 +73,7 @@ static bool LoadJunglevision(const char *fn, unsigned bank, const char *prefix) tmp2.pseudo4op = false; tmp2.real4op = (data[offset] != 0); tmp2.voice2_fine_tune = 0.0; + tmp2.midi_velocity_offset = 0; while(tmp2.notenum && tmp2.notenum < 20) { diff --git a/utils/gen_adldata/file_formats/load_op2.h b/utils/gen_adldata/file_formats/load_op2.h index 48b7eae..7c68dd8 100644 --- a/utils/gen_adldata/file_formats/load_op2.h +++ b/utils/gen_adldata/file_formats/load_op2.h @@ -110,6 +110,7 @@ static bool LoadDoom(const char *fn, unsigned bank, const char *prefix) tmp2.pseudo4op = false; tmp2.real4op = false; tmp2.voice2_fine_tune = 0.0; + tmp2.midi_velocity_offset = 0; while(tmp2.notenum && tmp2.notenum < 20) { tmp2.notenum += 12; diff --git a/utils/gen_adldata/file_formats/load_tmb.h b/utils/gen_adldata/file_formats/load_tmb.h index 5b38433..1d999d1 100644 --- a/utils/gen_adldata/file_formats/load_tmb.h +++ b/utils/gen_adldata/file_formats/load_tmb.h @@ -52,6 +52,7 @@ static bool LoadTMB(const char *fn, unsigned bank, const char *prefix) tmp2.pseudo4op = false; tmp2.real4op = false; tmp2.voice2_fine_tune = 0.0; + tmp2.midi_velocity_offset = (int8_t)data[offset + 12]; std::string name; if(midi_index >= 0) name = std::string(1, '\377') + MidiInsName[midi_index]; diff --git a/utils/gen_adldata/file_formats/load_wopl.h b/utils/gen_adldata/file_formats/load_wopl.h index fe4865d..24b303e 100644 --- a/utils/gen_adldata/file_formats/load_wopl.h +++ b/utils/gen_adldata/file_formats/load_wopl.h @@ -171,6 +171,7 @@ static bool LoadWopl(const char *fn, unsigned bank, const char *prefix) tmp2.pseudo4op = (flags & (uint8_t)WOPL_Flags::Mode_DoubleVoice) != 0; tmp2.real4op = real4op && !tmp2.pseudo4op; tmp2.voice2_fine_tune = 0; + tmp2.midi_velocity_offset = (int8_t)data[offset + 36]; tmp[0].diff = false; tmp[1].diff = real4op && !tmp2.pseudo4op; diff --git a/utils/gen_adldata/gen_adldata.cc b/utils/gen_adldata/gen_adldata.cc index d03ad09..28c6efd 100644 --- a/utils/gen_adldata/gen_adldata.cc +++ b/utils/gen_adldata/gen_adldata.cc @@ -412,13 +412,14 @@ int main(int argc, char**argv) (info.nosound ? ins::Flag_NoSound : 0); std::fprintf(outFile, " {"); - std::fprintf(outFile, "%4d,%4d,%3d, %d, %6" PRId64 ",%6" PRId64 ",%g", + std::fprintf(outFile, "%4d,%4d,%3d, %d, %6" PRId64 ",%6" PRId64 ", %6d, %g", (unsigned) i->first.insno1, (unsigned) i->first.insno2, (int)(i->first.notenum), flags, info.ms_sound_kon, info.ms_sound_koff, + i->first.midi_velocity_offset, i->first.voice2_fine_tune); std::string names; for(std::set<std::string>::const_iterator diff --git a/utils/gen_adldata/progs_cache.cpp b/utils/gen_adldata/progs_cache.cpp index 81bba4c..12c2de1 100644 --- a/utils/gen_adldata/progs_cache.cpp +++ b/utils/gen_adldata/progs_cache.cpp @@ -112,7 +112,7 @@ size_t InsertNoSoundIns() { // { 0x0F70700,0x0F70710, 0xFF,0xFF, 0x0,+0 }, insdata tmp1 = MakeNoSoundIns(); - struct ins tmp2 = { 0, 0, 0, false, false, 0.0 }; + struct ins tmp2 = { 0, 0, 0, false, false, 0.0, 0 }; return InsertIns(tmp1, tmp1, tmp2, "nosound", ""); } diff --git a/utils/gen_adldata/progs_cache.h b/utils/gen_adldata/progs_cache.h index 5a916f5..1212097 100644 --- a/utils/gen_adldata/progs_cache.h +++ b/utils/gen_adldata/progs_cache.h @@ -55,6 +55,7 @@ struct ins bool pseudo4op; bool real4op; double voice2_fine_tune; + int8_t midi_velocity_offset; bool operator==(const ins &b) const { @@ -63,7 +64,8 @@ struct ins && insno2 == b.insno2 && pseudo4op == b.pseudo4op && real4op == b.real4op - && equal_approx(voice2_fine_tune, b.voice2_fine_tune); + && equal_approx(voice2_fine_tune, b.voice2_fine_tune) + && midi_velocity_offset == b.midi_velocity_offset; } bool operator< (const ins &b) const { @@ -73,6 +75,7 @@ struct ins if(pseudo4op != b.pseudo4op) return pseudo4op < b.pseudo4op; if(real4op != b.real4op) return real4op < b.real4op; if(!equal_approx(voice2_fine_tune, b.voice2_fine_tune)) return voice2_fine_tune < b.voice2_fine_tune; + if(midi_velocity_offset != b.midi_velocity_offset) return midi_velocity_offset < b.midi_velocity_offset; return 0; } bool operator!=(const ins &b) const diff --git a/utils/midiplay/adlmidiplay.cpp b/utils/midiplay/adlmidiplay.cpp index 78b1235..5880243 100644 --- a/utils/midiplay/adlmidiplay.cpp +++ b/utils/midiplay/adlmidiplay.cpp @@ -6,6 +6,7 @@ #include <cstring> #include <cstdarg> #include <deque> +#include <vector> #include <algorithm> #include <signal.h> @@ -242,7 +243,11 @@ int main(int argc, char **argv) " -frb Enables full-ranged CC74 XG Brightness controller\n" " -nl Quit without looping\n" " -w Write WAV file rather than playing\n" + " -mb Run the test of multibank over embedded. 62, 14, 68, and 74'th banks will be combined into one\n" + " --solo <track> Selects a solo track to play\n" + " --only <track1,...,trackN> Selects a subset of tracks to play\n" #ifndef HARDWARE_OPL3 + " -fp Enables full-panning stereo support\n" " --emu-nuked Uses Nuked OPL3 v 1.8 emulator\n" " --emu-nuked7 Uses Nuked OPL3 v 1.7.4 emulator\n" " --emu-dosbox Uses DosBox 0.74 OPL3 emulator\n" @@ -330,18 +335,25 @@ int main(int argc, char **argv) /* * Set library options by parsing of command line arguments */ - #ifndef OUTPUT_WAVE_ONLY + bool multibankFromEnbededTest = false; + +#ifndef OUTPUT_WAVE_ONLY bool recordWave = false; int loopEnabled = 1; - #endif - #ifndef HARDWARE_OPL3 +#endif + +#ifndef HARDWARE_OPL3 int emulator = ADLMIDI_EMU_NUKED; - #endif - #if !defined(HARDWARE_OPL3) && !defined(OUTPUT_WAVE_ONLY) +#endif + + size_t soloTrack = ~(size_t)0; + std::vector<size_t> onlyTracks; + +#if !defined(HARDWARE_OPL3) && !defined(OUTPUT_WAVE_ONLY) g_audioFormat.type = ADLMIDI_SampleType_S16; g_audioFormat.containerSize = sizeof(Sint16); g_audioFormat.sampleOffset = sizeof(Sint16) * 2; - #endif +#endif while(argc > 2) { @@ -352,7 +364,7 @@ int main(int argc, char **argv) else if(!std::strcmp("-v", argv[2])) adl_setHVibrato(myDevice, 1);//Force turn on deep vibrato - #if !defined(OUTPUT_WAVE_ONLY) && !defined(HARDWARE_OPL3) +#if !defined(OUTPUT_WAVE_ONLY) && !defined(HARDWARE_OPL3) else if(!std::strcmp("-w", argv[2])) { //Current Wave output implementation allows only SINT16 output @@ -373,7 +385,7 @@ int main(int argc, char **argv) spec.format = AUDIO_S32; else if(!std::strcmp("-f32", argv[2]) && !recordWave) spec.format = AUDIO_F32; - #endif +#endif else if(!std::strcmp("-t", argv[2])) adl_setHTremolo(myDevice, 1);//Force turn on deep tremolo @@ -381,22 +393,62 @@ int main(int argc, char **argv) else if(!std::strcmp("-frb", argv[2])) adl_setFullRangeBrightness(myDevice, 1);//Turn on a full-ranged XG CC74 Brightness - #ifndef OUTPUT_WAVE_ONLY +#ifndef OUTPUT_WAVE_ONLY else if(!std::strcmp("-nl", argv[2])) loopEnabled = 0; //Enable loop - #endif +#endif - #ifndef HARDWARE_OPL3 +#ifndef HARDWARE_OPL3 else if(!std::strcmp("--emu-nuked", argv[2])) emulator = ADLMIDI_EMU_NUKED; else if(!std::strcmp("--emu-nuked7", argv[2])) emulator = ADLMIDI_EMU_NUKED_174; else if(!std::strcmp("--emu-dosbox", argv[2])) emulator = ADLMIDI_EMU_DOSBOX; - #endif - +#endif + else if(!std::strcmp("-fp", argv[2])) + adl_setSoftPanEnabled(myDevice, 1); + else if(!std::strcmp("-mb", argv[2])) + multibankFromEnbededTest = true; else if(!std::strcmp("-s", argv[2])) adl_setScaleModulators(myDevice, 1);//Turn on modulators scaling by volume + + else if(!std::strcmp("--solo", argv[2])) + { + if(argc <= 3) + { + printError("The option --solo requires an argument!\n"); + return 1; + } + soloTrack = std::strtoul(argv[3], NULL, 0); + had_option = true; + } + else if(!std::strcmp("--only", argv[2])) + { + if(argc <= 3) + { + printError("The option --only requires an argument!\n"); + return 1; + } + + const char *strp = argv[3]; + unsigned long value; + unsigned size; + bool err = std::sscanf(strp, "%lu%n", &value, &size) != 1; + while(!err && *(strp += size)) + { + onlyTracks.push_back(value); + err = std::sscanf(strp, ",%lu%n", &value, &size) != 1; + } + if(err) + { + printError("Invalid argument to --only!\n"); + return 1; + } + onlyTracks.push_back(value); + had_option = true; + } + else break; std::copy(argv + (had_option ? 4 : 3), @@ -405,29 +457,29 @@ int main(int argc, char **argv) argc -= (had_option ? 2 : 1); } - #ifndef OUTPUT_WAVE_ONLY +#ifndef OUTPUT_WAVE_ONLY //Turn loop on/off (for WAV recording loop must be disabled!) adl_setLoopEnabled(myDevice, recordWave ? 0 : loopEnabled); - #endif +#endif - #ifdef DEBUG_TRACE_ALL_EVENTS +#ifdef DEBUG_TRACE_ALL_EVENTS //Hook all MIDI events are ticking while generating an output buffer if(!recordWave) adl_setRawEventHook(myDevice, debugPrintEvent, NULL); - #endif +#endif - #ifndef HARDWARE_OPL3 +#ifndef HARDWARE_OPL3 adl_switchEmulator(myDevice, emulator); - #endif +#endif std::fprintf(stdout, " - Library version %s\n", adl_linkedLibraryVersion()); - #ifdef HARDWARE_OPL3 +#ifdef HARDWARE_OPL3 std::fprintf(stdout, " - Hardware OPL3 chip in use\n"); - #else +#else std::fprintf(stdout, " - %s Emulator in use\n", adl_chipEmulatorName(myDevice)); - #endif +#endif - #if !defined(HARDWARE_OPL3) && !defined(OUTPUT_WAVE_ONLY) +#if !defined(HARDWARE_OPL3) && !defined(OUTPUT_WAVE_ONLY) if(!recordWave) { // Set up SDL @@ -477,7 +529,7 @@ int main(int argc, char **argv) break; } } - #endif +#endif if(argc >= 3) { @@ -510,7 +562,40 @@ int main(int argc, char **argv) } } - #ifndef HARDWARE_OPL3 + if(multibankFromEnbededTest) + { + ADL_BankId id[] = + { + {0, 0, 0}, /*62*/ // isPercussion, MIDI bank MSB, LSB + {0, 8, 0}, /*14*/ // Use as MSB-8 + {1, 0, 0}, /*68*/ + {1, 0, 25} /*74*/ + }; + int banks[] = + { + 62, 14, 68, 74 + }; + + for(size_t i = 0; i < 4; i++) + { + ADL_Bank bank; + if(adl_getBank(myDevice, &id[i], ADLMIDI_Bank_Create, &bank) < 0) + { + printError(adl_errorInfo(myDevice)); + return 1; + } + + if(adl_loadEmbeddedBank(myDevice, &bank, banks[i]) < 0) + { + printError(adl_errorInfo(myDevice)); + return 1; + } + } + + std::fprintf(stdout, " - Ran a test of multibank over embedded\n"); + } + +#ifndef HARDWARE_OPL3 int numOfChips = 4; if(argc >= 4) numOfChips = std::atoi(argv[3]); @@ -522,10 +607,10 @@ int main(int argc, char **argv) return 1; } std::fprintf(stdout, " - Number of chips %d\n", adl_getNumChips(myDevice)); - #else +#else int numOfChips = 1; adl_setNumChips(myDevice, numOfChips); - #endif +#endif if(argc >= 5) { @@ -546,16 +631,40 @@ int main(int argc, char **argv) return 2; } + std::fprintf(stdout, " - Track count: %lu\n", (unsigned long)adl_trackCount(myDevice)); + + if(soloTrack != ~(size_t)0) + { + std::fprintf(stdout, " - Solo track: %lu\n", (unsigned long)soloTrack); + adl_setTrackOptions(myDevice, soloTrack, ADLMIDI_TrackOption_Solo); + } + + if(!onlyTracks.empty()) + { + size_t count = adl_trackCount(myDevice); + for(size_t track = 0; track < count; ++track) + adl_setTrackOptions(myDevice, track, ADLMIDI_TrackOption_Off); + std::fprintf(stdout, " - Only tracks:"); + for(size_t i = 0, n = onlyTracks.size(); i < n; ++i) + { + size_t track = onlyTracks[i]; + adl_setTrackOptions(myDevice, track, ADLMIDI_TrackOption_On); + std::fprintf(stdout, " %lu", (unsigned long)track); + } + std::fprintf(stdout, "\n"); + } + std::fprintf(stdout, " - File [%s] opened!\n", musPath.c_str()); flushout(stdout); - #ifndef HARDWARE_OPL3 +#ifndef HARDWARE_OPL3 signal(SIGINT, sighandler); signal(SIGTERM, sighandler); - #if !defined(_WIN32) && !defined(__WATCOMC__) +# if !defined(_WIN32) && !defined(__WATCOMC__) signal(SIGHUP, sighandler); - #endif - #else//HARDWARE_OPL3 +# endif + +#else//HARDWARE_OPL3 static const unsigned NewTimerFreq = 209; unsigned TimerPeriod = 0x1234DDul / NewTimerFreq; @@ -581,11 +690,11 @@ int main(int argc, char **argv) unsigned long BIOStimer_begin = BIOStimer; double tick_delay = 0.0; - #endif//HARDWARE_OPL3 +#endif//HARDWARE_OPL3 double total = adl_totalTimeLength(myDevice); - #ifndef OUTPUT_WAVE_ONLY +#ifndef OUTPUT_WAVE_ONLY double loopStart = adl_loopStartTime(myDevice); double loopEnd = adl_loopEndTime(myDevice); char totalHMS[25]; @@ -598,9 +707,9 @@ int main(int argc, char **argv) secondsToHMSM(loopEnd, loopEndHMS, 25); } - #ifndef HARDWARE_OPL3 +# ifndef HARDWARE_OPL3 if(!recordWave) - #endif +# endif { std::fprintf(stdout, " - Loop is turned %s\n", loopEnabled ? "ON" : "OFF"); if(loopStart >= 0.0 && loopEnd >= 0.0) @@ -608,33 +717,42 @@ int main(int argc, char **argv) std::fprintf(stdout, "\n==========================================\n"); flushout(stdout); - #ifndef HARDWARE_OPL3 +# ifndef HARDWARE_OPL3 SDL_PauseAudio(0); - #endif +# endif - #ifdef DEBUG_SEEKING_TEST +# ifdef DEBUG_SEEKING_TEST int delayBeforeSeek = 50; std::fprintf(stdout, "DEBUG: === Random position set test is active! ===\n"); flushout(stdout); - #endif +# endif - #ifndef HARDWARE_OPL3 +# ifndef HARDWARE_OPL3 Uint8 buff[16384]; - #endif +# endif char posHMS[25]; uint64_t milliseconds_prev = -1; while(!stop) { - #ifndef HARDWARE_OPL3 +# ifndef HARDWARE_OPL3 size_t got = (size_t)adl_playFormat(myDevice, 4096, buff, buff + g_audioFormat.containerSize, &g_audioFormat) * g_audioFormat.containerSize; if(got <= 0) break; - #endif - - #ifndef DEBUG_TRACE_ALL_EVENTS +# endif + +# ifdef DEBUG_TRACE_ALL_CHANNELS + enum { TerminalColumns = 80 }; + char channelText[TerminalColumns + 1]; + char channelAttr[TerminalColumns + 1]; + adl_describeChannels(myDevice, channelText, channelAttr, sizeof(channelText)); + std::fprintf(stdout, "%*s\r", TerminalColumns, ""); // erase the line + std::fprintf(stdout, "%s\n", channelText); +# endif + +# ifndef DEBUG_TRACE_ALL_EVENTS double time_pos = adl_positionTell(myDevice); std::fprintf(stdout, " \r"); uint64_t milliseconds = static_cast<uint64_t>(time_pos * 1000.0); @@ -646,9 +764,9 @@ int main(int argc, char **argv) flushout(stdout); milliseconds_prev = milliseconds; } - #endif +# endif - #ifndef HARDWARE_OPL3 +# ifndef HARDWARE_OPL3 g_audioBuffer_lock.Lock(); size_t pos = g_audioBuffer.size(); g_audioBuffer.resize(pos + got); @@ -662,16 +780,16 @@ int main(int argc, char **argv) SDL_Delay(1); } - #ifdef DEBUG_SEEKING_TEST +# ifdef DEBUG_SEEKING_TEST if(delayBeforeSeek-- <= 0) { delayBeforeSeek = rand() % 50; double seekTo = double((rand() % int(adl_totalTimeLength(myDevice)) - delayBeforeSeek - 1 )); adl_positionSeek(myDevice, seekTo); } - #endif +# endif - #else//HARDWARE_OPL3 +# else//HARDWARE_OPL3 const double mindelay = 1.0 / NewTimerFreq; //__asm__ volatile("sti\nhlt"); @@ -698,20 +816,20 @@ int main(int argc, char **argv) stop = true; } - #endif//HARDWARE_OPL3 +# endif//HARDWARE_OPL3 } std::fprintf(stdout, " \n\n"); - #ifndef HARDWARE_OPL3 +# ifndef HARDWARE_OPL3 SDL_CloseAudio(); - #endif +# endif } - #endif //OUTPUT_WAVE_ONLY +#endif //OUTPUT_WAVE_ONLY - #ifndef HARDWARE_OPL3 +#ifndef HARDWARE_OPL3 - #ifndef OUTPUT_WAVE_ONLY +# ifndef OUTPUT_WAVE_ONLY else - #endif //OUTPUT_WAVE_ONLY +# endif //OUTPUT_WAVE_ONLY { std::string wave_out = musPath + ".wav"; std::fprintf(stdout, " - Recording WAV file %s...\n", wave_out.c_str()); @@ -755,9 +873,9 @@ int main(int argc, char **argv) return 1; } } - #endif //HARDWARE_OPL3 +#endif //HARDWARE_OPL3 - #ifdef HARDWARE_OPL3 +#ifdef HARDWARE_OPL3 #ifdef __DJGPP__ // Fix the skewed clock and reset BIOS tick rate @@ -780,7 +898,7 @@ int main(int argc, char **argv) adl_panic(myDevice); //Shut up all sustaining notes - #endif +#endif adl_close(myDevice); diff --git a/utils/vlc_codec/libadlmidi.c b/utils/vlc_codec/libadlmidi.c index f6d785f..187ee84 100644 --- a/utils/vlc_codec/libadlmidi.c +++ b/utils/vlc_codec/libadlmidi.c @@ -65,6 +65,10 @@ #define EMBEDDED_BANK_ID_LONGTEXT N_( \ "Use one of embedded banks.") +#define FULL_PANNING_TEXT N_("Full panning") +#define FULL_PANNING_LONGTEXT N_( \ + "Enable full-panning stereo support") + #define VOLUME_MODEL_TEXT N_("Volume scaling model") #define VOLUME_MODEL_LONGTEXT N_( \ "Declares volume scaling model which will affect volume levels.") @@ -146,6 +150,9 @@ vlc_module_begin () add_bool( CONFIG_PREFIX "full-range-brightness", false, FULL_RANGE_CC74_TEXT, FULL_RANGE_CC74_LONGTEXT, false ) + add_bool( CONFIG_PREFIX "full-panning", false, FULL_PANNING_TEXT, + FULL_PANNING_LONGTEXT, false ) + vlc_module_end () @@ -191,6 +198,8 @@ static int Open (vlc_object_t *p_this) adl_setVolumeRangeModel(p_sys->synth, var_InheritInteger(p_this, CONFIG_PREFIX "volume-model")); + adl_setSoftPanEnabled(p_sys->synth, var_InheritBool(p_this, CONFIG_PREFIX "full-panning")); + adl_setFullRangeBrightness(p_sys->synth, var_InheritBool(p_this, CONFIG_PREFIX "full-range-brightness")); char *bank_path = var_InheritString (p_this, CONFIG_PREFIX "custombank"); diff --git a/utils/xmi2mid/xmi2mid.cpp b/utils/xmi2mid/xmi2mid.cpp new file mode 100644 index 0000000..65d5858 --- /dev/null +++ b/utils/xmi2mid/xmi2mid.cpp @@ -0,0 +1,74 @@ + +#include "cvt_xmi2mid.hpp" +#include <stdio.h> +#include <sys/stat.h> +#if !defined(_WIN32) +#include <unistd.h> +#else +#include <io.h> +#define fileno(fd) _fileno(fd) +#define isatty(fd) _isatty(fd) +#endif + +int main(int argc, char *argv[]) +{ + if(argc != 2) + { + fprintf(stderr, "Usage: xmi2mid <midi-file>\n"); + return 1; + } + + const char *filename = argv[1]; + + FILE *fh = fopen(filename, "rb"); + if(!fh) + { + fprintf(stderr, "Error opening file.\n"); + return 1; + } + + struct stat st; + if(fstat(fileno(fh), &st) != 0) + { + fprintf(stderr, "Error reading file status.\n"); + return 1; + } + + size_t insize = (size_t)st.st_size; + if(insize > 8 * 1024 * 1024) + { + fprintf(stderr, "File too large.\n"); + return 1; + } + + uint8_t *filedata = new uint8_t[insize]; + if(fread(filedata, 1, insize, fh) != insize) + { + fprintf(stderr, "Error reading file data.\n"); + return 1; + } + + uint8_t *xmidata = NULL; + uint32_t xmisize = 0; + if(Convert_xmi2midi(filedata, insize, &xmidata, &xmisize, XMIDI_CONVERT_NOCONVERSION) < 0) + { + fprintf(stderr, "Error converting XMI to SMF.\n"); + return 1; + } + + FILE *out = stdout; + if(isatty(fileno(out))) + { + fprintf(stderr, "Not writing SMF data on the text terminal.\n"); + } + else + { + if (fwrite(xmidata, 1, xmisize, out) != xmisize || fflush(out) != 0) + { + fprintf(stderr, "Error writing SMF data.\n"); + return 1; + } + } + + return 0; +} |