From 1fdce42f49e407b74d3dc4333d763b0706aa1934 Mon Sep 17 00:00:00 2001 From: anperederi Date: Sat, 25 Nov 2023 23:15:34 +0100 Subject: [PATCH] Add .fit feature --- Documents/Diagramme/ClassDiagram.puml | 33 + Documents/Diagramme/DiagrammeClasses.mdj | 7828 ++--- Sources/composer.json | 5 +- Sources/composer.lock | 543 +- Sources/config/config.php | 10 +- Sources/src/console/Console.php | 383 +- Sources/src/data/model/Activity.php | 274 +- Sources/src/data/model/Athlete.php | 182 +- Sources/src/data/model/Coach.php | 25 - Sources/src/data/model/CoachAthlete.php | 91 - Sources/src/data/model/Data.php | 7 - Sources/src/data/model/DataSource.php | 20 - Sources/src/data/model/HeartRate.php | 32 - Sources/src/data/model/Role.php | 105 +- Sources/src/data/model/Statistic.php | 44 - Sources/src/data/model/Training.php | 52 - Sources/src/data/model/User.php | 170 +- .../model/fitFileReader/fitFiles/biking.fit | Bin 0 -> 46927 bytes .../model/fitFileReader/fitFiles/cycling.fit | Bin 0 -> 100924 bytes .../model/fitFileReader/fitFiles/power.fit | Bin 0 -> 113213 bytes .../model/fitFileReader/fitFiles/swim.fit | Bin 0 -> 6325 bytes .../fitFileSaver/jsonFiles/ActivitySave.json | 27408 ++++++++++++++++ .../data/model/manager/ActivityManager.php | 161 + .../src/data/model/manager/AthleteManager.php | 121 +- .../src/data/model/manager/CoachManager.php | 95 - .../src/data/model/manager/DataManager.php | 2 +- .../src/data/model/manager/UserManager.php | 74 +- Sources/src/data/stub/StubData.php | 49 +- .../stub/repository/TrainingRepository.php | 86 - .../data/stub/repository/UserRepository.php | 122 +- Sources/vendor/composer/autoload_classmap.php | 5 + Sources/vendor/composer/autoload_files.php | 3 + Sources/vendor/composer/autoload_psr4.php | 7 + Sources/vendor/composer/autoload_real.php | 2 + Sources/vendor/composer/autoload_static.php | 49 + Sources/vendor/composer/installed.json | 562 + Sources/vendor/composer/installed.php | 67 +- Sources/vendor/composer/platform_check.php | 26 + .../graham-campbell/result-type/LICENSE | 21 + .../graham-campbell/result-type/composer.json | 33 + .../graham-campbell/result-type/src/Error.php | 121 + .../result-type/src/Result.php | 69 + .../result-type/src/Success.php | 120 + Sources/vendor/phpoption/phpoption/LICENSE | 201 + .../vendor/phpoption/phpoption/composer.json | 52 + .../phpoption/src/PhpOption/LazyOption.php | 175 + .../phpoption/src/PhpOption/None.php | 136 + .../phpoption/src/PhpOption/Option.php | 434 + .../phpoption/src/PhpOption/Some.php | 169 + .../vendor/symfony/polyfill-ctype/Ctype.php | 232 + Sources/vendor/symfony/polyfill-ctype/LICENSE | 19 + .../vendor/symfony/polyfill-ctype/README.md | 12 + .../symfony/polyfill-ctype/bootstrap.php | 50 + .../symfony/polyfill-ctype/bootstrap80.php | 46 + .../symfony/polyfill-ctype/composer.json | 41 + .../vendor/symfony/polyfill-mbstring/LICENSE | 19 + .../symfony/polyfill-mbstring/Mbstring.php | 947 + .../symfony/polyfill-mbstring/README.md | 13 + .../Resources/unidata/caseFolding.php | 119 + .../Resources/unidata/lowerCase.php | 1397 + .../Resources/unidata/titleCaseRegexp.php | 5 + .../Resources/unidata/upperCase.php | 1489 + .../symfony/polyfill-mbstring/bootstrap.php | 151 + .../symfony/polyfill-mbstring/bootstrap80.php | 147 + .../symfony/polyfill-mbstring/composer.json | 41 + Sources/vendor/symfony/polyfill-php80/LICENSE | 19 + .../vendor/symfony/polyfill-php80/Php80.php | 115 + .../symfony/polyfill-php80/PhpToken.php | 103 + .../vendor/symfony/polyfill-php80/README.md | 25 + .../Resources/stubs/Attribute.php | 31 + .../Resources/stubs/PhpToken.php | 16 + .../Resources/stubs/Stringable.php | 20 + .../Resources/stubs/UnhandledMatchError.php | 16 + .../Resources/stubs/ValueError.php | 16 + .../symfony/polyfill-php80/bootstrap.php | 42 + .../symfony/polyfill-php80/composer.json | 40 + Sources/vendor/twig/twig/CHANGELOG | 195 + Sources/vendor/twig/twig/LICENSE | 27 + Sources/vendor/twig/twig/README.rst | 23 + Sources/vendor/twig/twig/composer.json | 46 + .../twig/twig/src/Cache/CacheInterface.php | 46 + .../twig/twig/src/Cache/FilesystemCache.php | 87 + .../vendor/twig/twig/src/Cache/NullCache.php | 38 + Sources/vendor/twig/twig/src/Compiler.php | 223 + Sources/vendor/twig/twig/src/Environment.php | 840 + Sources/vendor/twig/twig/src/Error/Error.php | 227 + .../twig/twig/src/Error/LoaderError.php | 21 + .../twig/twig/src/Error/RuntimeError.php | 22 + .../twig/twig/src/Error/SyntaxError.php | 46 + .../vendor/twig/twig/src/ExpressionParser.php | 841 + .../twig/src/Extension/AbstractExtension.php | 45 + .../twig/twig/src/Extension/CoreExtension.php | 1750 + .../twig/src/Extension/DebugExtension.php | 64 + .../twig/src/Extension/EscaperExtension.php | 416 + .../twig/src/Extension/ExtensionInterface.php | 76 + .../twig/src/Extension/GlobalsInterface.php | 28 + .../twig/src/Extension/OptimizerExtension.php | 29 + .../twig/src/Extension/ProfilerExtension.php | 52 + .../Extension/RuntimeExtensionInterface.php | 19 + .../twig/src/Extension/SandboxExtension.php | 123 + .../twig/src/Extension/StagingExtension.php | 100 + .../src/Extension/StringLoaderExtension.php | 42 + Sources/vendor/twig/twig/src/ExtensionSet.php | 480 + .../src/FileExtensionEscapingStrategy.php | 60 + Sources/vendor/twig/twig/src/Lexer.php | 519 + .../twig/twig/src/Loader/ArrayLoader.php | 77 + .../twig/twig/src/Loader/ChainLoader.php | 119 + .../twig/twig/src/Loader/FilesystemLoader.php | 283 + .../twig/twig/src/Loader/LoaderInterface.php | 49 + Sources/vendor/twig/twig/src/Markup.php | 52 + .../twig/twig/src/Node/AutoEscapeNode.php | 38 + .../vendor/twig/twig/src/Node/BlockNode.php | 44 + .../twig/twig/src/Node/BlockReferenceNode.php | 36 + .../vendor/twig/twig/src/Node/BodyNode.php | 21 + .../twig/src/Node/CheckSecurityCallNode.php | 28 + .../twig/twig/src/Node/CheckSecurityNode.php | 88 + .../twig/twig/src/Node/CheckToStringNode.php | 45 + .../twig/twig/src/Node/DeprecatedNode.php | 53 + Sources/vendor/twig/twig/src/Node/DoNode.php | 38 + .../vendor/twig/twig/src/Node/EmbedNode.php | 48 + .../Node/Expression/AbstractExpression.php | 24 + .../src/Node/Expression/ArrayExpression.php | 135 + .../Expression/ArrowFunctionExpression.php | 64 + .../Node/Expression/AssignNameExpression.php | 27 + .../Node/Expression/Binary/AbstractBinary.php | 42 + .../src/Node/Expression/Binary/AddBinary.php | 23 + .../src/Node/Expression/Binary/AndBinary.php | 23 + .../Expression/Binary/BitwiseAndBinary.php | 23 + .../Expression/Binary/BitwiseOrBinary.php | 23 + .../Expression/Binary/BitwiseXorBinary.php | 23 + .../Node/Expression/Binary/ConcatBinary.php | 23 + .../src/Node/Expression/Binary/DivBinary.php | 23 + .../Node/Expression/Binary/EndsWithBinary.php | 35 + .../Node/Expression/Binary/EqualBinary.php | 39 + .../Node/Expression/Binary/FloorDivBinary.php | 29 + .../Node/Expression/Binary/GreaterBinary.php | 39 + .../Expression/Binary/GreaterEqualBinary.php | 39 + .../Node/Expression/Binary/HasEveryBinary.php | 33 + .../Node/Expression/Binary/HasSomeBinary.php | 33 + .../src/Node/Expression/Binary/InBinary.php | 33 + .../src/Node/Expression/Binary/LessBinary.php | 39 + .../Expression/Binary/LessEqualBinary.php | 39 + .../Node/Expression/Binary/MatchesBinary.php | 33 + .../src/Node/Expression/Binary/ModBinary.php | 23 + .../src/Node/Expression/Binary/MulBinary.php | 23 + .../Node/Expression/Binary/NotEqualBinary.php | 39 + .../Node/Expression/Binary/NotInBinary.php | 33 + .../src/Node/Expression/Binary/OrBinary.php | 23 + .../Node/Expression/Binary/PowerBinary.php | 22 + .../Node/Expression/Binary/RangeBinary.php | 33 + .../Expression/Binary/SpaceshipBinary.php | 22 + .../Expression/Binary/StartsWithBinary.php | 35 + .../src/Node/Expression/Binary/SubBinary.php | 23 + .../Expression/BlockReferenceExpression.php | 86 + .../src/Node/Expression/CallExpression.php | 321 + .../Node/Expression/ConditionalExpression.php | 45 + .../Node/Expression/ConstantExpression.php | 28 + .../Node/Expression/Filter/DefaultFilter.php | 52 + .../src/Node/Expression/FilterExpression.php | 40 + .../Node/Expression/FunctionExpression.php | 43 + .../src/Node/Expression/GetAttrExpression.php | 87 + .../twig/src/Node/Expression/InlinePrint.php | 35 + .../Node/Expression/MethodCallExpression.php | 62 + .../src/Node/Expression/NameExpression.php | 97 + .../Expression/NullCoalesceExpression.php | 60 + .../src/Node/Expression/ParentExpression.php | 46 + .../Node/Expression/TempNameExpression.php | 31 + .../src/Node/Expression/Test/ConstantTest.php | 49 + .../src/Node/Expression/Test/DefinedTest.php | 74 + .../Node/Expression/Test/DivisiblebyTest.php | 36 + .../src/Node/Expression/Test/EvenTest.php | 35 + .../src/Node/Expression/Test/NullTest.php | 34 + .../twig/src/Node/Expression/Test/OddTest.php | 35 + .../src/Node/Expression/Test/SameasTest.php | 34 + .../src/Node/Expression/TestExpression.php | 42 + .../Node/Expression/Unary/AbstractUnary.php | 34 + .../src/Node/Expression/Unary/NegUnary.php | 23 + .../src/Node/Expression/Unary/NotUnary.php | 23 + .../src/Node/Expression/Unary/PosUnary.php | 23 + .../Node/Expression/VariadicExpression.php | 24 + .../vendor/twig/twig/src/Node/FlushNode.php | 35 + .../vendor/twig/twig/src/Node/ForLoopNode.php | 49 + Sources/vendor/twig/twig/src/Node/ForNode.php | 107 + Sources/vendor/twig/twig/src/Node/IfNode.php | 73 + .../vendor/twig/twig/src/Node/ImportNode.php | 63 + .../vendor/twig/twig/src/Node/IncludeNode.php | 106 + .../vendor/twig/twig/src/Node/MacroNode.php | 113 + .../vendor/twig/twig/src/Node/ModuleNode.php | 473 + Sources/vendor/twig/twig/src/Node/Node.php | 178 + .../twig/src/Node/NodeCaptureInterface.php | 21 + .../twig/src/Node/NodeOutputInterface.php | 21 + .../vendor/twig/twig/src/Node/PrintNode.php | 39 + .../vendor/twig/twig/src/Node/SandboxNode.php | 52 + Sources/vendor/twig/twig/src/Node/SetNode.php | 105 + .../vendor/twig/twig/src/Node/TextNode.php | 38 + .../vendor/twig/twig/src/Node/WithNode.php | 70 + .../vendor/twig/twig/src/NodeTraverser.php | 76 + .../src/NodeVisitor/AbstractNodeVisitor.php | 49 + .../src/NodeVisitor/EscaperNodeVisitor.php | 208 + .../MacroAutoImportNodeVisitor.php | 74 + .../src/NodeVisitor/NodeVisitorInterface.php | 46 + .../src/NodeVisitor/OptimizerNodeVisitor.php | 217 + .../NodeVisitor/SafeAnalysisNodeVisitor.php | 160 + .../src/NodeVisitor/SandboxNodeVisitor.php | 136 + Sources/vendor/twig/twig/src/Parser.php | 347 + .../twig/src/Profiler/Dumper/BaseDumper.php | 63 + .../src/Profiler/Dumper/BlackfireDumper.php | 72 + .../twig/src/Profiler/Dumper/HtmlDumper.php | 47 + .../twig/src/Profiler/Dumper/TextDumper.php | 35 + .../src/Profiler/Node/EnterProfileNode.php | 42 + .../src/Profiler/Node/LeaveProfileNode.php | 36 + .../NodeVisitor/ProfilerNodeVisitor.php | 70 + .../vendor/twig/twig/src/Profiler/Profile.php | 181 + .../RuntimeLoader/ContainerRuntimeLoader.php | 37 + .../RuntimeLoader/FactoryRuntimeLoader.php | 41 + .../RuntimeLoader/RuntimeLoaderInterface.php | 27 + .../twig/twig/src/Sandbox/SecurityError.php | 23 + .../Sandbox/SecurityNotAllowedFilterError.php | 33 + .../SecurityNotAllowedFunctionError.php | 33 + .../Sandbox/SecurityNotAllowedMethodError.php | 40 + .../SecurityNotAllowedPropertyError.php | 40 + .../Sandbox/SecurityNotAllowedTagError.php | 33 + .../twig/twig/src/Sandbox/SecurityPolicy.php | 124 + .../src/Sandbox/SecurityPolicyInterface.php | 45 + Sources/vendor/twig/twig/src/Source.php | 51 + Sources/vendor/twig/twig/src/Template.php | 422 + .../vendor/twig/twig/src/TemplateWrapper.php | 107 + .../twig/src/Test/IntegrationTestCase.php | 266 + .../twig/twig/src/Test/NodeTestCase.php | 65 + Sources/vendor/twig/twig/src/Token.php | 184 + .../src/TokenParser/AbstractTokenParser.php | 32 + .../twig/src/TokenParser/ApplyTokenParser.php | 60 + .../src/TokenParser/AutoEscapeTokenParser.php | 58 + .../twig/src/TokenParser/BlockTokenParser.php | 78 + .../src/TokenParser/DeprecatedTokenParser.php | 43 + .../twig/src/TokenParser/DoTokenParser.php | 38 + .../twig/src/TokenParser/EmbedTokenParser.php | 73 + .../src/TokenParser/ExtendsTokenParser.php | 52 + .../twig/src/TokenParser/FlushTokenParser.php | 38 + .../twig/src/TokenParser/ForTokenParser.php | 78 + .../twig/src/TokenParser/FromTokenParser.php | 66 + .../twig/src/TokenParser/IfTokenParser.php | 89 + .../src/TokenParser/ImportTokenParser.php | 44 + .../src/TokenParser/IncludeTokenParser.php | 69 + .../twig/src/TokenParser/MacroTokenParser.php | 66 + .../src/TokenParser/SandboxTokenParser.php | 66 + .../twig/src/TokenParser/SetTokenParser.php | 73 + .../src/TokenParser/TokenParserInterface.php | 46 + .../twig/src/TokenParser/UseTokenParser.php | 73 + .../twig/src/TokenParser/WithTokenParser.php | 56 + Sources/vendor/twig/twig/src/TokenStream.php | 132 + Sources/vendor/twig/twig/src/TwigFilter.php | 134 + Sources/vendor/twig/twig/src/TwigFunction.php | 122 + Sources/vendor/twig/twig/src/TwigTest.php | 100 + .../twig/src/Util/DeprecationCollector.php | 77 + .../twig/src/Util/TemplateDirIterator.php | 36 + Sources/vendor/vlucas/phpdotenv/LICENSE | 30 + Sources/vendor/vlucas/phpdotenv/composer.json | 60 + .../vendor/vlucas/phpdotenv/src/Dotenv.php | 267 + .../src/Exception/ExceptionInterface.php | 12 + .../Exception/InvalidEncodingException.php | 12 + .../src/Exception/InvalidFileException.php | 12 + .../src/Exception/InvalidPathException.php | 12 + .../src/Exception/ValidationException.php | 12 + .../vlucas/phpdotenv/src/Loader/Loader.php | 47 + .../phpdotenv/src/Loader/LoaderInterface.php | 20 + .../vlucas/phpdotenv/src/Loader/Resolver.php | 65 + .../vlucas/phpdotenv/src/Parser/Entry.php | 59 + .../phpdotenv/src/Parser/EntryParser.php | 300 + .../vlucas/phpdotenv/src/Parser/Lexer.php | 58 + .../vlucas/phpdotenv/src/Parser/Lines.php | 127 + .../vlucas/phpdotenv/src/Parser/Parser.php | 53 + .../phpdotenv/src/Parser/ParserInterface.php | 19 + .../vlucas/phpdotenv/src/Parser/Value.php | 88 + .../Repository/Adapter/AdapterInterface.php | 15 + .../src/Repository/Adapter/ApacheAdapter.php | 89 + .../src/Repository/Adapter/ArrayAdapter.php | 80 + .../Repository/Adapter/EnvConstAdapter.php | 89 + .../src/Repository/Adapter/GuardedWriter.php | 85 + .../Repository/Adapter/ImmutableWriter.php | 110 + .../src/Repository/Adapter/MultiReader.php | 48 + .../src/Repository/Adapter/MultiWriter.php | 64 + .../src/Repository/Adapter/PutenvAdapter.php | 91 + .../Repository/Adapter/ReaderInterface.php | 17 + .../Repository/Adapter/ReplacingWriter.php | 104 + .../Repository/Adapter/ServerConstAdapter.php | 89 + .../Repository/Adapter/WriterInterface.php | 27 + .../src/Repository/AdapterRepository.php | 107 + .../src/Repository/RepositoryBuilder.php | 272 + .../src/Repository/RepositoryInterface.php | 51 + .../vlucas/phpdotenv/src/Store/File/Paths.php | 44 + .../phpdotenv/src/Store/File/Reader.php | 81 + .../vlucas/phpdotenv/src/Store/FileStore.php | 72 + .../phpdotenv/src/Store/StoreBuilder.php | 141 + .../phpdotenv/src/Store/StoreInterface.php | 17 + .../phpdotenv/src/Store/StringStore.php | 37 + .../vlucas/phpdotenv/src/Util/Regex.php | 112 + .../vendor/vlucas/phpdotenv/src/Util/Str.php | 98 + .../vendor/vlucas/phpdotenv/src/Validator.php | 209 + 299 files changed, 60795 insertions(+), 4847 deletions(-) create mode 100644 Documents/Diagramme/ClassDiagram.puml delete mode 100644 Sources/src/data/model/Coach.php delete mode 100644 Sources/src/data/model/CoachAthlete.php delete mode 100644 Sources/src/data/model/Data.php delete mode 100644 Sources/src/data/model/DataSource.php delete mode 100644 Sources/src/data/model/HeartRate.php delete mode 100644 Sources/src/data/model/Statistic.php delete mode 100644 Sources/src/data/model/Training.php create mode 100644 Sources/src/data/model/fitFileReader/fitFiles/biking.fit create mode 100644 Sources/src/data/model/fitFileReader/fitFiles/cycling.fit create mode 100644 Sources/src/data/model/fitFileReader/fitFiles/power.fit create mode 100644 Sources/src/data/model/fitFileReader/fitFiles/swim.fit create mode 100644 Sources/src/data/model/fitFileSaver/jsonFiles/ActivitySave.json create mode 100644 Sources/src/data/model/manager/ActivityManager.php delete mode 100644 Sources/src/data/model/manager/CoachManager.php delete mode 100644 Sources/src/data/stub/repository/TrainingRepository.php create mode 100644 Sources/vendor/composer/platform_check.php create mode 100644 Sources/vendor/graham-campbell/result-type/LICENSE create mode 100644 Sources/vendor/graham-campbell/result-type/composer.json create mode 100644 Sources/vendor/graham-campbell/result-type/src/Error.php create mode 100644 Sources/vendor/graham-campbell/result-type/src/Result.php create mode 100644 Sources/vendor/graham-campbell/result-type/src/Success.php create mode 100644 Sources/vendor/phpoption/phpoption/LICENSE create mode 100644 Sources/vendor/phpoption/phpoption/composer.json create mode 100644 Sources/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php create mode 100644 Sources/vendor/phpoption/phpoption/src/PhpOption/None.php create mode 100644 Sources/vendor/phpoption/phpoption/src/PhpOption/Option.php create mode 100644 Sources/vendor/phpoption/phpoption/src/PhpOption/Some.php create mode 100644 Sources/vendor/symfony/polyfill-ctype/Ctype.php create mode 100644 Sources/vendor/symfony/polyfill-ctype/LICENSE create mode 100644 Sources/vendor/symfony/polyfill-ctype/README.md create mode 100644 Sources/vendor/symfony/polyfill-ctype/bootstrap.php create mode 100644 Sources/vendor/symfony/polyfill-ctype/bootstrap80.php create mode 100644 Sources/vendor/symfony/polyfill-ctype/composer.json create mode 100644 Sources/vendor/symfony/polyfill-mbstring/LICENSE create mode 100644 Sources/vendor/symfony/polyfill-mbstring/Mbstring.php create mode 100644 Sources/vendor/symfony/polyfill-mbstring/README.md create mode 100644 Sources/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php create mode 100644 Sources/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php create mode 100644 Sources/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php create mode 100644 Sources/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php create mode 100644 Sources/vendor/symfony/polyfill-mbstring/bootstrap.php create mode 100644 Sources/vendor/symfony/polyfill-mbstring/bootstrap80.php create mode 100644 Sources/vendor/symfony/polyfill-mbstring/composer.json create mode 100644 Sources/vendor/symfony/polyfill-php80/LICENSE create mode 100644 Sources/vendor/symfony/polyfill-php80/Php80.php create mode 100644 Sources/vendor/symfony/polyfill-php80/PhpToken.php create mode 100644 Sources/vendor/symfony/polyfill-php80/README.md create mode 100644 Sources/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php create mode 100644 Sources/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php create mode 100644 Sources/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php create mode 100644 Sources/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php create mode 100644 Sources/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php create mode 100644 Sources/vendor/symfony/polyfill-php80/bootstrap.php create mode 100644 Sources/vendor/symfony/polyfill-php80/composer.json create mode 100644 Sources/vendor/twig/twig/CHANGELOG create mode 100644 Sources/vendor/twig/twig/LICENSE create mode 100644 Sources/vendor/twig/twig/README.rst create mode 100644 Sources/vendor/twig/twig/composer.json create mode 100644 Sources/vendor/twig/twig/src/Cache/CacheInterface.php create mode 100644 Sources/vendor/twig/twig/src/Cache/FilesystemCache.php create mode 100644 Sources/vendor/twig/twig/src/Cache/NullCache.php create mode 100644 Sources/vendor/twig/twig/src/Compiler.php create mode 100644 Sources/vendor/twig/twig/src/Environment.php create mode 100644 Sources/vendor/twig/twig/src/Error/Error.php create mode 100644 Sources/vendor/twig/twig/src/Error/LoaderError.php create mode 100644 Sources/vendor/twig/twig/src/Error/RuntimeError.php create mode 100644 Sources/vendor/twig/twig/src/Error/SyntaxError.php create mode 100644 Sources/vendor/twig/twig/src/ExpressionParser.php create mode 100644 Sources/vendor/twig/twig/src/Extension/AbstractExtension.php create mode 100644 Sources/vendor/twig/twig/src/Extension/CoreExtension.php create mode 100644 Sources/vendor/twig/twig/src/Extension/DebugExtension.php create mode 100644 Sources/vendor/twig/twig/src/Extension/EscaperExtension.php create mode 100644 Sources/vendor/twig/twig/src/Extension/ExtensionInterface.php create mode 100644 Sources/vendor/twig/twig/src/Extension/GlobalsInterface.php create mode 100644 Sources/vendor/twig/twig/src/Extension/OptimizerExtension.php create mode 100644 Sources/vendor/twig/twig/src/Extension/ProfilerExtension.php create mode 100644 Sources/vendor/twig/twig/src/Extension/RuntimeExtensionInterface.php create mode 100644 Sources/vendor/twig/twig/src/Extension/SandboxExtension.php create mode 100644 Sources/vendor/twig/twig/src/Extension/StagingExtension.php create mode 100644 Sources/vendor/twig/twig/src/Extension/StringLoaderExtension.php create mode 100644 Sources/vendor/twig/twig/src/ExtensionSet.php create mode 100644 Sources/vendor/twig/twig/src/FileExtensionEscapingStrategy.php create mode 100644 Sources/vendor/twig/twig/src/Lexer.php create mode 100644 Sources/vendor/twig/twig/src/Loader/ArrayLoader.php create mode 100644 Sources/vendor/twig/twig/src/Loader/ChainLoader.php create mode 100644 Sources/vendor/twig/twig/src/Loader/FilesystemLoader.php create mode 100644 Sources/vendor/twig/twig/src/Loader/LoaderInterface.php create mode 100644 Sources/vendor/twig/twig/src/Markup.php create mode 100644 Sources/vendor/twig/twig/src/Node/AutoEscapeNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/BlockNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/BlockReferenceNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/BodyNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/CheckSecurityCallNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/CheckSecurityNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/CheckToStringNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/DeprecatedNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/DoNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/EmbedNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/AbstractExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/ArrayExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/ArrowFunctionExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/AssignNameExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/AbstractBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/AddBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/AndBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/BitwiseAndBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/BitwiseOrBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/BitwiseXorBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/ConcatBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/DivBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/EndsWithBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/EqualBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/FloorDivBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/GreaterBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/GreaterEqualBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/HasEveryBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/HasSomeBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/InBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/LessBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/LessEqualBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/MatchesBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/ModBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/MulBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/NotEqualBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/NotInBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/OrBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/PowerBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/RangeBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/SpaceshipBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/StartsWithBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Binary/SubBinary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/BlockReferenceExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/CallExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/ConditionalExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/ConstantExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Filter/DefaultFilter.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/FilterExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/FunctionExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/GetAttrExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/InlinePrint.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/MethodCallExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/NameExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/NullCoalesceExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/ParentExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/TempNameExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Test/ConstantTest.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Test/DefinedTest.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Test/DivisiblebyTest.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Test/EvenTest.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Test/NullTest.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Test/OddTest.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Test/SameasTest.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/TestExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Unary/AbstractUnary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Unary/NegUnary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Unary/NotUnary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/Unary/PosUnary.php create mode 100644 Sources/vendor/twig/twig/src/Node/Expression/VariadicExpression.php create mode 100644 Sources/vendor/twig/twig/src/Node/FlushNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/ForLoopNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/ForNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/IfNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/ImportNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/IncludeNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/MacroNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/ModuleNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/Node.php create mode 100644 Sources/vendor/twig/twig/src/Node/NodeCaptureInterface.php create mode 100644 Sources/vendor/twig/twig/src/Node/NodeOutputInterface.php create mode 100644 Sources/vendor/twig/twig/src/Node/PrintNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/SandboxNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/SetNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/TextNode.php create mode 100644 Sources/vendor/twig/twig/src/Node/WithNode.php create mode 100644 Sources/vendor/twig/twig/src/NodeTraverser.php create mode 100644 Sources/vendor/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php create mode 100644 Sources/vendor/twig/twig/src/NodeVisitor/EscaperNodeVisitor.php create mode 100644 Sources/vendor/twig/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php create mode 100644 Sources/vendor/twig/twig/src/NodeVisitor/NodeVisitorInterface.php create mode 100644 Sources/vendor/twig/twig/src/NodeVisitor/OptimizerNodeVisitor.php create mode 100644 Sources/vendor/twig/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php create mode 100644 Sources/vendor/twig/twig/src/NodeVisitor/SandboxNodeVisitor.php create mode 100644 Sources/vendor/twig/twig/src/Parser.php create mode 100644 Sources/vendor/twig/twig/src/Profiler/Dumper/BaseDumper.php create mode 100644 Sources/vendor/twig/twig/src/Profiler/Dumper/BlackfireDumper.php create mode 100644 Sources/vendor/twig/twig/src/Profiler/Dumper/HtmlDumper.php create mode 100644 Sources/vendor/twig/twig/src/Profiler/Dumper/TextDumper.php create mode 100644 Sources/vendor/twig/twig/src/Profiler/Node/EnterProfileNode.php create mode 100644 Sources/vendor/twig/twig/src/Profiler/Node/LeaveProfileNode.php create mode 100644 Sources/vendor/twig/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php create mode 100644 Sources/vendor/twig/twig/src/Profiler/Profile.php create mode 100644 Sources/vendor/twig/twig/src/RuntimeLoader/ContainerRuntimeLoader.php create mode 100644 Sources/vendor/twig/twig/src/RuntimeLoader/FactoryRuntimeLoader.php create mode 100644 Sources/vendor/twig/twig/src/RuntimeLoader/RuntimeLoaderInterface.php create mode 100644 Sources/vendor/twig/twig/src/Sandbox/SecurityError.php create mode 100644 Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFilterError.php create mode 100644 Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFunctionError.php create mode 100644 Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedMethodError.php create mode 100644 Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php create mode 100644 Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedTagError.php create mode 100644 Sources/vendor/twig/twig/src/Sandbox/SecurityPolicy.php create mode 100644 Sources/vendor/twig/twig/src/Sandbox/SecurityPolicyInterface.php create mode 100644 Sources/vendor/twig/twig/src/Source.php create mode 100644 Sources/vendor/twig/twig/src/Template.php create mode 100644 Sources/vendor/twig/twig/src/TemplateWrapper.php create mode 100644 Sources/vendor/twig/twig/src/Test/IntegrationTestCase.php create mode 100644 Sources/vendor/twig/twig/src/Test/NodeTestCase.php create mode 100644 Sources/vendor/twig/twig/src/Token.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/AbstractTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/ApplyTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/AutoEscapeTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/BlockTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/DeprecatedTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/DoTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/EmbedTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/ExtendsTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/FlushTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/ForTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/FromTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/IfTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/ImportTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/IncludeTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/MacroTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/SandboxTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/SetTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/TokenParserInterface.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/UseTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenParser/WithTokenParser.php create mode 100644 Sources/vendor/twig/twig/src/TokenStream.php create mode 100644 Sources/vendor/twig/twig/src/TwigFilter.php create mode 100644 Sources/vendor/twig/twig/src/TwigFunction.php create mode 100644 Sources/vendor/twig/twig/src/TwigTest.php create mode 100644 Sources/vendor/twig/twig/src/Util/DeprecationCollector.php create mode 100644 Sources/vendor/twig/twig/src/Util/TemplateDirIterator.php create mode 100644 Sources/vendor/vlucas/phpdotenv/LICENSE create mode 100644 Sources/vendor/vlucas/phpdotenv/composer.json create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Dotenv.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Loader/Loader.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Loader/Resolver.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Parser/Entry.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Parser/EntryParser.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Parser/Lexer.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Parser/Lines.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Parser/Parser.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Parser/ParserInterface.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Parser/Value.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/AdapterRepository.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Repository/RepositoryInterface.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Store/File/Paths.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Store/File/Reader.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Store/FileStore.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Store/StoreBuilder.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Store/StringStore.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Util/Regex.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Util/Str.php create mode 100644 Sources/vendor/vlucas/phpdotenv/src/Validator.php diff --git a/Documents/Diagramme/ClassDiagram.puml b/Documents/Diagramme/ClassDiagram.puml new file mode 100644 index 00000000..ab02d2a9 --- /dev/null +++ b/Documents/Diagramme/ClassDiagram.puml @@ -0,0 +1,33 @@ +@startuml +class phpFITFileAnalysis +{ + data_mesgs : array + dev_field_descriptions : array + options : null + file_contents : string + file_pointer : integer + defn_mesgs : array + defn_mesgs_all : array + file_header : array + php_trader_ext_loaded : boolean + types : null + garmin_timestamps : boolean + readDataRecords : function + fixData($options) : function + interpolateMissingData(&$missing_keys, &$array) +} + +ProjectModel --|> Project +AttributeModel --|> Element +UMLModel --|> Element +UMLClassDiagram --|> Element +UMLClassView --|> View +UMLNameCompartmentView --|> View +UMLAttributeCompartmentView --|> View +UMLOperationCompartmentView --|> View +UMLReceptionCompartmentView --|> View +UMLTemplateParameterCompartmentView --|> View +LabelView --|> View + +@enduml + diff --git a/Documents/Diagramme/DiagrammeClasses.mdj b/Documents/Diagramme/DiagrammeClasses.mdj index fbd97fea..b6fb8b59 100644 --- a/Documents/Diagramme/DiagrammeClasses.mdj +++ b/Documents/Diagramme/DiagrammeClasses.mdj @@ -2540,13 +2540,30 @@ "height": 13, "text": "-TemperatureMoyenne: float", "horizontalAlignment": 0 + }, + { + "_type": "UMLAttributeView", + "_id": "AAAAAAGMBkKgGyoAcM4=", + "_parent": { + "$ref": "AAAAAAGL3DH0VM3kbjc=" + }, + "model": { + "$ref": "AAAAAAGMBkKf7yn3AyI=" + }, + "font": "Arial;13;0", + "left": 4253, + "top": 3201, + "width": 185.3388671875, + "height": 13, + "text": "-autoPause: bool", + "horizontalAlignment": 0 } ], "font": "Arial;13;0", "left": 4248, "top": 3001, "width": 195.3388671875, - "height": 203 + "height": 218 }, { "_type": "UMLOperationCompartmentView", @@ -2569,7 +2586,7 @@ }, "font": "Arial;13;0", "left": 4253, - "top": 3209, + "top": 3224, "width": 185.3388671875, "height": 13, "text": "+getActivite(): Activite", @@ -2586,7 +2603,7 @@ }, "font": "Arial;13;0", "left": 4253, - "top": 3224, + "top": 3239, "width": 185.3388671875, "height": 13, "text": "+getAnalyse(a1: Activite): String", @@ -2603,7 +2620,7 @@ }, "font": "Arial;13;0", "left": 4253, - "top": 3239, + "top": 3254, "width": 185.3388671875, "height": 13, "text": "+toString(Activite): String", @@ -2612,7 +2629,7 @@ ], "font": "Arial;13;0", "left": 4248, - "top": 3204, + "top": 3219, "width": 195.3388671875, "height": 53 }, @@ -2654,7 +2671,7 @@ "left": 4248, "top": 2976, "width": 195.3388671875, - "height": 281, + "height": 296, "nameCompartment": { "$ref": "AAAAAAGL3DH0VM3fysc=" }, @@ -2671,356 +2688,6 @@ "$ref": "AAAAAAGL3DH0VM30Qm4=" } }, - { - "_type": "UMLClassView", - "_id": "AAAAAAGL3DIjHP3lRWY=", - "_parent": { - "$ref": "AAAAAAFF+qBtyKM79qY=" - }, - "model": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "subViews": [ - { - "_type": "UMLNameCompartmentView", - "_id": "AAAAAAGL3DIjHP3mSps=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3lRWY=" - }, - "model": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "subViews": [ - { - "_type": "LabelView", - "_id": "AAAAAAGL3DIjHP3n3eg=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3mSps=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 6895, - "top": 6025, - "height": 13 - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL3DIjHP3o4Uo=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3mSps=" - }, - "font": "Arial;13;1", - "left": 4285, - "top": 3639, - "width": 143.7744140625, - "height": 13, - "text": "FrequenceCardiaque" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL3DIjHP3p2d8=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3mSps=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 6895, - "top": 6025, - "width": 73.67724609375, - "height": 13, - "text": "(from Model)" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL3DIjHP3qtD0=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3mSps=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 6895, - "top": 6025, - "height": 13, - "horizontalAlignment": 1 - } - ], - "font": "Arial;13;0", - "left": 4280, - "top": 3632, - "width": 153.7744140625, - "height": 25, - "stereotypeLabel": { - "$ref": "AAAAAAGL3DIjHP3n3eg=" - }, - "nameLabel": { - "$ref": "AAAAAAGL3DIjHP3o4Uo=" - }, - "namespaceLabel": { - "$ref": "AAAAAAGL3DIjHP3p2d8=" - }, - "propertyLabel": { - "$ref": "AAAAAAGL3DIjHP3qtD0=" - } - }, - { - "_type": "UMLAttributeCompartmentView", - "_id": "AAAAAAGL3DIjHP3rfkk=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3lRWY=" - }, - "model": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "subViews": [ - { - "_type": "UMLAttributeView", - "_id": "AAAAAAGL3DIjHf3to8o=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3rfkk=" - }, - "model": { - "$ref": "AAAAAAGLrw3x6qEfQ7s=" - }, - "font": "Arial;13;0", - "left": 4285, - "top": 3662, - "width": 143.7744140625, - "height": 13, - "text": "+altitude: float", - "horizontalAlignment": 0 - }, - { - "_type": "UMLAttributeView", - "_id": "AAAAAAGL3DIjHf3uz9c=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3rfkk=" - }, - "model": { - "$ref": "AAAAAAGLrw+HkMJEvmU=" - }, - "font": "Arial;13;0", - "left": 4285, - "top": 3677, - "width": 143.7744140625, - "height": 13, - "text": "+temps: time", - "horizontalAlignment": 0 - }, - { - "_type": "UMLAttributeView", - "_id": "AAAAAAGL3DIjHf3vimM=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3rfkk=" - }, - "model": { - "$ref": "AAAAAAGLrw+3WMN0bxo=" - }, - "font": "Arial;13;0", - "left": 4285, - "top": 3692, - "width": 143.7744140625, - "height": 13, - "text": "+bpm: int", - "horizontalAlignment": 0 - }, - { - "_type": "UMLAttributeView", - "_id": "AAAAAAGL3DIjHf3wOQA=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3rfkk=" - }, - "model": { - "$ref": "AAAAAAGLrxAaycSkKog=" - }, - "font": "Arial;13;0", - "left": 4285, - "top": 3707, - "width": 143.7744140625, - "height": 13, - "text": "+longitude: float", - "horizontalAlignment": 0 - }, - { - "_type": "UMLAttributeView", - "_id": "AAAAAAGL3DIjHf3xtdc=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3rfkk=" - }, - "model": { - "$ref": "AAAAAAGLrxA1ucXUBnc=" - }, - "font": "Arial;13;0", - "left": 4285, - "top": 3722, - "width": 143.7744140625, - "height": 13, - "text": "+latitude: float", - "horizontalAlignment": 0 - }, - { - "_type": "UMLAttributeView", - "_id": "AAAAAAGL3DIjHf3yisk=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3rfkk=" - }, - "model": { - "$ref": "AAAAAAGLrxP96QUNENY=" - }, - "font": "Arial;13;0", - "left": 4285, - "top": 3737, - "width": 143.7744140625, - "height": 13, - "text": "+temperature: float", - "horizontalAlignment": 0 - } - ], - "font": "Arial;13;0", - "left": 4280, - "top": 3657, - "width": 153.7744140625, - "height": 98 - }, - { - "_type": "UMLOperationCompartmentView", - "_id": "AAAAAAGL3DIjHf3zBGc=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3lRWY=" - }, - "model": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "subViews": [ - { - "_type": "UMLOperationView", - "_id": "AAAAAAGL3DaQY+helb8=", - "_parent": { - "$ref": "AAAAAAGL3DIjHf3zBGc=" - }, - "model": { - "$ref": "AAAAAAGL3DaQRegiaqA=" - }, - "font": "Arial;13;0", - "left": 4285, - "top": 3760, - "width": 143.7744140625, - "height": 13, - "text": "+getAltitude(): String", - "horizontalAlignment": 0 - }, - { - "_type": "UMLOperationView", - "_id": "AAAAAAGL3Dba2+xmd/c=", - "_parent": { - "$ref": "AAAAAAGL3DIjHf3zBGc=" - }, - "model": { - "$ref": "AAAAAAGL3Dba0Owqrmc=" - }, - "font": "Arial;13;0", - "left": 4285, - "top": 3775, - "width": 143.7744140625, - "height": 13, - "text": "+getTemps(): String", - "horizontalAlignment": 0 - }, - { - "_type": "UMLOperationView", - "_id": "AAAAAAGL3Db54+9Cmc8=", - "_parent": { - "$ref": "AAAAAAGL3DIjHf3zBGc=" - }, - "model": { - "$ref": "AAAAAAGL3Db52O8G3pE=" - }, - "font": "Arial;13;0", - "left": 4285, - "top": 3790, - "width": 143.7744140625, - "height": 13, - "text": "+getBpm(): String", - "horizontalAlignment": 0 - }, - { - "_type": "UMLOperationView", - "_id": "AAAAAAGL3DcZjvIepeU=", - "_parent": { - "$ref": "AAAAAAGL3DIjHf3zBGc=" - }, - "model": { - "$ref": "AAAAAAGL3DcZXfHiyL4=" - }, - "font": "Arial;13;0", - "left": 4285, - "top": 3805, - "width": 143.7744140625, - "height": 13, - "text": "+getposition(): String", - "horizontalAlignment": 0 - } - ], - "font": "Arial;13;0", - "left": 4280, - "top": 3755, - "width": 153.7744140625, - "height": 68 - }, - { - "_type": "UMLReceptionCompartmentView", - "_id": "AAAAAAGL3DIjHf30l5s=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3lRWY=" - }, - "model": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 3160, - "top": 2328, - "width": 10, - "height": 10 - }, - { - "_type": "UMLTemplateParameterCompartmentView", - "_id": "AAAAAAGL3DIjHf31sKU=", - "_parent": { - "$ref": "AAAAAAGL3DIjHP3lRWY=" - }, - "model": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 3160, - "top": 2328, - "width": 10, - "height": 10 - } - ], - "font": "Arial;13;0", - "containerChangeable": true, - "left": 4280, - "top": 3632, - "width": 153.7744140625, - "height": 206, - "nameCompartment": { - "$ref": "AAAAAAGL3DIjHP3mSps=" - }, - "attributeCompartment": { - "$ref": "AAAAAAGL3DIjHP3rfkk=" - }, - "operationCompartment": { - "$ref": "AAAAAAGL3DIjHf3zBGc=" - }, - "receptionCompartment": { - "$ref": "AAAAAAGL3DIjHf30l5s=" - }, - "templateParameterCompartment": { - "$ref": "AAAAAAGL3DIjHf31sKU=" - } - }, { "_type": "UMLClassView", "_id": "AAAAAAGL3DJHyBCPzHA=", @@ -4075,7 +3742,7 @@ "$ref": "AAAAAAGL3DO5CWGzYdk=" }, "font": "Arial;13;0", - "left": 4327, + "left": 4326, "top": 2927, "width": 77.669921875, "height": 13, @@ -4098,7 +3765,7 @@ }, "visible": null, "font": "Arial;13;0", - "left": 4335, + "left": 4334, "top": 2845, "height": 13, "alpha": 1.5707963267948966, @@ -4119,7 +3786,7 @@ }, "visible": false, "font": "Arial;13;0", - "left": 4291, + "left": 4290, "top": 2852, "height": 13, "alpha": -1.5707963267948966, @@ -4223,7 +3890,7 @@ }, "visible": false, "font": "Arial;13;0", - "left": 4347, + "left": 4346, "top": 2936, "height": 13, "alpha": -0.7853981633974483, @@ -4243,7 +3910,7 @@ }, "visible": false, "font": "Arial;13;0", - "left": 4308, + "left": 4307, "top": 2949, "height": 13, "alpha": 0.5235987755982988, @@ -4293,7 +3960,7 @@ "$ref": "AAAAAAGL3BsTqaEI6W8=" }, "lineStyle": 1, - "points": "4288:2737;4324:2975", + "points": "4288:2737;4323:2975", "showVisibility": true, "nameLabel": { "$ref": "AAAAAAGL3DO5DWG4Vxk=" @@ -4626,8 +4293,8 @@ }, "visible": false, "font": "Arial;13;0", - "left": 4197, - "top": 2987, + "left": 4196, + "top": 2989, "height": 13, "alpha": 1.5707963267948966, "distance": 15, @@ -4647,8 +4314,8 @@ }, "visible": null, "font": "Arial;13;0", - "left": 4187, - "top": 2998, + "left": 4185, + "top": 3000, "height": 13, "alpha": 1.5707963267948966, "distance": 30, @@ -4668,8 +4335,8 @@ }, "visible": false, "font": "Arial;13;0", - "left": 4218, - "top": 2966, + "left": 4217, + "top": 2968, "height": 13, "alpha": -1.5707963267948966, "distance": 15, @@ -4689,8 +4356,8 @@ }, "visible": false, "font": "Arial;13;0", - "left": 4217, - "top": 3007, + "left": 4218, + "top": 3011, "height": 13, "alpha": 0.5235987755982988, "distance": 30, @@ -4711,7 +4378,7 @@ "visible": false, "font": "Arial;13;0", "left": 4207, - "top": 3015, + "top": 3019, "height": 13, "alpha": 0.7853981633974483, "distance": 40, @@ -4732,7 +4399,7 @@ "visible": false, "font": "Arial;13;0", "left": 4240, - "top": 2990, + "top": 2994, "height": 13, "alpha": -0.5235987755982988, "distance": 25, @@ -4752,7 +4419,7 @@ }, "visible": false, "font": "Arial;13;0", - "left": 4178, + "left": 4175, "top": 2968, "height": 13, "alpha": -0.5235987755982988, @@ -4772,8 +4439,8 @@ }, "visible": false, "font": "Arial;13;0", - "left": 4170, - "top": 2979, + "left": 4168, + "top": 2980, "height": 13, "alpha": -0.7853981633974483, "distance": 40, @@ -4792,7 +4459,7 @@ }, "visible": false, "font": "Arial;13;0", - "left": 4194, + "left": 4192, "top": 2946, "height": 13, "alpha": 0.5235987755982988, @@ -4842,7 +4509,7 @@ "$ref": "AAAAAAGL3DH0VM3eelw=" }, "lineStyle": 1, - "points": "4247:3021;4170:2946", + "points": "4247:3025;4168:2946", "showVisibility": true, "nameLabel": { "$ref": "AAAAAAGL3DewWCCp9IE=" @@ -6498,1684 +6165,1566 @@ } }, { - "_type": "UMLClassView", - "_id": "AAAAAAGL3EKg2/rm/3U=", + "_type": "UMLDependencyView", + "_id": "AAAAAAGL3EhnLQk/wU8=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL3EKg2PrkEkk=" + "$ref": "AAAAAAGL3EhnKwk9Pw0=" }, "subViews": [ { - "_type": "UMLNameCompartmentView", - "_id": "AAAAAAGL3EKg2/rnW04=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL3EhnLQlAeLk=", "_parent": { - "$ref": "AAAAAAGL3EKg2/rm/3U=" + "$ref": "AAAAAAGL3EhnLQk/wU8=" }, "model": { - "$ref": "AAAAAAGL3EKg2PrkEkk=" + "$ref": "AAAAAAGL3EhnKwk9Pw0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3773, + "top": 2707, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL3EhnLQk/wU8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL3EhnLglBTew=", + "_parent": { + "$ref": "AAAAAAGL3EhnLQk/wU8=" + }, + "model": { + "$ref": "AAAAAAGL3EhnKwk9Pw0=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 3770, + "top": 2692, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL3EhnLQk/wU8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL3EhnLglC42U=", + "_parent": { + "$ref": "AAAAAAGL3EhnLQk/wU8=" + }, + "model": { + "$ref": "AAAAAAGL3EhnKwk9Pw0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3778, + "top": 2736, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL3EhnLQk/wU8=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAGL3BsTqaEI6W8=" + }, + "tail": { + "$ref": "AAAAAAGL3CMxnUgw9Qc=" + }, + "lineStyle": 1, + "points": "3591:2626;3776:2728;4183:2656", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAGL3EhnLQlAeLk=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAGL3EhnLglBTew=" + }, + "propertyLabel": { + "$ref": "AAAAAAGL3EhnLglC42U=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAGL8e8PL0VmSkQ=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAGL8e8PLkVkOWg=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAGL8e8PMEVnGz8=", + "_parent": { + "$ref": "AAAAAAGL8e8PL0VmSkQ=" + }, + "model": { + "$ref": "AAAAAAGL8e8PLkVkOWg=" }, "subViews": [ { "_type": "LabelView", - "_id": "AAAAAAGL3EKg2/roFFk=", + "_id": "AAAAAAGL8e8PMEVoIWg=", "_parent": { - "$ref": "AAAAAAGL3EKg2/rnW04=" + "$ref": "AAAAAAGL8e8PMEVnGz8=" }, "visible": false, "font": "Arial;13;0", - "left": -496, - "top": 1424, + "left": 1408, + "top": 992, "height": 13 }, { "_type": "LabelView", - "_id": "AAAAAAGL3EKg2/rpi4o=", + "_id": "AAAAAAGL8e8PMUVpAU4=", "_parent": { - "$ref": "AAAAAAGL3EKg2/rnW04=" + "$ref": "AAAAAAGL8e8PMEVnGz8=" }, "font": "Arial;13;1", - "left": 4309, - "top": 3399, - "width": 90.70166015625, + "left": 3965, + "top": 1799, + "width": 96.80810546875, "height": 13, - "text": "Donnees" + "text": "UserRepository" }, { "_type": "LabelView", - "_id": "AAAAAAGL3EKg2/rqkH0=", + "_id": "AAAAAAGL8e8PMUVqQ5g=", "_parent": { - "$ref": "AAAAAAGL3EKg2/rnW04=" + "$ref": "AAAAAAGL8e8PMEVnGz8=" }, "visible": false, "font": "Arial;13;0", - "left": -496, - "top": 1424, + "left": 1408, + "top": 992, "width": 73.67724609375, "height": 13, "text": "(from Model)" }, { "_type": "LabelView", - "_id": "AAAAAAGL3EKg2/rrXDg=", + "_id": "AAAAAAGL8e8PMUVrcd4=", "_parent": { - "$ref": "AAAAAAGL3EKg2/rnW04=" + "$ref": "AAAAAAGL8e8PMEVnGz8=" }, "visible": false, "font": "Arial;13;0", - "left": -496, - "top": 1424, + "left": 1408, + "top": 992, "height": 13, "horizontalAlignment": 1 } ], "font": "Arial;13;0", - "left": 4304, - "top": 3392, - "width": 100.70166015625, + "left": 3960, + "top": 1792, + "width": 106.80810546875, "height": 25, "stereotypeLabel": { - "$ref": "AAAAAAGL3EKg2/roFFk=" + "$ref": "AAAAAAGL8e8PMEVoIWg=" }, "nameLabel": { - "$ref": "AAAAAAGL3EKg2/rpi4o=" + "$ref": "AAAAAAGL8e8PMUVpAU4=" }, "namespaceLabel": { - "$ref": "AAAAAAGL3EKg2/rqkH0=" + "$ref": "AAAAAAGL8e8PMUVqQ5g=" }, "propertyLabel": { - "$ref": "AAAAAAGL3EKg2/rrXDg=" + "$ref": "AAAAAAGL8e8PMUVrcd4=" } }, { "_type": "UMLAttributeCompartmentView", - "_id": "AAAAAAGL3EKg2/rsRXg=", + "_id": "AAAAAAGL8e8PMUVsK2E=", "_parent": { - "$ref": "AAAAAAGL3EKg2/rm/3U=" + "$ref": "AAAAAAGL8e8PL0VmSkQ=" }, "model": { - "$ref": "AAAAAAGL3EKg2PrkEkk=" + "$ref": "AAAAAAGL8e8PLkVkOWg=" }, "subViews": [ { "_type": "UMLAttributeView", - "_id": "AAAAAAGL3ESgRI2JDKM=", + "_id": "AAAAAAGL+8w3rCz3EQg=", "_parent": { - "$ref": "AAAAAAGL3EKg2/rsRXg=" + "$ref": "AAAAAAGL8e8PMUVsK2E=" }, "model": { - "$ref": "AAAAAAGL3ESgLI019ac=" + "$ref": "AAAAAAGL+8w3liysleM=" }, "font": "Arial;13;0", - "left": 4309, - "top": 3422, - "width": 90.70166015625, + "left": 3965, + "top": 1822, + "width": 96.80810546875, "height": 13, - "text": "+idDonnees: int", + "text": "-users: array", "horizontalAlignment": 0 } ], "font": "Arial;13;0", - "left": 4304, - "top": 3417, - "width": 100.70166015625, + "left": 3960, + "top": 1817, + "width": 106.80810546875, "height": 23 }, { "_type": "UMLOperationCompartmentView", - "_id": "AAAAAAGL3EKg3Prt88A=", + "_id": "AAAAAAGL8e8PMUVtEH0=", "_parent": { - "$ref": "AAAAAAGL3EKg2/rm/3U=" + "$ref": "AAAAAAGL8e8PL0VmSkQ=" }, "model": { - "$ref": "AAAAAAGL3EKg2PrkEkk=" + "$ref": "AAAAAAGL8e8PLkVkOWg=" }, "font": "Arial;13;0", - "left": 4304, - "top": 3440, - "width": 100.70166015625, + "left": 3960, + "top": 1840, + "width": 106.80810546875, "height": 10 }, { "_type": "UMLReceptionCompartmentView", - "_id": "AAAAAAGL3EKg3PruiWU=", + "_id": "AAAAAAGL8e8PMUVurv4=", "_parent": { - "$ref": "AAAAAAGL3EKg2/rm/3U=" + "$ref": "AAAAAAGL8e8PL0VmSkQ=" }, "model": { - "$ref": "AAAAAAGL3EKg2PrkEkk=" + "$ref": "AAAAAAGL8e8PLkVkOWg=" }, "visible": false, "font": "Arial;13;0", - "left": -248, - "top": 712, + "left": 704, + "top": 496, "width": 10, "height": 10 }, { "_type": "UMLTemplateParameterCompartmentView", - "_id": "AAAAAAGL3EKg3PrvQSU=", + "_id": "AAAAAAGL8e8PMUVvyqI=", "_parent": { - "$ref": "AAAAAAGL3EKg2/rm/3U=" + "$ref": "AAAAAAGL8e8PL0VmSkQ=" }, "model": { - "$ref": "AAAAAAGL3EKg2PrkEkk=" + "$ref": "AAAAAAGL8e8PLkVkOWg=" }, "visible": false, "font": "Arial;13;0", - "left": -248, - "top": 712, + "left": 704, + "top": 496, "width": 10, "height": 10 } ], "font": "Arial;13;0", "containerChangeable": true, - "left": 4304, - "top": 3392, - "width": 100.70166015625, - "height": 58, + "left": 3960, + "top": 1792, + "width": 106.80810546875, + "height": 71, "nameCompartment": { - "$ref": "AAAAAAGL3EKg2/rnW04=" + "$ref": "AAAAAAGL8e8PMEVnGz8=" }, "attributeCompartment": { - "$ref": "AAAAAAGL3EKg2/rsRXg=" + "$ref": "AAAAAAGL8e8PMUVsK2E=" }, "operationCompartment": { - "$ref": "AAAAAAGL3EKg3Prt88A=" + "$ref": "AAAAAAGL8e8PMUVtEH0=" }, "receptionCompartment": { - "$ref": "AAAAAAGL3EKg3PruiWU=" + "$ref": "AAAAAAGL8e8PMUVurv4=" }, "templateParameterCompartment": { - "$ref": "AAAAAAGL3EKg3PrvQSU=" + "$ref": "AAAAAAGL8e8PMUVvyqI=" } }, { - "_type": "UMLAssociationView", - "_id": "AAAAAAGL3EL+BjWnGsM=", + "_type": "UMLClassView", + "_id": "AAAAAAGL8e9J0ldJrjo=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL3EL+BDWjkdw=" + "$ref": "AAAAAAGL8e9J0FdHmso=" }, "subViews": [ { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EL+BjWodp8=", + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAGL8e9J01dKxDk=", "_parent": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "$ref": "AAAAAAGL8e9J0ldJrjo=" }, "model": { - "$ref": "AAAAAAGL3EL+BDWjkdw=" + "$ref": "AAAAAAGL8e9J0FdHmso=" }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAGL8e9J01dLMhE=", + "_parent": { + "$ref": "AAAAAAGL8e9J01dKxDk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1952, + "top": -704, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL8e9J01dMxu0=", + "_parent": { + "$ref": "AAAAAAGL8e9J01dKxDk=" + }, + "font": "Arial;13;1", + "left": 4061, + "top": 959, + "width": 75.86083984375, + "height": 13, + "text": "AuthService" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL8e9J01dN/AA=", + "_parent": { + "$ref": "AAAAAAGL8e9J01dKxDk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1952, + "top": -704, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL8e9J01dOzTw=", + "_parent": { + "$ref": "AAAAAAGL8e9J01dKxDk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1952, + "top": -704, + "height": 13, + "horizontalAlignment": 1 + } + ], "font": "Arial;13;0", - "left": 4359, - "top": 3368, - "width": 81.30712890625, - "height": 13, - "alpha": 0.755556229609475, - "distance": 70.71067811865476, - "hostEdge": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "left": 4056, + "top": 952, + "width": 85.86083984375, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAGL8e9J01dLMhE=" }, - "edgePosition": 1, - "text": "+*lesDonnees" + "nameLabel": { + "$ref": "AAAAAAGL8e9J01dMxu0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAGL8e9J01dN/AA=" + }, + "propertyLabel": { + "$ref": "AAAAAAGL8e9J01dOzTw=" + } }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EL+BjWpB1w=", + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAGL8e9J01dPxyE=", "_parent": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "$ref": "AAAAAAGL8e9J0ldJrjo=" }, "model": { - "$ref": "AAAAAAGL3EL+BDWjkdw=" + "$ref": "AAAAAAGL8e9J0FdHmso=" }, - "visible": null, "font": "Arial;13;0", - "left": 4379, - "top": 3317, - "height": 13, - "alpha": 1.5707963267948966, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" - }, - "edgePosition": 1 + "left": 4056, + "top": 977, + "width": 85.86083984375, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EL+BjWqRdI=", + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAGL8e9J01dQhvI=", "_parent": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "$ref": "AAAAAAGL8e9J0ldJrjo=" }, "model": { - "$ref": "AAAAAAGL3EL+BDWjkdw=" + "$ref": "AAAAAAGL8e9J0FdHmso=" }, - "visible": false, "font": "Arial;13;0", - "left": 4335, - "top": 3318, - "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, - "hostEdge": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" - }, - "edgePosition": 1 + "left": 4056, + "top": 987, + "width": 85.86083984375, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EL+BjWrOSk=", + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAGL8e9J01dRnSs=", "_parent": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "$ref": "AAAAAAGL8e9J0ldJrjo=" }, "model": { - "$ref": "AAAAAAGL3EL+BDWkXZY=" + "$ref": "AAAAAAGL8e9J0FdHmso=" }, "visible": false, "font": "Arial;13;0", - "left": 4364, - "top": 3276, - "height": 13, - "alpha": 0.5235987755982988, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" - }, - "edgePosition": 2 + "left": 976, + "top": -352, + "width": 10, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EL+BjWstX4=", + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAGL8e9J01dSt+8=", "_parent": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "$ref": "AAAAAAGL8e9J0ldJrjo=" }, "model": { - "$ref": "AAAAAAGL3EL+BDWkXZY=" + "$ref": "AAAAAAGL8e9J0FdHmso=" }, "visible": false, "font": "Arial;13;0", - "left": 4377, - "top": 3278, - "height": 13, - "alpha": 0.7853981633974483, - "distance": 40, - "hostEdge": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" - }, - "edgePosition": 2 - }, + "left": 976, + "top": -352, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 4056, + "top": 952, + "width": 85.86083984375, + "height": 45, + "nameCompartment": { + "$ref": "AAAAAAGL8e9J01dKxDk=" + }, + "attributeCompartment": { + "$ref": "AAAAAAGL8e9J01dPxyE=" + }, + "operationCompartment": { + "$ref": "AAAAAAGL8e9J01dQhvI=" + }, + "receptionCompartment": { + "$ref": "AAAAAAGL8e9J01dRnSs=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAGL8e9J01dSt+8=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAGL8fAHTpcfcxQ=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAGL8fAHTJcd2Kc=" + }, + "subViews": [ { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EL+BjWtTEE=", + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAGL8fAHTpcgm1k=", "_parent": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "$ref": "AAAAAAGL8fAHTpcfcxQ=" }, "model": { - "$ref": "AAAAAAGL3EL+BDWkXZY=" + "$ref": "AAAAAAGL8fAHTJcd2Kc=" }, - "visible": false, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAGL8fAHT5chwjE=", + "_parent": { + "$ref": "AAAAAAGL8fAHTpcgm1k=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1248, + "top": -416, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL8fAHT5ciXp0=", + "_parent": { + "$ref": "AAAAAAGL8fAHTpcgm1k=" + }, + "font": "Arial;13;1", + "left": 3685, + "top": 1175, + "width": 82.3671875, + "height": 13, + "text": "UserManager" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL8fAHT5cjZF4=", + "_parent": { + "$ref": "AAAAAAGL8fAHTpcgm1k=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1248, + "top": -416, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL8fAHT5cki6A=", + "_parent": { + "$ref": "AAAAAAGL8fAHTpcgm1k=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1248, + "top": -416, + "height": 13, + "horizontalAlignment": 1 + } + ], "font": "Arial;13;0", - "left": 4336, - "top": 3272, - "height": 13, - "alpha": -0.5235987755982988, - "distance": 25, - "hostEdge": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "left": 3680, + "top": 1168, + "width": 92.3671875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAGL8fAHT5chwjE=" }, - "edgePosition": 2 - }, - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EL+BjWulHE=", - "_parent": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "nameLabel": { + "$ref": "AAAAAAGL8fAHT5ciXp0=" }, - "model": { - "$ref": "AAAAAAGL3EL+BDWlhCY=" + "namespaceLabel": { + "$ref": "AAAAAAGL8fAHT5cjZF4=" }, - "visible": false, - "font": "Arial;13;0", - "left": 4366, - "top": 3358, - "height": 13, - "alpha": -0.5235987755982988, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "propertyLabel": { + "$ref": "AAAAAAGL8fAHT5cki6A=" } }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EL+BjWvZ2A=", + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAGL8fAHT5clCB0=", "_parent": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "$ref": "AAAAAAGL8fAHTpcfcxQ=" }, "model": { - "$ref": "AAAAAAGL3EL+BDWlhCY=" + "$ref": "AAAAAAGL8fAHTJcd2Kc=" }, - "visible": false, "font": "Arial;13;0", - "left": 4379, - "top": 3356, - "height": 13, - "alpha": -0.7853981633974483, - "distance": 40, - "hostEdge": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" - } + "left": 3680, + "top": 1193, + "width": 92.3671875, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EL+BjWwnwE=", + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAGL8fAHT5cmKsU=", "_parent": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "$ref": "AAAAAAGL8fAHTpcfcxQ=" }, "model": { - "$ref": "AAAAAAGL3EL+BDWlhCY=" + "$ref": "AAAAAAGL8fAHTJcd2Kc=" }, - "visible": false, "font": "Arial;13;0", - "left": 4339, - "top": 3363, - "height": 13, - "alpha": 0.5235987755982988, - "distance": 25, - "hostEdge": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" - } + "left": 3680, + "top": 1203, + "width": 92.3671875, + "height": 10 }, { - "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL3EL+BjWxJko=", + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAGL8fAHT5cnzVg=", "_parent": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "$ref": "AAAAAAGL8fAHTpcfcxQ=" }, "model": { - "$ref": "AAAAAAGL3EL+BDWkXZY=" + "$ref": "AAAAAAGL8fAHTJcd2Kc=" }, "visible": false, "font": "Arial;13;0", - "left": 152, - "top": 568, + "left": 624, + "top": -208, "width": 10, "height": 10 }, { - "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL3EL+BjWy9ws=", + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAGL8fAHT5cobGg=", "_parent": { - "$ref": "AAAAAAGL3EL+BjWnGsM=" + "$ref": "AAAAAAGL8fAHTpcfcxQ=" }, "model": { - "$ref": "AAAAAAGL3EL+BDWlhCY=" + "$ref": "AAAAAAGL8fAHTJcd2Kc=" }, "visible": false, "font": "Arial;13;0", - "left": 152, - "top": 568, + "left": 624, + "top": -208, "width": 10, "height": 10 } ], "font": "Arial;13;0", - "head": { - "$ref": "AAAAAAGL3EKg2/rm/3U=" - }, - "tail": { - "$ref": "AAAAAAGL3DH0VM3eelw=" - }, - "lineStyle": 1, - "points": "4349:3257;4352:3391", - "showVisibility": true, - "nameLabel": { - "$ref": "AAAAAAGL3EL+BjWodp8=" + "containerChangeable": true, + "left": 3680, + "top": 1168, + "width": 92.3671875, + "height": 45, + "nameCompartment": { + "$ref": "AAAAAAGL8fAHTpcgm1k=" }, - "stereotypeLabel": { - "$ref": "AAAAAAGL3EL+BjWpB1w=" + "attributeCompartment": { + "$ref": "AAAAAAGL8fAHT5clCB0=" }, - "propertyLabel": { - "$ref": "AAAAAAGL3EL+BjWqRdI=" + "operationCompartment": { + "$ref": "AAAAAAGL8fAHT5cmKsU=" }, - "showEndOrder": "hide", - "tailRoleNameLabel": { - "$ref": "AAAAAAGL3EL+BjWrOSk=" + "receptionCompartment": { + "$ref": "AAAAAAGL8fAHT5cnzVg=" }, - "tailPropertyLabel": { - "$ref": "AAAAAAGL3EL+BjWstX4=" + "templateParameterCompartment": { + "$ref": "AAAAAAGL8fAHT5cobGg=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAGL8kwWNOvs/ko=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" }, - "tailMultiplicityLabel": { - "$ref": "AAAAAAGL3EL+BjWtTEE=" - }, - "headRoleNameLabel": { - "$ref": "AAAAAAGL3EL+BjWulHE=" - }, - "headPropertyLabel": { - "$ref": "AAAAAAGL3EL+BjWvZ2A=" - }, - "headMultiplicityLabel": { - "$ref": "AAAAAAGL3EL+BjWwnwE=" - }, - "tailQualifiersCompartment": { - "$ref": "AAAAAAGL3EL+BjWxJko=" - }, - "headQualifiersCompartment": { - "$ref": "AAAAAAGL3EL+BjWy9ws=" - } - }, - { - "_type": "UMLGeneralizationView", - "_id": "AAAAAAGL3EQsdTLpE6U=", - "_parent": { - "$ref": "AAAAAAFF+qBtyKM79qY=" - }, - "model": { - "$ref": "AAAAAAGL3EQsczLniMI=" + "model": { + "$ref": "AAAAAAGL8kwWMOvqRNg=" }, "subViews": [ { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EQsdTLqT+c=", + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAGL8kwWNevt7h4=", "_parent": { - "$ref": "AAAAAAGL3EQsdTLpE6U=" + "$ref": "AAAAAAGL8kwWNOvs/ko=" }, "model": { - "$ref": "AAAAAAGL3EQsczLniMI=" + "$ref": "AAAAAAGL8kwWMOvqRNg=" }, - "visible": false, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAGL8kwWNevuGgw=", + "_parent": { + "$ref": "AAAAAAGL8kwWNevt7h4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -544, + "top": 432, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL8kwWNevv/0Y=", + "_parent": { + "$ref": "AAAAAAGL8kwWNevt7h4=" + }, + "font": "Arial;13;1", + "left": 3189, + "top": 2743, + "width": 150.97265625, + "height": 13, + "text": "EntrainementRepository" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL8kwWNevwRpI=", + "_parent": { + "$ref": "AAAAAAGL8kwWNevt7h4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -544, + "top": 432, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL8kwWNevx3X0=", + "_parent": { + "$ref": "AAAAAAGL8kwWNevt7h4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -544, + "top": 432, + "height": 13, + "horizontalAlignment": 1 + } + ], "font": "Arial;13;0", - "left": 4339, - "top": 3534, - "height": 13, - "alpha": 1.5707963267948966, - "distance": 15, - "hostEdge": { - "$ref": "AAAAAAGL3EQsdTLpE6U=" + "left": 3184, + "top": 2736, + "width": 160.97265625, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAGL8kwWNevuGgw=" }, - "edgePosition": 1 + "nameLabel": { + "$ref": "AAAAAAGL8kwWNevv/0Y=" + }, + "namespaceLabel": { + "$ref": "AAAAAAGL8kwWNevwRpI=" + }, + "propertyLabel": { + "$ref": "AAAAAAGL8kwWNevx3X0=" + } }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EQsdTLr4D4=", + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAGL8kwWNevy7vE=", "_parent": { - "$ref": "AAAAAAGL3EQsdTLpE6U=" + "$ref": "AAAAAAGL8kwWNOvs/ko=" }, "model": { - "$ref": "AAAAAAGL3EQsczLniMI=" + "$ref": "AAAAAAGL8kwWMOvqRNg=" }, - "visible": null, "font": "Arial;13;0", - "left": 4324, - "top": 3534, - "height": 13, - "alpha": 1.5707963267948966, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL3EQsdTLpE6U=" + "left": 3184, + "top": 2761, + "width": 160.97265625, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAGL8kwWNevzRQQ=", + "_parent": { + "$ref": "AAAAAAGL8kwWNOvs/ko=" }, - "edgePosition": 1 + "model": { + "$ref": "AAAAAAGL8kwWMOvqRNg=" + }, + "font": "Arial;13;0", + "left": 3184, + "top": 2771, + "width": 160.97265625, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EQsdTLs7es=", + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAGL8kwWNev0nPo=", "_parent": { - "$ref": "AAAAAAGL3EQsdTLpE6U=" + "$ref": "AAAAAAGL8kwWNOvs/ko=" }, "model": { - "$ref": "AAAAAAGL3EQsczLniMI=" + "$ref": "AAAAAAGL8kwWMOvqRNg=" }, "visible": false, "font": "Arial;13;0", - "left": 4368, - "top": 3533, - "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, - "hostEdge": { - "$ref": "AAAAAAGL3EQsdTLpE6U=" + "left": -272, + "top": 216, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAGL8kwWNev1L3w=", + "_parent": { + "$ref": "AAAAAAGL8kwWNOvs/ko=" }, - "edgePosition": 1 + "model": { + "$ref": "AAAAAAGL8kwWMOvqRNg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -272, + "top": 216, + "width": 10, + "height": 10 } ], "font": "Arial;13;0", - "head": { - "$ref": "AAAAAAGL3EKg2/rm/3U=" + "containerChangeable": true, + "left": 3184, + "top": 2736, + "width": 160.97265625, + "height": 45, + "nameCompartment": { + "$ref": "AAAAAAGL8kwWNevt7h4=" }, - "tail": { - "$ref": "AAAAAAGL3DIjHP3lRWY=" + "attributeCompartment": { + "$ref": "AAAAAAGL8kwWNevy7vE=" }, - "lineStyle": 1, - "points": "4355:3631;4353:3450", - "showVisibility": true, - "nameLabel": { - "$ref": "AAAAAAGL3EQsdTLqT+c=" + "operationCompartment": { + "$ref": "AAAAAAGL8kwWNevzRQQ=" }, - "stereotypeLabel": { - "$ref": "AAAAAAGL3EQsdTLr4D4=" + "receptionCompartment": { + "$ref": "AAAAAAGL8kwWNev0nPo=" }, - "propertyLabel": { - "$ref": "AAAAAAGL3EQsdTLs7es=" + "templateParameterCompartment": { + "$ref": "AAAAAAGL8kwWNev1L3w=" } }, { - "_type": "UMLDependencyView", - "_id": "AAAAAAGL3EhnLQk/wU8=", + "_type": "UMLAssociationView", + "_id": "AAAAAAGL8lO7+WPDWLU=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL3EhnKwk9Pw0=" + "$ref": "AAAAAAGL8lO7+GO/UQE=" }, "subViews": [ { "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EhnLQlAeLk=", + "_id": "AAAAAAGL8lO7+mPEK6o=", "_parent": { - "$ref": "AAAAAAGL3EhnLQk/wU8=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "model": { - "$ref": "AAAAAAGL3EhnKwk9Pw0=" + "$ref": "AAAAAAGL8lO7+GO/UQE=" }, "visible": false, "font": "Arial;13;0", - "left": 3773, - "top": 2707, + "left": 4021, + "top": 1909, "height": 13, "alpha": 1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL3EhnLQk/wU8=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EhnLglBTew=", + "_id": "AAAAAAGL8lO7+mPF070=", "_parent": { - "$ref": "AAAAAAGL3EhnLQk/wU8=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "model": { - "$ref": "AAAAAAGL3EhnKwk9Pw0=" + "$ref": "AAAAAAGL8lO7+GO/UQE=" }, "visible": null, "font": "Arial;13;0", - "left": 3770, - "top": 2692, + "left": 4036, + "top": 1910, "height": 13, "alpha": 1.5707963267948966, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL3EhnLQk/wU8=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EhnLglC42U=", + "_id": "AAAAAAGL8lO7+mPGdnA=", "_parent": { - "$ref": "AAAAAAGL3EhnLQk/wU8=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "model": { - "$ref": "AAAAAAGL3EhnKwk9Pw0=" + "$ref": "AAAAAAGL8lO7+GO/UQE=" }, "visible": false, "font": "Arial;13;0", - "left": 3778, - "top": 2736, + "left": 3992, + "top": 1908, "height": 13, "alpha": -1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL3EhnLQk/wU8=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "edgePosition": 1 - } - ], - "font": "Arial;13;0", - "head": { - "$ref": "AAAAAAGL3BsTqaEI6W8=" - }, - "tail": { - "$ref": "AAAAAAGL3CMxnUgw9Qc=" - }, - "lineStyle": 1, - "points": "3591:2626;3776:2728;4183:2656", - "showVisibility": true, - "nameLabel": { - "$ref": "AAAAAAGL3EhnLQlAeLk=" - }, - "stereotypeLabel": { - "$ref": "AAAAAAGL3EhnLglBTew=" - }, - "propertyLabel": { - "$ref": "AAAAAAGL3EhnLglC42U=" - } - }, - { - "_type": "UMLDependencyView", - "_id": "AAAAAAGL3EirUXflQSM=", - "_parent": { - "$ref": "AAAAAAFF+qBtyKM79qY=" - }, - "model": { - "$ref": "AAAAAAGL3EirT3fjUuE=" - }, - "subViews": [ + }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EirUXfma+E=", + "_id": "AAAAAAGL8lO7+mPHYXo=", "_parent": { - "$ref": "AAAAAAGL3EirUXflQSM=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "model": { - "$ref": "AAAAAAGL3EirT3fjUuE=" + "$ref": "AAAAAAGL8lO7+GPAblU=" }, "visible": false, "font": "Arial;13;0", - "left": 4541, - "top": 3433, + "left": 4023, + "top": 1883, "height": 13, - "alpha": 1.5707963267948966, - "distance": 15, + "alpha": 0.5235987755982988, + "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL3EirUXflQSM=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, - "edgePosition": 1 + "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EirUnfnskI=", + "_id": "AAAAAAGL8lO7+mPIjKE=", "_parent": { - "$ref": "AAAAAAGL3EirUXflQSM=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "model": { - "$ref": "AAAAAAGL3EirT3fjUuE=" + "$ref": "AAAAAAGL8lO7+GPAblU=" }, - "visible": null, + "visible": false, "font": "Arial;13;0", - "left": 4554, - "top": 3440, + "left": 4036, + "top": 1886, "height": 13, - "alpha": 1.5707963267948966, - "distance": 30, + "alpha": 0.7853981633974483, + "distance": 40, "hostEdge": { - "$ref": "AAAAAAGL3EirUXflQSM=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, - "edgePosition": 1 + "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL3EirUnfo9rU=", + "_id": "AAAAAAGL8lO7+mPJ378=", "_parent": { - "$ref": "AAAAAAGL3EirUXflQSM=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "model": { - "$ref": "AAAAAAGL3EirT3fjUuE=" + "$ref": "AAAAAAGL8lO7+GPAblU=" }, "visible": false, "font": "Arial;13;0", - "left": 4514, - "top": 3418, + "left": 3996, + "top": 1877, "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, + "alpha": -0.5235987755982988, + "distance": 25, "hostEdge": { - "$ref": "AAAAAAGL3EirUXflQSM=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, - "edgePosition": 1 - } - ], - "font": "Arial;13;0", - "head": { - "$ref": "AAAAAAGL3DIjHP3lRWY=" - }, - "tail": { - "$ref": "AAAAAAGL3DH0VM3eelw=" - }, - "lineStyle": 1, - "points": "4427:3257;4528:3432;4415:3631", - "showVisibility": true, - "nameLabel": { - "$ref": "AAAAAAGL3EirUXfma+E=" - }, - "stereotypeLabel": { - "$ref": "AAAAAAGL3EirUnfnskI=" - }, - "propertyLabel": { - "$ref": "AAAAAAGL3EirUnfo9rU=" - } - }, - { - "_type": "UMLClassView", - "_id": "AAAAAAGL8e8PL0VmSkQ=", - "_parent": { - "$ref": "AAAAAAFF+qBtyKM79qY=" - }, - "model": { - "$ref": "AAAAAAGL8e8PLkVkOWg=" - }, - "subViews": [ + "edgePosition": 2 + }, { - "_type": "UMLNameCompartmentView", - "_id": "AAAAAAGL8e8PMEVnGz8=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL8lO7+mPK26w=", "_parent": { - "$ref": "AAAAAAGL8e8PL0VmSkQ=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "model": { - "$ref": "AAAAAAGL8e8PLkVkOWg=" + "$ref": "AAAAAAGL8lO7+GPBs+g=" }, - "subViews": [ - { - "_type": "LabelView", - "_id": "AAAAAAGL8e8PMEVoIWg=", - "_parent": { - "$ref": "AAAAAAGL8e8PMEVnGz8=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 1408, - "top": 992, - "height": 13 - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL8e8PMUVpAU4=", - "_parent": { - "$ref": "AAAAAAGL8e8PMEVnGz8=" - }, - "font": "Arial;13;1", - "left": 3965, - "top": 1799, - "width": 96.80810546875, - "height": 13, - "text": "UserRepository" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL8e8PMUVqQ5g=", - "_parent": { - "$ref": "AAAAAAGL8e8PMEVnGz8=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 1408, - "top": 992, - "width": 73.67724609375, - "height": 13, - "text": "(from Model)" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL8e8PMUVrcd4=", - "_parent": { - "$ref": "AAAAAAGL8e8PMEVnGz8=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 1408, - "top": 992, - "height": 13, - "horizontalAlignment": 1 - } - ], + "visible": false, "font": "Arial;13;0", - "left": 3960, - "top": 1792, - "width": 106.80810546875, - "height": 25, - "stereotypeLabel": { - "$ref": "AAAAAAGL8e8PMEVoIWg=" - }, - "nameLabel": { - "$ref": "AAAAAAGL8e8PMUVpAU4=" - }, - "namespaceLabel": { - "$ref": "AAAAAAGL8e8PMUVqQ5g=" - }, - "propertyLabel": { - "$ref": "AAAAAAGL8e8PMUVrcd4=" + "left": 4020, + "top": 1935, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL8lO7+WPDWLU=" } }, { - "_type": "UMLAttributeCompartmentView", - "_id": "AAAAAAGL8e8PMUVsK2E=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL8lO7+mPLcXE=", "_parent": { - "$ref": "AAAAAAGL8e8PL0VmSkQ=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "model": { - "$ref": "AAAAAAGL8e8PLkVkOWg=" + "$ref": "AAAAAAGL8lO7+GPBs+g=" }, - "subViews": [ - { - "_type": "UMLAttributeView", - "_id": "AAAAAAGL+8w3rCz3EQg=", - "_parent": { - "$ref": "AAAAAAGL8e8PMUVsK2E=" - }, - "model": { - "$ref": "AAAAAAGL+8w3liysleM=" - }, - "font": "Arial;13;0", - "left": 3965, - "top": 1822, - "width": 96.80810546875, - "height": 13, - "text": "-users: array", - "horizontalAlignment": 0 - } - ], + "visible": false, "font": "Arial;13;0", - "left": 3960, - "top": 1817, - "width": 106.80810546875, - "height": 23 + "left": 4033, + "top": 1934, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAGL8lO7+WPDWLU=" + } }, { - "_type": "UMLOperationCompartmentView", - "_id": "AAAAAAGL8e8PMUVtEH0=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL8lO7+mPMY/Y=", "_parent": { - "$ref": "AAAAAAGL8e8PL0VmSkQ=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "model": { - "$ref": "AAAAAAGL8e8PLkVkOWg=" + "$ref": "AAAAAAGL8lO7+GPBs+g=" }, + "visible": false, "font": "Arial;13;0", - "left": 3960, - "top": 1840, - "width": 106.80810546875, - "height": 10 + "left": 3992, + "top": 1938, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAGL8lO7+WPDWLU=" + } }, { - "_type": "UMLReceptionCompartmentView", - "_id": "AAAAAAGL8e8PMUVurv4=", + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGL8lO7+mPN9/A=", "_parent": { - "$ref": "AAAAAAGL8e8PL0VmSkQ=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "model": { - "$ref": "AAAAAAGL8e8PLkVkOWg=" + "$ref": "AAAAAAGL8lO7+GPAblU=" }, "visible": false, "font": "Arial;13;0", - "left": 704, - "top": 496, "width": 10, "height": 10 }, { - "_type": "UMLTemplateParameterCompartmentView", - "_id": "AAAAAAGL8e8PMUVvyqI=", + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGL8lO7+mPOJ04=", "_parent": { - "$ref": "AAAAAAGL8e8PL0VmSkQ=" + "$ref": "AAAAAAGL8lO7+WPDWLU=" }, "model": { - "$ref": "AAAAAAGL8e8PLkVkOWg=" + "$ref": "AAAAAAGL8lO7+GPBs+g=" }, "visible": false, "font": "Arial;13;0", - "left": 704, - "top": 496, "width": 10, "height": 10 } ], "font": "Arial;13;0", - "containerChangeable": true, - "left": 3960, - "top": 1792, - "width": 106.80810546875, - "height": 71, - "nameCompartment": { - "$ref": "AAAAAAGL8e8PMEVnGz8=" + "head": { + "$ref": "AAAAAAGL3Bpk6Nh7nd8=" }, - "attributeCompartment": { - "$ref": "AAAAAAGL8e8PMUVsK2E=" + "tail": { + "$ref": "AAAAAAGL8e8PL0VmSkQ=" }, - "operationCompartment": { - "$ref": "AAAAAAGL8e8PMUVtEH0=" + "lineStyle": 1, + "points": "4010:1863;4004:1967", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAGL8lO7+mPEK6o=" }, - "receptionCompartment": { - "$ref": "AAAAAAGL8e8PMUVurv4=" + "stereotypeLabel": { + "$ref": "AAAAAAGL8lO7+mPF070=" }, - "templateParameterCompartment": { - "$ref": "AAAAAAGL8e8PMUVvyqI=" - } - }, - { - "_type": "UMLClassView", - "_id": "AAAAAAGL8e9J0ldJrjo=", + "propertyLabel": { + "$ref": "AAAAAAGL8lO7+mPGdnA=" + }, + "showEndOrder": "hide", + "tailRoleNameLabel": { + "$ref": "AAAAAAGL8lO7+mPHYXo=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAGL8lO7+mPIjKE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAGL8lO7+mPJ378=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAGL8lO7+mPK26w=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAGL8lO7+mPLcXE=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAGL8lO7+mPMY/Y=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAGL8lO7+mPN9/A=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAGL8lO7+mPOJ04=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAGL8lXBS67DYgg=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL8e9J0FdHmso=" + "$ref": "AAAAAAGL8lXBSa6/2w4=" }, "subViews": [ { - "_type": "UMLNameCompartmentView", - "_id": "AAAAAAGL8e9J01dKxDk=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL8lXBS67EK3I=", "_parent": { - "$ref": "AAAAAAGL8e9J0ldJrjo=" + "$ref": "AAAAAAGL8lXBS67DYgg=" }, "model": { - "$ref": "AAAAAAGL8e9J0FdHmso=" + "$ref": "AAAAAAGL8lXBSa6/2w4=" }, - "subViews": [ - { - "_type": "LabelView", - "_id": "AAAAAAGL8e9J01dLMhE=", - "_parent": { - "$ref": "AAAAAAGL8e9J01dKxDk=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 1952, - "top": -704, - "height": 13 - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL8e9J01dMxu0=", - "_parent": { - "$ref": "AAAAAAGL8e9J01dKxDk=" - }, - "font": "Arial;13;1", - "left": 4061, - "top": 959, - "width": 75.86083984375, - "height": 13, - "text": "AuthService" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL8e9J01dN/AA=", - "_parent": { - "$ref": "AAAAAAGL8e9J01dKxDk=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 1952, - "top": -704, - "width": 73.67724609375, - "height": 13, - "text": "(from Model)" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL8e9J01dOzTw=", - "_parent": { - "$ref": "AAAAAAGL8e9J01dKxDk=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 1952, - "top": -704, - "height": 13, - "horizontalAlignment": 1 - } - ], + "visible": false, "font": "Arial;13;0", - "left": 4056, - "top": 952, - "width": 85.86083984375, - "height": 25, - "stereotypeLabel": { - "$ref": "AAAAAAGL8e9J01dLMhE=" - }, - "nameLabel": { - "$ref": "AAAAAAGL8e9J01dMxu0=" - }, - "namespaceLabel": { - "$ref": "AAAAAAGL8e9J01dN/AA=" + "left": 3869, + "top": 900, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL8lXBS67DYgg=" }, - "propertyLabel": { - "$ref": "AAAAAAGL8e9J01dOzTw=" - } + "edgePosition": 1 }, { - "_type": "UMLAttributeCompartmentView", - "_id": "AAAAAAGL8e9J01dPxyE=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL8lXBS67F6AQ=", "_parent": { - "$ref": "AAAAAAGL8e9J0ldJrjo=" + "$ref": "AAAAAAGL8lXBS67DYgg=" }, "model": { - "$ref": "AAAAAAGL8e9J0FdHmso=" + "$ref": "AAAAAAGL8lXBSa6/2w4=" }, + "visible": null, "font": "Arial;13;0", - "left": 4056, - "top": 977, - "width": 85.86083984375, - "height": 10 + "left": 3872, + "top": 885, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL8lXBS67DYgg=" + }, + "edgePosition": 1 }, { - "_type": "UMLOperationCompartmentView", - "_id": "AAAAAAGL8e9J01dQhvI=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL8lXBS67Gc4s=", "_parent": { - "$ref": "AAAAAAGL8e9J0ldJrjo=" + "$ref": "AAAAAAGL8lXBS67DYgg=" }, "model": { - "$ref": "AAAAAAGL8e9J0FdHmso=" + "$ref": "AAAAAAGL8lXBSa6/2w4=" }, + "visible": false, "font": "Arial;13;0", - "left": 4056, - "top": 987, - "width": 85.86083984375, - "height": 10 + "left": 3862, + "top": 929, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL8lXBS67DYgg=" + }, + "edgePosition": 1 }, { - "_type": "UMLReceptionCompartmentView", - "_id": "AAAAAAGL8e9J01dRnSs=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL8lXBTK7HYIA=", "_parent": { - "$ref": "AAAAAAGL8e9J0ldJrjo=" + "$ref": "AAAAAAGL8lXBS67DYgg=" }, "model": { - "$ref": "AAAAAAGL8e9J0FdHmso=" + "$ref": "AAAAAAGL8lXBSa7AoxY=" }, "visible": false, "font": "Arial;13;0", - "left": 976, - "top": -352, - "width": 10, - "height": 10 + "left": 3705, + "top": 863, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL8lXBS67DYgg=" + }, + "edgePosition": 2 }, { - "_type": "UMLTemplateParameterCompartmentView", - "_id": "AAAAAAGL8e9J01dSt+8=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL8lXBTK7Ivfo=", "_parent": { - "$ref": "AAAAAAGL8e9J0ldJrjo=" + "$ref": "AAAAAAGL8lXBS67DYgg=" }, "model": { - "$ref": "AAAAAAGL8e9J0FdHmso=" + "$ref": "AAAAAAGL8lXBSa7AoxY=" }, "visible": false, "font": "Arial;13;0", - "left": 976, - "top": -352, - "width": 10, - "height": 10 - } - ], - "font": "Arial;13;0", - "containerChangeable": true, - "left": 4056, - "top": 952, - "width": 85.86083984375, - "height": 45, - "nameCompartment": { - "$ref": "AAAAAAGL8e9J01dKxDk=" - }, - "attributeCompartment": { - "$ref": "AAAAAAGL8e9J01dPxyE=" - }, - "operationCompartment": { - "$ref": "AAAAAAGL8e9J01dQhvI=" - }, - "receptionCompartment": { - "$ref": "AAAAAAGL8e9J01dRnSs=" - }, - "templateParameterCompartment": { - "$ref": "AAAAAAGL8e9J01dSt+8=" - } - }, - { - "_type": "UMLClassView", - "_id": "AAAAAAGL8fAHTpcfcxQ=", - "_parent": { - "$ref": "AAAAAAFF+qBtyKM79qY=" - }, - "model": { - "$ref": "AAAAAAGL8fAHTJcd2Kc=" - }, - "subViews": [ + "left": 3710, + "top": 850, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAGL8lXBS67DYgg=" + }, + "edgePosition": 2 + }, { - "_type": "UMLNameCompartmentView", - "_id": "AAAAAAGL8fAHTpcgm1k=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL8lXBTK7JxMA=", "_parent": { - "$ref": "AAAAAAGL8fAHTpcfcxQ=" + "$ref": "AAAAAAGL8lXBS67DYgg=" }, "model": { - "$ref": "AAAAAAGL8fAHTJcd2Kc=" + "$ref": "AAAAAAGL8lXBSa7AoxY=" }, - "subViews": [ - { - "_type": "LabelView", - "_id": "AAAAAAGL8fAHT5chwjE=", - "_parent": { - "$ref": "AAAAAAGL8fAHTpcgm1k=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 1248, - "top": -416, - "height": 13 - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL8fAHT5ciXp0=", - "_parent": { - "$ref": "AAAAAAGL8fAHTpcgm1k=" - }, - "font": "Arial;13;1", - "left": 3685, - "top": 1175, - "width": 82.3671875, - "height": 13, - "text": "UserManager" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL8fAHT5cjZF4=", - "_parent": { - "$ref": "AAAAAAGL8fAHTpcgm1k=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 1248, - "top": -416, - "width": 73.67724609375, - "height": 13, - "text": "(from Model)" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL8fAHT5cki6A=", - "_parent": { - "$ref": "AAAAAAGL8fAHTpcgm1k=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 1248, - "top": -416, - "height": 13, - "horizontalAlignment": 1 - } - ], + "visible": false, "font": "Arial;13;0", - "left": 3680, - "top": 1168, - "width": 92.3671875, - "height": 25, - "stereotypeLabel": { - "$ref": "AAAAAAGL8fAHT5chwjE=" + "left": 3695, + "top": 888, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAGL8lXBS67DYgg=" }, - "nameLabel": { - "$ref": "AAAAAAGL8fAHT5ciXp0=" + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL8lXBTK7KBwQ=", + "_parent": { + "$ref": "AAAAAAGL8lXBS67DYgg=" }, - "namespaceLabel": { - "$ref": "AAAAAAGL8fAHT5cjZF4=" + "model": { + "$ref": "AAAAAAGL8lXBSa7B00o=" }, - "propertyLabel": { - "$ref": "AAAAAAGL8fAHT5cki6A=" + "visible": false, + "font": "Arial;13;0", + "left": 4032, + "top": 937, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL8lXBS67DYgg=" } }, { - "_type": "UMLAttributeCompartmentView", - "_id": "AAAAAAGL8fAHT5clCB0=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL8lXBTK7LPto=", "_parent": { - "$ref": "AAAAAAGL8fAHTpcfcxQ=" + "$ref": "AAAAAAGL8lXBS67DYgg=" }, "model": { - "$ref": "AAAAAAGL8fAHTJcd2Kc=" + "$ref": "AAAAAAGL8lXBSa7B00o=" }, + "visible": false, "font": "Arial;13;0", - "left": 3680, - "top": 1193, - "width": 92.3671875, - "height": 10 + "left": 4033, + "top": 924, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAGL8lXBS67DYgg=" + } }, { - "_type": "UMLOperationCompartmentView", - "_id": "AAAAAAGL8fAHT5cmKsU=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL8lXBTK7MGZo=", "_parent": { - "$ref": "AAAAAAGL8fAHTpcfcxQ=" + "$ref": "AAAAAAGL8lXBS67DYgg=" }, "model": { - "$ref": "AAAAAAGL8fAHTJcd2Kc=" + "$ref": "AAAAAAGL8lXBSa7B00o=" }, + "visible": false, "font": "Arial;13;0", - "left": 3680, - "top": 1203, - "width": 92.3671875, - "height": 10 + "left": 4031, + "top": 965, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAGL8lXBS67DYgg=" + } }, { - "_type": "UMLReceptionCompartmentView", - "_id": "AAAAAAGL8fAHT5cnzVg=", + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGL8lXBTK7NaZA=", "_parent": { - "$ref": "AAAAAAGL8fAHTpcfcxQ=" + "$ref": "AAAAAAGL8lXBS67DYgg=" }, "model": { - "$ref": "AAAAAAGL8fAHTJcd2Kc=" + "$ref": "AAAAAAGL8lXBSa7AoxY=" }, "visible": false, "font": "Arial;13;0", - "left": 624, - "top": -208, "width": 10, "height": 10 }, { - "_type": "UMLTemplateParameterCompartmentView", - "_id": "AAAAAAGL8fAHT5cobGg=", + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGL8lXBTK7OIvI=", "_parent": { - "$ref": "AAAAAAGL8fAHTpcfcxQ=" + "$ref": "AAAAAAGL8lXBS67DYgg=" }, "model": { - "$ref": "AAAAAAGL8fAHTJcd2Kc=" + "$ref": "AAAAAAGL8lXBSa7B00o=" }, "visible": false, "font": "Arial;13;0", - "left": 624, - "top": -208, "width": 10, "height": 10 } ], "font": "Arial;13;0", - "containerChangeable": true, - "left": 3680, - "top": 1168, - "width": 92.3671875, - "height": 45, - "nameCompartment": { - "$ref": "AAAAAAGL8fAHTpcgm1k=" + "head": { + "$ref": "AAAAAAGL8e9J0ldJrjo=" }, - "attributeCompartment": { - "$ref": "AAAAAAGL8fAHT5clCB0=" + "tail": { + "$ref": "AAAAAAGL3EC6NugywOI=" }, - "operationCompartment": { - "$ref": "AAAAAAGL8fAHT5cmKsU=" + "lineStyle": 1, + "points": "3677:878;4055:964", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAGL8lXBS67EK3I=" }, - "receptionCompartment": { - "$ref": "AAAAAAGL8fAHT5cnzVg=" + "stereotypeLabel": { + "$ref": "AAAAAAGL8lXBS67F6AQ=" }, - "templateParameterCompartment": { - "$ref": "AAAAAAGL8fAHT5cobGg=" + "propertyLabel": { + "$ref": "AAAAAAGL8lXBS67Gc4s=" + }, + "showEndOrder": "hide", + "tailRoleNameLabel": { + "$ref": "AAAAAAGL8lXBTK7HYIA=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAGL8lXBTK7Ivfo=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAGL8lXBTK7JxMA=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAGL8lXBTK7KBwQ=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAGL8lXBTK7LPto=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAGL8lXBTK7MGZo=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAGL8lXBTK7NaZA=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAGL8lXBTK7OIvI=" } }, { - "_type": "UMLClassView", - "_id": "AAAAAAGL8kwWNOvs/ko=", + "_type": "UMLAssociationView", + "_id": "AAAAAAGL+8rOIEknLJI=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL8kwWMOvqRNg=" + "$ref": "AAAAAAGL+8rOHkkjQa8=" }, "subViews": [ { - "_type": "UMLNameCompartmentView", - "_id": "AAAAAAGL8kwWNevt7h4=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+8rOIUko0e8=", "_parent": { - "$ref": "AAAAAAGL8kwWNOvs/ko=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "model": { - "$ref": "AAAAAAGL8kwWMOvqRNg=" - }, - "subViews": [ - { - "_type": "LabelView", - "_id": "AAAAAAGL8kwWNevuGgw=", - "_parent": { - "$ref": "AAAAAAGL8kwWNevt7h4=" - }, - "visible": false, - "font": "Arial;13;0", - "left": -544, - "top": 432, - "height": 13 - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL8kwWNevv/0Y=", - "_parent": { - "$ref": "AAAAAAGL8kwWNevt7h4=" - }, - "font": "Arial;13;1", - "left": 3189, - "top": 2743, - "width": 150.97265625, - "height": 13, - "text": "EntrainementRepository" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL8kwWNevwRpI=", - "_parent": { - "$ref": "AAAAAAGL8kwWNevt7h4=" - }, - "visible": false, - "font": "Arial;13;0", - "left": -544, - "top": 432, - "width": 73.67724609375, - "height": 13, - "text": "(from Model)" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL8kwWNevx3X0=", - "_parent": { - "$ref": "AAAAAAGL8kwWNevt7h4=" - }, - "visible": false, - "font": "Arial;13;0", - "left": -544, - "top": 432, - "height": 13, - "horizontalAlignment": 1 - } - ], - "font": "Arial;13;0", - "left": 3184, - "top": 2736, - "width": 160.97265625, - "height": 25, - "stereotypeLabel": { - "$ref": "AAAAAAGL8kwWNevuGgw=" - }, - "nameLabel": { - "$ref": "AAAAAAGL8kwWNevv/0Y=" - }, - "namespaceLabel": { - "$ref": "AAAAAAGL8kwWNevwRpI=" - }, - "propertyLabel": { - "$ref": "AAAAAAGL8kwWNevx3X0=" - } - }, - { - "_type": "UMLAttributeCompartmentView", - "_id": "AAAAAAGL8kwWNevy7vE=", - "_parent": { - "$ref": "AAAAAAGL8kwWNOvs/ko=" - }, - "model": { - "$ref": "AAAAAAGL8kwWMOvqRNg=" - }, - "font": "Arial;13;0", - "left": 3184, - "top": 2761, - "width": 160.97265625, - "height": 10 - }, - { - "_type": "UMLOperationCompartmentView", - "_id": "AAAAAAGL8kwWNevzRQQ=", - "_parent": { - "$ref": "AAAAAAGL8kwWNOvs/ko=" - }, - "model": { - "$ref": "AAAAAAGL8kwWMOvqRNg=" - }, - "font": "Arial;13;0", - "left": 3184, - "top": 2771, - "width": 160.97265625, - "height": 10 - }, - { - "_type": "UMLReceptionCompartmentView", - "_id": "AAAAAAGL8kwWNev0nPo=", - "_parent": { - "$ref": "AAAAAAGL8kwWNOvs/ko=" - }, - "model": { - "$ref": "AAAAAAGL8kwWMOvqRNg=" - }, - "visible": false, - "font": "Arial;13;0", - "left": -272, - "top": 216, - "width": 10, - "height": 10 - }, - { - "_type": "UMLTemplateParameterCompartmentView", - "_id": "AAAAAAGL8kwWNev1L3w=", - "_parent": { - "$ref": "AAAAAAGL8kwWNOvs/ko=" - }, - "model": { - "$ref": "AAAAAAGL8kwWMOvqRNg=" - }, - "visible": false, - "font": "Arial;13;0", - "left": -272, - "top": 216, - "width": 10, - "height": 10 - } - ], - "font": "Arial;13;0", - "containerChangeable": true, - "left": 3184, - "top": 2736, - "width": 160.97265625, - "height": 45, - "nameCompartment": { - "$ref": "AAAAAAGL8kwWNevt7h4=" - }, - "attributeCompartment": { - "$ref": "AAAAAAGL8kwWNevy7vE=" - }, - "operationCompartment": { - "$ref": "AAAAAAGL8kwWNevzRQQ=" - }, - "receptionCompartment": { - "$ref": "AAAAAAGL8kwWNev0nPo=" - }, - "templateParameterCompartment": { - "$ref": "AAAAAAGL8kwWNev1L3w=" - } - }, - { - "_type": "UMLAssociationView", - "_id": "AAAAAAGL8lO7+WPDWLU=", - "_parent": { - "$ref": "AAAAAAFF+qBtyKM79qY=" - }, - "model": { - "$ref": "AAAAAAGL8lO7+GO/UQE=" - }, - "subViews": [ - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lO7+mPEK6o=", - "_parent": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" - }, - "model": { - "$ref": "AAAAAAGL8lO7+GO/UQE=" + "$ref": "AAAAAAGL+8rOHkkjQa8=" }, "visible": false, "font": "Arial;13;0", - "left": 4021, - "top": 1909, + "left": 4170, + "top": 1085, "height": 13, "alpha": 1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lO7+mPF070=", + "_id": "AAAAAAGL+8rOIUkpnxA=", "_parent": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "model": { - "$ref": "AAAAAAGL8lO7+GO/UQE=" + "$ref": "AAAAAAGL+8rOHkkjQa8=" }, "visible": null, "font": "Arial;13;0", - "left": 4036, - "top": 1910, + "left": 4158, + "top": 1094, "height": 13, "alpha": 1.5707963267948966, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lO7+mPGdnA=", + "_id": "AAAAAAGL+8rOIUkqzew=", "_parent": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "model": { - "$ref": "AAAAAAGL8lO7+GO/UQE=" + "$ref": "AAAAAAGL+8rOHkkjQa8=" }, "visible": false, "font": "Arial;13;0", - "left": 3992, - "top": 1908, + "left": 4193, + "top": 1066, "height": 13, "alpha": -1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lO7+mPHYXo=", + "_id": "AAAAAAGL+8rOIUkrcbw=", "_parent": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "model": { - "$ref": "AAAAAAGL8lO7+GPAblU=" + "$ref": "AAAAAAGL+8rOH0kk5Us=" }, "visible": false, "font": "Arial;13;0", - "left": 4023, - "top": 1883, + "left": 4221, + "top": 1149, "height": 13, "alpha": 0.5235987755982988, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lO7+mPIjKE=", + "_id": "AAAAAAGL+8rOIUks864=", "_parent": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "model": { - "$ref": "AAAAAAGL8lO7+GPAblU=" + "$ref": "AAAAAAGL+8rOH0kk5Us=" }, "visible": false, "font": "Arial;13;0", - "left": 4036, - "top": 1886, + "left": 4209, + "top": 1156, "height": 13, "alpha": 0.7853981633974483, "distance": 40, "hostEdge": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lO7+mPJ378=", + "_id": "AAAAAAGL+8rOIUktsAY=", "_parent": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "model": { - "$ref": "AAAAAAGL8lO7+GPAblU=" + "$ref": "AAAAAAGL+8rOH0kk5Us=" }, "visible": false, "font": "Arial;13;0", - "left": 3996, - "top": 1877, + "left": 4245, + "top": 1136, "height": 13, "alpha": -0.5235987755982988, "distance": 25, "hostEdge": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lO7+mPK26w=", + "_id": "AAAAAAGL+8rOIUkuZk8=", "_parent": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "model": { - "$ref": "AAAAAAGL8lO7+GPBs+g=" + "$ref": "AAAAAAGL+8rOH0kl1Ag=" }, "visible": false, "font": "Arial;13;0", - "left": 4020, - "top": 1935, + "left": 4120, + "top": 1020, "height": 13, "alpha": -0.5235987755982988, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" } }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lO7+mPLcXE=", + "_id": "AAAAAAGL+8rOIUkv5a8=", "_parent": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "model": { - "$ref": "AAAAAAGL8lO7+GPBs+g=" + "$ref": "AAAAAAGL+8rOH0kl1Ag=" }, "visible": false, "font": "Arial;13;0", - "left": 4033, - "top": 1934, + "left": 4111, + "top": 1030, "height": 13, "alpha": -0.7853981633974483, "distance": 40, "hostEdge": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" } }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lO7+mPMY/Y=", + "_id": "AAAAAAGL+8rOIUkwAc4=", "_parent": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "model": { - "$ref": "AAAAAAGL8lO7+GPBs+g=" + "$ref": "AAAAAAGL+8rOH0kl1Ag=" }, "visible": false, "font": "Arial;13;0", - "left": 3992, - "top": 1938, + "left": 4139, + "top": 1000, "height": 13, "alpha": 0.5235987755982988, "distance": 25, "hostEdge": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" } }, { "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL8lO7+mPN9/A=", + "_id": "AAAAAAGL+8rOIUkx/wo=", "_parent": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "model": { - "$ref": "AAAAAAGL8lO7+GPAblU=" + "$ref": "AAAAAAGL+8rOH0kk5Us=" }, "visible": false, "font": "Arial;13;0", @@ -8184,12 +7733,12 @@ }, { "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL8lO7+mPOJ04=", + "_id": "AAAAAAGL+8rOIUkyAUc=", "_parent": { - "$ref": "AAAAAAGL8lO7+WPDWLU=" + "$ref": "AAAAAAGL+8rOIEknLJI=" }, "model": { - "$ref": "AAAAAAGL8lO7+GPBs+g=" + "$ref": "AAAAAAGL+8rOH0kl1Ag=" }, "visible": false, "font": "Arial;13;0", @@ -8199,253 +7748,253 @@ ], "font": "Arial;13;0", "head": { - "$ref": "AAAAAAGL3Bpk6Nh7nd8=" + "$ref": "AAAAAAGL8e9J0ldJrjo=" }, "tail": { - "$ref": "AAAAAAGL8e8PL0VmSkQ=" + "$ref": "AAAAAAGL3EA5py45w5E=" }, "lineStyle": 1, - "points": "4010:1863;4004:1967", + "points": "4249:1167;4116:997", "showVisibility": true, "nameLabel": { - "$ref": "AAAAAAGL8lO7+mPEK6o=" + "$ref": "AAAAAAGL+8rOIUko0e8=" }, "stereotypeLabel": { - "$ref": "AAAAAAGL8lO7+mPF070=" + "$ref": "AAAAAAGL+8rOIUkpnxA=" }, "propertyLabel": { - "$ref": "AAAAAAGL8lO7+mPGdnA=" + "$ref": "AAAAAAGL+8rOIUkqzew=" }, "showEndOrder": "hide", "tailRoleNameLabel": { - "$ref": "AAAAAAGL8lO7+mPHYXo=" + "$ref": "AAAAAAGL+8rOIUkrcbw=" }, "tailPropertyLabel": { - "$ref": "AAAAAAGL8lO7+mPIjKE=" + "$ref": "AAAAAAGL+8rOIUks864=" }, "tailMultiplicityLabel": { - "$ref": "AAAAAAGL8lO7+mPJ378=" + "$ref": "AAAAAAGL+8rOIUktsAY=" }, "headRoleNameLabel": { - "$ref": "AAAAAAGL8lO7+mPK26w=" + "$ref": "AAAAAAGL+8rOIUkuZk8=" }, "headPropertyLabel": { - "$ref": "AAAAAAGL8lO7+mPLcXE=" + "$ref": "AAAAAAGL+8rOIUkv5a8=" }, "headMultiplicityLabel": { - "$ref": "AAAAAAGL8lO7+mPMY/Y=" + "$ref": "AAAAAAGL+8rOIUkwAc4=" }, "tailQualifiersCompartment": { - "$ref": "AAAAAAGL8lO7+mPN9/A=" + "$ref": "AAAAAAGL+8rOIUkx/wo=" }, "headQualifiersCompartment": { - "$ref": "AAAAAAGL8lO7+mPOJ04=" + "$ref": "AAAAAAGL+8rOIUkyAUc=" } }, { "_type": "UMLAssociationView", - "_id": "AAAAAAGL8lXBS67DYgg=", + "_id": "AAAAAAGL+8tZ+K7c/nM=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL8lXBSa6/2w4=" + "$ref": "AAAAAAGL+8tZ967YT0Q=" }, "subViews": [ { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lXBS67EK3I=", + "_id": "AAAAAAGL+8tZ+a7digU=", "_parent": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "model": { - "$ref": "AAAAAAGL8lXBSa6/2w4=" + "$ref": "AAAAAAGL+8tZ967YT0Q=" }, "visible": false, "font": "Arial;13;0", - "left": 3869, - "top": 900, + "left": 4369, + "top": 1116, "height": 13, "alpha": 1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lXBS67F6AQ=", + "_id": "AAAAAAGL+8tZ+a7eLHc=", "_parent": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "model": { - "$ref": "AAAAAAGL8lXBSa6/2w4=" + "$ref": "AAAAAAGL+8tZ967YT0Q=" }, "visible": null, "font": "Arial;13;0", - "left": 3872, - "top": 885, + "left": 4354, + "top": 1119, "height": 13, "alpha": 1.5707963267948966, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lXBS67Gc4s=", + "_id": "AAAAAAGL+8tZ+a7fiuQ=", "_parent": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "model": { - "$ref": "AAAAAAGL8lXBSa6/2w4=" + "$ref": "AAAAAAGL+8tZ967YT0Q=" }, "visible": false, "font": "Arial;13;0", - "left": 3862, - "top": 929, + "left": 4398, + "top": 1111, "height": 13, "alpha": -1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lXBTK7HYIA=", + "_id": "AAAAAAGL+8tZ+a7gF+o=", "_parent": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "model": { - "$ref": "AAAAAAGL8lXBSa7AoxY=" + "$ref": "AAAAAAGL+8tZ967ZQD0=" }, "visible": false, "font": "Arial;13;0", - "left": 3705, - "top": 863, + "left": 3799, + "top": 1176, "height": 13, "alpha": 0.5235987755982988, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lXBTK7Ivfo=", + "_id": "AAAAAAGL+8tZ+a7hbVM=", "_parent": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "model": { - "$ref": "AAAAAAGL8lXBSa7AoxY=" + "$ref": "AAAAAAGL+8tZ967ZQD0=" }, "visible": false, "font": "Arial;13;0", - "left": 3710, - "top": 850, + "left": 3802, + "top": 1163, "height": 13, "alpha": 0.7853981633974483, "distance": 40, "hostEdge": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lXBTK7JxMA=", + "_id": "AAAAAAGL+8tZ+a7iO2M=", "_parent": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "model": { - "$ref": "AAAAAAGL8lXBSa7AoxY=" + "$ref": "AAAAAAGL+8tZ967ZQD0=" }, "visible": false, "font": "Arial;13;0", - "left": 3695, - "top": 888, + "left": 3792, + "top": 1203, "height": 13, "alpha": -0.5235987755982988, "distance": 25, "hostEdge": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lXBTK7KBwQ=", + "_id": "AAAAAAGL+8tZ+a7j0rE=", "_parent": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "model": { - "$ref": "AAAAAAGL8lXBSa7B00o=" + "$ref": "AAAAAAGL+8tZ967azMY=" }, "visible": false, "font": "Arial;13;0", - "left": 4032, - "top": 937, + "left": 4167, + "top": 985, "height": 13, "alpha": -0.5235987755982988, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" } }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lXBTK7LPto=", + "_id": "AAAAAAGL+8tZ+a7kGIo=", "_parent": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "model": { - "$ref": "AAAAAAGL8lXBSa7B00o=" + "$ref": "AAAAAAGL+8tZ967azMY=" }, "visible": false, "font": "Arial;13;0", - "left": 4033, - "top": 924, + "left": 4169, + "top": 999, "height": 13, "alpha": -0.7853981633974483, "distance": 40, "hostEdge": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" } }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL8lXBTK7MGZo=", + "_id": "AAAAAAGL+8tZ+a7lIZQ=", "_parent": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "model": { - "$ref": "AAAAAAGL8lXBSa7B00o=" + "$ref": "AAAAAAGL+8tZ967azMY=" }, "visible": false, "font": "Arial;13;0", - "left": 4031, - "top": 965, + "left": 4164, + "top": 958, "height": 13, "alpha": 0.5235987755982988, "distance": 25, "hostEdge": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" } }, { "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL8lXBTK7NaZA=", + "_id": "AAAAAAGL+8tZ+a7mZBU=", "_parent": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "model": { - "$ref": "AAAAAAGL8lXBSa7AoxY=" + "$ref": "AAAAAAGL+8tZ967ZQD0=" }, "visible": false, "font": "Arial;13;0", @@ -8454,12 +8003,12 @@ }, { "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL8lXBTK7OIvI=", + "_id": "AAAAAAGL+8tZ+a7nWnA=", "_parent": { - "$ref": "AAAAAAGL8lXBS67DYgg=" + "$ref": "AAAAAAGL+8tZ+K7c/nM=" }, "model": { - "$ref": "AAAAAAGL8lXBSa7B00o=" + "$ref": "AAAAAAGL+8tZ967azMY=" }, "visible": false, "font": "Arial;13;0", @@ -8472,534 +8021,475 @@ "$ref": "AAAAAAGL8e9J0ldJrjo=" }, "tail": { - "$ref": "AAAAAAGL3EC6NugywOI=" + "$ref": "AAAAAAGL8fAHTpcfcxQ=" }, "lineStyle": 1, - "points": "3677:878;4055:964", + "points": "3772:1195;4408:1256;4360:984;4142:976", "showVisibility": true, "nameLabel": { - "$ref": "AAAAAAGL8lXBS67EK3I=" + "$ref": "AAAAAAGL+8tZ+a7digU=" }, "stereotypeLabel": { - "$ref": "AAAAAAGL8lXBS67F6AQ=" + "$ref": "AAAAAAGL+8tZ+a7eLHc=" }, "propertyLabel": { - "$ref": "AAAAAAGL8lXBS67Gc4s=" + "$ref": "AAAAAAGL+8tZ+a7fiuQ=" }, "showEndOrder": "hide", "tailRoleNameLabel": { - "$ref": "AAAAAAGL8lXBTK7HYIA=" + "$ref": "AAAAAAGL+8tZ+a7gF+o=" }, "tailPropertyLabel": { - "$ref": "AAAAAAGL8lXBTK7Ivfo=" + "$ref": "AAAAAAGL+8tZ+a7hbVM=" }, "tailMultiplicityLabel": { - "$ref": "AAAAAAGL8lXBTK7JxMA=" + "$ref": "AAAAAAGL+8tZ+a7iO2M=" }, "headRoleNameLabel": { - "$ref": "AAAAAAGL8lXBTK7KBwQ=" + "$ref": "AAAAAAGL+8tZ+a7j0rE=" }, "headPropertyLabel": { - "$ref": "AAAAAAGL8lXBTK7LPto=" + "$ref": "AAAAAAGL+8tZ+a7kGIo=" }, "headMultiplicityLabel": { - "$ref": "AAAAAAGL8lXBTK7MGZo=" + "$ref": "AAAAAAGL+8tZ+a7lIZQ=" }, "tailQualifiersCompartment": { - "$ref": "AAAAAAGL8lXBTK7NaZA=" + "$ref": "AAAAAAGL+8tZ+a7mZBU=" }, "headQualifiersCompartment": { - "$ref": "AAAAAAGL8lXBTK7OIvI=" + "$ref": "AAAAAAGL+8tZ+a7nWnA=" } }, { - "_type": "UMLAssociationView", - "_id": "AAAAAAGL+8rOIEknLJI=", + "_type": "UMLClassView", + "_id": "AAAAAAGL+82j3FEcyoc=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL+8rOHkkjQa8=" + "$ref": "AAAAAAGL+82j2lEaUGY=" }, "subViews": [ { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8rOIUko0e8=", + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAGL+82j3FEdnM8=", "_parent": { - "$ref": "AAAAAAGL+8rOIEknLJI=" + "$ref": "AAAAAAGL+82j3FEcyoc=" }, "model": { - "$ref": "AAAAAAGL+8rOHkkjQa8=" + "$ref": "AAAAAAGL+82j2lEaUGY=" }, - "visible": false, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAGL+82j3VEef7E=", + "_parent": { + "$ref": "AAAAAAGL+82j3FEdnM8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -64, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL+82j3VEfYy0=", + "_parent": { + "$ref": "AAAAAAGL+82j3FEdnM8=" + }, + "font": "Arial;13;1", + "left": 3605, + "top": 1295, + "width": 665.8564453125, + "height": 13, + "text": "IGenericRepository" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL+82j3VEgwrw=", + "_parent": { + "$ref": "AAAAAAGL+82j3FEdnM8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -64, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL+82j3VEha1o=", + "_parent": { + "$ref": "AAAAAAGL+82j3FEdnM8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -64, + "height": 13, + "horizontalAlignment": 1 + } + ], "font": "Arial;13;0", - "left": 4170, - "top": 1085, - "height": 13, - "alpha": 1.5707963267948966, - "distance": 15, - "hostEdge": { - "$ref": "AAAAAAGL+8rOIEknLJI=" + "left": 3600, + "top": 1288, + "width": 675.8564453125, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAGL+82j3VEef7E=" }, - "edgePosition": 1 - }, - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8rOIUkpnxA=", - "_parent": { - "$ref": "AAAAAAGL+8rOIEknLJI=" - }, - "model": { - "$ref": "AAAAAAGL+8rOHkkjQa8=" - }, - "visible": null, - "font": "Arial;13;0", - "left": 4158, - "top": 1094, - "height": 13, - "alpha": 1.5707963267948966, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL+8rOIEknLJI=" - }, - "edgePosition": 1 - }, - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8rOIUkqzew=", - "_parent": { - "$ref": "AAAAAAGL+8rOIEknLJI=" - }, - "model": { - "$ref": "AAAAAAGL+8rOHkkjQa8=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 4193, - "top": 1066, - "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, - "hostEdge": { - "$ref": "AAAAAAGL+8rOIEknLJI=" - }, - "edgePosition": 1 - }, - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8rOIUkrcbw=", - "_parent": { - "$ref": "AAAAAAGL+8rOIEknLJI=" - }, - "model": { - "$ref": "AAAAAAGL+8rOH0kk5Us=" + "nameLabel": { + "$ref": "AAAAAAGL+82j3VEfYy0=" }, - "visible": false, - "font": "Arial;13;0", - "left": 4221, - "top": 1149, - "height": 13, - "alpha": 0.5235987755982988, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL+8rOIEknLJI=" + "namespaceLabel": { + "$ref": "AAAAAAGL+82j3VEgwrw=" }, - "edgePosition": 2 + "propertyLabel": { + "$ref": "AAAAAAGL+82j3VEha1o=" + } }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8rOIUks864=", + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAGL+82j3VEiTxc=", "_parent": { - "$ref": "AAAAAAGL+8rOIEknLJI=" + "$ref": "AAAAAAGL+82j3FEcyoc=" }, "model": { - "$ref": "AAAAAAGL+8rOH0kk5Us=" + "$ref": "AAAAAAGL+82j2lEaUGY=" }, - "visible": false, "font": "Arial;13;0", - "left": 4209, - "top": 1156, - "height": 13, - "alpha": 0.7853981633974483, - "distance": 40, - "hostEdge": { - "$ref": "AAAAAAGL+8rOIEknLJI=" - }, - "edgePosition": 2 + "left": 3600, + "top": 1313, + "width": 675.8564453125, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8rOIUktsAY=", + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAGL+82j3VEjiyg=", "_parent": { - "$ref": "AAAAAAGL+8rOIEknLJI=" + "$ref": "AAAAAAGL+82j3FEcyoc=" }, "model": { - "$ref": "AAAAAAGL+8rOH0kk5Us=" + "$ref": "AAAAAAGL+82j2lEaUGY=" }, - "visible": false, + "subViews": [ + { + "_type": "UMLOperationView", + "_id": "AAAAAAGL+84t2m6K78I=", + "_parent": { + "$ref": "AAAAAAGL+82j3VEjiyg=" + }, + "model": { + "$ref": "AAAAAAGL+84tpm4nUBQ=" + }, + "font": "Arial;13;0", + "left": 3605, + "top": 1328, + "width": 665.8564453125, + "height": 13, + "text": "+getItemById(id: int)", + "horizontalAlignment": 0 + }, + { + "_type": "UMLOperationView", + "_id": "AAAAAAGL+86cfHnTO3k=", + "_parent": { + "$ref": "AAAAAAGL+82j3VEjiyg=" + }, + "model": { + "$ref": "AAAAAAGL+86cPHlwc+E=" + }, + "font": "Arial;13;0", + "left": 3605, + "top": 1343, + "width": 665.8564453125, + "height": 13, + "text": "+getNbItems(): int", + "horizontalAlignment": 0 + }, + { + "_type": "UMLOperationView", + "_id": "AAAAAAGL+86fd305Cww=", + "_parent": { + "$ref": "AAAAAAGL+82j3VEjiyg=" + }, + "model": { + "$ref": "AAAAAAGL+86fO3zWI0s=" + }, + "font": "Arial;13;0", + "left": 3605, + "top": 1358, + "width": 665.8564453125, + "height": 13, + "text": "+getItems(index: int, count: int, orderingPropertyName: ?String, descending: bool): array", + "horizontalAlignment": 0 + }, + { + "_type": "UMLOperationView", + "_id": "AAAAAAGL+86ns4CfwV0=", + "_parent": { + "$ref": "AAAAAAGL+82j3VEjiyg=" + }, + "model": { + "$ref": "AAAAAAGL+86ncIA8/pY=" + }, + "font": "Arial;13;0", + "left": 3605, + "top": 1373, + "width": 665.8564453125, + "height": 13, + "text": "+getItemsByName(substring: String, index: int, count: int, orderingPropertyName: ?String, descending: bool): ?array", + "horizontalAlignment": 0 + }, + { + "_type": "UMLOperationView", + "_id": "AAAAAAGL+86qHYQFmS4=", + "_parent": { + "$ref": "AAAAAAGL+82j3VEjiyg=" + }, + "model": { + "$ref": "AAAAAAGL+86p3oOiaNc=" + }, + "font": "Arial;13;0", + "left": 3605, + "top": 1388, + "width": 665.8564453125, + "height": 13, + "text": "+getItemsByName(substring: String, index: int, count: int, orderingPropertyName: ?String, descending: bool)", + "horizontalAlignment": 0 + }, + { + "_type": "UMLOperationView", + "_id": "AAAAAAGL+86sjYdrzkU=", + "_parent": { + "$ref": "AAAAAAGL+82j3VEjiyg=" + }, + "model": { + "$ref": "AAAAAAGL+86sTYcItmQ=" + }, + "font": "Arial;13;0", + "left": 3605, + "top": 1403, + "width": 665.8564453125, + "height": 13, + "text": "+updateItem(oldItem, newItem): void", + "horizontalAlignment": 0 + }, + { + "_type": "UMLOperationView", + "_id": "AAAAAAGL+86uxIrRU/g=", + "_parent": { + "$ref": "AAAAAAGL+82j3VEjiyg=" + }, + "model": { + "$ref": "AAAAAAGL+86ui4puvnk=" + }, + "font": "Arial;13;0", + "left": 3605, + "top": 1418, + "width": 665.8564453125, + "height": 13, + "text": "+deleteItem(item): bool", + "horizontalAlignment": 0 + } + ], "font": "Arial;13;0", - "left": 4245, - "top": 1136, - "height": 13, - "alpha": -0.5235987755982988, - "distance": 25, - "hostEdge": { - "$ref": "AAAAAAGL+8rOIEknLJI=" - }, - "edgePosition": 2 + "left": 3600, + "top": 1323, + "width": 675.8564453125, + "height": 113 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8rOIUkuZk8=", + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAGL+82j3VEkf/0=", "_parent": { - "$ref": "AAAAAAGL+8rOIEknLJI=" + "$ref": "AAAAAAGL+82j3FEcyoc=" }, "model": { - "$ref": "AAAAAAGL+8rOH0kl1Ag=" + "$ref": "AAAAAAGL+82j2lEaUGY=" }, "visible": false, "font": "Arial;13;0", - "left": 4120, - "top": 1020, - "height": 13, - "alpha": -0.5235987755982988, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL+8rOIEknLJI=" - } + "left": -32, + "width": 10, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8rOIUkv5a8=", + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAGL+82j3VEleEk=", "_parent": { - "$ref": "AAAAAAGL+8rOIEknLJI=" + "$ref": "AAAAAAGL+82j3FEcyoc=" }, "model": { - "$ref": "AAAAAAGL+8rOH0kl1Ag=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 4111, - "top": 1030, - "height": 13, - "alpha": -0.7853981633974483, - "distance": 40, - "hostEdge": { - "$ref": "AAAAAAGL+8rOIEknLJI=" - } - }, - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8rOIUkwAc4=", - "_parent": { - "$ref": "AAAAAAGL+8rOIEknLJI=" - }, - "model": { - "$ref": "AAAAAAGL+8rOH0kl1Ag=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 4139, - "top": 1000, - "height": 13, - "alpha": 0.5235987755982988, - "distance": 25, - "hostEdge": { - "$ref": "AAAAAAGL+8rOIEknLJI=" - } - }, - { - "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL+8rOIUkx/wo=", - "_parent": { - "$ref": "AAAAAAGL+8rOIEknLJI=" - }, - "model": { - "$ref": "AAAAAAGL+8rOH0kk5Us=" - }, - "visible": false, - "font": "Arial;13;0", - "width": 10, - "height": 10 - }, - { - "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL+8rOIUkyAUc=", - "_parent": { - "$ref": "AAAAAAGL+8rOIEknLJI=" - }, - "model": { - "$ref": "AAAAAAGL+8rOH0kl1Ag=" + "$ref": "AAAAAAGL+82j2lEaUGY=" }, "visible": false, "font": "Arial;13;0", + "left": -32, "width": 10, "height": 10 } ], "font": "Arial;13;0", - "head": { - "$ref": "AAAAAAGL8e9J0ldJrjo=" - }, - "tail": { - "$ref": "AAAAAAGL3EA5py45w5E=" - }, - "lineStyle": 1, - "points": "4249:1167;4116:997", - "showVisibility": true, - "nameLabel": { - "$ref": "AAAAAAGL+8rOIUko0e8=" - }, - "stereotypeLabel": { - "$ref": "AAAAAAGL+8rOIUkpnxA=" - }, - "propertyLabel": { - "$ref": "AAAAAAGL+8rOIUkqzew=" - }, - "showEndOrder": "hide", - "tailRoleNameLabel": { - "$ref": "AAAAAAGL+8rOIUkrcbw=" - }, - "tailPropertyLabel": { - "$ref": "AAAAAAGL+8rOIUks864=" - }, - "tailMultiplicityLabel": { - "$ref": "AAAAAAGL+8rOIUktsAY=" - }, - "headRoleNameLabel": { - "$ref": "AAAAAAGL+8rOIUkuZk8=" + "containerChangeable": true, + "left": 3600, + "top": 1288, + "width": 675.8564453125, + "height": 148, + "nameCompartment": { + "$ref": "AAAAAAGL+82j3FEdnM8=" }, - "headPropertyLabel": { - "$ref": "AAAAAAGL+8rOIUkv5a8=" + "attributeCompartment": { + "$ref": "AAAAAAGL+82j3VEiTxc=" }, - "headMultiplicityLabel": { - "$ref": "AAAAAAGL+8rOIUkwAc4=" + "operationCompartment": { + "$ref": "AAAAAAGL+82j3VEjiyg=" }, - "tailQualifiersCompartment": { - "$ref": "AAAAAAGL+8rOIUkx/wo=" + "receptionCompartment": { + "$ref": "AAAAAAGL+82j3VEkf/0=" }, - "headQualifiersCompartment": { - "$ref": "AAAAAAGL+8rOIUkyAUc=" + "templateParameterCompartment": { + "$ref": "AAAAAAGL+82j3VEleEk=" } }, { - "_type": "UMLAssociationView", - "_id": "AAAAAAGL+8tZ+K7c/nM=", + "_type": "UMLClassView", + "_id": "AAAAAAGL+9O3Fr8A9kM=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL+8tZ967YT0Q=" + "$ref": "AAAAAAGL+9O3E77+iB4=" }, "subViews": [ { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8tZ+a7digU=", + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAGL+9O3F78BOMg=", "_parent": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" + "$ref": "AAAAAAGL+9O3Fr8A9kM=" }, "model": { - "$ref": "AAAAAAGL+8tZ967YT0Q=" + "$ref": "AAAAAAGL+9O3E77+iB4=" }, - "visible": false, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAGL+9O3F78CrIE=", + "_parent": { + "$ref": "AAAAAAGL+9O3F78BOMg=" + }, + "visible": false, + "font": "Arial;13;0", + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL+9O3F78DySM=", + "_parent": { + "$ref": "AAAAAAGL+9O3F78BOMg=" + }, + "font": "Arial;13;1", + "left": 3709, + "top": 1519, + "width": 122.07177734375, + "height": 13, + "text": "ITrainingRepository" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL+9O3F78EMdg=", + "_parent": { + "$ref": "AAAAAAGL+9O3F78BOMg=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL+9O3F78FN9A=", + "_parent": { + "$ref": "AAAAAAGL+9O3F78BOMg=" + }, + "visible": false, + "font": "Arial;13;0", + "height": 13, + "horizontalAlignment": 1 + } + ], "font": "Arial;13;0", - "left": 4369, - "top": 1116, - "height": 13, - "alpha": 1.5707963267948966, - "distance": 15, - "hostEdge": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" + "left": 3704, + "top": 1512, + "width": 132.07177734375, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAGL+9O3F78CrIE=" }, - "edgePosition": 1 + "nameLabel": { + "$ref": "AAAAAAGL+9O3F78DySM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAGL+9O3F78EMdg=" + }, + "propertyLabel": { + "$ref": "AAAAAAGL+9O3F78FN9A=" + } }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8tZ+a7eLHc=", + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAGL+9O3F78GjZg=", "_parent": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" + "$ref": "AAAAAAGL+9O3Fr8A9kM=" }, "model": { - "$ref": "AAAAAAGL+8tZ967YT0Q=" + "$ref": "AAAAAAGL+9O3E77+iB4=" }, - "visible": null, "font": "Arial;13;0", - "left": 4354, - "top": 1119, - "height": 13, - "alpha": 1.5707963267948966, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" + "left": 3704, + "top": 1537, + "width": 132.07177734375, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAGL+9O3F78H6KE=", + "_parent": { + "$ref": "AAAAAAGL+9O3Fr8A9kM=" }, - "edgePosition": 1 + "model": { + "$ref": "AAAAAAGL+9O3E77+iB4=" + }, + "font": "Arial;13;0", + "left": 3704, + "top": 1547, + "width": 132.07177734375, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8tZ+a7fiuQ=", + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAGL+9O3F78IiiI=", "_parent": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" + "$ref": "AAAAAAGL+9O3Fr8A9kM=" }, "model": { - "$ref": "AAAAAAGL+8tZ967YT0Q=" + "$ref": "AAAAAAGL+9O3E77+iB4=" }, "visible": false, "font": "Arial;13;0", - "left": 4398, - "top": 1111, - "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, - "hostEdge": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - }, - "edgePosition": 1 + "width": 10, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8tZ+a7gF+o=", + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAGL+9O3GL8J2/s=", "_parent": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" + "$ref": "AAAAAAGL+9O3Fr8A9kM=" }, "model": { - "$ref": "AAAAAAGL+8tZ967ZQD0=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 3799, - "top": 1176, - "height": 13, - "alpha": 0.5235987755982988, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - }, - "edgePosition": 2 - }, - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8tZ+a7hbVM=", - "_parent": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - }, - "model": { - "$ref": "AAAAAAGL+8tZ967ZQD0=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 3802, - "top": 1163, - "height": 13, - "alpha": 0.7853981633974483, - "distance": 40, - "hostEdge": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - }, - "edgePosition": 2 - }, - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8tZ+a7iO2M=", - "_parent": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - }, - "model": { - "$ref": "AAAAAAGL+8tZ967ZQD0=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 3792, - "top": 1203, - "height": 13, - "alpha": -0.5235987755982988, - "distance": 25, - "hostEdge": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - }, - "edgePosition": 2 - }, - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8tZ+a7j0rE=", - "_parent": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - }, - "model": { - "$ref": "AAAAAAGL+8tZ967azMY=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 4167, - "top": 985, - "height": 13, - "alpha": -0.5235987755982988, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - } - }, - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8tZ+a7kGIo=", - "_parent": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - }, - "model": { - "$ref": "AAAAAAGL+8tZ967azMY=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 4169, - "top": 999, - "height": 13, - "alpha": -0.7853981633974483, - "distance": 40, - "hostEdge": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - } - }, - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+8tZ+a7lIZQ=", - "_parent": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - }, - "model": { - "$ref": "AAAAAAGL+8tZ967azMY=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 4164, - "top": 958, - "height": 13, - "alpha": 0.5235987755982988, - "distance": 25, - "hostEdge": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - } - }, - { - "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL+8tZ+a7mZBU=", - "_parent": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - }, - "model": { - "$ref": "AAAAAAGL+8tZ967ZQD0=" - }, - "visible": false, - "font": "Arial;13;0", - "width": 10, - "height": 10 - }, - { - "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL+8tZ+a7nWnA=", - "_parent": { - "$ref": "AAAAAAGL+8tZ+K7c/nM=" - }, - "model": { - "$ref": "AAAAAAGL+8tZ967azMY=" + "$ref": "AAAAAAGL+9O3E77+iB4=" }, "visible": false, "font": "Arial;13;0", @@ -9008,1358 +8498,1688 @@ } ], "font": "Arial;13;0", - "head": { - "$ref": "AAAAAAGL8e9J0ldJrjo=" - }, - "tail": { - "$ref": "AAAAAAGL8fAHTpcfcxQ=" - }, - "lineStyle": 1, - "points": "3772:1195;4408:1256;4360:984;4142:976", - "showVisibility": true, - "nameLabel": { - "$ref": "AAAAAAGL+8tZ+a7digU=" - }, - "stereotypeLabel": { - "$ref": "AAAAAAGL+8tZ+a7eLHc=" - }, - "propertyLabel": { - "$ref": "AAAAAAGL+8tZ+a7fiuQ=" - }, - "showEndOrder": "hide", - "tailRoleNameLabel": { - "$ref": "AAAAAAGL+8tZ+a7gF+o=" - }, - "tailPropertyLabel": { - "$ref": "AAAAAAGL+8tZ+a7hbVM=" - }, - "tailMultiplicityLabel": { - "$ref": "AAAAAAGL+8tZ+a7iO2M=" - }, - "headRoleNameLabel": { - "$ref": "AAAAAAGL+8tZ+a7j0rE=" + "containerChangeable": true, + "left": 3704, + "top": 1512, + "width": 132.07177734375, + "height": 45, + "nameCompartment": { + "$ref": "AAAAAAGL+9O3F78BOMg=" }, - "headPropertyLabel": { - "$ref": "AAAAAAGL+8tZ+a7kGIo=" + "attributeCompartment": { + "$ref": "AAAAAAGL+9O3F78GjZg=" }, - "headMultiplicityLabel": { - "$ref": "AAAAAAGL+8tZ+a7lIZQ=" + "operationCompartment": { + "$ref": "AAAAAAGL+9O3F78H6KE=" }, - "tailQualifiersCompartment": { - "$ref": "AAAAAAGL+8tZ+a7mZBU=" + "receptionCompartment": { + "$ref": "AAAAAAGL+9O3F78IiiI=" }, - "headQualifiersCompartment": { - "$ref": "AAAAAAGL+8tZ+a7nWnA=" + "templateParameterCompartment": { + "$ref": "AAAAAAGL+9O3GL8J2/s=" } }, { "_type": "UMLClassView", - "_id": "AAAAAAGL+82j3FEcyoc=", + "_id": "AAAAAAGL+9PoNNQIuXw=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL+82j2lEaUGY=" + "$ref": "AAAAAAGL+9PoMtQG54g=" }, "subViews": [ { "_type": "UMLNameCompartmentView", - "_id": "AAAAAAGL+82j3FEdnM8=", + "_id": "AAAAAAGL+9PoNdQJC5U=", "_parent": { - "$ref": "AAAAAAGL+82j3FEcyoc=" + "$ref": "AAAAAAGL+9PoNNQIuXw=" }, "model": { - "$ref": "AAAAAAGL+82j2lEaUGY=" + "$ref": "AAAAAAGL+9PoMtQG54g=" }, "subViews": [ { "_type": "LabelView", - "_id": "AAAAAAGL+82j3VEef7E=", + "_id": "AAAAAAGL+9PoNdQKlXY=", "_parent": { - "$ref": "AAAAAAGL+82j3FEdnM8=" + "$ref": "AAAAAAGL+9PoNdQJC5U=" }, "visible": false, "font": "Arial;13;0", - "left": -64, + "left": 848, + "top": 48, "height": 13 }, { "_type": "LabelView", - "_id": "AAAAAAGL+82j3VEfYy0=", + "_id": "AAAAAAGL+9PoNdQLUfI=", "_parent": { - "$ref": "AAAAAAGL+82j3FEdnM8=" + "$ref": "AAAAAAGL+9PoNdQJC5U=" }, "font": "Arial;13;1", - "left": 3605, - "top": 1295, - "width": 665.8564453125, + "left": 4085, + "top": 1527, + "width": 100.419921875, "height": 13, - "text": "IGenericRepository" + "text": "IUserRepository" }, { "_type": "LabelView", - "_id": "AAAAAAGL+82j3VEgwrw=", + "_id": "AAAAAAGL+9PoNdQM5Ew=", "_parent": { - "$ref": "AAAAAAGL+82j3FEdnM8=" + "$ref": "AAAAAAGL+9PoNdQJC5U=" }, "visible": false, "font": "Arial;13;0", - "left": -64, + "left": 848, + "top": 48, "width": 73.67724609375, "height": 13, "text": "(from Model)" }, { "_type": "LabelView", - "_id": "AAAAAAGL+82j3VEha1o=", + "_id": "AAAAAAGL+9PoNdQN2fA=", "_parent": { - "$ref": "AAAAAAGL+82j3FEdnM8=" + "$ref": "AAAAAAGL+9PoNdQJC5U=" }, "visible": false, "font": "Arial;13;0", - "left": -64, + "left": 848, + "top": 48, "height": 13, "horizontalAlignment": 1 } ], "font": "Arial;13;0", - "left": 3600, - "top": 1288, - "width": 675.8564453125, + "left": 4080, + "top": 1520, + "width": 110.419921875, "height": 25, "stereotypeLabel": { - "$ref": "AAAAAAGL+82j3VEef7E=" + "$ref": "AAAAAAGL+9PoNdQKlXY=" }, "nameLabel": { - "$ref": "AAAAAAGL+82j3VEfYy0=" + "$ref": "AAAAAAGL+9PoNdQLUfI=" }, "namespaceLabel": { - "$ref": "AAAAAAGL+82j3VEgwrw=" + "$ref": "AAAAAAGL+9PoNdQM5Ew=" }, "propertyLabel": { - "$ref": "AAAAAAGL+82j3VEha1o=" + "$ref": "AAAAAAGL+9PoNdQN2fA=" } }, { "_type": "UMLAttributeCompartmentView", - "_id": "AAAAAAGL+82j3VEiTxc=", + "_id": "AAAAAAGL+9PoNdQOmYg=", "_parent": { - "$ref": "AAAAAAGL+82j3FEcyoc=" + "$ref": "AAAAAAGL+9PoNNQIuXw=" }, "model": { - "$ref": "AAAAAAGL+82j2lEaUGY=" + "$ref": "AAAAAAGL+9PoMtQG54g=" }, "font": "Arial;13;0", - "left": 3600, - "top": 1313, - "width": 675.8564453125, + "left": 4080, + "top": 1545, + "width": 110.419921875, "height": 10 }, { "_type": "UMLOperationCompartmentView", - "_id": "AAAAAAGL+82j3VEjiyg=", + "_id": "AAAAAAGL+9PoNdQPg/M=", "_parent": { - "$ref": "AAAAAAGL+82j3FEcyoc=" + "$ref": "AAAAAAGL+9PoNNQIuXw=" }, "model": { - "$ref": "AAAAAAGL+82j2lEaUGY=" + "$ref": "AAAAAAGL+9PoMtQG54g=" }, - "subViews": [ - { - "_type": "UMLOperationView", - "_id": "AAAAAAGL+84t2m6K78I=", - "_parent": { - "$ref": "AAAAAAGL+82j3VEjiyg=" - }, - "model": { - "$ref": "AAAAAAGL+84tpm4nUBQ=" - }, - "font": "Arial;13;0", - "left": 3605, - "top": 1328, - "width": 665.8564453125, - "height": 13, - "text": "+getItemById(id: int)", - "horizontalAlignment": 0 - }, - { - "_type": "UMLOperationView", - "_id": "AAAAAAGL+86cfHnTO3k=", - "_parent": { - "$ref": "AAAAAAGL+82j3VEjiyg=" - }, - "model": { - "$ref": "AAAAAAGL+86cPHlwc+E=" - }, - "font": "Arial;13;0", - "left": 3605, - "top": 1343, - "width": 665.8564453125, - "height": 13, - "text": "+getNbItems(): int", - "horizontalAlignment": 0 - }, - { - "_type": "UMLOperationView", - "_id": "AAAAAAGL+86fd305Cww=", - "_parent": { - "$ref": "AAAAAAGL+82j3VEjiyg=" - }, - "model": { - "$ref": "AAAAAAGL+86fO3zWI0s=" - }, - "font": "Arial;13;0", - "left": 3605, - "top": 1358, - "width": 665.8564453125, - "height": 13, - "text": "+getItems(index: int, count: int, orderingPropertyName: ?String, descending: bool): array", - "horizontalAlignment": 0 - }, - { - "_type": "UMLOperationView", - "_id": "AAAAAAGL+86ns4CfwV0=", - "_parent": { - "$ref": "AAAAAAGL+82j3VEjiyg=" - }, - "model": { - "$ref": "AAAAAAGL+86ncIA8/pY=" - }, - "font": "Arial;13;0", - "left": 3605, - "top": 1373, - "width": 665.8564453125, - "height": 13, - "text": "+getItemsByName(substring: String, index: int, count: int, orderingPropertyName: ?String, descending: bool): ?array", - "horizontalAlignment": 0 - }, - { - "_type": "UMLOperationView", - "_id": "AAAAAAGL+86qHYQFmS4=", - "_parent": { - "$ref": "AAAAAAGL+82j3VEjiyg=" - }, - "model": { - "$ref": "AAAAAAGL+86p3oOiaNc=" - }, - "font": "Arial;13;0", - "left": 3605, - "top": 1388, - "width": 665.8564453125, - "height": 13, - "text": "+getItemsByName(substring: String, index: int, count: int, orderingPropertyName: ?String, descending: bool)", - "horizontalAlignment": 0 - }, - { - "_type": "UMLOperationView", - "_id": "AAAAAAGL+86sjYdrzkU=", - "_parent": { - "$ref": "AAAAAAGL+82j3VEjiyg=" - }, - "model": { - "$ref": "AAAAAAGL+86sTYcItmQ=" - }, - "font": "Arial;13;0", - "left": 3605, - "top": 1403, - "width": 665.8564453125, - "height": 13, - "text": "+updateItem(oldItem, newItem): void", - "horizontalAlignment": 0 - }, - { - "_type": "UMLOperationView", - "_id": "AAAAAAGL+86uxIrRU/g=", - "_parent": { - "$ref": "AAAAAAGL+82j3VEjiyg=" - }, - "model": { - "$ref": "AAAAAAGL+86ui4puvnk=" - }, - "font": "Arial;13;0", - "left": 3605, - "top": 1418, - "width": 665.8564453125, - "height": 13, - "text": "+deleteItem(item): bool", - "horizontalAlignment": 0 - } - ], "font": "Arial;13;0", - "left": 3600, - "top": 1323, - "width": 675.8564453125, - "height": 113 - }, + "left": 4080, + "top": 1555, + "width": 110.419921875, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAGL+9PoNdQQOeE=", + "_parent": { + "$ref": "AAAAAAGL+9PoNNQIuXw=" + }, + "model": { + "$ref": "AAAAAAGL+9PoMtQG54g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 424, + "top": 24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAGL+9PoNdQRN8A=", + "_parent": { + "$ref": "AAAAAAGL+9PoNNQIuXw=" + }, + "model": { + "$ref": "AAAAAAGL+9PoMtQG54g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 424, + "top": 24, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 4080, + "top": 1520, + "width": 110.419921875, + "height": 45, + "nameCompartment": { + "$ref": "AAAAAAGL+9PoNdQJC5U=" + }, + "attributeCompartment": { + "$ref": "AAAAAAGL+9PoNdQOmYg=" + }, + "operationCompartment": { + "$ref": "AAAAAAGL+9PoNdQPg/M=" + }, + "receptionCompartment": { + "$ref": "AAAAAAGL+9PoNdQQOeE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAGL+9PoNdQRN8A=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAGL+9RSGxB+nHc=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAGL+9RSGRB8+vM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9RSGxB/KpY=", + "_parent": { + "$ref": "AAAAAAGL+9RSGxB+nHc=" + }, + "model": { + "$ref": "AAAAAAGL+9RSGRB8+vM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3816, + "top": 1456, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL+9RSGxB+nHc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9RSGxCAPdg=", + "_parent": { + "$ref": "AAAAAAGL+9RSGxB+nHc=" + }, + "model": { + "$ref": "AAAAAAGL+9RSGRB8+vM=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 3805, + "top": 1445, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL+9RSGxB+nHc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9RSGxCBVsg=", + "_parent": { + "$ref": "AAAAAAGL+9RSGxB+nHc=" + }, + "model": { + "$ref": "AAAAAAGL+9RSGRB8+vM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3837, + "top": 1477, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL+9RSGxB+nHc=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAGL+82j3FEcyoc=" + }, + "tail": { + "$ref": "AAAAAAGL+9O3Fr8A9kM=" + }, + "lineStyle": 1, + "points": "3791:1511;3864:1436", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAGL+9RSGxB/KpY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAGL+9RSGxCAPdg=" + }, + "propertyLabel": { + "$ref": "AAAAAAGL+9RSGxCBVsg=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAGL+9RdJRsYynw=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAGL+9RdJBsWH7s=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9RdJRsZl4s=", + "_parent": { + "$ref": "AAAAAAGL+9RdJRsYynw=" + }, + "model": { + "$ref": "AAAAAAGL+9RdJBsWH7s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 4053, + "top": 1482, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL+9RdJRsYynw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9RdJhsaMvs=", + "_parent": { + "$ref": "AAAAAAGL+9RdJRsYynw=" + }, + "model": { + "$ref": "AAAAAAGL+9RdJBsWH7s=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 4043, + "top": 1493, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL+9RdJRsYynw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9RdJhsbpBU=", + "_parent": { + "$ref": "AAAAAAGL+9RdJRsYynw=" + }, + "model": { + "$ref": "AAAAAAGL+9RdJBsWH7s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 4074, + "top": 1459, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL+9RdJRsYynw=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAGL+82j3FEcyoc=" + }, + "tail": { + "$ref": "AAAAAAGL+9PoNNQIuXw=" + }, + "lineStyle": 1, + "points": "4109:1519;4019:1436", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAGL+9RdJRsZl4s=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAGL+9RdJhsaMvs=" + }, + "propertyLabel": { + "$ref": "AAAAAAGL+9RdJhsbpBU=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAGL+9Ru2jbFEaA=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAGL+9Ru2TbDJ+A=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9Ru2zbGfmg=", + "_parent": { + "$ref": "AAAAAAGL+9Ru2jbFEaA=" + }, + "model": { + "$ref": "AAAAAAGL+9Ru2TbDJ+A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 4061, + "top": 1666, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL+9Ru2jbFEaA=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9Ru2zbHIig=", + "_parent": { + "$ref": "AAAAAAGL+9Ru2jbFEaA=" + }, + "model": { + "$ref": "AAAAAAGL+9Ru2TbDJ+A=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 4047, + "top": 1660, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL+9Ru2jbFEaA=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9Ru2zbIGgw=", + "_parent": { + "$ref": "AAAAAAGL+9Ru2jbFEaA=" + }, + "model": { + "$ref": "AAAAAAGL+9Ru2TbDJ+A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 4088, + "top": 1677, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL+9Ru2jbFEaA=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAGL+9PoNNQIuXw=" + }, + "tail": { + "$ref": "AAAAAAGL8e8PL0VmSkQ=" + }, + "lineStyle": 1, + "points": "4027:1791;4124:1565", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAGL+9Ru2zbGfmg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAGL+9Ru2zbHIig=" + }, + "propertyLabel": { + "$ref": "AAAAAAGL+9Ru2zbIGgw=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAGL+9Se8smboVw=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAGL+9Se8MmZLdo=" + }, + "subViews": [ { - "_type": "UMLReceptionCompartmentView", - "_id": "AAAAAAGL+82j3VEkf/0=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9Se8smclxw=", "_parent": { - "$ref": "AAAAAAGL+82j3FEcyoc=" + "$ref": "AAAAAAGL+9Se8smboVw=" }, "model": { - "$ref": "AAAAAAGL+82j2lEaUGY=" + "$ref": "AAAAAAGL+9Se8MmZLdo=" }, "visible": false, "font": "Arial;13;0", - "left": -32, - "width": 10, - "height": 10 + "left": 3357, + "top": 1895, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL+9Se8smboVw=" + }, + "edgePosition": 1 }, { - "_type": "UMLTemplateParameterCompartmentView", - "_id": "AAAAAAGL+82j3VEleEk=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9Se8smdmXM=", "_parent": { - "$ref": "AAAAAAGL+82j3FEcyoc=" + "$ref": "AAAAAAGL+9Se8smboVw=" }, "model": { - "$ref": "AAAAAAGL+82j2lEaUGY=" + "$ref": "AAAAAAGL+9Se8MmZLdo=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 3347, + "top": 1884, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL+9Se8smboVw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9Se8smeaGk=", + "_parent": { + "$ref": "AAAAAAGL+9Se8smboVw=" + }, + "model": { + "$ref": "AAAAAAGL+9Se8MmZLdo=" }, "visible": false, "font": "Arial;13;0", - "left": -32, - "width": 10, - "height": 10 + "left": 3378, + "top": 1916, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL+9Se8smboVw=" + }, + "edgePosition": 1 } ], "font": "Arial;13;0", - "containerChangeable": true, - "left": 3600, - "top": 1288, - "width": 675.8564453125, - "height": 148, - "nameCompartment": { - "$ref": "AAAAAAGL+82j3FEdnM8=" + "head": { + "$ref": "AAAAAAGL+9O3Fr8A9kM=" }, - "attributeCompartment": { - "$ref": "AAAAAAGL+82j3VEiTxc=" + "tail": { + "$ref": "AAAAAAGL8kwWNOvs/ko=" }, - "operationCompartment": { - "$ref": "AAAAAAGL+82j3VEjiyg=" + "lineStyle": 1, + "points": "3266:2735;3368:1912;3745:1557", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAGL+9Se8smclxw=" }, - "receptionCompartment": { - "$ref": "AAAAAAGL+82j3VEkf/0=" + "stereotypeLabel": { + "$ref": "AAAAAAGL+9Se8smdmXM=" }, - "templateParameterCompartment": { - "$ref": "AAAAAAGL+82j3VEleEk=" + "propertyLabel": { + "$ref": "AAAAAAGL+9Se8smeaGk=" } }, { - "_type": "UMLClassView", - "_id": "AAAAAAGL+9O3Fr8A9kM=", + "_type": "UMLDependencyView", + "_id": "AAAAAAGL+9V6x0TV/+Y=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL+9O3E77+iB4=" + "$ref": "AAAAAAGL+9V6xkTTcHA=" }, "subViews": [ { - "_type": "UMLNameCompartmentView", - "_id": "AAAAAAGL+9O3F78BOMg=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9V6yETWAtw=", "_parent": { - "$ref": "AAAAAAGL+9O3Fr8A9kM=" + "$ref": "AAAAAAGL+9V6x0TV/+Y=" }, "model": { - "$ref": "AAAAAAGL+9O3E77+iB4=" + "$ref": "AAAAAAGL+9V6xkTTcHA=" }, - "subViews": [ - { - "_type": "LabelView", - "_id": "AAAAAAGL+9O3F78CrIE=", - "_parent": { - "$ref": "AAAAAAGL+9O3F78BOMg=" - }, - "visible": false, - "font": "Arial;13;0", - "height": 13 - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL+9O3F78DySM=", - "_parent": { - "$ref": "AAAAAAGL+9O3F78BOMg=" - }, - "font": "Arial;13;1", - "left": 3709, - "top": 1519, - "width": 122.07177734375, - "height": 13, - "text": "ITrainingRepository" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL+9O3F78EMdg=", - "_parent": { - "$ref": "AAAAAAGL+9O3F78BOMg=" - }, - "visible": false, - "font": "Arial;13;0", - "width": 73.67724609375, - "height": 13, - "text": "(from Model)" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL+9O3F78FN9A=", - "_parent": { - "$ref": "AAAAAAGL+9O3F78BOMg=" - }, - "visible": false, - "font": "Arial;13;0", - "height": 13, - "horizontalAlignment": 1 - } - ], + "visible": false, "font": "Arial;13;0", - "left": 3704, - "top": 1512, - "width": 132.07177734375, - "height": 25, - "stereotypeLabel": { - "$ref": "AAAAAAGL+9O3F78CrIE=" + "left": 3526, + "top": 1588, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL+9V6x0TV/+Y=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9V6yETXVbY=", + "_parent": { + "$ref": "AAAAAAGL+9V6x0TV/+Y=" + }, + "model": { + "$ref": "AAAAAAGL+9V6xkTTcHA=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 3532, + "top": 1574, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL+9V6x0TV/+Y=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9V6yETYeeg=", + "_parent": { + "$ref": "AAAAAAGL+9V6x0TV/+Y=" + }, + "model": { + "$ref": "AAAAAAGL+9V6xkTTcHA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3513, + "top": 1615, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL+9V6x0TV/+Y=" }, - "nameLabel": { - "$ref": "AAAAAAGL+9O3F78DySM=" + "edgePosition": 1 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAGL8e8PL0VmSkQ=" + }, + "tail": { + "$ref": "AAAAAAGL3EC6Nug8Ro0=" + }, + "lineStyle": 1, + "points": "3583:1029;3520:1608;3959:1803", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAGL+9V6yETWAtw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAGL+9V6yETXVbY=" + }, + "propertyLabel": { + "$ref": "AAAAAAGL+9V6yETYeeg=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAGL+9YU3awXKn8=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAGL+9YU26wTNo0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9YU3qwY2s8=", + "_parent": { + "$ref": "AAAAAAGL+9YU3awXKn8=" }, - "namespaceLabel": { - "$ref": "AAAAAAGL+9O3F78EMdg=" + "model": { + "$ref": "AAAAAAGL+9YU26wTNo0=" }, - "propertyLabel": { - "$ref": "AAAAAAGL+9O3F78FN9A=" - } + "visible": false, + "font": "Arial;13;0", + "left": 4041, + "top": 1141, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL+9YU3awXKn8=" + }, + "edgePosition": 1 }, { - "_type": "UMLAttributeCompartmentView", - "_id": "AAAAAAGL+9O3F78GjZg=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9YU3qwZHX0=", "_parent": { - "$ref": "AAAAAAGL+9O3Fr8A9kM=" + "$ref": "AAAAAAGL+9YU3awXKn8=" }, "model": { - "$ref": "AAAAAAGL+9O3E77+iB4=" + "$ref": "AAAAAAGL+9YU26wTNo0=" }, + "visible": null, "font": "Arial;13;0", - "left": 3704, - "top": 1537, - "width": 132.07177734375, - "height": 10 + "left": 4055, + "top": 1147, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL+9YU3awXKn8=" + }, + "edgePosition": 1 }, { - "_type": "UMLOperationCompartmentView", - "_id": "AAAAAAGL+9O3F78H6KE=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9YU3qwaaAc=", "_parent": { - "$ref": "AAAAAAGL+9O3Fr8A9kM=" + "$ref": "AAAAAAGL+9YU3awXKn8=" }, "model": { - "$ref": "AAAAAAGL+9O3E77+iB4=" + "$ref": "AAAAAAGL+9YU26wTNo0=" }, + "visible": false, "font": "Arial;13;0", - "left": 3704, - "top": 1547, - "width": 132.07177734375, - "height": 10 + "left": 4014, + "top": 1130, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL+9YU3awXKn8=" + }, + "edgePosition": 1 }, { - "_type": "UMLReceptionCompartmentView", - "_id": "AAAAAAGL+9O3F78IiiI=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9YU3qwbL8I=", "_parent": { - "$ref": "AAAAAAGL+9O3Fr8A9kM=" + "$ref": "AAAAAAGL+9YU3awXKn8=" }, "model": { - "$ref": "AAAAAAGL+9O3E77+iB4=" + "$ref": "AAAAAAGL+9YU26wUZOY=" }, "visible": false, "font": "Arial;13;0", - "width": 10, - "height": 10 + "left": 4091, + "top": 1020, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL+9YU3awXKn8=" + }, + "edgePosition": 2 }, { - "_type": "UMLTemplateParameterCompartmentView", - "_id": "AAAAAAGL+9O3GL8J2/s=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9YU3qwcWnI=", "_parent": { - "$ref": "AAAAAAGL+9O3Fr8A9kM=" + "$ref": "AAAAAAGL+9YU3awXKn8=" }, "model": { - "$ref": "AAAAAAGL+9O3E77+iB4=" + "$ref": "AAAAAAGL+9YU26wUZOY=" }, "visible": false, "font": "Arial;13;0", - "width": 10, - "height": 10 - } - ], - "font": "Arial;13;0", - "containerChangeable": true, - "left": 3704, - "top": 1512, - "width": 132.07177734375, - "height": 45, - "nameCompartment": { - "$ref": "AAAAAAGL+9O3F78BOMg=" - }, - "attributeCompartment": { - "$ref": "AAAAAAGL+9O3F78GjZg=" - }, - "operationCompartment": { - "$ref": "AAAAAAGL+9O3F78H6KE=" - }, - "receptionCompartment": { - "$ref": "AAAAAAGL+9O3F78IiiI=" - }, - "templateParameterCompartment": { - "$ref": "AAAAAAGL+9O3GL8J2/s=" - } - }, - { - "_type": "UMLClassView", - "_id": "AAAAAAGL+9PoNNQIuXw=", - "_parent": { - "$ref": "AAAAAAFF+qBtyKM79qY=" - }, - "model": { - "$ref": "AAAAAAGL+9PoMtQG54g=" - }, - "subViews": [ + "left": 4103, + "top": 1027, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAGL+9YU3awXKn8=" + }, + "edgePosition": 2 + }, { - "_type": "UMLNameCompartmentView", - "_id": "AAAAAAGL+9PoNdQJC5U=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9YU3qwd9bg=", "_parent": { - "$ref": "AAAAAAGL+9PoNNQIuXw=" + "$ref": "AAAAAAGL+9YU3awXKn8=" }, "model": { - "$ref": "AAAAAAGL+9PoMtQG54g=" + "$ref": "AAAAAAGL+9YU26wUZOY=" }, - "subViews": [ - { - "_type": "LabelView", - "_id": "AAAAAAGL+9PoNdQKlXY=", - "_parent": { - "$ref": "AAAAAAGL+9PoNdQJC5U=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 848, - "top": 48, - "height": 13 - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL+9PoNdQLUfI=", - "_parent": { - "$ref": "AAAAAAGL+9PoNdQJC5U=" - }, - "font": "Arial;13;1", - "left": 4085, - "top": 1527, - "width": 100.419921875, - "height": 13, - "text": "IUserRepository" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL+9PoNdQM5Ew=", - "_parent": { - "$ref": "AAAAAAGL+9PoNdQJC5U=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 848, - "top": 48, - "width": 73.67724609375, - "height": 13, - "text": "(from Model)" - }, - { - "_type": "LabelView", - "_id": "AAAAAAGL+9PoNdQN2fA=", - "_parent": { - "$ref": "AAAAAAGL+9PoNdQJC5U=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 848, - "top": 48, - "height": 13, - "horizontalAlignment": 1 - } - ], + "visible": false, "font": "Arial;13;0", - "left": 4080, - "top": 1520, - "width": 110.419921875, - "height": 25, - "stereotypeLabel": { - "$ref": "AAAAAAGL+9PoNdQKlXY=" + "left": 4068, + "top": 1006, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAGL+9YU3awXKn8=" }, - "nameLabel": { - "$ref": "AAAAAAGL+9PoNdQLUfI=" + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9YU3qwe/3E=", + "_parent": { + "$ref": "AAAAAAGL+9YU3awXKn8=" }, - "namespaceLabel": { - "$ref": "AAAAAAGL+9PoNdQM5Ew=" + "model": { + "$ref": "AAAAAAGL+9YU26wVXhc=" }, - "propertyLabel": { - "$ref": "AAAAAAGL+9PoNdQN2fA=" + "visible": false, + "font": "Arial;13;0", + "left": 3991, + "top": 1262, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL+9YU3awXKn8=" } }, { - "_type": "UMLAttributeCompartmentView", - "_id": "AAAAAAGL+9PoNdQOmYg=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9YU3qwfUbg=", "_parent": { - "$ref": "AAAAAAGL+9PoNNQIuXw=" + "$ref": "AAAAAAGL+9YU3awXKn8=" }, "model": { - "$ref": "AAAAAAGL+9PoMtQG54g=" + "$ref": "AAAAAAGL+9YU26wVXhc=" }, + "visible": false, "font": "Arial;13;0", - "left": 4080, - "top": 1545, - "width": 110.419921875, - "height": 10 + "left": 4004, + "top": 1265, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAGL+9YU3awXKn8=" + } }, { - "_type": "UMLOperationCompartmentView", - "_id": "AAAAAAGL+9PoNdQPg/M=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9YU3qwgFmc=", "_parent": { - "$ref": "AAAAAAGL+9PoNNQIuXw=" + "$ref": "AAAAAAGL+9YU3awXKn8=" }, "model": { - "$ref": "AAAAAAGL+9PoMtQG54g=" + "$ref": "AAAAAAGL+9YU26wVXhc=" }, + "visible": false, "font": "Arial;13;0", - "left": 4080, - "top": 1555, - "width": 110.419921875, - "height": 10 + "left": 3964, + "top": 1256, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAGL+9YU3awXKn8=" + } }, { - "_type": "UMLReceptionCompartmentView", - "_id": "AAAAAAGL+9PoNdQQOeE=", + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGL+9YU3qwhe/Y=", "_parent": { - "$ref": "AAAAAAGL+9PoNNQIuXw=" + "$ref": "AAAAAAGL+9YU3awXKn8=" }, "model": { - "$ref": "AAAAAAGL+9PoMtQG54g=" + "$ref": "AAAAAAGL+9YU26wUZOY=" }, "visible": false, "font": "Arial;13;0", - "left": 424, - "top": 24, "width": 10, "height": 10 }, { - "_type": "UMLTemplateParameterCompartmentView", - "_id": "AAAAAAGL+9PoNdQRN8A=", + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGL+9YU3qwiTuU=", "_parent": { - "$ref": "AAAAAAGL+9PoNNQIuXw=" + "$ref": "AAAAAAGL+9YU3awXKn8=" }, "model": { - "$ref": "AAAAAAGL+9PoMtQG54g=" + "$ref": "AAAAAAGL+9YU26wVXhc=" }, "visible": false, "font": "Arial;13;0", - "left": 424, - "top": 24, "width": 10, "height": 10 } ], "font": "Arial;13;0", - "containerChangeable": true, - "left": 4080, - "top": 1520, - "width": 110.419921875, - "height": 45, - "nameCompartment": { - "$ref": "AAAAAAGL+9PoNdQJC5U=" + "head": { + "$ref": "AAAAAAGL+82j3FEcyoc=" }, - "attributeCompartment": { - "$ref": "AAAAAAGL+9PoNdQOmYg=" + "tail": { + "$ref": "AAAAAAGL8e9J0ldJrjo=" }, - "operationCompartment": { - "$ref": "AAAAAAGL+9PoNdQPg/M=" + "lineStyle": 1, + "points": "4088:997;3968:1287", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAGL+9YU3qwY2s8=" }, - "receptionCompartment": { - "$ref": "AAAAAAGL+9PoNdQQOeE=" + "stereotypeLabel": { + "$ref": "AAAAAAGL+9YU3qwZHX0=" }, - "templateParameterCompartment": { - "$ref": "AAAAAAGL+9PoNdQRN8A=" + "propertyLabel": { + "$ref": "AAAAAAGL+9YU3qwaaAc=" + }, + "showEndOrder": "hide", + "tailRoleNameLabel": { + "$ref": "AAAAAAGL+9YU3qwbL8I=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAGL+9YU3qwcWnI=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAGL+9YU3qwd9bg=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAGL+9YU3qwe/3E=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAGL+9YU3qwfUbg=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAGL+9YU3qwgFmc=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAGL+9YU3qwhe/Y=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAGL+9YU3qwiTuU=" } }, { - "_type": "UMLGeneralizationView", - "_id": "AAAAAAGL+9RSGxB+nHc=", + "_type": "UMLAssociationView", + "_id": "AAAAAAGL+9lB22JQZ5E=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL+9RSGRB8+vM=" + "$ref": "AAAAAAGL+9lB2GJMfIE=" }, "subViews": [ { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9RSGxB/KpY=", + "_id": "AAAAAAGL+9lB22JRtlE=", "_parent": { - "$ref": "AAAAAAGL+9RSGxB+nHc=" + "$ref": "AAAAAAGL+9lB22JQZ5E=" }, "model": { - "$ref": "AAAAAAGL+9RSGRB8+vM=" + "$ref": "AAAAAAGL+9lB2GJMfIE=" }, "visible": false, "font": "Arial;13;0", - "left": 3816, - "top": 1456, + "left": 3666, + "top": 1082, "height": 13, "alpha": 1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL+9RSGxB+nHc=" + "$ref": "AAAAAAGL+9lB22JQZ5E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9lB22JSZXA=", + "_parent": { + "$ref": "AAAAAAGL+9lB22JQZ5E=" + }, + "model": { + "$ref": "AAAAAAGL+9lB2GJMfIE=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 3678, + "top": 1073, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL+9lB22JQZ5E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9lB22JT9HQ=", + "_parent": { + "$ref": "AAAAAAGL+9lB22JQZ5E=" + }, + "model": { + "$ref": "AAAAAAGL+9lB2GJMfIE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3643, + "top": 1101, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGL+9lB22JQZ5E=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9RSGxCAPdg=", + "_id": "AAAAAAGL+9lB22JUfvg=", + "_parent": { + "$ref": "AAAAAAGL+9lB22JQZ5E=" + }, + "model": { + "$ref": "AAAAAAGL+9lB2WJNfVI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3630, + "top": 1034, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL+9lB22JQZ5E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9lB22JV6mA=", + "_parent": { + "$ref": "AAAAAAGL+9lB22JQZ5E=" + }, + "model": { + "$ref": "AAAAAAGL+9lB2WJNfVI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3642, + "top": 1028, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAGL+9lB22JQZ5E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9lB22JWWlA=", + "_parent": { + "$ref": "AAAAAAGL+9lB22JQZ5E=" + }, + "model": { + "$ref": "AAAAAAGL+9lB2WJNfVI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3606, + "top": 1047, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAGL+9lB22JQZ5E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9lB22JX5gk=", "_parent": { - "$ref": "AAAAAAGL+9RSGxB+nHc=" + "$ref": "AAAAAAGL+9lB22JQZ5E=" }, "model": { - "$ref": "AAAAAAGL+9RSGRB8+vM=" + "$ref": "AAAAAAGL+9lB2WJO1RQ=" }, - "visible": null, + "visible": false, "font": "Arial;13;0", - "left": 3805, - "top": 1445, + "left": 3704, + "top": 1131, "height": 13, - "alpha": 1.5707963267948966, + "alpha": -0.5235987755982988, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL+9RSGxB+nHc=" - }, - "edgePosition": 1 + "$ref": "AAAAAAGL+9lB22JQZ5E=" + } }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9RSGxCBVsg=", + "_id": "AAAAAAGL+9lB22JYWWM=", "_parent": { - "$ref": "AAAAAAGL+9RSGxB+nHc=" + "$ref": "AAAAAAGL+9lB22JQZ5E=" }, "model": { - "$ref": "AAAAAAGL+9RSGRB8+vM=" + "$ref": "AAAAAAGL+9lB2WJO1RQ=" }, "visible": false, "font": "Arial;13;0", - "left": 3837, - "top": 1477, + "left": 3713, + "top": 1121, "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, + "alpha": -0.7853981633974483, + "distance": 40, "hostEdge": { - "$ref": "AAAAAAGL+9RSGxB+nHc=" - }, - "edgePosition": 1 - } - ], - "font": "Arial;13;0", - "head": { - "$ref": "AAAAAAGL+82j3FEcyoc=" - }, - "tail": { - "$ref": "AAAAAAGL+9O3Fr8A9kM=" - }, - "lineStyle": 1, - "points": "3791:1511;3864:1436", - "showVisibility": true, - "nameLabel": { - "$ref": "AAAAAAGL+9RSGxB/KpY=" - }, - "stereotypeLabel": { - "$ref": "AAAAAAGL+9RSGxCAPdg=" - }, - "propertyLabel": { - "$ref": "AAAAAAGL+9RSGxCBVsg=" - } - }, - { - "_type": "UMLGeneralizationView", - "_id": "AAAAAAGL+9RdJRsYynw=", - "_parent": { - "$ref": "AAAAAAFF+qBtyKM79qY=" - }, - "model": { - "$ref": "AAAAAAGL+9RdJBsWH7s=" - }, - "subViews": [ + "$ref": "AAAAAAGL+9lB22JQZ5E=" + } + }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9RdJRsZl4s=", + "_id": "AAAAAAGL+9lB22JZ4j0=", "_parent": { - "$ref": "AAAAAAGL+9RdJRsYynw=" + "$ref": "AAAAAAGL+9lB22JQZ5E=" }, "model": { - "$ref": "AAAAAAGL+9RdJBsWH7s=" + "$ref": "AAAAAAGL+9lB2WJO1RQ=" }, "visible": false, "font": "Arial;13;0", - "left": 4053, - "top": 1482, + "left": 3684, + "top": 1151, "height": 13, - "alpha": 1.5707963267948966, - "distance": 15, + "alpha": 0.5235987755982988, + "distance": 25, "hostEdge": { - "$ref": "AAAAAAGL+9RdJRsYynw=" - }, - "edgePosition": 1 + "$ref": "AAAAAAGL+9lB22JQZ5E=" + } }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9RdJhsaMvs=", + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGL+9lB22JagX4=", "_parent": { - "$ref": "AAAAAAGL+9RdJRsYynw=" + "$ref": "AAAAAAGL+9lB22JQZ5E=" }, "model": { - "$ref": "AAAAAAGL+9RdJBsWH7s=" + "$ref": "AAAAAAGL+9lB2WJNfVI=" }, - "visible": null, + "visible": false, "font": "Arial;13;0", - "left": 4043, - "top": 1493, - "height": 13, - "alpha": 1.5707963267948966, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL+9RdJRsYynw=" - }, - "edgePosition": 1 + "width": 10, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9RdJhsbpBU=", + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGL+9lB3GJbP0E=", "_parent": { - "$ref": "AAAAAAGL+9RdJRsYynw=" + "$ref": "AAAAAAGL+9lB22JQZ5E=" }, "model": { - "$ref": "AAAAAAGL+9RdJBsWH7s=" + "$ref": "AAAAAAGL+9lB2WJO1RQ=" }, "visible": false, "font": "Arial;13;0", - "left": 4074, - "top": 1459, - "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, - "hostEdge": { - "$ref": "AAAAAAGL+9RdJRsYynw=" - }, - "edgePosition": 1 + "width": 10, + "height": 10 } ], "font": "Arial;13;0", "head": { - "$ref": "AAAAAAGL+82j3FEcyoc=" + "$ref": "AAAAAAGL8fAHTpcfcxQ=" }, "tail": { - "$ref": "AAAAAAGL+9PoNNQIuXw=" + "$ref": "AAAAAAGL3EC6Nug8Ro0=" }, "lineStyle": 1, - "points": "4109:1519;4019:1436", + "points": "3603:1029;3708:1167", "showVisibility": true, "nameLabel": { - "$ref": "AAAAAAGL+9RdJRsZl4s=" + "$ref": "AAAAAAGL+9lB22JRtlE=" }, "stereotypeLabel": { - "$ref": "AAAAAAGL+9RdJhsaMvs=" + "$ref": "AAAAAAGL+9lB22JSZXA=" }, "propertyLabel": { - "$ref": "AAAAAAGL+9RdJhsbpBU=" + "$ref": "AAAAAAGL+9lB22JT9HQ=" + }, + "showEndOrder": "hide", + "tailRoleNameLabel": { + "$ref": "AAAAAAGL+9lB22JUfvg=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAGL+9lB22JV6mA=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAGL+9lB22JWWlA=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAGL+9lB22JX5gk=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAGL+9lB22JYWWM=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAGL+9lB22JZ4j0=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAGL+9lB22JagX4=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAGL+9lB3GJbP0E=" } }, { - "_type": "UMLGeneralizationView", - "_id": "AAAAAAGL+9Ru2jbFEaA=", + "_type": "UMLAssociationView", + "_id": "AAAAAAGL+9lQ0XokzqM=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL+9Ru2TbDJ+A=" + "$ref": "AAAAAAGL+9lQz3og1pg=" }, "subViews": [ { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9Ru2zbGfmg=", + "_id": "AAAAAAGL+9lQ0XolXG4=", "_parent": { - "$ref": "AAAAAAGL+9Ru2jbFEaA=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, "model": { - "$ref": "AAAAAAGL+9Ru2TbDJ+A=" + "$ref": "AAAAAAGL+9lQz3og1pg=" }, "visible": false, "font": "Arial;13;0", - "left": 4061, - "top": 1666, + "left": 3916, + "top": 1073, "height": 13, "alpha": 1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL+9Ru2jbFEaA=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9Ru2zbHIig=", + "_id": "AAAAAAGL+9lQ0Xomv/A=", "_parent": { - "$ref": "AAAAAAGL+9Ru2jbFEaA=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, "model": { - "$ref": "AAAAAAGL+9Ru2TbDJ+A=" + "$ref": "AAAAAAGL+9lQz3og1pg=" }, "visible": null, "font": "Arial;13;0", - "left": 4047, - "top": 1660, - "height": 13, - "alpha": 1.5707963267948966, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL+9Ru2jbFEaA=" - }, - "edgePosition": 1 - }, - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9Ru2zbIGgw=", - "_parent": { - "$ref": "AAAAAAGL+9Ru2jbFEaA=" - }, - "model": { - "$ref": "AAAAAAGL+9Ru2TbDJ+A=" - }, - "visible": false, - "font": "Arial;13;0", - "left": 4088, - "top": 1677, - "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, - "hostEdge": { - "$ref": "AAAAAAGL+9Ru2jbFEaA=" - }, - "edgePosition": 1 - } - ], - "font": "Arial;13;0", - "head": { - "$ref": "AAAAAAGL+9PoNNQIuXw=" - }, - "tail": { - "$ref": "AAAAAAGL8e8PL0VmSkQ=" - }, - "lineStyle": 1, - "points": "4027:1791;4124:1565", - "showVisibility": true, - "nameLabel": { - "$ref": "AAAAAAGL+9Ru2zbGfmg=" - }, - "stereotypeLabel": { - "$ref": "AAAAAAGL+9Ru2zbHIig=" - }, - "propertyLabel": { - "$ref": "AAAAAAGL+9Ru2zbIGgw=" - } - }, - { - "_type": "UMLGeneralizationView", - "_id": "AAAAAAGL+9Se8smboVw=", - "_parent": { - "$ref": "AAAAAAFF+qBtyKM79qY=" - }, - "model": { - "$ref": "AAAAAAGL+9Se8MmZLdo=" - }, - "subViews": [ + "left": 3920, + "top": 1059, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL+9lQ0XokzqM=" + }, + "edgePosition": 1 + }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9Se8smclxw=", + "_id": "AAAAAAGL+9lQ0XoniIU=", "_parent": { - "$ref": "AAAAAAGL+9Se8smboVw=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, "model": { - "$ref": "AAAAAAGL+9Se8MmZLdo=" + "$ref": "AAAAAAGL+9lQz3og1pg=" }, "visible": false, "font": "Arial;13;0", - "left": 3357, - "top": 1895, + "left": 3909, + "top": 1102, "height": 13, - "alpha": 1.5707963267948966, + "alpha": -1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL+9Se8smboVw=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9Se8smdmXM=", + "_id": "AAAAAAGL+9lQ0XoorW0=", "_parent": { - "$ref": "AAAAAAGL+9Se8smboVw=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, "model": { - "$ref": "AAAAAAGL+9Se8MmZLdo=" + "$ref": "AAAAAAGL+9lQz3ohaCY=" }, - "visible": null, + "visible": false, "font": "Arial;13;0", - "left": 3347, - "top": 1884, + "left": 3640, + "top": 999, "height": 13, - "alpha": 1.5707963267948966, + "alpha": 0.5235987755982988, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL+9Se8smboVw=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, - "edgePosition": 1 + "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9Se8smeaGk=", + "_id": "AAAAAAGL+9lQ0Xop+7o=", "_parent": { - "$ref": "AAAAAAGL+9Se8smboVw=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, "model": { - "$ref": "AAAAAAGL+9Se8MmZLdo=" + "$ref": "AAAAAAGL+9lQz3ohaCY=" }, "visible": false, "font": "Arial;13;0", - "left": 3378, - "top": 1916, + "left": 3646, + "top": 987, "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, + "alpha": 0.7853981633974483, + "distance": 40, "hostEdge": { - "$ref": "AAAAAAGL+9Se8smboVw=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, - "edgePosition": 1 - } - ], - "font": "Arial;13;0", - "head": { - "$ref": "AAAAAAGL+9O3Fr8A9kM=" - }, - "tail": { - "$ref": "AAAAAAGL8kwWNOvs/ko=" - }, - "lineStyle": 1, - "points": "3266:2735;3368:1912;3745:1557", - "showVisibility": true, - "nameLabel": { - "$ref": "AAAAAAGL+9Se8smclxw=" - }, - "stereotypeLabel": { - "$ref": "AAAAAAGL+9Se8smdmXM=" - }, - "propertyLabel": { - "$ref": "AAAAAAGL+9Se8smeaGk=" - } - }, - { - "_type": "UMLDependencyView", - "_id": "AAAAAAGL+9V6x0TV/+Y=", - "_parent": { - "$ref": "AAAAAAFF+qBtyKM79qY=" - }, - "model": { - "$ref": "AAAAAAGL+9V6xkTTcHA=" - }, - "subViews": [ + "edgePosition": 2 + }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9V6yETWAtw=", + "_id": "AAAAAAGL+9lQ0noqobQ=", "_parent": { - "$ref": "AAAAAAGL+9V6x0TV/+Y=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, "model": { - "$ref": "AAAAAAGL+9V6xkTTcHA=" + "$ref": "AAAAAAGL+9lQz3ohaCY=" }, "visible": false, "font": "Arial;13;0", - "left": 3526, - "top": 1588, + "left": 3629, + "top": 1024, "height": 13, - "alpha": 1.5707963267948966, - "distance": 15, + "alpha": -0.5235987755982988, + "distance": 25, "hostEdge": { - "$ref": "AAAAAAGL+9V6x0TV/+Y=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, - "edgePosition": 1 + "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9V6yETXVbY=", + "_id": "AAAAAAGL+9lQ0norYrs=", "_parent": { - "$ref": "AAAAAAGL+9V6x0TV/+Y=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, "model": { - "$ref": "AAAAAAGL+9V6xkTTcHA=" + "$ref": "AAAAAAGL+9lQz3oiCYc=" }, - "visible": null, + "visible": false, "font": "Arial;13;0", - "left": 3532, - "top": 1574, + "left": 4193, + "top": 1148, "height": 13, - "alpha": 1.5707963267948966, + "alpha": -0.5235987755982988, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL+9V6x0TV/+Y=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL+9lQ0nosRNA=", + "_parent": { + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, - "edgePosition": 1 + "model": { + "$ref": "AAAAAAGL+9lQz3oiCYc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 4195, + "top": 1135, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAGL+9lQ0XokzqM=" + } }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9V6yETYeeg=", + "_id": "AAAAAAGL+9lQ0notl+k=", "_parent": { - "$ref": "AAAAAAGL+9V6x0TV/+Y=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, "model": { - "$ref": "AAAAAAGL+9V6xkTTcHA=" + "$ref": "AAAAAAGL+9lQz3oiCYc=" }, "visible": false, "font": "Arial;13;0", - "left": 3513, - "top": 1615, + "left": 4190, + "top": 1176, "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, + "alpha": 0.5235987755982988, + "distance": 25, "hostEdge": { - "$ref": "AAAAAAGL+9V6x0TV/+Y=" + "$ref": "AAAAAAGL+9lQ0XokzqM=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGL+9lQ0nou4Os=", + "_parent": { + "$ref": "AAAAAAGL+9lQ0XokzqM=" }, - "edgePosition": 1 + "model": { + "$ref": "AAAAAAGL+9lQz3ohaCY=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGL+9lQ0nov3ao=", + "_parent": { + "$ref": "AAAAAAGL+9lQ0XokzqM=" + }, + "model": { + "$ref": "AAAAAAGL+9lQz3oiCYc=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 } ], "font": "Arial;13;0", "head": { - "$ref": "AAAAAAGL8e8PL0VmSkQ=" + "$ref": "AAAAAAGL3EA5py45w5E=" }, "tail": { "$ref": "AAAAAAGL3EC6Nug8Ro0=" }, "lineStyle": 1, - "points": "3583:1029;3520:1608;3959:1803", + "points": "3612:1013;4215:1176", "showVisibility": true, "nameLabel": { - "$ref": "AAAAAAGL+9V6yETWAtw=" + "$ref": "AAAAAAGL+9lQ0XolXG4=" }, "stereotypeLabel": { - "$ref": "AAAAAAGL+9V6yETXVbY=" + "$ref": "AAAAAAGL+9lQ0Xomv/A=" }, "propertyLabel": { - "$ref": "AAAAAAGL+9V6yETYeeg=" + "$ref": "AAAAAAGL+9lQ0XoniIU=" + }, + "showEndOrder": "hide", + "tailRoleNameLabel": { + "$ref": "AAAAAAGL+9lQ0XoorW0=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAGL+9lQ0Xop+7o=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAGL+9lQ0noqobQ=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAGL+9lQ0norYrs=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAGL+9lQ0nosRNA=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAGL+9lQ0notl+k=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAGL+9lQ0nou4Os=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAGL+9lQ0nov3ao=" } }, { "_type": "UMLAssociationView", - "_id": "AAAAAAGL+9YU3awXKn8=", + "_id": "AAAAAAGL++Z1Ierpd8M=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL+9YU26wTNo0=" + "$ref": "AAAAAAGL++Z1IOrl2bA=" }, "subViews": [ { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9YU3qwY2s8=", + "_id": "AAAAAAGL++Z1Iurq+hE=", "_parent": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "model": { - "$ref": "AAAAAAGL+9YU26wTNo0=" + "$ref": "AAAAAAGL++Z1IOrl2bA=" }, - "visible": false, "font": "Arial;13;0", - "left": 4041, - "top": 1141, + "left": 3351, + "top": 2848, + "width": 121.03076171875, "height": 13, - "alpha": 1.5707963267948966, - "distance": 15, + "alpha": 0.6921845475682045, + "distance": 98.95453501482385, "hostEdge": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, - "edgePosition": 1 + "edgePosition": 1, + "text": "-entrainementList" }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9YU3qwZHX0=", + "_id": "AAAAAAGL++Z1Iurrux4=", "_parent": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "model": { - "$ref": "AAAAAAGL+9YU26wTNo0=" + "$ref": "AAAAAAGL++Z1IOrl2bA=" }, "visible": null, "font": "Arial;13;0", - "left": 4055, - "top": 1147, + "left": 3340, + "top": 2806, "height": 13, "alpha": 1.5707963267948966, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9YU3qwaaAc=", + "_id": "AAAAAAGL++Z1IursKqY=", "_parent": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "model": { - "$ref": "AAAAAAGL+9YU26wTNo0=" + "$ref": "AAAAAAGL++Z1IOrl2bA=" }, "visible": false, "font": "Arial;13;0", - "left": 4014, - "top": 1130, + "left": 3303, + "top": 2832, "height": 13, "alpha": -1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9YU3qwbL8I=", + "_id": "AAAAAAGL++Z1IurtNUc=", "_parent": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "model": { - "$ref": "AAAAAAGL+9YU26wUZOY=" + "$ref": "AAAAAAGL++Z1IOrmj24=" }, "visible": false, "font": "Arial;13;0", - "left": 4091, - "top": 1020, + "left": 3307, + "top": 2787, "height": 13, "alpha": 0.5235987755982988, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9YU3qwcWnI=", + "_id": "AAAAAAGL++Z1IuruW3k=", "_parent": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "model": { - "$ref": "AAAAAAGL+9YU26wUZOY=" + "$ref": "AAAAAAGL++Z1IOrmj24=" }, "visible": false, "font": "Arial;13;0", - "left": 4103, - "top": 1027, + "left": 3319, + "top": 2781, "height": 13, "alpha": 0.7853981633974483, "distance": 40, "hostEdge": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9YU3qwd9bg=", + "_id": "AAAAAAGL++Z1Iurv9ho=", "_parent": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "model": { - "$ref": "AAAAAAGL+9YU26wUZOY=" + "$ref": "AAAAAAGL++Z1IOrmj24=" }, "visible": false, "font": "Arial;13;0", - "left": 4068, - "top": 1006, + "left": 3282, + "top": 2799, "height": 13, "alpha": -0.5235987755982988, "distance": 25, "hostEdge": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9YU3qwe/3E=", + "_id": "AAAAAAGL++Z1Iurw9sk=", "_parent": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "model": { - "$ref": "AAAAAAGL+9YU26wVXhc=" + "$ref": "AAAAAAGL++Z1IOrnew4=" }, "visible": false, "font": "Arial;13;0", - "left": 3991, - "top": 1262, + "left": 3348, + "top": 2843, "height": 13, "alpha": -0.5235987755982988, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" } }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9YU3qwfUbg=", + "_id": "AAAAAAGL++Z1Iurx+J8=", "_parent": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "model": { - "$ref": "AAAAAAGL+9YU26wVXhc=" + "$ref": "AAAAAAGL++Z1IOrnew4=" }, "visible": false, "font": "Arial;13;0", - "left": 4004, - "top": 1265, + "left": 3358, + "top": 2833, "height": 13, "alpha": -0.7853981633974483, "distance": 40, "hostEdge": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" } }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9YU3qwgFmc=", + "_id": "AAAAAAGL++Z1IuryFxs=", "_parent": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "model": { - "$ref": "AAAAAAGL+9YU26wVXhc=" + "$ref": "AAAAAAGL++Z1IOrnew4=" }, "visible": false, "font": "Arial;13;0", - "left": 3964, - "top": 1256, + "left": 3329, + "top": 2862, "height": 13, "alpha": 0.5235987755982988, "distance": 25, "hostEdge": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" } }, { "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL+9YU3qwhe/Y=", + "_id": "AAAAAAGL++Z1Iurz82s=", "_parent": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "model": { - "$ref": "AAAAAAGL+9YU26wUZOY=" + "$ref": "AAAAAAGL++Z1IOrmj24=" }, "visible": false, "font": "Arial;13;0", @@ -10368,12 +10188,12 @@ }, { "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL+9YU3qwiTuU=", + "_id": "AAAAAAGL++Z1Iur0tvc=", "_parent": { - "$ref": "AAAAAAGL+9YU3awXKn8=" + "$ref": "AAAAAAGL++Z1Ierpd8M=" }, "model": { - "$ref": "AAAAAAGL+9YU26wVXhc=" + "$ref": "AAAAAAGL++Z1IOrnew4=" }, "visible": false, "font": "Arial;13;0", @@ -10383,441 +10203,874 @@ ], "font": "Arial;13;0", "head": { - "$ref": "AAAAAAGL+82j3FEcyoc=" + "$ref": "AAAAAAGL3DMzZkmwpP8=" }, "tail": { - "$ref": "AAAAAAGL8e9J0ldJrjo=" + "$ref": "AAAAAAGL8kwWNOvs/ko=" }, "lineStyle": 1, - "points": "4088:997;3968:1287", + "points": "3280:2781;3352:2879", "showVisibility": true, "nameLabel": { - "$ref": "AAAAAAGL+9YU3qwY2s8=" + "$ref": "AAAAAAGL++Z1Iurq+hE=" }, "stereotypeLabel": { - "$ref": "AAAAAAGL+9YU3qwZHX0=" + "$ref": "AAAAAAGL++Z1Iurrux4=" }, "propertyLabel": { - "$ref": "AAAAAAGL+9YU3qwaaAc=" + "$ref": "AAAAAAGL++Z1IursKqY=" }, "showEndOrder": "hide", "tailRoleNameLabel": { - "$ref": "AAAAAAGL+9YU3qwbL8I=" + "$ref": "AAAAAAGL++Z1IurtNUc=" }, "tailPropertyLabel": { - "$ref": "AAAAAAGL+9YU3qwcWnI=" + "$ref": "AAAAAAGL++Z1IuruW3k=" }, "tailMultiplicityLabel": { - "$ref": "AAAAAAGL+9YU3qwd9bg=" + "$ref": "AAAAAAGL++Z1Iurv9ho=" }, "headRoleNameLabel": { - "$ref": "AAAAAAGL+9YU3qwe/3E=" + "$ref": "AAAAAAGL++Z1Iurw9sk=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAGL++Z1Iurx+J8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAGL++Z1IuryFxs=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAGL++Z1Iurz82s=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAGL++Z1Iur0tvc=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAGL++aCHApuNNY=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAGL++aCGgpsPN4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAGL++aCHApv9g0=", + "_parent": { + "$ref": "AAAAAAGL++aCHApuNNY=" + }, + "model": { + "$ref": "AAAAAAGL++aCGgpsPN4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAGL++aCHApwYGY=", + "_parent": { + "$ref": "AAAAAAGL++aCHApv9g0=" + }, + "visible": false, + "font": "Arial;13;0", + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL++aCHApxh8E=", + "_parent": { + "$ref": "AAAAAAGL++aCHApv9g0=" + }, + "font": "Arial;13;1", + "left": 3397, + "top": 3215, + "width": 124.95361328125, + "height": 13, + "text": "EntrainementSportif" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL++aCHApytmc=", + "_parent": { + "$ref": "AAAAAAGL++aCHApv9g0=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGL++aCHApzgMU=", + "_parent": { + "$ref": "AAAAAAGL++aCHApv9g0=" + }, + "visible": false, + "font": "Arial;13;0", + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 3392, + "top": 3208, + "width": 134.95361328125, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAGL++aCHApwYGY=" + }, + "nameLabel": { + "$ref": "AAAAAAGL++aCHApxh8E=" + }, + "namespaceLabel": { + "$ref": "AAAAAAGL++aCHApytmc=" + }, + "propertyLabel": { + "$ref": "AAAAAAGL++aCHApzgMU=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAGL++aCHAp0YNk=", + "_parent": { + "$ref": "AAAAAAGL++aCHApuNNY=" + }, + "model": { + "$ref": "AAAAAAGL++aCGgpsPN4=" + }, + "font": "Arial;13;0", + "left": 3392, + "top": 3233, + "width": 134.95361328125, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAGL++aCHQp1bng=", + "_parent": { + "$ref": "AAAAAAGL++aCHApuNNY=" + }, + "model": { + "$ref": "AAAAAAGL++aCGgpsPN4=" + }, + "font": "Arial;13;0", + "left": 3392, + "top": 3243, + "width": 134.95361328125, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAGL++aCHQp2hLc=", + "_parent": { + "$ref": "AAAAAAGL++aCHApuNNY=" + }, + "model": { + "$ref": "AAAAAAGL++aCGgpsPN4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAGL++aCHQp3KP0=", + "_parent": { + "$ref": "AAAAAAGL++aCHApuNNY=" + }, + "model": { + "$ref": "AAAAAAGL++aCGgpsPN4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 3392, + "top": 3208, + "width": 134.95361328125, + "height": 45, + "nameCompartment": { + "$ref": "AAAAAAGL++aCHApv9g0=" }, - "headPropertyLabel": { - "$ref": "AAAAAAGL+9YU3qwfUbg=" + "attributeCompartment": { + "$ref": "AAAAAAGL++aCHAp0YNk=" }, - "headMultiplicityLabel": { - "$ref": "AAAAAAGL+9YU3qwgFmc=" + "operationCompartment": { + "$ref": "AAAAAAGL++aCHQp1bng=" }, - "tailQualifiersCompartment": { - "$ref": "AAAAAAGL+9YU3qwhe/Y=" + "receptionCompartment": { + "$ref": "AAAAAAGL++aCHQp2hLc=" }, - "headQualifiersCompartment": { - "$ref": "AAAAAAGL+9YU3qwiTuU=" + "templateParameterCompartment": { + "$ref": "AAAAAAGL++aCHQp3KP0=" } }, { "_type": "UMLGeneralizationView", - "_id": "AAAAAAGL+9c7ChuxKjA=", + "_id": "AAAAAAGL++arOhiEW1s=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL+9c7CRuveJk=" + "$ref": "AAAAAAGL++arORiCGus=" }, "subViews": [ { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9c7CxuyNsg=", + "_id": "AAAAAAGL++arOxiFTMI=", "_parent": { - "$ref": "AAAAAAGL+9c7ChuxKjA=" + "$ref": "AAAAAAGL++arOhiEW1s=" }, "model": { - "$ref": "AAAAAAGL+9c7CRuveJk=" + "$ref": "AAAAAAGL++arORiCGus=" }, "visible": false, "font": "Arial;13;0", - "left": 3663, - "top": 1030, + "left": 3437, + "top": 3154, "height": 13, "alpha": 1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL+9c7ChuxKjA=" + "$ref": "AAAAAAGL++arOhiEW1s=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9c7CxuzIOI=", + "_id": "AAAAAAGL++arOxiGkAc=", "_parent": { - "$ref": "AAAAAAGL+9c7ChuxKjA=" + "$ref": "AAAAAAGL++arOhiEW1s=" }, "model": { - "$ref": "AAAAAAGL+9c7CRuveJk=" + "$ref": "AAAAAAGL++arORiCGus=" }, "visible": null, "font": "Arial;13;0", - "left": 3649, - "top": 1034, + "left": 3422, + "top": 3155, "height": 13, "alpha": 1.5707963267948966, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL+9c7ChuxKjA=" + "$ref": "AAAAAAGL++arOhiEW1s=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9c7Cxu07Tw=", + "_id": "AAAAAAGL++arOxiHKFc=", "_parent": { - "$ref": "AAAAAAGL+9c7ChuxKjA=" + "$ref": "AAAAAAGL++arOhiEW1s=" }, "model": { - "$ref": "AAAAAAGL+9c7CRuveJk=" + "$ref": "AAAAAAGL++arORiCGus=" }, "visible": false, "font": "Arial;13;0", - "left": 3692, - "top": 1021, + "left": 3466, + "top": 3153, "height": 13, "alpha": -1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL+9c7ChuxKjA=" + "$ref": "AAAAAAGL++arOhiEW1s=" }, "edgePosition": 1 } ], "font": "Arial;13;0", "head": { - "$ref": "AAAAAAGL3EC6NugywOI=" + "$ref": "AAAAAAGL3DMzZkmwpP8=" }, "tail": { - "$ref": "AAAAAAGL8fAHTpcfcxQ=" + "$ref": "AAAAAAGL++aCHApuNNY=" }, "lineStyle": 1, - "points": "3718:1167;3639:897", + "points": "3456:3207;3449:3114", "showVisibility": true, "nameLabel": { - "$ref": "AAAAAAGL+9c7CxuyNsg=" + "$ref": "AAAAAAGL++arOxiFTMI=" }, "stereotypeLabel": { - "$ref": "AAAAAAGL+9c7CxuzIOI=" + "$ref": "AAAAAAGL++arOxiGkAc=" }, "propertyLabel": { - "$ref": "AAAAAAGL+9c7Cxu07Tw=" + "$ref": "AAAAAAGL++arOxiHKFc=" } }, { - "_type": "UMLGeneralizationView", - "_id": "AAAAAAGL+9dNnzZHWUI=", + "_type": "UMLAssociationView", + "_id": "AAAAAAGL++iBH/dTm1o=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL+9dNnjZFrD0=" + "$ref": "AAAAAAGL++iBHvdP07A=" }, "subViews": [ { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9dNnzZIwkY=", + "_id": "AAAAAAGL++iBH/dUZHc=", "_parent": { - "$ref": "AAAAAAGL+9dNnzZHWUI=" + "$ref": "AAAAAAGL++iBH/dTm1o=" }, "model": { - "$ref": "AAAAAAGL+9dNnjZFrD0=" + "$ref": "AAAAAAGL++iBHvdP07A=" }, - "visible": false, "font": "Arial;13;0", - "left": 3741, - "top": 996, + "left": 3352, + "top": 2440, + "width": 145.60888671875, + "height": 13, + "alpha": 3.678431948894711, + "distance": 42, + "hostEdge": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + }, + "edgePosition": 1, + "text": "#entrainementRepository" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL++iBIPdVuVs=", + "_parent": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + }, + "model": { + "$ref": "AAAAAAGL++iBHvdP07A=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 3449, + "top": 2497, "height": 13, "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL++iBIPdW3Xk=", + "_parent": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + }, + "model": { + "$ref": "AAAAAAGL++iBHvdP07A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3411, + "top": 2474, + "height": 13, + "alpha": -1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL+9dNnzZHWUI=" + "$ref": "AAAAAAGL++iBH/dTm1o=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9dNnzZJ6O8=", + "_id": "AAAAAAGL++iBIPdXmHU=", "_parent": { - "$ref": "AAAAAAGL+9dNnzZHWUI=" + "$ref": "AAAAAAGL++iBH/dTm1o=" }, "model": { - "$ref": "AAAAAAGL+9dNnjZFrD0=" + "$ref": "AAAAAAGL++iBHvdQzLE=" }, - "visible": null, + "visible": false, "font": "Arial;13;0", - "left": 3730, - "top": 1006, + "left": 3911, + "top": 2415, "height": 13, - "alpha": 1.5707963267948966, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL++iBIPdY5+E=", + "_parent": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + }, + "model": { + "$ref": "AAAAAAGL++iBHvdQzLE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3911, + "top": 2428, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL++iBIPdZNqU=", + "_parent": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + }, + "model": { + "$ref": "AAAAAAGL++iBHvdQzLE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3911, + "top": 2387, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL++iBIPdaKH4=", + "_parent": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + }, + "model": { + "$ref": "AAAAAAGL++iBHvdR3xE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3303, + "top": 2714, + "height": 13, + "alpha": -0.5235987755982988, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL+9dNnzZHWUI=" + "$ref": "AAAAAAGL++iBH/dTm1o=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL++iBIPdblc8=", + "_parent": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + }, + "model": { + "$ref": "AAAAAAGL++iBHvdR3xE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3315, + "top": 2719, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGL++iBIPdcVS0=", + "_parent": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + }, + "model": { + "$ref": "AAAAAAGL++iBHvdR3xE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3277, + "top": 2704, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGL++iBIPddals=", + "_parent": { + "$ref": "AAAAAAGL++iBH/dTm1o=" + }, + "model": { + "$ref": "AAAAAAGL++iBHvdQzLE=" }, - "edgePosition": 1 + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9dNnzZKfwI=", + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGL++iBIPdem5g=", "_parent": { - "$ref": "AAAAAAGL+9dNnzZHWUI=" + "$ref": "AAAAAAGL++iBH/dTm1o=" }, "model": { - "$ref": "AAAAAAGL+9dNnjZFrD0=" + "$ref": "AAAAAAGL++iBHvdR3xE=" }, "visible": false, "font": "Arial;13;0", - "left": 3762, - "top": 975, - "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, - "hostEdge": { - "$ref": "AAAAAAGL+9dNnzZHWUI=" - }, - "edgePosition": 1 + "width": 10, + "height": 10 } ], "font": "Arial;13;0", "head": { - "$ref": "AAAAAAGL3EC6NugywOI=" + "$ref": "AAAAAAGL8kwWNOvs/ko=" }, "tail": { - "$ref": "AAAAAAGL3EA5py45w5E=" + "$ref": "AAAAAAGL3BqoCyTo5V4=" }, "lineStyle": 1, - "points": "4215:1170;3752:992;3659:897", + "points": "3935:2402;3424:2488;3277:2735", "showVisibility": true, "nameLabel": { - "$ref": "AAAAAAGL+9dNnzZIwkY=" + "$ref": "AAAAAAGL++iBH/dUZHc=" }, "stereotypeLabel": { - "$ref": "AAAAAAGL+9dNnzZJ6O8=" + "$ref": "AAAAAAGL++iBIPdVuVs=" }, "propertyLabel": { - "$ref": "AAAAAAGL+9dNnzZKfwI=" + "$ref": "AAAAAAGL++iBIPdW3Xk=" + }, + "showEndOrder": "hide", + "tailRoleNameLabel": { + "$ref": "AAAAAAGL++iBIPdXmHU=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAGL++iBIPdY5+E=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAGL++iBIPdZNqU=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAGL++iBIPdaKH4=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAGL++iBIPdblc8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAGL++iBIPdcVS0=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAGL++iBIPddals=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAGL++iBIPdem5g=" } }, { - "_type": "UMLAssociationView", - "_id": "AAAAAAGL+9lB22JQZ5E=", + "_type": "UMLClassView", + "_id": "AAAAAAGMBpdAZwuU9Ko=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL+9lB2GJMfIE=" + "$ref": "AAAAAAGMBpdAZQuSkhA=" }, "subViews": [ { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lB22JRtlE=", + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAGMBpdAaAuVC8E=", "_parent": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "$ref": "AAAAAAGMBpdAZwuU9Ko=" }, "model": { - "$ref": "AAAAAAGL+9lB2GJMfIE=" + "$ref": "AAAAAAGMBpdAZQuSkhA=" }, - "visible": false, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAGMBpdAaAuWiv8=", + "_parent": { + "$ref": "AAAAAAGMBpdAaAuVC8E=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -16, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAGMBpdAaAuXB5Q=", + "_parent": { + "$ref": "AAAAAAGMBpdAaAuVC8E=" + }, + "font": "Arial;13;1", + "left": 4613, + "top": 815, + "width": 70.08447265625, + "height": 13, + "text": "IFileReader" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGMBpdAaAuY0IM=", + "_parent": { + "$ref": "AAAAAAGMBpdAaAuVC8E=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -16, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGMBpdAaAuZ2rI=", + "_parent": { + "$ref": "AAAAAAGMBpdAaAuVC8E=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -16, + "height": 13, + "horizontalAlignment": 1 + } + ], "font": "Arial;13;0", - "left": 3666, - "top": 1082, - "height": 13, - "alpha": 1.5707963267948966, - "distance": 15, - "hostEdge": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "left": 4608, + "top": 808, + "width": 80.08447265625, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAGMBpdAaAuWiv8=" }, - "edgePosition": 1 + "nameLabel": { + "$ref": "AAAAAAGMBpdAaAuXB5Q=" + }, + "namespaceLabel": { + "$ref": "AAAAAAGMBpdAaAuY0IM=" + }, + "propertyLabel": { + "$ref": "AAAAAAGMBpdAaAuZ2rI=" + } }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lB22JSZXA=", + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAGMBpdAaQuaSkI=", "_parent": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "$ref": "AAAAAAGMBpdAZwuU9Ko=" }, "model": { - "$ref": "AAAAAAGL+9lB2GJMfIE=" + "$ref": "AAAAAAGMBpdAZQuSkhA=" }, - "visible": null, "font": "Arial;13;0", - "left": 3678, - "top": 1073, - "height": 13, - "alpha": 1.5707963267948966, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" - }, - "edgePosition": 1 + "left": 4608, + "top": 833, + "width": 80.08447265625, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lB22JT9HQ=", + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAGMBpdAaQubhRA=", "_parent": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "$ref": "AAAAAAGMBpdAZwuU9Ko=" }, "model": { - "$ref": "AAAAAAGL+9lB2GJMfIE=" + "$ref": "AAAAAAGMBpdAZQuSkhA=" }, - "visible": false, "font": "Arial;13;0", - "left": 3643, - "top": 1101, - "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, - "hostEdge": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" - }, - "edgePosition": 1 + "left": 4608, + "top": 843, + "width": 80.08447265625, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lB22JUfvg=", + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAGMBpdAaQucVWQ=", "_parent": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "$ref": "AAAAAAGMBpdAZwuU9Ko=" }, "model": { - "$ref": "AAAAAAGL+9lB2WJNfVI=" + "$ref": "AAAAAAGMBpdAZQuSkhA=" }, "visible": false, "font": "Arial;13;0", - "left": 3630, - "top": 1034, - "height": 13, - "alpha": 0.5235987755982988, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" - }, - "edgePosition": 2 + "left": -8, + "width": 10, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lB22JV6mA=", + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAGMBpdAaQudKxk=", "_parent": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "$ref": "AAAAAAGMBpdAZwuU9Ko=" }, "model": { - "$ref": "AAAAAAGL+9lB2WJNfVI=" + "$ref": "AAAAAAGMBpdAZQuSkhA=" }, "visible": false, "font": "Arial;13;0", - "left": 3642, - "top": 1028, - "height": 13, - "alpha": 0.7853981633974483, - "distance": 40, - "hostEdge": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" - }, - "edgePosition": 2 - }, + "left": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 4608, + "top": 808, + "width": 80.08447265625, + "height": 45, + "nameCompartment": { + "$ref": "AAAAAAGMBpdAaAuVC8E=" + }, + "attributeCompartment": { + "$ref": "AAAAAAGMBpdAaQuaSkI=" + }, + "operationCompartment": { + "$ref": "AAAAAAGMBpdAaQubhRA=" + }, + "receptionCompartment": { + "$ref": "AAAAAAGMBpdAaQucVWQ=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAGMBpdAaQudKxk=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAGMBpd9jA67nyk=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAGMBpd9ig65uB8=" + }, + "subViews": [ { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lB22JWWlA=", + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAGMBpd9jA68eic=", "_parent": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "$ref": "AAAAAAGMBpd9jA67nyk=" }, "model": { - "$ref": "AAAAAAGL+9lB2WJNfVI=" + "$ref": "AAAAAAGMBpd9ig65uB8=" }, - "visible": false, - "font": "Arial;13;0", - "left": 3606, - "top": 1047, - "height": 13, - "alpha": -0.5235987755982988, - "distance": 25, - "hostEdge": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAGMBpd9jA69DEg=", + "_parent": { + "$ref": "AAAAAAGMBpd9jA68eic=" + }, + "visible": false, + "font": "Arial;13;0", + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAGMBpd9jA6++N4=", + "_parent": { + "$ref": "AAAAAAGMBpd9jA68eic=" + }, + "font": "Arial;13;1", + "left": 4573, + "top": 1175, + "width": 75.1181640625, + "height": 13, + "text": "AthlketeMgr" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGMBpd9jA6/8qY=", + "_parent": { + "$ref": "AAAAAAGMBpd9jA68eic=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGMBpd9jA7AJO0=", + "_parent": { + "$ref": "AAAAAAGMBpd9jA68eic=" + }, + "visible": false, + "font": "Arial;13;0", + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 4568, + "top": 1168, + "width": 85.1181640625, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAGMBpd9jA69DEg=" }, - "edgePosition": 2 - }, - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lB22JX5gk=", - "_parent": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "nameLabel": { + "$ref": "AAAAAAGMBpd9jA6++N4=" }, - "model": { - "$ref": "AAAAAAGL+9lB2WJO1RQ=" + "namespaceLabel": { + "$ref": "AAAAAAGMBpd9jA6/8qY=" }, - "visible": false, - "font": "Arial;13;0", - "left": 3704, - "top": 1131, - "height": 13, - "alpha": -0.5235987755982988, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "propertyLabel": { + "$ref": "AAAAAAGMBpd9jA7AJO0=" } }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lB22JYWWM=", + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAGMBpd9jA7B6Ps=", "_parent": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "$ref": "AAAAAAGMBpd9jA67nyk=" }, "model": { - "$ref": "AAAAAAGL+9lB2WJO1RQ=" + "$ref": "AAAAAAGMBpd9ig65uB8=" }, - "visible": false, "font": "Arial;13;0", - "left": 3713, - "top": 1121, - "height": 13, - "alpha": -0.7853981633974483, - "distance": 40, - "hostEdge": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" - } + "left": 4568, + "top": 1193, + "width": 85.1181640625, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lB22JZ4j0=", + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAGMBpd9jQ7CylI=", "_parent": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "$ref": "AAAAAAGMBpd9jA67nyk=" }, "model": { - "$ref": "AAAAAAGL+9lB2WJO1RQ=" + "$ref": "AAAAAAGMBpd9ig65uB8=" }, - "visible": false, "font": "Arial;13;0", - "left": 3684, - "top": 1151, - "height": 13, - "alpha": 0.5235987755982988, - "distance": 25, - "hostEdge": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" - } + "left": 4568, + "top": 1203, + "width": 85.1181640625, + "height": 10 }, { - "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL+9lB22JagX4=", + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAGMBpd9jQ7DFus=", "_parent": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "$ref": "AAAAAAGMBpd9jA67nyk=" }, "model": { - "$ref": "AAAAAAGL+9lB2WJNfVI=" + "$ref": "AAAAAAGMBpd9ig65uB8=" }, "visible": false, "font": "Arial;13;0", @@ -10825,13 +11078,13 @@ "height": 10 }, { - "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL+9lB3GJbP0E=", + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAGMBpd9jQ7EUI0=", "_parent": { - "$ref": "AAAAAAGL+9lB22JQZ5E=" + "$ref": "AAAAAAGMBpd9jA67nyk=" }, "model": { - "$ref": "AAAAAAGL+9lB2WJO1RQ=" + "$ref": "AAAAAAGMBpd9ig65uB8=" }, "visible": false, "font": "Arial;13;0", @@ -10840,254 +11093,231 @@ } ], "font": "Arial;13;0", - "head": { - "$ref": "AAAAAAGL8fAHTpcfcxQ=" - }, - "tail": { - "$ref": "AAAAAAGL3EC6Nug8Ro0=" - }, - "lineStyle": 1, - "points": "3603:1029;3708:1167", - "showVisibility": true, - "nameLabel": { - "$ref": "AAAAAAGL+9lB22JRtlE=" - }, - "stereotypeLabel": { - "$ref": "AAAAAAGL+9lB22JSZXA=" - }, - "propertyLabel": { - "$ref": "AAAAAAGL+9lB22JT9HQ=" - }, - "showEndOrder": "hide", - "tailRoleNameLabel": { - "$ref": "AAAAAAGL+9lB22JUfvg=" - }, - "tailPropertyLabel": { - "$ref": "AAAAAAGL+9lB22JV6mA=" - }, - "tailMultiplicityLabel": { - "$ref": "AAAAAAGL+9lB22JWWlA=" - }, - "headRoleNameLabel": { - "$ref": "AAAAAAGL+9lB22JX5gk=" + "containerChangeable": true, + "left": 4568, + "top": 1168, + "width": 85.1181640625, + "height": 45, + "nameCompartment": { + "$ref": "AAAAAAGMBpd9jA68eic=" }, - "headPropertyLabel": { - "$ref": "AAAAAAGL+9lB22JYWWM=" + "attributeCompartment": { + "$ref": "AAAAAAGMBpd9jA7B6Ps=" }, - "headMultiplicityLabel": { - "$ref": "AAAAAAGL+9lB22JZ4j0=" + "operationCompartment": { + "$ref": "AAAAAAGMBpd9jQ7CylI=" }, - "tailQualifiersCompartment": { - "$ref": "AAAAAAGL+9lB22JagX4=" + "receptionCompartment": { + "$ref": "AAAAAAGMBpd9jQ7DFus=" }, - "headQualifiersCompartment": { - "$ref": "AAAAAAGL+9lB3GJbP0E=" + "templateParameterCompartment": { + "$ref": "AAAAAAGMBpd9jQ7EUI0=" } }, { "_type": "UMLAssociationView", - "_id": "AAAAAAGL+9lQ0XokzqM=", + "_id": "AAAAAAGMBperHCDV/Mc=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL+9lQz3og1pg=" + "$ref": "AAAAAAGMBperGiDRgno=" }, "subViews": [ { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lQ0XolXG4=", + "_id": "AAAAAAGMBperHCDWjP4=", "_parent": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "model": { - "$ref": "AAAAAAGL+9lQz3og1pg=" + "$ref": "AAAAAAGMBperGiDRgno=" }, "visible": false, "font": "Arial;13;0", - "left": 3916, - "top": 1073, + "left": 4613, + "top": 1002, "height": 13, "alpha": 1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lQ0Xomv/A=", + "_id": "AAAAAAGMBperHCDXrqs=", "_parent": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "model": { - "$ref": "AAAAAAGL+9lQz3og1pg=" + "$ref": "AAAAAAGMBperGiDRgno=" }, "visible": null, "font": "Arial;13;0", - "left": 3920, - "top": 1059, + "left": 4598, + "top": 1000, "height": 13, "alpha": 1.5707963267948966, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lQ0XoniIU=", + "_id": "AAAAAAGMBperHCDYm6E=", "_parent": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "model": { - "$ref": "AAAAAAGL+9lQz3og1pg=" + "$ref": "AAAAAAGMBperGiDRgno=" }, "visible": false, "font": "Arial;13;0", - "left": 3909, - "top": 1102, + "left": 4642, + "top": 1005, "height": 13, "alpha": -1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lQ0XoorW0=", + "_id": "AAAAAAGMBperHCDZ0hM=", "_parent": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "model": { - "$ref": "AAAAAAGL+9lQz3ohaCY=" + "$ref": "AAAAAAGMBperGiDSkv4=" }, "visible": false, "font": "Arial;13;0", - "left": 3640, - "top": 999, + "left": 4599, + "top": 1133, "height": 13, "alpha": 0.5235987755982988, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lQ0Xop+7o=", + "_id": "AAAAAAGMBperHCDa9C0=", "_parent": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "model": { - "$ref": "AAAAAAGL+9lQz3ohaCY=" + "$ref": "AAAAAAGMBperGiDSkv4=" }, "visible": false, "font": "Arial;13;0", - "left": 3646, - "top": 987, + "left": 4586, + "top": 1129, "height": 13, "alpha": 0.7853981633974483, "distance": 40, "hostEdge": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lQ0noqobQ=", + "_id": "AAAAAAGMBperHCDbV2Q=", "_parent": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "model": { - "$ref": "AAAAAAGL+9lQz3ohaCY=" + "$ref": "AAAAAAGMBperGiDSkv4=" }, "visible": false, "font": "Arial;13;0", - "left": 3629, - "top": 1024, + "left": 4626, + "top": 1140, "height": 13, "alpha": -0.5235987755982988, "distance": 25, "hostEdge": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lQ0norYrs=", + "_id": "AAAAAAGMBperHSDcI7U=", "_parent": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "model": { - "$ref": "AAAAAAGL+9lQz3oiCYc=" + "$ref": "AAAAAAGMBperGiDT2kA=" }, "visible": false, "font": "Arial;13;0", - "left": 4193, - "top": 1148, + "left": 4627, + "top": 871, "height": 13, "alpha": -0.5235987755982988, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" } }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lQ0nosRNA=", + "_id": "AAAAAAGMBperHSDdRYk=", "_parent": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "model": { - "$ref": "AAAAAAGL+9lQz3oiCYc=" + "$ref": "AAAAAAGMBperGiDT2kA=" }, "visible": false, "font": "Arial;13;0", - "left": 4195, - "top": 1135, + "left": 4613, + "top": 872, "height": 13, "alpha": -0.7853981633974483, "distance": 40, "hostEdge": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" } }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL+9lQ0notl+k=", + "_id": "AAAAAAGMBperHSDee18=", "_parent": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "model": { - "$ref": "AAAAAAGL+9lQz3oiCYc=" + "$ref": "AAAAAAGMBperGiDT2kA=" }, "visible": false, "font": "Arial;13;0", - "left": 4190, - "top": 1176, + "left": 4655, + "top": 869, "height": 13, "alpha": 0.5235987755982988, "distance": 25, "hostEdge": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" } }, { "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL+9lQ0nou4Os=", + "_id": "AAAAAAGMBperHSDfwBk=", "_parent": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "model": { - "$ref": "AAAAAAGL+9lQz3ohaCY=" + "$ref": "AAAAAAGMBperGiDSkv4=" }, "visible": false, "font": "Arial;13;0", @@ -11096,12 +11326,12 @@ }, { "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL+9lQ0nov3ao=", + "_id": "AAAAAAGMBperHSDgy0c=", "_parent": { - "$ref": "AAAAAAGL+9lQ0XokzqM=" + "$ref": "AAAAAAGMBperHCDV/Mc=" }, "model": { - "$ref": "AAAAAAGL+9lQz3oiCYc=" + "$ref": "AAAAAAGMBperGiDT2kA=" }, "visible": false, "font": "Arial;13;0", @@ -11111,345 +11341,334 @@ ], "font": "Arial;13;0", "head": { - "$ref": "AAAAAAGL3EA5py45w5E=" + "$ref": "AAAAAAGMBpdAZwuU9Ko=" }, "tail": { - "$ref": "AAAAAAGL3EC6Nug8Ro0=" + "$ref": "AAAAAAGMBpd9jA67nyk=" }, "lineStyle": 1, - "points": "3612:1013;4215:1176", + "points": "4612:1167;4645:853", "showVisibility": true, "nameLabel": { - "$ref": "AAAAAAGL+9lQ0XolXG4=" + "$ref": "AAAAAAGMBperHCDWjP4=" }, "stereotypeLabel": { - "$ref": "AAAAAAGL+9lQ0Xomv/A=" + "$ref": "AAAAAAGMBperHCDXrqs=" }, "propertyLabel": { - "$ref": "AAAAAAGL+9lQ0XoniIU=" + "$ref": "AAAAAAGMBperHCDYm6E=" }, "showEndOrder": "hide", "tailRoleNameLabel": { - "$ref": "AAAAAAGL+9lQ0XoorW0=" + "$ref": "AAAAAAGMBperHCDZ0hM=" }, "tailPropertyLabel": { - "$ref": "AAAAAAGL+9lQ0Xop+7o=" + "$ref": "AAAAAAGMBperHCDa9C0=" }, "tailMultiplicityLabel": { - "$ref": "AAAAAAGL+9lQ0noqobQ=" + "$ref": "AAAAAAGMBperHCDbV2Q=" }, "headRoleNameLabel": { - "$ref": "AAAAAAGL+9lQ0norYrs=" + "$ref": "AAAAAAGMBperHSDcI7U=" }, "headPropertyLabel": { - "$ref": "AAAAAAGL+9lQ0nosRNA=" + "$ref": "AAAAAAGMBperHSDdRYk=" }, "headMultiplicityLabel": { - "$ref": "AAAAAAGL+9lQ0notl+k=" + "$ref": "AAAAAAGMBperHSDee18=" }, "tailQualifiersCompartment": { - "$ref": "AAAAAAGL+9lQ0nou4Os=" + "$ref": "AAAAAAGMBperHSDfwBk=" }, "headQualifiersCompartment": { - "$ref": "AAAAAAGL+9lQ0nov3ao=" + "$ref": "AAAAAAGMBperHSDgy0c=" } }, { - "_type": "UMLAssociationView", - "_id": "AAAAAAGL++Z1Ierpd8M=", + "_type": "UMLClassView", + "_id": "AAAAAAGMBpe7/iSd2yE=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL++Z1IOrl2bA=" + "$ref": "AAAAAAGMBpe7/CSbj9A=" }, "subViews": [ { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL++Z1Iurq+hE=", + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAGMBpe7/iSeTew=", "_parent": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" + "$ref": "AAAAAAGMBpe7/iSd2yE=" }, "model": { - "$ref": "AAAAAAGL++Z1IOrl2bA=" + "$ref": "AAAAAAGMBpe7/CSbj9A=" }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAGMBpe7/iSfpKY=", + "_parent": { + "$ref": "AAAAAAGMBpe7/iSeTew=" + }, + "visible": false, + "font": "Arial;13;0", + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAGMBpe7/iSg9/o=", + "_parent": { + "$ref": "AAAAAAGMBpe7/iSeTew=" + }, + "font": "Arial;13;1", + "left": 4845, + "top": 999, + "width": 41.919921875, + "height": 13, + "text": "Fit" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGMBpe7/iShO0o=", + "_parent": { + "$ref": "AAAAAAGMBpe7/iSeTew=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGMBpe7/iSizgA=", + "_parent": { + "$ref": "AAAAAAGMBpe7/iSeTew=" + }, + "visible": false, + "font": "Arial;13;0", + "height": 13, + "horizontalAlignment": 1 + } + ], "font": "Arial;13;0", - "left": 3351, - "top": 2848, - "width": 121.03076171875, - "height": 13, - "alpha": 0.6921845475682045, - "distance": 98.95453501482385, - "hostEdge": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" - }, - "edgePosition": 1, - "text": "-entrainementList" - }, - { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL++Z1Iurrux4=", - "_parent": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" + "left": 4840, + "top": 992, + "width": 51.919921875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAGMBpe7/iSfpKY=" }, - "model": { - "$ref": "AAAAAAGL++Z1IOrl2bA=" + "nameLabel": { + "$ref": "AAAAAAGMBpe7/iSg9/o=" }, - "visible": null, - "font": "Arial;13;0", - "left": 3340, - "top": 2806, - "height": 13, - "alpha": 1.5707963267948966, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" + "namespaceLabel": { + "$ref": "AAAAAAGMBpe7/iShO0o=" }, - "edgePosition": 1 + "propertyLabel": { + "$ref": "AAAAAAGMBpe7/iSizgA=" + } }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL++Z1IursKqY=", + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAGMBpe7/iSjG28=", "_parent": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" + "$ref": "AAAAAAGMBpe7/iSd2yE=" }, "model": { - "$ref": "AAAAAAGL++Z1IOrl2bA=" + "$ref": "AAAAAAGMBpe7/CSbj9A=" }, - "visible": false, "font": "Arial;13;0", - "left": 3303, - "top": 2832, - "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, - "hostEdge": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" - }, - "edgePosition": 1 + "left": 4840, + "top": 1017, + "width": 51.919921875, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL++Z1IurtNUc=", + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAGMBpe7/iSkAzo=", "_parent": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" + "$ref": "AAAAAAGMBpe7/iSd2yE=" }, "model": { - "$ref": "AAAAAAGL++Z1IOrmj24=" + "$ref": "AAAAAAGMBpe7/CSbj9A=" }, - "visible": false, "font": "Arial;13;0", - "left": 3307, - "top": 2787, - "height": 13, - "alpha": 0.5235987755982988, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" - }, - "edgePosition": 2 + "left": 4840, + "top": 1027, + "width": 51.919921875, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL++Z1IuruW3k=", + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAGMBpe7/ySlufY=", "_parent": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" + "$ref": "AAAAAAGMBpe7/iSd2yE=" }, "model": { - "$ref": "AAAAAAGL++Z1IOrmj24=" + "$ref": "AAAAAAGMBpe7/CSbj9A=" }, "visible": false, "font": "Arial;13;0", - "left": 3319, - "top": 2781, - "height": 13, - "alpha": 0.7853981633974483, - "distance": 40, - "hostEdge": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" - }, - "edgePosition": 2 + "width": 10, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL++Z1Iurv9ho=", + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAGMBpe7/ySmCFQ=", "_parent": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" + "$ref": "AAAAAAGMBpe7/iSd2yE=" }, "model": { - "$ref": "AAAAAAGL++Z1IOrmj24=" + "$ref": "AAAAAAGMBpe7/CSbj9A=" }, "visible": false, "font": "Arial;13;0", - "left": 3282, - "top": 2799, - "height": 13, - "alpha": -0.5235987755982988, - "distance": 25, - "hostEdge": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" - }, - "edgePosition": 2 - }, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 4840, + "top": 992, + "width": 51.919921875, + "height": 45, + "nameCompartment": { + "$ref": "AAAAAAGMBpe7/iSeTew=" + }, + "attributeCompartment": { + "$ref": "AAAAAAGMBpe7/iSjG28=" + }, + "operationCompartment": { + "$ref": "AAAAAAGMBpe7/iSkAzo=" + }, + "receptionCompartment": { + "$ref": "AAAAAAGMBpe7/ySlufY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAGMBpe7/ySmCFQ=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAGMBpfYWy3ZgGs=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAGMBpfYWi3Xomc=" + }, + "subViews": [ { "_type": "EdgeLabelView", - "_id": "AAAAAAGL++Z1Iurw9sk=", + "_id": "AAAAAAGMBpfYXC3aIX8=", "_parent": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" + "$ref": "AAAAAAGMBpfYWy3ZgGs=" }, "model": { - "$ref": "AAAAAAGL++Z1IOrnew4=" + "$ref": "AAAAAAGMBpfYWi3Xomc=" }, "visible": false, "font": "Arial;13;0", - "left": 3348, - "top": 2843, + "left": 4746, + "top": 927, "height": 13, - "alpha": -0.5235987755982988, - "distance": 30, + "alpha": 1.5707963267948966, + "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" - } + "$ref": "AAAAAAGMBpfYWy3ZgGs=" + }, + "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL++Z1Iurx+J8=", + "_id": "AAAAAAGMBpfYXC3btwY=", "_parent": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" + "$ref": "AAAAAAGMBpfYWy3ZgGs=" }, "model": { - "$ref": "AAAAAAGL++Z1IOrnew4=" + "$ref": "AAAAAAGMBpfYWi3Xomc=" }, - "visible": false, + "visible": null, "font": "Arial;13;0", - "left": 3358, - "top": 2833, + "left": 4736, + "top": 938, "height": 13, - "alpha": -0.7853981633974483, - "distance": 40, + "alpha": 1.5707963267948966, + "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" - } + "$ref": "AAAAAAGMBpfYWy3ZgGs=" + }, + "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL++Z1IuryFxs=", + "_id": "AAAAAAGMBpfYXC3c538=", "_parent": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" + "$ref": "AAAAAAGMBpfYWy3ZgGs=" }, "model": { - "$ref": "AAAAAAGL++Z1IOrnew4=" + "$ref": "AAAAAAGMBpfYWi3Xomc=" }, "visible": false, "font": "Arial;13;0", - "left": 3329, - "top": 2862, + "left": 4765, + "top": 904, "height": 13, - "alpha": 0.5235987755982988, - "distance": 25, + "alpha": -1.5707963267948966, + "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" - } - }, - { - "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL++Z1Iurz82s=", - "_parent": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" - }, - "model": { - "$ref": "AAAAAAGL++Z1IOrmj24=" - }, - "visible": false, - "font": "Arial;13;0", - "width": 10, - "height": 10 - }, - { - "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL++Z1Iur0tvc=", - "_parent": { - "$ref": "AAAAAAGL++Z1Ierpd8M=" - }, - "model": { - "$ref": "AAAAAAGL++Z1IOrnew4=" + "$ref": "AAAAAAGMBpfYWy3ZgGs=" }, - "visible": false, - "font": "Arial;13;0", - "width": 10, - "height": 10 + "edgePosition": 1 } ], "font": "Arial;13;0", "head": { - "$ref": "AAAAAAGL3DMzZkmwpP8=" + "$ref": "AAAAAAGMBpdAZwuU9Ko=" }, "tail": { - "$ref": "AAAAAAGL8kwWNOvs/ko=" + "$ref": "AAAAAAGMBpe7/iSd2yE=" }, "lineStyle": 1, - "points": "3280:2781;3352:2879", + "points": "4839:992;4674:853", "showVisibility": true, "nameLabel": { - "$ref": "AAAAAAGL++Z1Iurq+hE=" + "$ref": "AAAAAAGMBpfYXC3aIX8=" }, "stereotypeLabel": { - "$ref": "AAAAAAGL++Z1Iurrux4=" + "$ref": "AAAAAAGMBpfYXC3btwY=" }, "propertyLabel": { - "$ref": "AAAAAAGL++Z1IursKqY=" - }, - "showEndOrder": "hide", - "tailRoleNameLabel": { - "$ref": "AAAAAAGL++Z1IurtNUc=" - }, - "tailPropertyLabel": { - "$ref": "AAAAAAGL++Z1IuruW3k=" - }, - "tailMultiplicityLabel": { - "$ref": "AAAAAAGL++Z1Iurv9ho=" - }, - "headRoleNameLabel": { - "$ref": "AAAAAAGL++Z1Iurw9sk=" - }, - "headPropertyLabel": { - "$ref": "AAAAAAGL++Z1Iurx+J8=" - }, - "headMultiplicityLabel": { - "$ref": "AAAAAAGL++Z1IuryFxs=" - }, - "tailQualifiersCompartment": { - "$ref": "AAAAAAGL++Z1Iurz82s=" - }, - "headQualifiersCompartment": { - "$ref": "AAAAAAGL++Z1Iur0tvc=" + "$ref": "AAAAAAGMBpfYXC3c538=" } }, { "_type": "UMLClassView", - "_id": "AAAAAAGL++aCHApuNNY=", + "_id": "AAAAAAGMBpo0VtxckhI=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL++aCGgpsPN4=" + "$ref": "AAAAAAGMBpo0VdxaKM0=" }, "subViews": [ { "_type": "UMLNameCompartmentView", - "_id": "AAAAAAGL++aCHApv9g0=", + "_id": "AAAAAAGMBpo0V9xdlNU=", "_parent": { - "$ref": "AAAAAAGL++aCHApuNNY=" + "$ref": "AAAAAAGMBpo0VtxckhI=" }, "model": { - "$ref": "AAAAAAGL++aCGgpsPN4=" + "$ref": "AAAAAAGMBpo0VdxaKM0=" }, "subViews": [ { "_type": "LabelView", - "_id": "AAAAAAGL++aCHApwYGY=", + "_id": "AAAAAAGMBpo0V9xe4j4=", "_parent": { - "$ref": "AAAAAAGL++aCHApv9g0=" + "$ref": "AAAAAAGMBpo0V9xdlNU=" }, "visible": false, "font": "Arial;13;0", @@ -11457,22 +11676,22 @@ }, { "_type": "LabelView", - "_id": "AAAAAAGL++aCHApxh8E=", + "_id": "AAAAAAGMBpo0V9xfU9w=", "_parent": { - "$ref": "AAAAAAGL++aCHApv9g0=" + "$ref": "AAAAAAGMBpo0V9xdlNU=" }, "font": "Arial;13;1", - "left": 3397, - "top": 3215, - "width": 124.95361328125, + "left": 4805, + "top": 3055, + "width": 66.47265625, "height": 13, - "text": "EntrainementSportif" + "text": "IAnalyseur" }, { "_type": "LabelView", - "_id": "AAAAAAGL++aCHApytmc=", + "_id": "AAAAAAGMBpo0V9xgOy8=", "_parent": { - "$ref": "AAAAAAGL++aCHApv9g0=" + "$ref": "AAAAAAGMBpo0V9xdlNU=" }, "visible": false, "font": "Arial;13;0", @@ -11482,9 +11701,9 @@ }, { "_type": "LabelView", - "_id": "AAAAAAGL++aCHApzgMU=", + "_id": "AAAAAAGMBpo0V9xhYak=", "_parent": { - "$ref": "AAAAAAGL++aCHApv9g0=" + "$ref": "AAAAAAGMBpo0V9xdlNU=" }, "visible": false, "font": "Arial;13;0", @@ -11493,61 +11712,61 @@ } ], "font": "Arial;13;0", - "left": 3392, - "top": 3208, - "width": 134.95361328125, + "left": 4800, + "top": 3048, + "width": 76.47265625, "height": 25, "stereotypeLabel": { - "$ref": "AAAAAAGL++aCHApwYGY=" + "$ref": "AAAAAAGMBpo0V9xe4j4=" }, "nameLabel": { - "$ref": "AAAAAAGL++aCHApxh8E=" + "$ref": "AAAAAAGMBpo0V9xfU9w=" }, "namespaceLabel": { - "$ref": "AAAAAAGL++aCHApytmc=" + "$ref": "AAAAAAGMBpo0V9xgOy8=" }, "propertyLabel": { - "$ref": "AAAAAAGL++aCHApzgMU=" + "$ref": "AAAAAAGMBpo0V9xhYak=" } }, { "_type": "UMLAttributeCompartmentView", - "_id": "AAAAAAGL++aCHAp0YNk=", + "_id": "AAAAAAGMBpo0V9xinDc=", "_parent": { - "$ref": "AAAAAAGL++aCHApuNNY=" + "$ref": "AAAAAAGMBpo0VtxckhI=" }, "model": { - "$ref": "AAAAAAGL++aCGgpsPN4=" + "$ref": "AAAAAAGMBpo0VdxaKM0=" }, "font": "Arial;13;0", - "left": 3392, - "top": 3233, - "width": 134.95361328125, + "left": 4800, + "top": 3073, + "width": 76.47265625, "height": 10 }, { "_type": "UMLOperationCompartmentView", - "_id": "AAAAAAGL++aCHQp1bng=", + "_id": "AAAAAAGMBpo0V9xjdcE=", "_parent": { - "$ref": "AAAAAAGL++aCHApuNNY=" + "$ref": "AAAAAAGMBpo0VtxckhI=" }, "model": { - "$ref": "AAAAAAGL++aCGgpsPN4=" + "$ref": "AAAAAAGMBpo0VdxaKM0=" }, "font": "Arial;13;0", - "left": 3392, - "top": 3243, - "width": 134.95361328125, + "left": 4800, + "top": 3083, + "width": 76.47265625, "height": 10 }, { "_type": "UMLReceptionCompartmentView", - "_id": "AAAAAAGL++aCHQp2hLc=", + "_id": "AAAAAAGMBpo0V9xk5v8=", "_parent": { - "$ref": "AAAAAAGL++aCHApuNNY=" + "$ref": "AAAAAAGMBpo0VtxckhI=" }, "model": { - "$ref": "AAAAAAGL++aCGgpsPN4=" + "$ref": "AAAAAAGMBpo0VdxaKM0=" }, "visible": false, "font": "Arial;13;0", @@ -11556,12 +11775,12 @@ }, { "_type": "UMLTemplateParameterCompartmentView", - "_id": "AAAAAAGL++aCHQp3KP0=", + "_id": "AAAAAAGMBpo0V9xl6vk=", "_parent": { - "$ref": "AAAAAAGL++aCHApuNNY=" + "$ref": "AAAAAAGMBpo0VtxckhI=" }, "model": { - "$ref": "AAAAAAGL++aCGgpsPN4=" + "$ref": "AAAAAAGMBpo0VdxaKM0=" }, "visible": false, "font": "Arial;13;0", @@ -11571,389 +11790,564 @@ ], "font": "Arial;13;0", "containerChangeable": true, - "left": 3392, - "top": 3208, - "width": 134.95361328125, + "left": 4800, + "top": 3048, + "width": 76.47265625, "height": 45, "nameCompartment": { - "$ref": "AAAAAAGL++aCHApv9g0=" + "$ref": "AAAAAAGMBpo0V9xdlNU=" }, "attributeCompartment": { - "$ref": "AAAAAAGL++aCHAp0YNk=" + "$ref": "AAAAAAGMBpo0V9xinDc=" }, "operationCompartment": { - "$ref": "AAAAAAGL++aCHQp1bng=" + "$ref": "AAAAAAGMBpo0V9xjdcE=" }, "receptionCompartment": { - "$ref": "AAAAAAGL++aCHQp2hLc=" + "$ref": "AAAAAAGMBpo0V9xk5v8=" }, "templateParameterCompartment": { - "$ref": "AAAAAAGL++aCHQp3KP0=" + "$ref": "AAAAAAGMBpo0V9xl6vk=" } }, { - "_type": "UMLGeneralizationView", - "_id": "AAAAAAGL++arOhiEW1s=", + "_type": "UMLAssociationView", + "_id": "AAAAAAGMBppPXOnSowQ=", "_parent": { "$ref": "AAAAAAFF+qBtyKM79qY=" }, "model": { - "$ref": "AAAAAAGL++arORiCGus=" + "$ref": "AAAAAAGMBppPWenO/AQ=" }, "subViews": [ { "_type": "EdgeLabelView", - "_id": "AAAAAAGL++arOxiFTMI=", + "_id": "AAAAAAGMBppPXenT8H4=", "_parent": { - "$ref": "AAAAAAGL++arOhiEW1s=" + "$ref": "AAAAAAGMBppPXOnSowQ=" }, "model": { - "$ref": "AAAAAAGL++arORiCGus=" + "$ref": "AAAAAAGMBppPWenO/AQ=" }, "visible": false, "font": "Arial;13;0", - "left": 3437, - "top": 3154, + "left": 4619, + "top": 3072, "height": 13, "alpha": 1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL++arOhiEW1s=" + "$ref": "AAAAAAGMBppPXOnSowQ=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL++arOxiGkAc=", + "_id": "AAAAAAGMBppPXenUjNw=", "_parent": { - "$ref": "AAAAAAGL++arOhiEW1s=" + "$ref": "AAAAAAGMBppPXOnSowQ=" }, "model": { - "$ref": "AAAAAAGL++arORiCGus=" + "$ref": "AAAAAAGMBppPWenO/AQ=" }, "visible": null, "font": "Arial;13;0", - "left": 3422, - "top": 3155, + "left": 4617, + "top": 3057, "height": 13, "alpha": 1.5707963267948966, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL++arOhiEW1s=" + "$ref": "AAAAAAGMBppPXOnSowQ=" }, "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL++arOxiHKFc=", + "_id": "AAAAAAGMBppPXenVYiY=", "_parent": { - "$ref": "AAAAAAGL++arOhiEW1s=" + "$ref": "AAAAAAGMBppPXOnSowQ=" }, "model": { - "$ref": "AAAAAAGL++arORiCGus=" + "$ref": "AAAAAAGMBppPWenO/AQ=" }, "visible": false, "font": "Arial;13;0", - "left": 3466, - "top": 3153, + "left": 4622, + "top": 3101, "height": 13, "alpha": -1.5707963267948966, "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL++arOhiEW1s=" + "$ref": "AAAAAAGMBppPXOnSowQ=" }, "edgePosition": 1 - } - ], - "font": "Arial;13;0", - "head": { - "$ref": "AAAAAAGL3DMzZkmwpP8=" - }, - "tail": { - "$ref": "AAAAAAGL++aCHApuNNY=" - }, - "lineStyle": 1, - "points": "3456:3207;3449:3114", - "showVisibility": true, - "nameLabel": { - "$ref": "AAAAAAGL++arOxiFTMI=" - }, - "stereotypeLabel": { - "$ref": "AAAAAAGL++arOxiGkAc=" - }, - "propertyLabel": { - "$ref": "AAAAAAGL++arOxiHKFc=" - } - }, - { - "_type": "UMLAssociationView", - "_id": "AAAAAAGL++iBH/dTm1o=", - "_parent": { - "$ref": "AAAAAAFF+qBtyKM79qY=" - }, - "model": { - "$ref": "AAAAAAGL++iBHvdP07A=" - }, - "subViews": [ + }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL++iBH/dUZHc=", + "_id": "AAAAAAGMBppPXenWrjU=", "_parent": { - "$ref": "AAAAAAGL++iBH/dTm1o=" + "$ref": "AAAAAAGMBppPXOnSowQ=" }, "model": { - "$ref": "AAAAAAGL++iBHvdP07A=" + "$ref": "AAAAAAGMBppPWunPg3A=" }, + "visible": false, "font": "Arial;13;0", - "left": 3352, - "top": 2440, - "width": 145.60888671875, + "left": 4467, + "top": 3088, "height": 13, - "alpha": 3.678431948894711, - "distance": 42, + "alpha": 0.5235987755982988, + "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL++iBH/dTm1o=" + "$ref": "AAAAAAGMBppPXOnSowQ=" }, - "edgePosition": 1, - "text": "#entrainementRepository" + "edgePosition": 2 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL++iBIPdVuVs=", + "_id": "AAAAAAGMBppPXenXSC0=", "_parent": { - "$ref": "AAAAAAGL++iBH/dTm1o=" + "$ref": "AAAAAAGMBppPXOnSowQ=" }, "model": { - "$ref": "AAAAAAGL++iBHvdP07A=" + "$ref": "AAAAAAGMBppPWunPg3A=" }, - "visible": null, + "visible": false, "font": "Arial;13;0", - "left": 3449, - "top": 2497, + "left": 4468, + "top": 3074, "height": 13, - "alpha": 1.5707963267948966, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAGMBppPXOnSowQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGMBppPXenY2s0=", + "_parent": { + "$ref": "AAAAAAGMBppPXOnSowQ=" + }, + "model": { + "$ref": "AAAAAAGMBppPWunPg3A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 4465, + "top": 3116, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAGMBppPXOnSowQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGMBppPXenZWUM=", + "_parent": { + "$ref": "AAAAAAGMBppPXOnSowQ=" + }, + "model": { + "$ref": "AAAAAAGMBppPWunQr5E=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 4771, + "top": 3055, + "height": 13, + "alpha": -0.5235987755982988, "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL++iBH/dTm1o=" + "$ref": "AAAAAAGMBppPXOnSowQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAGMBppPXenavXk=", + "_parent": { + "$ref": "AAAAAAGMBppPXOnSowQ=" }, - "edgePosition": 1 + "model": { + "$ref": "AAAAAAGMBppPWunQr5E=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 4767, + "top": 3042, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAGMBppPXOnSowQ=" + } }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL++iBIPdW3Xk=", + "_id": "AAAAAAGMBppPXenbBMk=", "_parent": { - "$ref": "AAAAAAGL++iBH/dTm1o=" + "$ref": "AAAAAAGMBppPXOnSowQ=" }, "model": { - "$ref": "AAAAAAGL++iBHvdP07A=" + "$ref": "AAAAAAGMBppPWunQr5E=" }, "visible": false, "font": "Arial;13;0", - "left": 3411, - "top": 2474, + "left": 4778, + "top": 3082, "height": 13, - "alpha": -1.5707963267948966, - "distance": 15, + "alpha": 0.5235987755982988, + "distance": 25, "hostEdge": { - "$ref": "AAAAAAGL++iBH/dTm1o=" + "$ref": "AAAAAAGMBppPXOnSowQ=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGMBppPXunclvs=", + "_parent": { + "$ref": "AAAAAAGMBppPXOnSowQ=" }, - "edgePosition": 1 + "model": { + "$ref": "AAAAAAGMBppPWunPg3A=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAGMBppPXundICc=", + "_parent": { + "$ref": "AAAAAAGMBppPXOnSowQ=" + }, + "model": { + "$ref": "AAAAAAGMBppPWunQr5E=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAGMBpo0VtxckhI=" + }, + "tail": { + "$ref": "AAAAAAGL3DH0VM3eelw=" + }, + "lineStyle": 1, + "points": "4443:3112;4799:3074", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAGMBppPXenT8H4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAGMBppPXenUjNw=" + }, + "propertyLabel": { + "$ref": "AAAAAAGMBppPXenVYiY=" + }, + "showEndOrder": "hide", + "tailRoleNameLabel": { + "$ref": "AAAAAAGMBppPXenWrjU=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAGMBppPXenXSC0=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAGMBppPXenY2s0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAGMBppPXenZWUM=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAGMBppPXenavXk=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAGMBppPXenbBMk=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAGMBppPXunclvs=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAGMBppPXundICc=" + } + }, + { + "_type": "UMLClassView", + "_id": "AAAAAAGMBqILMi7wY5A=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAGMBqILMC7uP0g=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAGMBqILMi7xX9g=", + "_parent": { + "$ref": "AAAAAAGMBqILMi7wY5A=" + }, + "model": { + "$ref": "AAAAAAGMBqILMC7uP0g=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAGMBqILMi7yY/E=", + "_parent": { + "$ref": "AAAAAAGMBqILMi7xX9g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -496, + "top": 224, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAGMBqILMi7zRDg=", + "_parent": { + "$ref": "AAAAAAGMBqILMi7xX9g=" + }, + "font": "Arial;13;1", + "left": 4805, + "top": 3191, + "width": 62.86083984375, + "height": 13, + "text": "Analyseur" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGMBqILMi70pg8=", + "_parent": { + "$ref": "AAAAAAGMBqILMi7xX9g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -496, + "top": 224, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAGMBqILMi71Nx4=", + "_parent": { + "$ref": "AAAAAAGMBqILMi7xX9g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -496, + "top": 224, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 4800, + "top": 3184, + "width": 72.86083984375, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAGMBqILMi7yY/E=" + }, + "nameLabel": { + "$ref": "AAAAAAGMBqILMi7zRDg=" + }, + "namespaceLabel": { + "$ref": "AAAAAAGMBqILMi70pg8=" + }, + "propertyLabel": { + "$ref": "AAAAAAGMBqILMi71Nx4=" + } }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL++iBIPdXmHU=", + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAGMBqILMi72bC0=", "_parent": { - "$ref": "AAAAAAGL++iBH/dTm1o=" + "$ref": "AAAAAAGMBqILMi7wY5A=" }, "model": { - "$ref": "AAAAAAGL++iBHvdQzLE=" + "$ref": "AAAAAAGMBqILMC7uP0g=" }, - "visible": false, "font": "Arial;13;0", - "left": 3911, - "top": 2415, - "height": 13, - "alpha": 0.5235987755982988, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL++iBH/dTm1o=" - }, - "edgePosition": 2 + "left": 4800, + "top": 3209, + "width": 72.86083984375, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL++iBIPdY5+E=", + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAGMBqILMy73IbQ=", "_parent": { - "$ref": "AAAAAAGL++iBH/dTm1o=" + "$ref": "AAAAAAGMBqILMi7wY5A=" }, "model": { - "$ref": "AAAAAAGL++iBHvdQzLE=" + "$ref": "AAAAAAGMBqILMC7uP0g=" }, - "visible": false, "font": "Arial;13;0", - "left": 3911, - "top": 2428, - "height": 13, - "alpha": 0.7853981633974483, - "distance": 40, - "hostEdge": { - "$ref": "AAAAAAGL++iBH/dTm1o=" - }, - "edgePosition": 2 + "left": 4800, + "top": 3219, + "width": 72.86083984375, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL++iBIPdZNqU=", + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAGMBqILMy74L7c=", "_parent": { - "$ref": "AAAAAAGL++iBH/dTm1o=" + "$ref": "AAAAAAGMBqILMi7wY5A=" }, "model": { - "$ref": "AAAAAAGL++iBHvdQzLE=" + "$ref": "AAAAAAGMBqILMC7uP0g=" }, "visible": false, "font": "Arial;13;0", - "left": 3911, - "top": 2387, - "height": 13, - "alpha": -0.5235987755982988, - "distance": 25, - "hostEdge": { - "$ref": "AAAAAAGL++iBH/dTm1o=" - }, - "edgePosition": 2 + "left": -248, + "top": 112, + "width": 10, + "height": 10 }, { - "_type": "EdgeLabelView", - "_id": "AAAAAAGL++iBIPdaKH4=", + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAGMBqILMy75p6M=", "_parent": { - "$ref": "AAAAAAGL++iBH/dTm1o=" + "$ref": "AAAAAAGMBqILMi7wY5A=" }, "model": { - "$ref": "AAAAAAGL++iBHvdR3xE=" + "$ref": "AAAAAAGMBqILMC7uP0g=" }, "visible": false, "font": "Arial;13;0", - "left": 3303, - "top": 2714, - "height": 13, - "alpha": -0.5235987755982988, - "distance": 30, - "hostEdge": { - "$ref": "AAAAAAGL++iBH/dTm1o=" - } - }, + "left": -248, + "top": 112, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 4800, + "top": 3184, + "width": 72.86083984375, + "height": 45, + "nameCompartment": { + "$ref": "AAAAAAGMBqILMi7xX9g=" + }, + "attributeCompartment": { + "$ref": "AAAAAAGMBqILMi72bC0=" + }, + "operationCompartment": { + "$ref": "AAAAAAGMBqILMy73IbQ=" + }, + "receptionCompartment": { + "$ref": "AAAAAAGMBqILMy74L7c=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAGMBqILMy75p6M=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAGMBsEyOiaLjws=", + "_parent": { + "$ref": "AAAAAAFF+qBtyKM79qY=" + }, + "model": { + "$ref": "AAAAAAGMBsEyOCaJKLw=" + }, + "subViews": [ { "_type": "EdgeLabelView", - "_id": "AAAAAAGL++iBIPdblc8=", + "_id": "AAAAAAGMBsEyOiaMm/Q=", "_parent": { - "$ref": "AAAAAAGL++iBH/dTm1o=" + "$ref": "AAAAAAGMBsEyOiaLjws=" }, "model": { - "$ref": "AAAAAAGL++iBHvdR3xE=" + "$ref": "AAAAAAGMBsEyOCaJKLw=" }, "visible": false, "font": "Arial;13;0", - "left": 3315, - "top": 2719, + "left": 4821, + "top": 3131, "height": 13, - "alpha": -0.7853981633974483, - "distance": 40, + "alpha": 1.5707963267948966, + "distance": 15, "hostEdge": { - "$ref": "AAAAAAGL++iBH/dTm1o=" - } + "$ref": "AAAAAAGMBsEyOiaLjws=" + }, + "edgePosition": 1 }, { "_type": "EdgeLabelView", - "_id": "AAAAAAGL++iBIPdcVS0=", + "_id": "AAAAAAGMBsEyOiaNpAg=", "_parent": { - "$ref": "AAAAAAGL++iBH/dTm1o=" + "$ref": "AAAAAAGMBsEyOiaLjws=" }, "model": { - "$ref": "AAAAAAGL++iBHvdR3xE=" + "$ref": "AAAAAAGMBsEyOCaJKLw=" }, - "visible": false, + "visible": null, "font": "Arial;13;0", - "left": 3277, - "top": 2704, + "left": 4806, + "top": 3131, "height": 13, - "alpha": 0.5235987755982988, - "distance": 25, + "alpha": 1.5707963267948966, + "distance": 30, "hostEdge": { - "$ref": "AAAAAAGL++iBH/dTm1o=" - } - }, - { - "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL++iBIPddals=", - "_parent": { - "$ref": "AAAAAAGL++iBH/dTm1o=" - }, - "model": { - "$ref": "AAAAAAGL++iBHvdQzLE=" + "$ref": "AAAAAAGMBsEyOiaLjws=" }, - "visible": false, - "font": "Arial;13;0", - "width": 10, - "height": 10 + "edgePosition": 1 }, { - "_type": "UMLQualifierCompartmentView", - "_id": "AAAAAAGL++iBIPdem5g=", + "_type": "EdgeLabelView", + "_id": "AAAAAAGMBsEyOiaOgTs=", "_parent": { - "$ref": "AAAAAAGL++iBH/dTm1o=" + "$ref": "AAAAAAGMBsEyOiaLjws=" }, "model": { - "$ref": "AAAAAAGL++iBHvdR3xE=" + "$ref": "AAAAAAGMBsEyOCaJKLw=" }, "visible": false, "font": "Arial;13;0", - "width": 10, - "height": 10 + "left": 4850, + "top": 3132, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAGMBsEyOiaLjws=" + }, + "edgePosition": 1 } ], "font": "Arial;13;0", "head": { - "$ref": "AAAAAAGL8kwWNOvs/ko=" + "$ref": "AAAAAAGMBpo0VtxckhI=" }, "tail": { - "$ref": "AAAAAAGL3BqoCyTo5V4=" + "$ref": "AAAAAAGMBqILMi7wY5A=" }, "lineStyle": 1, - "points": "3935:2402;3424:2488;3277:2735", + "points": "4835:3183;4837:3093", "showVisibility": true, "nameLabel": { - "$ref": "AAAAAAGL++iBH/dUZHc=" + "$ref": "AAAAAAGMBsEyOiaMm/Q=" }, "stereotypeLabel": { - "$ref": "AAAAAAGL++iBIPdVuVs=" + "$ref": "AAAAAAGMBsEyOiaNpAg=" }, "propertyLabel": { - "$ref": "AAAAAAGL++iBIPdW3Xk=" - }, - "showEndOrder": "hide", - "tailRoleNameLabel": { - "$ref": "AAAAAAGL++iBIPdXmHU=" - }, - "tailPropertyLabel": { - "$ref": "AAAAAAGL++iBIPdY5+E=" - }, - "tailMultiplicityLabel": { - "$ref": "AAAAAAGL++iBIPdZNqU=" - }, - "headRoleNameLabel": { - "$ref": "AAAAAAGL++iBIPdaKH4=" - }, - "headPropertyLabel": { - "$ref": "AAAAAAGL++iBIPdblc8=" - }, - "headMultiplicityLabel": { - "$ref": "AAAAAAGL++iBIPdcVS0=" - }, - "tailQualifiersCompartment": { - "$ref": "AAAAAAGL++iBIPddals=" - }, - "headQualifiersCompartment": { - "$ref": "AAAAAAGL++iBIPdem5g=" + "$ref": "AAAAAAGMBsEyOiaOgTs=" } } ] @@ -12790,35 +13184,6 @@ "$ref": "AAAAAAGLpAzboB41ECQ=" } }, - { - "_type": "UMLAssociation", - "_id": "AAAAAAGLpCjaef4ia7Q=", - "_parent": { - "$ref": "AAAAAAGLpCJOKOeiXS4=" - }, - "name": "*lesFC", - "end1": { - "_type": "UMLAssociationEnd", - "_id": "AAAAAAGLpCjaef4jXfg=", - "_parent": { - "$ref": "AAAAAAGLpCjaef4ia7Q=" - }, - "reference": { - "$ref": "AAAAAAGLpCJOKOeiXS4=" - } - }, - "end2": { - "_type": "UMLAssociationEnd", - "_id": "AAAAAAGLpCjaef4kCr0=", - "_parent": { - "$ref": "AAAAAAGLpCjaef4ia7Q=" - }, - "reference": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "navigable": "navigable" - } - }, { "_type": "UMLAssociation", "_id": "AAAAAAGLpCkkyQISTtc=", @@ -12875,63 +13240,6 @@ "navigable": "navigable" } }, - { - "_type": "UMLAssociation", - "_id": "AAAAAAGLrx92rkHZdNc=", - "_parent": { - "$ref": "AAAAAAGLpCJOKOeiXS4=" - }, - "end1": { - "_type": "UMLAssociationEnd", - "_id": "AAAAAAGLrx92rkHaRzA=", - "_parent": { - "$ref": "AAAAAAGLrx92rkHZdNc=" - }, - "reference": { - "$ref": "AAAAAAGLpCJOKOeiXS4=" - } - }, - "end2": { - "_type": "UMLAssociationEnd", - "_id": "AAAAAAGLrx92rkHbgPw=", - "_parent": { - "$ref": "AAAAAAGLrx92rkHZdNc=" - }, - "reference": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "navigable": "navigable" - } - }, - { - "_type": "UMLAssociation", - "_id": "AAAAAAGL3DYw3tncQPI=", - "_parent": { - "$ref": "AAAAAAGLpCJOKOeiXS4=" - }, - "end1": { - "_type": "UMLAssociationEnd", - "_id": "AAAAAAGL3DYw3tndhRM=", - "_parent": { - "$ref": "AAAAAAGL3DYw3tncQPI=" - }, - "reference": { - "$ref": "AAAAAAGLpCJOKOeiXS4=" - } - }, - "end2": { - "_type": "UMLAssociationEnd", - "_id": "AAAAAAGL3DYw3tnejOM=", - "_parent": { - "$ref": "AAAAAAGL3DYw3tncQPI=" - }, - "name": "*lesFrequencesCardiaques", - "reference": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "navigable": "navigable" - } - }, { "_type": "UMLAssociation", "_id": "AAAAAAGL3DewVSCksyY=", @@ -12962,16 +13270,15 @@ }, { "_type": "UMLAssociation", - "_id": "AAAAAAGL3EL+BDWjkdw=", + "_id": "AAAAAAGMBppPWenO/AQ=", "_parent": { "$ref": "AAAAAAGLpCJOKOeiXS4=" }, - "name": "*lesDonnees", "end1": { "_type": "UMLAssociationEnd", - "_id": "AAAAAAGL3EL+BDWkXZY=", + "_id": "AAAAAAGMBppPWunPg3A=", "_parent": { - "$ref": "AAAAAAGL3EL+BDWjkdw=" + "$ref": "AAAAAAGMBppPWenO/AQ=" }, "reference": { "$ref": "AAAAAAGLpCJOKOeiXS4=" @@ -12979,27 +13286,14 @@ }, "end2": { "_type": "UMLAssociationEnd", - "_id": "AAAAAAGL3EL+BDWlhCY=", + "_id": "AAAAAAGMBppPWunQr5E=", "_parent": { - "$ref": "AAAAAAGL3EL+BDWjkdw=" - }, - "reference": { - "$ref": "AAAAAAGL3EKg2PrkEkk=" - }, - "navigable": "navigable" - } - }, - { - "_type": "UMLDependency", - "_id": "AAAAAAGL3EirT3fjUuE=", - "_parent": { - "$ref": "AAAAAAGLpCJOKOeiXS4=" - }, - "source": { - "$ref": "AAAAAAGLpCJOKOeiXS4=" - }, - "target": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" + "$ref": "AAAAAAGMBppPWenO/AQ=" + }, + "reference": { + "$ref": "AAAAAAGMBpo0VdxaKM0=" + }, + "navigable": "navigable" } } ], @@ -13133,6 +13427,16 @@ "name": "TemperatureMoyenne", "visibility": "private", "type": "float" + }, + { + "_type": "UMLAttribute", + "_id": "AAAAAAGMBkKf7yn3AyI=", + "_parent": { + "$ref": "AAAAAAGLpCJOKOeiXS4=" + }, + "name": "autoPause", + "visibility": "private", + "type": "bool" } ], "operations": [ @@ -13296,221 +13600,6 @@ } ] }, - { - "_type": "UMLClass", - "_id": "AAAAAAGLpCaAyvgA7mA=", - "_parent": { - "$ref": "AAAAAAFF+qBWK6M3Z8Y=" - }, - "name": "FrequenceCardiaque", - "ownedElements": [ - { - "_type": "UMLAssociation", - "_id": "AAAAAAGLpCh+BPmZgVw=", - "_parent": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "name": "*lesFC", - "end1": { - "_type": "UMLAssociationEnd", - "_id": "AAAAAAGLpCh+BPmaePw=", - "_parent": { - "$ref": "AAAAAAGLpCh+BPmZgVw=" - }, - "reference": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - } - }, - "end2": { - "_type": "UMLAssociationEnd", - "_id": "AAAAAAGLpCh+BPmbw+8=", - "_parent": { - "$ref": "AAAAAAGLpCh+BPmZgVw=" - }, - "reference": { - "$ref": "AAAAAAGLpCJOKOeiXS4=" - }, - "navigable": "navigable" - } - }, - { - "_type": "UMLAssociation", - "_id": "AAAAAAGLpDEFfjnQ35g=", - "_parent": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "name": "*lesFC", - "end1": { - "_type": "UMLAssociationEnd", - "_id": "AAAAAAGLpDEFfjnR/YI=", - "_parent": { - "$ref": "AAAAAAGLpDEFfjnQ35g=" - }, - "reference": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - } - }, - "end2": { - "_type": "UMLAssociationEnd", - "_id": "AAAAAAGLpDEFfjnSfnQ=", - "_parent": { - "$ref": "AAAAAAGLpDEFfjnQ35g=" - }, - "reference": { - "$ref": "AAAAAAGLpCJOKOeiXS4=" - }, - "navigable": "navigable" - } - }, - { - "_type": "UMLGeneralization", - "_id": "AAAAAAGL3EQsczLniMI=", - "_parent": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "source": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "target": { - "$ref": "AAAAAAGL3EKg2PrkEkk=" - } - } - ], - "attributes": [ - { - "_type": "UMLAttribute", - "_id": "AAAAAAGLrw3x6qEfQ7s=", - "_parent": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "name": "altitude", - "type": "float" - }, - { - "_type": "UMLAttribute", - "_id": "AAAAAAGLrw+HkMJEvmU=", - "_parent": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "name": "temps", - "type": "time" - }, - { - "_type": "UMLAttribute", - "_id": "AAAAAAGLrw+3WMN0bxo=", - "_parent": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "name": "bpm", - "type": "int" - }, - { - "_type": "UMLAttribute", - "_id": "AAAAAAGLrxAaycSkKog=", - "_parent": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "name": "longitude", - "type": "float" - }, - { - "_type": "UMLAttribute", - "_id": "AAAAAAGLrxA1ucXUBnc=", - "_parent": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "name": "latitude", - "type": "float" - }, - { - "_type": "UMLAttribute", - "_id": "AAAAAAGLrxP96QUNENY=", - "_parent": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "name": "temperature", - "type": "float" - } - ], - "operations": [ - { - "_type": "UMLOperation", - "_id": "AAAAAAGL3DaQRegiaqA=", - "_parent": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "name": "getAltitude", - "parameters": [ - { - "_type": "UMLParameter", - "_id": "AAAAAAGL3DbacOt0Hjo=", - "_parent": { - "$ref": "AAAAAAGL3DaQRegiaqA=" - }, - "type": "String", - "direction": "return" - } - ] - }, - { - "_type": "UMLOperation", - "_id": "AAAAAAGL3Dba0Owqrmc=", - "_parent": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "name": "getTemps", - "parameters": [ - { - "_type": "UMLParameter", - "_id": "AAAAAAGL3Db5bu5Q1Us=", - "_parent": { - "$ref": "AAAAAAGL3Dba0Owqrmc=" - }, - "type": "String", - "direction": "return" - } - ] - }, - { - "_type": "UMLOperation", - "_id": "AAAAAAGL3Db52O8G3pE=", - "_parent": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "name": "getBpm", - "parameters": [ - { - "_type": "UMLParameter", - "_id": "AAAAAAGL3DcZGvEsLCE=", - "_parent": { - "$ref": "AAAAAAGL3Db52O8G3pE=" - }, - "type": "String", - "direction": "return" - } - ] - }, - { - "_type": "UMLOperation", - "_id": "AAAAAAGL3DcZXfHiyL4=", - "_parent": { - "$ref": "AAAAAAGLpCaAyvgA7mA=" - }, - "name": "getposition", - "parameters": [ - { - "_type": "UMLParameter", - "_id": "AAAAAAGL3DdPIvQIH5c=", - "_parent": { - "$ref": "AAAAAAGL3DcZXfHiyL4=" - }, - "type": "String", - "direction": "return" - } - ] - } - ] - }, { "_type": "UMLClass", "_id": "AAAAAAGLpCqsVQhTM54=", @@ -15633,25 +15722,6 @@ } ] }, - { - "_type": "UMLClass", - "_id": "AAAAAAGL3EKg2PrkEkk=", - "_parent": { - "$ref": "AAAAAAFF+qBWK6M3Z8Y=" - }, - "name": "Donnees", - "attributes": [ - { - "_type": "UMLAttribute", - "_id": "AAAAAAGL3ESgLI019ac=", - "_parent": { - "$ref": "AAAAAAGL3EKg2PrkEkk=" - }, - "name": "idDonnees", - "type": "int" - } - ] - }, { "_type": "UMLClass", "_id": "AAAAAAGL8e8PLkVkOWg=", @@ -16531,6 +16601,106 @@ } } ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAGMBpdAZQuSkhA=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "IFileReader" + }, + { + "_type": "UMLClass", + "_id": "AAAAAAGMBpd9ig65uB8=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "AthlketeMgr", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAGMBperGiDRgno=", + "_parent": { + "$ref": "AAAAAAGMBpd9ig65uB8=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAGMBperGiDSkv4=", + "_parent": { + "$ref": "AAAAAAGMBperGiDRgno=" + }, + "reference": { + "$ref": "AAAAAAGMBpd9ig65uB8=" + } + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAGMBperGiDT2kA=", + "_parent": { + "$ref": "AAAAAAGMBperGiDRgno=" + }, + "reference": { + "$ref": "AAAAAAGMBpdAZQuSkhA=" + }, + "navigable": "navigable" + } + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAGMBpe7/CSbj9A=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "Fit", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAGMBpfYWi3Xomc=", + "_parent": { + "$ref": "AAAAAAGMBpe7/CSbj9A=" + }, + "source": { + "$ref": "AAAAAAGMBpe7/CSbj9A=" + }, + "target": { + "$ref": "AAAAAAGMBpdAZQuSkhA=" + } + } + ] + }, + { + "_type": "UMLClass", + "_id": "AAAAAAGMBpo0VdxaKM0=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "IAnalyseur" + }, + { + "_type": "UMLClass", + "_id": "AAAAAAGMBqILMC7uP0g=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "Analyseur", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAGMBsEyOCaJKLw=", + "_parent": { + "$ref": "AAAAAAGMBqILMC7uP0g=" + }, + "source": { + "$ref": "AAAAAAGMBqILMC7uP0g=" + }, + "target": { + "$ref": "AAAAAAGMBpo0VdxaKM0=" + } + } + ] } ] } diff --git a/Sources/composer.json b/Sources/composer.json index b3153fa4..ed3cc5ad 100755 --- a/Sources/composer.json +++ b/Sources/composer.json @@ -22,7 +22,7 @@ "require": { "twig/twig": "^3.0", "vlucas/phpdotenv": "^5.5", - "ext-cassandra": "*" + "adriangibbons/php-fit-file-analysis": "^3.2.0" }, "require-dev": { "phpunit/phpunit": "*" @@ -30,8 +30,5 @@ "scripts": { "dev": "php -S localhost:8080 -t public -d display_errors=1 -d error_reporting=E_ALL", "dev:console": "export APP_ENV=console && php public/index.php" - }, - "require": { - "adriangibbons/php-fit-file-analysis": "^3.2.0" } } diff --git a/Sources/composer.lock b/Sources/composer.lock index b4a70a29..199be5d5 100755 --- a/Sources/composer.lock +++ b/Sources/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "bfd53dc4398f8b68933fb703d8bd26b9", + "content-hash": "6dee42c458d187b6e08086b3015d19e1", "packages": [ { "name": "adriangibbons/php-fit-file-analysis", @@ -43,6 +43,547 @@ "source": "https://github.com/adriangibbons/php-fit-file-analysis/tree/master" }, "time": "2019-11-20T06:58:56+00:00" + }, + { + "name": "graham-campbell/result-type", + "version": "v1.1.2", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862", + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2023-11-12T22:16:48+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.2", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820", + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2023-11-12T21:59:55+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "42292d99c55abe617799667f454222c54c60e229" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", + "reference": "42292d99c55abe617799667f454222c54c60e229", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-07-28T09:04:16+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-01-26T09:26:14+00:00" + }, + { + "name": "twig/twig", + "version": "v3.8.0", + "source": { + "type": "git", + "url": "https://github.com/twigphp/Twig.git", + "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", + "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-php80": "^1.22" + }, + "require-dev": { + "psr/container": "^1.0|^2.0", + "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Twig\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com", + "homepage": "http://fabien.potencier.org", + "role": "Lead Developer" + }, + { + "name": "Twig Team", + "role": "Contributors" + }, + { + "name": "Armin Ronacher", + "email": "armin.ronacher@active-4.com", + "role": "Project Founder" + } + ], + "description": "Twig, the flexible, fast, and secure template language for PHP", + "homepage": "https://twig.symfony.com", + "keywords": [ + "templating" + ], + "support": { + "issues": "https://github.com/twigphp/Twig/issues", + "source": "https://github.com/twigphp/Twig/tree/v3.8.0" + }, + "funding": [ + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/twig/twig", + "type": "tidelift" + } + ], + "time": "2023-11-21T18:54:41+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.6.0", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.1.2", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.2", + "symfony/polyfill-ctype": "^1.24", + "symfony/polyfill-mbstring": "^1.24", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-filter": "*", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "5.6-dev" + } + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2023-11-12T22:43:29+00:00" } ], "packages-dev": [ diff --git a/Sources/config/config.php b/Sources/config/config.php index b7e79168..4625a198 100755 --- a/Sources/config/config.php +++ b/Sources/config/config.php @@ -14,13 +14,7 @@ const DB_HOST ='localhost'; const DB_DATABASE = 'heartTrack'; const DB_USER = 'toto'; const DB_PASSWORD = 'achanger'; -<<<<<<< HEAD -const APP_ENV = 'console'; - -const DSN = "mysql:host=" . DB_HOST . ";dbname=" . DB_DATABASE; -======= -const APP_ENV = 'development'; +const APP_ENV = 'console'; -const DSN = "mysql:host=" . DB_HOST . ";dbname=" . DB_DATABASE; ->>>>>>> 79311b1041e6dc02c8f58f9bc46bc20ba368ed58 +const DSN = "mysql:host=" . DB_HOST . ";dbname=" . DB_DATABASE; \ No newline at end of file diff --git a/Sources/src/console/Console.php b/Sources/src/console/Console.php index d557b38f..29baaf25 100755 --- a/Sources/src/console/Console.php +++ b/Sources/src/console/Console.php @@ -4,11 +4,9 @@ namespace Console; use DateTime; use Model\Athlete; -use Model\Coach; use Model\Role; -use Model\Training; -use Stub\StubData; use Manager\DataManager; +use Stub\StubData; $model = new StubData(); // Couche d'accès au model @@ -55,7 +53,7 @@ function displayProfileMenu() echo "Voir les statistiques de condition physique Général"; echo "3. Liste d'amis\n"; echo "4. Paramètres de confidentialité et visibilité\n"; - echo "5. Synchroniser un appareil\n"; + echo "5. Ajouter une activité\n"; // Importer des données (FIT/GPX/TCX)/Manuel // Synchroniser l'appareil de fréquence cardiaque // Synchroniser l'app mobile @@ -234,107 +232,55 @@ function registerUser(DataManager $model) } } -function ArrayAthleteMenu(DataManager $model) -{ - do { - displayManagementArrayAthlete(); - $coachChoice = trim(fgets(STDIN)); - - switch ($coachChoice) { - case '1': - echo "Renseignez le surnom de l'utilisateur : "; - $username = trim(fgets(STDIN)); - if($model->coachMgr->addUser($username)){ - echo "Ajout avec succès !"; - } else { - echo "Pb ajout !"; - } - sleep(2); - break; - case '2': - echo "Renseignez le surnom de l'utilisateur : "; - $username = trim(fgets(STDIN)); - if($model->coachMgr->removeUser($username)){ - echo "Suppression avec succès !"; - } else { - echo "Pb suppression ou aucun utilisateur de ce nom !"; - } - sleep(2); - break; - case '3': - $usersArray = $model->coachMgr->getUsersList(); - if (!empty($usersArray)) { - foreach ($usersArray as $value) { - echo $value->__toString() . "\n"; - } - } else { - echo "Aucun utilisateur dans la liste\n"; - } - sleep(2); - break; - case '0': - return; - default : - echo "Option invalide. Veuillez réessayer.\n"; - sleep(2); - break; - } - } while($coachChoice); -} +//function displayProfileMenu() +//{ +// clearScreen(); +// echo "\n--- Profil ---\n"; +// echo "1. Informations de l'utilisateur\n"; +// echo "2. Historique d'activité\n"; +// echo "Voir les statistiques de condition physique Général"; +// echo "3. Liste d'amis\n"; +// echo "4. Paramètres de confidentialité et visibilité\n"; +// echo "5. Ajouter un fichier\n"; +// // Importer des données (FIT/GPX/TCX)/Manuel +// // Synchroniser l'appareil de fréquence cardiaque +// // Synchroniser l'app mobile +// echo "0. Retour au menu principal\n"; +// echo "Choisissez une option: "; +//} -function ArrayTrainingMenu(DataManager $model) +function profileMenu(DataManager $model) { do { - displayManagementArrayTraining(); - $coachChoice = trim(fgets(STDIN)); + displayProfileMenu(); + $athleteChoice = trim(fgets(STDIN)); - switch ($coachChoice) { + switch ($athleteChoice) { case '1': - $existingTrainings = $model->coachMgr->getTrainingsList(); - $lastTraining = end($existingTrainings); - $lastTrainingId = $lastTraining ? $lastTraining->getId() : 0; - $newTrainingId = $lastTrainingId + 1; - - echo "L'ID de l'entraînement sera automatiquement défini sur : $newTrainingId\n"; - $date = new DateTime(); - echo "Renseignez la latitude de l'entraînement : "; - $latitude = trim(fgets(STDIN)); - echo "Renseignez la longitude de l'entraînement : "; - $longitude = trim(fgets(STDIN)); - echo "Renseignez la description de l'entraînement : "; - $description = trim(fgets(STDIN)); - - $training = new Training($newTrainingId, $date, $latitude, $longitude, $description, null); - - if($model->coachMgr->addTraining($training)){ - echo "Ajout avec succès !"; - } else { - echo "Pb ajout !"; - } + echo "Impossible pour l'instant"; sleep(2); break; - case '2': - echo "Renseignez l'id de l'entrainement : "; - $idTraining = trim(fgets(STDIN)); - if($model->coachMgr->removeTraining($idTraining)){ - echo "Suppression avec succès !"; - } else { - echo "Pb suppression ou aucun entrainement de cet id !"; - } - sleep(2); - break; - case '3': - $trainingArray = $model->coachMgr->getTrainingsList(); - if (!empty($trainingArray)) { - foreach ($trainingArray as $value) { - echo $value->__toString() . "\n"; + if($model->athleteMgr->getActivities()) { + foreach ($model->athleteMgr->getActivities() as $activity) { + echo $activity->__toString(); } } else { - echo "Aucun entrainement dans la liste\n"; + echo "Aucune activité sur votre profil"; } sleep(2); break; + case '5': + echo "Veuillez renseigner le chemin du fichier :\n"; + $passFile = trim(fgets(STDIN)); + echo "Veuillez renseigner le type d'activité :\n"; + $typeActivity = trim(fgets(STDIN)); + echo "Veuillez renseigner l'effort resenti (de 0 à 5) :\n"; + do { + $effort = trim(fgets(STDIN)); + } while ($effort < 0 || $effort > 5); + $isAddActivity = $model->activityMgr->uploadFile($typeActivity, $effort, $passFile); + echo $isAddActivity ? "Activité ajoutée avec succès" : "Erreur lors de l'ajout de l'activité"; case '0': return; default : @@ -342,244 +288,7 @@ function ArrayTrainingMenu(DataManager $model) sleep(2); break; } - } while($coachChoice); -} - -//function displayCoachMenu() -//{ -// clearScreen(); -// echo "\n--- Menu Coach ---\n"; -// echo "1. Liste des athlètes\n"; -// echo "2. Statistiques globales\n"; -// echo "3. Analyses par athlète\n"; -// echo "4. Gérer la liste de mes athlètes\n"; -// // Gérer les athlètes (comprend : Ajouter un athlète, Supprimer un athlète, Consulter les statistiques d'un athlète) -// echo "5. Gérer la liste de mes exercices\n"; -// echo "0. Retour au menu principal\n"; -// echo "Choisissez une option: "; -//} -function CoachMenu(DataManager $model) -{ - do { - displayCoachMenu(); - $coachChoice = trim(fgets(STDIN)); - - switch ($coachChoice) { - case '1': // echo "1. Liste des athlètes\n"; - $arrayUsers = $model->coachMgr->getUsersList(); - if (!empty($arrayUsers)) { - foreach ($arrayUsers as $value) { - echo $value->__toString() . "\n"; - } - } else { - echo "Aucun utilisateur dans la liste\n"; - } - sleep(2); - break; - case '2': // echo "2. Statistiques globales\n"; - $arrayUsers = $model->coachMgr->getUsersList(); - - if (!empty($arrayUsers)) { - do { - clearScreen(); - $cpt = 0; - foreach ($arrayUsers as $value) { - echo $cpt . " - " . $value->__toString() . "\n"; - $cpt = $cpt + 1; - } - - echo "Renseignez le numéro de l'utilisateur choisi : "; - $usernameNumber = trim(fgets(STDIN)); - - // Vérifier si l'index saisi est valide - if (isset($arrayUsers[$usernameNumber])) { - $selectedUser = $arrayUsers[$usernameNumber]; - if (($arrayStats = $model->coachMgr->getStatistics($selectedUser))) { - foreach ($arrayStats as $value) { - echo $value->__toString() . "\n"; - } - } else { - echo "Pas de statistiques valides présentent !\n"; - } - } else { - echo "Numéro d'utilisateur non valide.\n"; - $cpt = 0; - } - } while($cpt == 0); - } else { - echo "Aucun utilisateur dans la liste.\n"; - } - sleep(2); - break; - case '3': // echo "3. Analyses par athlète\n"; - $arrayUsers = $model->coachMgr->getUsersList(); - - if (!empty($arrayUsers)) { - do { - clearScreen(); - $cpt = 0; - foreach ($arrayUsers as $value) { - echo $cpt . " - " . $value->__toString() . "\n"; - $cpt = $cpt + 1; - } - - echo "Renseignez le numéro de l'utilisateur choisi : "; - $usernameNumber = trim(fgets(STDIN)); - - // Vérifier si l'index saisi est valide - if (isset($arrayUsers[$usernameNumber])) { - $selectedUser = $arrayUsers[$usernameNumber]; - if (($arrayStats = $model->coachMgr->getAnalyse($selectedUser))) { - foreach ($arrayStats as $value) { - echo $value->__toString() . "\n"; - } - } else { - echo "Pas d'Analyses valides présentent !\n"; - } - } else { - echo "Numéro d'utilisateur non valide.\n"; - $cpt = 0; - } - } while($cpt == 0); - } else { - echo "Aucun utilisateur dans la liste.\n"; - } - sleep(2); - break; - case '4': // echo "4. Gérer la liste de mes athlètes\n"; - ArrayAthleteMenu($model); - break; - case '5': // echo "5. Gérer la liste de mes exercices\n"; - ArrayTrainingMenu($model); - break; - case '0': // Quitter - return; - default: - echo "Option invalide. Veuillez réessayer.\n"; - sleep(2); - break; - } - } while($coachChoice); -} - -//function displaySocialManagementMenu() -//{ -// clearScreen(); -// echo "\n--- Gestion sociale ---\n"; -// echo "1. Rechercher des coach\n"; -// echo "2. Rechercher des athletes\n"; -// echo "3. Gérer la liste d'amis\n"; -// // Ajouter des amis -// // Supprimer des amis ... -// echo "4. Options de partage\n"; -// echo "0. Retour au menu principal\n"; -// echo "Choisissez une option: "; -//} - -function socialManagementMenu(DataManager $model) { - do { - displaySocialManagementMenu(); - $managementChoice = trim(fgets(STDIN)); - - switch ($managementChoice) { - case '1': // echo "1. Rechercher des coach\n"; - echo "Renseignez le surnom du coach que vous recherchez : "; - $coachUsername = trim(fgets(STDIN)); - if (($coach = $model->athleteMgr->getCoachByName($coachUsername)) != null) { - $coach->__toString(); - } else { - echo "Aucun coach de ce nom : $coachUsername\n"; - } - sleep(2); - break; - case '2': // echo "1. Rechercher des athletes\n"; - echo "Renseignez le surnom de l'athlete que vous recherchez : "; - $athleteUsername = trim(fgets(STDIN)); - if (($athlete = $model->athleteMgr->getAthleteByName($athleteUsername)) != null) { - $athlete->__toString(); - } else { - echo "Aucun athlete de ce nom : $athleteUsername\n"; - } - sleep(2); - break; - case '3': // echo "3. Gérer la liste d'amis\n"; - $arrayUsers = $model->coachMgr->getUsersList(); - - if (!empty($arrayUsers)) { - do { - clearScreen(); - $cpt = 0; - foreach ($arrayUsers as $value) { - echo $cpt . " - " . $value->__toString() . "\n"; - $cpt = $cpt + 1; - } - - echo "Renseignez le numéro de l'utilisateur choisi : "; - $usernameNumber = trim(fgets(STDIN)); - - // Vérifier si l'index saisi est valide - if (isset($arrayUsers[$usernameNumber])) { - $selectedUser = $arrayUsers[$usernameNumber]; - if (($arrayStats = $model->coachMgr->getStatistics($selectedUser))) { - foreach ($arrayStats as $value) { - echo $value->__toString() . "\n"; - } - } else { - echo "Pas de statistiques valides présentent !\n"; - } - } else { - echo "Numéro d'utilisateur non valide.\n"; - $cpt = 0; - } - } while($cpt == 0); - } else { - echo "Aucun utilisateur dans la liste.\n"; - } - sleep(2); - break; - case '4': // echo "4. Options de partage\n"; - $arrayUsers = $model->coachMgr->getUsersList(); - - if (!empty($arrayUsers)) { - do { - clearScreen(); - $cpt = 0; - foreach ($arrayUsers as $value) { - echo $cpt . " - " . $value->__toString() . "\n"; - $cpt = $cpt + 1; - } - - echo "Renseignez le numéro de l'utilisateur choisi : "; - $usernameNumber = trim(fgets(STDIN)); - - // Vérifier si l'index saisi est valide - if (isset($arrayUsers[$usernameNumber])) { - $selectedUser = $arrayUsers[$usernameNumber]; - if (($arrayStats = $model->coachMgr->getAnalyse($selectedUser))) { - foreach ($arrayStats as $value) { - echo $value->__toString() . "\n"; - } - } else { - echo "Pas d'Analyses valides présentent !\n"; - } - } else { - echo "Numéro d'utilisateur non valide.\n"; - $cpt = 0; - } - } while($cpt == 0); - } else { - echo "Aucun utilisateur dans la liste.\n"; - } - sleep(2); - break; - case '0': // echo "0. Retour au menu principal\n"; - return; - default: - echo "Option invalide. Veuillez réessayer.\n"; - sleep(2); - break; - } - } while($managementChoice); + } while($athleteChoice); } while (true) { @@ -627,9 +336,7 @@ while (true) { break; case '2': // Profil - displayProfileMenu(); - $profileChoice = trim(fgets(STDIN)); - // TODO: Ajouter la logique pour les options de profil ici. + profileMenu($model); break; case '3': // Analyse de la fréquence cardiaque @@ -639,18 +346,12 @@ while (true) { break; case '4': // Gestion sociale - socialManagementMenu($model); + displaySocialManagementMenu($model); // TODO: Ajouter la logique pour les options de gestion sociale ici. break; case '5': // Athlètes (pour les Coachs seulement) - if($model->userMgr->currentUser->getRole() instanceof \Model\Coach) { - CoachMenu($model); - // TODO: Ajouter la logique pour les options de coach ici. - } else { - echo "Vous n'avez pas accès à cette section ! (il faut etre coach)\n"; - sleep(2); - } + displayCoachMenu(); break; case '6': // Paramètres diff --git a/Sources/src/data/model/Activity.php b/Sources/src/data/model/Activity.php index a960c8c9..ec723b3b 100644 --- a/Sources/src/data/model/Activity.php +++ b/Sources/src/data/model/Activity.php @@ -1,30 +1,278 @@ idActivity = self::generateId(); + $this->type = $type; + $this->date = $date; + $this->heureDebut = $heureDebut; + $this->heureFin = $heureFin; + + if ($effortRessenti < 0 || $effortRessenti > 5) { + throw new \Exception("L'effort ressenti doit être compris entre 0 et 5"); + } + + $this->effortRessenti = $effortRessenti; + $this->variability = $variability; + $this->variance = $variance; + $this->standardDeviation = $standardDeviation; + $this->average = $average; + $this->maximum = $maximum; + $this->minimum = $minimum; + $this->avrTemperature = $avrTemperature; + $this->hasAutoPause = $hasPause; + } + + /** + * Génère un identifiant unique pour l'activité. + * + * @return int L'identifiant unique généré. + */ + private static function generateId(): int + { + self::$lastId++; + return self::$lastId; + } + + /** + * Obtient l'identifiant de l'activité. + * + * @return int L'identifiant de l'activité. + */ + public function getIdActivity(): int + { + return $this->idActivity; + } + + /** + * Obtient le type d'activité. + * + * @return String Le type d'activité. + */ + public function getType(): String + { + return $this->type; + } + + /** + * Obtient la date de l'activité. + * + * @return \DateTime La date de l'activité. + */ + public function getDate(): \DateTime + { + return $this->date; + } + + /** + * Obtient l'heure de début de l'activité. + * + * @return \DateTime L'heure de début de l'activité. + */ + public function getHeureDebut(): \DateTime + { + return $this->heureDebut; + } + + /** + * Obtient l'heure de fin de l'activité. + * + * @return \DateTime L'heure de fin de l'activité. + */ + public function getHeureFin(): \DateTime + { + return $this->heureFin; + } + + /** + * Obtient l'effort ressenti pour l'activité. + * + * @return int L'effort ressenti pour l'activité. + */ + public function getEffortRessenti(): int + { + return $this->effortRessenti; + } + + /** + * Obtient la variabilité de la fréquence cardiaque. + * + * @return float La variabilité de la fréquence cardiaque. + */ + public function getVariability(): float + { + return $this->variability; + } + + /** + * Obtient la variance de la fréquence cardiaque. + * + * @return float La variance de la fréquence cardiaque. + */ + public function getVariance(): float + { + return $this->variance; + } + + /** + * Obtient l'écart type de la fréquence cardiaque. + * + * @return float L'écart type de la fréquence cardiaque. + */ + public function getStandardDeviation(): float + { + return $this->standardDeviation; } - private function getAnalyse(Activity $activity):String{ - return $this->arrayData[$activity]->__to_String(); + + /** + * Obtient la moyenne de la fréquence cardiaque. + * + * @return float La moyenne de la fréquence cardiaque. + */ + public function getAverage(): float + { + return $this->average; + } + + /** + * Obtient la fréquence cardiaque maximale. + * + * @return int La fréquence cardiaque maximale. + */ + public function getMaximum(): int + { + return $this->maximum; + } + + /** + * Obtient la fréquence cardiaque minimale. + * + * @return int La fréquence cardiaque minimale. + */ + public function getMinimum(): int + { + return $this->minimum; + } + + /** + * Obtient la température moyenne pendant l'activité. + * + * @return float La température moyenne pendant l'activité. + */ + public function getAvrTemperature(): float + { + return $this->avrTemperature; + } + + /** + * Modifie le type d'activité. + * + * @param String $type Le nouveau type d'activité. + */ + public function setType(String $type): void + { + $this->type = $type; + } + + /** + * Modifie l'effort ressenti pour l'activité. + * + * @param int $effortRessenti Le nouvel effort ressenti. + * @throws \Exception Si l'effort ressenti n'est pas compris entre 0 et 5. + */ + public function setEffortRessenti(int $effortRessenti): void + { + if ($effortRessenti < 0 || $effortRessenti > 5) { + throw new \Exception("L'effort ressenti doit être compris entre 0 et 5"); + } + + $this->effortRessenti = $effortRessenti; + } + + /** + * Convertit l'objet Activity en chaîne de caractères. + * + * @return String La représentation de l'activité sous forme de chaîne de caractères. + */ + public function __toString(): String + { + return "Activité n°" . $this->idActivity . " : " . + $this->type . " le " . $this->date->format('d/m/Y') . + " de " . $this->heureDebut->format('H:i:s') . " à " . $this->heureFin->format('H:i:s') . + " avec un effort ressenti de " . $this->effortRessenti . "/5" . + " et une température moyenne de " . $this->avrTemperature . "°C" . + " et une variabilité de " . $this->variability . " bpm" . + " et une variance de " . $this->variance . " bpm" . + " et un écart type de " . $this->standardDeviation . " bpm" . + " et une moyenne de " . $this->average . " bpm" . + " et un maximum de " . $this->maximum . " bpm" . + " et un minimum de " . $this->minimum . " bpm" . + " et une pause automatique " . ($this->hasAutoPause ? "activée" : "désactivée") . ".\n"; } -} \ No newline at end of file +} +?> diff --git a/Sources/src/data/model/Athlete.php b/Sources/src/data/model/Athlete.php index ff6a5d43..dd67f502 100644 --- a/Sources/src/data/model/Athlete.php +++ b/Sources/src/data/model/Athlete.php @@ -1,100 +1,224 @@ trainingRepository = $trainingRepository; } - public function getAthlete():Athlete { + + /** + * Obtient l'instance d'athlète. + * + * @return Athlete L'instance d'athlète. + */ + public function getAthlete(): Athlete { return $this; } - public function getStatistic():?array{ + /** + * Obtient la liste des statistiques de l'athlète. + * + * @return array|null La liste des statistiques de l'athlète, ou null si aucune. + */ + public function getStatistic(): ?array { return $this->statsList; } - public function getActivite():?array{ + /** + * Obtient la liste des activités de l'athlète. + * + * @return array|null La liste des activités de l'athlète, ou null si aucune. + */ + public function getActivite(): ?array { return $this->activityList; } - public function getDataSource():?array{ + /** + * Obtient la liste des sources de données de l'athlète. + * + * @return array|null La liste des sources de données de l'athlète, ou null si aucune. + */ + public function getDataSource(): ?array { return $this->dataSourcesList; } - public function getUsersList(): array{ + /** + * Obtient la liste des utilisateurs associés à l'athlète. + * + * @return array La liste des utilisateurs associés à l'athlète. + */ + public function getUsersList(): array { return $this->usersList; } - public function getUserList(User $user): \Model\User{ + + /** + * Obtient un utilisateur spécifique associé à l'athlète. + * + * @param User $user L'utilisateur recherché. + * @return User L'utilisateur recherché. + */ + public function getUserList(User $user): User { return $user; } - public function getTraining(): ?TrainingRepository{ - return null; + + /** + * Obtient le repository des entraînements de l'athlète. + * + * @return TrainingRepository|null Le repository des entraînements de l'athlète, ou null. + * @throws NotImplementedException Si la méthode n'est pas implémentée. + */ + public function getTraining(): ?TrainingRepository { + throw new NotImplementedException("Pas de get Training"); } -// public function getTrainingsList(): ?array { -// if(foreach()) -// } + + /** + * Obtient la liste des entraînements de l'athlète. + * + * @param Training $training L'entraînement recherché. + * @return Training|null L'entraînement recherché, ou null si non trouvé. + */ public function getTrainingList(Training $training): ?Training { return $training; } + + /** + * Modifie la liste des entraînements de l'athlète. + * + * @param array $newTrainingsList La nouvelle liste des entraînements. + */ public function setTrainingsList(array $newTrainingsList): void { $this->trainingRepository->setTrainingsList($newTrainingsList); } + /** + * Obtient la liste des activités de l'athlète. + * + * @return array La liste des activités de l'athlète. + */ + public function getActivities(): array { + return $this->activityList; + } + + /** + * Vérifie si un utilisateur peut être ajouté en tant qu'athlète. + * + * @param User $user L'utilisateur à vérifier. + * @return bool True si l'utilisateur peut être ajouté, sinon false. + */ public function CheckAdd(User $user): bool { - if($user instanceof \Model\Athlete){ + if ($user instanceof Athlete) { return true; } else { return false; } } - public function CheckAddTraining(Training $training) : bool { + + /** + * Vérifie si un entraînement peut être ajouté à l'athlète. + * + * @param Training $training L'entraînement à vérifier. + * @return bool False (toujours, car l'athlète ne peut pas avoir d'entraînement). + */ + public function CheckAddTraining(Training $training): bool { return false; } - public function addUser(\Model\User $user): bool - { - if($this->CheckAdd($user)){ + + /** + * Ajoute un utilisateur à la liste des utilisateurs associés à l'athlète. + * + * @param User $user L'utilisateur à ajouter. + * @return bool True si l'ajout est réussi, sinon false. + */ + public function addUser(User $user): bool { + if ($this->CheckAdd($user)) { $this->usersList[] = $user; return true; } return false; } - public function removeUser(\Model\User $user): bool - { - if($this->CheckAdd($user)){ + /** + * Supprime un utilisateur de la liste des utilisateurs associés à l'athlète. + * + * @param User $user L'utilisateur à supprimer. + * @return bool True si la suppression est réussie, sinon false. + */ + public function removeUser(User $user): bool { + if ($this->CheckAdd($user)) { $this->usersList[] = $user; return true; } return false; } - public function delUser(\Model\User $user):bool{ - if($this->CheckAdd($user)){ + + /** + * Supprime un utilisateur de la liste des utilisateurs associés à l'athlète (méthode fictive). + * + * @param User $user L'utilisateur à supprimer. + * @return bool True si la suppression est réussie, sinon false. + */ + public function delUser(User $user): bool { + if ($this->CheckAdd($user)) { $this->usersList[] = null; return true; } return false; } - public function addTraining(Training $training): bool { + /** + * Ajoute une activité à la liste des activités de l'athlète. + * + * @param Activity $myActivity L'activité à ajouter. + * @return bool True si l'ajout est réussi, sinon false. + */ + public function addActivity(Activity $myActivity): bool { + if (isset($myActivity)) { + $this->activityList[] = $myActivity; + return true; + } return false; } - public function removeTraining(Training $training): bool { - return true; - } public function getTrainingsList(): ?array { // TODO: Implement getTrainingsList() method. - return null; } -} + public function addTraining(Training $training): bool + { + // TODO: Implement addTraining() method. + } + + public function removeTraining(Training $training): bool + { + // TODO: Implement removeTraining() method. + } +} ?> \ No newline at end of file diff --git a/Sources/src/data/model/Coach.php b/Sources/src/data/model/Coach.php deleted file mode 100644 index 2260b189..00000000 --- a/Sources/src/data/model/Coach.php +++ /dev/null @@ -1,25 +0,0 @@ - \ No newline at end of file diff --git a/Sources/src/data/model/CoachAthlete.php b/Sources/src/data/model/CoachAthlete.php deleted file mode 100644 index cb9e4fd6..00000000 --- a/Sources/src/data/model/CoachAthlete.php +++ /dev/null @@ -1,91 +0,0 @@ -trainingRepository = $trainingRepository; - } - public function getUsersList(): ?array { - if (!empty($this->usersList)) { - return $this->usersList; - } - return null; - } - public function getUserList(User $user): User { - foreach ($this->usersList as $existingUser) { - if ($existingUser->getId() === $user->getId()) { - return $existingUser; // L'utilisateur est présent dans la liste - } - } - return null; // L'utilisateur n'est pas dans la liste - } - public function getTraining(): TrainingRepository { - return $this->trainingRepository; - } - public function getTrainingsList(): ?array { - if (!empty($this->trainingRepository->getTrainingsList())) { - return $this->trainingRepository->getTrainingsList(); - } - return null; - } - public function getTrainingList(Training $training): ?Training { - foreach ($this->trainingRepository->getTrainingsList() as $existingTraining) { - if ($existingTraining->getId() === $training->getId()) { - return $existingTraining; // L'utilisateur est présent dans la liste - } - } - return null; // L'utilisateur n'est pas dans la liste - } - public function CheckAdd(User $user) : bool { - if($user->getRole() instanceof \Model\Athlete){ - return true; - } - return false; - } - public function CheckAddTraining(Training $training) : bool { - if($training instanceof \Model\Training){ - return true; - } - return false; - } - public function addUser(User $user): bool { - if($this->CheckAdd($user)){ - array_push($this->usersList, $user); - return true; - } - return false; - } - public function removeUser(User $user): bool { - if($this->CheckAdd($user)){ - $key = array_search($user, $this->usersList); - if ($key !== false) { - array_splice($this->usersList, $key, 1); - return true; - } - } - return false; - } - public function addTraining(Training $training): bool { - if($this->CheckAddTraining($training)){ - $this->trainingRepository->getTrainingsList()[] = $training; - return true; - } - return false; - } - public function removeTraining(Training $training): bool { - if($this->CheckAddTraining($training)){ - $array = (array)$this->trainingRepository->getTrainingsList(); - $key = array_search($training, $array); - if ($key !== false) { - array_splice($array, $key, 1); - $this->trainingRepository->setTrainingsList($array); - return true; - } - } - return false; - } -} \ No newline at end of file diff --git a/Sources/src/data/model/Data.php b/Sources/src/data/model/Data.php deleted file mode 100644 index eccd0967..00000000 --- a/Sources/src/data/model/Data.php +++ /dev/null @@ -1,7 +0,0 @@ -__to_String($dataSource); - } - public function __to_String(DataSource $dataSource):String{ - return "Source de données :" . $dataSource; - } -} \ No newline at end of file diff --git a/Sources/src/data/model/HeartRate.php b/Sources/src/data/model/HeartRate.php deleted file mode 100644 index c1d5fb78..00000000 --- a/Sources/src/data/model/HeartRate.php +++ /dev/null @@ -1,32 +0,0 @@ -altitude; - } - public function getTime():String{ - return $this->time; - } - public function getBpm():String{ - return $this->bpm; - } - public function getLongitude():String{ - return $this->longitude; - } - public function getLatitude():String{ - return $this->altitude; - } - public function getTemperature():String{ - return $this->temperature; - } -} \ No newline at end of file diff --git a/Sources/src/data/model/Role.php b/Sources/src/data/model/Role.php index 7969e294..1e7d0645 100644 --- a/Sources/src/data/model/Role.php +++ b/Sources/src/data/model/Role.php @@ -1,36 +1,117 @@ \ No newline at end of file diff --git a/Sources/src/data/model/Statistic.php b/Sources/src/data/model/Statistic.php deleted file mode 100644 index d43d1297..00000000 --- a/Sources/src/data/model/Statistic.php +++ /dev/null @@ -1,44 +0,0 @@ -idStatistic = $idStatistic; - $this->totalDistance = $totalDistance; - $this->weight = $weight; - $this->totalTime = $totalTime; - $this->avrHeartRate = $avrHeartRate; - $this->minHeartRate = $minHeartRate; - $this->maxHeartRate = $maxHeartRate; - $this->caloriesBurned = $caloriesBurned; - } - - public function getStatistic():Statistic{ - return $this; - } - - public function __toString(Statistic $stat):String{ - return "Statistiques : " . $this->getStatistic(); - } -} \ No newline at end of file diff --git a/Sources/src/data/model/Training.php b/Sources/src/data/model/Training.php deleted file mode 100644 index 06fc5c24..00000000 --- a/Sources/src/data/model/Training.php +++ /dev/null @@ -1,52 +0,0 @@ -idTraining = $idTraining; - $this->date = $date; - $this->latitude = $latitude; - $this->longitude = $longitude; - $this->description = $description; - $this->feedback = $feedback; - } - public function getId():int { - return $this->idTraining; - } - public function getDate():\DateTime { - return $this->date; - } - public function getLocation(): String { - return $this->longitude . $this->latitude; - } - public function getDescription(): String - { - return $this->description; - } - public function getFeedback(): String { - return $this->feedback; - } - - public function __toString(): String { - return $this->idTraining . " - " . $this->description; - } -} \ No newline at end of file diff --git a/Sources/src/data/model/User.php b/Sources/src/data/model/User.php index 8db25538..5b619047 100644 --- a/Sources/src/data/model/User.php +++ b/Sources/src/data/model/User.php @@ -1,10 +1,21 @@ role = $role; } + /** + * Obtient l'identifiant de l'utilisateur. + * + * @return int L'identifiant de l'utilisateur. + */ public function getId(): int { return $this->id; } + /** + * Définit l'identifiant de l'utilisateur. + * + * @param int $id Le nouvel identifiant de l'utilisateur. + */ public function setId(int $id): void { $this->id = $id; } - public function getUsername(): int { + /** + * Obtient le nom d'utilisateur de l'utilisateur. + * + * @return string Le nom d'utilisateur de l'utilisateur. + */ + public function getUsername(): string { return $this->username; } - public function setUsername(int $username): void { + /** + * Définit le nom d'utilisateur de l'utilisateur. + * + * @param string $username Le nouveau nom d'utilisateur de l'utilisateur. + */ + public function setUsername(string $username): void { $this->username = $username; } + /** + * Obtient le nom de l'utilisateur. + * + * @return string Le nom de l'utilisateur. + */ public function getNom(): string { return $this->nom; } + /** + * Définit le nom de l'utilisateur. + * + * @param string $nom Le nouveau nom de l'utilisateur. + */ public function setNom(string $nom): void { $this->nom = $nom; } + /** + * Obtient le prénom de l'utilisateur. + * + * @return string Le prénom de l'utilisateur. + */ public function getPrenom(): string { return $this->prenom; } + /** + * Définit le prénom de l'utilisateur. + * + * @param string $prenom Le nouveau prénom de l'utilisateur. + */ public function setPrenom(string $prenom): void { $this->prenom = $prenom; } + /** + * Obtient l'adresse e-mail de l'utilisateur. + * + * @return string L'adresse e-mail de l'utilisateur. + */ public function getEmail(): string { return $this->email; } + /** + * Définit l'adresse e-mail de l'utilisateur. + * + * @param string $email La nouvelle adresse e-mail de l'utilisateur. + */ public function setEmail(string $email): void { $this->email = $email; } /** - * @return string hashed password used to authenticate the user. + * Obtient le mot de passe haché de l'utilisateur. + * + * @return string Le mot de passe haché de l'utilisateur. */ public function getMotDePasse(): string { return $this->motDePasse; } + /** + * Définit le mot de passe haché de l'utilisateur. + * + * @param string $motDePasse Le nouveau mot de passe haché de l'utilisateur. + */ public function setMotDePasse(string $motDePasse): void { $this->motDePasse = $motDePasse; } + /** + * Obtient le sexe de l'utilisateur. + * + * @return string Le sexe de l'utilisateur. + */ public function getSexe(): string { return $this->sexe; } + /** + * Définit le sexe de l'utilisateur. + * + * @param string $sexe Le nouveau sexe de l'utilisateur. + */ public function setSexe(string $sexe): void { $this->sexe = $sexe; } + /** + * Obtient la taille de l'utilisateur. + * + * @return float La taille de l'utilisateur. + */ public function getTaille(): float { return $this->taille; } + /** + * Définit la taille de l'utilisateur. + * + * @param float $taille La nouvelle taille de l'utilisateur. + */ public function setTaille(float $taille): void { $this->taille = $taille; } + /** + * Obtient le poids de l'utilisateur. + * + * @return float Le poids de l'utilisateur. + */ public function getPoids(): float { return $this->poids; } + /** + * Définit le poids de l'utilisateur. + * + * @param float $poids Le nouveau poids de l'utilisateur. + */ public function setPoids(float $poids): void { $this->poids = $poids; } + /** + * Obtient la date de naissance de l'utilisateur. + * + * @return \DateTime La date de naissance de l'utilisateur. + */ public function getDateNaissance(): \DateTime { return $this->dateNaissance; } + /** + * Définit la date de naissance de l'utilisateur. + * + * @param \DateTime $dateNaissance La nouvelle date de naissance de l'utilisateur. + */ public function setDateNaissance(\DateTime $dateNaissance): void { $this->dateNaissance = $dateNaissance; } + /** + * Obtient le rôle de l'utilisateur. + * + * @return Role Le rôle de l'utilisateur. + */ public function getRole(): Role { return $this->role; } + /** + * Définit le rôle de l'utilisateur. + * + * @param Role $role Le nouveau rôle de l'utilisateur. + */ public function setRole(Role $role): void { $this->role = $role; } - public function isValidPassword(string $password) { - // TODO: Not implemented Hasher le mot de passe this not the responsability of the user this is not SOLID + /** + * Vérifie si le mot de passe fourni est valide. + * + * @param string $password Le mot de passe à vérifier. + * @return bool True si le mot de passe est valide, sinon false. + */ + public function isValidPassword(string $password): bool { + // TODO: Implémenter la vérification du mot de passe (hachage). return $this->motDePasse === $password; } - public function __toString() { - return "Athlete [ID: {$this->id}, Nom: {$this->nom}, Prénom: {$this->prenom}, Email: {$this->email}]"; + /** + * Obtient une représentation textuelle de l'utilisateur. + * + * @return string La représentation textuelle de l'utilisateur. + */ + public function __toString(): string { + return "Utilisateur [ID: {$this->id}, Nom: {$this->nom}, Prénom: {$this->prenom}, Email: {$this->email}]"; } - -} \ No newline at end of file +} +?> \ No newline at end of file diff --git a/Sources/src/data/model/fitFileReader/fitFiles/biking.fit b/Sources/src/data/model/fitFileReader/fitFiles/biking.fit new file mode 100644 index 0000000000000000000000000000000000000000..f1dd4fe167a8b051167e658c2623b10e0f142fd9 GIT binary patch literal 46927 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

PYQb4UHp*9`pTb>V6k1kor+8N2Bk_ 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 literal 0 HcmV?d00001 diff --git a/Sources/src/data/model/fitFileReader/fitFiles/cycling.fit b/Sources/src/data/model/fitFileReader/fitFiles/cycling.fit new file mode 100644 index 0000000000000000000000000000000000000000..f63df29ab3dee716ef7acc220b5a282616306104 GIT binary patch literal 100924 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 K1v+cXQ~v>hprnET literal 0 HcmV?d00001 diff --git a/Sources/src/data/model/fitFileReader/fitFiles/power.fit b/Sources/src/data/model/fitFileReader/fitFiles/power.fit new file mode 100644 index 0000000000000000000000000000000000000000..7ebd96a1625702c03b5a58086b7a8834a752ec44 GIT binary patch literal 113213 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 T6Y)8NWJY}c|Hw0+Z}a_sDiI=o literal 0 HcmV?d00001 diff --git a/Sources/src/data/model/fitFileReader/fitFiles/swim.fit b/Sources/src/data/model/fitFileReader/fitFiles/swim.fit new file mode 100644 index 0000000000000000000000000000000000000000..6ba7f5615d3797d72b1d5f8d096a85f0b7be7c86 GIT binary patch literal 6325 zcmai(3viUx703Vg?zhP%KoUYi-XRH(gg^-(7UU%ldHAS2qynXZq76`~#kS5^r`3$j z?kWnD)=q6ZPKz?q3J#-IY^Okr)!N6@!Z1^vGE8AAR;-p0MyYiq+yA-eyUS)bOBT-L z%YOgw-h0mPo^$VaQ&P4aPgMgG7GA#sm;-(aBEhyGNE#crHXgNc7+}(#O=q4;RE#y4 z7)_;ux%>teHg1eH&muJss6_Nqkcl9WLc18 z4}t5XSo*PSuE5wLV+R=C}K0IRJ}oM z%D9$K4h7zdIOVUY{LyMa%%GTGN0FiYb1kq{mB*-j@-{%svdyiL0#R0mZT@N`uuGNi zP&w%fBu|S_xl7v|9xC^Y2Rc=0k`-frw-FEv*n6ict3u`XuLgFjvX06N>j1GRmAkd~ z>QMRZ*}(0pyo$;~wkKAALHyczR1+%iS_G_C@4pnZX@+Wr! zVlnpK(bxBz7`!k_JyiNA6;ZoY+Z-15KAph}$N6~1IE&e4I8OQ=J)4!|w(bsPY(<&)xxu4QBHTbRZr=a3643mG4qHzmus)8$w)% zRp}vINB{{{+6ODfj<_8VD`ChI+WXMZxzjsAXKrT^l82JUKh5x_v!Ss>Y~z5t8zjJr&W2V{NeLb z1?&@4F*{`DMdW(m65^kb6zlJ!B_yA!PYH3!*UesMt!0+ehSB#I)OXTcEMK(wtWN|% zA{rzLf`pdDq99ouB{PO+)$qRfnL%&%Dd0J!cR!WiWDAl2W|FQ-UYv3$&KjGi}Q*gYK0|uU!M%=e~9H%7V%)dNnu^ z(rai^dIeki($lCodg8$pMp>*em)=Eduvh6_qH-$NWw8;=y}jw&i?*}#Bz##n- zjBLLj1({Ek3vv#7_2r_49u=fLigodpgqrEDGU7ls1?^cN8}Z)| zWNny+UuElV9*1eTpJn`I>mn^4OuHWt8_7g?*}gBELBAz=yo0+|WpW>t-h)w$bm)PP z^uyB(-c}}$Qn`k^9zMq>4~k6WdSE90iGG3bOJ$NzmCNL5_IfAF zx7ZkZRHRJkQS1b7Nz^iV$o2T7!THt7WK2Iy0>`8%C`vO4TxA=H^PWkqCf6ypp2=jx z4F;Pve&WH94cu?hS~*uXM;sHsLs@YP-;I>Xn^gKT)fN4!@hYkvCA=;_VDF`C)Wcr@lRZtNj_CBlT!BTm#cQpop8D0+=w!V~C$0=KpDGvRR`&Yn=K!$|f;^#hUqJqXw_Wc3}vLRTL2C4gwaX1x%^!tv(Y~8sZ7QENLYj9c%o_KKUy@1$6#_zNi zJpZQp%8v~$Xry1Iay`>UY!aDVP!D{;dwzF%jXO!DU*jgz*S*Tbzj*C>#xbdRt|&sdAZoz;XH)udC>L_~IqIi6#z6qLv-=bKfzz=S%sS6gnm+BNrlmkXrC2 zrkT{$Yr&h~-4B^)R9r@h2csqcVpDQ6YR7>zlTlQ9CRa1kArrrE`_^v^k274G)2Z~Q z9G|9gmS&XClRN%k@P=|;LgjJJQn9Jz{D#t#ckLeD$|wS>jyaHVe(RGaWpGGE3vazZ-m{LH{0=XSin*o6a@vBTX)!hEx7& zut-7voXSU*0b(<_fn21%wuA+*p6(b@xlOVhLZtBZEaP;1%$_<~TQLYE3 z=by-?=6_du`Bb^|j|PsTsS-TN2-FdND2lJ7*}p{`MV3j^3ApeOdIb zN$)%ATa;dGTVHw_6-Q4z@bqTq((C=i;AV|4=zuFI<^yGSAdj1JdEBmL? z%cshvH-o)?!uJxfd8F5>9{vgplD=UzjYdylbo zLo~4>b3IUwj?7b_%<~^T`56%;nu5fbAki8m#=65{9t7zrP-(^~P?e3>*m!NmS(<88dd9}2k>Y^2YHh8bIJY@M-uUl?aFf#=LJyv(DaH(#vAlNT!>@NTlXE4mL9 z4?g)}gz&G(vu%QTeLG?dlG+{~xQ8*Ixht literal 0 HcmV?d00001 diff --git a/Sources/src/data/model/fitFileSaver/jsonFiles/ActivitySave.json b/Sources/src/data/model/fitFileSaver/jsonFiles/ActivitySave.json new file mode 100644 index 00000000..912d686a --- /dev/null +++ b/Sources/src/data/model/fitFileSaver/jsonFiles/ActivitySave.json @@ -0,0 +1,27408 @@ +{ + "timestamps": [ + 1437474517, + 1437474518, + 1437474519, + 1437474520, + 1437474521, + 1437474522, + 1437474523, + 1437474524, + 1437474525, + 1437474526, + 1437474527, + 1437474528, + 1437474529, + 1437474530, + 1437474532, + 1437474533, + 1437474534, + 1437474535, + 1437474536, + 1437474537, + 1437474538, + 1437474539, + 1437474540, + 1437474541, + 1437474542, + 1437474543, + 1437474544, + 1437474545, + 1437474546, + 1437474547, + 1437474548, + 1437474549, + 1437474550, + 1437474551, + 1437474552, + 1437474553, + 1437474554, + 1437474555, + 1437474556, + 1437474557, + 1437474558, + 1437474559, + 1437474560, + 1437474561, + 1437474562, + 1437474563, + 1437474564, + 1437474566, + 1437474567, + 1437474568, + 1437474569, + 1437474570, + 1437474571, + 1437474572, + 1437474573, + 1437474574, + 1437474575, + 1437474576, + 1437474577, + 1437474578, + 1437474579, + 1437474580, + 1437474581, + 1437474582, + 1437474583, + 1437474584, + 1437474585, + 1437474586, + 1437474587, + 1437474588, + 1437474589, + 1437474590, + 1437474591, + 1437474592, + 1437474593, + 1437474594, + 1437474595, + 1437474596, + 1437474597, + 1437474598, + 1437474599, + 1437474600, + 1437474601, + 1437474603, + 1437474604, + 1437474605, + 1437474606, + 1437474607, + 1437474608, + 1437474609, + 1437474610, + 1437474611, + 1437474612, + 1437474613, + 1437474614, + 1437474615, + 1437474616, + 1437474617, + 1437474618, + 1437474619, + 1437474620, + 1437474621, + 1437474622, + 1437474623, + 1437474624, + 1437474626, + 1437474627, + 1437474628, + 1437474629, + 1437474630, + 1437474631, + 1437474632, + 1437474633, + 1437474634, + 1437474635, + 1437474636, + 1437474637, + 1437474638, + 1437474639, + 1437474640, + 1437474641, + 1437474642, + 1437474643, + 1437474644, + 1437474645, + 1437474646, + 1437474647, + 1437474648, + 1437474649, + 1437474650, + 1437474652, + 1437474653, + 1437474654, + 1437474655, + 1437474656, + 1437474657, + 1437474658, + 1437474659, + 1437474660, + 1437474661, + 1437474662, + 1437474663, + 1437474664, + 1437474665, + 1437474666, + 1437474667, + 1437474668, + 1437474669, + 1437474670, + 1437474671, + 1437474672, + 1437474673, + 1437474674, + 1437474675, + 1437474676, + 1437474677, + 1437474678, + 1437474679, + 1437474681, + 1437474682, + 1437474683, + 1437474684, + 1437474685, + 1437474686, + 1437474687, + 1437474688, + 1437474689, + 1437474690, + 1437474691, + 1437474692, + 1437474693, + 1437474694, + 1437474695, + 1437474696, + 1437474697, + 1437474698, + 1437474699, + 1437474700, + 1437474701, + 1437474702, + 1437474703, + 1437474705, + 1437474706, + 1437474707, + 1437474708, + 1437474709, + 1437474710, + 1437474711, + 1437474712, + 1437474713, + 1437474714, + 1437474715, + 1437474716, + 1437474717, + 1437474718, + 1437474719, + 1437474720, + 1437474721, + 1437474722, + 1437474723, + 1437474724, + 1437474725, + 1437474726, + 1437474727, + 1437474728, + 1437474729, + 1437474730, + 1437474732, + 1437474733, + 1437474734, + 1437474735, + 1437474736, + 1437474737, + 1437474738, + 1437474739, + 1437474740, + 1437474741, + 1437474742, + 1437474743, + 1437474744, + 1437474745, + 1437474746, + 1437474747, + 1437474748, + 1437474749, + 1437474750, + 1437474751, + 1437474752, + 1437474753, + 1437474754, + 1437474755, + 1437474756, + 1437474757, + 1437474758, + 1437474760, + 1437474761, + 1437474762, + 1437474763, + 1437474764, + 1437474765, + 1437474766, + 1437474767, + 1437474768, + 1437474769, + 1437474770, + 1437474771, + 1437474772, + 1437474773, + 1437474774, + 1437474775, + 1437474776, + 1437474777, + 1437474778, + 1437474779, + 1437474780, + 1437474781, + 1437474782, + 1437474783, + 1437474785, + 1437474786, + 1437474787, + 1437474788, + 1437474789, + 1437474790, + 1437474791, + 1437474792, + 1437474793, + 1437474794, + 1437474795, + 1437474796, + 1437474797, + 1437474798, + 1437474799, + 1437474800, + 1437474801, + 1437474802, + 1437474803, + 1437474804, + 1437474805, + 1437474806, + 1437474808, + 1437474809, + 1437474810, + 1437474811, + 1437474812, + 1437474813, + 1437474814, + 1437474815, + 1437474816, + 1437474817, + 1437474818, + 1437474819, + 1437474820, + 1437474821, + 1437474822, + 1437474823, + 1437474824, + 1437474825, + 1437474827, + 1437474828, + 1437474829, + 1437474830, + 1437474831, + 1437474832, + 1437474833, + 1437474834, + 1437474835, + 1437474836, + 1437474837, + 1437474838, + 1437474839, + 1437474840, + 1437474841, + 1437474842, + 1437474843, + 1437474844, + 1437474845, + 1437474846, + 1437474847, + 1437474848, + 1437474849, + 1437474850, + 1437474851, + 1437474852, + 1437474853, + 1437474854, + 1437474855, + 1437474856, + 1437474857, + 1437474859, + 1437474860, + 1437474861, + 1437474862, + 1437474863, + 1437474864, + 1437474865, + 1437474866, + 1437474867, + 1437474868, + 1437474869, + 1437474870, + 1437474871, + 1437474872, + 1437474873, + 1437474874, + 1437474875, + 1437474876, + 1437474877, + 1437474878, + 1437474879, + 1437474880, + 1437474881, + 1437474882, + 1437474883, + 1437474884, + 1437474885, + 1437474886, + 1437474887, + 1437474888, + 1437474890, + 1437474891, + 1437474892, + 1437474893, + 1437474894, + 1437474895, + 1437474896, + 1437474897, + 1437474898, + 1437474899, + 1437474900, + 1437474901, + 1437474902, + 1437474903, + 1437474904, + 1437474905, + 1437474906, + 1437474907, + 1437474908, + 1437474909, + 1437474910, + 1437474911, + 1437474912, + 1437474913, + 1437474914, + 1437474915, + 1437474916, + 1437474917, + 1437474918, + 1437474919, + 1437474920, + 1437474921, + 1437474923, + 1437474924, + 1437474925, + 1437474926, + 1437474927, + 1437474928, + 1437474929, + 1437474930, + 1437474931, + 1437474932, + 1437474933, + 1437474934, + 1437474935, + 1437474936, + 1437474937, + 1437474938, + 1437474939, + 1437474940, + 1437474941, + 1437474942, + 1437474943, + 1437474944, + 1437474945, + 1437474946, + 1437474947, + 1437474948, + 1437474949, + 1437474950, + 1437474951, + 1437474952, + 1437474953, + 1437474954, + 1437474955, + 1437474956, + 1437474957, + 1437474958, + 1437474959, + 1437474960, + 1437474962, + 1437474963, + 1437474964, + 1437474965, + 1437474966, + 1437474967, + 1437474968, + 1437474969, + 1437474970, + 1437474971, + 1437474972, + 1437474973, + 1437474974, + 1437474975, + 1437474976, + 1437474977, + 1437474978, + 1437474979, + 1437474980, + 1437474981, + 1437474982, + 1437474983, + 1437474984, + 1437474985, + 1437474986, + 1437474987, + 1437474988, + 1437474989, + 1437474990, + 1437474992, + 1437474993, + 1437474994, + 1437474995, + 1437474996, + 1437474997, + 1437474998, + 1437474999, + 1437475000, + 1437475001, + 1437475002, + 1437475003, + 1437475004, + 1437475005, + 1437475006, + 1437475007, + 1437475008, + 1437475009, + 1437475010, + 1437475012, + 1437475013, + 1437475014, + 1437475015, + 1437475016, + 1437475017, + 1437475018, + 1437475019, + 1437475020, + 1437475021, + 1437475022, + 1437475023, + 1437475024, + 1437475025, + 1437475026, + 1437475027, + 1437475029, + 1437475030, + 1437475031, + 1437475032, + 1437475033, + 1437475034, + 1437475035, + 1437475036, + 1437475037, + 1437475038, + 1437475039, + 1437475040, + 1437475041, + 1437475042, + 1437475043, + 1437475044, + 1437475045, + 1437475046, + 1437475047, + 1437475048, + 1437475049, + 1437475050, + 1437475051, + 1437475052, + 1437475054, + 1437475055, + 1437475056, + 1437475057, + 1437475058, + 1437475059, + 1437475060, + 1437475061, + 1437475062, + 1437475063, + 1437475064, + 1437475065, + 1437475066, + 1437475067, + 1437475068, + 1437475069, + 1437475070, + 1437475071, + 1437475072, + 1437475073, + 1437475074, + 1437475075, + 1437475076, + 1437475077, + 1437475078, + 1437475079, + 1437475080, + 1437475081, + 1437475083, + 1437475084, + 1437475085, + 1437475086, + 1437475087, + 1437475088, + 1437475089, + 1437475090, + 1437475091, + 1437475092, + 1437475093, + 1437475094, + 1437475095, + 1437475096, + 1437475097, + 1437475098, + 1437475099, + 1437475100, + 1437475101, + 1437475102, + 1437475103, + 1437475104, + 1437475105, + 1437475106, + 1437475107, + 1437475108, + 1437475109, + 1437475110, + 1437475112, + 1437475113, + 1437475114, + 1437475115, + 1437475116, + 1437475117, + 1437475118, + 1437475119, + 1437475120, + 1437475121, + 1437475122, + 1437475123, + 1437475124, + 1437475125, + 1437475126, + 1437475127, + 1437475128, + 1437475129, + 1437475130, + 1437475131, + 1437475132, + 1437475133, + 1437475134, + 1437475135, + 1437475136, + 1437475137, + 1437475138, + 1437475139, + 1437475140, + 1437475141, + 1437475142, + 1437475143, + 1437475145, + 1437475146, + 1437475147, + 1437475148, + 1437475149, + 1437475150, + 1437475151, + 1437475152, + 1437475153, + 1437475154, + 1437475155, + 1437475156, + 1437475157, + 1437475158, + 1437475159, + 1437475160, + 1437475161, + 1437475162, + 1437475163, + 1437475164, + 1437475165, + 1437475166, + 1437475167, + 1437475168, + 1437475169, + 1437475170, + 1437475171, + 1437475173, + 1437475174, + 1437475175, + 1437475176, + 1437475177, + 1437475178, + 1437475179, + 1437475180, + 1437475181, + 1437475182, + 1437475183, + 1437475184, + 1437475185, + 1437475186, + 1437475187, + 1437475188, + 1437475189, + 1437475190, + 1437475191, + 1437475192, + 1437475193, + 1437475194, + 1437475195, + 1437475196, + 1437475197, + 1437475198, + 1437475200, + 1437475201, + 1437475202, + 1437475203, + 1437475204, + 1437475205, + 1437475206, + 1437475207, + 1437475208, + 1437475209, + 1437475210, + 1437475211, + 1437475212, + 1437475213, + 1437475214, + 1437475215, + 1437475216, + 1437475217, + 1437475218, + 1437475219, + 1437475220, + 1437475221, + 1437475222, + 1437475223, + 1437475224, + 1437475225, + 1437475226, + 1437475227, + 1437475228, + 1437475230, + 1437475231, + 1437475232, + 1437475233, + 1437475234, + 1437475235, + 1437475236, + 1437475237, + 1437475238, + 1437475239, + 1437475240, + 1437475241, + 1437475242, + 1437475243, + 1437475244, + 1437475245, + 1437475246, + 1437475247, + 1437475248, + 1437475249, + 1437475250, + 1437475251, + 1437475252, + 1437475253, + 1437475254, + 1437475255, + 1437475256, + 1437475257, + 1437475258, + 1437475259, + 1437475260, + 1437475261, + 1437475262, + 1437475263, + 1437475264, + 1437475265, + 1437475266, + 1437475267, + 1437475269, + 1437475270, + 1437475271, + 1437475272, + 1437475273, + 1437475274, + 1437475275, + 1437475276, + 1437475277, + 1437475278, + 1437475279, + 1437475280, + 1437475281, + 1437475282, + 1437475283, + 1437475284, + 1437475285, + 1437475286, + 1437475287, + 1437475288, + 1437475289, + 1437475290, + 1437475291, + 1437475292, + 1437475293, + 1437475294, + 1437475295, + 1437475296, + 1437475297, + 1437475298, + 1437475299, + 1437475300, + 1437475301, + 1437475302, + 1437475303, + 1437475304, + 1437475305, + 1437475306, + 1437475308, + 1437475309, + 1437475310, + 1437475311, + 1437475312, + 1437475313, + 1437475314, + 1437475315, + 1437475316, + 1437475317, + 1437475318, + 1437475319, + 1437475320, + 1437475321, + 1437475322, + 1437475323, + 1437475324, + 1437475325, + 1437475326, + 1437475327, + 1437475328, + 1437475329, + 1437475330, + 1437475331, + 1437475332, + 1437475333, + 1437475334, + 1437475335, + 1437475336, + 1437475337, + 1437475338, + 1437475339, + 1437475340, + 1437475342, + 1437475343, + 1437475344, + 1437475345, + 1437475346, + 1437475347, + 1437475348, + 1437475349, + 1437475350, + 1437475351, + 1437475352, + 1437475353, + 1437475354, + 1437475355, + 1437475356, + 1437475357, + 1437475358, + 1437475359, + 1437475360, + 1437475361, + 1437475362, + 1437475363, + 1437475364, + 1437475365, + 1437475366, + 1437475367, + 1437475368, + 1437475369, + 1437475371, + 1437475372, + 1437475373, + 1437475374, + 1437475375, + 1437475376, + 1437475377, + 1437475378, + 1437475379, + 1437475380, + 1437475381, + 1437475382, + 1437475383, + 1437475384, + 1437475385, + 1437475386, + 1437475387, + 1437475388, + 1437475389, + 1437475390, + 1437475391, + 1437475392, + 1437475393, + 1437475394, + 1437475395, + 1437475396, + 1437475397, + 1437475398, + 1437475400, + 1437475401, + 1437475402, + 1437475403, + 1437475404, + 1437475405, + 1437475406, + 1437475407, + 1437475408, + 1437475409, + 1437475410, + 1437475411, + 1437475412, + 1437475413, + 1437475414, + 1437475415, + 1437475416, + 1437475417, + 1437475418, + 1437475419, + 1437475420, + 1437475421, + 1437475422, + 1437475423, + 1437475424, + 1437475425, + 1437475426, + 1437475427, + 1437475428, + 1437475429, + 1437475430, + 1437475431, + 1437475433, + 1437475434, + 1437475435, + 1437475436, + 1437475437, + 1437475438, + 1437475439, + 1437475440, + 1437475441, + 1437475442, + 1437475443, + 1437475444, + 1437475445, + 1437475446, + 1437475447, + 1437475448, + 1437475449, + 1437475450, + 1437475451, + 1437475452, + 1437475453, + 1437475454, + 1437475455, + 1437475456, + 1437475457, + 1437475458, + 1437475459, + 1437475460, + 1437475461, + 1437475462, + 1437475463, + 1437475464, + 1437475466, + 1437475467, + 1437475468, + 1437475469, + 1437475470, + 1437475471, + 1437475472, + 1437475473, + 1437475474, + 1437475475, + 1437475476, + 1437475477, + 1437475478, + 1437475479, + 1437475480, + 1437475481, + 1437475482, + 1437475483, + 1437475484, + 1437475485, + 1437475486, + 1437475487, + 1437475488, + 1437475489, + 1437475490, + 1437475491, + 1437475492, + 1437475493, + 1437475494, + 1437475495, + 1437475496, + 1437475497, + 1437475498, + 1437475499, + 1437475500, + 1437475501, + 1437475502, + 1437475503, + 1437475504, + 1437475505, + 1437475506, + 1437475507, + 1437475508, + 1437475510, + 1437475511, + 1437475512, + 1437475513, + 1437475514, + 1437475515, + 1437475516, + 1437475517, + 1437475518, + 1437475519, + 1437475520, + 1437475521, + 1437475522, + 1437475523, + 1437475524, + 1437475525, + 1437475526, + 1437475527, + 1437475528, + 1437475529, + 1437475530, + 1437475531, + 1437475532, + 1437475533, + 1437475534, + 1437475535, + 1437475536, + 1437475537, + 1437475538, + 1437475539, + 1437475540, + 1437475541, + 1437475542, + 1437475543, + 1437475544, + 1437475545, + 1437475546, + 1437475547, + 1437475548, + 1437475549, + 1437475551, + 1437475552, + 1437475553, + 1437475554, + 1437475555, + 1437475556, + 1437475557, + 1437475558, + 1437475559, + 1437475560, + 1437475561, + 1437475562, + 1437475563, + 1437475564, + 1437475565, + 1437475566, + 1437475567, + 1437475568, + 1437475569, + 1437475570, + 1437475571, + 1437475572, + 1437475573, + 1437475574, + 1437475575, + 1437475576, + 1437475577, + 1437475578, + 1437475580, + 1437475581, + 1437475582, + 1437475583, + 1437475584, + 1437475585, + 1437475586, + 1437475587, + 1437475588, + 1437475589, + 1437475590, + 1437475591, + 1437475592, + 1437475593, + 1437475594, + 1437475595, + 1437475596, + 1437475597, + 1437475598, + 1437475599, + 1437475600, + 1437475601, + 1437475602, + 1437475603, + 1437475604, + 1437475605, + 1437475606, + 1437475607, + 1437475608, + 1437475610, + 1437475611, + 1437475612, + 1437475613, + 1437475614, + 1437475615, + 1437475616, + 1437475617, + 1437475618, + 1437475619, + 1437475620, + 1437475621, + 1437475622, + 1437475623, + 1437475624, + 1437475625, + 1437475626, + 1437475627, + 1437475628, + 1437475629, + 1437475630, + 1437475631, + 1437475632, + 1437475633, + 1437475634, + 1437475636, + 1437475637, + 1437475638, + 1437475639, + 1437475640, + 1437475641, + 1437475642, + 1437475643, + 1437475644, + 1437475645, + 1437475646, + 1437475647, + 1437475648, + 1437475649, + 1437475650, + 1437475651, + 1437475652, + 1437475653, + 1437475654, + 1437475655, + 1437475656, + 1437475657, + 1437475658, + 1437475659, + 1437475660, + 1437475662, + 1437475663, + 1437475664, + 1437475665, + 1437475666, + 1437475667, + 1437475668, + 1437475669, + 1437475670, + 1437475671, + 1437475672, + 1437475673, + 1437475674, + 1437475675, + 1437475676, + 1437475677, + 1437475678, + 1437475679, + 1437475680, + 1437475681, + 1437475682, + 1437475683, + 1437475684, + 1437475685, + 1437475686, + 1437475687, + 1437475688, + 1437475689, + 1437475690, + 1437475691, + 1437475693, + 1437475694, + 1437475695, + 1437475696, + 1437475697, + 1437475698, + 1437475699, + 1437475700, + 1437475701, + 1437475702, + 1437475703, + 1437475704, + 1437475705, + 1437475706, + 1437475707, + 1437475708, + 1437475709, + 1437475710, + 1437475711, + 1437475712, + 1437475713, + 1437475714, + 1437475715, + 1437475716, + 1437475717, + 1437475718, + 1437475719, + 1437475720, + 1437475721, + 1437475722, + 1437475724, + 1437475725, + 1437475726, + 1437475727, + 1437475728, + 1437475729, + 1437475730, + 1437475731, + 1437475732, + 1437475733, + 1437475734, + 1437475735, + 1437475736, + 1437475737, + 1437475738, + 1437475739, + 1437475740, + 1437475741, + 1437475742, + 1437475743, + 1437475744, + 1437475745, + 1437475746, + 1437475747, + 1437475748, + 1437475749, + 1437475750, + 1437475751, + 1437475752, + 1437475753, + 1437475754, + 1437475755, + 1437475756, + 1437475758, + 1437475759, + 1437475760, + 1437475761, + 1437475762, + 1437475763, + 1437475764, + 1437475765, + 1437475766, + 1437475767, + 1437475768, + 1437475769, + 1437475770, + 1437475771, + 1437475772, + 1437475773, + 1437475774, + 1437475775, + 1437475776, + 1437475777, + 1437475778, + 1437475779, + 1437475780, + 1437475781, + 1437475782, + 1437475783, + 1437475784, + 1437475785, + 1437475786, + 1437475787, + 1437475788, + 1437475789, + 1437475791, + 1437475792, + 1437475793, + 1437475794, + 1437475795, + 1437475796, + 1437475797, + 1437475798, + 1437475799, + 1437475800, + 1437475801, + 1437475802, + 1437475803, + 1437475804, + 1437475805, + 1437475806, + 1437475807, + 1437475808, + 1437475809, + 1437475810, + 1437475811, + 1437475812, + 1437475813, + 1437475814, + 1437475815, + 1437475816, + 1437475817, + 1437475818, + 1437475819, + 1437475821, + 1437475822, + 1437475823, + 1437475824, + 1437475825, + 1437475826, + 1437475827, + 1437475828, + 1437475829, + 1437475830, + 1437475831, + 1437475832, + 1437475833, + 1437475834, + 1437475835, + 1437475836, + 1437475837, + 1437475838, + 1437475839, + 1437475840, + 1437475841, + 1437475842, + 1437475843, + 1437475844, + 1437475845, + 1437475846, + 1437475847, + 1437475848, + 1437475849, + 1437475850, + 1437475852, + 1437475853, + 1437475854, + 1437475855, + 1437475856, + 1437475857, + 1437475858, + 1437475859, + 1437475860, + 1437475861, + 1437475862, + 1437475863, + 1437475864, + 1437475865, + 1437475866, + 1437475867, + 1437475868, + 1437475869, + 1437475870, + 1437475871, + 1437475872, + 1437475873, + 1437475874, + 1437475875, + 1437475876, + 1437475878, + 1437475879, + 1437475880, + 1437475881, + 1437475882, + 1437475883, + 1437475884, + 1437475885, + 1437475886, + 1437475887, + 1437475888, + 1437475889, + 1437475890, + 1437475891, + 1437475892, + 1437475893, + 1437475894, + 1437475895, + 1437475896, + 1437475897, + 1437475898, + 1437475899, + 1437475900, + 1437475901, + 1437475902, + 1437475903, + 1437475905, + 1437475906, + 1437475907, + 1437475908, + 1437475909, + 1437475910, + 1437475911, + 1437475912, + 1437475913, + 1437475914, + 1437475915, + 1437475916, + 1437475917, + 1437475918, + 1437475919, + 1437475920, + 1437475921, + 1437475922, + 1437475923, + 1437475924, + 1437475925, + 1437475926, + 1437475927, + 1437475928, + 1437475929, + 1437475930, + 1437475931, + 1437475932, + 1437475933, + 1437475934, + 1437475935, + 1437475936, + 1437475938, + 1437475939, + 1437475940, + 1437475941, + 1437475942, + 1437475943, + 1437475944, + 1437475945, + 1437475946, + 1437475947, + 1437475948, + 1437475949, + 1437475950, + 1437475951, + 1437475952, + 1437475953, + 1437475954, + 1437475955, + 1437475956, + 1437475957, + 1437475958, + 1437475959, + 1437475960, + 1437475961, + 1437475962, + 1437475963, + 1437475964, + 1437475965, + 1437475967, + 1437475968, + 1437475969, + 1437475970, + 1437475971, + 1437475972, + 1437475973, + 1437475974, + 1437475975, + 1437475976, + 1437475977, + 1437475978, + 1437475979, + 1437475980, + 1437475981, + 1437475982, + 1437475983, + 1437475984, + 1437475985, + 1437475986, + 1437475987, + 1437475988, + 1437475989, + 1437475990, + 1437475991, + 1437475992, + 1437475993, + 1437475994, + 1437475995, + 1437475997, + 1437475998, + 1437475999, + 1437476000, + 1437476001, + 1437476002, + 1437476003, + 1437476004, + 1437476005, + 1437476006, + 1437476007, + 1437476008, + 1437476009, + 1437476010, + 1437476011, + 1437476012, + 1437476013, + 1437476014, + 1437476015, + 1437476016, + 1437476017, + 1437476019, + 1437476020, + 1437476021, + 1437476022, + 1437476023, + 1437476024, + 1437476025, + 1437476026, + 1437476027, + 1437476028, + 1437476029, + 1437476030, + 1437476031, + 1437476032, + 1437476033, + 1437476034, + 1437476035, + 1437476036, + 1437476037, + 1437476038, + 1437476039, + 1437476040, + 1437476041, + 1437476042, + 1437476043, + 1437476044, + 1437476045, + 1437476047, + 1437476048, + 1437476049, + 1437476050, + 1437476051, + 1437476052, + 1437476053, + 1437476054, + 1437476055, + 1437476056, + 1437476057, + 1437476058, + 1437476059, + 1437476060, + 1437476061, + 1437476062, + 1437476063, + 1437476064, + 1437476065, + 1437476066, + 1437476067, + 1437476068, + 1437476069, + 1437476070, + 1437476071, + 1437476072, + 1437476073, + 1437476074, + 1437476075, + 1437476076, + 1437476077, + 1437476079, + 1437476080, + 1437476081, + 1437476082, + 1437476083, + 1437476084, + 1437476085, + 1437476086, + 1437476087, + 1437476088, + 1437476089, + 1437476090, + 1437476091, + 1437476092, + 1437476093, + 1437476094, + 1437476095, + 1437476096, + 1437476097, + 1437476098, + 1437476099, + 1437476100, + 1437476101, + 1437476102, + 1437476103, + 1437476104, + 1437476105, + 1437476106, + 1437476107, + 1437476108, + 1437476109, + 1437476110, + 1437476112, + 1437476113, + 1437476114, + 1437476115, + 1437476116, + 1437476117, + 1437476118, + 1437476119, + 1437476120, + 1437476121, + 1437476122, + 1437476123, + 1437476124, + 1437476125, + 1437476126, + 1437476127, + 1437476128, + 1437476129, + 1437476130, + 1437476131, + 1437476132, + 1437476133, + 1437476134, + 1437476135, + 1437476136, + 1437476137, + 1437476138, + 1437476139, + 1437476140, + 1437476141, + 1437476142, + 1437476143, + 1437476144, + 1437476146, + 1437476147, + 1437476148, + 1437476149, + 1437476150, + 1437476151, + 1437476152, + 1437476153, + 1437476154, + 1437476155, + 1437476156, + 1437476157, + 1437476158, + 1437476159, + 1437476160, + 1437476161, + 1437476162, + 1437476163, + 1437476164, + 1437476165, + 1437476166, + 1437476167, + 1437476168, + 1437476169, + 1437476170, + 1437476171, + 1437476172, + 1437476173, + 1437476174, + 1437476175, + 1437476176, + 1437476177, + 1437476179, + 1437476180, + 1437476181, + 1437476182, + 1437476183, + 1437476184, + 1437476185, + 1437476186, + 1437476187, + 1437476188, + 1437476189, + 1437476190, + 1437476191, + 1437476192, + 1437476193, + 1437476194, + 1437476195, + 1437476196, + 1437476197, + 1437476198, + 1437476199, + 1437476200, + 1437476201, + 1437476202, + 1437476203, + 1437476204, + 1437476205, + 1437476206, + 1437476207, + 1437476208, + 1437476209, + 1437476211, + 1437476212, + 1437476213, + 1437476214, + 1437476215, + 1437476216, + 1437476217, + 1437476218, + 1437476219, + 1437476220, + 1437476221, + 1437476222, + 1437476223, + 1437476224, + 1437476225, + 1437476226, + 1437476227, + 1437476228, + 1437476229, + 1437476230, + 1437476231, + 1437476232, + 1437476233, + 1437476234, + 1437476235, + 1437476236, + 1437476237, + 1437476238, + 1437476239, + 1437476240, + 1437476241, + 1437476242, + 1437476243, + 1437476244, + 1437476245, + 1437476246, + 1437476248, + 1437476249, + 1437476250, + 1437476251, + 1437476252, + 1437476253, + 1437476254, + 1437476255, + 1437476256, + 1437476257, + 1437476258, + 1437476259, + 1437476260, + 1437476261, + 1437476262, + 1437476263, + 1437476264, + 1437476265, + 1437476266, + 1437476267, + 1437476268, + 1437476269, + 1437476270, + 1437476271, + 1437476272, + 1437476274, + 1437476275, + 1437476276, + 1437476277, + 1437476278, + 1437476279, + 1437476280, + 1437476281, + 1437476282, + 1437476283, + 1437476284, + 1437476285, + 1437476286, + 1437476287, + 1437476288, + 1437476289, + 1437476290, + 1437476291, + 1437476292, + 1437476293, + 1437476295, + 1437476296, + 1437476297, + 1437476298, + 1437476299, + 1437476300, + 1437476301, + 1437476302, + 1437476303, + 1437476304, + 1437476305, + 1437476306, + 1437476307, + 1437476308, + 1437476309, + 1437476310, + 1437476311, + 1437476312, + 1437476313, + 1437476314, + 1437476315, + 1437476316, + 1437476317, + 1437476318, + 1437476319, + 1437476320, + 1437476321, + 1437476323, + 1437476324, + 1437476325, + 1437476326, + 1437476327, + 1437476328, + 1437476329, + 1437476330, + 1437476331, + 1437476332, + 1437476333, + 1437476334, + 1437476335, + 1437476338, + 1437476339, + 1437476340, + 1437476341, + 1437476342, + 1437476343, + 1437476344, + 1437476345, + 1437476346, + 1437476347, + 1437476348, + 1437476349, + 1437476350, + 1437476351, + 1437476352, + 1437476353, + 1437476354, + 1437476355, + 1437476356, + 1437476357, + 1437476358, + 1437476360, + 1437476361, + 1437476362, + 1437476363, + 1437476364, + 1437476365, + 1437476366, + 1437476367, + 1437476368, + 1437476369, + 1437476370, + 1437476371, + 1437476372, + 1437476373, + 1437476374, + 1437476375, + 1437476376, + 1437476377, + 1437476378, + 1437476379, + 1437476380, + 1437476381, + 1437476382, + 1437476383, + 1437476384, + 1437476385, + 1437476386, + 1437476387, + 1437476389, + 1437476390, + 1437476391, + 1437476392, + 1437476393, + 1437476394, + 1437476395, + 1437476396, + 1437476397, + 1437476398, + 1437476399, + 1437476400, + 1437476401, + 1437476402, + 1437476403, + 1437476404, + 1437476405, + 1437476406, + 1437476407, + 1437476408, + 1437476410, + 1437476411, + 1437476412, + 1437476413, + 1437476414, + 1437476415, + 1437476416, + 1437476417, + 1437476418, + 1437476419, + 1437476420, + 1437476421, + 1437476422, + 1437476423, + 1437476424, + 1437476425, + 1437476426, + 1437476427, + 1437476428, + 1437476429, + 1437476430, + 1437476431, + 1437476432, + 1437476433, + 1437476434, + 1437476435, + 1437476436, + 1437476437, + 1437476438, + 1437476439, + 1437476441, + 1437476442, + 1437476443, + 1437476444, + 1437476445, + 1437476446, + 1437476447, + 1437476448, + 1437476449, + 1437476450, + 1437476451, + 1437476452, + 1437476453, + 1437476454, + 1437476455, + 1437476456, + 1437476457, + 1437476458, + 1437476459, + 1437476460, + 1437476461, + 1437476462, + 1437476463, + 1437476464, + 1437476465, + 1437476467, + 1437476468, + 1437476469, + 1437476470, + 1437476471, + 1437476472, + 1437476473, + 1437476474, + 1437476475, + 1437476476, + 1437476477, + 1437476478, + 1437476479, + 1437476480, + 1437476481, + 1437476482, + 1437476483, + 1437476484, + 1437476485, + 1437476486, + 1437476487, + 1437476488, + 1437476490, + 1437476491, + 1437476492, + 1437476493, + 1437476494, + 1437476495, + 1437476496, + 1437476497, + 1437476498, + 1437476499, + 1437476500, + 1437476501, + 1437476502, + 1437476503, + 1437476504, + 1437476505, + 1437476506, + 1437476507, + 1437476508, + 1437476509, + 1437476510, + 1437476511, + 1437476512, + 1437476513, + 1437476514, + 1437476515, + 1437476516, + 1437476517, + 1437476518, + 1437476519, + 1437476521, + 1437476522, + 1437476523, + 1437476524, + 1437476525, + 1437476526, + 1437476527, + 1437476528, + 1437476529, + 1437476530, + 1437476531, + 1437476532, + 1437476533, + 1437476534, + 1437476535, + 1437476536, + 1437476537, + 1437476538, + 1437476539, + 1437476540, + 1437476541, + 1437476542, + 1437476543, + 1437476544, + 1437476545, + 1437476547, + 1437476548, + 1437476549, + 1437476550, + 1437476551, + 1437476552, + 1437476553, + 1437476554, + 1437476555, + 1437476556, + 1437476557, + 1437476558, + 1437476559, + 1437476560, + 1437476561, + 1437476562, + 1437476563, + 1437476564, + 1437476565, + 1437476566, + 1437476567, + 1437476568, + 1437476569, + 1437476570, + 1437476571, + 1437476572, + 1437476573, + 1437476574, + 1437476576, + 1437476577, + 1437476578, + 1437476579, + 1437476580, + 1437476581, + 1437476582, + 1437476583, + 1437476584, + 1437476585, + 1437476586, + 1437476587, + 1437476588, + 1437476589, + 1437476590, + 1437476591, + 1437476592, + 1437476593, + 1437476594, + 1437476595, + 1437476596, + 1437476597, + 1437476598, + 1437476599, + 1437476601, + 1437476602, + 1437476603, + 1437476604, + 1437476605, + 1437476606, + 1437476607, + 1437476608, + 1437476609, + 1437476610, + 1437476611, + 1437476612, + 1437476613, + 1437476614, + 1437476615, + 1437476616, + 1437476617, + 1437476618, + 1437476619, + 1437476620, + 1437476621, + 1437476622, + 1437476623, + 1437476624, + 1437476625, + 1437476627, + 1437476628, + 1437476629, + 1437476630, + 1437476631, + 1437476632, + 1437476633, + 1437476634, + 1437476635, + 1437476636, + 1437476637, + 1437476638, + 1437476639, + 1437476640, + 1437476641, + 1437476642, + 1437476643, + 1437476644, + 1437476645, + 1437476646, + 1437476647, + 1437476648, + 1437476649, + 1437476650, + 1437476651, + 1437476652, + 1437476653, + 1437476654, + 1437476655, + 1437476656, + 1437476658, + 1437476659, + 1437476660, + 1437476661, + 1437476662, + 1437476663, + 1437476664, + 1437476665, + 1437476666, + 1437476667, + 1437476668, + 1437476669, + 1437476670, + 1437476671, + 1437476672, + 1437476673, + 1437476674, + 1437476675, + 1437476676, + 1437476677, + 1437476678, + 1437476679, + 1437476680, + 1437476681, + 1437476682, + 1437476683, + 1437476684, + 1437476685, + 1437476686, + 1437476687, + 1437476688, + 1437476689, + 1437476690, + 1437476691, + 1437476692, + 1437476694, + 1437476695, + 1437476696, + 1437476697, + 1437476698, + 1437476699, + 1437476700, + 1437476701, + 1437476702, + 1437476703, + 1437476704, + 1437476705, + 1437476706, + 1437476707, + 1437476708, + 1437476709, + 1437476710, + 1437476711, + 1437476712, + 1437476713, + 1437476714, + 1437476715, + 1437476716, + 1437476717, + 1437476718, + 1437476719, + 1437476720, + 1437476721, + 1437476723, + 1437476724, + 1437476725, + 1437476726, + 1437476727, + 1437476728, + 1437476729, + 1437476730, + 1437476731, + 1437476732, + 1437476733, + 1437476734, + 1437476735, + 1437476736, + 1437476737, + 1437476738, + 1437476739, + 1437476740, + 1437476741, + 1437476742, + 1437476743, + 1437476744, + 1437476745, + 1437476746, + 1437476747, + 1437476748, + 1437476749, + 1437476750, + 1437476751, + 1437476752, + 1437476753, + 1437476755, + 1437476756, + 1437476757, + 1437476758, + 1437476759, + 1437476760, + 1437476761, + 1437476762, + 1437476763, + 1437476764, + 1437476765, + 1437476766, + 1437476767, + 1437476768, + 1437476769, + 1437476770, + 1437476771, + 1437476772, + 1437476773, + 1437476774, + 1437476775, + 1437476776, + 1437476777, + 1437476778, + 1437476779, + 1437476780, + 1437476781, + 1437476782, + 1437476783, + 1437476784, + 1437476785, + 1437476786, + 1437476787, + 1437476788, + 1437476789, + 1437476791, + 1437476792, + 1437476793, + 1437476794, + 1437476795, + 1437476796, + 1437476797, + 1437476798, + 1437476799, + 1437476800, + 1437476801, + 1437476802, + 1437476803, + 1437476804, + 1437476805, + 1437476806, + 1437476807, + 1437476808, + 1437476809, + 1437476810, + 1437476811, + 1437476812, + 1437476813, + 1437476814, + 1437476815, + 1437476816, + 1437476817, + 1437476818, + 1437476819, + 1437476820, + 1437476821, + 1437476822, + 1437476824, + 1437476825, + 1437476826, + 1437476827, + 1437476828, + 1437476829, + 1437476830, + 1437476831, + 1437476832, + 1437476833, + 1437476834, + 1437476835, + 1437476836, + 1437476837, + 1437476838, + 1437476839, + 1437476840, + 1437476841, + 1437476842, + 1437476843, + 1437476844, + 1437476845, + 1437476846, + 1437476847, + 1437476848, + 1437476849, + 1437476850, + 1437476851, + 1437476852, + 1437476854, + 1437476855, + 1437476856, + 1437476857, + 1437476858, + 1437476859, + 1437476860, + 1437476861, + 1437476862, + 1437476863, + 1437476864, + 1437476865, + 1437476866, + 1437476867, + 1437476868, + 1437476869, + 1437476870, + 1437476871, + 1437476872, + 1437476873, + 1437476874, + 1437476875, + 1437476876, + 1437476877, + 1437476878, + 1437476879, + 1437476880, + 1437476881, + 1437476882, + 1437476883, + 1437476884, + 1437476886, + 1437476887, + 1437476888, + 1437476889, + 1437476890, + 1437476891, + 1437476892, + 1437476893, + 1437476894, + 1437476895, + 1437476896, + 1437476897, + 1437476898, + 1437476899, + 1437476900, + 1437476901, + 1437476902, + 1437476903, + 1437476904, + 1437476905, + 1437476906, + 1437476907, + 1437476908, + 1437476910, + 1437476911, + 1437476912, + 1437476913, + 1437476914, + 1437476915, + 1437476916, + 1437476917, + 1437476918, + 1437476919, + 1437476920, + 1437476921, + 1437476922, + 1437476923, + 1437476924, + 1437476925, + 1437476926, + 1437476927, + 1437476928, + 1437476929, + 1437476930, + 1437476931, + 1437476932, + 1437476933, + 1437476934, + 1437476935, + 1437476936, + 1437476938, + 1437476939, + 1437476940, + 1437476941, + 1437476942, + 1437476943, + 1437476944, + 1437476945, + 1437476946, + 1437476947, + 1437476948, + 1437476949, + 1437476950, + 1437476951, + 1437476952, + 1437476953, + 1437476954, + 1437476955, + 1437476956, + 1437476957, + 1437476958, + 1437476959, + 1437476960, + 1437476961, + 1437476962, + 1437476963, + 1437476964, + 1437476965, + 1437476966, + 1437476967, + 1437476969, + 1437476970, + 1437476971, + 1437476972, + 1437476973, + 1437476974, + 1437476975, + 1437476976, + 1437476977, + 1437476978, + 1437476979, + 1437476980, + 1437476981, + 1437476982, + 1437476983, + 1437476984, + 1437476985, + 1437476986, + 1437476987, + 1437476988, + 1437476989, + 1437476990, + 1437476991, + 1437476992, + 1437476993, + 1437476994, + 1437476996, + 1437476997, + 1437476998, + 1437476999, + 1437477000, + 1437477001, + 1437477002, + 1437477003, + 1437477004, + 1437477005, + 1437477006, + 1437477007, + 1437477008, + 1437477009, + 1437477010, + 1437477011, + 1437477012, + 1437477013, + 1437477014, + 1437477015, + 1437477016, + 1437477017, + 1437477018, + 1437477019, + 1437477020, + 1437477022, + 1437477023, + 1437477024, + 1437477025, + 1437477026, + 1437477027, + 1437477028, + 1437477029, + 1437477030, + 1437477031, + 1437477032, + 1437477033, + 1437477034, + 1437477035, + 1437477036, + 1437477037, + 1437477038, + 1437477039, + 1437477040, + 1437477041, + 1437477042, + 1437477043, + 1437477044, + 1437477045, + 1437477046, + 1437477047, + 1437477048, + 1437477050, + 1437477051, + 1437477052, + 1437477053, + 1437477054, + 1437477055, + 1437477056, + 1437477057, + 1437477058, + 1437477059, + 1437477060, + 1437477061, + 1437477062, + 1437477063, + 1437477064, + 1437477065, + 1437477066, + 1437477067, + 1437477068, + 1437477069, + 1437477070, + 1437477071, + 1437477072, + 1437477073, + 1437477075, + 1437477076, + 1437477077, + 1437477078, + 1437477079, + 1437477080, + 1437477081, + 1437477082, + 1437477083, + 1437477084, + 1437477085, + 1437477086, + 1437477087, + 1437477088, + 1437477089, + 1437477090, + 1437477091, + 1437477092, + 1437477093, + 1437477094, + 1437477095, + 1437477096, + 1437477097, + 1437477098, + 1437477099, + 1437477100, + 1437477101, + 1437477102, + 1437477103, + 1437477104, + 1437477105, + 1437477106, + 1437477107, + 1437477109, + 1437477110, + 1437477111, + 1437477112, + 1437477113, + 1437477114, + 1437477115, + 1437477116, + 1437477117, + 1437477118, + 1437477119, + 1437477120, + 1437477121, + 1437477122, + 1437477123, + 1437477124, + 1437477125, + 1437477126, + 1437477127, + 1437477128, + 1437477129, + 1437477130, + 1437477131, + 1437477132, + 1437477133, + 1437477134, + 1437477135, + 1437477136, + 1437477137, + 1437477138, + 1437477139, + 1437477140, + 1437477141, + 1437477143, + 1437477144, + 1437477145, + 1437477146, + 1437477147, + 1437477148, + 1437477149, + 1437477150, + 1437477151, + 1437477152, + 1437477153, + 1437477154, + 1437477155, + 1437477156, + 1437477157, + 1437477158, + 1437477159, + 1437477160, + 1437477161, + 1437477162, + 1437477163, + 1437477164, + 1437477165, + 1437477166, + 1437477167, + 1437477168, + 1437477169, + 1437477170, + 1437477171, + 1437477172, + 1437477173, + 1437477174, + 1437477175, + 1437477176, + 1437477178, + 1437477179, + 1437477180, + 1437477181, + 1437477182, + 1437477183, + 1437477184, + 1437477185, + 1437477186, + 1437477187, + 1437477188, + 1437477189, + 1437477190, + 1437477191, + 1437477192, + 1437477193, + 1437477194, + 1437477195, + 1437477196, + 1437477197, + 1437477198, + 1437477199, + 1437477200, + 1437477201, + 1437477202, + 1437477203, + 1437477204, + 1437477205, + 1437477206, + 1437477207, + 1437477208, + 1437477209, + 1437477210, + 1437477211, + 1437477212, + 1437477213, + 1437477215, + 1437477216, + 1437477217, + 1437477218, + 1437477219, + 1437477220, + 1437477221, + 1437477222, + 1437477223, + 1437477224, + 1437477225, + 1437477226, + 1437477227, + 1437477228, + 1437477229, + 1437477230, + 1437477231, + 1437477232, + 1437477233, + 1437477234, + 1437477235, + 1437477236, + 1437477237, + 1437477238, + 1437477239, + 1437477240, + 1437477241, + 1437477242, + 1437477243, + 1437477244, + 1437477245, + 1437477247, + 1437477248, + 1437477249, + 1437477250, + 1437477251, + 1437477252, + 1437477253, + 1437477254, + 1437477255, + 1437477256, + 1437477257, + 1437477258, + 1437477259, + 1437477260, + 1437477261, + 1437477262, + 1437477263, + 1437477264, + 1437477265, + 1437477266, + 1437477267, + 1437477268, + 1437477270, + 1437477271, + 1437477272, + 1437477273, + 1437477274, + 1437477275, + 1437477276, + 1437477277, + 1437477278, + 1437477279, + 1437477280, + 1437477281, + 1437477282, + 1437477283, + 1437477284, + 1437477285, + 1437477286, + 1437477287, + 1437477288, + 1437477289, + 1437477290, + 1437477291, + 1437477292, + 1437477294, + 1437477295, + 1437477296, + 1437477297, + 1437477298, + 1437477299, + 1437477300, + 1437477301, + 1437477302, + 1437477303, + 1437477304, + 1437477305, + 1437477306, + 1437477307, + 1437477308, + 1437477309, + 1437477310, + 1437477311, + 1437477312, + 1437477313, + 1437477314, + 1437477315, + 1437477316, + 1437477317, + 1437477318, + 1437477319, + 1437477321, + 1437477322, + 1437477323, + 1437477324, + 1437477325, + 1437477326, + 1437477327, + 1437477328, + 1437477329, + 1437477330, + 1437477331, + 1437477332, + 1437477333, + 1437477334, + 1437477335, + 1437477336, + 1437477337, + 1437477338, + 1437477339, + 1437477340, + 1437477341, + 1437477342, + 1437477343, + 1437477345, + 1437477346, + 1437477347, + 1437477348, + 1437477349, + 1437477350, + 1437477351, + 1437477352, + 1437477353, + 1437477354, + 1437477355, + 1437477356, + 1437477376, + 1437477377, + 1437477378, + 1437477379, + 1437477380, + 1437477381, + 1437477383, + 1437477384, + 1437477385, + 1437477386, + 1437477387, + 1437477388, + 1437477392, + 1437477393, + 1437477394, + 1437477395, + 1437477397, + 1437477398, + 1437477399, + 1437477400, + 1437477401, + 1437477402, + 1437477403, + 1437477404, + 1437477405, + 1437477406, + 1437477407, + 1437477408, + 1437477411, + 1437477412, + 1437477413, + 1437477414, + 1437477415, + 1437477417, + 1437477418, + 1437477419, + 1437477420, + 1437477421, + 1437477422, + 1437477423, + 1437477428, + 1437477429, + 1437477430, + 1437477432, + 1437477433, + 1437477434, + 1437477435, + 1437477436, + 1437477437, + 1437477438, + 1437477439, + 1437477440, + 1437477441, + 1437477442, + 1437477443, + 1437477444, + 1437477445, + 1437477446, + 1437477447, + 1437477448, + 1437477449, + 1437477450, + 1437477451, + 1437477452, + 1437477453, + 1437477454, + 1437477455, + 1437477456, + 1437477457, + 1437477458, + 1437477459, + 1437477461, + 1437477465, + 1437477466, + 1437477467, + 1437477468, + 1437477469, + 1437477470, + 1437477471, + 1437477472, + 1437477473, + 1437477474, + 1437477475, + 1437477476, + 1437477477, + 1437477478, + 1437477479, + 1437477480, + 1437477481, + 1437477482, + 1437477483, + 1437477484, + 1437477485, + 1437477486, + 1437477487, + 1437477488, + 1437477489, + 1437477490, + 1437477491, + 1437477492, + 1437477493, + 1437477494, + 1437477495, + 1437477496, + 1437477497, + 1437477498, + 1437477500, + 1437477501, + 1437477502, + 1437477503, + 1437477504, + 1437477505, + 1437477506, + 1437477507, + 1437477508, + 1437477509, + 1437477510, + 1437477511, + 1437477512, + 1437477513, + 1437477514, + 1437477515, + 1437477516, + 1437477517, + 1437477518, + 1437477519, + 1437477520, + 1437477521, + 1437477522, + 1437477523, + 1437477524, + 1437477525, + 1437477526, + 1437477527, + 1437477528, + 1437477529, + 1437477530, + 1437477532, + 1437477533, + 1437477534, + 1437477535, + 1437477536, + 1437477537, + 1437477538, + 1437477539, + 1437477540, + 1437477541, + 1437477542, + 1437477543, + 1437477544, + 1437477545, + 1437477546, + 1437477547, + 1437477548, + 1437477549, + 1437477550, + 1437477551, + 1437477552, + 1437477553, + 1437477555, + 1437477556, + 1437477557, + 1437477558, + 1437477559, + 1437477560, + 1437477561, + 1437477562, + 1437477563, + 1437477564, + 1437477565, + 1437477566, + 1437477567, + 1437477568, + 1437477569, + 1437477570, + 1437477571, + 1437477572, + 1437477573, + 1437477574, + 1437477575, + 1437477576, + 1437477577, + 1437477578, + 1437477580, + 1437477581, + 1437477582, + 1437477583, + 1437477584, + 1437477585, + 1437477586, + 1437477587, + 1437477588, + 1437477589, + 1437477590, + 1437477591, + 1437477592, + 1437477593, + 1437477594, + 1437477595, + 1437477596, + 1437477597, + 1437477598, + 1437477599, + 1437477600, + 1437477601, + 1437477604, + 1437477605, + 1437477607, + 1437477608, + 1437477609, + 1437477610, + 1437477611, + 1437477612, + 1437477613, + 1437477614, + 1437477615, + 1437477616, + 1437477617, + 1437477618, + 1437477619, + 1437477620, + 1437477621, + 1437477622, + 1437477623, + 1437477624, + 1437477625, + 1437477626, + 1437477627, + 1437477628, + 1437477629, + 1437477630, + 1437477631, + 1437477632, + 1437477633, + 1437477634, + 1437477635, + 1437477636, + 1437477638, + 1437477639, + 1437477640, + 1437477641, + 1437477642, + 1437477643, + 1437477644, + 1437477645, + 1437477646, + 1437477647, + 1437477648, + 1437477649, + 1437477650, + 1437477651, + 1437477652, + 1437477653, + 1437477654, + 1437477655, + 1437477656, + 1437477657, + 1437477658, + 1437477659, + 1437477660, + 1437477661, + 1437477662, + 1437477663, + 1437477664, + 1437477665, + 1437477666, + 1437477667, + 1437477668, + 1437477669, + 1437477671, + 1437477672, + 1437477673, + 1437477674, + 1437477676, + 1437477677, + 1437477678, + 1437477679, + 1437477680, + 1437477681, + 1437477682, + 1437477683, + 1437477684, + 1437477685, + 1437477688, + 1437477689, + 1437477690, + 1437477691, + 1437477692, + 1437477693, + 1437477695, + 1437477696, + 1437477697, + 1437477698, + 1437477699, + 1437477700, + 1437477701, + 1437477702, + 1437477703, + 1437477704, + 1437477705, + 1437477706 + ], + "latitudes": { + "1437474517": -11.63576, + "1437474518": -11.63576, + "1437474519": -11.63575, + "1437474520": -11.63574, + "1437474521": -11.63573, + "1437474522": -11.63573, + "1437474523": -11.63572, + "1437474524": -11.63572, + "1437474525": -11.63572, + "1437474526": -11.63572, + "1437474527": -11.63572, + "1437474528": -11.63572, + "1437474529": -11.63572, + "1437474530": -11.63571, + "1437474532": -11.6357, + "1437474533": -11.63569, + "1437474534": -11.63568, + "1437474535": -11.63567, + "1437474536": -11.63566, + "1437474537": -11.63565, + "1437474538": -11.63564, + "1437474539": -11.63563, + "1437474540": -11.63561, + "1437474541": -11.6356, + "1437474542": -11.6356, + "1437474543": -11.63559, + "1437474544": -11.63558, + "1437474545": -11.63557, + "1437474546": -11.63556, + "1437474547": -11.63554, + "1437474548": -11.63553, + "1437474549": -11.63552, + "1437474550": -11.63551, + "1437474551": -11.6355, + "1437474552": -11.63549, + "1437474553": -11.63549, + "1437474554": -11.63549, + "1437474555": -11.63549, + "1437474556": -11.63551, + "1437474557": -11.63552, + "1437474558": -11.63554, + "1437474559": -11.63557, + "1437474560": -11.63562, + "1437474561": -11.63567, + "1437474562": -11.63573, + "1437474563": -11.63579, + "1437474564": -11.63586, + "1437474566": -11.63593, + "1437474567": -11.63601, + "1437474568": -11.63608, + "1437474569": -11.63616, + "1437474570": -11.63624, + "1437474571": -11.63632, + "1437474572": -11.6364, + "1437474573": -11.63648, + "1437474574": -11.63657, + "1437474575": -11.63666, + "1437474576": -11.63675, + "1437474577": -11.63683, + "1437474578": -11.63691, + "1437474579": -11.637, + "1437474580": -11.63708, + "1437474581": -11.63717, + "1437474582": -11.63725, + "1437474583": -11.63732, + "1437474584": -11.63738, + "1437474585": -11.63741, + "1437474586": -11.63742, + "1437474587": -11.63739, + "1437474588": -11.63734, + "1437474589": -11.63728, + "1437474590": -11.63721, + "1437474591": -11.63713, + "1437474592": -11.63705, + "1437474593": -11.63697, + "1437474594": -11.63689, + "1437474595": -11.63681, + "1437474596": -11.63672, + "1437474597": -11.63665, + "1437474598": -11.63659, + "1437474599": -11.63655, + "1437474600": -11.63655, + "1437474601": -11.6366, + "1437474603": -11.63668, + "1437474604": -11.63677, + "1437474605": -11.63686, + "1437474606": -11.63696, + "1437474607": -11.63706, + "1437474608": -11.63715, + "1437474609": -11.63725, + "1437474610": -11.63735, + "1437474611": -11.63746, + "1437474612": -11.63756, + "1437474613": -11.63766, + "1437474614": -11.63776, + "1437474615": -11.63786, + "1437474616": -11.63796, + "1437474617": -11.63806, + "1437474618": -11.63815, + "1437474619": -11.63825, + "1437474620": -11.63835, + "1437474621": -11.63843, + "1437474622": -11.63847, + "1437474623": -11.63847, + "1437474624": -11.63844, + "1437474626": -11.63841, + "1437474627": -11.63838, + "1437474628": -11.63834, + "1437474629": -11.63828, + "1437474630": -11.6382, + "1437474631": -11.63811, + "1437474632": -11.63802, + "1437474633": -11.63795, + "1437474634": -11.63792, + "1437474635": -11.63791, + "1437474636": -11.63791, + "1437474637": -11.63791, + "1437474638": -11.63792, + "1437474639": -11.63792, + "1437474640": -11.63792, + "1437474641": -11.63793, + "1437474642": -11.63793, + "1437474643": -11.63793, + "1437474644": -11.63794, + "1437474645": -11.63794, + "1437474646": -11.63794, + "1437474647": -11.63794, + "1437474648": -11.63794, + "1437474649": -11.63794, + "1437474650": -11.63795, + "1437474652": -11.63795, + "1437474653": -11.63795, + "1437474654": -11.63795, + "1437474655": -11.63795, + "1437474656": -11.63796, + "1437474657": -11.63797, + "1437474658": -11.63799, + "1437474659": -11.638, + "1437474660": -11.63802, + "1437474661": -11.63804, + "1437474662": -11.63806, + "1437474663": -11.63808, + "1437474664": -11.63811, + "1437474665": -11.63814, + "1437474666": -11.63817, + "1437474667": -11.63822, + "1437474668": -11.63826, + "1437474669": -11.63829, + "1437474670": -11.63832, + "1437474671": -11.63834, + "1437474672": -11.63836, + "1437474673": -11.63838, + "1437474674": -11.63839, + "1437474675": -11.6384, + "1437474676": -11.63841, + "1437474677": -11.63842, + "1437474678": -11.63844, + "1437474679": -11.63845, + "1437474681": -11.63846, + "1437474682": -11.63847, + "1437474683": -11.63848, + "1437474684": -11.63849, + "1437474685": -11.6385, + "1437474686": -11.63851, + "1437474687": -11.63852, + "1437474688": -11.63853, + "1437474689": -11.63854, + "1437474690": -11.63855, + "1437474691": -11.63856, + "1437474692": -11.63857, + "1437474693": -11.63858, + "1437474694": -11.63859, + "1437474695": -11.6386, + "1437474696": -11.63861, + "1437474697": -11.63862, + "1437474698": -11.63863, + "1437474699": -11.63864, + "1437474700": -11.63865, + "1437474701": -11.63866, + "1437474702": -11.63867, + "1437474703": -11.63868, + "1437474705": -11.63869, + "1437474706": -11.6387, + "1437474707": -11.63871, + "1437474708": -11.63872, + "1437474709": -11.63873, + "1437474710": -11.63874, + "1437474711": -11.63875, + "1437474712": -11.63876, + "1437474713": -11.63877, + "1437474714": -11.63878, + "1437474715": -11.63879, + "1437474716": -11.6388, + "1437474717": -11.63881, + "1437474718": -11.63882, + "1437474719": -11.63884, + "1437474720": -11.63885, + "1437474721": -11.63887, + "1437474722": -11.63888, + "1437474723": -11.63889, + "1437474724": -11.63891, + "1437474725": -11.63892, + "1437474726": -11.63893, + "1437474727": -11.63894, + "1437474728": -11.63896, + "1437474729": -11.63897, + "1437474730": -11.63898, + "1437474732": -11.639, + "1437474733": -11.63901, + "1437474734": -11.63903, + "1437474735": -11.63905, + "1437474736": -11.63907, + "1437474737": -11.63909, + "1437474738": -11.63912, + "1437474739": -11.63915, + "1437474740": -11.63918, + "1437474741": -11.63921, + "1437474742": -11.63926, + "1437474743": -11.63931, + "1437474744": -11.63936, + "1437474745": -11.63942, + "1437474746": -11.63948, + "1437474747": -11.63954, + "1437474748": -11.63958, + "1437474749": -11.63961, + "1437474750": -11.63963, + "1437474751": -11.63963, + "1437474752": -11.63963, + "1437474753": -11.63961, + "1437474754": -11.6396, + "1437474755": -11.63958, + "1437474756": -11.63956, + "1437474757": -11.63954, + "1437474758": -11.63952, + "1437474760": -11.6395, + "1437474761": -11.63948, + "1437474762": -11.63947, + "1437474763": -11.63945, + "1437474764": -11.63943, + "1437474765": -11.63942, + "1437474766": -11.6394, + "1437474767": -11.63938, + "1437474768": -11.63937, + "1437474769": -11.63935, + "1437474770": -11.63934, + "1437474771": -11.63932, + "1437474772": -11.63931, + "1437474773": -11.63929, + "1437474774": -11.63927, + "1437474775": -11.63926, + "1437474776": -11.63925, + "1437474777": -11.63923, + "1437474778": -11.63922, + "1437474779": -11.6392, + "1437474780": -11.63918, + "1437474781": -11.63917, + "1437474782": -11.63915, + "1437474783": -11.63914, + "1437474785": -11.63912, + "1437474786": -11.63911, + "1437474787": -11.63909, + "1437474788": -11.63908, + "1437474789": -11.63906, + "1437474790": -11.63905, + "1437474791": -11.63904, + "1437474792": -11.63902, + "1437474793": -11.63901, + "1437474794": -11.639, + "1437474795": -11.63898, + "1437474796": -11.63897, + "1437474797": -11.63896, + "1437474798": -11.63895, + "1437474799": -11.63894, + "1437474800": -11.63893, + "1437474801": -11.63892, + "1437474802": -11.63892, + "1437474803": -11.63892, + "1437474804": -11.63892, + "1437474805": -11.63893, + "1437474806": -11.63895, + "1437474808": -11.63899, + "1437474809": -11.63904, + "1437474810": -11.6391, + "1437474811": -11.63916, + "1437474812": -11.63922, + "1437474813": -11.63928, + "1437474814": -11.63935, + "1437474815": -11.63941, + "1437474816": -11.63948, + "1437474817": -11.63954, + "1437474818": -11.63961, + "1437474819": -11.63967, + "1437474820": -11.63973, + "1437474821": -11.63979, + "1437474822": -11.63985, + "1437474823": -11.63992, + "1437474824": -11.63998, + "1437474825": -11.64004, + "1437474827": -11.6401, + "1437474828": -11.64016, + "1437474829": -11.64022, + "1437474830": -11.64029, + "1437474831": -11.64036, + "1437474832": -11.64042, + "1437474833": -11.64049, + "1437474834": -11.64056, + "1437474835": -11.64062, + "1437474836": -11.64069, + "1437474837": -11.64076, + "1437474838": -11.64083, + "1437474839": -11.6409, + "1437474840": -11.64098, + "1437474841": -11.64105, + "1437474842": -11.64113, + "1437474843": -11.6412, + "1437474844": -11.64128, + "1437474845": -11.64136, + "1437474846": -11.64144, + "1437474847": -11.64153, + "1437474848": -11.64161, + "1437474849": -11.6417, + "1437474850": -11.64179, + "1437474851": -11.64189, + "1437474852": -11.64199, + "1437474853": -11.64209, + "1437474854": -11.64219, + "1437474855": -11.6423, + "1437474856": -11.64241, + "1437474857": -11.64253, + "1437474859": -11.64265, + "1437474860": -11.64276, + "1437474861": -11.64287, + "1437474862": -11.64298, + "1437474863": -11.64309, + "1437474864": -11.6432, + "1437474865": -11.64331, + "1437474866": -11.64341, + "1437474867": -11.64352, + "1437474868": -11.64363, + "1437474869": -11.64373, + "1437474870": -11.64383, + "1437474871": -11.64394, + "1437474872": -11.64404, + "1437474873": -11.64414, + "1437474874": -11.64424, + "1437474875": -11.64434, + "1437474876": -11.64444, + "1437474877": -11.64454, + "1437474878": -11.64463, + "1437474879": -11.64473, + "1437474880": -11.64482, + "1437474881": -11.64491, + "1437474882": -11.645, + "1437474883": -11.64508, + "1437474884": -11.64516, + "1437474885": -11.64522, + "1437474886": -11.64529, + "1437474887": -11.64535, + "1437474888": -11.6454, + "1437474890": -11.64545, + "1437474891": -11.64549, + "1437474892": -11.64553, + "1437474893": -11.64555, + "1437474894": -11.64557, + "1437474895": -11.64558, + "1437474896": -11.64557, + "1437474897": -11.64554, + "1437474898": -11.64549, + "1437474899": -11.64543, + "1437474900": -11.64535, + "1437474901": -11.64528, + "1437474902": -11.6452, + "1437474903": -11.64513, + "1437474904": -11.64505, + "1437474905": -11.64497, + "1437474906": -11.6449, + "1437474907": -11.64483, + "1437474908": -11.64477, + "1437474909": -11.64471, + "1437474910": -11.64466, + "1437474911": -11.64462, + "1437474912": -11.64459, + "1437474913": -11.64457, + "1437474914": -11.64456, + "1437474915": -11.64456, + "1437474916": -11.64456, + "1437474917": -11.64456, + "1437474918": -11.64457, + "1437474919": -11.64458, + "1437474920": -11.64459, + "1437474921": -11.6446, + "1437474923": -11.64461, + "1437474924": -11.64462, + "1437474925": -11.64463, + "1437474926": -11.64464, + "1437474927": -11.64464, + "1437474928": -11.64462, + "1437474929": -11.64459, + "1437474930": -11.6445, + "1437474931": -11.64438, + "1437474932": -11.64426, + "1437474933": -11.64415, + "1437474934": -11.64406, + "1437474935": -11.64397, + "1437474936": -11.64388, + "1437474937": -11.6438, + "1437474938": -11.64372, + "1437474939": -11.64364, + "1437474940": -11.64356, + "1437474941": -11.64349, + "1437474942": -11.64342, + "1437474943": -11.64335, + "1437474944": -11.64328, + "1437474945": -11.64322, + "1437474946": -11.64316, + "1437474947": -11.64311, + "1437474948": -11.64306, + "1437474949": -11.64301, + "1437474950": -11.64296, + "1437474951": -11.64291, + "1437474952": -11.64285, + "1437474953": -11.6428, + "1437474954": -11.64274, + "1437474955": -11.64269, + "1437474956": -11.64263, + "1437474957": -11.64258, + "1437474958": -11.64251, + "1437474959": -11.64245, + "1437474960": -11.64237, + "1437474962": -11.64229, + "1437474963": -11.6422, + "1437474964": -11.6421, + "1437474965": -11.642, + "1437474966": -11.6419, + "1437474967": -11.64179, + "1437474968": -11.64169, + "1437474969": -11.64158, + "1437474970": -11.64147, + "1437474971": -11.64136, + "1437474972": -11.64125, + "1437474973": -11.64114, + "1437474974": -11.64103, + "1437474975": -11.64093, + "1437474976": -11.64082, + "1437474977": -11.64071, + "1437474978": -11.6406, + "1437474979": -11.6405, + "1437474980": -11.64039, + "1437474981": -11.64029, + "1437474982": -11.64018, + "1437474983": -11.64007, + "1437474984": -11.63996, + "1437474985": -11.63985, + "1437474986": -11.63974, + "1437474987": -11.63963, + "1437474988": -11.63951, + "1437474989": -11.63939, + "1437474990": -11.63927, + "1437474992": -11.63914, + "1437474993": -11.63902, + "1437474994": -11.6389, + "1437474995": -11.63877, + "1437474996": -11.63866, + "1437474997": -11.63856, + "1437474998": -11.63849, + "1437474999": -11.63845, + "1437475000": -11.63842, + "1437475001": -11.6384, + "1437475002": -11.63838, + "1437475003": -11.63837, + "1437475004": -11.63836, + "1437475005": -11.63836, + "1437475006": -11.63836, + "1437475007": -11.63836, + "1437475008": -11.63838, + "1437475009": -11.63842, + "1437475010": -11.6385, + "1437475012": -11.63865, + "1437475013": -11.6388, + "1437475014": -11.63896, + "1437475015": -11.6391, + "1437475016": -11.63926, + "1437475017": -11.6394, + "1437475018": -11.63956, + "1437475019": -11.6397, + "1437475020": -11.63985, + "1437475021": -11.64001, + "1437475022": -11.64016, + "1437475023": -11.64031, + "1437475024": -11.64047, + "1437475025": -11.64062, + "1437475026": -11.6408, + "1437475027": -11.64094, + "1437475029": -11.64112, + "1437475030": -11.64127, + "1437475031": -11.64141, + "1437475032": -11.64156, + "1437475033": -11.6417, + "1437475034": -11.64184, + "1437475035": -11.64197, + "1437475036": -11.64211, + "1437475037": -11.64225, + "1437475038": -11.64239, + "1437475039": -11.64253, + "1437475040": -11.64267, + "1437475041": -11.6428, + "1437475042": -11.64293, + "1437475043": -11.64305, + "1437475044": -11.64317, + "1437475045": -11.6433, + "1437475046": -11.64341, + "1437475047": -11.64352, + "1437475048": -11.64363, + "1437475049": -11.64374, + "1437475050": -11.64385, + "1437475051": -11.64396, + "1437475052": -11.64406, + "1437475054": -11.64416, + "1437475055": -11.64426, + "1437475056": -11.64437, + "1437475057": -11.64448, + "1437475058": -11.64458, + "1437475059": -11.64469, + "1437475060": -11.64479, + "1437475061": -11.6449, + "1437475062": -11.645, + "1437475063": -11.6451, + "1437475064": -11.6452, + "1437475065": -11.6453, + "1437475066": -11.6454, + "1437475067": -11.6455, + "1437475068": -11.6456, + "1437475069": -11.6457, + "1437475070": -11.6458, + "1437475071": -11.6459, + "1437475072": -11.646, + "1437475073": -11.6461, + "1437475074": -11.64621, + "1437475075": -11.64631, + "1437475076": -11.64641, + "1437475077": -11.64652, + "1437475078": -11.64662, + "1437475079": -11.64674, + "1437475080": -11.64686, + "1437475081": -11.64697, + "1437475083": -11.64705, + "1437475084": -11.64711, + "1437475085": -11.64716, + "1437475086": -11.6472, + "1437475087": -11.64724, + "1437475088": -11.64731, + "1437475089": -11.64732, + "1437475090": -11.64735, + "1437475091": -11.64738, + "1437475092": -11.64739, + "1437475093": -11.64742, + "1437475094": -11.64744, + "1437475095": -11.64747, + "1437475096": -11.6475, + "1437475097": -11.64752, + "1437475098": -11.64755, + "1437475099": -11.64758, + "1437475100": -11.64762, + "1437475101": -11.64765, + "1437475102": -11.6477, + "1437475103": -11.64775, + "1437475104": -11.64781, + "1437475105": -11.64788, + "1437475106": -11.64796, + "1437475107": -11.64803, + "1437475108": -11.64812, + "1437475109": -11.6482, + "1437475110": -11.64829, + "1437475112": -11.64838, + "1437475113": -11.64846, + "1437475114": -11.64855, + "1437475115": -11.64864, + "1437475116": -11.64873, + "1437475117": -11.64882, + "1437475118": -11.6489, + "1437475119": -11.64898, + "1437475120": -11.64905, + "1437475121": -11.64912, + "1437475122": -11.64919, + "1437475123": -11.64926, + "1437475124": -11.64933, + "1437475125": -11.6494, + "1437475126": -11.64947, + "1437475127": -11.64953, + "1437475128": -11.6496, + "1437475129": -11.64968, + "1437475130": -11.64975, + "1437475131": -11.64983, + "1437475132": -11.6499, + "1437475133": -11.64998, + "1437475134": -11.65005, + "1437475135": -11.65013, + "1437475136": -11.65021, + "1437475137": -11.6503, + "1437475138": -11.65038, + "1437475139": -11.65047, + "1437475140": -11.65055, + "1437475141": -11.65063, + "1437475142": -11.65068, + "1437475143": -11.65072, + "1437475145": -11.65074, + "1437475146": -11.65075, + "1437475147": -11.65075, + "1437475148": -11.65076, + "1437475149": -11.65077, + "1437475150": -11.65079, + "1437475151": -11.65083, + "1437475152": -11.6509, + "1437475153": -11.65097, + "1437475154": -11.65105, + "1437475155": -11.65113, + "1437475156": -11.65121, + "1437475157": -11.6513, + "1437475158": -11.65137, + "1437475159": -11.65143, + "1437475160": -11.65147, + "1437475161": -11.6515, + "1437475162": -11.65149, + "1437475163": -11.65146, + "1437475164": -11.65139, + "1437475165": -11.65128, + "1437475166": -11.65116, + "1437475167": -11.65104, + "1437475168": -11.65092, + "1437475169": -11.65081, + "1437475170": -11.65072, + "1437475171": -11.65071, + "1437475173": -11.65074, + "1437475174": -11.65079, + "1437475175": -11.65085, + "1437475176": -11.6509, + "1437475177": -11.65092, + "1437475178": -11.65089, + "1437475179": -11.65083, + "1437475180": -11.65074, + "1437475181": -11.65062, + "1437475182": -11.65052, + "1437475183": -11.65044, + "1437475184": -11.65036, + "1437475185": -11.65029, + "1437475186": -11.65022, + "1437475187": -11.65015, + "1437475188": -11.65008, + "1437475189": -11.65001, + "1437475190": -11.64994, + "1437475191": -11.64986, + "1437475192": -11.64979, + "1437475193": -11.64971, + "1437475194": -11.64963, + "1437475195": -11.64953, + "1437475196": -11.64943, + "1437475197": -11.64933, + "1437475198": -11.64925, + "1437475200": -11.64919, + "1437475201": -11.64914, + "1437475202": -11.64909, + "1437475203": -11.64904, + "1437475204": -11.649, + "1437475205": -11.64896, + "1437475206": -11.64892, + "1437475207": -11.64888, + "1437475208": -11.64885, + "1437475209": -11.64881, + "1437475210": -11.64877, + "1437475211": -11.64872, + "1437475212": -11.64866, + "1437475213": -11.64857, + "1437475214": -11.64847, + "1437475215": -11.64839, + "1437475216": -11.64832, + "1437475217": -11.64826, + "1437475218": -11.6482, + "1437475219": -11.64815, + "1437475220": -11.6481, + "1437475221": -11.64805, + "1437475222": -11.648, + "1437475223": -11.64795, + "1437475224": -11.6479, + "1437475225": -11.64784, + "1437475226": -11.64778, + "1437475227": -11.6477, + "1437475228": -11.64761, + "1437475230": -11.64751, + "1437475231": -11.64742, + "1437475232": -11.64734, + "1437475233": -11.64727, + "1437475234": -11.64719, + "1437475235": -11.6471, + "1437475236": -11.64701, + "1437475237": -11.64692, + "1437475238": -11.64684, + "1437475239": -11.64675, + "1437475240": -11.64667, + "1437475241": -11.64658, + "1437475242": -11.6465, + "1437475243": -11.64641, + "1437475244": -11.64633, + "1437475245": -11.64624, + "1437475246": -11.64616, + "1437475247": -11.64608, + "1437475248": -11.646, + "1437475249": -11.64592, + "1437475250": -11.64583, + "1437475251": -11.64575, + "1437475252": -11.64567, + "1437475253": -11.64558, + "1437475254": -11.64552, + "1437475255": -11.64547, + "1437475256": -11.64542, + "1437475257": -11.64533, + "1437475258": -11.64523, + "1437475259": -11.64516, + "1437475260": -11.6451, + "1437475261": -11.64505, + "1437475262": -11.64501, + "1437475263": -11.64497, + "1437475264": -11.64494, + "1437475265": -11.64491, + "1437475266": -11.64487, + "1437475267": -11.64484, + "1437475269": -11.64482, + "1437475270": -11.64479, + "1437475271": -11.64476, + "1437475272": -11.64474, + "1437475273": -11.64472, + "1437475274": -11.64469, + "1437475275": -11.64467, + "1437475276": -11.64465, + "1437475277": -11.64463, + "1437475278": -11.64461, + "1437475279": -11.64459, + "1437475280": -11.64457, + "1437475281": -11.64454, + "1437475282": -11.64452, + "1437475283": -11.6445, + "1437475284": -11.64448, + "1437475285": -11.64446, + "1437475286": -11.64444, + "1437475287": -11.64442, + "1437475288": -11.6444, + "1437475289": -11.64437, + "1437475290": -11.64435, + "1437475291": -11.64433, + "1437475292": -11.6443, + "1437475293": -11.64428, + "1437475294": -11.64425, + "1437475295": -11.64423, + "1437475296": -11.6442, + "1437475297": -11.64416, + "1437475298": -11.64413, + "1437475299": -11.6441, + "1437475300": -11.64406, + "1437475301": -11.64401, + "1437475302": -11.64396, + "1437475303": -11.64391, + "1437475304": -11.64386, + "1437475305": -11.6438, + "1437475306": -11.64374, + "1437475308": -11.64368, + "1437475309": -11.64361, + "1437475310": -11.64353, + "1437475311": -11.64345, + "1437475312": -11.64337, + "1437475313": -11.64329, + "1437475314": -11.6432, + "1437475315": -11.6431, + "1437475316": -11.64301, + "1437475317": -11.64291, + "1437475318": -11.64281, + "1437475319": -11.64271, + "1437475320": -11.64264, + "1437475321": -11.64261, + "1437475322": -11.64261, + "1437475323": -11.64263, + "1437475324": -11.64266, + "1437475325": -11.64271, + "1437475326": -11.64276, + "1437475327": -11.64283, + "1437475328": -11.64293, + "1437475329": -11.64304, + "1437475330": -11.64315, + "1437475331": -11.64326, + "1437475332": -11.64336, + "1437475333": -11.64344, + "1437475334": -11.64345, + "1437475335": -11.6434, + "1437475336": -11.64334, + "1437475337": -11.64326, + "1437475338": -11.64319, + "1437475339": -11.64312, + "1437475340": -11.64305, + "1437475342": -11.64297, + "1437475343": -11.64288, + "1437475344": -11.64278, + "1437475345": -11.64271, + "1437475346": -11.64261, + "1437475347": -11.64254, + "1437475348": -11.64247, + "1437475349": -11.64241, + "1437475350": -11.64235, + "1437475351": -11.64227, + "1437475352": -11.64217, + "1437475353": -11.64207, + "1437475354": -11.64198, + "1437475355": -11.64192, + "1437475356": -11.6419, + "1437475357": -11.64188, + "1437475358": -11.64186, + "1437475359": -11.64181, + "1437475360": -11.64175, + "1437475361": -11.64168, + "1437475362": -11.6416, + "1437475363": -11.64151, + "1437475364": -11.6414, + "1437475365": -11.64128, + "1437475366": -11.64117, + "1437475367": -11.64108, + "1437475368": -11.641, + "1437475369": -11.64093, + "1437475371": -11.64087, + "1437475372": -11.64082, + "1437475373": -11.64077, + "1437475374": -11.64075, + "1437475375": -11.64074, + "1437475376": -11.64077, + "1437475377": -11.64084, + "1437475378": -11.64094, + "1437475379": -11.64105, + "1437475380": -11.64115, + "1437475381": -11.64123, + "1437475382": -11.64124, + "1437475383": -11.64121, + "1437475384": -11.64119, + "1437475385": -11.64119, + "1437475386": -11.64124, + "1437475387": -11.64132, + "1437475388": -11.64141, + "1437475389": -11.6415, + "1437475390": -11.64159, + "1437475391": -11.64168, + "1437475392": -11.64176, + "1437475393": -11.64182, + "1437475394": -11.64183, + "1437475395": -11.64178, + "1437475396": -11.6417, + "1437475397": -11.64163, + "1437475398": -11.64156, + "1437475400": -11.64152, + "1437475401": -11.64153, + "1437475402": -11.64156, + "1437475403": -11.64159, + "1437475404": -11.64156, + "1437475405": -11.64149, + "1437475406": -11.64141, + "1437475407": -11.64132, + "1437475408": -11.64123, + "1437475409": -11.64114, + "1437475410": -11.64105, + "1437475411": -11.64096, + "1437475412": -11.64086, + "1437475413": -11.64077, + "1437475414": -11.64068, + "1437475415": -11.64059, + "1437475416": -11.64052, + "1437475417": -11.64047, + "1437475418": -11.64041, + "1437475419": -11.64036, + "1437475420": -11.64031, + "1437475421": -11.64027, + "1437475422": -11.64022, + "1437475423": -11.64018, + "1437475424": -11.64014, + "1437475425": -11.6401, + "1437475426": -11.64007, + "1437475427": -11.64003, + "1437475428": -11.63999, + "1437475429": -11.63995, + "1437475430": -11.63991, + "1437475431": -11.63987, + "1437475433": -11.63983, + "1437475434": -11.63979, + "1437475435": -11.63974, + "1437475436": -11.63969, + "1437475437": -11.63964, + "1437475438": -11.63959, + "1437475439": -11.63953, + "1437475440": -11.63947, + "1437475441": -11.63941, + "1437475442": -11.63933, + "1437475443": -11.63924, + "1437475444": -11.63915, + "1437475445": -11.63906, + "1437475446": -11.63896, + "1437475447": -11.63886, + "1437475448": -11.63876, + "1437475449": -11.63866, + "1437475450": -11.63856, + "1437475451": -11.63845, + "1437475452": -11.63835, + "1437475453": -11.63825, + "1437475454": -11.63815, + "1437475455": -11.63805, + "1437475456": -11.63795, + "1437475457": -11.63785, + "1437475458": -11.63776, + "1437475459": -11.63767, + "1437475460": -11.63758, + "1437475461": -11.63749, + "1437475462": -11.6374, + "1437475463": -11.63732, + "1437475464": -11.63724, + "1437475466": -11.63716, + "1437475467": -11.63709, + "1437475468": -11.63701, + "1437475469": -11.63694, + "1437475470": -11.63687, + "1437475471": -11.6368, + "1437475472": -11.63674, + "1437475473": -11.63667, + "1437475474": -11.63661, + "1437475475": -11.63655, + "1437475476": -11.63649, + "1437475477": -11.63644, + "1437475478": -11.63639, + "1437475479": -11.63634, + "1437475480": -11.63631, + "1437475481": -11.63627, + "1437475482": -11.63624, + "1437475483": -11.63622, + "1437475484": -11.6362, + "1437475485": -11.63619, + "1437475486": -11.63618, + "1437475487": -11.63617, + "1437475488": -11.63617, + "1437475489": -11.63617, + "1437475490": -11.63617, + "1437475491": -11.63617, + "1437475492": -11.63617, + "1437475493": -11.63617, + "1437475494": -11.63616, + "1437475495": -11.63615, + "1437475496": -11.63614, + "1437475497": -11.63613, + "1437475498": -11.63612, + "1437475499": -11.63611, + "1437475500": -11.63609, + "1437475501": -11.63608, + "1437475502": -11.63606, + "1437475503": -11.63604, + "1437475504": -11.63603, + "1437475505": -11.63601, + "1437475506": -11.63599, + "1437475507": -11.63596, + "1437475508": -11.63594, + "1437475510": -11.63592, + "1437475511": -11.6359, + "1437475512": -11.63588, + "1437475513": -11.63586, + "1437475514": -11.63584, + "1437475515": -11.63581, + "1437475516": -11.63579, + "1437475517": -11.63577, + "1437475518": -11.63575, + "1437475519": -11.63573, + "1437475520": -11.63571, + "1437475521": -11.63569, + "1437475522": -11.63567, + "1437475523": -11.63565, + "1437475524": -11.63563, + "1437475525": -11.63561, + "1437475526": -11.63559, + "1437475527": -11.63557, + "1437475528": -11.63556, + "1437475529": -11.63554, + "1437475530": -11.63553, + "1437475531": -11.63552, + "1437475532": -11.63551, + "1437475533": -11.6355, + "1437475534": -11.6355, + "1437475535": -11.63549, + "1437475536": -11.6355, + "1437475537": -11.6355, + "1437475538": -11.63551, + "1437475539": -11.63552, + "1437475540": -11.63554, + "1437475541": -11.63556, + "1437475542": -11.63559, + "1437475543": -11.63562, + "1437475544": -11.63566, + "1437475545": -11.6357, + "1437475546": -11.63575, + "1437475547": -11.6358, + "1437475548": -11.63585, + "1437475549": -11.6359, + "1437475551": -11.63595, + "1437475552": -11.63601, + "1437475553": -11.63607, + "1437475554": -11.63612, + "1437475555": -11.63618, + "1437475556": -11.63624, + "1437475557": -11.6363, + "1437475558": -11.63636, + "1437475559": -11.63642, + "1437475560": -11.63648, + "1437475561": -11.63655, + "1437475562": -11.63661, + "1437475563": -11.63667, + "1437475564": -11.63673, + "1437475565": -11.63679, + "1437475566": -11.63685, + "1437475567": -11.63691, + "1437475568": -11.63697, + "1437475569": -11.63703, + "1437475570": -11.63709, + "1437475571": -11.63714, + "1437475572": -11.6372, + "1437475573": -11.63725, + "1437475574": -11.6373, + "1437475575": -11.63734, + "1437475576": -11.63738, + "1437475577": -11.63741, + "1437475578": -11.63742, + "1437475580": -11.63741, + "1437475581": -11.63739, + "1437475582": -11.63736, + "1437475583": -11.63732, + "1437475584": -11.63728, + "1437475585": -11.63723, + "1437475586": -11.63718, + "1437475587": -11.63712, + "1437475588": -11.63707, + "1437475589": -11.63702, + "1437475590": -11.63697, + "1437475591": -11.63692, + "1437475592": -11.63687, + "1437475593": -11.63682, + "1437475594": -11.63677, + "1437475595": -11.63672, + "1437475596": -11.63669, + "1437475597": -11.63666, + "1437475598": -11.63664, + "1437475599": -11.63662, + "1437475600": -11.63661, + "1437475601": -11.63661, + "1437475602": -11.63661, + "1437475603": -11.63661, + "1437475604": -11.63661, + "1437475605": -11.63661, + "1437475606": -11.63661, + "1437475607": -11.6366, + "1437475608": -11.6366, + "1437475610": -11.63659, + "1437475611": -11.63658, + "1437475612": -11.63657, + "1437475613": -11.63657, + "1437475614": -11.63656, + "1437475615": -11.63656, + "1437475616": -11.63656, + "1437475617": -11.63656, + "1437475618": -11.63656, + "1437475619": -11.63657, + "1437475620": -11.63659, + "1437475621": -11.6366, + "1437475622": -11.63662, + "1437475623": -11.63664, + "1437475624": -11.63666, + "1437475625": -11.63669, + "1437475626": -11.63672, + "1437475627": -11.63675, + "1437475628": -11.63678, + "1437475629": -11.63681, + "1437475630": -11.63685, + "1437475631": -11.63688, + "1437475632": -11.63692, + "1437475633": -11.63696, + "1437475634": -11.63701, + "1437475636": -11.63705, + "1437475637": -11.6371, + "1437475638": -11.63714, + "1437475639": -11.63719, + "1437475640": -11.63724, + "1437475641": -11.63729, + "1437475642": -11.63735, + "1437475643": -11.6374, + "1437475644": -11.63745, + "1437475645": -11.63751, + "1437475646": -11.63756, + "1437475647": -11.63761, + "1437475648": -11.63767, + "1437475649": -11.63773, + "1437475650": -11.63779, + "1437475651": -11.63784, + "1437475652": -11.6379, + "1437475653": -11.63796, + "1437475654": -11.63802, + "1437475655": -11.63808, + "1437475656": -11.63814, + "1437475657": -11.6382, + "1437475658": -11.63826, + "1437475659": -11.63832, + "1437475660": -11.63838, + "1437475662": -11.63843, + "1437475663": -11.63846, + "1437475664": -11.63847, + "1437475665": -11.63847, + "1437475666": -11.63846, + "1437475667": -11.63845, + "1437475668": -11.63844, + "1437475669": -11.63842, + "1437475670": -11.63839, + "1437475671": -11.63837, + "1437475672": -11.63834, + "1437475673": -11.63831, + "1437475674": -11.63826, + "1437475675": -11.6382, + "1437475676": -11.63814, + "1437475677": -11.63809, + "1437475678": -11.63804, + "1437475679": -11.638, + "1437475680": -11.63796, + "1437475681": -11.63794, + "1437475682": -11.63793, + "1437475683": -11.63793, + "1437475684": -11.63792, + "1437475685": -11.63792, + "1437475686": -11.63792, + "1437475687": -11.63792, + "1437475688": -11.63792, + "1437475689": -11.63793, + "1437475690": -11.63793, + "1437475691": -11.63793, + "1437475693": -11.63793, + "1437475694": -11.63793, + "1437475695": -11.63793, + "1437475696": -11.63793, + "1437475697": -11.63794, + "1437475698": -11.63794, + "1437475699": -11.63794, + "1437475700": -11.63794, + "1437475701": -11.63795, + "1437475702": -11.63795, + "1437475703": -11.63795, + "1437475704": -11.63795, + "1437475705": -11.63795, + "1437475706": -11.63795, + "1437475707": -11.63795, + "1437475708": -11.63795, + "1437475709": -11.63795, + "1437475710": -11.63795, + "1437475711": -11.63795, + "1437475712": -11.63795, + "1437475713": -11.63795, + "1437475714": -11.63795, + "1437475715": -11.63795, + "1437475716": -11.63795, + "1437475717": -11.63795, + "1437475718": -11.63795, + "1437475719": -11.63795, + "1437475720": -11.63795, + "1437475721": -11.63795, + "1437475722": -11.63795, + "1437475724": -11.63795, + "1437475725": -11.63796, + "1437475726": -11.63796, + "1437475727": -11.63796, + "1437475728": -11.63796, + "1437475729": -11.63796, + "1437475730": -11.63797, + "1437475731": -11.63797, + "1437475732": -11.63798, + "1437475733": -11.63798, + "1437475734": -11.63799, + "1437475735": -11.63799, + "1437475736": -11.63799, + "1437475737": -11.638, + "1437475738": -11.63801, + "1437475739": -11.63801, + "1437475740": -11.63802, + "1437475741": -11.63803, + "1437475742": -11.63805, + "1437475743": -11.63806, + "1437475744": -11.63808, + "1437475745": -11.6381, + "1437475746": -11.63812, + "1437475747": -11.63814, + "1437475748": -11.63816, + "1437475749": -11.63819, + "1437475750": -11.63822, + "1437475751": -11.63824, + "1437475752": -11.63826, + "1437475753": -11.63827, + "1437475754": -11.63829, + "1437475755": -11.6383, + "1437475756": -11.63831, + "1437475758": -11.63832, + "1437475759": -11.63833, + "1437475760": -11.63834, + "1437475761": -11.63835, + "1437475762": -11.63836, + "1437475763": -11.63837, + "1437475764": -11.63838, + "1437475765": -11.63839, + "1437475766": -11.6384, + "1437475767": -11.6384, + "1437475768": -11.63841, + "1437475769": -11.63842, + "1437475770": -11.63842, + "1437475771": -11.63843, + "1437475772": -11.63844, + "1437475773": -11.63845, + "1437475774": -11.63845, + "1437475775": -11.63846, + "1437475776": -11.63847, + "1437475777": -11.63848, + "1437475778": -11.63849, + "1437475779": -11.6385, + "1437475780": -11.63851, + "1437475781": -11.63851, + "1437475782": -11.63852, + "1437475783": -11.63853, + "1437475784": -11.63853, + "1437475785": -11.63854, + "1437475786": -11.63854, + "1437475787": -11.63855, + "1437475788": -11.63855, + "1437475789": -11.63856, + "1437475791": -11.63857, + "1437475792": -11.63857, + "1437475793": -11.63858, + "1437475794": -11.63858, + "1437475795": -11.63859, + "1437475796": -11.63859, + "1437475797": -11.6386, + "1437475798": -11.63861, + "1437475799": -11.63861, + "1437475800": -11.63862, + "1437475801": -11.63863, + "1437475802": -11.63863, + "1437475803": -11.63864, + "1437475804": -11.63864, + "1437475805": -11.63865, + "1437475806": -11.63866, + "1437475807": -11.63866, + "1437475808": -11.63867, + "1437475809": -11.63868, + "1437475810": -11.63868, + "1437475811": -11.63869, + "1437475812": -11.6387, + "1437475813": -11.6387, + "1437475814": -11.63871, + "1437475815": -11.63872, + "1437475816": -11.63872, + "1437475817": -11.63873, + "1437475818": -11.63873, + "1437475819": -11.63874, + "1437475821": -11.63875, + "1437475822": -11.63875, + "1437475823": -11.63876, + "1437475824": -11.63876, + "1437475825": -11.63877, + "1437475826": -11.63878, + "1437475827": -11.63878, + "1437475828": -11.63879, + "1437475829": -11.6388, + "1437475830": -11.6388, + "1437475831": -11.63881, + "1437475832": -11.63881, + "1437475833": -11.63882, + "1437475834": -11.63883, + "1437475835": -11.63883, + "1437475836": -11.63884, + "1437475837": -11.63885, + "1437475838": -11.63885, + "1437475839": -11.63886, + "1437475840": -11.63887, + "1437475841": -11.63887, + "1437475842": -11.63888, + "1437475843": -11.63889, + "1437475844": -11.63889, + "1437475845": -11.6389, + "1437475846": -11.63891, + "1437475847": -11.63891, + "1437475848": -11.63892, + "1437475849": -11.63893, + "1437475850": -11.63894, + "1437475852": -11.63894, + "1437475853": -11.63895, + "1437475854": -11.63896, + "1437475855": -11.63896, + "1437475856": -11.63897, + "1437475857": -11.63898, + "1437475858": -11.63899, + "1437475859": -11.639, + "1437475860": -11.639, + "1437475861": -11.63901, + "1437475862": -11.63902, + "1437475863": -11.63903, + "1437475864": -11.63904, + "1437475865": -11.63905, + "1437475866": -11.63905, + "1437475867": -11.63906, + "1437475868": -11.63907, + "1437475869": -11.63908, + "1437475870": -11.6391, + "1437475871": -11.63911, + "1437475872": -11.63912, + "1437475873": -11.63913, + "1437475874": -11.63915, + "1437475875": -11.63917, + "1437475876": -11.63919, + "1437475878": -11.63921, + "1437475879": -11.63924, + "1437475880": -11.63927, + "1437475881": -11.63931, + "1437475882": -11.63934, + "1437475883": -11.63938, + "1437475884": -11.63943, + "1437475885": -11.63947, + "1437475886": -11.63951, + "1437475887": -11.63955, + "1437475888": -11.63959, + "1437475889": -11.63961, + "1437475890": -11.63963, + "1437475891": -11.63963, + "1437475892": -11.63963, + "1437475893": -11.63963, + "1437475894": -11.63962, + "1437475895": -11.63961, + "1437475896": -11.6396, + "1437475897": -11.63959, + "1437475898": -11.63959, + "1437475899": -11.63958, + "1437475900": -11.63957, + "1437475901": -11.63956, + "1437475902": -11.63955, + "1437475903": -11.63954, + "1437475905": -11.63954, + "1437475906": -11.63953, + "1437475907": -11.63952, + "1437475908": -11.63951, + "1437475909": -11.63951, + "1437475910": -11.6395, + "1437475911": -11.63949, + "1437475912": -11.63948, + "1437475913": -11.63947, + "1437475914": -11.63947, + "1437475915": -11.63946, + "1437475916": -11.63945, + "1437475917": -11.63944, + "1437475918": -11.63943, + "1437475919": -11.63942, + "1437475920": -11.63941, + "1437475921": -11.6394, + "1437475922": -11.6394, + "1437475923": -11.63939, + "1437475924": -11.63938, + "1437475925": -11.63937, + "1437475926": -11.63936, + "1437475927": -11.63935, + "1437475928": -11.63934, + "1437475929": -11.63933, + "1437475930": -11.63932, + "1437475931": -11.63932, + "1437475932": -11.63931, + "1437475933": -11.6393, + "1437475934": -11.63929, + "1437475935": -11.63929, + "1437475936": -11.63928, + "1437475938": -11.63927, + "1437475939": -11.63927, + "1437475940": -11.63926, + "1437475941": -11.63925, + "1437475942": -11.63925, + "1437475943": -11.63924, + "1437475944": -11.63923, + "1437475945": -11.63922, + "1437475946": -11.63922, + "1437475947": -11.63921, + "1437475948": -11.6392, + "1437475949": -11.63919, + "1437475950": -11.63918, + "1437475951": -11.63918, + "1437475952": -11.63917, + "1437475953": -11.63916, + "1437475954": -11.63915, + "1437475955": -11.63915, + "1437475956": -11.63914, + "1437475957": -11.63913, + "1437475958": -11.63912, + "1437475959": -11.63912, + "1437475960": -11.63911, + "1437475961": -11.6391, + "1437475962": -11.63909, + "1437475963": -11.63909, + "1437475964": -11.63909, + "1437475965": -11.63908, + "1437475967": -11.63908, + "1437475968": -11.63907, + "1437475969": -11.63907, + "1437475970": -11.63907, + "1437475971": -11.63906, + "1437475972": -11.63905, + "1437475973": -11.63905, + "1437475974": -11.63904, + "1437475975": -11.63903, + "1437475976": -11.63903, + "1437475977": -11.63902, + "1437475978": -11.63902, + "1437475979": -11.63901, + "1437475980": -11.639, + "1437475981": -11.639, + "1437475982": -11.63899, + "1437475983": -11.63899, + "1437475984": -11.63898, + "1437475985": -11.63898, + "1437475986": -11.63897, + "1437475987": -11.63896, + "1437475988": -11.63896, + "1437475989": -11.63896, + "1437475990": -11.63895, + "1437475991": -11.63895, + "1437475992": -11.63895, + "1437475993": -11.63895, + "1437475994": -11.63895, + "1437475995": -11.63895, + "1437475997": -11.63895, + "1437475998": -11.63895, + "1437475999": -11.63895, + "1437476000": -11.63895, + "1437476001": -11.63895, + "1437476002": -11.63896, + "1437476003": -11.63897, + "1437476004": -11.63899, + "1437476005": -11.63901, + "1437476006": -11.63904, + "1437476007": -11.63907, + "1437476008": -11.63911, + "1437476009": -11.63916, + "1437476010": -11.63921, + "1437476011": -11.63926, + "1437476012": -11.6393, + "1437476013": -11.63935, + "1437476014": -11.63939, + "1437476015": -11.63942, + "1437476016": -11.63946, + "1437476017": -11.6395, + "1437476019": -11.63953, + "1437476020": -11.63957, + "1437476021": -11.6396, + "1437476022": -11.63963, + "1437476023": -11.63966, + "1437476024": -11.63969, + "1437476025": -11.63972, + "1437476026": -11.63975, + "1437476027": -11.63978, + "1437476028": -11.63981, + "1437476029": -11.63984, + "1437476030": -11.63987, + "1437476031": -11.6399, + "1437476032": -11.63993, + "1437476033": -11.63996, + "1437476034": -11.63999, + "1437476035": -11.64003, + "1437476036": -11.64006, + "1437476037": -11.6401, + "1437476038": -11.64013, + "1437476039": -11.64017, + "1437476040": -11.6402, + "1437476041": -11.64024, + "1437476042": -11.64028, + "1437476043": -11.64032, + "1437476044": -11.64036, + "1437476045": -11.6404, + "1437476047": -11.64044, + "1437476048": -11.64049, + "1437476049": -11.64053, + "1437476050": -11.64057, + "1437476051": -11.64062, + "1437476052": -11.64067, + "1437476053": -11.64072, + "1437476054": -11.64077, + "1437476055": -11.64083, + "1437476056": -11.64088, + "1437476057": -11.64093, + "1437476058": -11.64099, + "1437476059": -11.64105, + "1437476060": -11.6411, + "1437476061": -11.64116, + "1437476062": -11.64122, + "1437476063": -11.64129, + "1437476064": -11.64135, + "1437476065": -11.64141, + "1437476066": -11.64148, + "1437476067": -11.64155, + "1437476068": -11.64162, + "1437476069": -11.64169, + "1437476070": -11.64176, + "1437476071": -11.64184, + "1437476072": -11.64191, + "1437476073": -11.642, + "1437476074": -11.64208, + "1437476075": -11.64217, + "1437476076": -11.64225, + "1437476077": -11.64234, + "1437476079": -11.64244, + "1437476080": -11.64253, + "1437476081": -11.64261, + "1437476082": -11.6427, + "1437476083": -11.64279, + "1437476084": -11.64287, + "1437476085": -11.64295, + "1437476086": -11.64303, + "1437476087": -11.64312, + "1437476088": -11.64319, + "1437476089": -11.64327, + "1437476090": -11.64335, + "1437476091": -11.64343, + "1437476092": -11.6435, + "1437476093": -11.64358, + "1437476094": -11.64365, + "1437476095": -11.64372, + "1437476096": -11.64379, + "1437476097": -11.64386, + "1437476098": -11.64394, + "1437476099": -11.644, + "1437476100": -11.64407, + "1437476101": -11.64414, + "1437476102": -11.64421, + "1437476103": -11.64428, + "1437476104": -11.64435, + "1437476105": -11.64441, + "1437476106": -11.64448, + "1437476107": -11.64455, + "1437476108": -11.64461, + "1437476109": -11.64467, + "1437476110": -11.64474, + "1437476112": -11.6448, + "1437476113": -11.64487, + "1437476114": -11.64493, + "1437476115": -11.64499, + "1437476116": -11.64504, + "1437476117": -11.6451, + "1437476118": -11.64515, + "1437476119": -11.64519, + "1437476120": -11.64524, + "1437476121": -11.64528, + "1437476122": -11.64533, + "1437476123": -11.64537, + "1437476124": -11.6454, + "1437476125": -11.64544, + "1437476126": -11.64546, + "1437476127": -11.64549, + "1437476128": -11.64551, + "1437476129": -11.64553, + "1437476130": -11.64554, + "1437476131": -11.64555, + "1437476132": -11.64555, + "1437476133": -11.64554, + "1437476134": -11.64552, + "1437476135": -11.64548, + "1437476136": -11.64544, + "1437476137": -11.64539, + "1437476138": -11.64533, + "1437476139": -11.64528, + "1437476140": -11.64522, + "1437476141": -11.64516, + "1437476142": -11.6451, + "1437476143": -11.64504, + "1437476144": -11.64498, + "1437476146": -11.64493, + "1437476147": -11.64487, + "1437476148": -11.64482, + "1437476149": -11.64477, + "1437476150": -11.64473, + "1437476151": -11.64468, + "1437476152": -11.64465, + "1437476153": -11.64461, + "1437476154": -11.64459, + "1437476155": -11.64457, + "1437476156": -11.64456, + "1437476157": -11.64455, + "1437476158": -11.64454, + "1437476159": -11.64454, + "1437476160": -11.64455, + "1437476161": -11.64455, + "1437476162": -11.64455, + "1437476163": -11.64456, + "1437476164": -11.64457, + "1437476165": -11.64458, + "1437476166": -11.64459, + "1437476167": -11.6446, + "1437476168": -11.64461, + "1437476169": -11.64462, + "1437476170": -11.64462, + "1437476171": -11.64462, + "1437476172": -11.64461, + "1437476173": -11.64458, + "1437476174": -11.64451, + "1437476175": -11.6444, + "1437476176": -11.6443, + "1437476177": -11.6442, + "1437476179": -11.64411, + "1437476180": -11.64403, + "1437476181": -11.64395, + "1437476182": -11.64388, + "1437476183": -11.64381, + "1437476184": -11.64375, + "1437476185": -11.64369, + "1437476186": -11.64363, + "1437476187": -11.64358, + "1437476188": -11.64353, + "1437476189": -11.64348, + "1437476190": -11.64343, + "1437476191": -11.64338, + "1437476192": -11.64333, + "1437476193": -11.64328, + "1437476194": -11.64324, + "1437476195": -11.6432, + "1437476196": -11.64316, + "1437476197": -11.64311, + "1437476198": -11.64307, + "1437476199": -11.64303, + "1437476200": -11.643, + "1437476201": -11.64296, + "1437476202": -11.64292, + "1437476203": -11.64288, + "1437476204": -11.64284, + "1437476205": -11.6428, + "1437476206": -11.64275, + "1437476207": -11.64271, + "1437476208": -11.64267, + "1437476209": -11.64262, + "1437476211": -11.64257, + "1437476212": -11.64252, + "1437476213": -11.64246, + "1437476214": -11.6424, + "1437476215": -11.64234, + "1437476216": -11.64227, + "1437476217": -11.64219, + "1437476218": -11.64211, + "1437476219": -11.64203, + "1437476220": -11.64195, + "1437476221": -11.64186, + "1437476222": -11.64177, + "1437476223": -11.64168, + "1437476224": -11.64158, + "1437476225": -11.64149, + "1437476226": -11.64139, + "1437476227": -11.64129, + "1437476228": -11.6412, + "1437476229": -11.6411, + "1437476230": -11.641, + "1437476231": -11.6409, + "1437476232": -11.64081, + "1437476233": -11.64071, + "1437476234": -11.64062, + "1437476235": -11.64052, + "1437476236": -11.64042, + "1437476237": -11.64033, + "1437476238": -11.64023, + "1437476239": -11.64014, + "1437476240": -11.64004, + "1437476241": -11.63994, + "1437476242": -11.63984, + "1437476243": -11.63974, + "1437476244": -11.63963, + "1437476245": -11.63953, + "1437476246": -11.63943, + "1437476248": -11.63931, + "1437476249": -11.63921, + "1437476250": -11.63909, + "1437476251": -11.63899, + "1437476252": -11.63887, + "1437476253": -11.63877, + "1437476254": -11.63867, + "1437476255": -11.63858, + "1437476256": -11.63851, + "1437476257": -11.63847, + "1437476258": -11.63844, + "1437476259": -11.63842, + "1437476260": -11.6384, + "1437476261": -11.63839, + "1437476262": -11.63837, + "1437476263": -11.63836, + "1437476264": -11.63836, + "1437476265": -11.63835, + "1437476266": -11.63836, + "1437476267": -11.63837, + "1437476268": -11.63838, + "1437476269": -11.63842, + "1437476270": -11.63848, + "1437476271": -11.63858, + "1437476272": -11.63872, + "1437476274": -11.63886, + "1437476275": -11.63901, + "1437476276": -11.63915, + "1437476277": -11.6393, + "1437476278": -11.63944, + "1437476279": -11.63957, + "1437476280": -11.63971, + "1437476281": -11.63985, + "1437476282": -11.63998, + "1437476283": -11.64012, + "1437476284": -11.64026, + "1437476285": -11.64039, + "1437476286": -11.64053, + "1437476287": -11.64067, + "1437476288": -11.6408, + "1437476289": -11.64094, + "1437476290": -11.64107, + "1437476291": -11.64121, + "1437476292": -11.64134, + "1437476293": -11.64146, + "1437476295": -11.64159, + "1437476296": -11.64171, + "1437476297": -11.64183, + "1437476298": -11.64195, + "1437476299": -11.64208, + "1437476300": -11.64219, + "1437476301": -11.64231, + "1437476302": -11.64243, + "1437476303": -11.64254, + "1437476304": -11.64265, + "1437476305": -11.64276, + "1437476306": -11.64286, + "1437476307": -11.64297, + "1437476308": -11.64307, + "1437476309": -11.64317, + "1437476310": -11.64326, + "1437476311": -11.64335, + "1437476312": -11.64344, + "1437476313": -11.64352, + "1437476314": -11.6436, + "1437476315": -11.64368, + "1437476316": -11.64376, + "1437476317": -11.64384, + "1437476318": -11.64391, + "1437476319": -11.64398, + "1437476320": -11.64405, + "1437476321": -11.64412, + "1437476323": -11.64418, + "1437476324": -11.64424, + "1437476325": -11.64429, + "1437476326": -11.64434, + "1437476327": -11.64438, + "1437476328": -11.64441, + "1437476329": -11.64444, + "1437476330": -11.64446, + "1437476331": -11.64447, + "1437476332": -11.64448, + "1437476333": -11.64448, + "1437476334": -11.64448, + "1437476335": -11.64448, + "1437476338": -11.64448, + "1437476339": -11.64448, + "1437476340": -11.64449, + "1437476341": -11.64449, + "1437476342": -11.6445, + "1437476343": -11.64451, + "1437476344": -11.64453, + "1437476345": -11.64454, + "1437476346": -11.64456, + "1437476347": -11.64458, + "1437476348": -11.6446, + "1437476349": -11.64462, + "1437476350": -11.64465, + "1437476351": -11.64467, + "1437476352": -11.64469, + "1437476353": -11.64472, + "1437476354": -11.64475, + "1437476355": -11.64477, + "1437476356": -11.6448, + "1437476357": -11.64483, + "1437476358": -11.64486, + "1437476360": -11.64489, + "1437476361": -11.64492, + "1437476362": -11.64495, + "1437476363": -11.64498, + "1437476364": -11.64501, + "1437476365": -11.64505, + "1437476366": -11.64508, + "1437476367": -11.64511, + "1437476368": -11.64515, + "1437476369": -11.64518, + "1437476370": -11.64521, + "1437476371": -11.64525, + "1437476372": -11.64528, + "1437476373": -11.64531, + "1437476374": -11.64535, + "1437476375": -11.64538, + "1437476376": -11.64542, + "1437476377": -11.64546, + "1437476378": -11.64549, + "1437476379": -11.64553, + "1437476380": -11.64556, + "1437476381": -11.6456, + "1437476382": -11.64564, + "1437476383": -11.64568, + "1437476384": -11.64571, + "1437476385": -11.64575, + "1437476386": -11.64579, + "1437476387": -11.64583, + "1437476389": -11.64587, + "1437476390": -11.64591, + "1437476391": -11.64595, + "1437476392": -11.64599, + "1437476393": -11.64603, + "1437476394": -11.64608, + "1437476395": -11.64613, + "1437476396": -11.64618, + "1437476397": -11.64623, + "1437476398": -11.64628, + "1437476399": -11.64633, + "1437476400": -11.64639, + "1437476401": -11.64645, + "1437476402": -11.64652, + "1437476403": -11.64658, + "1437476404": -11.64665, + "1437476405": -11.64673, + "1437476406": -11.64681, + "1437476407": -11.64689, + "1437476408": -11.64696, + "1437476410": -11.64702, + "1437476411": -11.64707, + "1437476412": -11.64712, + "1437476413": -11.64715, + "1437476414": -11.64718, + "1437476415": -11.6472, + "1437476416": -11.64723, + "1437476417": -11.64725, + "1437476418": -11.64727, + "1437476419": -11.64729, + "1437476420": -11.6473, + "1437476421": -11.64732, + "1437476422": -11.64733, + "1437476423": -11.64735, + "1437476424": -11.64736, + "1437476425": -11.64737, + "1437476426": -11.64738, + "1437476427": -11.64739, + "1437476428": -11.6474, + "1437476429": -11.64741, + "1437476430": -11.64742, + "1437476431": -11.64743, + "1437476432": -11.64744, + "1437476433": -11.64745, + "1437476434": -11.64746, + "1437476435": -11.64747, + "1437476436": -11.64747, + "1437476437": -11.64748, + "1437476438": -11.64749, + "1437476439": -11.6475, + "1437476441": -11.6475, + "1437476442": -11.64751, + "1437476443": -11.64752, + "1437476444": -11.64753, + "1437476445": -11.64754, + "1437476446": -11.64755, + "1437476447": -11.64756, + "1437476448": -11.64757, + "1437476449": -11.64759, + "1437476450": -11.64761, + "1437476451": -11.64762, + "1437476452": -11.64765, + "1437476453": -11.64767, + "1437476454": -11.6477, + "1437476455": -11.64774, + "1437476456": -11.64777, + "1437476457": -11.64781, + "1437476458": -11.64785, + "1437476459": -11.6479, + "1437476460": -11.64796, + "1437476461": -11.64802, + "1437476462": -11.64809, + "1437476463": -11.64816, + "1437476464": -11.64823, + "1437476465": -11.6483, + "1437476467": -11.64838, + "1437476468": -11.64846, + "1437476469": -11.64855, + "1437476470": -11.64864, + "1437476471": -11.64872, + "1437476472": -11.6488, + "1437476473": -11.64888, + "1437476474": -11.64897, + "1437476475": -11.64905, + "1437476476": -11.64913, + "1437476477": -11.6492, + "1437476478": -11.64927, + "1437476479": -11.64935, + "1437476480": -11.64943, + "1437476481": -11.64951, + "1437476482": -11.64959, + "1437476483": -11.64967, + "1437476484": -11.64975, + "1437476485": -11.64984, + "1437476486": -11.64992, + "1437476487": -11.65001, + "1437476488": -11.6501, + "1437476490": -11.65019, + "1437476491": -11.65028, + "1437476492": -11.65038, + "1437476493": -11.65047, + "1437476494": -11.65057, + "1437476495": -11.65065, + "1437476496": -11.6507, + "1437476497": -11.65073, + "1437476498": -11.65074, + "1437476499": -11.65076, + "1437476500": -11.65076, + "1437476501": -11.65077, + "1437476502": -11.65079, + "1437476503": -11.65084, + "1437476504": -11.65091, + "1437476505": -11.65099, + "1437476506": -11.65109, + "1437476507": -11.65119, + "1437476508": -11.65129, + "1437476509": -11.65138, + "1437476510": -11.65144, + "1437476511": -11.65149, + "1437476512": -11.65151, + "1437476513": -11.65149, + "1437476514": -11.65144, + "1437476515": -11.65133, + "1437476516": -11.6512, + "1437476517": -11.65107, + "1437476518": -11.65093, + "1437476519": -11.65081, + "1437476521": -11.65074, + "1437476522": -11.65074, + "1437476523": -11.65078, + "1437476524": -11.65084, + "1437476525": -11.6509, + "1437476526": -11.65094, + "1437476527": -11.6509, + "1437476528": -11.65082, + "1437476529": -11.6507, + "1437476530": -11.65057, + "1437476531": -11.65046, + "1437476532": -11.65038, + "1437476533": -11.65028, + "1437476534": -11.65019, + "1437476535": -11.65009, + "1437476536": -11.65001, + "1437476537": -11.64992, + "1437476538": -11.64983, + "1437476539": -11.64973, + "1437476540": -11.64963, + "1437476541": -11.64951, + "1437476542": -11.64938, + "1437476543": -11.64927, + "1437476544": -11.6492, + "1437476545": -11.64914, + "1437476547": -11.64907, + "1437476548": -11.64902, + "1437476549": -11.64897, + "1437476550": -11.64892, + "1437476551": -11.64888, + "1437476552": -11.64884, + "1437476553": -11.64878, + "1437476554": -11.64873, + "1437476555": -11.64866, + "1437476556": -11.64855, + "1437476557": -11.64844, + "1437476558": -11.64836, + "1437476559": -11.64829, + "1437476560": -11.64822, + "1437476561": -11.64816, + "1437476562": -11.6481, + "1437476563": -11.64805, + "1437476564": -11.64799, + "1437476565": -11.64794, + "1437476566": -11.64787, + "1437476567": -11.6478, + "1437476568": -11.64773, + "1437476569": -11.64764, + "1437476570": -11.64753, + "1437476571": -11.64744, + "1437476572": -11.64735, + "1437476573": -11.64727, + "1437476574": -11.64718, + "1437476576": -11.64709, + "1437476577": -11.647, + "1437476578": -11.64691, + "1437476579": -11.64682, + "1437476580": -11.64673, + "1437476581": -11.64665, + "1437476582": -11.64656, + "1437476583": -11.64648, + "1437476584": -11.6464, + "1437476585": -11.64632, + "1437476586": -11.64623, + "1437476587": -11.64615, + "1437476588": -11.64607, + "1437476589": -11.646, + "1437476590": -11.64592, + "1437476591": -11.64584, + "1437476592": -11.64576, + "1437476593": -11.64568, + "1437476594": -11.64561, + "1437476595": -11.64554, + "1437476596": -11.64549, + "1437476597": -11.64545, + "1437476598": -11.6454, + "1437476599": -11.64532, + "1437476601": -11.64524, + "1437476602": -11.64517, + "1437476603": -11.64513, + "1437476604": -11.64509, + "1437476605": -11.64505, + "1437476606": -11.64502, + "1437476607": -11.64499, + "1437476608": -11.64496, + "1437476609": -11.64494, + "1437476610": -11.64491, + "1437476611": -11.64489, + "1437476612": -11.64486, + "1437476613": -11.64484, + "1437476614": -11.64481, + "1437476615": -11.64479, + "1437476616": -11.64476, + "1437476617": -11.64474, + "1437476618": -11.64472, + "1437476619": -11.64469, + "1437476620": -11.64467, + "1437476621": -11.64465, + "1437476622": -11.64463, + "1437476623": -11.6446, + "1437476624": -11.64458, + "1437476625": -11.64456, + "1437476627": -11.64453, + "1437476628": -11.6445, + "1437476629": -11.64448, + "1437476630": -11.64445, + "1437476631": -11.64443, + "1437476632": -11.6444, + "1437476633": -11.64438, + "1437476634": -11.64435, + "1437476635": -11.64432, + "1437476636": -11.64429, + "1437476637": -11.64426, + "1437476638": -11.64423, + "1437476639": -11.6442, + "1437476640": -11.64417, + "1437476641": -11.64413, + "1437476642": -11.64409, + "1437476643": -11.64403, + "1437476644": -11.64397, + "1437476645": -11.64391, + "1437476646": -11.64383, + "1437476647": -11.64376, + "1437476648": -11.64368, + "1437476649": -11.64359, + "1437476650": -11.64349, + "1437476651": -11.64339, + "1437476652": -11.64329, + "1437476653": -11.64318, + "1437476654": -11.64307, + "1437476655": -11.64296, + "1437476656": -11.64284, + "1437476658": -11.64273, + "1437476659": -11.64264, + "1437476660": -11.6426, + "1437476661": -11.64259, + "1437476662": -11.64261, + "1437476663": -11.64266, + "1437476664": -11.64273, + "1437476665": -11.64279, + "1437476666": -11.64289, + "1437476667": -11.64301, + "1437476668": -11.64313, + "1437476669": -11.64325, + "1437476670": -11.64337, + "1437476671": -11.64345, + "1437476672": -11.64341, + "1437476673": -11.64334, + "1437476674": -11.64326, + "1437476675": -11.64317, + "1437476676": -11.64308, + "1437476677": -11.64298, + "1437476678": -11.64286, + "1437476679": -11.64276, + "1437476680": -11.64266, + "1437476681": -11.64256, + "1437476682": -11.64247, + "1437476683": -11.6424, + "1437476684": -11.64231, + "1437476685": -11.64221, + "1437476686": -11.64209, + "1437476687": -11.64197, + "1437476688": -11.64192, + "1437476689": -11.6419, + "1437476690": -11.64187, + "1437476691": -11.64183, + "1437476692": -11.64177, + "1437476694": -11.64169, + "1437476695": -11.64161, + "1437476696": -11.6415, + "1437476697": -11.64138, + "1437476698": -11.64125, + "1437476699": -11.64113, + "1437476700": -11.64102, + "1437476701": -11.64094, + "1437476702": -11.64088, + "1437476703": -11.64084, + "1437476704": -11.6408, + "1437476705": -11.64076, + "1437476706": -11.64077, + "1437476707": -11.64084, + "1437476708": -11.64094, + "1437476709": -11.64105, + "1437476710": -11.64117, + "1437476711": -11.64125, + "1437476712": -11.64126, + "1437476713": -11.64123, + "1437476714": -11.64121, + "1437476715": -11.64122, + "1437476716": -11.64128, + "1437476717": -11.64137, + "1437476718": -11.64146, + "1437476719": -11.64155, + "1437476720": -11.64164, + "1437476721": -11.64173, + "1437476723": -11.64181, + "1437476724": -11.64183, + "1437476725": -11.64177, + "1437476726": -11.6417, + "1437476727": -11.64162, + "1437476728": -11.64155, + "1437476729": -11.64152, + "1437476730": -11.64154, + "1437476731": -11.64158, + "1437476732": -11.64152, + "1437476733": -11.64142, + "1437476734": -11.64132, + "1437476735": -11.64122, + "1437476736": -11.64111, + "1437476737": -11.641, + "1437476738": -11.64088, + "1437476739": -11.64076, + "1437476740": -11.64066, + "1437476741": -11.64056, + "1437476742": -11.64048, + "1437476743": -11.64041, + "1437476744": -11.64035, + "1437476745": -11.64029, + "1437476746": -11.64023, + "1437476747": -11.64018, + "1437476748": -11.64013, + "1437476749": -11.64009, + "1437476750": -11.64004, + "1437476751": -11.63999, + "1437476752": -11.63995, + "1437476753": -11.6399, + "1437476755": -11.63985, + "1437476756": -11.6398, + "1437476757": -11.63974, + "1437476758": -11.63968, + "1437476759": -11.63961, + "1437476760": -11.63954, + "1437476761": -11.63947, + "1437476762": -11.63938, + "1437476763": -11.63927, + "1437476764": -11.63916, + "1437476765": -11.63905, + "1437476766": -11.63893, + "1437476767": -11.63882, + "1437476768": -11.63869, + "1437476769": -11.63857, + "1437476770": -11.63845, + "1437476771": -11.63832, + "1437476772": -11.63819, + "1437476773": -11.63806, + "1437476774": -11.63794, + "1437476775": -11.63782, + "1437476776": -11.6377, + "1437476777": -11.63758, + "1437476778": -11.63747, + "1437476779": -11.63735, + "1437476780": -11.63725, + "1437476781": -11.63714, + "1437476782": -11.63704, + "1437476783": -11.63693, + "1437476784": -11.63683, + "1437476785": -11.63674, + "1437476786": -11.63664, + "1437476787": -11.63655, + "1437476788": -11.63646, + "1437476789": -11.63638, + "1437476791": -11.63629, + "1437476792": -11.63621, + "1437476793": -11.63613, + "1437476794": -11.63606, + "1437476795": -11.636, + "1437476796": -11.63593, + "1437476797": -11.63588, + "1437476798": -11.63584, + "1437476799": -11.63579, + "1437476800": -11.63575, + "1437476801": -11.6357, + "1437476802": -11.63567, + "1437476803": -11.63563, + "1437476804": -11.6356, + "1437476805": -11.63557, + "1437476806": -11.63555, + "1437476807": -11.63553, + "1437476808": -11.63551, + "1437476809": -11.6355, + "1437476810": -11.6355, + "1437476811": -11.63551, + "1437476812": -11.63552, + "1437476813": -11.63555, + "1437476814": -11.63558, + "1437476815": -11.63562, + "1437476816": -11.63567, + "1437476817": -11.63572, + "1437476818": -11.63579, + "1437476819": -11.63585, + "1437476820": -11.63592, + "1437476821": -11.636, + "1437476822": -11.63607, + "1437476824": -11.63615, + "1437476825": -11.63623, + "1437476826": -11.63631, + "1437476827": -11.63639, + "1437476828": -11.63647, + "1437476829": -11.63655, + "1437476830": -11.63662, + "1437476831": -11.6367, + "1437476832": -11.63678, + "1437476833": -11.63685, + "1437476834": -11.63693, + "1437476835": -11.637, + "1437476836": -11.63708, + "1437476837": -11.63715, + "1437476838": -11.63722, + "1437476839": -11.63729, + "1437476840": -11.63735, + "1437476841": -11.63739, + "1437476842": -11.6374, + "1437476843": -11.63741, + "1437476844": -11.63738, + "1437476845": -11.63733, + "1437476846": -11.63726, + "1437476847": -11.63719, + "1437476848": -11.63711, + "1437476849": -11.63702, + "1437476850": -11.63694, + "1437476851": -11.63686, + "1437476852": -11.63678, + "1437476854": -11.6367, + "1437476855": -11.63663, + "1437476856": -11.63657, + "1437476857": -11.63654, + "1437476858": -11.63655, + "1437476859": -11.6366, + "1437476860": -11.63668, + "1437476861": -11.63677, + "1437476862": -11.63686, + "1437476863": -11.63695, + "1437476864": -11.63704, + "1437476865": -11.63714, + "1437476866": -11.63723, + "1437476867": -11.63732, + "1437476868": -11.63742, + "1437476869": -11.63752, + "1437476870": -11.63762, + "1437476871": -11.63772, + "1437476872": -11.63781, + "1437476873": -11.63792, + "1437476874": -11.63801, + "1437476875": -11.63812, + "1437476876": -11.63822, + "1437476877": -11.63832, + "1437476878": -11.63842, + "1437476879": -11.63848, + "1437476880": -11.63849, + "1437476881": -11.63847, + "1437476882": -11.63845, + "1437476883": -11.6384, + "1437476884": -11.63835, + "1437476886": -11.6383, + "1437476887": -11.63821, + "1437476888": -11.63811, + "1437476889": -11.63802, + "1437476890": -11.63795, + "1437476891": -11.63792, + "1437476892": -11.63792, + "1437476893": -11.63792, + "1437476894": -11.63793, + "1437476895": -11.63793, + "1437476896": -11.63793, + "1437476897": -11.63794, + "1437476898": -11.63794, + "1437476899": -11.63795, + "1437476900": -11.63796, + "1437476901": -11.63796, + "1437476902": -11.63794, + "1437476903": -11.63793, + "1437476904": -11.63793, + "1437476905": -11.63793, + "1437476906": -11.63793, + "1437476907": -11.63793, + "1437476908": -11.63794, + "1437476910": -11.63794, + "1437476911": -11.63795, + "1437476912": -11.63796, + "1437476913": -11.63798, + "1437476914": -11.63799, + "1437476915": -11.63801, + "1437476916": -11.63803, + "1437476917": -11.63806, + "1437476918": -11.63808, + "1437476919": -11.63811, + "1437476920": -11.63815, + "1437476921": -11.63819, + "1437476922": -11.63824, + "1437476923": -11.63827, + "1437476924": -11.6383, + "1437476925": -11.63833, + "1437476926": -11.63835, + "1437476927": -11.63836, + "1437476928": -11.63838, + "1437476929": -11.63839, + "1437476930": -11.6384, + "1437476931": -11.63841, + "1437476932": -11.63842, + "1437476933": -11.63843, + "1437476934": -11.63844, + "1437476935": -11.63845, + "1437476936": -11.63846, + "1437476938": -11.63847, + "1437476939": -11.63848, + "1437476940": -11.63849, + "1437476941": -11.6385, + "1437476942": -11.63851, + "1437476943": -11.63852, + "1437476944": -11.63853, + "1437476945": -11.63854, + "1437476946": -11.63855, + "1437476947": -11.63856, + "1437476948": -11.63857, + "1437476949": -11.63858, + "1437476950": -11.63859, + "1437476951": -11.6386, + "1437476952": -11.6386, + "1437476953": -11.63861, + "1437476954": -11.63862, + "1437476955": -11.63863, + "1437476956": -11.63864, + "1437476957": -11.63865, + "1437476958": -11.63865, + "1437476959": -11.63866, + "1437476960": -11.63867, + "1437476961": -11.63868, + "1437476962": -11.63869, + "1437476963": -11.6387, + "1437476964": -11.6387, + "1437476965": -11.63871, + "1437476966": -11.63872, + "1437476967": -11.63873, + "1437476969": -11.63874, + "1437476970": -11.63875, + "1437476971": -11.63876, + "1437476972": -11.63877, + "1437476973": -11.63878, + "1437476974": -11.63878, + "1437476975": -11.63879, + "1437476976": -11.6388, + "1437476977": -11.63881, + "1437476978": -11.63882, + "1437476979": -11.63883, + "1437476980": -11.63884, + "1437476981": -11.63885, + "1437476982": -11.63886, + "1437476983": -11.63887, + "1437476984": -11.63888, + "1437476985": -11.63889, + "1437476986": -11.6389, + "1437476987": -11.63891, + "1437476988": -11.63892, + "1437476989": -11.63894, + "1437476990": -11.63894, + "1437476991": -11.63896, + "1437476992": -11.63897, + "1437476993": -11.63898, + "1437476994": -11.63899, + "1437476996": -11.63901, + "1437476997": -11.63902, + "1437476998": -11.63904, + "1437476999": -11.63906, + "1437477000": -11.63908, + "1437477001": -11.6391, + "1437477002": -11.63912, + "1437477003": -11.63915, + "1437477004": -11.63918, + "1437477005": -11.63921, + "1437477006": -11.63925, + "1437477007": -11.6393, + "1437477008": -11.63935, + "1437477009": -11.6394, + "1437477010": -11.63946, + "1437477011": -11.63952, + "1437477012": -11.63957, + "1437477013": -11.6396, + "1437477014": -11.63962, + "1437477015": -11.63963, + "1437477016": -11.63963, + "1437477017": -11.63962, + "1437477018": -11.6396, + "1437477019": -11.63958, + "1437477020": -11.63956, + "1437477022": -11.63955, + "1437477023": -11.63953, + "1437477024": -11.63951, + "1437477025": -11.63949, + "1437477026": -11.63948, + "1437477027": -11.63946, + "1437477028": -11.63944, + "1437477029": -11.63943, + "1437477030": -11.63941, + "1437477031": -11.63939, + "1437477032": -11.63937, + "1437477033": -11.63936, + "1437477034": -11.63934, + "1437477035": -11.63932, + "1437477036": -11.63931, + "1437477037": -11.63929, + "1437477038": -11.63927, + "1437477039": -11.63925, + "1437477040": -11.63924, + "1437477041": -11.63922, + "1437477042": -11.6392, + "1437477043": -11.63919, + "1437477044": -11.63917, + "1437477045": -11.63916, + "1437477046": -11.63914, + "1437477047": -11.63913, + "1437477048": -11.63911, + "1437477050": -11.6391, + "1437477051": -11.63908, + "1437477052": -11.63907, + "1437477053": -11.63905, + "1437477054": -11.63903, + "1437477055": -11.63902, + "1437477056": -11.639, + "1437477057": -11.63899, + "1437477058": -11.63897, + "1437477059": -11.63896, + "1437477060": -11.63895, + "1437477061": -11.63894, + "1437477062": -11.63894, + "1437477063": -11.63893, + "1437477064": -11.63893, + "1437477065": -11.63894, + "1437477066": -11.63895, + "1437477067": -11.63898, + "1437477068": -11.63901, + "1437477069": -11.63906, + "1437477070": -11.63912, + "1437477071": -11.63918, + "1437477072": -11.63924, + "1437477073": -11.6393, + "1437477075": -11.63936, + "1437477076": -11.63943, + "1437477077": -11.63949, + "1437477078": -11.63955, + "1437477079": -11.63961, + "1437477080": -11.63968, + "1437477081": -11.63974, + "1437477082": -11.6398, + "1437477083": -11.63986, + "1437477084": -11.63992, + "1437477085": -11.63998, + "1437477086": -11.64005, + "1437477087": -11.64011, + "1437477088": -11.64017, + "1437477089": -11.64024, + "1437477090": -11.6403, + "1437477091": -11.64036, + "1437477092": -11.64043, + "1437477093": -11.6405, + "1437477094": -11.64056, + "1437477095": -11.64063, + "1437477096": -11.6407, + "1437477097": -11.64077, + "1437477098": -11.64084, + "1437477099": -11.64091, + "1437477100": -11.64098, + "1437477101": -11.64105, + "1437477102": -11.64113, + "1437477103": -11.64121, + "1437477104": -11.64129, + "1437477105": -11.64137, + "1437477106": -11.64145, + "1437477107": -11.64154, + "1437477109": -11.64162, + "1437477110": -11.64171, + "1437477111": -11.6418, + "1437477112": -11.6419, + "1437477113": -11.642, + "1437477114": -11.64211, + "1437477115": -11.64222, + "1437477116": -11.64233, + "1437477117": -11.64245, + "1437477118": -11.64257, + "1437477119": -11.64268, + "1437477120": -11.64279, + "1437477121": -11.64291, + "1437477122": -11.64301, + "1437477123": -11.64312, + "1437477124": -11.64323, + "1437477125": -11.64334, + "1437477126": -11.64345, + "1437477127": -11.64355, + "1437477128": -11.64366, + "1437477129": -11.64377, + "1437477130": -11.64387, + "1437477131": -11.64398, + "1437477132": -11.64408, + "1437477133": -11.64418, + "1437477134": -11.64428, + "1437477135": -11.64439, + "1437477136": -11.64448, + "1437477137": -11.64459, + "1437477138": -11.64468, + "1437477139": -11.64478, + "1437477140": -11.64488, + "1437477141": -11.64497, + "1437477143": -11.64505, + "1437477144": -11.64513, + "1437477145": -11.6452, + "1437477146": -11.64526, + "1437477147": -11.64532, + "1437477148": -11.64538, + "1437477149": -11.64543, + "1437477150": -11.64547, + "1437477151": -11.64551, + "1437477152": -11.64553, + "1437477153": -11.64555, + "1437477154": -11.64557, + "1437477155": -11.64557, + "1437477156": -11.64555, + "1437477157": -11.6455, + "1437477158": -11.64545, + "1437477159": -11.64538, + "1437477160": -11.6453, + "1437477161": -11.64522, + "1437477162": -11.64514, + "1437477163": -11.64506, + "1437477164": -11.64498, + "1437477165": -11.6449, + "1437477166": -11.64483, + "1437477167": -11.64476, + "1437477168": -11.6447, + "1437477169": -11.64465, + "1437477170": -11.6446, + "1437477171": -11.64457, + "1437477172": -11.64456, + "1437477173": -11.64455, + "1437477174": -11.64454, + "1437477175": -11.64454, + "1437477176": -11.64455, + "1437477178": -11.64455, + "1437477179": -11.64456, + "1437477180": -11.64458, + "1437477181": -11.64459, + "1437477182": -11.6446, + "1437477183": -11.64461, + "1437477184": -11.64462, + "1437477185": -11.64462, + "1437477186": -11.6446, + "1437477187": -11.64457, + "1437477188": -11.64447, + "1437477189": -11.64433, + "1437477190": -11.64421, + "1437477191": -11.6441, + "1437477192": -11.644, + "1437477193": -11.64391, + "1437477194": -11.64382, + "1437477195": -11.64373, + "1437477196": -11.64364, + "1437477197": -11.64356, + "1437477198": -11.64347, + "1437477199": -11.64339, + "1437477200": -11.64331, + "1437477201": -11.64324, + "1437477202": -11.64317, + "1437477203": -11.64311, + "1437477204": -11.64305, + "1437477205": -11.64299, + "1437477206": -11.64293, + "1437477207": -11.64287, + "1437477208": -11.64282, + "1437477209": -11.64276, + "1437477210": -11.64269, + "1437477211": -11.64263, + "1437477212": -11.64257, + "1437477213": -11.6425, + "1437477215": -11.64242, + "1437477216": -11.64233, + "1437477217": -11.64224, + "1437477218": -11.64214, + "1437477219": -11.64203, + "1437477220": -11.64193, + "1437477221": -11.64182, + "1437477222": -11.6417, + "1437477223": -11.64159, + "1437477224": -11.64148, + "1437477225": -11.64136, + "1437477226": -11.64125, + "1437477227": -11.64113, + "1437477228": -11.64102, + "1437477229": -11.64091, + "1437477230": -11.6408, + "1437477231": -11.64068, + "1437477232": -11.64057, + "1437477233": -11.64045, + "1437477234": -11.64034, + "1437477235": -11.64022, + "1437477236": -11.64011, + "1437477237": -11.63999, + "1437477238": -11.63987, + "1437477239": -11.63976, + "1437477240": -11.63964, + "1437477241": -11.63951, + "1437477242": -11.63938, + "1437477243": -11.63926, + "1437477244": -11.63913, + "1437477245": -11.63901, + "1437477247": -11.63888, + "1437477248": -11.63876, + "1437477249": -11.63864, + "1437477250": -11.63854, + "1437477251": -11.63848, + "1437477252": -11.63844, + "1437477253": -11.63841, + "1437477254": -11.63839, + "1437477255": -11.63838, + "1437477256": -11.63837, + "1437477257": -11.63836, + "1437477258": -11.63836, + "1437477259": -11.63836, + "1437477260": -11.63838, + "1437477261": -11.63841, + "1437477262": -11.63847, + "1437477263": -11.6386, + "1437477264": -11.63876, + "1437477265": -11.63892, + "1437477266": -11.63909, + "1437477267": -11.63925, + "1437477268": -11.6394, + "1437477270": -11.63955, + "1437477271": -11.63971, + "1437477272": -11.63986, + "1437477273": -11.64002, + "1437477274": -11.64018, + "1437477275": -11.64033, + "1437477276": -11.6405, + "1437477277": -11.64066, + "1437477278": -11.64081, + "1437477279": -11.64097, + "1437477280": -11.64112, + "1437477281": -11.64127, + "1437477282": -11.64142, + "1437477283": -11.64157, + "1437477284": -11.64172, + "1437477285": -11.64187, + "1437477286": -11.64201, + "1437477287": -11.64216, + "1437477288": -11.6423, + "1437477289": -11.64245, + "1437477290": -11.6426, + "1437477291": -11.64274, + "1437477292": -11.64287, + "1437477294": -11.643, + "1437477295": -11.64313, + "1437477296": -11.64325, + "1437477297": -11.64337, + "1437477298": -11.64348, + "1437477299": -11.6436, + "1437477300": -11.64371, + "1437477301": -11.64382, + "1437477302": -11.64393, + "1437477303": -11.64404, + "1437477304": -11.64414, + "1437477305": -11.64425, + "1437477306": -11.64435, + "1437477307": -11.64445, + "1437477308": -11.64455, + "1437477309": -11.64465, + "1437477310": -11.64475, + "1437477311": -11.64485, + "1437477312": -11.64495, + "1437477313": -11.64505, + "1437477314": -11.64515, + "1437477315": -11.64525, + "1437477316": -11.64535, + "1437477317": -11.64544, + "1437477318": -11.64554, + "1437477319": -11.64564, + "1437477321": -11.64574, + "1437477322": -11.64584, + "1437477323": -11.64593, + "1437477324": -11.64603, + "1437477325": -11.64612, + "1437477326": -11.64621, + "1437477327": -11.64631, + "1437477328": -11.6464, + "1437477329": -11.6465, + "1437477330": -11.6466, + "1437477331": -11.64672, + "1437477332": -11.64683, + "1437477333": -11.64694, + "1437477334": -11.64703, + "1437477335": -11.64709, + "1437477336": -11.64714, + "1437477337": -11.64718, + "1437477338": -11.64722, + "1437477339": -11.64725, + "1437477340": -11.64728, + "1437477341": -11.64731, + "1437477342": -11.64733, + "1437477343": -11.64736, + "1437477345": -11.64738, + "1437477346": -11.6474, + "1437477347": -11.64742, + "1437477348": -11.64744, + "1437477349": -11.64745, + "1437477350": -11.64746, + "1437477351": -11.64746, + "1437477352": -11.64747, + "1437477353": -11.64747, + "1437477354": -11.64747, + "1437477355": -11.64747, + "1437477356": -11.64747, + "1437477376": -11.64746, + "1437477377": -11.64746, + "1437477378": -11.64747, + "1437477379": -11.64747, + "1437477380": -11.64748, + "1437477381": -11.64749, + "1437477383": -11.6475, + "1437477384": -11.6475, + "1437477385": -11.6475, + "1437477386": -11.6475, + "1437477387": -11.6475, + "1437477388": -11.6475, + "1437477392": -11.6475, + "1437477393": -11.64751, + "1437477394": -11.64751, + "1437477395": -11.64751, + "1437477397": -11.64751, + "1437477398": -11.64751, + "1437477399": -11.64752, + "1437477400": -11.64752, + "1437477401": -11.64752, + "1437477402": -11.64752, + "1437477403": -11.64753, + "1437477404": -11.64753, + "1437477405": -11.64753, + "1437477406": -11.64753, + "1437477407": -11.64753, + "1437477408": -11.64753, + "1437477411": -11.64753, + "1437477412": -11.64753, + "1437477413": -11.64753, + "1437477414": -11.64753, + "1437477415": -11.64753, + "1437477417": -11.64754, + "1437477418": -11.64754, + "1437477419": -11.64754, + "1437477420": -11.64754, + "1437477421": -11.64755, + "1437477422": -11.64755, + "1437477423": -11.64755, + "1437477428": -11.64755, + "1437477429": -11.64755, + "1437477430": -11.64755, + "1437477432": -11.64756, + "1437477433": -11.64756, + "1437477434": -11.64757, + "1437477435": -11.64757, + "1437477436": -11.64757, + "1437477437": -11.64758, + "1437477438": -11.64758, + "1437477439": -11.64759, + "1437477440": -11.64759, + "1437477441": -11.64759, + "1437477442": -11.6476, + "1437477443": -11.6476, + "1437477444": -11.64761, + "1437477445": -11.64761, + "1437477446": -11.64762, + "1437477447": -11.64762, + "1437477448": -11.64762, + "1437477449": -11.64763, + "1437477450": -11.64763, + "1437477451": -11.64764, + "1437477452": -11.64764, + "1437477453": -11.64764, + "1437477454": -11.64765, + "1437477455": -11.64765, + "1437477456": -11.64766, + "1437477457": -11.64766, + "1437477458": -11.64766, + "1437477459": -11.64766, + "1437477461": -11.64766, + "1437477465": -11.64766, + "1437477466": -11.64766, + "1437477467": -11.64767, + "1437477468": -11.64767, + "1437477469": -11.64768, + "1437477470": -11.64769, + "1437477471": -11.6477, + "1437477472": -11.64771, + "1437477473": -11.64771, + "1437477474": -11.64772, + "1437477475": -11.64773, + "1437477476": -11.64774, + "1437477477": -11.64774, + "1437477478": -11.64775, + "1437477479": -11.64776, + "1437477480": -11.64777, + "1437477481": -11.64778, + "1437477482": -11.64779, + "1437477483": -11.6478, + "1437477484": -11.64781, + "1437477485": -11.64782, + "1437477486": -11.64783, + "1437477487": -11.64785, + "1437477488": -11.64786, + "1437477489": -11.64786, + "1437477490": -11.64786, + "1437477491": -11.64786, + "1437477492": -11.64787, + "1437477493": -11.64788, + "1437477494": -11.64789, + "1437477495": -11.64791, + "1437477496": -11.64793, + "1437477497": -11.64795, + "1437477498": -11.64797, + "1437477500": -11.64799, + "1437477501": -11.64802, + "1437477502": -11.64804, + "1437477503": -11.64807, + "1437477504": -11.6481, + "1437477505": -11.64813, + "1437477506": -11.64816, + "1437477507": -11.6482, + "1437477508": -11.64823, + "1437477509": -11.64827, + "1437477510": -11.64831, + "1437477511": -11.64834, + "1437477512": -11.64838, + "1437477513": -11.64842, + "1437477514": -11.64846, + "1437477515": -11.6485, + "1437477516": -11.64853, + "1437477517": -11.64857, + "1437477518": -11.64861, + "1437477519": -11.64864, + "1437477520": -11.64867, + "1437477521": -11.64869, + "1437477522": -11.64872, + "1437477523": -11.64874, + "1437477524": -11.64876, + "1437477525": -11.64878, + "1437477526": -11.64879, + "1437477527": -11.6488, + "1437477528": -11.64881, + "1437477529": -11.64882, + "1437477530": -11.64883, + "1437477532": -11.64884, + "1437477533": -11.64884, + "1437477534": -11.64885, + "1437477535": -11.64885, + "1437477536": -11.64886, + "1437477537": -11.64887, + "1437477538": -11.64888, + "1437477539": -11.64889, + "1437477540": -11.64889, + "1437477541": -11.6489, + "1437477542": -11.64891, + "1437477543": -11.64891, + "1437477544": -11.64892, + "1437477545": -11.64892, + "1437477546": -11.64893, + "1437477547": -11.64894, + "1437477548": -11.64894, + "1437477549": -11.64895, + "1437477550": -11.64895, + "1437477551": -11.64896, + "1437477552": -11.64896, + "1437477553": -11.64897, + "1437477555": -11.64898, + "1437477556": -11.64898, + "1437477557": -11.64899, + "1437477558": -11.64899, + "1437477559": -11.649, + "1437477560": -11.649, + "1437477561": -11.64901, + "1437477562": -11.64901, + "1437477563": -11.64902, + "1437477564": -11.64902, + "1437477565": -11.64902, + "1437477566": -11.64903, + "1437477567": -11.64903, + "1437477568": -11.64903, + "1437477569": -11.64904, + "1437477570": -11.64904, + "1437477571": -11.64904, + "1437477572": -11.64905, + "1437477573": -11.64905, + "1437477574": -11.64906, + "1437477575": -11.64906, + "1437477576": -11.64906, + "1437477577": -11.64906, + "1437477578": -11.64907, + "1437477580": -11.64907, + "1437477581": -11.64908, + "1437477582": -11.64908, + "1437477583": -11.64909, + "1437477584": -11.6491, + "1437477585": -11.64911, + "1437477586": -11.64912, + "1437477587": -11.64913, + "1437477588": -11.64914, + "1437477589": -11.64915, + "1437477590": -11.64916, + "1437477591": -11.64917, + "1437477592": -11.64918, + "1437477593": -11.64919, + "1437477594": -11.6492, + "1437477595": -11.64922, + "1437477596": -11.64923, + "1437477597": -11.64924, + "1437477598": -11.64924, + "1437477599": -11.64925, + "1437477600": -11.64926, + "1437477601": -11.64926, + "1437477604": -11.64926, + "1437477605": -11.64926, + "1437477607": -11.64927, + "1437477608": -11.64928, + "1437477609": -11.64929, + "1437477610": -11.64931, + "1437477611": -11.64932, + "1437477612": -11.64933, + "1437477613": -11.64933, + "1437477614": -11.64932, + "1437477615": -11.6493, + "1437477616": -11.64932, + "1437477617": -11.64935, + "1437477618": -11.64938, + "1437477619": -11.64938, + "1437477620": -11.64936, + "1437477621": -11.64932, + "1437477622": -11.64928, + "1437477623": -11.64923, + "1437477624": -11.64918, + "1437477625": -11.64913, + "1437477626": -11.64907, + "1437477627": -11.649, + "1437477628": -11.64893, + "1437477629": -11.64886, + "1437477630": -11.64878, + "1437477631": -11.6487, + "1437477632": -11.64861, + "1437477633": -11.64853, + "1437477634": -11.64844, + "1437477635": -11.64835, + "1437477636": -11.64827, + "1437477638": -11.64818, + "1437477639": -11.6481, + "1437477640": -11.64802, + "1437477641": -11.64794, + "1437477642": -11.64786, + "1437477643": -11.64779, + "1437477644": -11.64773, + "1437477645": -11.64767, + "1437477646": -11.64762, + "1437477647": -11.64758, + "1437477648": -11.64754, + "1437477649": -11.64751, + "1437477650": -11.64748, + "1437477651": -11.64745, + "1437477652": -11.64742, + "1437477653": -11.64739, + "1437477654": -11.64736, + "1437477655": -11.64734, + "1437477656": -11.64738, + "1437477657": -11.6474, + "1437477658": -11.6474, + "1437477659": -11.64741, + "1437477660": -11.64742, + "1437477661": -11.64742, + "1437477662": -11.64742, + "1437477663": -11.64742, + "1437477664": -11.64742, + "1437477665": -11.64742, + "1437477666": -11.64742, + "1437477667": -11.64743, + "1437477668": -11.64743, + "1437477669": -11.64743, + "1437477671": -11.64744, + "1437477672": -11.64744, + "1437477673": -11.64744, + "1437477674": -11.64744, + "1437477676": -11.64745, + "1437477677": -11.64745, + "1437477678": -11.64745, + "1437477679": -11.64745, + "1437477680": -11.64746, + "1437477681": -11.64746, + "1437477682": -11.64746, + "1437477683": -11.64746, + "1437477684": -11.64746, + "1437477685": -11.64746, + "1437477688": -11.64746, + "1437477689": -11.64746, + "1437477690": -11.64746, + "1437477691": -11.64747, + "1437477692": -11.64747, + "1437477693": -11.64747, + "1437477695": -11.64748, + "1437477696": -11.64748, + "1437477697": -11.64748, + "1437477698": -11.64749, + "1437477699": -11.64749, + "1437477700": -11.64749, + "1437477701": -11.6475, + "1437477702": -11.6475, + "1437477703": -11.6475, + "1437477704": -11.6475, + "1437477705": -11.6475, + "1437477706": -11.6475 + }, + "longitudes": { + "1437474517": 166.95095, + "1437474518": 166.95096, + "1437474519": 166.95097, + "1437474520": 166.95099, + "1437474521": 166.95101, + "1437474522": 166.95103, + "1437474523": 166.95103, + "1437474524": 166.95104, + "1437474525": 166.95104, + "1437474526": 166.95104, + "1437474527": 166.95104, + "1437474528": 166.95104, + "1437474529": 166.95105, + "1437474530": 166.95106, + "1437474532": 166.95108, + "1437474533": 166.95111, + "1437474534": 166.95113, + "1437474535": 166.95116, + "1437474536": 166.95119, + "1437474537": 166.95122, + "1437474538": 166.95126, + "1437474539": 166.95129, + "1437474540": 166.95133, + "1437474541": 166.95136, + "1437474542": 166.95139, + "1437474543": 166.95141, + "1437474544": 166.95144, + "1437474545": 166.95148, + "1437474546": 166.95152, + "1437474547": 166.95156, + "1437474548": 166.95161, + "1437474549": 166.95167, + "1437474550": 166.95172, + "1437474551": 166.95179, + "1437474552": 166.95185, + "1437474553": 166.95193, + "1437474554": 166.952, + "1437474555": 166.95208, + "1437474556": 166.95216, + "1437474557": 166.95225, + "1437474558": 166.95233, + "1437474559": 166.95242, + "1437474560": 166.9525, + "1437474561": 166.95257, + "1437474562": 166.95265, + "1437474563": 166.95272, + "1437474564": 166.95279, + "1437474566": 166.95286, + "1437474567": 166.95292, + "1437474568": 166.95298, + "1437474569": 166.95304, + "1437474570": 166.9531, + "1437474571": 166.95316, + "1437474572": 166.95322, + "1437474573": 166.95328, + "1437474574": 166.95333, + "1437474575": 166.95339, + "1437474576": 166.95345, + "1437474577": 166.95352, + "1437474578": 166.95359, + "1437474579": 166.95365, + "1437474580": 166.95372, + "1437474581": 166.95379, + "1437474582": 166.95386, + "1437474583": 166.95394, + "1437474584": 166.95402, + "1437474585": 166.95412, + "1437474586": 166.95422, + "1437474587": 166.95432, + "1437474588": 166.95441, + "1437474589": 166.95449, + "1437474590": 166.95456, + "1437474591": 166.95462, + "1437474592": 166.95468, + "1437474593": 166.95474, + "1437474594": 166.95479, + "1437474595": 166.95485, + "1437474596": 166.95491, + "1437474597": 166.95496, + "1437474598": 166.95504, + "1437474599": 166.95514, + "1437474600": 166.95523, + "1437474601": 166.95531, + "1437474603": 166.95536, + "1437474604": 166.9554, + "1437474605": 166.95542, + "1437474606": 166.95544, + "1437474607": 166.95546, + "1437474608": 166.95547, + "1437474609": 166.95548, + "1437474610": 166.95549, + "1437474611": 166.9555, + "1437474612": 166.95551, + "1437474613": 166.95551, + "1437474614": 166.95552, + "1437474615": 166.95552, + "1437474616": 166.95552, + "1437474617": 166.95552, + "1437474618": 166.95552, + "1437474619": 166.9555, + "1437474620": 166.95548, + "1437474621": 166.95544, + "1437474622": 166.95534, + "1437474623": 166.95524, + "1437474624": 166.95514, + "1437474626": 166.95504, + "1437474627": 166.95496, + "1437474628": 166.95487, + "1437474629": 166.9548, + "1437474630": 166.95477, + "1437474631": 166.95478, + "1437474632": 166.95481, + "1437474633": 166.95486, + "1437474634": 166.95494, + "1437474635": 166.95502, + "1437474636": 166.9551, + "1437474637": 166.95518, + "1437474638": 166.95526, + "1437474639": 166.95534, + "1437474640": 166.95543, + "1437474641": 166.95551, + "1437474642": 166.9556, + "1437474643": 166.95568, + "1437474644": 166.95577, + "1437474645": 166.95586, + "1437474646": 166.95594, + "1437474647": 166.95602, + "1437474648": 166.9561, + "1437474649": 166.95618, + "1437474650": 166.95624, + "1437474652": 166.9563, + "1437474653": 166.95636, + "1437474654": 166.95641, + "1437474655": 166.95646, + "1437474656": 166.95651, + "1437474657": 166.95655, + "1437474658": 166.95659, + "1437474659": 166.95662, + "1437474660": 166.95666, + "1437474661": 166.9567, + "1437474662": 166.95673, + "1437474663": 166.95677, + "1437474664": 166.9568, + "1437474665": 166.95684, + "1437474666": 166.95687, + "1437474667": 166.95688, + "1437474668": 166.95687, + "1437474669": 166.95685, + "1437474670": 166.95683, + "1437474671": 166.95681, + "1437474672": 166.95679, + "1437474673": 166.95676, + "1437474674": 166.95674, + "1437474675": 166.95671, + "1437474676": 166.95669, + "1437474677": 166.95666, + "1437474678": 166.95664, + "1437474679": 166.95662, + "1437474681": 166.95659, + "1437474682": 166.95656, + "1437474683": 166.95654, + "1437474684": 166.95651, + "1437474685": 166.95648, + "1437474686": 166.95645, + "1437474687": 166.95642, + "1437474688": 166.95639, + "1437474689": 166.95637, + "1437474690": 166.95634, + "1437474691": 166.95631, + "1437474692": 166.95628, + "1437474693": 166.95625, + "1437474694": 166.95622, + "1437474695": 166.95619, + "1437474696": 166.95616, + "1437474697": 166.95614, + "1437474698": 166.95611, + "1437474699": 166.95608, + "1437474700": 166.95605, + "1437474701": 166.95602, + "1437474702": 166.95599, + "1437474703": 166.95595, + "1437474705": 166.95592, + "1437474706": 166.95589, + "1437474707": 166.95586, + "1437474708": 166.95583, + "1437474709": 166.9558, + "1437474710": 166.95577, + "1437474711": 166.95574, + "1437474712": 166.95571, + "1437474713": 166.95567, + "1437474714": 166.95564, + "1437474715": 166.9556, + "1437474716": 166.95557, + "1437474717": 166.95553, + "1437474718": 166.9555, + "1437474719": 166.95546, + "1437474720": 166.95543, + "1437474721": 166.95539, + "1437474722": 166.95536, + "1437474723": 166.95532, + "1437474724": 166.95529, + "1437474725": 166.95525, + "1437474726": 166.95521, + "1437474727": 166.95518, + "1437474728": 166.95514, + "1437474729": 166.9551, + "1437474730": 166.95507, + "1437474732": 166.95504, + "1437474733": 166.955, + "1437474734": 166.95497, + "1437474735": 166.95494, + "1437474736": 166.95491, + "1437474737": 166.95489, + "1437474738": 166.95486, + "1437474739": 166.95483, + "1437474740": 166.95481, + "1437474741": 166.95479, + "1437474742": 166.95476, + "1437474743": 166.95475, + "1437474744": 166.95474, + "1437474745": 166.95475, + "1437474746": 166.95478, + "1437474747": 166.95482, + "1437474748": 166.95488, + "1437474749": 166.95495, + "1437474750": 166.95502, + "1437474751": 166.9551, + "1437474752": 166.95517, + "1437474753": 166.95523, + "1437474754": 166.95529, + "1437474755": 166.95536, + "1437474756": 166.95541, + "1437474757": 166.95547, + "1437474758": 166.95552, + "1437474760": 166.95557, + "1437474761": 166.95562, + "1437474762": 166.95566, + "1437474763": 166.95571, + "1437474764": 166.95575, + "1437474765": 166.95579, + "1437474766": 166.95584, + "1437474767": 166.95589, + "1437474768": 166.95593, + "1437474769": 166.95597, + "1437474770": 166.95601, + "1437474771": 166.95605, + "1437474772": 166.95609, + "1437474773": 166.95613, + "1437474774": 166.95618, + "1437474775": 166.95622, + "1437474776": 166.95626, + "1437474777": 166.9563, + "1437474778": 166.95634, + "1437474779": 166.95638, + "1437474780": 166.95642, + "1437474781": 166.95645, + "1437474782": 166.95649, + "1437474783": 166.95653, + "1437474785": 166.95657, + "1437474786": 166.95661, + "1437474787": 166.95665, + "1437474788": 166.95669, + "1437474789": 166.95673, + "1437474790": 166.95677, + "1437474791": 166.95681, + "1437474792": 166.95685, + "1437474793": 166.95689, + "1437474794": 166.95693, + "1437474795": 166.95697, + "1437474796": 166.95701, + "1437474797": 166.95705, + "1437474798": 166.9571, + "1437474799": 166.95714, + "1437474800": 166.95718, + "1437474801": 166.95722, + "1437474802": 166.95726, + "1437474803": 166.9573, + "1437474804": 166.95734, + "1437474805": 166.95738, + "1437474806": 166.95742, + "1437474808": 166.95745, + "1437474809": 166.95747, + "1437474810": 166.95749, + "1437474811": 166.95749, + "1437474812": 166.9575, + "1437474813": 166.95752, + "1437474814": 166.95754, + "1437474815": 166.95756, + "1437474816": 166.95757, + "1437474817": 166.95758, + "1437474818": 166.95758, + "1437474819": 166.95759, + "1437474820": 166.9576, + "1437474821": 166.9576, + "1437474822": 166.95761, + "1437474823": 166.95762, + "1437474824": 166.95763, + "1437474825": 166.95765, + "1437474827": 166.95767, + "1437474828": 166.95769, + "1437474829": 166.95771, + "1437474830": 166.95774, + "1437474831": 166.95778, + "1437474832": 166.95782, + "1437474833": 166.95786, + "1437474834": 166.95791, + "1437474835": 166.95796, + "1437474836": 166.95801, + "1437474837": 166.95807, + "1437474838": 166.95813, + "1437474839": 166.95819, + "1437474840": 166.95826, + "1437474841": 166.95832, + "1437474842": 166.95839, + "1437474843": 166.95847, + "1437474844": 166.95854, + "1437474845": 166.95861, + "1437474846": 166.95869, + "1437474847": 166.95877, + "1437474848": 166.95884, + "1437474849": 166.95892, + "1437474850": 166.959, + "1437474851": 166.95907, + "1437474852": 166.95914, + "1437474853": 166.9592, + "1437474854": 166.95925, + "1437474855": 166.9593, + "1437474856": 166.95934, + "1437474857": 166.95936, + "1437474859": 166.95937, + "1437474860": 166.95937, + "1437474861": 166.95936, + "1437474862": 166.95936, + "1437474863": 166.95936, + "1437474864": 166.95935, + "1437474865": 166.95935, + "1437474866": 166.95935, + "1437474867": 166.95934, + "1437474868": 166.95934, + "1437474869": 166.95933, + "1437474870": 166.95933, + "1437474871": 166.95933, + "1437474872": 166.95932, + "1437474873": 166.95931, + "1437474874": 166.95929, + "1437474875": 166.95928, + "1437474876": 166.95926, + "1437474877": 166.95924, + "1437474878": 166.95921, + "1437474879": 166.95918, + "1437474880": 166.95914, + "1437474881": 166.9591, + "1437474882": 166.95904, + "1437474883": 166.95898, + "1437474884": 166.9589, + "1437474885": 166.95882, + "1437474886": 166.95873, + "1437474887": 166.95864, + "1437474888": 166.95854, + "1437474890": 166.95844, + "1437474891": 166.95834, + "1437474892": 166.95823, + "1437474893": 166.95812, + "1437474894": 166.958, + "1437474895": 166.95789, + "1437474896": 166.95777, + "1437474897": 166.95766, + "1437474898": 166.95755, + "1437474899": 166.95746, + "1437474900": 166.95737, + "1437474901": 166.95729, + "1437474902": 166.95722, + "1437474903": 166.95714, + "1437474904": 166.95707, + "1437474905": 166.957, + "1437474906": 166.95692, + "1437474907": 166.95684, + "1437474908": 166.95676, + "1437474909": 166.95667, + "1437474910": 166.95658, + "1437474911": 166.95648, + "1437474912": 166.95638, + "1437474913": 166.95627, + "1437474914": 166.95616, + "1437474915": 166.95605, + "1437474916": 166.95593, + "1437474917": 166.95581, + "1437474918": 166.95569, + "1437474919": 166.95557, + "1437474920": 166.95545, + "1437474921": 166.95533, + "1437474923": 166.9552, + "1437474924": 166.95507, + "1437474925": 166.95494, + "1437474926": 166.95482, + "1437474927": 166.95468, + "1437474928": 166.95455, + "1437474929": 166.95442, + "1437474930": 166.95433, + "1437474931": 166.9543, + "1437474932": 166.95433, + "1437474933": 166.95437, + "1437474934": 166.95442, + "1437474935": 166.95446, + "1437474936": 166.9545, + "1437474937": 166.95454, + "1437474938": 166.95458, + "1437474939": 166.9546, + "1437474940": 166.95462, + "1437474941": 166.95463, + "1437474942": 166.95463, + "1437474943": 166.95461, + "1437474944": 166.95458, + "1437474945": 166.95454, + "1437474946": 166.9545, + "1437474947": 166.95445, + "1437474948": 166.9544, + "1437474949": 166.95435, + "1437474950": 166.95429, + "1437474951": 166.95424, + "1437474952": 166.95418, + "1437474953": 166.95412, + "1437474954": 166.95405, + "1437474955": 166.95399, + "1437474956": 166.95392, + "1437474957": 166.95386, + "1437474958": 166.9538, + "1437474959": 166.95374, + "1437474960": 166.95369, + "1437474962": 166.95365, + "1437474963": 166.95361, + "1437474964": 166.95358, + "1437474965": 166.95356, + "1437474966": 166.95355, + "1437474967": 166.95354, + "1437474968": 166.95352, + "1437474969": 166.95351, + "1437474970": 166.95349, + "1437474971": 166.95346, + "1437474972": 166.95344, + "1437474973": 166.95341, + "1437474974": 166.95338, + "1437474975": 166.95336, + "1437474976": 166.95333, + "1437474977": 166.95331, + "1437474978": 166.95328, + "1437474979": 166.95326, + "1437474980": 166.95323, + "1437474981": 166.95321, + "1437474982": 166.95318, + "1437474983": 166.95315, + "1437474984": 166.95313, + "1437474985": 166.95309, + "1437474986": 166.95305, + "1437474987": 166.95302, + "1437474988": 166.95299, + "1437474989": 166.95295, + "1437474990": 166.95291, + "1437474992": 166.95286, + "1437474993": 166.9528, + "1437474994": 166.95274, + "1437474995": 166.95269, + "1437474996": 166.95263, + "1437474997": 166.95256, + "1437474998": 166.95246, + "1437474999": 166.95235, + "1437475000": 166.95223, + "1437475001": 166.9521, + "1437475002": 166.95197, + "1437475003": 166.95184, + "1437475004": 166.9517, + "1437475005": 166.95157, + "1437475006": 166.95143, + "1437475007": 166.95129, + "1437475008": 166.95114, + "1437475009": 166.951, + "1437475010": 166.95087, + "1437475012": 166.95079, + "1437475013": 166.95079, + "1437475014": 166.95083, + "1437475015": 166.95088, + "1437475016": 166.95095, + "1437475017": 166.95101, + "1437475018": 166.95108, + "1437475019": 166.95114, + "1437475020": 166.9512, + "1437475021": 166.95127, + "1437475022": 166.95132, + "1437475023": 166.95136, + "1437475024": 166.9514, + "1437475025": 166.95143, + "1437475026": 166.95147, + "1437475027": 166.95151, + "1437475029": 166.95155, + "1437475030": 166.95159, + "1437475031": 166.95162, + "1437475032": 166.95164, + "1437475033": 166.95167, + "1437475034": 166.95169, + "1437475035": 166.95171, + "1437475036": 166.95173, + "1437475037": 166.95174, + "1437475038": 166.95175, + "1437475039": 166.95174, + "1437475040": 166.95174, + "1437475041": 166.95172, + "1437475042": 166.95169, + "1437475043": 166.95166, + "1437475044": 166.95163, + "1437475045": 166.95158, + "1437475046": 166.95154, + "1437475047": 166.9515, + "1437475048": 166.95145, + "1437475049": 166.95141, + "1437475050": 166.95136, + "1437475051": 166.95132, + "1437475052": 166.95128, + "1437475054": 166.95123, + "1437475055": 166.95119, + "1437475056": 166.95115, + "1437475057": 166.95113, + "1437475058": 166.9511, + "1437475059": 166.95107, + "1437475060": 166.95104, + "1437475061": 166.951, + "1437475062": 166.95097, + "1437475063": 166.95094, + "1437475064": 166.95091, + "1437475065": 166.95088, + "1437475066": 166.95085, + "1437475067": 166.95082, + "1437475068": 166.95079, + "1437475069": 166.95076, + "1437475070": 166.95073, + "1437475071": 166.9507, + "1437475072": 166.95066, + "1437475073": 166.95063, + "1437475074": 166.9506, + "1437475075": 166.95056, + "1437475076": 166.95051, + "1437475077": 166.95048, + "1437475078": 166.95044, + "1437475079": 166.95041, + "1437475080": 166.95043, + "1437475081": 166.95048, + "1437475083": 166.95057, + "1437475084": 166.95067, + "1437475085": 166.95077, + "1437475086": 166.95087, + "1437475087": 166.95098, + "1437475088": 166.95103, + "1437475089": 166.95112, + "1437475090": 166.95121, + "1437475091": 166.9513, + "1437475092": 166.95139, + "1437475093": 166.95148, + "1437475094": 166.95157, + "1437475095": 166.95165, + "1437475096": 166.95173, + "1437475097": 166.95181, + "1437475098": 166.95189, + "1437475099": 166.95196, + "1437475100": 166.95204, + "1437475101": 166.9521, + "1437475102": 166.95217, + "1437475103": 166.95222, + "1437475104": 166.95227, + "1437475105": 166.95231, + "1437475106": 166.95233, + "1437475107": 166.95233, + "1437475108": 166.95233, + "1437475109": 166.95232, + "1437475110": 166.9523, + "1437475112": 166.95229, + "1437475113": 166.95228, + "1437475114": 166.95228, + "1437475115": 166.95229, + "1437475116": 166.9523, + "1437475117": 166.95232, + "1437475118": 166.95235, + "1437475119": 166.95237, + "1437475120": 166.95239, + "1437475121": 166.9524, + "1437475122": 166.95242, + "1437475123": 166.95243, + "1437475124": 166.95244, + "1437475125": 166.95244, + "1437475126": 166.95245, + "1437475127": 166.95244, + "1437475128": 166.95244, + "1437475129": 166.95244, + "1437475130": 166.95243, + "1437475131": 166.95243, + "1437475132": 166.95242, + "1437475133": 166.95241, + "1437475134": 166.9524, + "1437475135": 166.95239, + "1437475136": 166.95237, + "1437475137": 166.95235, + "1437475138": 166.95233, + "1437475139": 166.9523, + "1437475140": 166.95225, + "1437475141": 166.95219, + "1437475142": 166.95212, + "1437475143": 166.95203, + "1437475145": 166.95192, + "1437475146": 166.95182, + "1437475147": 166.9517, + "1437475148": 166.95159, + "1437475149": 166.95148, + "1437475150": 166.95136, + "1437475151": 166.95125, + "1437475152": 166.95114, + "1437475153": 166.95104, + "1437475154": 166.95095, + "1437475155": 166.95086, + "1437475156": 166.95077, + "1437475157": 166.95069, + "1437475158": 166.95059, + "1437475159": 166.95049, + "1437475160": 166.95038, + "1437475161": 166.95027, + "1437475162": 166.95015, + "1437475163": 166.95004, + "1437475164": 166.94995, + "1437475165": 166.94989, + "1437475166": 166.94986, + "1437475167": 166.94983, + "1437475168": 166.94979, + "1437475169": 166.94974, + "1437475170": 166.94965, + "1437475171": 166.94952, + "1437475173": 166.9494, + "1437475174": 166.94928, + "1437475175": 166.94917, + "1437475176": 166.94906, + "1437475177": 166.94895, + "1437475178": 166.94884, + "1437475179": 166.94875, + "1437475180": 166.94869, + "1437475181": 166.9487, + "1437475182": 166.94875, + "1437475183": 166.94882, + "1437475184": 166.9489, + "1437475185": 166.94898, + "1437475186": 166.94906, + "1437475187": 166.94914, + "1437475188": 166.94922, + "1437475189": 166.9493, + "1437475190": 166.94938, + "1437475191": 166.94945, + "1437475192": 166.94953, + "1437475193": 166.94959, + "1437475194": 166.94965, + "1437475195": 166.9497, + "1437475196": 166.94972, + "1437475197": 166.9497, + "1437475198": 166.94963, + "1437475200": 166.94955, + "1437475201": 166.94946, + "1437475202": 166.94936, + "1437475203": 166.94927, + "1437475204": 166.94917, + "1437475205": 166.94906, + "1437475206": 166.94897, + "1437475207": 166.94887, + "1437475208": 166.94877, + "1437475209": 166.94867, + "1437475210": 166.94857, + "1437475211": 166.94847, + "1437475212": 166.94837, + "1437475213": 166.94832, + "1437475214": 166.94835, + "1437475215": 166.94843, + "1437475216": 166.94851, + "1437475217": 166.9486, + "1437475218": 166.94869, + "1437475219": 166.94877, + "1437475220": 166.94886, + "1437475221": 166.94894, + "1437475222": 166.94903, + "1437475223": 166.94912, + "1437475224": 166.9492, + "1437475225": 166.94929, + "1437475226": 166.94937, + "1437475227": 166.94943, + "1437475228": 166.94947, + "1437475230": 166.94947, + "1437475231": 166.94942, + "1437475232": 166.94935, + "1437475233": 166.94928, + "1437475234": 166.94922, + "1437475235": 166.94916, + "1437475236": 166.9491, + "1437475237": 166.94904, + "1437475238": 166.94899, + "1437475239": 166.94893, + "1437475240": 166.94887, + "1437475241": 166.94881, + "1437475242": 166.94875, + "1437475243": 166.94869, + "1437475244": 166.94864, + "1437475245": 166.94858, + "1437475246": 166.94852, + "1437475247": 166.94846, + "1437475248": 166.9484, + "1437475249": 166.94834, + "1437475250": 166.94828, + "1437475251": 166.94822, + "1437475252": 166.94816, + "1437475253": 166.9481, + "1437475254": 166.94802, + "1437475255": 166.94793, + "1437475256": 166.94785, + "1437475257": 166.94779, + "1437475258": 166.94782, + "1437475259": 166.94789, + "1437475260": 166.94796, + "1437475261": 166.94804, + "1437475262": 166.94811, + "1437475263": 166.94818, + "1437475264": 166.94825, + "1437475265": 166.94831, + "1437475266": 166.94837, + "1437475267": 166.94843, + "1437475269": 166.94849, + "1437475270": 166.94854, + "1437475271": 166.9486, + "1437475272": 166.94864, + "1437475273": 166.94869, + "1437475274": 166.94874, + "1437475275": 166.94878, + "1437475276": 166.94883, + "1437475277": 166.94887, + "1437475278": 166.94891, + "1437475279": 166.94895, + "1437475280": 166.94899, + "1437475281": 166.94903, + "1437475282": 166.94907, + "1437475283": 166.94911, + "1437475284": 166.94915, + "1437475285": 166.94919, + "1437475286": 166.94923, + "1437475287": 166.94926, + "1437475288": 166.9493, + "1437475289": 166.94934, + "1437475290": 166.94937, + "1437475291": 166.94941, + "1437475292": 166.94944, + "1437475293": 166.94948, + "1437475294": 166.94952, + "1437475295": 166.94955, + "1437475296": 166.94959, + "1437475297": 166.94962, + "1437475298": 166.94965, + "1437475299": 166.94969, + "1437475300": 166.94972, + "1437475301": 166.94975, + "1437475302": 166.94978, + "1437475303": 166.9498, + "1437475304": 166.94983, + "1437475305": 166.94985, + "1437475306": 166.94986, + "1437475308": 166.94988, + "1437475309": 166.94989, + "1437475310": 166.94989, + "1437475311": 166.9499, + "1437475312": 166.9499, + "1437475313": 166.94989, + "1437475314": 166.94988, + "1437475315": 166.94986, + "1437475316": 166.94984, + "1437475317": 166.94981, + "1437475318": 166.94977, + "1437475319": 166.94972, + "1437475320": 166.94963, + "1437475321": 166.94951, + "1437475322": 166.94939, + "1437475323": 166.94926, + "1437475324": 166.94914, + "1437475325": 166.94901, + "1437475326": 166.94889, + "1437475327": 166.94877, + "1437475328": 166.94869, + "1437475329": 166.94862, + "1437475330": 166.94856, + "1437475331": 166.9485, + "1437475332": 166.94844, + "1437475333": 166.94836, + "1437475334": 166.94825, + "1437475335": 166.94816, + "1437475336": 166.94808, + "1437475337": 166.94801, + "1437475338": 166.94794, + "1437475339": 166.94788, + "1437475340": 166.94782, + "1437475342": 166.94775, + "1437475343": 166.94771, + "1437475344": 166.94765, + "1437475345": 166.94758, + "1437475346": 166.94756, + "1437475347": 166.94762, + "1437475348": 166.9477, + "1437475349": 166.94778, + "1437475350": 166.94786, + "1437475351": 166.94792, + "1437475352": 166.94795, + "1437475353": 166.94797, + "1437475354": 166.948, + "1437475355": 166.94808, + "1437475356": 166.94819, + "1437475357": 166.94829, + "1437475358": 166.9484, + "1437475359": 166.94849, + "1437475360": 166.94859, + "1437475361": 166.94868, + "1437475362": 166.94877, + "1437475363": 166.94885, + "1437475364": 166.94889, + "1437475365": 166.94889, + "1437475366": 166.94887, + "1437475367": 166.94883, + "1437475368": 166.94878, + "1437475369": 166.94871, + "1437475371": 166.94863, + "1437475372": 166.94856, + "1437475373": 166.94847, + "1437475374": 166.94838, + "1437475375": 166.94828, + "1437475376": 166.94818, + "1437475377": 166.94811, + "1437475378": 166.94806, + "1437475379": 166.94801, + "1437475380": 166.94796, + "1437475381": 166.94787, + "1437475382": 166.94775, + "1437475383": 166.94764, + "1437475384": 166.94753, + "1437475385": 166.94742, + "1437475386": 166.94733, + "1437475387": 166.94726, + "1437475388": 166.94722, + "1437475389": 166.94718, + "1437475390": 166.94715, + "1437475391": 166.94711, + "1437475392": 166.94707, + "1437475393": 166.94701, + "1437475394": 166.94692, + "1437475395": 166.94685, + "1437475396": 166.9468, + "1437475397": 166.94675, + "1437475398": 166.9467, + "1437475400": 166.94663, + "1437475401": 166.94654, + "1437475402": 166.94647, + "1437475403": 166.94639, + "1437475404": 166.94631, + "1437475405": 166.94626, + "1437475406": 166.94622, + "1437475407": 166.94619, + "1437475408": 166.94616, + "1437475409": 166.94613, + "1437475410": 166.94611, + "1437475411": 166.9461, + "1437475412": 166.94609, + "1437475413": 166.94611, + "1437475414": 166.94614, + "1437475415": 166.94618, + "1437475416": 166.94624, + "1437475417": 166.94631, + "1437475418": 166.94638, + "1437475419": 166.94645, + "1437475420": 166.94652, + "1437475421": 166.9466, + "1437475422": 166.94668, + "1437475423": 166.94676, + "1437475424": 166.94684, + "1437475425": 166.94693, + "1437475426": 166.94701, + "1437475427": 166.9471, + "1437475428": 166.94719, + "1437475429": 166.94729, + "1437475430": 166.94738, + "1437475431": 166.94747, + "1437475433": 166.94757, + "1437475434": 166.94767, + "1437475435": 166.94777, + "1437475436": 166.94786, + "1437475437": 166.94796, + "1437475438": 166.94805, + "1437475439": 166.94814, + "1437475440": 166.94823, + "1437475441": 166.94832, + "1437475442": 166.9484, + "1437475443": 166.94847, + "1437475444": 166.94853, + "1437475445": 166.94859, + "1437475446": 166.94865, + "1437475447": 166.9487, + "1437475448": 166.94875, + "1437475449": 166.94879, + "1437475450": 166.94883, + "1437475451": 166.94886, + "1437475452": 166.94888, + "1437475453": 166.94891, + "1437475454": 166.94894, + "1437475455": 166.94898, + "1437475456": 166.94901, + "1437475457": 166.94905, + "1437475458": 166.94909, + "1437475459": 166.94913, + "1437475460": 166.94917, + "1437475461": 166.94921, + "1437475462": 166.94926, + "1437475463": 166.94931, + "1437475464": 166.94936, + "1437475466": 166.94941, + "1437475467": 166.94946, + "1437475468": 166.94951, + "1437475469": 166.94956, + "1437475470": 166.94961, + "1437475471": 166.94965, + "1437475472": 166.9497, + "1437475473": 166.94975, + "1437475474": 166.9498, + "1437475475": 166.94984, + "1437475476": 166.94989, + "1437475477": 166.94994, + "1437475478": 166.94998, + "1437475479": 166.95003, + "1437475480": 166.95006, + "1437475481": 166.9501, + "1437475482": 166.95013, + "1437475483": 166.95015, + "1437475484": 166.95018, + "1437475485": 166.95019, + "1437475486": 166.9502, + "1437475487": 166.95021, + "1437475488": 166.95021, + "1437475489": 166.95021, + "1437475490": 166.95021, + "1437475491": 166.95021, + "1437475492": 166.95021, + "1437475493": 166.95022, + "1437475494": 166.95023, + "1437475495": 166.95024, + "1437475496": 166.95025, + "1437475497": 166.95026, + "1437475498": 166.95028, + "1437475499": 166.95029, + "1437475500": 166.95031, + "1437475501": 166.95034, + "1437475502": 166.95036, + "1437475503": 166.95038, + "1437475504": 166.95041, + "1437475505": 166.95044, + "1437475506": 166.95047, + "1437475507": 166.95051, + "1437475508": 166.95055, + "1437475510": 166.95059, + "1437475511": 166.95063, + "1437475512": 166.95066, + "1437475513": 166.9507, + "1437475514": 166.95074, + "1437475515": 166.95078, + "1437475516": 166.95083, + "1437475517": 166.95088, + "1437475518": 166.95092, + "1437475519": 166.95098, + "1437475520": 166.95103, + "1437475521": 166.95108, + "1437475522": 166.95113, + "1437475523": 166.95119, + "1437475524": 166.95124, + "1437475525": 166.9513, + "1437475526": 166.95136, + "1437475527": 166.95142, + "1437475528": 166.95148, + "1437475529": 166.95154, + "1437475530": 166.95161, + "1437475531": 166.95167, + "1437475532": 166.95174, + "1437475533": 166.9518, + "1437475534": 166.95187, + "1437475535": 166.95194, + "1437475536": 166.95201, + "1437475537": 166.95208, + "1437475538": 166.95215, + "1437475539": 166.95222, + "1437475540": 166.95229, + "1437475541": 166.95235, + "1437475542": 166.95242, + "1437475543": 166.95248, + "1437475544": 166.95254, + "1437475545": 166.9526, + "1437475546": 166.95266, + "1437475547": 166.95271, + "1437475548": 166.95276, + "1437475549": 166.95281, + "1437475551": 166.95286, + "1437475552": 166.95291, + "1437475553": 166.95296, + "1437475554": 166.953, + "1437475555": 166.95305, + "1437475556": 166.95309, + "1437475557": 166.95314, + "1437475558": 166.95318, + "1437475559": 166.95323, + "1437475560": 166.95327, + "1437475561": 166.95332, + "1437475562": 166.95336, + "1437475563": 166.9534, + "1437475564": 166.95345, + "1437475565": 166.95349, + "1437475566": 166.95353, + "1437475567": 166.95357, + "1437475568": 166.95362, + "1437475569": 166.95366, + "1437475570": 166.95371, + "1437475571": 166.95376, + "1437475572": 166.95381, + "1437475573": 166.95386, + "1437475574": 166.95391, + "1437475575": 166.95397, + "1437475576": 166.95403, + "1437475577": 166.9541, + "1437475578": 166.95418, + "1437475580": 166.95425, + "1437475581": 166.95432, + "1437475582": 166.95438, + "1437475583": 166.95444, + "1437475584": 166.95449, + "1437475585": 166.95454, + "1437475586": 166.95458, + "1437475587": 166.95463, + "1437475588": 166.95467, + "1437475589": 166.9547, + "1437475590": 166.95474, + "1437475591": 166.95478, + "1437475592": 166.95481, + "1437475593": 166.95484, + "1437475594": 166.95488, + "1437475595": 166.95491, + "1437475596": 166.95494, + "1437475597": 166.95496, + "1437475598": 166.95498, + "1437475599": 166.955, + "1437475600": 166.95501, + "1437475601": 166.95502, + "1437475602": 166.95502, + "1437475603": 166.95502, + "1437475604": 166.95502, + "1437475605": 166.95502, + "1437475606": 166.95502, + "1437475607": 166.95503, + "1437475608": 166.95504, + "1437475610": 166.95506, + "1437475611": 166.95508, + "1437475612": 166.9551, + "1437475613": 166.95512, + "1437475614": 166.95514, + "1437475615": 166.95516, + "1437475616": 166.95519, + "1437475617": 166.95522, + "1437475618": 166.95524, + "1437475619": 166.95526, + "1437475620": 166.95528, + "1437475621": 166.9553, + "1437475622": 166.95532, + "1437475623": 166.95533, + "1437475624": 166.95534, + "1437475625": 166.95536, + "1437475626": 166.95537, + "1437475627": 166.95538, + "1437475628": 166.95539, + "1437475629": 166.9554, + "1437475630": 166.95541, + "1437475631": 166.95542, + "1437475632": 166.95542, + "1437475633": 166.95543, + "1437475634": 166.95544, + "1437475636": 166.95545, + "1437475637": 166.95545, + "1437475638": 166.95546, + "1437475639": 166.95546, + "1437475640": 166.95547, + "1437475641": 166.95548, + "1437475642": 166.95548, + "1437475643": 166.95549, + "1437475644": 166.95549, + "1437475645": 166.9555, + "1437475646": 166.9555, + "1437475647": 166.9555, + "1437475648": 166.95551, + "1437475649": 166.95551, + "1437475650": 166.95551, + "1437475651": 166.95551, + "1437475652": 166.95551, + "1437475653": 166.95551, + "1437475654": 166.95551, + "1437475655": 166.95551, + "1437475656": 166.95551, + "1437475657": 166.9555, + "1437475658": 166.9555, + "1437475659": 166.95549, + "1437475660": 166.95547, + "1437475662": 166.95543, + "1437475663": 166.95538, + "1437475664": 166.95532, + "1437475665": 166.95526, + "1437475666": 166.95521, + "1437475667": 166.95515, + "1437475668": 166.9551, + "1437475669": 166.95505, + "1437475670": 166.95499, + "1437475671": 166.95493, + "1437475672": 166.95488, + "1437475673": 166.95482, + "1437475674": 166.95479, + "1437475675": 166.95478, + "1437475676": 166.95478, + "1437475677": 166.9548, + "1437475678": 166.95481, + "1437475679": 166.95484, + "1437475680": 166.95487, + "1437475681": 166.9549, + "1437475682": 166.95493, + "1437475683": 166.95497, + "1437475684": 166.95501, + "1437475685": 166.95505, + "1437475686": 166.95509, + "1437475687": 166.95513, + "1437475688": 166.95517, + "1437475689": 166.95521, + "1437475690": 166.95526, + "1437475691": 166.9553, + "1437475693": 166.95535, + "1437475694": 166.9554, + "1437475695": 166.95545, + "1437475696": 166.95551, + "1437475697": 166.95556, + "1437475698": 166.95562, + "1437475699": 166.95567, + "1437475700": 166.95573, + "1437475701": 166.95579, + "1437475702": 166.95585, + "1437475703": 166.95589, + "1437475704": 166.95593, + "1437475705": 166.95597, + "1437475706": 166.956, + "1437475707": 166.95603, + "1437475708": 166.95606, + "1437475709": 166.95608, + "1437475710": 166.95611, + "1437475711": 166.95613, + "1437475712": 166.95615, + "1437475713": 166.95617, + "1437475714": 166.95619, + "1437475715": 166.95621, + "1437475716": 166.95623, + "1437475717": 166.95625, + "1437475718": 166.95627, + "1437475719": 166.95629, + "1437475720": 166.95631, + "1437475721": 166.95633, + "1437475722": 166.95635, + "1437475724": 166.95638, + "1437475725": 166.9564, + "1437475726": 166.95642, + "1437475727": 166.95643, + "1437475728": 166.95645, + "1437475729": 166.95647, + "1437475730": 166.95649, + "1437475731": 166.95651, + "1437475732": 166.95653, + "1437475733": 166.95655, + "1437475734": 166.95657, + "1437475735": 166.95658, + "1437475736": 166.9566, + "1437475737": 166.95661, + "1437475738": 166.95663, + "1437475739": 166.95665, + "1437475740": 166.95667, + "1437475741": 166.9567, + "1437475742": 166.95672, + "1437475743": 166.95675, + "1437475744": 166.95677, + "1437475745": 166.9568, + "1437475746": 166.95682, + "1437475747": 166.95684, + "1437475748": 166.95686, + "1437475749": 166.95688, + "1437475750": 166.95688, + "1437475751": 166.95688, + "1437475752": 166.95687, + "1437475753": 166.95687, + "1437475754": 166.95686, + "1437475755": 166.95685, + "1437475756": 166.95684, + "1437475758": 166.95683, + "1437475759": 166.95682, + "1437475760": 166.95681, + "1437475761": 166.9568, + "1437475762": 166.95679, + "1437475763": 166.95677, + "1437475764": 166.95676, + "1437475765": 166.95674, + "1437475766": 166.95673, + "1437475767": 166.95671, + "1437475768": 166.95669, + "1437475769": 166.95668, + "1437475770": 166.95666, + "1437475771": 166.95664, + "1437475772": 166.95662, + "1437475773": 166.95661, + "1437475774": 166.95659, + "1437475775": 166.95657, + "1437475776": 166.95656, + "1437475777": 166.95654, + "1437475778": 166.95652, + "1437475779": 166.9565, + "1437475780": 166.95648, + "1437475781": 166.95646, + "1437475782": 166.95644, + "1437475783": 166.95642, + "1437475784": 166.9564, + "1437475785": 166.95638, + "1437475786": 166.95636, + "1437475787": 166.95635, + "1437475788": 166.95633, + "1437475789": 166.95631, + "1437475791": 166.95629, + "1437475792": 166.95627, + "1437475793": 166.95625, + "1437475794": 166.95623, + "1437475795": 166.95621, + "1437475796": 166.95619, + "1437475797": 166.95617, + "1437475798": 166.95615, + "1437475799": 166.95613, + "1437475800": 166.95611, + "1437475801": 166.95609, + "1437475802": 166.95607, + "1437475803": 166.95605, + "1437475804": 166.95603, + "1437475805": 166.95601, + "1437475806": 166.95599, + "1437475807": 166.95597, + "1437475808": 166.95595, + "1437475809": 166.95593, + "1437475810": 166.95591, + "1437475811": 166.95589, + "1437475812": 166.95587, + "1437475813": 166.95584, + "1437475814": 166.95582, + "1437475815": 166.9558, + "1437475816": 166.95579, + "1437475817": 166.95577, + "1437475818": 166.95575, + "1437475819": 166.95573, + "1437475821": 166.95571, + "1437475822": 166.95569, + "1437475823": 166.95567, + "1437475824": 166.95565, + "1437475825": 166.95563, + "1437475826": 166.95561, + "1437475827": 166.95559, + "1437475828": 166.95558, + "1437475829": 166.95556, + "1437475830": 166.95554, + "1437475831": 166.95552, + "1437475832": 166.9555, + "1437475833": 166.95549, + "1437475834": 166.95547, + "1437475835": 166.95545, + "1437475836": 166.95543, + "1437475837": 166.95542, + "1437475838": 166.9554, + "1437475839": 166.95538, + "1437475840": 166.95536, + "1437475841": 166.95535, + "1437475842": 166.95533, + "1437475843": 166.95531, + "1437475844": 166.95529, + "1437475845": 166.95528, + "1437475846": 166.95526, + "1437475847": 166.95524, + "1437475848": 166.95522, + "1437475849": 166.95521, + "1437475850": 166.95519, + "1437475852": 166.95517, + "1437475853": 166.95515, + "1437475854": 166.95513, + "1437475855": 166.95512, + "1437475856": 166.9551, + "1437475857": 166.95508, + "1437475858": 166.95506, + "1437475859": 166.95505, + "1437475860": 166.95503, + "1437475861": 166.95501, + "1437475862": 166.955, + "1437475863": 166.95498, + "1437475864": 166.95496, + "1437475865": 166.95495, + "1437475866": 166.95494, + "1437475867": 166.95493, + "1437475868": 166.95491, + "1437475869": 166.9549, + "1437475870": 166.95489, + "1437475871": 166.95487, + "1437475872": 166.95486, + "1437475873": 166.95484, + "1437475874": 166.95483, + "1437475875": 166.95481, + "1437475876": 166.95479, + "1437475878": 166.95478, + "1437475879": 166.95477, + "1437475880": 166.95476, + "1437475881": 166.95475, + "1437475882": 166.95474, + "1437475883": 166.95474, + "1437475884": 166.95475, + "1437475885": 166.95477, + "1437475886": 166.95479, + "1437475887": 166.95483, + "1437475888": 166.95488, + "1437475889": 166.95494, + "1437475890": 166.95499, + "1437475891": 166.95505, + "1437475892": 166.9551, + "1437475893": 166.95515, + "1437475894": 166.95519, + "1437475895": 166.95523, + "1437475896": 166.95527, + "1437475897": 166.95531, + "1437475898": 166.95534, + "1437475899": 166.95537, + "1437475900": 166.9554, + "1437475901": 166.95542, + "1437475902": 166.95545, + "1437475903": 166.95547, + "1437475905": 166.9555, + "1437475906": 166.95552, + "1437475907": 166.95555, + "1437475908": 166.95557, + "1437475909": 166.95559, + "1437475910": 166.95562, + "1437475911": 166.95564, + "1437475912": 166.95566, + "1437475913": 166.95568, + "1437475914": 166.9557, + "1437475915": 166.95573, + "1437475916": 166.95575, + "1437475917": 166.95578, + "1437475918": 166.9558, + "1437475919": 166.95582, + "1437475920": 166.95585, + "1437475921": 166.95587, + "1437475922": 166.95589, + "1437475923": 166.95592, + "1437475924": 166.95594, + "1437475925": 166.95596, + "1437475926": 166.95599, + "1437475927": 166.95601, + "1437475928": 166.95603, + "1437475929": 166.95606, + "1437475930": 166.95608, + "1437475931": 166.9561, + "1437475932": 166.95613, + "1437475933": 166.95615, + "1437475934": 166.95617, + "1437475935": 166.95619, + "1437475936": 166.95621, + "1437475938": 166.95623, + "1437475939": 166.95624, + "1437475940": 166.95626, + "1437475941": 166.95628, + "1437475942": 166.9563, + "1437475943": 166.95633, + "1437475944": 166.95635, + "1437475945": 166.95637, + "1437475946": 166.95639, + "1437475947": 166.95641, + "1437475948": 166.95643, + "1437475949": 166.95645, + "1437475950": 166.95648, + "1437475951": 166.9565, + "1437475952": 166.95652, + "1437475953": 166.95654, + "1437475954": 166.95656, + "1437475955": 166.95658, + "1437475956": 166.9566, + "1437475957": 166.95661, + "1437475958": 166.95663, + "1437475959": 166.95665, + "1437475960": 166.95667, + "1437475961": 166.95669, + "1437475962": 166.95671, + "1437475963": 166.95672, + "1437475964": 166.95673, + "1437475965": 166.95674, + "1437475967": 166.95675, + "1437475968": 166.95676, + "1437475969": 166.95678, + "1437475970": 166.95678, + "1437475971": 166.9568, + "1437475972": 166.95681, + "1437475973": 166.95683, + "1437475974": 166.95685, + "1437475975": 166.95687, + "1437475976": 166.95689, + "1437475977": 166.95691, + "1437475978": 166.95693, + "1437475979": 166.95695, + "1437475980": 166.95696, + "1437475981": 166.95698, + "1437475982": 166.957, + "1437475983": 166.95702, + "1437475984": 166.95704, + "1437475985": 166.95706, + "1437475986": 166.95708, + "1437475987": 166.9571, + "1437475988": 166.95712, + "1437475989": 166.95714, + "1437475990": 166.95717, + "1437475991": 166.95719, + "1437475992": 166.95721, + "1437475993": 166.95723, + "1437475994": 166.95726, + "1437475995": 166.95728, + "1437475997": 166.9573, + "1437475998": 166.95732, + "1437475999": 166.95734, + "1437476000": 166.95736, + "1437476001": 166.95738, + "1437476002": 166.9574, + "1437476003": 166.95742, + "1437476004": 166.95744, + "1437476005": 166.95745, + "1437476006": 166.95746, + "1437476007": 166.95747, + "1437476008": 166.95748, + "1437476009": 166.95748, + "1437476010": 166.95749, + "1437476011": 166.9575, + "1437476012": 166.95752, + "1437476013": 166.95753, + "1437476014": 166.95754, + "1437476015": 166.95755, + "1437476016": 166.95756, + "1437476017": 166.95757, + "1437476019": 166.95757, + "1437476020": 166.95758, + "1437476021": 166.95758, + "1437476022": 166.95758, + "1437476023": 166.95759, + "1437476024": 166.95759, + "1437476025": 166.9576, + "1437476026": 166.9576, + "1437476027": 166.9576, + "1437476028": 166.95761, + "1437476029": 166.95761, + "1437476030": 166.95761, + "1437476031": 166.95762, + "1437476032": 166.95763, + "1437476033": 166.95763, + "1437476034": 166.95764, + "1437476035": 166.95765, + "1437476036": 166.95766, + "1437476037": 166.95767, + "1437476038": 166.95768, + "1437476039": 166.95769, + "1437476040": 166.95771, + "1437476041": 166.95772, + "1437476042": 166.95774, + "1437476043": 166.95776, + "1437476044": 166.95778, + "1437476045": 166.9578, + "1437476047": 166.95783, + "1437476048": 166.95786, + "1437476049": 166.95789, + "1437476050": 166.95792, + "1437476051": 166.95796, + "1437476052": 166.958, + "1437476053": 166.95804, + "1437476054": 166.95808, + "1437476055": 166.95813, + "1437476056": 166.95817, + "1437476057": 166.95822, + "1437476058": 166.95827, + "1437476059": 166.95832, + "1437476060": 166.95837, + "1437476061": 166.95843, + "1437476062": 166.95849, + "1437476063": 166.95855, + "1437476064": 166.9586, + "1437476065": 166.95867, + "1437476066": 166.95873, + "1437476067": 166.95879, + "1437476068": 166.95885, + "1437476069": 166.95891, + "1437476070": 166.95898, + "1437476071": 166.95904, + "1437476072": 166.95909, + "1437476073": 166.95915, + "1437476074": 166.95919, + "1437476075": 166.95924, + "1437476076": 166.95928, + "1437476077": 166.95932, + "1437476079": 166.95934, + "1437476080": 166.95935, + "1437476081": 166.95936, + "1437476082": 166.95936, + "1437476083": 166.95936, + "1437476084": 166.95935, + "1437476085": 166.95935, + "1437476086": 166.95935, + "1437476087": 166.95935, + "1437476088": 166.95934, + "1437476089": 166.95934, + "1437476090": 166.95934, + "1437476091": 166.95934, + "1437476092": 166.95933, + "1437476093": 166.95933, + "1437476094": 166.95933, + "1437476095": 166.95932, + "1437476096": 166.95932, + "1437476097": 166.95931, + "1437476098": 166.95931, + "1437476099": 166.9593, + "1437476100": 166.95929, + "1437476101": 166.95928, + "1437476102": 166.95927, + "1437476103": 166.95926, + "1437476104": 166.95925, + "1437476105": 166.95924, + "1437476106": 166.95923, + "1437476107": 166.95921, + "1437476108": 166.95919, + "1437476109": 166.95918, + "1437476110": 166.95915, + "1437476112": 166.95913, + "1437476113": 166.9591, + "1437476114": 166.95907, + "1437476115": 166.95903, + "1437476116": 166.95898, + "1437476117": 166.95894, + "1437476118": 166.95889, + "1437476119": 166.95883, + "1437476120": 166.95877, + "1437476121": 166.95871, + "1437476122": 166.95865, + "1437476123": 166.95858, + "1437476124": 166.9585, + "1437476125": 166.95843, + "1437476126": 166.95835, + "1437476127": 166.95827, + "1437476128": 166.95819, + "1437476129": 166.9581, + "1437476130": 166.95802, + "1437476131": 166.95793, + "1437476132": 166.95784, + "1437476133": 166.95776, + "1437476134": 166.95767, + "1437476135": 166.95759, + "1437476136": 166.95751, + "1437476137": 166.95745, + "1437476138": 166.95738, + "1437476139": 166.95732, + "1437476140": 166.95726, + "1437476141": 166.95721, + "1437476142": 166.95715, + "1437476143": 166.95709, + "1437476144": 166.95704, + "1437476146": 166.95698, + "1437476147": 166.95692, + "1437476148": 166.95686, + "1437476149": 166.9568, + "1437476150": 166.95673, + "1437476151": 166.95667, + "1437476152": 166.95659, + "1437476153": 166.95652, + "1437476154": 166.95644, + "1437476155": 166.95636, + "1437476156": 166.95627, + "1437476157": 166.95618, + "1437476158": 166.95609, + "1437476159": 166.956, + "1437476160": 166.9559, + "1437476161": 166.9558, + "1437476162": 166.95569, + "1437476163": 166.95559, + "1437476164": 166.95548, + "1437476165": 166.95537, + "1437476166": 166.95525, + "1437476167": 166.95514, + "1437476168": 166.95503, + "1437476169": 166.95491, + "1437476170": 166.9548, + "1437476171": 166.95468, + "1437476172": 166.95456, + "1437476173": 166.95444, + "1437476174": 166.95435, + "1437476175": 166.95431, + "1437476176": 166.95433, + "1437476177": 166.95436, + "1437476179": 166.9544, + "1437476180": 166.95444, + "1437476181": 166.95448, + "1437476182": 166.95451, + "1437476183": 166.95455, + "1437476184": 166.95457, + "1437476185": 166.9546, + "1437476186": 166.95462, + "1437476187": 166.95463, + "1437476188": 166.95464, + "1437476189": 166.95464, + "1437476190": 166.95464, + "1437476191": 166.95463, + "1437476192": 166.95461, + "1437476193": 166.95459, + "1437476194": 166.95456, + "1437476195": 166.95453, + "1437476196": 166.9545, + "1437476197": 166.95447, + "1437476198": 166.95443, + "1437476199": 166.95439, + "1437476200": 166.95435, + "1437476201": 166.95431, + "1437476202": 166.95426, + "1437476203": 166.95421, + "1437476204": 166.95416, + "1437476205": 166.95411, + "1437476206": 166.95406, + "1437476207": 166.95401, + "1437476208": 166.95396, + "1437476209": 166.9539, + "1437476211": 166.95385, + "1437476212": 166.9538, + "1437476213": 166.95375, + "1437476214": 166.95371, + "1437476215": 166.95367, + "1437476216": 166.95363, + "1437476217": 166.95361, + "1437476218": 166.95358, + "1437476219": 166.95356, + "1437476220": 166.95355, + "1437476221": 166.95354, + "1437476222": 166.95353, + "1437476223": 166.95352, + "1437476224": 166.9535, + "1437476225": 166.95349, + "1437476226": 166.95347, + "1437476227": 166.95345, + "1437476228": 166.95343, + "1437476229": 166.9534, + "1437476230": 166.95338, + "1437476231": 166.95335, + "1437476232": 166.95333, + "1437476233": 166.9533, + "1437476234": 166.95328, + "1437476235": 166.95325, + "1437476236": 166.95323, + "1437476237": 166.95321, + "1437476238": 166.95318, + "1437476239": 166.95316, + "1437476240": 166.95313, + "1437476241": 166.95311, + "1437476242": 166.95308, + "1437476243": 166.95305, + "1437476244": 166.95302, + "1437476245": 166.953, + "1437476246": 166.95296, + "1437476248": 166.95293, + "1437476249": 166.95288, + "1437476250": 166.95283, + "1437476251": 166.95278, + "1437476252": 166.95273, + "1437476253": 166.95268, + "1437476254": 166.95264, + "1437476255": 166.95258, + "1437476256": 166.9525, + "1437476257": 166.95241, + "1437476258": 166.95231, + "1437476259": 166.95221, + "1437476260": 166.95211, + "1437476261": 166.952, + "1437476262": 166.95189, + "1437476263": 166.95178, + "1437476264": 166.95166, + "1437476265": 166.95153, + "1437476266": 166.95141, + "1437476267": 166.95129, + "1437476268": 166.95116, + "1437476269": 166.95103, + "1437476270": 166.95091, + "1437476271": 166.95082, + "1437476272": 166.9508, + "1437476274": 166.95081, + "1437476275": 166.95086, + "1437476276": 166.95091, + "1437476277": 166.95097, + "1437476278": 166.95103, + "1437476279": 166.95109, + "1437476280": 166.95115, + "1437476281": 166.95121, + "1437476282": 166.95127, + "1437476283": 166.95132, + "1437476284": 166.95136, + "1437476285": 166.95139, + "1437476286": 166.95142, + "1437476287": 166.95145, + "1437476288": 166.95149, + "1437476289": 166.95152, + "1437476290": 166.95155, + "1437476291": 166.95158, + "1437476292": 166.95161, + "1437476293": 166.95163, + "1437476295": 166.95166, + "1437476296": 166.95168, + "1437476297": 166.9517, + "1437476298": 166.95172, + "1437476299": 166.95173, + "1437476300": 166.95174, + "1437476301": 166.95175, + "1437476302": 166.95175, + "1437476303": 166.95175, + "1437476304": 166.95174, + "1437476305": 166.95173, + "1437476306": 166.95171, + "1437476307": 166.95169, + "1437476308": 166.95166, + "1437476309": 166.95163, + "1437476310": 166.9516, + "1437476311": 166.95157, + "1437476312": 166.95153, + "1437476313": 166.9515, + "1437476314": 166.95146, + "1437476315": 166.95143, + "1437476316": 166.9514, + "1437476317": 166.95137, + "1437476318": 166.95134, + "1437476319": 166.95131, + "1437476320": 166.95129, + "1437476321": 166.95126, + "1437476323": 166.95124, + "1437476324": 166.95122, + "1437476325": 166.95121, + "1437476326": 166.95119, + "1437476327": 166.95118, + "1437476328": 166.95117, + "1437476329": 166.95116, + "1437476330": 166.95116, + "1437476331": 166.95115, + "1437476332": 166.95115, + "1437476333": 166.95115, + "1437476334": 166.95115, + "1437476335": 166.95115, + "1437476338": 166.95115, + "1437476339": 166.95115, + "1437476340": 166.95115, + "1437476341": 166.95115, + "1437476342": 166.95114, + "1437476343": 166.95114, + "1437476344": 166.95113, + "1437476345": 166.95113, + "1437476346": 166.95112, + "1437476347": 166.95112, + "1437476348": 166.95111, + "1437476349": 166.9511, + "1437476350": 166.9511, + "1437476351": 166.95109, + "1437476352": 166.95108, + "1437476353": 166.95107, + "1437476354": 166.95107, + "1437476355": 166.95106, + "1437476356": 166.95105, + "1437476357": 166.95104, + "1437476358": 166.95103, + "1437476360": 166.95102, + "1437476361": 166.95101, + "1437476362": 166.951, + "1437476363": 166.95099, + "1437476364": 166.95098, + "1437476365": 166.95097, + "1437476366": 166.95096, + "1437476367": 166.95095, + "1437476368": 166.95094, + "1437476369": 166.95093, + "1437476370": 166.95092, + "1437476371": 166.95091, + "1437476372": 166.9509, + "1437476373": 166.95089, + "1437476374": 166.95088, + "1437476375": 166.95087, + "1437476376": 166.95086, + "1437476377": 166.95085, + "1437476378": 166.95083, + "1437476379": 166.95082, + "1437476380": 166.95081, + "1437476381": 166.9508, + "1437476382": 166.95079, + "1437476383": 166.95078, + "1437476384": 166.95077, + "1437476385": 166.95075, + "1437476386": 166.95074, + "1437476387": 166.95073, + "1437476389": 166.95072, + "1437476390": 166.9507, + "1437476391": 166.95069, + "1437476392": 166.95068, + "1437476393": 166.95067, + "1437476394": 166.95065, + "1437476395": 166.95064, + "1437476396": 166.95062, + "1437476397": 166.9506, + "1437476398": 166.95058, + "1437476399": 166.95056, + "1437476400": 166.95053, + "1437476401": 166.9505, + "1437476402": 166.95047, + "1437476403": 166.95044, + "1437476404": 166.95042, + "1437476405": 166.9504, + "1437476406": 166.95039, + "1437476407": 166.95041, + "1437476408": 166.95045, + "1437476410": 166.95051, + "1437476411": 166.95057, + "1437476412": 166.95063, + "1437476413": 166.9507, + "1437476414": 166.95076, + "1437476415": 166.95082, + "1437476416": 166.95088, + "1437476417": 166.95094, + "1437476418": 166.95099, + "1437476419": 166.95105, + "1437476420": 166.9511, + "1437476421": 166.95115, + "1437476422": 166.95119, + "1437476423": 166.95124, + "1437476424": 166.95128, + "1437476425": 166.95132, + "1437476426": 166.95136, + "1437476427": 166.9514, + "1437476428": 166.95143, + "1437476429": 166.95146, + "1437476430": 166.9515, + "1437476431": 166.95153, + "1437476432": 166.95156, + "1437476433": 166.95159, + "1437476434": 166.95161, + "1437476435": 166.95164, + "1437476436": 166.95167, + "1437476437": 166.95169, + "1437476438": 166.95172, + "1437476439": 166.95174, + "1437476441": 166.95176, + "1437476442": 166.95179, + "1437476443": 166.95181, + "1437476444": 166.95184, + "1437476445": 166.95186, + "1437476446": 166.95189, + "1437476447": 166.95192, + "1437476448": 166.95195, + "1437476449": 166.95199, + "1437476450": 166.95202, + "1437476451": 166.95206, + "1437476452": 166.9521, + "1437476453": 166.95214, + "1437476454": 166.95218, + "1437476455": 166.95222, + "1437476456": 166.95226, + "1437476457": 166.9523, + "1437476458": 166.95232, + "1437476459": 166.95234, + "1437476460": 166.95236, + "1437476461": 166.95236, + "1437476462": 166.95236, + "1437476463": 166.95236, + "1437476464": 166.95235, + "1437476465": 166.95234, + "1437476467": 166.95232, + "1437476468": 166.95231, + "1437476469": 166.95231, + "1437476470": 166.95232, + "1437476471": 166.95233, + "1437476472": 166.95235, + "1437476473": 166.95237, + "1437476474": 166.95239, + "1437476475": 166.95239, + "1437476476": 166.95241, + "1437476477": 166.95245, + "1437476478": 166.95246, + "1437476479": 166.95247, + "1437476480": 166.95248, + "1437476481": 166.95248, + "1437476482": 166.95247, + "1437476483": 166.95246, + "1437476484": 166.95245, + "1437476485": 166.95244, + "1437476486": 166.95243, + "1437476487": 166.95241, + "1437476488": 166.95239, + "1437476490": 166.95237, + "1437476491": 166.95234, + "1437476492": 166.95231, + "1437476493": 166.95228, + "1437476494": 166.95223, + "1437476495": 166.95216, + "1437476496": 166.95207, + "1437476497": 166.95195, + "1437476498": 166.95183, + "1437476499": 166.95171, + "1437476500": 166.95159, + "1437476501": 166.95146, + "1437476502": 166.95133, + "1437476503": 166.95121, + "1437476504": 166.9511, + "1437476505": 166.95099, + "1437476506": 166.9509, + "1437476507": 166.95081, + "1437476508": 166.95071, + "1437476509": 166.95061, + "1437476510": 166.95049, + "1437476511": 166.95036, + "1437476512": 166.95023, + "1437476513": 166.9501, + "1437476514": 166.94999, + "1437476515": 166.94992, + "1437476516": 166.94988, + "1437476517": 166.94985, + "1437476518": 166.94981, + "1437476519": 166.94976, + "1437476521": 166.94963, + "1437476522": 166.94949, + "1437476523": 166.94935, + "1437476524": 166.94923, + "1437476525": 166.9491, + "1437476526": 166.94898, + "1437476527": 166.94885, + "1437476528": 166.94875, + "1437476529": 166.9487, + "1437476530": 166.94873, + "1437476531": 166.94879, + "1437476532": 166.94889, + "1437476533": 166.94899, + "1437476534": 166.94909, + "1437476535": 166.94919, + "1437476536": 166.94928, + "1437476537": 166.94939, + "1437476538": 166.94949, + "1437476539": 166.94958, + "1437476540": 166.94966, + "1437476541": 166.94972, + "1437476542": 166.94972, + "1437476543": 166.94966, + "1437476544": 166.94955, + "1437476545": 166.94944, + "1437476547": 166.9493, + "1437476548": 166.94918, + "1437476549": 166.94907, + "1437476550": 166.94894, + "1437476551": 166.94882, + "1437476552": 166.9487, + "1437476553": 166.94859, + "1437476554": 166.94848, + "1437476555": 166.94837, + "1437476556": 166.94831, + "1437476557": 166.94837, + "1437476558": 166.94846, + "1437476559": 166.94855, + "1437476560": 166.94865, + "1437476561": 166.94874, + "1437476562": 166.94885, + "1437476563": 166.94895, + "1437476564": 166.94905, + "1437476565": 166.94914, + "1437476566": 166.94923, + "1437476567": 166.94932, + "1437476568": 166.9494, + "1437476569": 166.94945, + "1437476570": 166.94946, + "1437476571": 166.94942, + "1437476572": 166.94934, + "1437476573": 166.94927, + "1437476574": 166.9492, + "1437476576": 166.94914, + "1437476577": 166.94907, + "1437476578": 166.949, + "1437476579": 166.94894, + "1437476580": 166.94888, + "1437476581": 166.94882, + "1437476582": 166.94877, + "1437476583": 166.94871, + "1437476584": 166.94865, + "1437476585": 166.9486, + "1437476586": 166.94854, + "1437476587": 166.94849, + "1437476588": 166.94844, + "1437476589": 166.94839, + "1437476590": 166.94833, + "1437476591": 166.94829, + "1437476592": 166.94824, + "1437476593": 166.9482, + "1437476594": 166.94814, + "1437476595": 166.94808, + "1437476596": 166.94801, + "1437476597": 166.94792, + "1437476598": 166.94785, + "1437476599": 166.94781, + "1437476601": 166.94785, + "1437476602": 166.9479, + "1437476603": 166.94796, + "1437476604": 166.94802, + "1437476605": 166.94807, + "1437476606": 166.94813, + "1437476607": 166.94819, + "1437476608": 166.94824, + "1437476609": 166.9483, + "1437476610": 166.94835, + "1437476611": 166.9484, + "1437476612": 166.94845, + "1437476613": 166.9485, + "1437476614": 166.94854, + "1437476615": 166.94859, + "1437476616": 166.94863, + "1437476617": 166.94867, + "1437476618": 166.94872, + "1437476619": 166.94876, + "1437476620": 166.9488, + "1437476621": 166.94884, + "1437476622": 166.94889, + "1437476623": 166.94892, + "1437476624": 166.94897, + "1437476625": 166.94901, + "1437476627": 166.94906, + "1437476628": 166.9491, + "1437476629": 166.94914, + "1437476630": 166.94919, + "1437476631": 166.94923, + "1437476632": 166.94927, + "1437476633": 166.94932, + "1437476634": 166.94936, + "1437476635": 166.9494, + "1437476636": 166.94944, + "1437476637": 166.94949, + "1437476638": 166.94953, + "1437476639": 166.94957, + "1437476640": 166.94961, + "1437476641": 166.94966, + "1437476642": 166.9497, + "1437476643": 166.94974, + "1437476644": 166.94978, + "1437476645": 166.94981, + "1437476646": 166.94984, + "1437476647": 166.94986, + "1437476648": 166.94988, + "1437476649": 166.94989, + "1437476650": 166.9499, + "1437476651": 166.9499, + "1437476652": 166.9499, + "1437476653": 166.94989, + "1437476654": 166.94987, + "1437476655": 166.94984, + "1437476656": 166.9498, + "1437476658": 166.94974, + "1437476659": 166.94965, + "1437476660": 166.94953, + "1437476661": 166.94939, + "1437476662": 166.94924, + "1437476663": 166.9491, + "1437476664": 166.94896, + "1437476665": 166.94883, + "1437476666": 166.94872, + "1437476667": 166.94863, + "1437476668": 166.94856, + "1437476669": 166.94849, + "1437476670": 166.94842, + "1437476671": 166.94832, + "1437476672": 166.94819, + "1437476673": 166.94809, + "1437476674": 166.948, + "1437476675": 166.94791, + "1437476676": 166.94783, + "1437476677": 166.94776, + "1437476678": 166.94771, + "1437476679": 166.94763, + "1437476680": 166.94756, + "1437476681": 166.94761, + "1437476682": 166.94771, + "1437476683": 166.9478, + "1437476684": 166.94789, + "1437476685": 166.94796, + "1437476686": 166.94796, + "1437476687": 166.94799, + "1437476688": 166.9481, + "1437476689": 166.94822, + "1437476690": 166.94835, + "1437476691": 166.94847, + "1437476692": 166.94858, + "1437476694": 166.94869, + "1437476695": 166.94879, + "1437476696": 166.94887, + "1437476697": 166.94891, + "1437476698": 166.94891, + "1437476699": 166.94887, + "1437476700": 166.94882, + "1437476701": 166.94875, + "1437476702": 166.94865, + "1437476703": 166.94855, + "1437476704": 166.94845, + "1437476705": 166.94835, + "1437476706": 166.94824, + "1437476707": 166.94814, + "1437476708": 166.94808, + "1437476709": 166.94803, + "1437476710": 166.94797, + "1437476711": 166.94787, + "1437476712": 166.94775, + "1437476713": 166.94763, + "1437476714": 166.94751, + "1437476715": 166.9474, + "1437476716": 166.94732, + "1437476717": 166.94726, + "1437476718": 166.94721, + "1437476719": 166.94716, + "1437476720": 166.94713, + "1437476721": 166.94709, + "1437476723": 166.94703, + "1437476724": 166.94693, + "1437476725": 166.94685, + "1437476726": 166.94679, + "1437476727": 166.94673, + "1437476728": 166.94666, + "1437476729": 166.94657, + "1437476730": 166.94647, + "1437476731": 166.94638, + "1437476732": 166.9463, + "1437476733": 166.94625, + "1437476734": 166.94621, + "1437476735": 166.94617, + "1437476736": 166.94614, + "1437476737": 166.94612, + "1437476738": 166.94611, + "1437476739": 166.94612, + "1437476740": 166.94616, + "1437476741": 166.94622, + "1437476742": 166.94631, + "1437476743": 166.94639, + "1437476744": 166.94649, + "1437476745": 166.94658, + "1437476746": 166.94668, + "1437476747": 166.94678, + "1437476748": 166.94689, + "1437476749": 166.947, + "1437476750": 166.94711, + "1437476751": 166.94723, + "1437476752": 166.94734, + "1437476753": 166.94746, + "1437476755": 166.94758, + "1437476756": 166.9477, + "1437476757": 166.94781, + "1437476758": 166.94793, + "1437476759": 166.94803, + "1437476760": 166.94815, + "1437476761": 166.94826, + "1437476762": 166.94836, + "1437476763": 166.94844, + "1437476764": 166.94852, + "1437476765": 166.9486, + "1437476766": 166.94867, + "1437476767": 166.94873, + "1437476768": 166.94878, + "1437476769": 166.94883, + "1437476770": 166.94887, + "1437476771": 166.94892, + "1437476772": 166.94896, + "1437476773": 166.94898, + "1437476774": 166.94902, + "1437476775": 166.94908, + "1437476776": 166.94914, + "1437476777": 166.94919, + "1437476778": 166.94924, + "1437476779": 166.9493, + "1437476780": 166.94937, + "1437476781": 166.94943, + "1437476782": 166.9495, + "1437476783": 166.94957, + "1437476784": 166.94963, + "1437476785": 166.9497, + "1437476786": 166.94978, + "1437476787": 166.94985, + "1437476788": 166.94992, + "1437476789": 166.95, + "1437476791": 166.95008, + "1437476792": 166.95016, + "1437476793": 166.95025, + "1437476794": 166.95034, + "1437476795": 166.95044, + "1437476796": 166.95053, + "1437476797": 166.95064, + "1437476798": 166.95074, + "1437476799": 166.95084, + "1437476800": 166.95094, + "1437476801": 166.95105, + "1437476802": 166.95115, + "1437476803": 166.95126, + "1437476804": 166.95137, + "1437476805": 166.95147, + "1437476806": 166.95157, + "1437476807": 166.95168, + "1437476808": 166.95178, + "1437476809": 166.95189, + "1437476810": 166.95199, + "1437476811": 166.95209, + "1437476812": 166.95219, + "1437476813": 166.95229, + "1437476814": 166.95239, + "1437476815": 166.95248, + "1437476816": 166.95257, + "1437476817": 166.95264, + "1437476818": 166.95272, + "1437476819": 166.95279, + "1437476820": 166.95285, + "1437476821": 166.95292, + "1437476822": 166.95298, + "1437476824": 166.95304, + "1437476825": 166.9531, + "1437476826": 166.95315, + "1437476827": 166.95321, + "1437476828": 166.95326, + "1437476829": 166.95332, + "1437476830": 166.95337, + "1437476831": 166.95343, + "1437476832": 166.95348, + "1437476833": 166.95354, + "1437476834": 166.95359, + "1437476835": 166.95365, + "1437476836": 166.95371, + "1437476837": 166.95377, + "1437476838": 166.95384, + "1437476839": 166.95392, + "1437476840": 166.954, + "1437476841": 166.95409, + "1437476842": 166.95418, + "1437476843": 166.95428, + "1437476844": 166.95437, + "1437476845": 166.95445, + "1437476846": 166.95453, + "1437476847": 166.95459, + "1437476848": 166.95465, + "1437476849": 166.9547, + "1437476850": 166.95474, + "1437476851": 166.9548, + "1437476852": 166.95485, + "1437476854": 166.95491, + "1437476855": 166.95497, + "1437476856": 166.95506, + "1437476857": 166.95515, + "1437476858": 166.95524, + "1437476859": 166.95532, + "1437476860": 166.95537, + "1437476861": 166.9554, + "1437476862": 166.95543, + "1437476863": 166.95544, + "1437476864": 166.95546, + "1437476865": 166.95547, + "1437476866": 166.95548, + "1437476867": 166.95549, + "1437476868": 166.9555, + "1437476869": 166.9555, + "1437476870": 166.9555, + "1437476871": 166.95551, + "1437476872": 166.95551, + "1437476873": 166.95552, + "1437476874": 166.95553, + "1437476875": 166.95553, + "1437476876": 166.95551, + "1437476877": 166.9555, + "1437476878": 166.95547, + "1437476879": 166.95539, + "1437476880": 166.95528, + "1437476881": 166.95518, + "1437476882": 166.95508, + "1437476883": 166.95499, + "1437476884": 166.9549, + "1437476886": 166.95481, + "1437476887": 166.95477, + "1437476888": 166.95478, + "1437476889": 166.95482, + "1437476890": 166.95488, + "1437476891": 166.95496, + "1437476892": 166.95506, + "1437476893": 166.95515, + "1437476894": 166.95524, + "1437476895": 166.95533, + "1437476896": 166.95543, + "1437476897": 166.95552, + "1437476898": 166.95561, + "1437476899": 166.9557, + "1437476900": 166.9558, + "1437476901": 166.95589, + "1437476902": 166.95597, + "1437476903": 166.95605, + "1437476904": 166.95613, + "1437476905": 166.9562, + "1437476906": 166.95627, + "1437476907": 166.95633, + "1437476908": 166.95639, + "1437476910": 166.95645, + "1437476911": 166.9565, + "1437476912": 166.95655, + "1437476913": 166.95659, + "1437476914": 166.95663, + "1437476915": 166.95667, + "1437476916": 166.95671, + "1437476917": 166.95674, + "1437476918": 166.95678, + "1437476919": 166.95682, + "1437476920": 166.95685, + "1437476921": 166.95688, + "1437476922": 166.95688, + "1437476923": 166.95687, + "1437476924": 166.95685, + "1437476925": 166.95683, + "1437476926": 166.95681, + "1437476927": 166.95679, + "1437476928": 166.95676, + "1437476929": 166.95674, + "1437476930": 166.95672, + "1437476931": 166.9567, + "1437476932": 166.95667, + "1437476933": 166.95665, + "1437476934": 166.95662, + "1437476935": 166.9566, + "1437476936": 166.95658, + "1437476938": 166.95655, + "1437476939": 166.95653, + "1437476940": 166.95651, + "1437476941": 166.95648, + "1437476942": 166.95645, + "1437476943": 166.95643, + "1437476944": 166.9564, + "1437476945": 166.95637, + "1437476946": 166.95635, + "1437476947": 166.95632, + "1437476948": 166.95629, + "1437476949": 166.95627, + "1437476950": 166.95624, + "1437476951": 166.95621, + "1437476952": 166.95618, + "1437476953": 166.95615, + "1437476954": 166.95612, + "1437476955": 166.9561, + "1437476956": 166.95607, + "1437476957": 166.95604, + "1437476958": 166.95601, + "1437476959": 166.95598, + "1437476960": 166.95595, + "1437476961": 166.95593, + "1437476962": 166.9559, + "1437476963": 166.95587, + "1437476964": 166.95584, + "1437476965": 166.95581, + "1437476966": 166.95579, + "1437476967": 166.95576, + "1437476969": 166.95573, + "1437476970": 166.9557, + "1437476971": 166.95567, + "1437476972": 166.95565, + "1437476973": 166.95562, + "1437476974": 166.95559, + "1437476975": 166.95556, + "1437476976": 166.95553, + "1437476977": 166.9555, + "1437476978": 166.95547, + "1437476979": 166.95544, + "1437476980": 166.95541, + "1437476981": 166.95538, + "1437476982": 166.95536, + "1437476983": 166.95533, + "1437476984": 166.9553, + "1437476985": 166.95527, + "1437476986": 166.95524, + "1437476987": 166.95521, + "1437476988": 166.95518, + "1437476989": 166.95516, + "1437476990": 166.95513, + "1437476991": 166.9551, + "1437476992": 166.95507, + "1437476993": 166.95504, + "1437476994": 166.95502, + "1437476996": 166.95499, + "1437476997": 166.95496, + "1437476998": 166.95494, + "1437476999": 166.95491, + "1437477000": 166.95488, + "1437477001": 166.95486, + "1437477002": 166.95484, + "1437477003": 166.95483, + "1437477004": 166.95481, + "1437477005": 166.95479, + "1437477006": 166.95477, + "1437477007": 166.95476, + "1437477008": 166.95475, + "1437477009": 166.95475, + "1437477010": 166.95477, + "1437477011": 166.95481, + "1437477012": 166.95486, + "1437477013": 166.95493, + "1437477014": 166.955, + "1437477015": 166.95507, + "1437477016": 166.95515, + "1437477017": 166.95522, + "1437477018": 166.95528, + "1437477019": 166.95535, + "1437477020": 166.95541, + "1437477022": 166.95547, + "1437477023": 166.95552, + "1437477024": 166.95558, + "1437477025": 166.95563, + "1437477026": 166.95568, + "1437477027": 166.95573, + "1437477028": 166.95578, + "1437477029": 166.95583, + "1437477030": 166.95588, + "1437477031": 166.95593, + "1437477032": 166.95597, + "1437477033": 166.95602, + "1437477034": 166.95606, + "1437477035": 166.9561, + "1437477036": 166.95615, + "1437477037": 166.95619, + "1437477038": 166.95624, + "1437477039": 166.95628, + "1437477040": 166.95633, + "1437477041": 166.95637, + "1437477042": 166.95641, + "1437477043": 166.95646, + "1437477044": 166.9565, + "1437477045": 166.95654, + "1437477046": 166.95659, + "1437477047": 166.95663, + "1437477048": 166.95667, + "1437477050": 166.95672, + "1437477051": 166.95676, + "1437477052": 166.9568, + "1437477053": 166.95685, + "1437477054": 166.95689, + "1437477055": 166.95694, + "1437477056": 166.95698, + "1437477057": 166.95702, + "1437477058": 166.95706, + "1437477059": 166.9571, + "1437477060": 166.95714, + "1437477061": 166.95719, + "1437477062": 166.95723, + "1437477063": 166.95727, + "1437477064": 166.95731, + "1437477065": 166.95736, + "1437477066": 166.9574, + "1437477067": 166.95743, + "1437477068": 166.95745, + "1437477069": 166.95747, + "1437477070": 166.95748, + "1437477071": 166.95748, + "1437477072": 166.95749, + "1437477073": 166.95751, + "1437477075": 166.95754, + "1437477076": 166.95756, + "1437477077": 166.95757, + "1437477078": 166.95758, + "1437477079": 166.95758, + "1437477080": 166.95759, + "1437477081": 166.9576, + "1437477082": 166.9576, + "1437477083": 166.95761, + "1437477084": 166.95762, + "1437477085": 166.95764, + "1437477086": 166.95765, + "1437477087": 166.95767, + "1437477088": 166.95769, + "1437477089": 166.95772, + "1437477090": 166.95775, + "1437477091": 166.95778, + "1437477092": 166.95782, + "1437477093": 166.95786, + "1437477094": 166.95791, + "1437477095": 166.95796, + "1437477096": 166.95801, + "1437477097": 166.95807, + "1437477098": 166.95813, + "1437477099": 166.9582, + "1437477100": 166.95826, + "1437477101": 166.95833, + "1437477102": 166.9584, + "1437477103": 166.95848, + "1437477104": 166.95855, + "1437477105": 166.95863, + "1437477106": 166.9587, + "1437477107": 166.95878, + "1437477109": 166.95886, + "1437477110": 166.95894, + "1437477111": 166.95903, + "1437477112": 166.9591, + "1437477113": 166.95916, + "1437477114": 166.95923, + "1437477115": 166.95929, + "1437477116": 166.95933, + "1437477117": 166.95937, + "1437477118": 166.95938, + "1437477119": 166.95938, + "1437477120": 166.95937, + "1437477121": 166.95937, + "1437477122": 166.95937, + "1437477123": 166.95936, + "1437477124": 166.95936, + "1437477125": 166.95936, + "1437477126": 166.95935, + "1437477127": 166.95935, + "1437477128": 166.95935, + "1437477129": 166.95934, + "1437477130": 166.95933, + "1437477131": 166.95932, + "1437477132": 166.95931, + "1437477133": 166.9593, + "1437477134": 166.95928, + "1437477135": 166.95927, + "1437477136": 166.95925, + "1437477137": 166.95922, + "1437477138": 166.95919, + "1437477139": 166.95916, + "1437477140": 166.95911, + "1437477141": 166.95906, + "1437477143": 166.959, + "1437477144": 166.95893, + "1437477145": 166.95885, + "1437477146": 166.95877, + "1437477147": 166.95868, + "1437477148": 166.95859, + "1437477149": 166.95849, + "1437477150": 166.95839, + "1437477151": 166.95828, + "1437477152": 166.95816, + "1437477153": 166.95805, + "1437477154": 166.95793, + "1437477155": 166.95782, + "1437477156": 166.9577, + "1437477157": 166.95759, + "1437477158": 166.95749, + "1437477159": 166.95741, + "1437477160": 166.95732, + "1437477161": 166.95724, + "1437477162": 166.95717, + "1437477163": 166.95709, + "1437477164": 166.95701, + "1437477165": 166.95694, + "1437477166": 166.95685, + "1437477167": 166.95677, + "1437477168": 166.95667, + "1437477169": 166.95658, + "1437477170": 166.95647, + "1437477171": 166.95635, + "1437477172": 166.95624, + "1437477173": 166.95611, + "1437477174": 166.95599, + "1437477175": 166.95587, + "1437477176": 166.95575, + "1437477178": 166.95562, + "1437477179": 166.95549, + "1437477180": 166.95536, + "1437477181": 166.95522, + "1437477182": 166.95509, + "1437477183": 166.95495, + "1437477184": 166.95482, + "1437477185": 166.95468, + "1437477186": 166.95455, + "1437477187": 166.95441, + "1437477188": 166.95433, + "1437477189": 166.95433, + "1437477190": 166.95436, + "1437477191": 166.95441, + "1437477192": 166.95446, + "1437477193": 166.9545, + "1437477194": 166.95455, + "1437477195": 166.95459, + "1437477196": 166.95462, + "1437477197": 166.95464, + "1437477198": 166.95465, + "1437477199": 166.95463, + "1437477200": 166.95461, + "1437477201": 166.95457, + "1437477202": 166.95452, + "1437477203": 166.95447, + "1437477204": 166.95441, + "1437477205": 166.95435, + "1437477206": 166.95428, + "1437477207": 166.95422, + "1437477208": 166.95415, + "1437477209": 166.95407, + "1437477210": 166.954, + "1437477211": 166.95393, + "1437477212": 166.95385, + "1437477213": 166.95379, + "1437477215": 166.95372, + "1437477216": 166.95367, + "1437477217": 166.95362, + "1437477218": 166.95359, + "1437477219": 166.95356, + "1437477220": 166.95354, + "1437477221": 166.95353, + "1437477222": 166.95351, + "1437477223": 166.9535, + "1437477224": 166.95348, + "1437477225": 166.95345, + "1437477226": 166.95343, + "1437477227": 166.9534, + "1437477228": 166.95337, + "1437477229": 166.95334, + "1437477230": 166.95332, + "1437477231": 166.95329, + "1437477232": 166.95326, + "1437477233": 166.95324, + "1437477234": 166.95321, + "1437477235": 166.95318, + "1437477236": 166.95316, + "1437477237": 166.95313, + "1437477238": 166.9531, + "1437477239": 166.95306, + "1437477240": 166.95303, + "1437477241": 166.95299, + "1437477242": 166.95295, + "1437477243": 166.95291, + "1437477244": 166.95285, + "1437477245": 166.95279, + "1437477247": 166.95273, + "1437477248": 166.95268, + "1437477249": 166.95262, + "1437477250": 166.95254, + "1437477251": 166.95243, + "1437477252": 166.95232, + "1437477253": 166.95219, + "1437477254": 166.95207, + "1437477255": 166.95193, + "1437477256": 166.95179, + "1437477257": 166.95165, + "1437477258": 166.9515, + "1437477259": 166.95136, + "1437477260": 166.95122, + "1437477261": 166.95107, + "1437477262": 166.95092, + "1437477263": 166.95082, + "1437477264": 166.9508, + "1437477265": 166.95083, + "1437477266": 166.95088, + "1437477267": 166.95095, + "1437477268": 166.95101, + "1437477270": 166.95108, + "1437477271": 166.95115, + "1437477272": 166.95122, + "1437477273": 166.95128, + "1437477274": 166.95133, + "1437477275": 166.95138, + "1437477276": 166.95141, + "1437477277": 166.95145, + "1437477278": 166.95149, + "1437477279": 166.95153, + "1437477280": 166.95156, + "1437477281": 166.9516, + "1437477282": 166.95163, + "1437477283": 166.95166, + "1437477284": 166.95168, + "1437477285": 166.95171, + "1437477286": 166.95172, + "1437477287": 166.95174, + "1437477288": 166.95175, + "1437477289": 166.95175, + "1437477290": 166.95175, + "1437477291": 166.95173, + "1437477292": 166.95171, + "1437477294": 166.95168, + "1437477295": 166.95165, + "1437477296": 166.9516, + "1437477297": 166.95156, + "1437477298": 166.95152, + "1437477299": 166.95147, + "1437477300": 166.95142, + "1437477301": 166.95138, + "1437477302": 166.95133, + "1437477303": 166.9513, + "1437477304": 166.95126, + "1437477305": 166.95123, + "1437477306": 166.95119, + "1437477307": 166.95116, + "1437477308": 166.95113, + "1437477309": 166.9511, + "1437477310": 166.95107, + "1437477311": 166.95104, + "1437477312": 166.95101, + "1437477313": 166.95098, + "1437477314": 166.95095, + "1437477315": 166.95092, + "1437477316": 166.95089, + "1437477317": 166.95086, + "1437477318": 166.95084, + "1437477319": 166.95081, + "1437477321": 166.95079, + "1437477322": 166.95076, + "1437477323": 166.95072, + "1437477324": 166.9507, + "1437477325": 166.95067, + "1437477326": 166.95063, + "1437477327": 166.95059, + "1437477328": 166.95055, + "1437477329": 166.9505, + "1437477330": 166.95045, + "1437477331": 166.95042, + "1437477332": 166.95043, + "1437477333": 166.95048, + "1437477334": 166.95056, + "1437477335": 166.95065, + "1437477336": 166.95075, + "1437477337": 166.95085, + "1437477338": 166.95095, + "1437477339": 166.95104, + "1437477340": 166.95113, + "1437477341": 166.95122, + "1437477342": 166.9513, + "1437477343": 166.95138, + "1437477345": 166.95146, + "1437477346": 166.95153, + "1437477347": 166.95159, + "1437477348": 166.95164, + "1437477349": 166.95168, + "1437477350": 166.95171, + "1437477351": 166.95173, + "1437477352": 166.95174, + "1437477353": 166.95174, + "1437477354": 166.95174, + "1437477355": 166.95174, + "1437477356": 166.95174, + "1437477376": 166.95174, + "1437477377": 166.95175, + "1437477378": 166.95176, + "1437477379": 166.95178, + "1437477380": 166.95179, + "1437477381": 166.95181, + "1437477383": 166.95183, + "1437477384": 166.95184, + "1437477385": 166.95184, + "1437477386": 166.95184, + "1437477387": 166.95184, + "1437477388": 166.95184, + "1437477392": 166.95184, + "1437477393": 166.95184, + "1437477394": 166.95185, + "1437477395": 166.95185, + "1437477397": 166.95185, + "1437477398": 166.95186, + "1437477399": 166.95187, + "1437477400": 166.95187, + "1437477401": 166.95188, + "1437477402": 166.95188, + "1437477403": 166.95189, + "1437477404": 166.95189, + "1437477405": 166.95189, + "1437477406": 166.95189, + "1437477407": 166.95189, + "1437477408": 166.95189, + "1437477411": 166.95189, + "1437477412": 166.95189, + "1437477413": 166.9519, + "1437477414": 166.9519, + "1437477415": 166.95191, + "1437477417": 166.95191, + "1437477418": 166.95192, + "1437477419": 166.95192, + "1437477420": 166.95193, + "1437477421": 166.95193, + "1437477422": 166.95193, + "1437477423": 166.95194, + "1437477428": 166.95194, + "1437477429": 166.95194, + "1437477430": 166.95194, + "1437477432": 166.95195, + "1437477433": 166.95196, + "1437477434": 166.95197, + "1437477435": 166.95197, + "1437477436": 166.95198, + "1437477437": 166.95199, + "1437477438": 166.95199, + "1437477439": 166.952, + "1437477440": 166.95201, + "1437477441": 166.95202, + "1437477442": 166.95203, + "1437477443": 166.95203, + "1437477444": 166.95204, + "1437477445": 166.95205, + "1437477446": 166.95206, + "1437477447": 166.95206, + "1437477448": 166.95207, + "1437477449": 166.95208, + "1437477450": 166.95209, + "1437477451": 166.95209, + "1437477452": 166.9521, + "1437477453": 166.95211, + "1437477454": 166.95212, + "1437477455": 166.95213, + "1437477456": 166.95213, + "1437477457": 166.95214, + "1437477458": 166.95214, + "1437477459": 166.95214, + "1437477461": 166.95214, + "1437477465": 166.95214, + "1437477466": 166.95214, + "1437477467": 166.95215, + "1437477468": 166.95216, + "1437477469": 166.95217, + "1437477470": 166.95218, + "1437477471": 166.95219, + "1437477472": 166.95219, + "1437477473": 166.9522, + "1437477474": 166.95221, + "1437477475": 166.95222, + "1437477476": 166.95222, + "1437477477": 166.95223, + "1437477478": 166.95224, + "1437477479": 166.95224, + "1437477480": 166.95225, + "1437477481": 166.95226, + "1437477482": 166.95226, + "1437477483": 166.95227, + "1437477484": 166.95228, + "1437477485": 166.95229, + "1437477486": 166.95229, + "1437477487": 166.9523, + "1437477488": 166.95231, + "1437477489": 166.95231, + "1437477490": 166.95231, + "1437477491": 166.95231, + "1437477492": 166.95231, + "1437477493": 166.95231, + "1437477494": 166.95232, + "1437477495": 166.95232, + "1437477496": 166.95233, + "1437477497": 166.95233, + "1437477498": 166.95233, + "1437477500": 166.95234, + "1437477501": 166.95234, + "1437477502": 166.95234, + "1437477503": 166.95234, + "1437477504": 166.95234, + "1437477505": 166.95234, + "1437477506": 166.95233, + "1437477507": 166.95233, + "1437477508": 166.95232, + "1437477509": 166.95232, + "1437477510": 166.95231, + "1437477511": 166.95231, + "1437477512": 166.9523, + "1437477513": 166.95229, + "1437477514": 166.95229, + "1437477515": 166.95229, + "1437477516": 166.95229, + "1437477517": 166.95229, + "1437477518": 166.95229, + "1437477519": 166.9523, + "1437477520": 166.9523, + "1437477521": 166.95231, + "1437477522": 166.95231, + "1437477523": 166.95232, + "1437477524": 166.95232, + "1437477525": 166.95233, + "1437477526": 166.95233, + "1437477527": 166.95233, + "1437477528": 166.95233, + "1437477529": 166.95234, + "1437477530": 166.95234, + "1437477532": 166.95234, + "1437477533": 166.95234, + "1437477534": 166.95234, + "1437477535": 166.95234, + "1437477536": 166.95235, + "1437477537": 166.95235, + "1437477538": 166.95235, + "1437477539": 166.95235, + "1437477540": 166.95235, + "1437477541": 166.95235, + "1437477542": 166.95236, + "1437477543": 166.95236, + "1437477544": 166.95236, + "1437477545": 166.95236, + "1437477546": 166.95236, + "1437477547": 166.95236, + "1437477548": 166.95236, + "1437477549": 166.95237, + "1437477550": 166.95237, + "1437477551": 166.95237, + "1437477552": 166.95237, + "1437477553": 166.95237, + "1437477555": 166.95237, + "1437477556": 166.95237, + "1437477557": 166.95237, + "1437477558": 166.95238, + "1437477559": 166.95238, + "1437477560": 166.95238, + "1437477561": 166.95238, + "1437477562": 166.95238, + "1437477563": 166.95238, + "1437477564": 166.95238, + "1437477565": 166.95238, + "1437477566": 166.95239, + "1437477567": 166.95239, + "1437477568": 166.95239, + "1437477569": 166.95239, + "1437477570": 166.95239, + "1437477571": 166.95239, + "1437477572": 166.9524, + "1437477573": 166.9524, + "1437477574": 166.9524, + "1437477575": 166.9524, + "1437477576": 166.9524, + "1437477577": 166.9524, + "1437477578": 166.9524, + "1437477580": 166.9524, + "1437477581": 166.9524, + "1437477582": 166.9524, + "1437477583": 166.95241, + "1437477584": 166.95241, + "1437477585": 166.95241, + "1437477586": 166.95241, + "1437477587": 166.95241, + "1437477588": 166.95242, + "1437477589": 166.95242, + "1437477590": 166.95242, + "1437477591": 166.95242, + "1437477592": 166.95242, + "1437477593": 166.95243, + "1437477594": 166.95243, + "1437477595": 166.95243, + "1437477596": 166.95243, + "1437477597": 166.95243, + "1437477598": 166.95243, + "1437477599": 166.95244, + "1437477600": 166.95244, + "1437477601": 166.95244, + "1437477604": 166.95244, + "1437477605": 166.95244, + "1437477607": 166.95244, + "1437477608": 166.95244, + "1437477609": 166.95244, + "1437477610": 166.95245, + "1437477611": 166.95245, + "1437477612": 166.95246, + "1437477613": 166.95248, + "1437477614": 166.95248, + "1437477615": 166.95246, + "1437477616": 166.95244, + "1437477617": 166.95245, + "1437477618": 166.95245, + "1437477619": 166.95248, + "1437477620": 166.95249, + "1437477621": 166.9525, + "1437477622": 166.95249, + "1437477623": 166.95249, + "1437477624": 166.95248, + "1437477625": 166.95247, + "1437477626": 166.95246, + "1437477627": 166.95244, + "1437477628": 166.95242, + "1437477629": 166.9524, + "1437477630": 166.95238, + "1437477631": 166.95236, + "1437477632": 166.95235, + "1437477633": 166.95234, + "1437477634": 166.95234, + "1437477635": 166.95235, + "1437477636": 166.95237, + "1437477638": 166.95238, + "1437477639": 166.95239, + "1437477640": 166.95239, + "1437477641": 166.95239, + "1437477642": 166.95237, + "1437477643": 166.95233, + "1437477644": 166.95229, + "1437477645": 166.95223, + "1437477646": 166.95217, + "1437477647": 166.9521, + "1437477648": 166.95203, + "1437477649": 166.95195, + "1437477650": 166.95186, + "1437477651": 166.95178, + "1437477652": 166.95169, + "1437477653": 166.9516, + "1437477654": 166.95151, + "1437477655": 166.95144, + "1437477656": 166.95143, + "1437477657": 166.95148, + "1437477658": 166.95151, + "1437477659": 166.95154, + "1437477660": 166.95156, + "1437477661": 166.95156, + "1437477662": 166.95156, + "1437477663": 166.95156, + "1437477664": 166.95156, + "1437477665": 166.95156, + "1437477666": 166.95157, + "1437477667": 166.95158, + "1437477668": 166.95159, + "1437477669": 166.95161, + "1437477671": 166.95161, + "1437477672": 166.95162, + "1437477673": 166.95163, + "1437477674": 166.95163, + "1437477676": 166.95164, + "1437477677": 166.95165, + "1437477678": 166.95166, + "1437477679": 166.95166, + "1437477680": 166.95167, + "1437477681": 166.95168, + "1437477682": 166.95169, + "1437477683": 166.95169, + "1437477684": 166.95169, + "1437477685": 166.95169, + "1437477688": 166.95169, + "1437477689": 166.95169, + "1437477690": 166.95169, + "1437477691": 166.9517, + "1437477692": 166.95171, + "1437477693": 166.95172, + "1437477695": 166.95173, + "1437477696": 166.95174, + "1437477697": 166.95175, + "1437477698": 166.95176, + "1437477699": 166.95177, + "1437477700": 166.95178, + "1437477701": 166.95179, + "1437477702": 166.9518, + "1437477703": 166.9518, + "1437477704": 166.9518, + "1437477705": 166.9518, + "1437477706": 166.9518 + }, + "altitudes": { + "1437474517": 0.19999999999998863, + "1437474518": 0.19999999999998863, + "1437474519": 0.19999999999998863, + "1437474520": 0.19999999999998863, + "1437474521": 0.19999999999998863, + "1437474522": 0.19999999999998863, + "1437474523": 0.19999999999998863, + "1437474524": 0.19999999999998863, + "1437474525": 0.19999999999998863, + "1437474526": 0.19999999999998863, + "1437474527": 0.19999999999998863, + "1437474528": 0.19999999999998863, + "1437474529": 0.19999999999998863, + "1437474530": 0.19999999999998863, + "1437474532": 0.19999999999998863, + "1437474533": 0.19999999999998863, + "1437474534": 0.19999999999998863, + "1437474535": 0.19999999999998863, + "1437474536": 0.19999999999998863, + "1437474537": 0.19999999999998863, + "1437474538": 0.19999999999998863, + "1437474539": 0.19999999999998863, + "1437474540": 0.19999999999998863, + "1437474541": 0.19999999999998863, + "1437474542": 0.19999999999998863, + "1437474543": 0.19999999999998863, + "1437474544": 0.19999999999998863, + "1437474545": 0.19999999999998863, + "1437474546": 0.19999999999998863, + "1437474547": 0.19999999999998863, + "1437474548": 0.19999999999998863, + "1437474549": 0.19999999999998863, + "1437474550": 0.19999999999998863, + "1437474551": 0.19999999999998863, + "1437474552": 0.19999999999998863, + "1437474553": 0.19999999999998863, + "1437474554": 0.19999999999998863, + "1437474555": 0.19999999999998863, + "1437474556": 0.19999999999998863, + "1437474557": 0.19999999999998863, + "1437474558": 0.19999999999998863, + "1437474559": 0.19999999999998863, + "1437474560": 0.19999999999998863, + "1437474561": 0.19999999999998863, + "1437474562": 0.19999999999998863, + "1437474563": 0.19999999999998863, + "1437474564": 0.19999999999998863, + "1437474566": 0.19999999999998863, + "1437474567": 0.19999999999998863, + "1437474568": 0.19999999999998863, + "1437474569": 0.19999999999998863, + "1437474570": 0.19999999999998863, + "1437474571": 0.19999999999998863, + "1437474572": 0.19999999999998863, + "1437474573": 0.19999999999998863, + "1437474574": 0.19999999999998863, + "1437474575": 0.19999999999998863, + "1437474576": 0.19999999999998863, + "1437474577": 0.19999999999998863, + "1437474578": 0.19999999999998863, + "1437474579": 0.19999999999998863, + "1437474580": 0.19999999999998863, + "1437474581": 0.19999999999998863, + "1437474582": 0.19999999999998863, + "1437474583": 0.19999999999998863, + "1437474584": 0.19999999999998863, + "1437474585": 0.39999999999997726, + "1437474586": 0.39999999999997726, + "1437474587": 0.39999999999997726, + "1437474588": 0.6000000000000227, + "1437474589": 0.8000000000000114, + "1437474590": 0.8000000000000114, + "1437474591": 1, + "1437474592": 1, + "1437474593": 1.1999999999999886, + "1437474594": 1.1999999999999886, + "1437474595": 1.3999999999999773, + "1437474596": 1.6000000000000227, + "1437474597": 1.6000000000000227, + "1437474598": 1.8000000000000114, + "1437474599": 2.1999999999999886, + "1437474600": 2.3999999999999773, + "1437474601": 2.8000000000000114, + "1437474603": 3, + "1437474604": 3, + "1437474605": 3.1999999999999886, + "1437474606": 3.1999999999999886, + "1437474607": 3.1999999999999886, + "1437474608": 3.3999999999999773, + "1437474609": 3.3999999999999773, + "1437474610": 3.3999999999999773, + "1437474611": 3.3999999999999773, + "1437474612": 3.3999999999999773, + "1437474613": 3.3999999999999773, + "1437474614": 3.3999999999999773, + "1437474615": 3.3999999999999773, + "1437474616": 3.3999999999999773, + "1437474617": 3.6000000000000227, + "1437474618": 3.6000000000000227, + "1437474619": 3.6000000000000227, + "1437474620": 3.6000000000000227, + "1437474621": 3.6000000000000227, + "1437474622": 3.8000000000000114, + "1437474623": 3.8000000000000114, + "1437474624": 3.8000000000000114, + "1437474626": 3.8000000000000114, + "1437474627": 4, + "1437474628": 4, + "1437474629": 4.199999999999989, + "1437474630": 4.600000000000023, + "1437474631": 4.800000000000011, + "1437474632": 5, + "1437474633": 5.399999999999977, + "1437474634": 5.600000000000023, + "1437474635": 5.800000000000011, + "1437474636": 6, + "1437474637": 6, + "1437474638": 6.199999999999989, + "1437474639": 6.199999999999989, + "1437474640": 6.199999999999989, + "1437474641": 6.199999999999989, + "1437474642": 6.199999999999989, + "1437474643": 6.199999999999989, + "1437474644": 6.199999999999989, + "1437474645": 6.800000000000011, + "1437474646": 7.399999999999977, + "1437474647": 8, + "1437474648": 8.399999999999977, + "1437474649": 9.199999999999989, + "1437474650": 9.600000000000023, + "1437474652": 10.199999999999989, + "1437474653": 10.600000000000023, + "1437474654": 11.199999999999989, + "1437474655": 11.600000000000023, + "1437474656": 12, + "1437474657": 12.399999999999977, + "1437474658": 12.799999999999955, + "1437474659": 13.200000000000045, + "1437474660": 13.399999999999977, + "1437474661": 13.600000000000023, + "1437474662": 13.799999999999955, + "1437474663": 14, + "1437474664": 14.200000000000045, + "1437474665": 14.200000000000045, + "1437474666": 14.600000000000023, + "1437474667": 15, + "1437474668": 15.600000000000023, + "1437474669": 16, + "1437474670": 16.399999999999977, + "1437474671": 16.799999999999955, + "1437474672": 17.200000000000045, + "1437474673": 17.399999999999977, + "1437474674": 17.799999999999955, + "1437474675": 18, + "1437474676": 18.200000000000045, + "1437474677": 18.600000000000023, + "1437474678": 18.799999999999955, + "1437474679": 19, + "1437474681": 19.200000000000045, + "1437474682": 19.399999999999977, + "1437474683": 19.799999999999955, + "1437474684": 20, + "1437474685": 20.200000000000045, + "1437474686": 20.600000000000023, + "1437474687": 20.799999999999955, + "1437474688": 21, + "1437474689": 21.200000000000045, + "1437474690": 21.600000000000023, + "1437474691": 21.799999999999955, + "1437474692": 22, + "1437474693": 22.200000000000045, + "1437474694": 22.600000000000023, + "1437474695": 22.799999999999955, + "1437474696": 23, + "1437474697": 23.200000000000045, + "1437474698": 23.399999999999977, + "1437474699": 23.799999999999955, + "1437474700": 24, + "1437474701": 24.200000000000045, + "1437474702": 24.600000000000023, + "1437474703": 24.799999999999955, + "1437474705": 25, + "1437474706": 25.200000000000045, + "1437474707": 25.600000000000023, + "1437474708": 25.799999999999955, + "1437474709": 26, + "1437474710": 26.399999999999977, + "1437474711": 26.600000000000023, + "1437474712": 26.799999999999955, + "1437474713": 27.200000000000045, + "1437474714": 27.399999999999977, + "1437474715": 27.600000000000023, + "1437474716": 28, + "1437474717": 28.200000000000045, + "1437474718": 28.600000000000023, + "1437474719": 28.799999999999955, + "1437474720": 29.200000000000045, + "1437474721": 29.399999999999977, + "1437474722": 29.799999999999955, + "1437474723": 30, + "1437474724": 30.399999999999977, + "1437474725": 30.600000000000023, + "1437474726": 31, + "1437474727": 31.399999999999977, + "1437474728": 31.600000000000023, + "1437474729": 32, + "1437474730": 32.200000000000045, + "1437474732": 32.60000000000002, + "1437474733": 32.799999999999955, + "1437474734": 33.200000000000045, + "1437474735": 33.39999999999998, + "1437474736": 33.799999999999955, + "1437474737": 34, + "1437474738": 34.200000000000045, + "1437474739": 34.39999999999998, + "1437474740": 34.60000000000002, + "1437474741": 34.799999999999955, + "1437474742": 34.799999999999955, + "1437474743": 34.799999999999955, + "1437474744": 34.799999999999955, + "1437474745": 34.799999999999955, + "1437474746": 34.60000000000002, + "1437474747": 34.60000000000002, + "1437474748": 34.60000000000002, + "1437474749": 34.799999999999955, + "1437474750": 35, + "1437474751": 35.39999999999998, + "1437474752": 36, + "1437474753": 36.39999999999998, + "1437474754": 37, + "1437474755": 37.39999999999998, + "1437474756": 37.799999999999955, + "1437474757": 38.39999999999998, + "1437474758": 38.799999999999955, + "1437474760": 39.200000000000045, + "1437474761": 39.39999999999998, + "1437474762": 39.799999999999955, + "1437474763": 40.200000000000045, + "1437474764": 40.60000000000002, + "1437474765": 40.799999999999955, + "1437474766": 41.200000000000045, + "1437474767": 41.60000000000002, + "1437474768": 41.799999999999955, + "1437474769": 42.200000000000045, + "1437474770": 42.39999999999998, + "1437474771": 42.799999999999955, + "1437474772": 43.200000000000045, + "1437474773": 43.39999999999998, + "1437474774": 43.799999999999955, + "1437474775": 44, + "1437474776": 44.39999999999998, + "1437474777": 44.60000000000002, + "1437474778": 45, + "1437474779": 45.200000000000045, + "1437474780": 45.60000000000002, + "1437474781": 45.799999999999955, + "1437474782": 46.200000000000045, + "1437474783": 46.39999999999998, + "1437474785": 46.799999999999955, + "1437474786": 47, + "1437474787": 47.39999999999998, + "1437474788": 47.60000000000002, + "1437474789": 48, + "1437474790": 48.200000000000045, + "1437474791": 48.60000000000002, + "1437474792": 48.799999999999955, + "1437474793": 49.200000000000045, + "1437474794": 49.39999999999998, + "1437474795": 49.799999999999955, + "1437474796": 50, + "1437474797": 50.39999999999998, + "1437474798": 50.799999999999955, + "1437474799": 51, + "1437474800": 51.39999999999998, + "1437474801": 51.60000000000002, + "1437474802": 52, + "1437474803": 52.200000000000045, + "1437474804": 52.39999999999998, + "1437474805": 52.799999999999955, + "1437474806": 53, + "1437474808": 53.200000000000045, + "1437474809": 53.200000000000045, + "1437474810": 53, + "1437474811": 53, + "1437474812": 53, + "1437474813": 53.200000000000045, + "1437474814": 53.39999999999998, + "1437474815": 53.60000000000002, + "1437474816": 54, + "1437474817": 54.200000000000045, + "1437474818": 54.60000000000002, + "1437474819": 54.799999999999955, + "1437474820": 55.200000000000045, + "1437474821": 55.39999999999998, + "1437474822": 55.60000000000002, + "1437474823": 55.799999999999955, + "1437474824": 56, + "1437474825": 56.200000000000045, + "1437474827": 56.39999999999998, + "1437474828": 56.39999999999998, + "1437474829": 56.60000000000002, + "1437474830": 56.60000000000002, + "1437474831": 56.60000000000002, + "1437474832": 56.60000000000002, + "1437474833": 56.39999999999998, + "1437474834": 56.39999999999998, + "1437474835": 56.200000000000045, + "1437474836": 56, + "1437474837": 55.799999999999955, + "1437474838": 55.60000000000002, + "1437474839": 55.39999999999998, + "1437474840": 55.200000000000045, + "1437474841": 55, + "1437474842": 54.60000000000002, + "1437474843": 54.39999999999998, + "1437474844": 54, + "1437474845": 53.799999999999955, + "1437474846": 53.39999999999998, + "1437474847": 53, + "1437474848": 52.799999999999955, + "1437474849": 52.39999999999998, + "1437474850": 52.200000000000045, + "1437474851": 51.799999999999955, + "1437474852": 51.60000000000002, + "1437474853": 51.39999999999998, + "1437474854": 51.39999999999998, + "1437474855": 51.39999999999998, + "1437474856": 51.39999999999998, + "1437474857": 51.60000000000002, + "1437474859": 51.799999999999955, + "1437474860": 52, + "1437474861": 52, + "1437474862": 52.200000000000045, + "1437474863": 52.200000000000045, + "1437474864": 52.39999999999998, + "1437474865": 52.39999999999998, + "1437474866": 52.60000000000002, + "1437474867": 52.60000000000002, + "1437474868": 52.799999999999955, + "1437474869": 52.799999999999955, + "1437474870": 53, + "1437474871": 53, + "1437474872": 53.200000000000045, + "1437474873": 53.200000000000045, + "1437474874": 53.39999999999998, + "1437474875": 53.39999999999998, + "1437474876": 53.60000000000002, + "1437474877": 53.60000000000002, + "1437474878": 53.60000000000002, + "1437474879": 53.799999999999955, + "1437474880": 53.799999999999955, + "1437474881": 53.799999999999955, + "1437474882": 53.799999999999955, + "1437474883": 53.60000000000002, + "1437474884": 53.60000000000002, + "1437474885": 53.39999999999998, + "1437474886": 53.200000000000045, + "1437474887": 53, + "1437474888": 52.799999999999955, + "1437474890": 52.60000000000002, + "1437474891": 52.39999999999998, + "1437474892": 52.200000000000045, + "1437474893": 52, + "1437474894": 51.799999999999955, + "1437474895": 51.60000000000002, + "1437474896": 51.39999999999998, + "1437474897": 51.39999999999998, + "1437474898": 51.39999999999998, + "1437474899": 51.39999999999998, + "1437474900": 51.39999999999998, + "1437474901": 51.39999999999998, + "1437474902": 51.60000000000002, + "1437474903": 51.60000000000002, + "1437474904": 51.60000000000002, + "1437474905": 51.60000000000002, + "1437474906": 51.60000000000002, + "1437474907": 51.60000000000002, + "1437474908": 51.39999999999998, + "1437474909": 51.39999999999998, + "1437474910": 51.200000000000045, + "1437474911": 51, + "1437474912": 50.60000000000002, + "1437474913": 50.39999999999998, + "1437474914": 50, + "1437474915": 49.39999999999998, + "1437474916": 49, + "1437474917": 48.39999999999998, + "1437474918": 48, + "1437474919": 47.39999999999998, + "1437474920": 46.799999999999955, + "1437474921": 46.200000000000045, + "1437474923": 45.799999999999955, + "1437474924": 45.200000000000045, + "1437474925": 44.60000000000002, + "1437474926": 44, + "1437474927": 43.39999999999998, + "1437474928": 43, + "1437474929": 42.60000000000002, + "1437474930": 42.60000000000002, + "1437474931": 43, + "1437474932": 43.799999999999955, + "1437474933": 44.39999999999998, + "1437474934": 45, + "1437474935": 45.60000000000002, + "1437474936": 46.200000000000045, + "1437474937": 46.60000000000002, + "1437474938": 47.200000000000045, + "1437474939": 47.60000000000002, + "1437474940": 48, + "1437474941": 48.39999999999998, + "1437474942": 48.60000000000002, + "1437474943": 48.799999999999955, + "1437474944": 49, + "1437474945": 49, + "1437474946": 49, + "1437474947": 49, + "1437474948": 49, + "1437474949": 49, + "1437474950": 49, + "1437474951": 49, + "1437474952": 48.799999999999955, + "1437474953": 48.799999999999955, + "1437474954": 48.60000000000002, + "1437474955": 48.60000000000002, + "1437474956": 48.39999999999998, + "1437474957": 48.39999999999998, + "1437474958": 48.200000000000045, + "1437474959": 48, + "1437474960": 47.799999999999955, + "1437474962": 47.60000000000002, + "1437474963": 47.39999999999998, + "1437474964": 47.200000000000045, + "1437474965": 46.799999999999955, + "1437474966": 46.39999999999998, + "1437474967": 46, + "1437474968": 45.799999999999955, + "1437474969": 45.39999999999998, + "1437474970": 45.200000000000045, + "1437474971": 45, + "1437474972": 44.799999999999955, + "1437474973": 44.60000000000002, + "1437474974": 44.39999999999998, + "1437474975": 44.200000000000045, + "1437474976": 44.200000000000045, + "1437474977": 44, + "1437474978": 43.799999999999955, + "1437474979": 43.799999999999955, + "1437474980": 43.60000000000002, + "1437474981": 43.39999999999998, + "1437474982": 43.200000000000045, + "1437474983": 43, + "1437474984": 42.799999999999955, + "1437474985": 42.39999999999998, + "1437474986": 42, + "1437474987": 41.39999999999998, + "1437474988": 40.60000000000002, + "1437474989": 39.60000000000002, + "1437474990": 38.799999999999955, + "1437474992": 37.799999999999955, + "1437474993": 37.39999999999998, + "1437474994": 37.200000000000045, + "1437474995": 37.60000000000002, + "1437474996": 38, + "1437474997": 38.39999999999998, + "1437474998": 38.39999999999998, + "1437474999": 38, + "1437475000": 37.39999999999998, + "1437475001": 36.60000000000002, + "1437475002": 36, + "1437475003": 35.200000000000045, + "1437475004": 34.39999999999998, + "1437475005": 33.60000000000002, + "1437475006": 32.60000000000002, + "1437475007": 31.799999999999955, + "1437475008": 30.600000000000023, + "1437475009": 29.399999999999977, + "1437475010": 28, + "1437475012": 26.399999999999977, + "1437475013": 25.200000000000045, + "1437475014": 23.799999999999955, + "1437475015": 22.799999999999955, + "1437475016": 21.799999999999955, + "1437475017": 20.799999999999955, + "1437475018": 20, + "1437475019": 19.200000000000045, + "1437475020": 18.399999999999977, + "1437475021": 17.600000000000023, + "1437475022": 16.799999999999955, + "1437475023": 16.200000000000045, + "1437475024": 15.600000000000023, + "1437475025": 15, + "1437475026": 14.399999999999977, + "1437475027": 14, + "1437475029": 13.399999999999977, + "1437475030": 13, + "1437475031": 12.600000000000023, + "1437475032": 12.399999999999977, + "1437475033": 12, + "1437475034": 11.800000000000011, + "1437475035": 11.399999999999977, + "1437475036": 11.199999999999989, + "1437475037": 11, + "1437475038": 10.800000000000011, + "1437475039": 10.600000000000023, + "1437475040": 10.399999999999977, + "1437475041": 10.199999999999989, + "1437475042": 10.199999999999989, + "1437475043": 10.199999999999989, + "1437475044": 10.199999999999989, + "1437475045": 10.199999999999989, + "1437475046": 10.199999999999989, + "1437475047": 10.399999999999977, + "1437475048": 10.399999999999977, + "1437475049": 10.399999999999977, + "1437475050": 10.600000000000023, + "1437475051": 10.600000000000023, + "1437475052": 10.600000000000023, + "1437475054": 10.600000000000023, + "1437475055": 10.600000000000023, + "1437475056": 10.600000000000023, + "1437475057": 10.600000000000023, + "1437475058": 10.600000000000023, + "1437475059": 10.600000000000023, + "1437475060": 10.600000000000023, + "1437475061": 10.600000000000023, + "1437475062": 10.600000000000023, + "1437475063": 10.600000000000023, + "1437475064": 10.600000000000023, + "1437475065": 10.600000000000023, + "1437475066": 10.600000000000023, + "1437475067": 10.600000000000023, + "1437475068": 10.600000000000023, + "1437475069": 10.600000000000023, + "1437475070": 10.600000000000023, + "1437475071": 10.600000000000023, + "1437475072": 10.600000000000023, + "1437475073": 10.600000000000023, + "1437475074": 10.199999999999989, + "1437475075": 10, + "1437475076": 9.600000000000023, + "1437475077": 9, + "1437475078": 8.600000000000023, + "1437475079": 8, + "1437475080": 7.800000000000011, + "1437475081": 7.600000000000023, + "1437475083": 7.800000000000011, + "1437475084": 8.199999999999989, + "1437475085": 8.600000000000023, + "1437475086": 9, + "1437475087": 9.399999999999977, + "1437475088": 9.600000000000023, + "1437475089": 10, + "1437475090": 10.199999999999989, + "1437475091": 10.600000000000023, + "1437475092": 11, + "1437475093": 11.399999999999977, + "1437475094": 11.600000000000023, + "1437475095": 12, + "1437475096": 12.399999999999977, + "1437475097": 12.600000000000023, + "1437475098": 13, + "1437475099": 13.200000000000045, + "1437475100": 13.600000000000023, + "1437475101": 13.799999999999955, + "1437475102": 14, + "1437475103": 14.200000000000045, + "1437475104": 14.399999999999977, + "1437475105": 14.399999999999977, + "1437475106": 14.399999999999977, + "1437475107": 14.399999999999977, + "1437475108": 14.399999999999977, + "1437475109": 14.200000000000045, + "1437475110": 14.200000000000045, + "1437475112": 14, + "1437475113": 14, + "1437475114": 14.200000000000045, + "1437475115": 14.399999999999977, + "1437475116": 14.600000000000023, + "1437475117": 15, + "1437475118": 15.399999999999977, + "1437475119": 16, + "1437475120": 16.399999999999977, + "1437475121": 16.799999999999955, + "1437475122": 17.200000000000045, + "1437475123": 17.600000000000023, + "1437475124": 17.799999999999955, + "1437475125": 18, + "1437475126": 18.200000000000045, + "1437475127": 18.399999999999977, + "1437475128": 18.399999999999977, + "1437475129": 18.600000000000023, + "1437475130": 18.600000000000023, + "1437475131": 18.600000000000023, + "1437475132": 18.600000000000023, + "1437475133": 18.600000000000023, + "1437475134": 18.600000000000023, + "1437475135": 18.600000000000023, + "1437475136": 18.600000000000023, + "1437475137": 18.600000000000023, + "1437475138": 18.399999999999977, + "1437475139": 18.200000000000045, + "1437475140": 18.200000000000045, + "1437475141": 17.799999999999955, + "1437475142": 17.600000000000023, + "1437475143": 17.200000000000045, + "1437475145": 16.600000000000023, + "1437475146": 16.200000000000045, + "1437475147": 15.600000000000023, + "1437475148": 15.200000000000045, + "1437475149": 14.799999999999955, + "1437475150": 14.200000000000045, + "1437475151": 14, + "1437475152": 13.600000000000023, + "1437475153": 13.399999999999977, + "1437475154": 13.200000000000045, + "1437475155": 13, + "1437475156": 13, + "1437475157": 12.799999999999955, + "1437475158": 12.600000000000023, + "1437475159": 12.600000000000023, + "1437475160": 12.399999999999977, + "1437475161": 12.399999999999977, + "1437475162": 12.399999999999977, + "1437475163": 12.399999999999977, + "1437475164": 12, + "1437475165": 11.399999999999977, + "1437475166": 10.800000000000011, + "1437475167": 10.199999999999989, + "1437475168": 9.600000000000023, + "1437475169": 9, + "1437475170": 8.600000000000023, + "1437475171": 8.600000000000023, + "1437475173": 8.600000000000023, + "1437475174": 8.800000000000011, + "1437475175": 9, + "1437475176": 9, + "1437475177": 9.199999999999989, + "1437475178": 9.399999999999977, + "1437475179": 9.399999999999977, + "1437475180": 9.399999999999977, + "1437475181": 9.399999999999977, + "1437475182": 9.600000000000023, + "1437475183": 9.600000000000023, + "1437475184": 9.600000000000023, + "1437475185": 9.600000000000023, + "1437475186": 9.600000000000023, + "1437475187": 9.600000000000023, + "1437475188": 9.800000000000011, + "1437475189": 9.800000000000011, + "1437475190": 9.800000000000011, + "1437475191": 9.800000000000011, + "1437475192": 9.800000000000011, + "1437475193": 9.800000000000011, + "1437475194": 9.800000000000011, + "1437475195": 9.800000000000011, + "1437475196": 9.800000000000011, + "1437475197": 9.800000000000011, + "1437475198": 9.600000000000023, + "1437475200": 9.600000000000023, + "1437475201": 9.399999999999977, + "1437475202": 9.399999999999977, + "1437475203": 9.399999999999977, + "1437475204": 9.199999999999989, + "1437475205": 9.199999999999989, + "1437475206": 9, + "1437475207": 9, + "1437475208": 8.800000000000011, + "1437475209": 8.800000000000011, + "1437475210": 8.600000000000023, + "1437475211": 8.600000000000023, + "1437475212": 8.399999999999977, + "1437475213": 8.399999999999977, + "1437475214": 8.399999999999977, + "1437475215": 8.600000000000023, + "1437475216": 8.600000000000023, + "1437475217": 8.800000000000011, + "1437475218": 8.800000000000011, + "1437475219": 9, + "1437475220": 9, + "1437475221": 9.199999999999989, + "1437475222": 9.199999999999989, + "1437475223": 9.199999999999989, + "1437475224": 9.399999999999977, + "1437475225": 9.399999999999977, + "1437475226": 9.600000000000023, + "1437475227": 9.600000000000023, + "1437475228": 9.600000000000023, + "1437475230": 9.399999999999977, + "1437475231": 9.199999999999989, + "1437475232": 9.199999999999989, + "1437475233": 9, + "1437475234": 9, + "1437475235": 9, + "1437475236": 9, + "1437475237": 9, + "1437475238": 9, + "1437475239": 9, + "1437475240": 9, + "1437475241": 9, + "1437475242": 9, + "1437475243": 9, + "1437475244": 9, + "1437475245": 9, + "1437475246": 9, + "1437475247": 9, + "1437475248": 9, + "1437475249": 9, + "1437475250": 9, + "1437475251": 9, + "1437475252": 9, + "1437475253": 9, + "1437475254": 8.800000000000011, + "1437475255": 8.600000000000023, + "1437475256": 8.399999999999977, + "1437475257": 8.399999999999977, + "1437475258": 9, + "1437475259": 9.600000000000023, + "1437475260": 10, + "1437475261": 10.600000000000023, + "1437475262": 11.199999999999989, + "1437475263": 11.600000000000023, + "1437475264": 12.200000000000045, + "1437475265": 12.600000000000023, + "1437475266": 13, + "1437475267": 13.399999999999977, + "1437475269": 13.799999999999955, + "1437475270": 14.200000000000045, + "1437475271": 14.600000000000023, + "1437475272": 14.799999999999955, + "1437475273": 15.200000000000045, + "1437475274": 15.399999999999977, + "1437475275": 15.799999999999955, + "1437475276": 16, + "1437475277": 16.399999999999977, + "1437475278": 16.600000000000023, + "1437475279": 17, + "1437475280": 17.200000000000045, + "1437475281": 17.399999999999977, + "1437475282": 17.600000000000023, + "1437475283": 18, + "1437475284": 18.200000000000045, + "1437475285": 18.399999999999977, + "1437475286": 18.600000000000023, + "1437475287": 18.799999999999955, + "1437475288": 19.200000000000045, + "1437475289": 19.399999999999977, + "1437475290": 19.600000000000023, + "1437475291": 19.799999999999955, + "1437475292": 20, + "1437475293": 20.200000000000045, + "1437475294": 20.399999999999977, + "1437475295": 20.600000000000023, + "1437475296": 20.799999999999955, + "1437475297": 21, + "1437475298": 21.200000000000045, + "1437475299": 21.399999999999977, + "1437475300": 21.399999999999977, + "1437475301": 21.600000000000023, + "1437475302": 21.600000000000023, + "1437475303": 21.600000000000023, + "1437475304": 21.600000000000023, + "1437475305": 21.600000000000023, + "1437475306": 21.600000000000023, + "1437475308": 21.399999999999977, + "1437475309": 21.200000000000045, + "1437475310": 21, + "1437475311": 20.799999999999955, + "1437475312": 20.600000000000023, + "1437475313": 20.200000000000045, + "1437475314": 19.799999999999955, + "1437475315": 19.399999999999977, + "1437475316": 18.799999999999955, + "1437475317": 18.200000000000045, + "1437475318": 17.600000000000023, + "1437475319": 17, + "1437475320": 16.200000000000045, + "1437475321": 15.200000000000045, + "1437475322": 14.399999999999977, + "1437475323": 13.600000000000023, + "1437475324": 13, + "1437475325": 12.200000000000045, + "1437475326": 11.800000000000011, + "1437475327": 11.399999999999977, + "1437475328": 11.399999999999977, + "1437475329": 11.600000000000023, + "1437475330": 11.800000000000011, + "1437475331": 12.200000000000045, + "1437475332": 12.399999999999977, + "1437475333": 12.799999999999955, + "1437475334": 13.200000000000045, + "1437475335": 13.600000000000023, + "1437475336": 14, + "1437475337": 14.200000000000045, + "1437475338": 14.399999999999977, + "1437475339": 14.600000000000023, + "1437475340": 14.600000000000023, + "1437475342": 13.799999999999955, + "1437475343": 12.399999999999977, + "1437475344": 12.399999999999977, + "1437475345": 13.399999999999977, + "1437475346": 14, + "1437475347": 14, + "1437475348": 13.799999999999955, + "1437475349": 13.600000000000023, + "1437475350": 13.600000000000023, + "1437475351": 13.399999999999977, + "1437475352": 13.399999999999977, + "1437475353": 13.600000000000023, + "1437475354": 13.600000000000023, + "1437475355": 13.399999999999977, + "1437475356": 13.399999999999977, + "1437475357": 13.200000000000045, + "1437475358": 13, + "1437475359": 12.600000000000023, + "1437475360": 12, + "1437475361": 11.399999999999977, + "1437475362": 10.800000000000011, + "1437475363": 10.399999999999977, + "1437475364": 10.399999999999977, + "1437475365": 11.199999999999989, + "1437475366": 12, + "1437475367": 12.799999999999955, + "1437475368": 13.600000000000023, + "1437475369": 13.799999999999955, + "1437475371": 14, + "1437475372": 14, + "1437475373": 14, + "1437475374": 14, + "1437475375": 13.799999999999955, + "1437475376": 13.399999999999977, + "1437475377": 12.799999999999955, + "1437475378": 12, + "1437475379": 11.199999999999989, + "1437475380": 10.600000000000023, + "1437475381": 10.199999999999989, + "1437475382": 10.600000000000023, + "1437475383": 11.199999999999989, + "1437475384": 12, + "1437475385": 12.600000000000023, + "1437475386": 12.799999999999955, + "1437475387": 13.200000000000045, + "1437475388": 13.399999999999977, + "1437475389": 13.399999999999977, + "1437475390": 13.600000000000023, + "1437475391": 13.799999999999955, + "1437475392": 14, + "1437475393": 14, + "1437475394": 13.799999999999955, + "1437475395": 14, + "1437475396": 14, + "1437475397": 14.200000000000045, + "1437475398": 14.200000000000045, + "1437475400": 14.200000000000045, + "1437475401": 14.200000000000045, + "1437475402": 14.200000000000045, + "1437475403": 14, + "1437475404": 13.799999999999955, + "1437475405": 13.399999999999977, + "1437475406": 13.200000000000045, + "1437475407": 13, + "1437475408": 12.799999999999955, + "1437475409": 12.600000000000023, + "1437475410": 12.200000000000045, + "1437475411": 12, + "1437475412": 11.800000000000011, + "1437475413": 11.800000000000011, + "1437475414": 11.600000000000023, + "1437475415": 11.800000000000011, + "1437475416": 12, + "1437475417": 12, + "1437475418": 12, + "1437475419": 12, + "1437475420": 11.800000000000011, + "1437475421": 11.800000000000011, + "1437475422": 11.600000000000023, + "1437475423": 11.199999999999989, + "1437475424": 11, + "1437475425": 10.800000000000011, + "1437475426": 10.399999999999977, + "1437475427": 10.199999999999989, + "1437475428": 10, + "1437475429": 9.600000000000023, + "1437475430": 9.199999999999989, + "1437475431": 9, + "1437475433": 8.600000000000023, + "1437475434": 8.199999999999989, + "1437475435": 8, + "1437475436": 7.600000000000023, + "1437475437": 7.199999999999989, + "1437475438": 7, + "1437475439": 6.600000000000023, + "1437475440": 6.199999999999989, + "1437475441": 5.600000000000023, + "1437475442": 5.199999999999989, + "1437475443": 4.800000000000011, + "1437475444": 4.600000000000023, + "1437475445": 4.199999999999989, + "1437475446": 4, + "1437475447": 3.6000000000000227, + "1437475448": 3.3999999999999773, + "1437475449": 3, + "1437475450": 2.8000000000000114, + "1437475451": 2.6000000000000227, + "1437475452": 2.3999999999999773, + "1437475453": 2, + "1437475454": 1.8000000000000114, + "1437475455": 1.6000000000000227, + "1437475456": 1.3999999999999773, + "1437475457": 1.1999999999999886, + "1437475458": 1, + "1437475459": 0.8000000000000114, + "1437475460": 0.6000000000000227, + "1437475461": 0.6000000000000227, + "1437475462": 0.39999999999997726, + "1437475463": 0.39999999999997726, + "1437475464": 0.19999999999998863, + "1437475466": 0.19999999999998863, + "1437475467": 0, + "1437475468": 0, + "1437475469": 0, + "1437475470": 0, + "1437475471": 0, + "1437475472": 0, + "1437475473": 0, + "1437475474": 0, + "1437475475": 0, + "1437475476": 0, + "1437475477": 0, + "1437475478": 0.19999999999998863, + "1437475479": 0.19999999999998863, + "1437475480": 0.19999999999998863, + "1437475481": 0.19999999999998863, + "1437475482": 0.19999999999998863, + "1437475483": 0.19999999999998863, + "1437475484": 0.19999999999998863, + "1437475485": 0.19999999999998863, + "1437475486": 0.19999999999998863, + "1437475487": 0.19999999999998863, + "1437475488": 0.19999999999998863, + "1437475489": 0.19999999999998863, + "1437475490": 0.19999999999998863, + "1437475491": 0.19999999999998863, + "1437475492": 0.19999999999998863, + "1437475493": 0.19999999999998863, + "1437475494": 0.19999999999998863, + "1437475495": 0.19999999999998863, + "1437475496": 0.19999999999998863, + "1437475497": 0.19999999999998863, + "1437475498": 0.19999999999998863, + "1437475499": 0.19999999999998863, + "1437475500": 0.19999999999998863, + "1437475501": 0.19999999999998863, + "1437475502": 0.19999999999998863, + "1437475503": 0.19999999999998863, + "1437475504": 0.19999999999998863, + "1437475505": 0.19999999999998863, + "1437475506": 0.19999999999998863, + "1437475507": 0.19999999999998863, + "1437475508": 0.19999999999998863, + "1437475510": 0.19999999999998863, + "1437475511": 0.19999999999998863, + "1437475512": 0.19999999999998863, + "1437475513": 0.19999999999998863, + "1437475514": 0.19999999999998863, + "1437475515": 0.19999999999998863, + "1437475516": 0.19999999999998863, + "1437475517": 0.19999999999998863, + "1437475518": 0.19999999999998863, + "1437475519": 0.19999999999998863, + "1437475520": 0.19999999999998863, + "1437475521": 0.19999999999998863, + "1437475522": 0.19999999999998863, + "1437475523": 0.19999999999998863, + "1437475524": 0.19999999999998863, + "1437475525": 0.19999999999998863, + "1437475526": 0.19999999999998863, + "1437475527": 0.19999999999998863, + "1437475528": 0.19999999999998863, + "1437475529": 0.19999999999998863, + "1437475530": 0.19999999999998863, + "1437475531": 0.19999999999998863, + "1437475532": 0.19999999999998863, + "1437475533": 0.19999999999998863, + "1437475534": 0.19999999999998863, + "1437475535": 0.19999999999998863, + "1437475536": 0.19999999999998863, + "1437475537": 0.19999999999998863, + "1437475538": 0.19999999999998863, + "1437475539": 0.19999999999998863, + "1437475540": 0.19999999999998863, + "1437475541": 0.19999999999998863, + "1437475542": 0.19999999999998863, + "1437475543": 0.19999999999998863, + "1437475544": 0.19999999999998863, + "1437475545": 0.19999999999998863, + "1437475546": 0.19999999999998863, + "1437475547": 0.19999999999998863, + "1437475548": 0.19999999999998863, + "1437475549": 0.19999999999998863, + "1437475551": 0.19999999999998863, + "1437475552": 0.19999999999998863, + "1437475553": 0.19999999999998863, + "1437475554": 0.19999999999998863, + "1437475555": 0.19999999999998863, + "1437475556": 0.19999999999998863, + "1437475557": 0.19999999999998863, + "1437475558": 0.19999999999998863, + "1437475559": 0.19999999999998863, + "1437475560": 0.19999999999998863, + "1437475561": 0.19999999999998863, + "1437475562": 0.19999999999998863, + "1437475563": 0.19999999999998863, + "1437475564": 0.19999999999998863, + "1437475565": 0.19999999999998863, + "1437475566": 0.19999999999998863, + "1437475567": 0.19999999999998863, + "1437475568": 0.19999999999998863, + "1437475569": 0.19999999999998863, + "1437475570": 0.19999999999998863, + "1437475571": 0.19999999999998863, + "1437475572": 0.19999999999998863, + "1437475573": 0.19999999999998863, + "1437475574": 0.19999999999998863, + "1437475575": 0.19999999999998863, + "1437475576": 0.19999999999998863, + "1437475577": 0.19999999999998863, + "1437475578": 0.39999999999997726, + "1437475580": 0.39999999999997726, + "1437475581": 0.39999999999997726, + "1437475582": 0.6000000000000227, + "1437475583": 0.6000000000000227, + "1437475584": 0.8000000000000114, + "1437475585": 0.8000000000000114, + "1437475586": 0.8000000000000114, + "1437475587": 1, + "1437475588": 1, + "1437475589": 1, + "1437475590": 1.1999999999999886, + "1437475591": 1.1999999999999886, + "1437475592": 1.3999999999999773, + "1437475593": 1.3999999999999773, + "1437475594": 1.3999999999999773, + "1437475595": 1.6000000000000227, + "1437475596": 1.6000000000000227, + "1437475597": 1.6000000000000227, + "1437475598": 1.8000000000000114, + "1437475599": 1.8000000000000114, + "1437475600": 1.8000000000000114, + "1437475601": 1.8000000000000114, + "1437475602": 1.8000000000000114, + "1437475603": 1.8000000000000114, + "1437475604": 1.8000000000000114, + "1437475605": 1.8000000000000114, + "1437475606": 1.8000000000000114, + "1437475607": 1.8000000000000114, + "1437475608": 1.8000000000000114, + "1437475610": 2, + "1437475611": 2, + "1437475612": 2, + "1437475613": 2, + "1437475614": 2.1999999999999886, + "1437475615": 2.1999999999999886, + "1437475616": 2.1999999999999886, + "1437475617": 2.3999999999999773, + "1437475618": 2.3999999999999773, + "1437475619": 2.6000000000000227, + "1437475620": 2.6000000000000227, + "1437475621": 2.8000000000000114, + "1437475622": 2.8000000000000114, + "1437475623": 2.8000000000000114, + "1437475624": 2.8000000000000114, + "1437475625": 3, + "1437475626": 3, + "1437475627": 3, + "1437475628": 3, + "1437475629": 3.1999999999999886, + "1437475630": 3.1999999999999886, + "1437475631": 3.1999999999999886, + "1437475632": 3.1999999999999886, + "1437475633": 3.1999999999999886, + "1437475634": 3.1999999999999886, + "1437475636": 3.1999999999999886, + "1437475637": 3.1999999999999886, + "1437475638": 3.1999999999999886, + "1437475639": 3.3999999999999773, + "1437475640": 3.3999999999999773, + "1437475641": 3.3999999999999773, + "1437475642": 3.3999999999999773, + "1437475643": 3.3999999999999773, + "1437475644": 3.3999999999999773, + "1437475645": 3.3999999999999773, + "1437475646": 3.3999999999999773, + "1437475647": 3.3999999999999773, + "1437475648": 3.3999999999999773, + "1437475649": 3.3999999999999773, + "1437475650": 3.3999999999999773, + "1437475651": 3.3999999999999773, + "1437475652": 3.3999999999999773, + "1437475653": 3.3999999999999773, + "1437475654": 3.6000000000000227, + "1437475655": 3.6000000000000227, + "1437475656": 3.6000000000000227, + "1437475657": 3.6000000000000227, + "1437475658": 3.6000000000000227, + "1437475659": 3.6000000000000227, + "1437475660": 3.6000000000000227, + "1437475662": 3.6000000000000227, + "1437475663": 3.8000000000000114, + "1437475664": 3.8000000000000114, + "1437475665": 3.8000000000000114, + "1437475666": 3.8000000000000114, + "1437475667": 3.8000000000000114, + "1437475668": 3.8000000000000114, + "1437475669": 3.8000000000000114, + "1437475670": 4, + "1437475671": 4, + "1437475672": 4, + "1437475673": 4.199999999999989, + "1437475674": 4.399999999999977, + "1437475675": 4.600000000000023, + "1437475676": 4.600000000000023, + "1437475677": 4.800000000000011, + "1437475678": 5, + "1437475679": 5.199999999999989, + "1437475680": 5.399999999999977, + "1437475681": 5.399999999999977, + "1437475682": 5.600000000000023, + "1437475683": 5.800000000000011, + "1437475684": 5.800000000000011, + "1437475685": 5.800000000000011, + "1437475686": 6, + "1437475687": 6, + "1437475688": 6, + "1437475689": 6, + "1437475690": 6.199999999999989, + "1437475691": 6.199999999999989, + "1437475693": 6.199999999999989, + "1437475694": 6.199999999999989, + "1437475695": 6.199999999999989, + "1437475696": 6.199999999999989, + "1437475697": 6.199999999999989, + "1437475698": 6.199999999999989, + "1437475699": 6.199999999999989, + "1437475700": 6.199999999999989, + "1437475701": 6.399999999999977, + "1437475702": 6.800000000000011, + "1437475703": 7, + "1437475704": 7.199999999999989, + "1437475705": 7.600000000000023, + "1437475706": 7.800000000000011, + "1437475707": 8, + "1437475708": 8.199999999999989, + "1437475709": 8.399999999999977, + "1437475710": 8.600000000000023, + "1437475711": 8.800000000000011, + "1437475712": 9, + "1437475713": 9, + "1437475714": 9.199999999999989, + "1437475715": 9.399999999999977, + "1437475716": 9.600000000000023, + "1437475717": 9.800000000000011, + "1437475718": 10, + "1437475719": 10, + "1437475720": 10.199999999999989, + "1437475721": 10.399999999999977, + "1437475722": 10.600000000000023, + "1437475724": 10.800000000000011, + "1437475725": 11, + "1437475726": 11.199999999999989, + "1437475727": 11.399999999999977, + "1437475728": 11.399999999999977, + "1437475729": 11.600000000000023, + "1437475730": 11.800000000000011, + "1437475731": 12, + "1437475732": 12.200000000000045, + "1437475733": 12.399999999999977, + "1437475734": 12.600000000000023, + "1437475735": 12.799999999999955, + "1437475736": 13, + "1437475737": 13, + "1437475738": 13.200000000000045, + "1437475739": 13.399999999999977, + "1437475740": 13.399999999999977, + "1437475741": 13.600000000000023, + "1437475742": 13.799999999999955, + "1437475743": 13.799999999999955, + "1437475744": 14, + "1437475745": 14, + "1437475746": 14.200000000000045, + "1437475747": 14.399999999999977, + "1437475748": 14.399999999999977, + "1437475749": 14.600000000000023, + "1437475750": 15, + "1437475751": 15.200000000000045, + "1437475752": 15.600000000000023, + "1437475753": 15.799999999999955, + "1437475754": 16, + "1437475755": 16.200000000000045, + "1437475756": 16.399999999999977, + "1437475758": 16.399999999999977, + "1437475759": 16.600000000000023, + "1437475760": 16.799999999999955, + "1437475761": 17, + "1437475762": 17.200000000000045, + "1437475763": 17.399999999999977, + "1437475764": 17.600000000000023, + "1437475765": 17.799999999999955, + "1437475766": 17.799999999999955, + "1437475767": 18, + "1437475768": 18.200000000000045, + "1437475769": 18.399999999999977, + "1437475770": 18.600000000000023, + "1437475771": 18.799999999999955, + "1437475772": 18.799999999999955, + "1437475773": 19, + "1437475774": 19.200000000000045, + "1437475775": 19.399999999999977, + "1437475776": 19.600000000000023, + "1437475777": 19.799999999999955, + "1437475778": 20, + "1437475779": 20, + "1437475780": 20.200000000000045, + "1437475781": 20.399999999999977, + "1437475782": 20.600000000000023, + "1437475783": 20.799999999999955, + "1437475784": 21, + "1437475785": 21.200000000000045, + "1437475786": 21.200000000000045, + "1437475787": 21.399999999999977, + "1437475788": 21.600000000000023, + "1437475789": 21.799999999999955, + "1437475791": 22, + "1437475792": 22.200000000000045, + "1437475793": 22.200000000000045, + "1437475794": 22.399999999999977, + "1437475795": 22.600000000000023, + "1437475796": 22.799999999999955, + "1437475797": 23, + "1437475798": 23.200000000000045, + "1437475799": 23.200000000000045, + "1437475800": 23.399999999999977, + "1437475801": 23.600000000000023, + "1437475802": 23.799999999999955, + "1437475803": 24, + "1437475804": 24.200000000000045, + "1437475805": 24.200000000000045, + "1437475806": 24.399999999999977, + "1437475807": 24.600000000000023, + "1437475808": 24.799999999999955, + "1437475809": 25, + "1437475810": 25.200000000000045, + "1437475811": 25.399999999999977, + "1437475812": 25.399999999999977, + "1437475813": 25.600000000000023, + "1437475814": 25.799999999999955, + "1437475815": 26, + "1437475816": 26.200000000000045, + "1437475817": 26.399999999999977, + "1437475818": 26.399999999999977, + "1437475819": 26.600000000000023, + "1437475821": 26.799999999999955, + "1437475822": 27, + "1437475823": 27.200000000000045, + "1437475824": 27.200000000000045, + "1437475825": 27.399999999999977, + "1437475826": 27.600000000000023, + "1437475827": 27.799999999999955, + "1437475828": 28, + "1437475829": 28, + "1437475830": 28.200000000000045, + "1437475831": 28.399999999999977, + "1437475832": 28.600000000000023, + "1437475833": 28.600000000000023, + "1437475834": 28.799999999999955, + "1437475835": 29, + "1437475836": 29, + "1437475837": 29.200000000000045, + "1437475838": 29.399999999999977, + "1437475839": 29.600000000000023, + "1437475840": 29.600000000000023, + "1437475841": 29.799999999999955, + "1437475842": 30, + "1437475843": 30.200000000000045, + "1437475844": 30.200000000000045, + "1437475845": 30.399999999999977, + "1437475846": 30.600000000000023, + "1437475847": 30.799999999999955, + "1437475848": 30.799999999999955, + "1437475849": 31, + "1437475850": 31.200000000000045, + "1437475852": 31.399999999999977, + "1437475853": 31.600000000000023, + "1437475854": 31.600000000000023, + "1437475855": 31.799999999999955, + "1437475856": 32, + "1437475857": 32.200000000000045, + "1437475858": 32.39999999999998, + "1437475859": 32.39999999999998, + "1437475860": 32.60000000000002, + "1437475861": 32.799999999999955, + "1437475862": 33, + "1437475863": 33, + "1437475864": 33.200000000000045, + "1437475865": 33.39999999999998, + "1437475866": 33.39999999999998, + "1437475867": 33.60000000000002, + "1437475868": 33.799999999999955, + "1437475869": 33.799999999999955, + "1437475870": 34, + "1437475871": 34.200000000000045, + "1437475872": 34.200000000000045, + "1437475873": 34.39999999999998, + "1437475874": 34.39999999999998, + "1437475875": 34.60000000000002, + "1437475876": 34.60000000000002, + "1437475878": 34.799999999999955, + "1437475879": 34.799999999999955, + "1437475880": 34.799999999999955, + "1437475881": 34.799999999999955, + "1437475882": 34.799999999999955, + "1437475883": 34.799999999999955, + "1437475884": 34.799999999999955, + "1437475885": 34.60000000000002, + "1437475886": 34.60000000000002, + "1437475887": 34.60000000000002, + "1437475888": 34.60000000000002, + "1437475889": 34.60000000000002, + "1437475890": 34.799999999999955, + "1437475891": 35.200000000000045, + "1437475892": 35.60000000000002, + "1437475893": 35.799999999999955, + "1437475894": 36.200000000000045, + "1437475895": 36.60000000000002, + "1437475896": 36.799999999999955, + "1437475897": 37, + "1437475898": 37.39999999999998, + "1437475899": 37.60000000000002, + "1437475900": 37.799999999999955, + "1437475901": 38, + "1437475902": 38.200000000000045, + "1437475903": 38.39999999999998, + "1437475905": 38.60000000000002, + "1437475906": 38.799999999999955, + "1437475907": 39, + "1437475908": 39, + "1437475909": 39.200000000000045, + "1437475910": 39.39999999999998, + "1437475911": 39.60000000000002, + "1437475912": 39.799999999999955, + "1437475913": 40, + "1437475914": 40.200000000000045, + "1437475915": 40.39999999999998, + "1437475916": 40.39999999999998, + "1437475917": 40.60000000000002, + "1437475918": 40.799999999999955, + "1437475919": 41, + "1437475920": 41.200000000000045, + "1437475921": 41.39999999999998, + "1437475922": 41.60000000000002, + "1437475923": 41.799999999999955, + "1437475924": 42, + "1437475925": 42, + "1437475926": 42.200000000000045, + "1437475927": 42.39999999999998, + "1437475928": 42.60000000000002, + "1437475929": 42.799999999999955, + "1437475930": 43, + "1437475931": 43.200000000000045, + "1437475932": 43.39999999999998, + "1437475933": 43.60000000000002, + "1437475934": 43.60000000000002, + "1437475935": 43.799999999999955, + "1437475936": 44, + "1437475938": 44.200000000000045, + "1437475939": 44.200000000000045, + "1437475940": 44.39999999999998, + "1437475941": 44.39999999999998, + "1437475942": 44.60000000000002, + "1437475943": 44.799999999999955, + "1437475944": 45, + "1437475945": 45.200000000000045, + "1437475946": 45.39999999999998, + "1437475947": 45.39999999999998, + "1437475948": 45.60000000000002, + "1437475949": 45.799999999999955, + "1437475950": 46, + "1437475951": 46.200000000000045, + "1437475952": 46.200000000000045, + "1437475953": 46.39999999999998, + "1437475954": 46.60000000000002, + "1437475955": 46.799999999999955, + "1437475956": 46.799999999999955, + "1437475957": 47, + "1437475958": 47.200000000000045, + "1437475959": 47.39999999999998, + "1437475960": 47.39999999999998, + "1437475961": 47.60000000000002, + "1437475962": 47.799999999999955, + "1437475963": 47.799999999999955, + "1437475964": 48, + "1437475965": 48, + "1437475967": 48, + "1437475968": 48.200000000000045, + "1437475969": 48.200000000000045, + "1437475970": 48.39999999999998, + "1437475971": 48.39999999999998, + "1437475972": 48.60000000000002, + "1437475973": 48.60000000000002, + "1437475974": 48.799999999999955, + "1437475975": 49, + "1437475976": 49.200000000000045, + "1437475977": 49.200000000000045, + "1437475978": 49.39999999999998, + "1437475979": 49.60000000000002, + "1437475980": 49.60000000000002, + "1437475981": 49.799999999999955, + "1437475982": 50, + "1437475983": 50.200000000000045, + "1437475984": 50.200000000000045, + "1437475985": 50.39999999999998, + "1437475986": 50.60000000000002, + "1437475987": 50.60000000000002, + "1437475988": 50.799999999999955, + "1437475989": 51, + "1437475990": 51.200000000000045, + "1437475991": 51.39999999999998, + "1437475992": 51.60000000000002, + "1437475993": 51.799999999999955, + "1437475994": 51.799999999999955, + "1437475995": 52, + "1437475997": 52.200000000000045, + "1437475998": 52.39999999999998, + "1437475999": 52.39999999999998, + "1437476000": 52.60000000000002, + "1437476001": 52.799999999999955, + "1437476002": 53, + "1437476003": 53, + "1437476004": 53.200000000000045, + "1437476005": 53.200000000000045, + "1437476006": 53.200000000000045, + "1437476007": 53, + "1437476008": 53, + "1437476009": 53, + "1437476010": 53, + "1437476011": 53, + "1437476012": 53.200000000000045, + "1437476013": 53.200000000000045, + "1437476014": 53.39999999999998, + "1437476015": 53.60000000000002, + "1437476016": 53.799999999999955, + "1437476017": 54, + "1437476019": 54.200000000000045, + "1437476020": 54.39999999999998, + "1437476021": 54.39999999999998, + "1437476022": 54.60000000000002, + "1437476023": 54.799999999999955, + "1437476024": 55, + "1437476025": 55, + "1437476026": 55.200000000000045, + "1437476027": 55.39999999999998, + "1437476028": 55.39999999999998, + "1437476029": 55.60000000000002, + "1437476030": 55.60000000000002, + "1437476031": 55.799999999999955, + "1437476032": 55.799999999999955, + "1437476033": 56, + "1437476034": 56, + "1437476035": 56.200000000000045, + "1437476036": 56.200000000000045, + "1437476037": 56.39999999999998, + "1437476038": 56.39999999999998, + "1437476039": 56.39999999999998, + "1437476040": 56.39999999999998, + "1437476041": 56.60000000000002, + "1437476042": 56.60000000000002, + "1437476043": 56.60000000000002, + "1437476044": 56.60000000000002, + "1437476045": 56.60000000000002, + "1437476047": 56.60000000000002, + "1437476048": 56.39999999999998, + "1437476049": 56.39999999999998, + "1437476050": 56.39999999999998, + "1437476051": 56.200000000000045, + "1437476052": 56.200000000000045, + "1437476053": 56, + "1437476054": 55.799999999999955, + "1437476055": 55.60000000000002, + "1437476056": 55.39999999999998, + "1437476057": 55.39999999999998, + "1437476058": 55.200000000000045, + "1437476059": 55, + "1437476060": 54.799999999999955, + "1437476061": 54.39999999999998, + "1437476062": 54.200000000000045, + "1437476063": 54, + "1437476064": 53.799999999999955, + "1437476065": 53.39999999999998, + "1437476066": 53.200000000000045, + "1437476067": 53, + "1437476068": 52.799999999999955, + "1437476069": 52.39999999999998, + "1437476070": 52.200000000000045, + "1437476071": 52, + "1437476072": 51.799999999999955, + "1437476073": 51.60000000000002, + "1437476074": 51.39999999999998, + "1437476075": 51.39999999999998, + "1437476076": 51.39999999999998, + "1437476077": 51.39999999999998, + "1437476079": 51.39999999999998, + "1437476080": 51.60000000000002, + "1437476081": 51.799999999999955, + "1437476082": 51.799999999999955, + "1437476083": 52, + "1437476084": 52, + "1437476085": 52.200000000000045, + "1437476086": 52.200000000000045, + "1437476087": 52.200000000000045, + "1437476088": 52.39999999999998, + "1437476089": 52.39999999999998, + "1437476090": 52.39999999999998, + "1437476091": 52.60000000000002, + "1437476092": 52.60000000000002, + "1437476093": 52.60000000000002, + "1437476094": 52.799999999999955, + "1437476095": 52.799999999999955, + "1437476096": 53, + "1437476097": 53, + "1437476098": 53, + "1437476099": 53.200000000000045, + "1437476100": 53.200000000000045, + "1437476101": 53.200000000000045, + "1437476102": 53.39999999999998, + "1437476103": 53.39999999999998, + "1437476104": 53.39999999999998, + "1437476105": 53.60000000000002, + "1437476106": 53.60000000000002, + "1437476107": 53.60000000000002, + "1437476108": 53.60000000000002, + "1437476109": 53.60000000000002, + "1437476110": 53.799999999999955, + "1437476112": 53.799999999999955, + "1437476113": 53.799999999999955, + "1437476114": 53.799999999999955, + "1437476115": 53.799999999999955, + "1437476116": 53.60000000000002, + "1437476117": 53.60000000000002, + "1437476118": 53.60000000000002, + "1437476119": 53.39999999999998, + "1437476120": 53.39999999999998, + "1437476121": 53.200000000000045, + "1437476122": 53, + "1437476123": 53, + "1437476124": 52.799999999999955, + "1437476125": 52.60000000000002, + "1437476126": 52.39999999999998, + "1437476127": 52.200000000000045, + "1437476128": 52.200000000000045, + "1437476129": 52, + "1437476130": 51.799999999999955, + "1437476131": 51.60000000000002, + "1437476132": 51.60000000000002, + "1437476133": 51.39999999999998, + "1437476134": 51.39999999999998, + "1437476135": 51.39999999999998, + "1437476136": 51.39999999999998, + "1437476137": 51.39999999999998, + "1437476138": 51.39999999999998, + "1437476139": 51.39999999999998, + "1437476140": 51.39999999999998, + "1437476141": 51.60000000000002, + "1437476142": 51.60000000000002, + "1437476143": 51.60000000000002, + "1437476144": 51.60000000000002, + "1437476146": 51.60000000000002, + "1437476147": 51.60000000000002, + "1437476148": 51.60000000000002, + "1437476149": 51.39999999999998, + "1437476150": 51.39999999999998, + "1437476151": 51.39999999999998, + "1437476152": 51.200000000000045, + "1437476153": 51, + "1437476154": 50.799999999999955, + "1437476155": 50.60000000000002, + "1437476156": 50.39999999999998, + "1437476157": 50, + "1437476158": 49.60000000000002, + "1437476159": 49.200000000000045, + "1437476160": 48.799999999999955, + "1437476161": 48.39999999999998, + "1437476162": 48, + "1437476163": 47.39999999999998, + "1437476164": 47, + "1437476165": 46.39999999999998, + "1437476166": 46, + "1437476167": 45.39999999999998, + "1437476168": 45, + "1437476169": 44.39999999999998, + "1437476170": 44, + "1437476171": 43.39999999999998, + "1437476172": 43, + "1437476173": 42.60000000000002, + "1437476174": 42.60000000000002, + "1437476175": 43, + "1437476176": 43.60000000000002, + "1437476177": 44.200000000000045, + "1437476179": 44.799999999999955, + "1437476180": 45.200000000000045, + "1437476181": 45.799999999999955, + "1437476182": 46.200000000000045, + "1437476183": 46.60000000000002, + "1437476184": 47, + "1437476185": 47.39999999999998, + "1437476186": 47.60000000000002, + "1437476187": 48, + "1437476188": 48.200000000000045, + "1437476189": 48.39999999999998, + "1437476190": 48.60000000000002, + "1437476191": 48.799999999999955, + "1437476192": 48.799999999999955, + "1437476193": 49, + "1437476194": 49, + "1437476195": 49, + "1437476196": 49, + "1437476197": 49, + "1437476198": 49, + "1437476199": 49, + "1437476200": 49, + "1437476201": 49, + "1437476202": 49, + "1437476203": 49, + "1437476204": 48.799999999999955, + "1437476205": 48.799999999999955, + "1437476206": 48.799999999999955, + "1437476207": 48.60000000000002, + "1437476208": 48.60000000000002, + "1437476209": 48.39999999999998, + "1437476211": 48.39999999999998, + "1437476212": 48.200000000000045, + "1437476213": 48, + "1437476214": 48, + "1437476215": 47.799999999999955, + "1437476216": 47.60000000000002, + "1437476217": 47.39999999999998, + "1437476218": 47.200000000000045, + "1437476219": 46.799999999999955, + "1437476220": 46.60000000000002, + "1437476221": 46.200000000000045, + "1437476222": 46, + "1437476223": 45.60000000000002, + "1437476224": 45.39999999999998, + "1437476225": 45.200000000000045, + "1437476226": 45, + "1437476227": 44.799999999999955, + "1437476228": 44.60000000000002, + "1437476229": 44.39999999999998, + "1437476230": 44.39999999999998, + "1437476231": 44.200000000000045, + "1437476232": 44.200000000000045, + "1437476233": 44, + "1437476234": 43.799999999999955, + "1437476235": 43.799999999999955, + "1437476236": 43.60000000000002, + "1437476237": 43.39999999999998, + "1437476238": 43.39999999999998, + "1437476239": 43.200000000000045, + "1437476240": 43, + "1437476241": 42.60000000000002, + "1437476242": 42.39999999999998, + "1437476243": 42, + "1437476244": 41.39999999999998, + "1437476245": 40.799999999999955, + "1437476246": 40, + "1437476248": 39, + "1437476249": 38.200000000000045, + "1437476250": 37.60000000000002, + "1437476251": 37.200000000000045, + "1437476252": 37.39999999999998, + "1437476253": 37.60000000000002, + "1437476254": 38, + "1437476255": 38.39999999999998, + "1437476256": 38.39999999999998, + "1437476257": 38.200000000000045, + "1437476258": 37.799999999999955, + "1437476259": 37.200000000000045, + "1437476260": 36.60000000000002, + "1437476261": 36.200000000000045, + "1437476262": 35.39999999999998, + "1437476263": 34.799999999999955, + "1437476264": 34.200000000000045, + "1437476265": 33.39999999999998, + "1437476266": 32.60000000000002, + "1437476267": 31.799999999999955, + "1437476268": 30.799999999999955, + "1437476269": 29.799999999999955, + "1437476270": 28.399999999999977, + "1437476271": 27.200000000000045, + "1437476272": 25.799999999999955, + "1437476274": 24.600000000000023, + "1437476275": 23.399999999999977, + "1437476276": 22.399999999999977, + "1437476277": 21.600000000000023, + "1437476278": 20.600000000000023, + "1437476279": 19.799999999999955, + "1437476280": 19, + "1437476281": 18.399999999999977, + "1437476282": 17.600000000000023, + "1437476283": 17, + "1437476284": 16.399999999999977, + "1437476285": 15.799999999999955, + "1437476286": 15.200000000000045, + "1437476287": 14.799999999999955, + "1437476288": 14.399999999999977, + "1437476289": 14, + "1437476290": 13.600000000000023, + "1437476291": 13.200000000000045, + "1437476292": 12.799999999999955, + "1437476293": 12.600000000000023, + "1437476295": 12.200000000000045, + "1437476296": 12, + "1437476297": 11.800000000000011, + "1437476298": 11.399999999999977, + "1437476299": 11.199999999999989, + "1437476300": 11, + "1437476301": 10.800000000000011, + "1437476302": 10.600000000000023, + "1437476303": 10.600000000000023, + "1437476304": 10.399999999999977, + "1437476305": 10.199999999999989, + "1437476306": 10.199999999999989, + "1437476307": 10.199999999999989, + "1437476308": 10.199999999999989, + "1437476309": 10.199999999999989, + "1437476310": 10.199999999999989, + "1437476311": 10.199999999999989, + "1437476312": 10.199999999999989, + "1437476313": 10.399999999999977, + "1437476314": 10.399999999999977, + "1437476315": 10.399999999999977, + "1437476316": 10.399999999999977, + "1437476317": 10.600000000000023, + "1437476318": 10.600000000000023, + "1437476319": 10.600000000000023, + "1437476320": 10.600000000000023, + "1437476321": 10.600000000000023, + "1437476323": 10.600000000000023, + "1437476324": 10.600000000000023, + "1437476325": 10.600000000000023, + "1437476326": 10.600000000000023, + "1437476327": 10.600000000000023, + "1437476328": 10.600000000000023, + "1437476329": 10.600000000000023, + "1437476330": 10.600000000000023, + "1437476331": 10.600000000000023, + "1437476332": 10.600000000000023, + "1437476333": 10.600000000000023, + "1437476334": 10.600000000000023, + "1437476335": 10.600000000000023, + "1437476338": 10.600000000000023, + "1437476339": 10.600000000000023, + "1437476340": 10.600000000000023, + "1437476341": 10.600000000000023, + "1437476342": 10.600000000000023, + "1437476343": 10.600000000000023, + "1437476344": 10.600000000000023, + "1437476345": 10.600000000000023, + "1437476346": 10.600000000000023, + "1437476347": 10.600000000000023, + "1437476348": 10.600000000000023, + "1437476349": 10.600000000000023, + "1437476350": 10.600000000000023, + "1437476351": 10.600000000000023, + "1437476352": 10.600000000000023, + "1437476353": 10.600000000000023, + "1437476354": 10.600000000000023, + "1437476355": 10.600000000000023, + "1437476356": 10.600000000000023, + "1437476357": 10.600000000000023, + "1437476358": 10.600000000000023, + "1437476360": 10.600000000000023, + "1437476361": 10.600000000000023, + "1437476362": 10.600000000000023, + "1437476363": 10.600000000000023, + "1437476364": 10.600000000000023, + "1437476365": 10.600000000000023, + "1437476366": 10.600000000000023, + "1437476367": 10.600000000000023, + "1437476368": 10.600000000000023, + "1437476369": 10.600000000000023, + "1437476370": 10.600000000000023, + "1437476371": 10.600000000000023, + "1437476372": 10.600000000000023, + "1437476373": 10.600000000000023, + "1437476374": 10.600000000000023, + "1437476375": 10.600000000000023, + "1437476376": 10.600000000000023, + "1437476377": 10.600000000000023, + "1437476378": 10.600000000000023, + "1437476379": 10.600000000000023, + "1437476380": 10.600000000000023, + "1437476381": 10.600000000000023, + "1437476382": 10.600000000000023, + "1437476383": 10.600000000000023, + "1437476384": 10.600000000000023, + "1437476385": 10.600000000000023, + "1437476386": 10.600000000000023, + "1437476387": 10.600000000000023, + "1437476389": 10.600000000000023, + "1437476390": 10.600000000000023, + "1437476391": 10.600000000000023, + "1437476392": 10.600000000000023, + "1437476393": 10.600000000000023, + "1437476394": 10.600000000000023, + "1437476395": 10.399999999999977, + "1437476396": 10.399999999999977, + "1437476397": 10.199999999999989, + "1437476398": 10, + "1437476399": 9.800000000000011, + "1437476400": 9.600000000000023, + "1437476401": 9.399999999999977, + "1437476402": 9, + "1437476403": 8.800000000000011, + "1437476404": 8.399999999999977, + "1437476405": 8, + "1437476406": 7.800000000000011, + "1437476407": 7.600000000000023, + "1437476408": 7.600000000000023, + "1437476410": 7.800000000000011, + "1437476411": 8, + "1437476412": 8.199999999999989, + "1437476413": 8.399999999999977, + "1437476414": 8.600000000000023, + "1437476415": 8.800000000000011, + "1437476416": 9, + "1437476417": 9.199999999999989, + "1437476418": 9.399999999999977, + "1437476419": 9.600000000000023, + "1437476420": 9.800000000000011, + "1437476421": 10, + "1437476422": 10.199999999999989, + "1437476423": 10.399999999999977, + "1437476424": 10.600000000000023, + "1437476425": 10.600000000000023, + "1437476426": 10.800000000000011, + "1437476427": 11, + "1437476428": 11.199999999999989, + "1437476429": 11.199999999999989, + "1437476430": 11.399999999999977, + "1437476431": 11.399999999999977, + "1437476432": 11.600000000000023, + "1437476433": 11.800000000000011, + "1437476434": 11.800000000000011, + "1437476435": 12, + "1437476436": 12, + "1437476437": 12.200000000000045, + "1437476438": 12.200000000000045, + "1437476439": 12.399999999999977, + "1437476441": 12.399999999999977, + "1437476442": 12.600000000000023, + "1437476443": 12.600000000000023, + "1437476444": 12.799999999999955, + "1437476445": 12.799999999999955, + "1437476446": 13, + "1437476447": 13, + "1437476448": 13.200000000000045, + "1437476449": 13.399999999999977, + "1437476450": 13.399999999999977, + "1437476451": 13.600000000000023, + "1437476452": 13.799999999999955, + "1437476453": 14, + "1437476454": 14, + "1437476455": 14.200000000000045, + "1437476456": 14.399999999999977, + "1437476457": 14.399999999999977, + "1437476458": 14.399999999999977, + "1437476459": 14.399999999999977, + "1437476460": 14.399999999999977, + "1437476461": 14.399999999999977, + "1437476462": 14.399999999999977, + "1437476463": 14.200000000000045, + "1437476464": 14.200000000000045, + "1437476465": 14.200000000000045, + "1437476467": 14, + "1437476468": 14, + "1437476469": 14.200000000000045, + "1437476470": 14.399999999999977, + "1437476471": 14.600000000000023, + "1437476472": 15, + "1437476473": 15.399999999999977, + "1437476474": 15.799999999999955, + "1437476475": 16.399999999999977, + "1437476476": 16.799999999999955, + "1437476477": 17.200000000000045, + "1437476478": 17.600000000000023, + "1437476479": 17.799999999999955, + "1437476480": 18.200000000000045, + "1437476481": 18.399999999999977, + "1437476482": 18.399999999999977, + "1437476483": 18.600000000000023, + "1437476484": 18.600000000000023, + "1437476485": 18.600000000000023, + "1437476486": 18.600000000000023, + "1437476487": 18.600000000000023, + "1437476488": 18.600000000000023, + "1437476490": 18.600000000000023, + "1437476491": 18.600000000000023, + "1437476492": 18.399999999999977, + "1437476493": 18.200000000000045, + "1437476494": 18, + "1437476495": 17.799999999999955, + "1437476496": 17.200000000000045, + "1437476497": 16.799999999999955, + "1437476498": 16.200000000000045, + "1437476499": 15.600000000000023, + "1437476500": 15.200000000000045, + "1437476501": 14.600000000000023, + "1437476502": 14.200000000000045, + "1437476503": 13.799999999999955, + "1437476504": 13.600000000000023, + "1437476505": 13.399999999999977, + "1437476506": 13.200000000000045, + "1437476507": 13, + "1437476508": 12.799999999999955, + "1437476509": 12.600000000000023, + "1437476510": 12.600000000000023, + "1437476511": 12.399999999999977, + "1437476512": 12.399999999999977, + "1437476513": 12.399999999999977, + "1437476514": 12.200000000000045, + "1437476515": 11.600000000000023, + "1437476516": 11, + "1437476517": 10.399999999999977, + "1437476518": 9.600000000000023, + "1437476519": 9.199999999999989, + "1437476521": 8.600000000000023, + "1437476522": 8.600000000000023, + "1437476523": 8.600000000000023, + "1437476524": 8.800000000000011, + "1437476525": 9, + "1437476526": 9.199999999999989, + "1437476527": 9.399999999999977, + "1437476528": 9.399999999999977, + "1437476529": 9.399999999999977, + "1437476530": 9.600000000000023, + "1437476531": 9.600000000000023, + "1437476532": 9.600000000000023, + "1437476533": 9.600000000000023, + "1437476534": 9.600000000000023, + "1437476535": 9.800000000000011, + "1437476536": 9.800000000000011, + "1437476537": 9.800000000000011, + "1437476538": 9.800000000000011, + "1437476539": 9.800000000000011, + "1437476540": 9.800000000000011, + "1437476541": 9.800000000000011, + "1437476542": 9.800000000000011, + "1437476543": 9.800000000000011, + "1437476544": 9.600000000000023, + "1437476545": 9.399999999999977, + "1437476547": 9.399999999999977, + "1437476548": 9.199999999999989, + "1437476549": 9.199999999999989, + "1437476550": 9, + "1437476551": 9, + "1437476552": 8.800000000000011, + "1437476553": 8.600000000000023, + "1437476554": 8.600000000000023, + "1437476555": 8.399999999999977, + "1437476556": 8.399999999999977, + "1437476557": 8.600000000000023, + "1437476558": 8.600000000000023, + "1437476559": 8.800000000000011, + "1437476560": 8.800000000000011, + "1437476561": 9, + "1437476562": 9, + "1437476563": 9.199999999999989, + "1437476564": 9.199999999999989, + "1437476565": 9.399999999999977, + "1437476566": 9.399999999999977, + "1437476567": 9.399999999999977, + "1437476568": 9.600000000000023, + "1437476569": 9.600000000000023, + "1437476570": 9.399999999999977, + "1437476571": 9.199999999999989, + "1437476572": 9.199999999999989, + "1437476573": 9, + "1437476574": 9, + "1437476576": 9, + "1437476577": 9, + "1437476578": 9, + "1437476579": 9, + "1437476580": 9, + "1437476581": 9, + "1437476582": 9, + "1437476583": 9, + "1437476584": 9, + "1437476585": 9, + "1437476586": 9, + "1437476587": 9, + "1437476588": 9, + "1437476589": 9, + "1437476590": 9, + "1437476591": 9, + "1437476592": 9, + "1437476593": 9, + "1437476594": 9, + "1437476595": 8.800000000000011, + "1437476596": 8.600000000000023, + "1437476597": 8.399999999999977, + "1437476598": 8.199999999999989, + "1437476599": 8.399999999999977, + "1437476601": 9, + "1437476602": 9.399999999999977, + "1437476603": 10, + "1437476604": 10.399999999999977, + "1437476605": 10.800000000000011, + "1437476606": 11.199999999999989, + "1437476607": 11.600000000000023, + "1437476608": 12, + "1437476609": 12.399999999999977, + "1437476610": 12.799999999999955, + "1437476611": 13.200000000000045, + "1437476612": 13.399999999999977, + "1437476613": 13.799999999999955, + "1437476614": 14, + "1437476615": 14.399999999999977, + "1437476616": 14.799999999999955, + "1437476617": 15, + "1437476618": 15.399999999999977, + "1437476619": 15.600000000000023, + "1437476620": 15.799999999999955, + "1437476621": 16.200000000000045, + "1437476622": 16.399999999999977, + "1437476623": 16.799999999999955, + "1437476624": 17, + "1437476625": 17.399999999999977, + "1437476627": 17.600000000000023, + "1437476628": 17.799999999999955, + "1437476629": 18.200000000000045, + "1437476630": 18.399999999999977, + "1437476631": 18.799999999999955, + "1437476632": 19, + "1437476633": 19.200000000000045, + "1437476634": 19.600000000000023, + "1437476635": 19.799999999999955, + "1437476636": 20, + "1437476637": 20.200000000000045, + "1437476638": 20.600000000000023, + "1437476639": 20.799999999999955, + "1437476640": 21, + "1437476641": 21.200000000000045, + "1437476642": 21.399999999999977, + "1437476643": 21.600000000000023, + "1437476644": 21.600000000000023, + "1437476645": 21.600000000000023, + "1437476646": 21.600000000000023, + "1437476647": 21.600000000000023, + "1437476648": 21.399999999999977, + "1437476649": 21.200000000000045, + "1437476650": 21, + "1437476651": 20.600000000000023, + "1437476652": 20.200000000000045, + "1437476653": 19.600000000000023, + "1437476654": 19.200000000000045, + "1437476655": 18.600000000000023, + "1437476656": 17.799999999999955, + "1437476658": 17.200000000000045, + "1437476659": 16.399999999999977, + "1437476660": 15.399999999999977, + "1437476661": 14.399999999999977, + "1437476662": 13.600000000000023, + "1437476663": 12.799999999999955, + "1437476664": 12, + "1437476665": 11.600000000000023, + "1437476666": 11.399999999999977, + "1437476667": 11.600000000000023, + "1437476668": 11.800000000000011, + "1437476669": 12.200000000000045, + "1437476670": 12.600000000000023, + "1437476671": 13, + "1437476672": 13.600000000000023, + "1437476673": 14, + "1437476674": 14.200000000000045, + "1437476675": 14.399999999999977, + "1437476676": 14.600000000000023, + "1437476677": 13.799999999999955, + "1437476678": 12.399999999999977, + "1437476679": 12.600000000000023, + "1437476680": 13.799999999999955, + "1437476681": 14, + "1437476682": 13.799999999999955, + "1437476683": 13.600000000000023, + "1437476684": 13.399999999999977, + "1437476685": 13.399999999999977, + "1437476686": 13.600000000000023, + "1437476687": 13.600000000000023, + "1437476688": 13.399999999999977, + "1437476689": 13.399999999999977, + "1437476690": 13, + "1437476691": 12.799999999999955, + "1437476692": 12.200000000000045, + "1437476694": 11.399999999999977, + "1437476695": 10.800000000000011, + "1437476696": 10.399999999999977, + "1437476697": 10.600000000000023, + "1437476698": 11.399999999999977, + "1437476699": 12.399999999999977, + "1437476700": 13.200000000000045, + "1437476701": 13.799999999999955, + "1437476702": 14, + "1437476703": 14, + "1437476704": 14, + "1437476705": 14, + "1437476706": 13.600000000000023, + "1437476707": 13, + "1437476708": 12.200000000000045, + "1437476709": 11.199999999999989, + "1437476710": 10.399999999999977, + "1437476711": 10.199999999999989, + "1437476712": 10.600000000000023, + "1437476713": 11.199999999999989, + "1437476714": 12, + "1437476715": 12.600000000000023, + "1437476716": 13, + "1437476717": 13.200000000000045, + "1437476718": 13.399999999999977, + "1437476719": 13.600000000000023, + "1437476720": 13.799999999999955, + "1437476721": 13.799999999999955, + "1437476723": 14, + "1437476724": 13.799999999999955, + "1437476725": 14, + "1437476726": 14, + "1437476727": 14.200000000000045, + "1437476728": 14.200000000000045, + "1437476729": 14.200000000000045, + "1437476730": 14.200000000000045, + "1437476731": 14, + "1437476732": 13.600000000000023, + "1437476733": 13.399999999999977, + "1437476734": 13, + "1437476735": 12.799999999999955, + "1437476736": 12.399999999999977, + "1437476737": 12.200000000000045, + "1437476738": 11.800000000000011, + "1437476739": 11.800000000000011, + "1437476740": 11.800000000000011, + "1437476741": 11.800000000000011, + "1437476742": 12, + "1437476743": 12, + "1437476744": 12, + "1437476745": 11.800000000000011, + "1437476746": 11.600000000000023, + "1437476747": 11.199999999999989, + "1437476748": 10.800000000000011, + "1437476749": 10.600000000000023, + "1437476750": 10.199999999999989, + "1437476751": 9.800000000000011, + "1437476752": 9.399999999999977, + "1437476753": 9, + "1437476755": 8.600000000000023, + "1437476756": 8.199999999999989, + "1437476757": 7.800000000000011, + "1437476758": 7.399999999999977, + "1437476759": 7, + "1437476760": 6.600000000000023, + "1437476761": 6, + "1437476762": 5.600000000000023, + "1437476763": 5, + "1437476764": 4.600000000000023, + "1437476765": 4.199999999999989, + "1437476766": 3.8000000000000114, + "1437476767": 3.3999999999999773, + "1437476768": 3.1999999999999886, + "1437476769": 2.8000000000000114, + "1437476770": 2.6000000000000227, + "1437476771": 2.1999999999999886, + "1437476772": 2, + "1437476773": 1.6000000000000227, + "1437476774": 1.3999999999999773, + "1437476775": 1.1999999999999886, + "1437476776": 1, + "1437476777": 0.6000000000000227, + "1437476778": 0.39999999999997726, + "1437476779": 0.39999999999997726, + "1437476780": 0.19999999999998863, + "1437476781": 0.19999999999998863, + "1437476782": 0, + "1437476783": 0, + "1437476784": 0, + "1437476785": 0, + "1437476786": 0, + "1437476787": 0, + "1437476788": 0, + "1437476789": 0.19999999999998863, + "1437476791": 0.19999999999998863, + "1437476792": 0.19999999999998863, + "1437476793": 0.19999999999998863, + "1437476794": 0.19999999999998863, + "1437476795": 0.19999999999998863, + "1437476796": 0.19999999999998863, + "1437476797": 0.19999999999998863, + "1437476798": 0.19999999999998863, + "1437476799": 0.19999999999998863, + "1437476800": 0.19999999999998863, + "1437476801": 0.19999999999998863, + "1437476802": 0.19999999999998863, + "1437476803": 0.19999999999998863, + "1437476804": 0.19999999999998863, + "1437476805": 0.19999999999998863, + "1437476806": 0.19999999999998863, + "1437476807": 0.19999999999998863, + "1437476808": 0.19999999999998863, + "1437476809": 0.19999999999998863, + "1437476810": 0.19999999999998863, + "1437476811": 0.19999999999998863, + "1437476812": 0.19999999999998863, + "1437476813": 0.19999999999998863, + "1437476814": 0.19999999999998863, + "1437476815": 0.19999999999998863, + "1437476816": 0.19999999999998863, + "1437476817": 0.19999999999998863, + "1437476818": 0.19999999999998863, + "1437476819": 0.19999999999998863, + "1437476820": 0.19999999999998863, + "1437476821": 0.19999999999998863, + "1437476822": 0.19999999999998863, + "1437476824": 0.19999999999998863, + "1437476825": 0.19999999999998863, + "1437476826": 0.19999999999998863, + "1437476827": 0.19999999999998863, + "1437476828": 0.19999999999998863, + "1437476829": 0.19999999999998863, + "1437476830": 0.19999999999998863, + "1437476831": 0.19999999999998863, + "1437476832": 0.19999999999998863, + "1437476833": 0.19999999999998863, + "1437476834": 0.19999999999998863, + "1437476835": 0.19999999999998863, + "1437476836": 0.19999999999998863, + "1437476837": 0.19999999999998863, + "1437476838": 0.19999999999998863, + "1437476839": 0.19999999999998863, + "1437476840": 0.19999999999998863, + "1437476841": 0.19999999999998863, + "1437476842": 0.39999999999997726, + "1437476843": 0.39999999999997726, + "1437476844": 0.6000000000000227, + "1437476845": 0.6000000000000227, + "1437476846": 0.8000000000000114, + "1437476847": 0.8000000000000114, + "1437476848": 1, + "1437476849": 1, + "1437476850": 1.1999999999999886, + "1437476851": 1.3999999999999773, + "1437476852": 1.3999999999999773, + "1437476854": 1.6000000000000227, + "1437476855": 1.8000000000000114, + "1437476856": 2, + "1437476857": 2.1999999999999886, + "1437476858": 2.3999999999999773, + "1437476859": 2.8000000000000114, + "1437476860": 3, + "1437476861": 3, + "1437476862": 3.1999999999999886, + "1437476863": 3.1999999999999886, + "1437476864": 3.1999999999999886, + "1437476865": 3.1999999999999886, + "1437476866": 3.3999999999999773, + "1437476867": 3.3999999999999773, + "1437476868": 3.3999999999999773, + "1437476869": 3.3999999999999773, + "1437476870": 3.3999999999999773, + "1437476871": 3.3999999999999773, + "1437476872": 3.3999999999999773, + "1437476873": 3.3999999999999773, + "1437476874": 3.6000000000000227, + "1437476875": 3.6000000000000227, + "1437476876": 3.6000000000000227, + "1437476877": 3.6000000000000227, + "1437476878": 3.6000000000000227, + "1437476879": 3.8000000000000114, + "1437476880": 3.8000000000000114, + "1437476881": 3.8000000000000114, + "1437476882": 3.8000000000000114, + "1437476883": 4, + "1437476884": 4, + "1437476886": 4.199999999999989, + "1437476887": 4.399999999999977, + "1437476888": 4.800000000000011, + "1437476889": 5, + "1437476890": 5.399999999999977, + "1437476891": 5.600000000000023, + "1437476892": 5.800000000000011, + "1437476893": 6, + "1437476894": 6.199999999999989, + "1437476895": 6.199999999999989, + "1437476896": 6.199999999999989, + "1437476897": 6.199999999999989, + "1437476898": 6.199999999999989, + "1437476899": 6.199999999999989, + "1437476900": 6.399999999999977, + "1437476901": 7, + "1437476902": 7.600000000000023, + "1437476903": 8.199999999999989, + "1437476904": 8.800000000000011, + "1437476905": 9.199999999999989, + "1437476906": 9.800000000000011, + "1437476907": 10.399999999999977, + "1437476908": 11, + "1437476910": 11.399999999999977, + "1437476911": 11.800000000000011, + "1437476912": 12.399999999999977, + "1437476913": 12.799999999999955, + "1437476914": 13.200000000000045, + "1437476915": 13.399999999999977, + "1437476916": 13.600000000000023, + "1437476917": 13.799999999999955, + "1437476918": 14, + "1437476919": 14.200000000000045, + "1437476920": 14.399999999999977, + "1437476921": 14.799999999999955, + "1437476922": 15.200000000000045, + "1437476923": 15.799999999999955, + "1437476924": 16.200000000000045, + "1437476925": 16.600000000000023, + "1437476926": 16.799999999999955, + "1437476927": 17.200000000000045, + "1437476928": 17.399999999999977, + "1437476929": 17.799999999999955, + "1437476930": 18, + "1437476931": 18.200000000000045, + "1437476932": 18.399999999999977, + "1437476933": 18.600000000000023, + "1437476934": 19, + "1437476935": 19.200000000000045, + "1437476936": 19.399999999999977, + "1437476938": 19.600000000000023, + "1437476939": 19.799999999999955, + "1437476940": 20, + "1437476941": 20.200000000000045, + "1437476942": 20.399999999999977, + "1437476943": 20.799999999999955, + "1437476944": 21, + "1437476945": 21.200000000000045, + "1437476946": 21.399999999999977, + "1437476947": 21.600000000000023, + "1437476948": 22, + "1437476949": 22.200000000000045, + "1437476950": 22.399999999999977, + "1437476951": 22.600000000000023, + "1437476952": 22.799999999999955, + "1437476953": 23.200000000000045, + "1437476954": 23.399999999999977, + "1437476955": 23.600000000000023, + "1437476956": 23.799999999999955, + "1437476957": 24, + "1437476958": 24.200000000000045, + "1437476959": 24.600000000000023, + "1437476960": 24.799999999999955, + "1437476961": 25, + "1437476962": 25.200000000000045, + "1437476963": 25.399999999999977, + "1437476964": 25.600000000000023, + "1437476965": 26, + "1437476966": 26.200000000000045, + "1437476967": 26.399999999999977, + "1437476969": 26.600000000000023, + "1437476970": 26.799999999999955, + "1437476971": 27, + "1437476972": 27.399999999999977, + "1437476973": 27.600000000000023, + "1437476974": 27.799999999999955, + "1437476975": 28, + "1437476976": 28.399999999999977, + "1437476977": 28.600000000000023, + "1437476978": 28.799999999999955, + "1437476979": 29, + "1437476980": 29.200000000000045, + "1437476981": 29.399999999999977, + "1437476982": 29.799999999999955, + "1437476983": 30, + "1437476984": 30.200000000000045, + "1437476985": 30.399999999999977, + "1437476986": 30.600000000000023, + "1437476987": 31, + "1437476988": 31.200000000000045, + "1437476989": 31.399999999999977, + "1437476990": 31.600000000000023, + "1437476991": 32, + "1437476992": 32.200000000000045, + "1437476993": 32.39999999999998, + "1437476994": 32.60000000000002, + "1437476996": 33, + "1437476997": 33.200000000000045, + "1437476998": 33.39999999999998, + "1437476999": 33.60000000000002, + "1437477000": 34, + "1437477001": 34.200000000000045, + "1437477002": 34.39999999999998, + "1437477003": 34.60000000000002, + "1437477004": 34.60000000000002, + "1437477005": 34.799999999999955, + "1437477006": 34.799999999999955, + "1437477007": 34.799999999999955, + "1437477008": 34.799999999999955, + "1437477009": 34.799999999999955, + "1437477010": 34.60000000000002, + "1437477011": 34.60000000000002, + "1437477012": 34.60000000000002, + "1437477013": 34.60000000000002, + "1437477014": 35, + "1437477015": 35.39999999999998, + "1437477016": 35.799999999999955, + "1437477017": 36.39999999999998, + "1437477018": 36.799999999999955, + "1437477019": 37.39999999999998, + "1437477020": 37.799999999999955, + "1437477022": 38.200000000000045, + "1437477023": 38.799999999999955, + "1437477024": 39.200000000000045, + "1437477025": 39.60000000000002, + "1437477026": 40, + "1437477027": 40.39999999999998, + "1437477028": 40.799999999999955, + "1437477029": 41, + "1437477030": 41.39999999999998, + "1437477031": 41.799999999999955, + "1437477032": 42.200000000000045, + "1437477033": 42.39999999999998, + "1437477034": 42.799999999999955, + "1437477035": 43.200000000000045, + "1437477036": 43.39999999999998, + "1437477037": 43.799999999999955, + "1437477038": 44.200000000000045, + "1437477039": 44.60000000000002, + "1437477040": 44.799999999999955, + "1437477041": 45.200000000000045, + "1437477042": 45.60000000000002, + "1437477043": 45.799999999999955, + "1437477044": 46.200000000000045, + "1437477045": 46.39999999999998, + "1437477046": 46.799999999999955, + "1437477047": 47.200000000000045, + "1437477048": 47.39999999999998, + "1437477050": 47.799999999999955, + "1437477051": 48.200000000000045, + "1437477052": 48.39999999999998, + "1437477053": 48.799999999999955, + "1437477054": 49.200000000000045, + "1437477055": 49.39999999999998, + "1437477056": 49.799999999999955, + "1437477057": 50, + "1437477058": 50.39999999999998, + "1437477059": 50.799999999999955, + "1437477060": 51, + "1437477061": 51.39999999999998, + "1437477062": 51.60000000000002, + "1437477063": 52, + "1437477064": 52.39999999999998, + "1437477065": 52.60000000000002, + "1437477066": 52.799999999999955, + "1437477067": 53.200000000000045, + "1437477068": 53.200000000000045, + "1437477069": 53, + "1437477070": 53, + "1437477071": 53, + "1437477072": 53, + "1437477073": 53.200000000000045, + "1437477075": 53.39999999999998, + "1437477076": 53.60000000000002, + "1437477077": 54, + "1437477078": 54.200000000000045, + "1437477079": 54.60000000000002, + "1437477080": 54.799999999999955, + "1437477081": 55.200000000000045, + "1437477082": 55.39999999999998, + "1437477083": 55.60000000000002, + "1437477084": 55.799999999999955, + "1437477085": 56, + "1437477086": 56.200000000000045, + "1437477087": 56.39999999999998, + "1437477088": 56.39999999999998, + "1437477089": 56.60000000000002, + "1437477090": 56.60000000000002, + "1437477091": 56.60000000000002, + "1437477092": 56.60000000000002, + "1437477093": 56.39999999999998, + "1437477094": 56.39999999999998, + "1437477095": 56.200000000000045, + "1437477096": 56, + "1437477097": 55.799999999999955, + "1437477098": 55.60000000000002, + "1437477099": 55.39999999999998, + "1437477100": 55.200000000000045, + "1437477101": 54.799999999999955, + "1437477102": 54.60000000000002, + "1437477103": 54.200000000000045, + "1437477104": 54, + "1437477105": 53.60000000000002, + "1437477106": 53.39999999999998, + "1437477107": 53, + "1437477109": 52.60000000000002, + "1437477110": 52.39999999999998, + "1437477111": 52, + "1437477112": 51.799999999999955, + "1437477113": 51.60000000000002, + "1437477114": 51.39999999999998, + "1437477115": 51.39999999999998, + "1437477116": 51.39999999999998, + "1437477117": 51.39999999999998, + "1437477118": 51.60000000000002, + "1437477119": 51.799999999999955, + "1437477120": 52, + "1437477121": 52, + "1437477122": 52.200000000000045, + "1437477123": 52.200000000000045, + "1437477124": 52.39999999999998, + "1437477125": 52.39999999999998, + "1437477126": 52.60000000000002, + "1437477127": 52.60000000000002, + "1437477128": 52.799999999999955, + "1437477129": 52.799999999999955, + "1437477130": 53, + "1437477131": 53.200000000000045, + "1437477132": 53.200000000000045, + "1437477133": 53.39999999999998, + "1437477134": 53.39999999999998, + "1437477135": 53.39999999999998, + "1437477136": 53.60000000000002, + "1437477137": 53.60000000000002, + "1437477138": 53.60000000000002, + "1437477139": 53.799999999999955, + "1437477140": 53.799999999999955, + "1437477141": 53.799999999999955, + "1437477143": 53.60000000000002, + "1437477144": 53.60000000000002, + "1437477145": 53.39999999999998, + "1437477146": 53.200000000000045, + "1437477147": 53.200000000000045, + "1437477148": 53, + "1437477149": 52.799999999999955, + "1437477150": 52.60000000000002, + "1437477151": 52.200000000000045, + "1437477152": 52, + "1437477153": 51.799999999999955, + "1437477154": 51.60000000000002, + "1437477155": 51.60000000000002, + "1437477156": 51.39999999999998, + "1437477157": 51.39999999999998, + "1437477158": 51.39999999999998, + "1437477159": 51.39999999999998, + "1437477160": 51.39999999999998, + "1437477161": 51.60000000000002, + "1437477162": 51.60000000000002, + "1437477163": 51.60000000000002, + "1437477164": 51.60000000000002, + "1437477165": 51.60000000000002, + "1437477166": 51.60000000000002, + "1437477167": 51.39999999999998, + "1437477168": 51.39999999999998, + "1437477169": 51.200000000000045, + "1437477170": 51, + "1437477171": 50.60000000000002, + "1437477172": 50.200000000000045, + "1437477173": 49.799999999999955, + "1437477174": 49.200000000000045, + "1437477175": 48.799999999999955, + "1437477176": 48.200000000000045, + "1437477178": 47.60000000000002, + "1437477179": 47, + "1437477180": 46.39999999999998, + "1437477181": 45.799999999999955, + "1437477182": 45.200000000000045, + "1437477183": 44.60000000000002, + "1437477184": 44, + "1437477185": 43.39999999999998, + "1437477186": 43, + "1437477187": 42.60000000000002, + "1437477188": 42.60000000000002, + "1437477189": 43.39999999999998, + "1437477190": 44, + "1437477191": 44.799999999999955, + "1437477192": 45.39999999999998, + "1437477193": 46, + "1437477194": 46.60000000000002, + "1437477195": 47.200000000000045, + "1437477196": 47.60000000000002, + "1437477197": 48, + "1437477198": 48.39999999999998, + "1437477199": 48.60000000000002, + "1437477200": 48.799999999999955, + "1437477201": 49, + "1437477202": 49, + "1437477203": 49, + "1437477204": 49, + "1437477205": 49, + "1437477206": 49, + "1437477207": 49, + "1437477208": 48.799999999999955, + "1437477209": 48.799999999999955, + "1437477210": 48.60000000000002, + "1437477211": 48.39999999999998, + "1437477212": 48.39999999999998, + "1437477213": 48.200000000000045, + "1437477215": 48, + "1437477216": 47.799999999999955, + "1437477217": 47.60000000000002, + "1437477218": 47.200000000000045, + "1437477219": 46.799999999999955, + "1437477220": 46.60000000000002, + "1437477221": 46.200000000000045, + "1437477222": 45.799999999999955, + "1437477223": 45.39999999999998, + "1437477224": 45.200000000000045, + "1437477225": 45, + "1437477226": 44.60000000000002, + "1437477227": 44.60000000000002, + "1437477228": 44.39999999999998, + "1437477229": 44.200000000000045, + "1437477230": 44, + "1437477231": 44, + "1437477232": 43.799999999999955, + "1437477233": 43.60000000000002, + "1437477234": 43.39999999999998, + "1437477235": 43.39999999999998, + "1437477236": 43, + "1437477237": 42.799999999999955, + "1437477238": 42.39999999999998, + "1437477239": 42, + "1437477240": 41.39999999999998, + "1437477241": 40.60000000000002, + "1437477242": 39.60000000000002, + "1437477243": 38.60000000000002, + "1437477244": 37.799999999999955, + "1437477245": 37.200000000000045, + "1437477247": 37.200000000000045, + "1437477248": 37.60000000000002, + "1437477249": 38.200000000000045, + "1437477250": 38.39999999999998, + "1437477251": 38.200000000000045, + "1437477252": 37.799999999999955, + "1437477253": 37.200000000000045, + "1437477254": 36.39999999999998, + "1437477255": 35.60000000000002, + "1437477256": 34.799999999999955, + "1437477257": 34, + "1437477258": 33.200000000000045, + "1437477259": 32.200000000000045, + "1437477260": 31.200000000000045, + "1437477261": 30, + "1437477262": 28.600000000000023, + "1437477263": 27, + "1437477264": 25.399999999999977, + "1437477265": 24.200000000000045, + "1437477266": 22.799999999999955, + "1437477267": 21.799999999999955, + "1437477268": 20.799999999999955, + "1437477270": 20, + "1437477271": 19, + "1437477272": 18.200000000000045, + "1437477273": 17.399999999999977, + "1437477274": 16.799999999999955, + "1437477275": 16, + "1437477276": 15.399999999999977, + "1437477277": 14.799999999999955, + "1437477278": 14.399999999999977, + "1437477279": 13.799999999999955, + "1437477280": 13.399999999999977, + "1437477281": 13, + "1437477282": 12.600000000000023, + "1437477283": 12.200000000000045, + "1437477284": 12, + "1437477285": 11.600000000000023, + "1437477286": 11.399999999999977, + "1437477287": 11.199999999999989, + "1437477288": 10.800000000000011, + "1437477289": 10.600000000000023, + "1437477290": 10.399999999999977, + "1437477291": 10.199999999999989, + "1437477292": 10.199999999999989, + "1437477294": 10.199999999999989, + "1437477295": 10.199999999999989, + "1437477296": 10.199999999999989, + "1437477297": 10.199999999999989, + "1437477298": 10.199999999999989, + "1437477299": 10.399999999999977, + "1437477300": 10.399999999999977, + "1437477301": 10.600000000000023, + "1437477302": 10.600000000000023, + "1437477303": 10.600000000000023, + "1437477304": 10.600000000000023, + "1437477305": 10.600000000000023, + "1437477306": 10.600000000000023, + "1437477307": 10.600000000000023, + "1437477308": 10.600000000000023, + "1437477309": 10.600000000000023, + "1437477310": 10.600000000000023, + "1437477311": 10.600000000000023, + "1437477312": 10.600000000000023, + "1437477313": 10.600000000000023, + "1437477314": 10.600000000000023, + "1437477315": 10.600000000000023, + "1437477316": 10.600000000000023, + "1437477317": 10.600000000000023, + "1437477318": 10.600000000000023, + "1437477319": 10.600000000000023, + "1437477321": 10.600000000000023, + "1437477322": 10.600000000000023, + "1437477323": 10.600000000000023, + "1437477324": 10.600000000000023, + "1437477325": 10.600000000000023, + "1437477326": 10.199999999999989, + "1437477327": 10, + "1437477328": 9.600000000000023, + "1437477329": 9.199999999999989, + "1437477330": 8.600000000000023, + "1437477331": 8.199999999999989, + "1437477332": 7.800000000000011, + "1437477333": 7.600000000000023, + "1437477334": 7.800000000000011, + "1437477335": 8.199999999999989, + "1437477336": 8.399999999999977, + "1437477337": 8.800000000000011, + "1437477338": 9.199999999999989, + "1437477339": 9.600000000000023, + "1437477340": 10, + "1437477341": 10.199999999999989, + "1437477342": 10.600000000000023, + "1437477343": 10.800000000000011, + "1437477345": 11.199999999999989, + "1437477346": 11.399999999999977, + "1437477347": 11.800000000000011, + "1437477348": 12, + "1437477349": 12, + "1437477350": 12.200000000000045, + "1437477351": 12.200000000000045, + "1437477352": 12.200000000000045, + "1437477353": 12.200000000000045, + "1437477354": 12.200000000000045, + "1437477355": 12.200000000000045, + "1437477356": 12.200000000000045, + "1437477376": 12.200000000000045, + "1437477377": 12.399999999999977, + "1437477378": 12.399999999999977, + "1437477379": 12.399999999999977, + "1437477380": 12.399999999999977, + "1437477381": 12.600000000000023, + "1437477383": 12.600000000000023, + "1437477384": 12.600000000000023, + "1437477385": 12.600000000000023, + "1437477386": 12.600000000000023, + "1437477387": 12.600000000000023, + "1437477388": 12.600000000000023, + "1437477392": 12.600000000000023, + "1437477393": 12.799999999999955, + "1437477394": 12.799999999999955, + "1437477395": 12.799999999999955, + "1437477397": 12.799999999999955, + "1437477398": 12.799999999999955, + "1437477399": 12.799999999999955, + "1437477400": 12.799999999999955, + "1437477401": 12.799999999999955, + "1437477402": 12.799999999999955, + "1437477403": 12.799999999999955, + "1437477404": 13, + "1437477405": 13, + "1437477406": 13, + "1437477407": 13, + "1437477408": 13, + "1437477411": 13, + "1437477412": 13, + "1437477413": 13, + "1437477414": 13, + "1437477415": 13, + "1437477417": 13, + "1437477418": 13, + "1437477419": 13, + "1437477420": 13, + "1437477421": 13, + "1437477422": 13, + "1437477423": 13, + "1437477428": 13, + "1437477429": 13, + "1437477430": 13.200000000000045, + "1437477432": 13.200000000000045, + "1437477433": 13.200000000000045, + "1437477434": 13.200000000000045, + "1437477435": 13.200000000000045, + "1437477436": 13.200000000000045, + "1437477437": 13.200000000000045, + "1437477438": 13.399999999999977, + "1437477439": 13.399999999999977, + "1437477440": 13.399999999999977, + "1437477441": 13.399999999999977, + "1437477442": 13.399999999999977, + "1437477443": 13.399999999999977, + "1437477444": 13.600000000000023, + "1437477445": 13.600000000000023, + "1437477446": 13.600000000000023, + "1437477447": 13.600000000000023, + "1437477448": 13.600000000000023, + "1437477449": 13.600000000000023, + "1437477450": 13.600000000000023, + "1437477451": 13.799999999999955, + "1437477452": 13.799999999999955, + "1437477453": 13.799999999999955, + "1437477454": 13.799999999999955, + "1437477455": 13.799999999999955, + "1437477456": 13.799999999999955, + "1437477457": 14, + "1437477458": 14, + "1437477459": 14, + "1437477461": 14, + "1437477465": 14, + "1437477466": 14, + "1437477467": 14, + "1437477468": 14, + "1437477469": 14, + "1437477470": 14, + "1437477471": 14, + "1437477472": 14.200000000000045, + "1437477473": 14.200000000000045, + "1437477474": 14.200000000000045, + "1437477475": 14.200000000000045, + "1437477476": 14.200000000000045, + "1437477477": 14.200000000000045, + "1437477478": 14.200000000000045, + "1437477479": 14.200000000000045, + "1437477480": 14.399999999999977, + "1437477481": 14.399999999999977, + "1437477482": 14.399999999999977, + "1437477483": 14.399999999999977, + "1437477484": 14.399999999999977, + "1437477485": 14.399999999999977, + "1437477486": 14.399999999999977, + "1437477487": 14.399999999999977, + "1437477488": 14.399999999999977, + "1437477489": 14.399999999999977, + "1437477490": 14.399999999999977, + "1437477491": 14.399999999999977, + "1437477492": 14.399999999999977, + "1437477493": 14.399999999999977, + "1437477494": 14.399999999999977, + "1437477495": 14.399999999999977, + "1437477496": 14.399999999999977, + "1437477497": 14.399999999999977, + "1437477498": 14.399999999999977, + "1437477500": 14.399999999999977, + "1437477501": 14.399999999999977, + "1437477502": 14.399999999999977, + "1437477503": 14.399999999999977, + "1437477504": 14.399999999999977, + "1437477505": 14.399999999999977, + "1437477506": 14.200000000000045, + "1437477507": 14.200000000000045, + "1437477508": 14.200000000000045, + "1437477509": 14.200000000000045, + "1437477510": 14.200000000000045, + "1437477511": 14, + "1437477512": 14, + "1437477513": 14, + "1437477514": 14, + "1437477515": 14, + "1437477516": 14.200000000000045, + "1437477517": 14.200000000000045, + "1437477518": 14.200000000000045, + "1437477519": 14.399999999999977, + "1437477520": 14.399999999999977, + "1437477521": 14.600000000000023, + "1437477522": 14.600000000000023, + "1437477523": 14.799999999999955, + "1437477524": 14.799999999999955, + "1437477525": 14.799999999999955, + "1437477526": 15, + "1437477527": 15, + "1437477528": 15, + "1437477529": 15, + "1437477530": 15.200000000000045, + "1437477532": 15.200000000000045, + "1437477533": 15.200000000000045, + "1437477534": 15.200000000000045, + "1437477535": 15.200000000000045, + "1437477536": 15.200000000000045, + "1437477537": 15.399999999999977, + "1437477538": 15.399999999999977, + "1437477539": 15.399999999999977, + "1437477540": 15.399999999999977, + "1437477541": 15.399999999999977, + "1437477542": 15.600000000000023, + "1437477543": 15.600000000000023, + "1437477544": 15.600000000000023, + "1437477545": 15.600000000000023, + "1437477546": 15.600000000000023, + "1437477547": 15.600000000000023, + "1437477548": 15.799999999999955, + "1437477549": 15.799999999999955, + "1437477550": 15.799999999999955, + "1437477551": 15.799999999999955, + "1437477552": 15.799999999999955, + "1437477553": 15.799999999999955, + "1437477555": 16, + "1437477556": 16, + "1437477557": 16, + "1437477558": 16, + "1437477559": 16, + "1437477560": 16, + "1437477561": 16, + "1437477562": 16.200000000000045, + "1437477563": 16.200000000000045, + "1437477564": 16.200000000000045, + "1437477565": 16.200000000000045, + "1437477566": 16.200000000000045, + "1437477567": 16.200000000000045, + "1437477568": 16.200000000000045, + "1437477569": 16.200000000000045, + "1437477570": 16.200000000000045, + "1437477571": 16.399999999999977, + "1437477572": 16.399999999999977, + "1437477573": 16.399999999999977, + "1437477574": 16.399999999999977, + "1437477575": 16.399999999999977, + "1437477576": 16.399999999999977, + "1437477577": 16.399999999999977, + "1437477578": 16.399999999999977, + "1437477580": 16.399999999999977, + "1437477581": 16.600000000000023, + "1437477582": 16.600000000000023, + "1437477583": 16.600000000000023, + "1437477584": 16.600000000000023, + "1437477585": 16.600000000000023, + "1437477586": 16.799999999999955, + "1437477587": 16.799999999999955, + "1437477588": 16.799999999999955, + "1437477589": 17, + "1437477590": 17, + "1437477591": 17, + "1437477592": 17.200000000000045, + "1437477593": 17.200000000000045, + "1437477594": 17.200000000000045, + "1437477595": 17.200000000000045, + "1437477596": 17.399999999999977, + "1437477597": 17.399999999999977, + "1437477598": 17.399999999999977, + "1437477599": 17.399999999999977, + "1437477600": 17.399999999999977, + "1437477601": 17.399999999999977, + "1437477604": 17.399999999999977, + "1437477605": 17.399999999999977, + "1437477607": 17.600000000000023, + "1437477608": 17.600000000000023, + "1437477609": 17.600000000000023, + "1437477610": 17.799999999999955, + "1437477611": 17.799999999999955, + "1437477612": 17.799999999999955, + "1437477613": 17.799999999999955, + "1437477614": 17.799999999999955, + "1437477615": 17.600000000000023, + "1437477616": 17.799999999999955, + "1437477617": 18, + "1437477618": 18, + "1437477619": 18, + "1437477620": 17.799999999999955, + "1437477621": 17.799999999999955, + "1437477622": 17.600000000000023, + "1437477623": 17.399999999999977, + "1437477624": 17.200000000000045, + "1437477625": 16.799999999999955, + "1437477626": 16.399999999999977, + "1437477627": 16, + "1437477628": 15.600000000000023, + "1437477629": 15.200000000000045, + "1437477630": 14.799999999999955, + "1437477631": 14.600000000000023, + "1437477632": 14.200000000000045, + "1437477633": 14.200000000000045, + "1437477634": 14, + "1437477635": 14, + "1437477636": 14.200000000000045, + "1437477638": 14.200000000000045, + "1437477639": 14.399999999999977, + "1437477640": 14.399999999999977, + "1437477641": 14.399999999999977, + "1437477642": 14.399999999999977, + "1437477643": 14.399999999999977, + "1437477644": 14.200000000000045, + "1437477645": 14.200000000000045, + "1437477646": 13.799999999999955, + "1437477647": 13.600000000000023, + "1437477648": 13.399999999999977, + "1437477649": 13, + "1437477650": 12.600000000000023, + "1437477651": 12.399999999999977, + "1437477652": 12, + "1437477653": 11.600000000000023, + "1437477654": 11.199999999999989, + "1437477655": 11, + "1437477656": 11, + "1437477657": 11.199999999999989, + "1437477658": 11.399999999999977, + "1437477659": 11.600000000000023, + "1437477660": 11.600000000000023, + "1437477661": 11.600000000000023, + "1437477662": 11.600000000000023, + "1437477663": 11.600000000000023, + "1437477664": 11.600000000000023, + "1437477665": 11.600000000000023, + "1437477666": 11.600000000000023, + "1437477667": 11.600000000000023, + "1437477668": 11.800000000000011, + "1437477669": 11.800000000000011, + "1437477671": 11.800000000000011, + "1437477672": 11.800000000000011, + "1437477673": 11.800000000000011, + "1437477674": 11.800000000000011, + "1437477676": 12, + "1437477677": 12, + "1437477678": 12, + "1437477679": 12, + "1437477680": 12, + "1437477681": 12, + "1437477682": 12, + "1437477683": 12, + "1437477684": 12, + "1437477685": 12, + "1437477688": 12, + "1437477689": 12, + "1437477690": 12.200000000000045, + "1437477691": 12.200000000000045, + "1437477692": 12.200000000000045, + "1437477693": 12.200000000000045, + "1437477695": 12.200000000000045, + "1437477696": 12.399999999999977, + "1437477697": 12.399999999999977, + "1437477698": 12.399999999999977, + "1437477699": 12.399999999999977, + "1437477700": 12.399999999999977, + "1437477701": 12.399999999999977, + "1437477702": 12.600000000000023, + "1437477703": 12.600000000000023, + "1437477704": 12.600000000000023, + "1437477705": 12.600000000000023, + "1437477706": 12.600000000000023 + }, + "heartRates": { + "1437474517": 92, + "1437474518": 93, + "1437474519": 94, + "1437474520": 93, + "1437474521": 93, + "1437474522": 93, + "1437474523": 93, + "1437474524": 93, + "1437474525": 93, + "1437474526": 93, + "1437474527": 93, + "1437474528": 91, + "1437474529": 89, + "1437474530": 89, + "1437474532": 89, + "1437474533": 90, + "1437474534": 90, + "1437474535": 91, + "1437474536": 91, + "1437474537": 91, + "1437474538": 91, + "1437474539": 91, + "1437474540": 89, + "1437474541": 89, + "1437474542": 88, + "1437474543": 89, + "1437474544": 91, + "1437474545": 93, + "1437474546": 96, + "1437474547": 98, + "1437474548": 99, + "1437474549": 101, + "1437474550": 103, + "1437474551": 105, + "1437474552": 106, + "1437474553": 108, + "1437474554": 110, + "1437474555": 111, + "1437474556": 112, + "1437474557": 113, + "1437474558": 113, + "1437474559": 114, + "1437474560": 114, + "1437474561": 114, + "1437474562": 115, + "1437474563": 115, + "1437474564": 115, + "1437474566": 115, + "1437474567": 115, + "1437474568": 115, + "1437474569": 116, + "1437474570": 117, + "1437474571": 118, + "1437474572": 118, + "1437474573": 119, + "1437474574": 119, + "1437474575": 120, + "1437474576": 121, + "1437474577": 122, + "1437474578": 123, + "1437474579": 123, + "1437474580": 124, + "1437474581": 125, + "1437474582": 126, + "1437474583": 126, + "1437474584": 127, + "1437474585": 127, + "1437474586": 127, + "1437474587": 127, + "1437474588": 127, + "1437474589": 127, + "1437474590": 127, + "1437474591": 127, + "1437474592": 128, + "1437474593": 128, + "1437474594": 129, + "1437474595": 129, + "1437474596": 130, + "1437474597": 130, + "1437474598": 131, + "1437474599": 131, + "1437474600": 132, + "1437474601": 133, + "1437474603": 134, + "1437474604": 135, + "1437474605": 135, + "1437474606": 136, + "1437474607": 137, + "1437474608": 137, + "1437474609": 138, + "1437474610": 138, + "1437474611": 139, + "1437474612": 139, + "1437474613": 139, + "1437474614": 139, + "1437474615": 140, + "1437474616": 140, + "1437474617": 140, + "1437474618": 139, + "1437474619": 139, + "1437474620": 139, + "1437474621": 139, + "1437474622": 139, + "1437474623": 138, + "1437474624": 138, + "1437474626": 137, + "1437474627": 137, + "1437474628": 136, + "1437474629": 136, + "1437474630": 136, + "1437474631": 136, + "1437474632": 136, + "1437474633": 136, + "1437474634": 135, + "1437474635": 135, + "1437474636": 135, + "1437474637": 135, + "1437474638": 135, + "1437474639": 135, + "1437474640": 135, + "1437474641": 135, + "1437474642": 135, + "1437474643": 136, + "1437474644": 136, + "1437474645": 137, + "1437474646": 137, + "1437474647": 137, + "1437474648": 138, + "1437474649": 138, + "1437474650": 138, + "1437474652": 138, + "1437474653": 139, + "1437474654": 139, + "1437474655": 139, + "1437474656": 140, + "1437474657": 140, + "1437474658": 140, + "1437474659": 140, + "1437474660": 140, + "1437474661": 140, + "1437474662": 139, + "1437474663": 139, + "1437474664": 139, + "1437474665": 139, + "1437474666": 139, + "1437474667": 140, + "1437474668": 139, + "1437474669": 140, + "1437474670": 139, + "1437474671": 139, + "1437474672": 139, + "1437474673": 139, + "1437474674": 139, + "1437474675": 139, + "1437474676": 139, + "1437474677": 139, + "1437474678": 139, + "1437474679": 139, + "1437474681": 139, + "1437474682": 140, + "1437474683": 140, + "1437474684": 140, + "1437474685": 140, + "1437474686": 140, + "1437474687": 140, + "1437474688": 140, + "1437474689": 141, + "1437474690": 141, + "1437474691": 141, + "1437474692": 140, + "1437474693": 140, + "1437474694": 140, + "1437474695": 140, + "1437474696": 139, + "1437474697": 139, + "1437474698": 139, + "1437474699": 139, + "1437474700": 139, + "1437474701": 138, + "1437474702": 138, + "1437474703": 138, + "1437474705": 138, + "1437474706": 138, + "1437474707": 138, + "1437474708": 138, + "1437474709": 138, + "1437474710": 138, + "1437474711": 137, + "1437474712": 136, + "1437474713": 136, + "1437474714": 136, + "1437474715": 136, + "1437474716": 137, + "1437474717": 137, + "1437474718": 138, + "1437474719": 138, + "1437474720": 138, + "1437474721": 139, + "1437474722": 138, + "1437474723": 138, + "1437474724": 138, + "1437474725": 137, + "1437474726": 137, + "1437474727": 138, + "1437474728": 137, + "1437474729": 138, + "1437474730": 138, + "1437474732": 138, + "1437474733": 138, + "1437474734": 138, + "1437474735": 138, + "1437474736": 138, + "1437474737": 138, + "1437474738": 138, + "1437474739": 138, + "1437474740": 138, + "1437474741": 139, + "1437474742": 139, + "1437474743": 140, + "1437474744": 140, + "1437474745": 141, + "1437474746": 141, + "1437474747": 142, + "1437474748": 142, + "1437474749": 143, + "1437474750": 144, + "1437474751": 144, + "1437474752": 144, + "1437474753": 144, + "1437474754": 144, + "1437474755": 144, + "1437474756": 144, + "1437474757": 144, + "1437474758": 144, + "1437474760": 144, + "1437474761": 144, + "1437474762": 144, + "1437474763": 144, + "1437474764": 145, + "1437474765": 145, + "1437474766": 145, + "1437474767": 145, + "1437474768": 145, + "1437474769": 145, + "1437474770": 145, + "1437474771": 146, + "1437474772": 145, + "1437474773": 145, + "1437474774": 145, + "1437474775": 146, + "1437474776": 145, + "1437474777": 145, + "1437474778": 145, + "1437474779": 145, + "1437474780": 146, + "1437474781": 146, + "1437474782": 146, + "1437474783": 146, + "1437474785": 146, + "1437474786": 147, + "1437474787": 147, + "1437474788": 147, + "1437474789": 147, + "1437474790": 148, + "1437474791": 148, + "1437474792": 148, + "1437474793": 148, + "1437474794": 148, + "1437474795": 148, + "1437474796": 148, + "1437474797": 148, + "1437474798": 148, + "1437474799": 148, + "1437474800": 147, + "1437474801": 147, + "1437474802": 147, + "1437474803": 146, + "1437474804": 146, + "1437474805": 146, + "1437474806": 146, + "1437474808": 146, + "1437474809": 146, + "1437474810": 146, + "1437474811": 146, + "1437474812": 146, + "1437474813": 146, + "1437474814": 146, + "1437474815": 145, + "1437474816": 146, + "1437474817": 146, + "1437474818": 146, + "1437474819": 146, + "1437474820": 146, + "1437474821": 147, + "1437474822": 147, + "1437474823": 148, + "1437474824": 148, + "1437474825": 149, + "1437474827": 149, + "1437474828": 149, + "1437474829": 150, + "1437474830": 151, + "1437474831": 151, + "1437474832": 152, + "1437474833": 152, + "1437474834": 152, + "1437474835": 153, + "1437474836": 153, + "1437474837": 153, + "1437474838": 153, + "1437474839": 153, + "1437474840": 153, + "1437474841": 153, + "1437474842": 153, + "1437474843": 153, + "1437474844": 153, + "1437474845": 153, + "1437474846": 153, + "1437474847": 153, + "1437474848": 153, + "1437474849": 153, + "1437474850": 153, + "1437474851": 153, + "1437474852": 153, + "1437474853": 154, + "1437474854": 154, + "1437474855": 154, + "1437474856": 154, + "1437474857": 155, + "1437474859": 155, + "1437474860": 155, + "1437474861": 155, + "1437474862": 156, + "1437474863": 156, + "1437474864": 156, + "1437474865": 157, + "1437474866": 157, + "1437474867": 157, + "1437474868": 157, + "1437474869": 157, + "1437474870": 156, + "1437474871": 156, + "1437474872": 156, + "1437474873": 156, + "1437474874": 156, + "1437474875": 156, + "1437474876": 156, + "1437474877": 156, + "1437474878": 156, + "1437474879": 157, + "1437474880": 157, + "1437474881": 157, + "1437474882": 157, + "1437474883": 157, + "1437474884": 157, + "1437474885": 158, + "1437474886": 158, + "1437474887": 158, + "1437474888": 158, + "1437474890": 158, + "1437474891": 158, + "1437474892": 158, + "1437474893": 159, + "1437474894": 158, + "1437474895": 158, + "1437474896": 158, + "1437474897": 158, + "1437474898": 157, + "1437474899": 157, + "1437474900": 157, + "1437474901": 156, + "1437474902": 156, + "1437474903": 156, + "1437474904": 156, + "1437474905": 155, + "1437474906": 155, + "1437474907": 154, + "1437474908": 154, + "1437474909": 154, + "1437474910": 153, + "1437474911": 153, + "1437474912": 153, + "1437474913": 153, + "1437474914": 153, + "1437474915": 153, + "1437474916": 153, + "1437474917": 153, + "1437474918": 153, + "1437474919": 153, + "1437474920": 152, + "1437474921": 152, + "1437474923": 152, + "1437474924": 151, + "1437474925": 151, + "1437474926": 151, + "1437474927": 152, + "1437474928": 152, + "1437474929": 152, + "1437474930": 152, + "1437474931": 151, + "1437474932": 151, + "1437474933": 151, + "1437474934": 151, + "1437474935": 151, + "1437474936": 150, + "1437474937": 150, + "1437474938": 150, + "1437474939": 150, + "1437474940": 150, + "1437474941": 150, + "1437474942": 150, + "1437474943": 150, + "1437474944": 150, + "1437474945": 149, + "1437474946": 149, + "1437474947": 149, + "1437474948": 149, + "1437474949": 149, + "1437474950": 148, + "1437474951": 148, + "1437474952": 149, + "1437474953": 149, + "1437474954": 149, + "1437474955": 149, + "1437474956": 149, + "1437474957": 149, + "1437474958": 150, + "1437474959": 150, + "1437474960": 150, + "1437474962": 150, + "1437474963": 149, + "1437474964": 149, + "1437474965": 149, + "1437474966": 149, + "1437474967": 148, + "1437474968": 148, + "1437474969": 148, + "1437474970": 148, + "1437474971": 148, + "1437474972": 147, + "1437474973": 147, + "1437474974": 147, + "1437474975": 146, + "1437474976": 146, + "1437474977": 145, + "1437474978": 145, + "1437474979": 145, + "1437474980": 145, + "1437474981": 145, + "1437474982": 144, + "1437474983": 144, + "1437474984": 143, + "1437474985": 143, + "1437474986": 143, + "1437474987": 143, + "1437474988": 143, + "1437474989": 143, + "1437474990": 142, + "1437474992": 142, + "1437474993": 142, + "1437474994": 141, + "1437474995": 141, + "1437474996": 140, + "1437474997": 140, + "1437474998": 140, + "1437474999": 140, + "1437475000": 140, + "1437475001": 140, + "1437475002": 140, + "1437475003": 140, + "1437475004": 141, + "1437475005": 141, + "1437475006": 141, + "1437475007": 141, + "1437475008": 142, + "1437475009": 142, + "1437475010": 142, + "1437475012": 142, + "1437475013": 142, + "1437475014": 141, + "1437475015": 141, + "1437475016": 141, + "1437475017": 141, + "1437475018": 141, + "1437475019": 142, + "1437475020": 142, + "1437475021": 142, + "1437475022": 143, + "1437475023": 143, + "1437475024": 143, + "1437475025": 143, + "1437475026": 143, + "1437475027": 143, + "1437475029": 142, + "1437475030": 142, + "1437475031": 141, + "1437475032": 140, + "1437475033": 141, + "1437475034": 141, + "1437475035": 141, + "1437475036": 142, + "1437475037": 143, + "1437475038": 144, + "1437475039": 145, + "1437475040": 145, + "1437475041": 145, + "1437475042": 146, + "1437475043": 146, + "1437475044": 146, + "1437475045": 146, + "1437475046": 146, + "1437475047": 147, + "1437475048": 147, + "1437475049": 147, + "1437475050": 147, + "1437475051": 147, + "1437475052": 147, + "1437475054": 147, + "1437475055": 147, + "1437475056": 147, + "1437475057": 147, + "1437475058": 147, + "1437475059": 147, + "1437475060": 147, + "1437475061": 147, + "1437475062": 147, + "1437475063": 147, + "1437475064": 146, + "1437475065": 146, + "1437475066": 145, + "1437475067": 145, + "1437475068": 145, + "1437475069": 145, + "1437475070": 145, + "1437475071": 145, + "1437475072": 145, + "1437475073": 146, + "1437475074": 146, + "1437475075": 146, + "1437475076": 147, + "1437475077": 147, + "1437475078": 147, + "1437475079": 146, + "1437475080": 146, + "1437475081": 146, + "1437475083": 147, + "1437475084": 147, + "1437475085": 147, + "1437475086": 148, + "1437475087": 148, + "1437475088": 148, + "1437475089": 148, + "1437475090": 149, + "1437475091": 149, + "1437475092": 149, + "1437475093": 148, + "1437475094": 148, + "1437475095": 148, + "1437475096": 148, + "1437475097": 149, + "1437475098": 149, + "1437475099": 149, + "1437475100": 148, + "1437475101": 148, + "1437475102": 149, + "1437475103": 148, + "1437475104": 149, + "1437475105": 149, + "1437475106": 149, + "1437475107": 149, + "1437475108": 149, + "1437475109": 149, + "1437475110": 149, + "1437475112": 150, + "1437475113": 149, + "1437475114": 149, + "1437475115": 150, + "1437475116": 150, + "1437475117": 150, + "1437475118": 150, + "1437475119": 150, + "1437475120": 150, + "1437475121": 150, + "1437475122": 150, + "1437475123": 150, + "1437475124": 150, + "1437475125": 149, + "1437475126": 150, + "1437475127": 150, + "1437475128": 150, + "1437475129": 150, + "1437475130": 151, + "1437475131": 151, + "1437475132": 151, + "1437475133": 151, + "1437475134": 151, + "1437475135": 151, + "1437475136": 151, + "1437475137": 151, + "1437475138": 151, + "1437475139": 151, + "1437475140": 150, + "1437475141": 150, + "1437475142": 150, + "1437475143": 149, + "1437475145": 149, + "1437475146": 149, + "1437475147": 149, + "1437475148": 149, + "1437475149": 149, + "1437475150": 149, + "1437475151": 149, + "1437475152": 150, + "1437475153": 150, + "1437475154": 150, + "1437475155": 151, + "1437475156": 151, + "1437475157": 152, + "1437475158": 152, + "1437475159": 153, + "1437475160": 153, + "1437475161": 154, + "1437475162": 154, + "1437475163": 154, + "1437475164": 154, + "1437475165": 153, + "1437475166": 153, + "1437475167": 153, + "1437475168": 153, + "1437475169": 153, + "1437475170": 153, + "1437475171": 153, + "1437475173": 153, + "1437475174": 153, + "1437475175": 153, + "1437475176": 153, + "1437475177": 153, + "1437475178": 153, + "1437475179": 153, + "1437475180": 153, + "1437475181": 153, + "1437475182": 153, + "1437475183": 154, + "1437475184": 154, + "1437475185": 155, + "1437475186": 155, + "1437475187": 155, + "1437475188": 155, + "1437475189": 155, + "1437475190": 156, + "1437475191": 156, + "1437475192": 156, + "1437475193": 156, + "1437475194": 156, + "1437475195": 157, + "1437475196": 156, + "1437475197": 156, + "1437475198": 156, + "1437475200": 156, + "1437475201": 156, + "1437475202": 156, + "1437475203": 156, + "1437475204": 155, + "1437475205": 155, + "1437475206": 155, + "1437475207": 155, + "1437475208": 155, + "1437475209": 155, + "1437475210": 155, + "1437475211": 155, + "1437475212": 155, + "1437475213": 155, + "1437475214": 155, + "1437475215": 155, + "1437475216": 156, + "1437475217": 156, + "1437475218": 155, + "1437475219": 155, + "1437475220": 156, + "1437475221": 156, + "1437475222": 156, + "1437475223": 156, + "1437475224": 155, + "1437475225": 155, + "1437475226": 155, + "1437475227": 155, + "1437475228": 156, + "1437475230": 156, + "1437475231": 156, + "1437475232": 156, + "1437475233": 156, + "1437475234": 156, + "1437475235": 157, + "1437475236": 157, + "1437475237": 157, + "1437475238": 158, + "1437475239": 157, + "1437475240": 158, + "1437475241": 157, + "1437475242": 157, + "1437475243": 157, + "1437475244": 157, + "1437475245": 157, + "1437475246": 158, + "1437475247": 158, + "1437475248": 158, + "1437475249": 157, + "1437475250": 157, + "1437475251": 157, + "1437475252": 158, + "1437475253": 158, + "1437475254": 158, + "1437475255": 157, + "1437475256": 158, + "1437475257": 157, + "1437475258": 158, + "1437475259": 157, + "1437475260": 157, + "1437475261": 157, + "1437475262": 157, + "1437475263": 157, + "1437475264": 158, + "1437475265": 157, + "1437475266": 157, + "1437475267": 157, + "1437475269": 156, + "1437475270": 156, + "1437475271": 155, + "1437475272": 155, + "1437475273": 154, + "1437475274": 154, + "1437475275": 154, + "1437475276": 154, + "1437475277": 153, + "1437475278": 153, + "1437475279": 153, + "1437475280": 153, + "1437475281": 153, + "1437475282": 153, + "1437475283": 153, + "1437475284": 153, + "1437475285": 153, + "1437475286": 152, + "1437475287": 152, + "1437475288": 152, + "1437475289": 152, + "1437475290": 151, + "1437475291": 151, + "1437475292": 151, + "1437475293": 151, + "1437475294": 151, + "1437475295": 150, + "1437475296": 150, + "1437475297": 150, + "1437475298": 150, + "1437475299": 149, + "1437475300": 150, + "1437475301": 150, + "1437475302": 150, + "1437475303": 149, + "1437475304": 149, + "1437475305": 149, + "1437475306": 150, + "1437475308": 150, + "1437475309": 150, + "1437475310": 150, + "1437475311": 150, + "1437475312": 149, + "1437475313": 149, + "1437475314": 149, + "1437475315": 149, + "1437475316": 149, + "1437475317": 149, + "1437475318": 149, + "1437475319": 149, + "1437475320": 149, + "1437475321": 149, + "1437475322": 149, + "1437475323": 148, + "1437475324": 148, + "1437475325": 148, + "1437475326": 148, + "1437475327": 148, + "1437475328": 148, + "1437475329": 148, + "1437475330": 148, + "1437475331": 147, + "1437475332": 147, + "1437475333": 148, + "1437475334": 147, + "1437475335": 147, + "1437475336": 147, + "1437475337": 147, + "1437475338": 147, + "1437475339": 147, + "1437475340": 147, + "1437475342": 147, + "1437475343": 147, + "1437475344": 148, + "1437475345": 148, + "1437475346": 148, + "1437475347": 148, + "1437475348": 148, + "1437475349": 149, + "1437475350": 149, + "1437475351": 149, + "1437475352": 149, + "1437475353": 149, + "1437475354": 149, + "1437475355": 149, + "1437475356": 150, + "1437475357": 150, + "1437475358": 150, + "1437475359": 150, + "1437475360": 150, + "1437475361": 151, + "1437475362": 151, + "1437475363": 151, + "1437475364": 152, + "1437475365": 152, + "1437475366": 152, + "1437475367": 152, + "1437475368": 152, + "1437475369": 152, + "1437475371": 153, + "1437475372": 153, + "1437475373": 153, + "1437475374": 154, + "1437475375": 154, + "1437475376": 155, + "1437475377": 156, + "1437475378": 157, + "1437475379": 158, + "1437475380": 158, + "1437475381": 159, + "1437475382": 160, + "1437475383": 160, + "1437475384": 161, + "1437475385": 161, + "1437475386": 161, + "1437475387": 161, + "1437475388": 161, + "1437475389": 161, + "1437475390": 161, + "1437475391": 160, + "1437475392": 160, + "1437475393": 160, + "1437475394": 159, + "1437475395": 159, + "1437475396": 158, + "1437475397": 157, + "1437475398": 157, + "1437475400": 156, + "1437475401": 155, + "1437475402": 154, + "1437475403": 153, + "1437475404": 153, + "1437475405": 152, + "1437475406": 151, + "1437475407": 150, + "1437475408": 149, + "1437475409": 148, + "1437475410": 147, + "1437475411": 147, + "1437475412": 146, + "1437475413": 146, + "1437475414": 145, + "1437475415": 145, + "1437475416": 144, + "1437475417": 144, + "1437475418": 144, + "1437475419": 143, + "1437475420": 143, + "1437475421": 142, + "1437475422": 141, + "1437475423": 141, + "1437475424": 141, + "1437475425": 141, + "1437475426": 141, + "1437475427": 141, + "1437475428": 141, + "1437475429": 140, + "1437475430": 140, + "1437475431": 140, + "1437475433": 139, + "1437475434": 138, + "1437475435": 138, + "1437475436": 137, + "1437475437": 137, + "1437475438": 136, + "1437475439": 135, + "1437475440": 134, + "1437475441": 134, + "1437475442": 133, + "1437475443": 132, + "1437475444": 131, + "1437475445": 130, + "1437475446": 130, + "1437475447": 128, + "1437475448": 128, + "1437475449": 127, + "1437475450": 126, + "1437475451": 125, + "1437475452": 124, + "1437475453": 124, + "1437475454": 123, + "1437475455": 122, + "1437475456": 122, + "1437475457": 122, + "1437475458": 122, + "1437475459": 122, + "1437475460": 123, + "1437475461": 122, + "1437475462": 123, + "1437475463": 123, + "1437475464": 122, + "1437475466": 122, + "1437475467": 122, + "1437475468": 122, + "1437475469": 121, + "1437475470": 119, + "1437475471": 118, + "1437475472": 116, + "1437475473": 115, + "1437475474": 114, + "1437475475": 114, + "1437475476": 113, + "1437475477": 112, + "1437475478": 112, + "1437475479": 112, + "1437475480": 112, + "1437475481": 113, + "1437475482": 114, + "1437475483": 114, + "1437475484": 113, + "1437475485": 112, + "1437475486": 112, + "1437475487": 111, + "1437475488": 110, + "1437475489": 110, + "1437475490": 110, + "1437475491": 109, + "1437475492": 109, + "1437475493": 108, + "1437475494": 108, + "1437475495": 109, + "1437475496": 109, + "1437475497": 110, + "1437475498": 110, + "1437475499": 110, + "1437475500": 110, + "1437475501": 110, + "1437475502": 109, + "1437475503": 110, + "1437475504": 110, + "1437475505": 110, + "1437475506": 110, + "1437475507": 110, + "1437475508": 111, + "1437475510": 111, + "1437475511": 112, + "1437475512": 112, + "1437475513": 113, + "1437475514": 113, + "1437475515": 113, + "1437475516": 114, + "1437475517": 114, + "1437475518": 114, + "1437475519": 114, + "1437475520": 115, + "1437475521": 115, + "1437475522": 115, + "1437475523": 115, + "1437475524": 115, + "1437475525": 116, + "1437475526": 116, + "1437475527": 117, + "1437475528": 117, + "1437475529": 118, + "1437475530": 118, + "1437475531": 118, + "1437475532": 118, + "1437475533": 119, + "1437475534": 119, + "1437475535": 119, + "1437475536": 120, + "1437475537": 120, + "1437475538": 120, + "1437475539": 120, + "1437475540": 120, + "1437475541": 119, + "1437475542": 120, + "1437475543": 120, + "1437475544": 120, + "1437475545": 120, + "1437475546": 121, + "1437475547": 121, + "1437475548": 121, + "1437475549": 121, + "1437475551": 121, + "1437475552": 121, + "1437475553": 121, + "1437475554": 121, + "1437475555": 120, + "1437475556": 120, + "1437475557": 121, + "1437475558": 120, + "1437475559": 121, + "1437475560": 120, + "1437475561": 120, + "1437475562": 120, + "1437475563": 120, + "1437475564": 120, + "1437475565": 119, + "1437475566": 119, + "1437475567": 118, + "1437475568": 118, + "1437475569": 118, + "1437475570": 118, + "1437475571": 118, + "1437475572": 119, + "1437475573": 119, + "1437475574": 118, + "1437475575": 118, + "1437475576": 118, + "1437475577": 117, + "1437475578": 117, + "1437475580": 117, + "1437475581": 117, + "1437475582": 116, + "1437475583": 116, + "1437475584": 117, + "1437475585": 116, + "1437475586": 116, + "1437475587": 116, + "1437475588": 116, + "1437475589": 115, + "1437475590": 115, + "1437475591": 115, + "1437475592": 115, + "1437475593": 115, + "1437475594": 114, + "1437475595": 114, + "1437475596": 113, + "1437475597": 112, + "1437475598": 111, + "1437475599": 110, + "1437475600": 109, + "1437475601": 108, + "1437475602": 107, + "1437475603": 106, + "1437475604": 105, + "1437475605": 105, + "1437475606": 106, + "1437475607": 106, + "1437475608": 107, + "1437475610": 107, + "1437475611": 107, + "1437475612": 107, + "1437475613": 107, + "1437475614": 108, + "1437475615": 108, + "1437475616": 108, + "1437475617": 108, + "1437475618": 108, + "1437475619": 108, + "1437475620": 108, + "1437475621": 109, + "1437475622": 110, + "1437475623": 110, + "1437475624": 110, + "1437475625": 110, + "1437475626": 110, + "1437475627": 110, + "1437475628": 110, + "1437475629": 110, + "1437475630": 109, + "1437475631": 110, + "1437475632": 109, + "1437475633": 110, + "1437475634": 110, + "1437475636": 110, + "1437475637": 110, + "1437475638": 110, + "1437475639": 110, + "1437475640": 111, + "1437475641": 111, + "1437475642": 111, + "1437475643": 111, + "1437475644": 111, + "1437475645": 111, + "1437475646": 111, + "1437475647": 111, + "1437475648": 111, + "1437475649": 111, + "1437475650": 111, + "1437475651": 110, + "1437475652": 111, + "1437475653": 111, + "1437475654": 111, + "1437475655": 111, + "1437475656": 111, + "1437475657": 111, + "1437475658": 111, + "1437475659": 111, + "1437475660": 112, + "1437475662": 112, + "1437475663": 112, + "1437475664": 112, + "1437475665": 113, + "1437475666": 114, + "1437475667": 115, + "1437475668": 115, + "1437475669": 115, + "1437475670": 116, + "1437475671": 116, + "1437475672": 116, + "1437475673": 116, + "1437475674": 116, + "1437475675": 116, + "1437475676": 117, + "1437475677": 117, + "1437475678": 117, + "1437475679": 117, + "1437475680": 117, + "1437475681": 117, + "1437475682": 116, + "1437475683": 116, + "1437475684": 116, + "1437475685": 116, + "1437475686": 116, + "1437475687": 116, + "1437475688": 116, + "1437475689": 117, + "1437475690": 116, + "1437475691": 117, + "1437475693": 117, + "1437475694": 117, + "1437475695": 117, + "1437475696": 116, + "1437475697": 116, + "1437475698": 116, + "1437475699": 116, + "1437475700": 116, + "1437475701": 115, + "1437475702": 115, + "1437475703": 115, + "1437475704": 114, + "1437475705": 114, + "1437475706": 114, + "1437475707": 114, + "1437475708": 115, + "1437475709": 116, + "1437475710": 117, + "1437475711": 117, + "1437475712": 117, + "1437475713": 116, + "1437475714": 116, + "1437475715": 116, + "1437475716": 116, + "1437475717": 116, + "1437475718": 116, + "1437475719": 117, + "1437475720": 117, + "1437475721": 117, + "1437475722": 118, + "1437475724": 118, + "1437475725": 118, + "1437475726": 118, + "1437475727": 118, + "1437475728": 118, + "1437475729": 119, + "1437475730": 119, + "1437475731": 119, + "1437475732": 119, + "1437475733": 119, + "1437475734": 120, + "1437475735": 120, + "1437475736": 120, + "1437475737": 120, + "1437475738": 120, + "1437475739": 120, + "1437475740": 120, + "1437475741": 120, + "1437475742": 121, + "1437475743": 121, + "1437475744": 121, + "1437475745": 121, + "1437475746": 122, + "1437475747": 122, + "1437475748": 122, + "1437475749": 122, + "1437475750": 123, + "1437475751": 123, + "1437475752": 124, + "1437475753": 124, + "1437475754": 124, + "1437475755": 124, + "1437475756": 124, + "1437475758": 124, + "1437475759": 124, + "1437475760": 124, + "1437475761": 124, + "1437475762": 124, + "1437475763": 123, + "1437475764": 123, + "1437475765": 123, + "1437475766": 123, + "1437475767": 123, + "1437475768": 122, + "1437475769": 123, + "1437475770": 122, + "1437475771": 122, + "1437475772": 122, + "1437475773": 122, + "1437475774": 122, + "1437475775": 121, + "1437475776": 121, + "1437475777": 121, + "1437475778": 121, + "1437475779": 121, + "1437475780": 122, + "1437475781": 121, + "1437475782": 121, + "1437475783": 121, + "1437475784": 121, + "1437475785": 121, + "1437475786": 120, + "1437475787": 121, + "1437475788": 121, + "1437475789": 121, + "1437475791": 121, + "1437475792": 121, + "1437475793": 121, + "1437475794": 121, + "1437475795": 120, + "1437475796": 120, + "1437475797": 120, + "1437475798": 121, + "1437475799": 121, + "1437475800": 121, + "1437475801": 121, + "1437475802": 122, + "1437475803": 122, + "1437475804": 122, + "1437475805": 122, + "1437475806": 122, + "1437475807": 122, + "1437475808": 122, + "1437475809": 122, + "1437475810": 122, + "1437475811": 121, + "1437475812": 121, + "1437475813": 122, + "1437475814": 122, + "1437475815": 122, + "1437475816": 122, + "1437475817": 122, + "1437475818": 122, + "1437475819": 122, + "1437475821": 122, + "1437475822": 122, + "1437475823": 122, + "1437475824": 122, + "1437475825": 122, + "1437475826": 122, + "1437475827": 122, + "1437475828": 122, + "1437475829": 122, + "1437475830": 121, + "1437475831": 121, + "1437475832": 121, + "1437475833": 121, + "1437475834": 121, + "1437475835": 121, + "1437475836": 120, + "1437475837": 121, + "1437475838": 120, + "1437475839": 120, + "1437475840": 120, + "1437475841": 121, + "1437475842": 121, + "1437475843": 121, + "1437475844": 121, + "1437475845": 121, + "1437475846": 121, + "1437475847": 121, + "1437475848": 121, + "1437475849": 122, + "1437475850": 122, + "1437475852": 121, + "1437475853": 121, + "1437475854": 121, + "1437475855": 121, + "1437475856": 121, + "1437475857": 120, + "1437475858": 120, + "1437475859": 120, + "1437475860": 120, + "1437475861": 119, + "1437475862": 119, + "1437475863": 119, + "1437475864": 119, + "1437475865": 119, + "1437475866": 118, + "1437475867": 118, + "1437475868": 118, + "1437475869": 118, + "1437475870": 118, + "1437475871": 118, + "1437475872": 117, + "1437475873": 117, + "1437475874": 117, + "1437475875": 117, + "1437475876": 116, + "1437475878": 116, + "1437475879": 117, + "1437475880": 117, + "1437475881": 117, + "1437475882": 117, + "1437475883": 117, + "1437475884": 118, + "1437475885": 118, + "1437475886": 118, + "1437475887": 118, + "1437475888": 118, + "1437475889": 118, + "1437475890": 118, + "1437475891": 118, + "1437475892": 118, + "1437475893": 118, + "1437475894": 118, + "1437475895": 119, + "1437475896": 119, + "1437475897": 119, + "1437475898": 119, + "1437475899": 120, + "1437475900": 120, + "1437475901": 120, + "1437475902": 120, + "1437475903": 120, + "1437475905": 120, + "1437475906": 121, + "1437475907": 121, + "1437475908": 121, + "1437475909": 122, + "1437475910": 122, + "1437475911": 122, + "1437475912": 122, + "1437475913": 122, + "1437475914": 122, + "1437475915": 121, + "1437475916": 121, + "1437475917": 122, + "1437475918": 122, + "1437475919": 122, + "1437475920": 122, + "1437475921": 122, + "1437475922": 122, + "1437475923": 122, + "1437475924": 122, + "1437475925": 121, + "1437475926": 121, + "1437475927": 121, + "1437475928": 121, + "1437475929": 122, + "1437475930": 122, + "1437475931": 123, + "1437475932": 124, + "1437475933": 124, + "1437475934": 125, + "1437475935": 125, + "1437475936": 125, + "1437475938": 125, + "1437475939": 126, + "1437475940": 126, + "1437475941": 126, + "1437475942": 126, + "1437475943": 127, + "1437475944": 127, + "1437475945": 127, + "1437475946": 127, + "1437475947": 128, + "1437475948": 128, + "1437475949": 129, + "1437475950": 128, + "1437475951": 128, + "1437475952": 128, + "1437475953": 127, + "1437475954": 126, + "1437475955": 126, + "1437475956": 125, + "1437475957": 124, + "1437475958": 123, + "1437475959": 123, + "1437475960": 122, + "1437475961": 122, + "1437475962": 122, + "1437475963": 122, + "1437475964": 123, + "1437475965": 122, + "1437475967": 122, + "1437475968": 121, + "1437475969": 120, + "1437475970": 119, + "1437475971": 118, + "1437475972": 117, + "1437475973": 117, + "1437475974": 117, + "1437475975": 118, + "1437475976": 118, + "1437475977": 118, + "1437475978": 118, + "1437475979": 117, + "1437475980": 117, + "1437475981": 117, + "1437475982": 117, + "1437475983": 117, + "1437475984": 116, + "1437475985": 116, + "1437475986": 116, + "1437475987": 117, + "1437475988": 117, + "1437475989": 117, + "1437475990": 117, + "1437475991": 117, + "1437475992": 117, + "1437475993": 117, + "1437475994": 117, + "1437475995": 117, + "1437475997": 117, + "1437475998": 118, + "1437475999": 118, + "1437476000": 118, + "1437476001": 117, + "1437476002": 117, + "1437476003": 117, + "1437476004": 117, + "1437476005": 117, + "1437476006": 117, + "1437476007": 117, + "1437476008": 117, + "1437476009": 117, + "1437476010": 117, + "1437476011": 117, + "1437476012": 116, + "1437476013": 116, + "1437476014": 117, + "1437476015": 117, + "1437476016": 117, + "1437476017": 117, + "1437476019": 116, + "1437476020": 116, + "1437476021": 116, + "1437476022": 116, + "1437476023": 116, + "1437476024": 116, + "1437476025": 116, + "1437476026": 116, + "1437476027": 115, + "1437476028": 116, + "1437476029": 115, + "1437476030": 116, + "1437476031": 115, + "1437476032": 116, + "1437476033": 116, + "1437476034": 116, + "1437476035": 116, + "1437476036": 116, + "1437476037": 116, + "1437476038": 116, + "1437476039": 115, + "1437476040": 116, + "1437476041": 115, + "1437476042": 115, + "1437476043": 116, + "1437476044": 116, + "1437476045": 116, + "1437476047": 116, + "1437476048": 116, + "1437476049": 116, + "1437476050": 116, + "1437476051": 116, + "1437476052": 117, + "1437476053": 118, + "1437476054": 118, + "1437476055": 118, + "1437476056": 119, + "1437476057": 119, + "1437476058": 119, + "1437476059": 119, + "1437476060": 118, + "1437476061": 118, + "1437476062": 118, + "1437476063": 118, + "1437476064": 118, + "1437476065": 118, + "1437476066": 118, + "1437476067": 117, + "1437476068": 117, + "1437476069": 117, + "1437476070": 117, + "1437476071": 116, + "1437476072": 116, + "1437476073": 116, + "1437476074": 116, + "1437476075": 115, + "1437476076": 115, + "1437476077": 115, + "1437476079": 115, + "1437476080": 115, + "1437476081": 115, + "1437476082": 115, + "1437476083": 115, + "1437476084": 115, + "1437476085": 115, + "1437476086": 116, + "1437476087": 116, + "1437476088": 115, + "1437476089": 115, + "1437476090": 115, + "1437476091": 115, + "1437476092": 116, + "1437476093": 116, + "1437476094": 116, + "1437476095": 116, + "1437476096": 116, + "1437476097": 116, + "1437476098": 116, + "1437476099": 116, + "1437476100": 116, + "1437476101": 115, + "1437476102": 115, + "1437476103": 114, + "1437476104": 114, + "1437476105": 114, + "1437476106": 114, + "1437476107": 114, + "1437476108": 114, + "1437476109": 114, + "1437476110": 114, + "1437476112": 114, + "1437476113": 114, + "1437476114": 114, + "1437476115": 114, + "1437476116": 115, + "1437476117": 116, + "1437476118": 116, + "1437476119": 116, + "1437476120": 117, + "1437476121": 117, + "1437476122": 117, + "1437476123": 117, + "1437476124": 118, + "1437476125": 118, + "1437476126": 118, + "1437476127": 118, + "1437476128": 117, + "1437476129": 117, + "1437476130": 117, + "1437476131": 116, + "1437476132": 116, + "1437476133": 116, + "1437476134": 116, + "1437476135": 115, + "1437476136": 115, + "1437476137": 115, + "1437476138": 115, + "1437476139": 115, + "1437476140": 115, + "1437476141": 115, + "1437476142": 115, + "1437476143": 115, + "1437476144": 115, + "1437476146": 114, + "1437476147": 113, + "1437476148": 113, + "1437476149": 113, + "1437476150": 113, + "1437476151": 112, + "1437476152": 112, + "1437476153": 111, + "1437476154": 111, + "1437476155": 111, + "1437476156": 111, + "1437476157": 111, + "1437476158": 111, + "1437476159": 111, + "1437476160": 112, + "1437476161": 112, + "1437476162": 112, + "1437476163": 112, + "1437476164": 113, + "1437476165": 113, + "1437476166": 113, + "1437476167": 113, + "1437476168": 113, + "1437476169": 113, + "1437476170": 113, + "1437476171": 113, + "1437476172": 113, + "1437476173": 114, + "1437476174": 114, + "1437476175": 114, + "1437476176": 115, + "1437476177": 114, + "1437476179": 114, + "1437476180": 114, + "1437476181": 113, + "1437476182": 114, + "1437476183": 113, + "1437476184": 113, + "1437476185": 113, + "1437476186": 113, + "1437476187": 112, + "1437476188": 112, + "1437476189": 112, + "1437476190": 113, + "1437476191": 112, + "1437476192": 112, + "1437476193": 112, + "1437476194": 112, + "1437476195": 112, + "1437476196": 112, + "1437476197": 112, + "1437476198": 112, + "1437476199": 112, + "1437476200": 112, + "1437476201": 112, + "1437476202": 112, + "1437476203": 112, + "1437476204": 112, + "1437476205": 112, + "1437476206": 113, + "1437476207": 113, + "1437476208": 113, + "1437476209": 114, + "1437476211": 114, + "1437476212": 114, + "1437476213": 114, + "1437476214": 114, + "1437476215": 114, + "1437476216": 114, + "1437476217": 114, + "1437476218": 114, + "1437476219": 114, + "1437476220": 114, + "1437476221": 114, + "1437476222": 114, + "1437476223": 114, + "1437476224": 114, + "1437476225": 113, + "1437476226": 114, + "1437476227": 114, + "1437476228": 113, + "1437476229": 114, + "1437476230": 114, + "1437476231": 114, + "1437476232": 115, + "1437476233": 115, + "1437476234": 115, + "1437476235": 115, + "1437476236": 116, + "1437476237": 116, + "1437476238": 116, + "1437476239": 116, + "1437476240": 116, + "1437476241": 116, + "1437476242": 116, + "1437476243": 116, + "1437476244": 116, + "1437476245": 115, + "1437476246": 115, + "1437476248": 115, + "1437476249": 115, + "1437476250": 114, + "1437476251": 114, + "1437476252": 114, + "1437476253": 113, + "1437476254": 113, + "1437476255": 112, + "1437476256": 112, + "1437476257": 111, + "1437476258": 111, + "1437476259": 110, + "1437476260": 110, + "1437476261": 110, + "1437476262": 110, + "1437476263": 111, + "1437476264": 111, + "1437476265": 111, + "1437476266": 111, + "1437476267": 111, + "1437476268": 111, + "1437476269": 110, + "1437476270": 111, + "1437476271": 110, + "1437476272": 111, + "1437476274": 111, + "1437476275": 111, + "1437476276": 111, + "1437476277": 110, + "1437476278": 109, + "1437476279": 108, + "1437476280": 107, + "1437476281": 107, + "1437476282": 106, + "1437476283": 106, + "1437476284": 105, + "1437476285": 105, + "1437476286": 105, + "1437476287": 104, + "1437476288": 103, + "1437476289": 103, + "1437476290": 103, + "1437476291": 103, + "1437476292": 102, + "1437476293": 103, + "1437476295": 103, + "1437476296": 103, + "1437476297": 102, + "1437476298": 102, + "1437476299": 101, + "1437476300": 101, + "1437476301": 100, + "1437476302": 100, + "1437476303": 100, + "1437476304": 100, + "1437476305": 101, + "1437476306": 101, + "1437476307": 100, + "1437476308": 100, + "1437476309": 99, + "1437476310": 98, + "1437476311": 97, + "1437476312": 96, + "1437476313": 97, + "1437476314": 96, + "1437476315": 97, + "1437476316": 96, + "1437476317": 96, + "1437476318": 96, + "1437476319": 96, + "1437476320": 96, + "1437476321": 96, + "1437476323": 96, + "1437476324": 97, + "1437476325": 97, + "1437476326": 97, + "1437476327": 97, + "1437476328": 97, + "1437476329": 97, + "1437476330": 98, + "1437476331": 98, + "1437476332": 98, + "1437476333": 98, + "1437476334": 98, + "1437476335": 98, + "1437476338": 97, + "1437476339": 97, + "1437476340": 97, + "1437476341": 96, + "1437476342": 97, + "1437476343": 97, + "1437476344": 98, + "1437476345": 98, + "1437476346": 98, + "1437476347": 97, + "1437476348": 98, + "1437476349": 97, + "1437476350": 97, + "1437476351": 97, + "1437476352": 97, + "1437476353": 98, + "1437476354": 98, + "1437476355": 98, + "1437476356": 99, + "1437476357": 99, + "1437476358": 100, + "1437476360": 100, + "1437476361": 101, + "1437476362": 101, + "1437476363": 102, + "1437476364": 102, + "1437476365": 102, + "1437476366": 101, + "1437476367": 101, + "1437476368": 101, + "1437476369": 100, + "1437476370": 100, + "1437476371": 99, + "1437476372": 99, + "1437476373": 99, + "1437476374": 99, + "1437476375": 98, + "1437476376": 98, + "1437476377": 98, + "1437476378": 98, + "1437476379": 97, + "1437476380": 98, + "1437476381": 98, + "1437476382": 99, + "1437476383": 99, + "1437476384": 99, + "1437476385": 99, + "1437476386": 98, + "1437476387": 97, + "1437476389": 97, + "1437476390": 97, + "1437476391": 97, + "1437476392": 97, + "1437476393": 98, + "1437476394": 98, + "1437476395": 99, + "1437476396": 99, + "1437476397": 99, + "1437476398": 99, + "1437476399": 99, + "1437476400": 100, + "1437476401": 100, + "1437476402": 100, + "1437476403": 100, + "1437476404": 101, + "1437476405": 101, + "1437476406": 101, + "1437476407": 101, + "1437476408": 101, + "1437476410": 102, + "1437476411": 101, + "1437476412": 102, + "1437476413": 102, + "1437476414": 102, + "1437476415": 102, + "1437476416": 103, + "1437476417": 104, + "1437476418": 104, + "1437476419": 105, + "1437476420": 106, + "1437476421": 106, + "1437476422": 105, + "1437476423": 105, + "1437476424": 105, + "1437476425": 104, + "1437476426": 104, + "1437476427": 104, + "1437476428": 104, + "1437476429": 104, + "1437476430": 104, + "1437476431": 104, + "1437476432": 103, + "1437476433": 103, + "1437476434": 102, + "1437476435": 102, + "1437476436": 102, + "1437476437": 102, + "1437476438": 102, + "1437476439": 103, + "1437476441": 102, + "1437476442": 102, + "1437476443": 102, + "1437476444": 102, + "1437476445": 102, + "1437476446": 104, + "1437476447": 105, + "1437476448": 107, + "1437476449": 109, + "1437476450": 111, + "1437476451": 113, + "1437476452": 115, + "1437476453": 118, + "1437476454": 119, + "1437476455": 120, + "1437476456": 121, + "1437476457": 121, + "1437476458": 121, + "1437476459": 121, + "1437476460": 121, + "1437476461": 122, + "1437476462": 122, + "1437476463": 122, + "1437476464": 122, + "1437476465": 123, + "1437476467": 124, + "1437476468": 125, + "1437476469": 125, + "1437476470": 126, + "1437476471": 128, + "1437476472": 129, + "1437476473": 130, + "1437476474": 131, + "1437476475": 132, + "1437476476": 133, + "1437476477": 134, + "1437476478": 135, + "1437476479": 135, + "1437476480": 137, + "1437476481": 137, + "1437476482": 138, + "1437476483": 138, + "1437476484": 139, + "1437476485": 139, + "1437476486": 139, + "1437476487": 139, + "1437476488": 140, + "1437476490": 140, + "1437476491": 141, + "1437476492": 142, + "1437476493": 143, + "1437476494": 144, + "1437476495": 145, + "1437476496": 146, + "1437476497": 147, + "1437476498": 148, + "1437476499": 148, + "1437476500": 149, + "1437476501": 150, + "1437476502": 150, + "1437476503": 152, + "1437476504": 152, + "1437476505": 153, + "1437476506": 153, + "1437476507": 154, + "1437476508": 155, + "1437476509": 155, + "1437476510": 156, + "1437476511": 156, + "1437476512": 156, + "1437476513": 157, + "1437476514": 157, + "1437476515": 157, + "1437476516": 157, + "1437476517": 157, + "1437476518": 157, + "1437476519": 157, + "1437476521": 158, + "1437476522": 158, + "1437476523": 159, + "1437476524": 159, + "1437476525": 160, + "1437476526": 160, + "1437476527": 161, + "1437476528": 162, + "1437476529": 163, + "1437476530": 164, + "1437476531": 164, + "1437476532": 165, + "1437476533": 166, + "1437476534": 167, + "1437476535": 167, + "1437476536": 168, + "1437476537": 169, + "1437476538": 169, + "1437476539": 170, + "1437476540": 171, + "1437476541": 172, + "1437476542": 172, + "1437476543": 173, + "1437476544": 173, + "1437476545": 174, + "1437476547": 174, + "1437476548": 174, + "1437476549": 173, + "1437476550": 173, + "1437476551": 173, + "1437476552": 172, + "1437476553": 171, + "1437476554": 170, + "1437476555": 169, + "1437476556": 169, + "1437476557": 169, + "1437476558": 168, + "1437476559": 168, + "1437476560": 167, + "1437476561": 167, + "1437476562": 167, + "1437476563": 167, + "1437476564": 166, + "1437476565": 166, + "1437476566": 166, + "1437476567": 166, + "1437476568": 166, + "1437476569": 165, + "1437476570": 165, + "1437476571": 165, + "1437476572": 164, + "1437476573": 164, + "1437476574": 164, + "1437476576": 164, + "1437476577": 164, + "1437476578": 163, + "1437476579": 163, + "1437476580": 163, + "1437476581": 163, + "1437476582": 163, + "1437476583": 162, + "1437476584": 161, + "1437476585": 161, + "1437476586": 160, + "1437476587": 160, + "1437476588": 160, + "1437476589": 159, + "1437476590": 159, + "1437476591": 158, + "1437476592": 158, + "1437476593": 158, + "1437476594": 158, + "1437476595": 157, + "1437476596": 157, + "1437476597": 157, + "1437476598": 156, + "1437476599": 156, + "1437476601": 156, + "1437476602": 156, + "1437476603": 156, + "1437476604": 156, + "1437476605": 156, + "1437476606": 156, + "1437476607": 156, + "1437476608": 156, + "1437476609": 156, + "1437476610": 156, + "1437476611": 157, + "1437476612": 157, + "1437476613": 157, + "1437476614": 156, + "1437476615": 157, + "1437476616": 157, + "1437476617": 157, + "1437476618": 157, + "1437476619": 157, + "1437476620": 158, + "1437476621": 158, + "1437476622": 157, + "1437476623": 157, + "1437476624": 157, + "1437476625": 157, + "1437476627": 157, + "1437476628": 157, + "1437476629": 158, + "1437476630": 158, + "1437476631": 158, + "1437476632": 158, + "1437476633": 158, + "1437476634": 158, + "1437476635": 158, + "1437476636": 158, + "1437476637": 158, + "1437476638": 159, + "1437476639": 159, + "1437476640": 159, + "1437476641": 159, + "1437476642": 159, + "1437476643": 160, + "1437476644": 160, + "1437476645": 160, + "1437476646": 160, + "1437476647": 160, + "1437476648": 160, + "1437476649": 160, + "1437476650": 160, + "1437476651": 161, + "1437476652": 160, + "1437476653": 161, + "1437476654": 161, + "1437476655": 161, + "1437476656": 161, + "1437476658": 162, + "1437476659": 162, + "1437476660": 162, + "1437476661": 162, + "1437476662": 162, + "1437476663": 162, + "1437476664": 163, + "1437476665": 163, + "1437476666": 164, + "1437476667": 164, + "1437476668": 165, + "1437476669": 165, + "1437476670": 165, + "1437476671": 166, + "1437476672": 166, + "1437476673": 167, + "1437476674": 167, + "1437476675": 168, + "1437476676": 168, + "1437476677": 169, + "1437476678": 169, + "1437476679": 170, + "1437476680": 170, + "1437476681": 170, + "1437476682": 171, + "1437476683": 171, + "1437476684": 172, + "1437476685": 172, + "1437476686": 172, + "1437476687": 173, + "1437476688": 173, + "1437476689": 173, + "1437476690": 173, + "1437476691": 173, + "1437476692": 173, + "1437476694": 173, + "1437476695": 173, + "1437476696": 174, + "1437476697": 174, + "1437476698": 174, + "1437476699": 174, + "1437476700": 174, + "1437476701": 174, + "1437476702": 174, + "1437476703": 174, + "1437476704": 174, + "1437476705": 174, + "1437476706": 173, + "1437476707": 173, + "1437476708": 173, + "1437476709": 172, + "1437476710": 172, + "1437476711": 172, + "1437476712": 172, + "1437476713": 172, + "1437476714": 172, + "1437476715": 172, + "1437476716": 172, + "1437476717": 172, + "1437476718": 171, + "1437476719": 171, + "1437476720": 172, + "1437476721": 172, + "1437476723": 171, + "1437476724": 172, + "1437476725": 172, + "1437476726": 172, + "1437476727": 172, + "1437476728": 173, + "1437476729": 173, + "1437476730": 173, + "1437476731": 174, + "1437476732": 174, + "1437476733": 174, + "1437476734": 174, + "1437476735": 175, + "1437476736": 175, + "1437476737": 175, + "1437476738": 175, + "1437476739": 175, + "1437476740": 176, + "1437476741": 175, + "1437476742": 175, + "1437476743": 175, + "1437476744": 175, + "1437476745": 175, + "1437476746": 175, + "1437476747": 175, + "1437476748": 175, + "1437476749": 175, + "1437476750": 175, + "1437476751": 175, + "1437476752": 174, + "1437476753": 174, + "1437476755": 174, + "1437476756": 174, + "1437476757": 173, + "1437476758": 173, + "1437476759": 172, + "1437476760": 172, + "1437476761": 171, + "1437476762": 171, + "1437476763": 171, + "1437476764": 170, + "1437476765": 170, + "1437476766": 170, + "1437476767": 169, + "1437476768": 169, + "1437476769": 169, + "1437476770": 169, + "1437476771": 168, + "1437476772": 168, + "1437476773": 167, + "1437476774": 167, + "1437476775": 167, + "1437476776": 167, + "1437476777": 167, + "1437476778": 167, + "1437476779": 166, + "1437476780": 166, + "1437476781": 166, + "1437476782": 166, + "1437476783": 166, + "1437476784": 166, + "1437476785": 166, + "1437476786": 165, + "1437476787": 166, + "1437476788": 166, + "1437476789": 166, + "1437476791": 166, + "1437476792": 167, + "1437476793": 167, + "1437476794": 168, + "1437476795": 168, + "1437476796": 168, + "1437476797": 168, + "1437476798": 169, + "1437476799": 169, + "1437476800": 168, + "1437476801": 168, + "1437476802": 168, + "1437476803": 168, + "1437476804": 168, + "1437476805": 168, + "1437476806": 167, + "1437476807": 167, + "1437476808": 167, + "1437476809": 167, + "1437476810": 166, + "1437476811": 166, + "1437476812": 165, + "1437476813": 165, + "1437476814": 164, + "1437476815": 164, + "1437476816": 163, + "1437476817": 164, + "1437476818": 163, + "1437476819": 163, + "1437476820": 163, + "1437476821": 163, + "1437476822": 163, + "1437476824": 163, + "1437476825": 163, + "1437476826": 163, + "1437476827": 162, + "1437476828": 162, + "1437476829": 161, + "1437476830": 161, + "1437476831": 160, + "1437476832": 159, + "1437476833": 159, + "1437476834": 158, + "1437476835": 158, + "1437476836": 157, + "1437476837": 157, + "1437476838": 157, + "1437476839": 156, + "1437476840": 156, + "1437476841": 156, + "1437476842": 157, + "1437476843": 157, + "1437476844": 157, + "1437476845": 157, + "1437476846": 157, + "1437476847": 157, + "1437476848": 157, + "1437476849": 157, + "1437476850": 157, + "1437476851": 158, + "1437476852": 158, + "1437476854": 158, + "1437476855": 158, + "1437476856": 158, + "1437476857": 159, + "1437476858": 159, + "1437476859": 159, + "1437476860": 159, + "1437476861": 159, + "1437476862": 160, + "1437476863": 160, + "1437476864": 160, + "1437476865": 160, + "1437476866": 160, + "1437476867": 160, + "1437476868": 160, + "1437476869": 160, + "1437476870": 160, + "1437476871": 160, + "1437476872": 160, + "1437476873": 160, + "1437476874": 160, + "1437476875": 160, + "1437476876": 160, + "1437476877": 160, + "1437476878": 160, + "1437476879": 160, + "1437476880": 160, + "1437476881": 160, + "1437476882": 160, + "1437476883": 161, + "1437476884": 160, + "1437476886": 161, + "1437476887": 161, + "1437476888": 160, + "1437476889": 161, + "1437476890": 160, + "1437476891": 160, + "1437476892": 161, + "1437476893": 160, + "1437476894": 160, + "1437476895": 160, + "1437476896": 160, + "1437476897": 160, + "1437476898": 160, + "1437476899": 160, + "1437476900": 159, + "1437476901": 159, + "1437476902": 159, + "1437476903": 159, + "1437476904": 158, + "1437476905": 158, + "1437476906": 159, + "1437476907": 158, + "1437476908": 159, + "1437476910": 158, + "1437476911": 159, + "1437476912": 159, + "1437476913": 159, + "1437476914": 159, + "1437476915": 158, + "1437476916": 158, + "1437476917": 158, + "1437476918": 158, + "1437476919": 158, + "1437476920": 158, + "1437476921": 157, + "1437476922": 157, + "1437476923": 157, + "1437476924": 156, + "1437476925": 156, + "1437476926": 156, + "1437476927": 156, + "1437476928": 156, + "1437476929": 156, + "1437476930": 156, + "1437476931": 156, + "1437476932": 157, + "1437476933": 157, + "1437476934": 157, + "1437476935": 157, + "1437476936": 157, + "1437476938": 157, + "1437476939": 157, + "1437476940": 157, + "1437476941": 156, + "1437476942": 156, + "1437476943": 156, + "1437476944": 155, + "1437476945": 155, + "1437476946": 154, + "1437476947": 154, + "1437476948": 154, + "1437476949": 154, + "1437476950": 153, + "1437476951": 153, + "1437476952": 153, + "1437476953": 152, + "1437476954": 152, + "1437476955": 151, + "1437476956": 151, + "1437476957": 151, + "1437476958": 150, + "1437476959": 150, + "1437476960": 150, + "1437476961": 150, + "1437476962": 149, + "1437476963": 149, + "1437476964": 149, + "1437476965": 149, + "1437476966": 149, + "1437476967": 149, + "1437476969": 148, + "1437476970": 149, + "1437476971": 149, + "1437476972": 149, + "1437476973": 148, + "1437476974": 148, + "1437476975": 148, + "1437476976": 148, + "1437476977": 149, + "1437476978": 148, + "1437476979": 148, + "1437476980": 148, + "1437476981": 148, + "1437476982": 148, + "1437476983": 148, + "1437476984": 148, + "1437476985": 148, + "1437476986": 148, + "1437476987": 148, + "1437476988": 149, + "1437476989": 148, + "1437476990": 148, + "1437476991": 148, + "1437476992": 148, + "1437476993": 148, + "1437476994": 148, + "1437476996": 147, + "1437476997": 147, + "1437476998": 147, + "1437476999": 147, + "1437477000": 147, + "1437477001": 147, + "1437477002": 147, + "1437477003": 147, + "1437477004": 146, + "1437477005": 146, + "1437477006": 146, + "1437477007": 147, + "1437477008": 147, + "1437477009": 147, + "1437477010": 147, + "1437477011": 147, + "1437477012": 147, + "1437477013": 147, + "1437477014": 147, + "1437477015": 147, + "1437477016": 148, + "1437477017": 148, + "1437477018": 148, + "1437477019": 148, + "1437477020": 148, + "1437477022": 149, + "1437477023": 149, + "1437477024": 150, + "1437477025": 150, + "1437477026": 151, + "1437477027": 151, + "1437477028": 151, + "1437477029": 152, + "1437477030": 152, + "1437477031": 152, + "1437477032": 152, + "1437477033": 152, + "1437477034": 153, + "1437477035": 152, + "1437477036": 153, + "1437477037": 153, + "1437477038": 153, + "1437477039": 153, + "1437477040": 154, + "1437477041": 154, + "1437477042": 154, + "1437477043": 155, + "1437477044": 155, + "1437477045": 155, + "1437477046": 156, + "1437477047": 156, + "1437477048": 156, + "1437477050": 157, + "1437477051": 158, + "1437477052": 158, + "1437477053": 158, + "1437477054": 158, + "1437477055": 159, + "1437477056": 159, + "1437477057": 159, + "1437477058": 159, + "1437477059": 159, + "1437477060": 159, + "1437477061": 159, + "1437477062": 159, + "1437477063": 159, + "1437477064": 160, + "1437477065": 161, + "1437477066": 161, + "1437477067": 162, + "1437477068": 162, + "1437477069": 162, + "1437477070": 162, + "1437477071": 162, + "1437477072": 162, + "1437477073": 162, + "1437477075": 162, + "1437477076": 162, + "1437477077": 162, + "1437477078": 163, + "1437477079": 162, + "1437477080": 162, + "1437477081": 162, + "1437477082": 163, + "1437477083": 163, + "1437477084": 163, + "1437477085": 163, + "1437477086": 163, + "1437477087": 163, + "1437477088": 163, + "1437477089": 163, + "1437477090": 164, + "1437477091": 164, + "1437477092": 164, + "1437477093": 165, + "1437477094": 165, + "1437477095": 164, + "1437477096": 165, + "1437477097": 164, + "1437477098": 164, + "1437477099": 164, + "1437477100": 164, + "1437477101": 164, + "1437477102": 164, + "1437477103": 164, + "1437477104": 165, + "1437477105": 164, + "1437477106": 164, + "1437477107": 164, + "1437477109": 164, + "1437477110": 164, + "1437477111": 163, + "1437477112": 164, + "1437477113": 164, + "1437477114": 164, + "1437477115": 163, + "1437477116": 163, + "1437477117": 163, + "1437477118": 163, + "1437477119": 163, + "1437477120": 163, + "1437477121": 164, + "1437477122": 164, + "1437477123": 164, + "1437477124": 164, + "1437477125": 165, + "1437477126": 165, + "1437477127": 165, + "1437477128": 166, + "1437477129": 166, + "1437477130": 167, + "1437477131": 167, + "1437477132": 167, + "1437477133": 167, + "1437477134": 168, + "1437477135": 168, + "1437477136": 169, + "1437477137": 168, + "1437477138": 169, + "1437477139": 169, + "1437477140": 169, + "1437477141": 169, + "1437477143": 169, + "1437477144": 169, + "1437477145": 168, + "1437477146": 168, + "1437477147": 169, + "1437477148": 169, + "1437477149": 169, + "1437477150": 169, + "1437477151": 169, + "1437477152": 169, + "1437477153": 169, + "1437477154": 170, + "1437477155": 170, + "1437477156": 170, + "1437477157": 170, + "1437477158": 170, + "1437477159": 170, + "1437477160": 170, + "1437477161": 170, + "1437477162": 170, + "1437477163": 170, + "1437477164": 170, + "1437477165": 170, + "1437477166": 170, + "1437477167": 170, + "1437477168": 170, + "1437477169": 170, + "1437477170": 170, + "1437477171": 170, + "1437477172": 170, + "1437477173": 170, + "1437477174": 170, + "1437477175": 170, + "1437477176": 170, + "1437477178": 170, + "1437477179": 170, + "1437477180": 170, + "1437477181": 170, + "1437477182": 170, + "1437477183": 169, + "1437477184": 169, + "1437477185": 169, + "1437477186": 169, + "1437477187": 169, + "1437477188": 169, + "1437477189": 169, + "1437477190": 169, + "1437477191": 169, + "1437477192": 169, + "1437477193": 169, + "1437477194": 168, + "1437477195": 168, + "1437477196": 168, + "1437477197": 168, + "1437477198": 168, + "1437477199": 168, + "1437477200": 168, + "1437477201": 167, + "1437477202": 167, + "1437477203": 167, + "1437477204": 167, + "1437477205": 167, + "1437477206": 167, + "1437477207": 167, + "1437477208": 167, + "1437477209": 167, + "1437477210": 167, + "1437477211": 168, + "1437477212": 168, + "1437477213": 168, + "1437477215": 168, + "1437477216": 169, + "1437477217": 169, + "1437477218": 169, + "1437477219": 169, + "1437477220": 169, + "1437477221": 169, + "1437477222": 169, + "1437477223": 169, + "1437477224": 169, + "1437477225": 169, + "1437477226": 169, + "1437477227": 169, + "1437477228": 169, + "1437477229": 168, + "1437477230": 168, + "1437477231": 168, + "1437477232": 169, + "1437477233": 168, + "1437477234": 168, + "1437477235": 169, + "1437477236": 168, + "1437477237": 168, + "1437477238": 168, + "1437477239": 168, + "1437477240": 168, + "1437477241": 168, + "1437477242": 168, + "1437477243": 168, + "1437477244": 168, + "1437477245": 168, + "1437477247": 168, + "1437477248": 168, + "1437477249": 169, + "1437477250": 169, + "1437477251": 169, + "1437477252": 169, + "1437477253": 169, + "1437477254": 169, + "1437477255": 169, + "1437477256": 169, + "1437477257": 169, + "1437477258": 169, + "1437477259": 170, + "1437477260": 169, + "1437477261": 170, + "1437477262": 170, + "1437477263": 170, + "1437477264": 170, + "1437477265": 170, + "1437477266": 170, + "1437477267": 170, + "1437477268": 170, + "1437477270": 170, + "1437477271": 171, + "1437477272": 171, + "1437477273": 171, + "1437477274": 171, + "1437477275": 171, + "1437477276": 172, + "1437477277": 172, + "1437477278": 172, + "1437477279": 172, + "1437477280": 172, + "1437477281": 172, + "1437477282": 172, + "1437477283": 172, + "1437477284": 172, + "1437477285": 172, + "1437477286": 173, + "1437477287": 173, + "1437477288": 173, + "1437477289": 173, + "1437477290": 173, + "1437477291": 173, + "1437477292": 173, + "1437477294": 174, + "1437477295": 173, + "1437477296": 173, + "1437477297": 173, + "1437477298": 173, + "1437477299": 172, + "1437477300": 172, + "1437477301": 172, + "1437477302": 171, + "1437477303": 171, + "1437477304": 171, + "1437477305": 171, + "1437477306": 170, + "1437477307": 170, + "1437477308": 170, + "1437477309": 169, + "1437477310": 169, + "1437477311": 168, + "1437477312": 168, + "1437477313": 168, + "1437477314": 167, + "1437477315": 167, + "1437477316": 167, + "1437477317": 167, + "1437477318": 166, + "1437477319": 166, + "1437477321": 166, + "1437477322": 166, + "1437477323": 165, + "1437477324": 166, + "1437477325": 165, + "1437477326": 166, + "1437477327": 165, + "1437477328": 165, + "1437477329": 165, + "1437477330": 165, + "1437477331": 165, + "1437477332": 165, + "1437477333": 166, + "1437477334": 166, + "1437477335": 166, + "1437477336": 166, + "1437477337": 166, + "1437477338": 166, + "1437477339": 166, + "1437477340": 166, + "1437477341": 166, + "1437477342": 165, + "1437477343": 165, + "1437477345": 164, + "1437477346": 163, + "1437477347": 162, + "1437477348": 161, + "1437477349": 160, + "1437477350": 159, + "1437477351": 158, + "1437477352": 157, + "1437477353": 156, + "1437477354": 155, + "1437477355": 154, + "1437477356": 153, + "1437477376": 140, + "1437477377": 140, + "1437477378": 140, + "1437477379": 141, + "1437477380": 141, + "1437477381": 141, + "1437477383": 140, + "1437477384": 139, + "1437477385": 138, + "1437477386": 137, + "1437477387": 136, + "1437477388": 134, + "1437477392": 129, + "1437477393": 128, + "1437477394": 128, + "1437477395": 128, + "1437477397": 127, + "1437477398": 127, + "1437477399": 126, + "1437477400": 125, + "1437477401": 125, + "1437477402": 125, + "1437477403": 125, + "1437477404": 125, + "1437477405": 125, + "1437477406": 124, + "1437477407": 124, + "1437477408": 123, + "1437477411": 121, + "1437477412": 121, + "1437477413": 120, + "1437477414": 120, + "1437477415": 119, + "1437477417": 119, + "1437477418": 119, + "1437477419": 118, + "1437477420": 118, + "1437477421": 118, + "1437477422": 118, + "1437477423": 118, + "1437477428": 117, + "1437477429": 118, + "1437477430": 119, + "1437477432": 120, + "1437477433": 120, + "1437477434": 120, + "1437477435": 119, + "1437477436": 118, + "1437477437": 117, + "1437477438": 117, + "1437477439": 117, + "1437477440": 117, + "1437477441": 117, + "1437477442": 117, + "1437477443": 117, + "1437477444": 116, + "1437477445": 116, + "1437477446": 116, + "1437477447": 116, + "1437477448": 116, + "1437477449": 116, + "1437477450": 117, + "1437477451": 116, + "1437477452": 116, + "1437477453": 115, + "1437477454": 114, + "1437477455": 114, + "1437477456": 114, + "1437477457": 115, + "1437477458": 115, + "1437477459": 114, + "1437477461": 113, + "1437477465": 108, + "1437477466": 108, + "1437477467": 109, + "1437477468": 109, + "1437477469": 109, + "1437477470": 110, + "1437477471": 109, + "1437477472": 109, + "1437477473": 109, + "1437477474": 109, + "1437477475": 110, + "1437477476": 110, + "1437477477": 111, + "1437477478": 111, + "1437477479": 111, + "1437477480": 111, + "1437477481": 110, + "1437477482": 109, + "1437477483": 109, + "1437477484": 109, + "1437477485": 109, + "1437477486": 109, + "1437477487": 109, + "1437477488": 109, + "1437477489": 109, + "1437477490": 109, + "1437477491": 109, + "1437477492": 109, + "1437477493": 109, + "1437477494": 110, + "1437477495": 110, + "1437477496": 110, + "1437477497": 110, + "1437477498": 110, + "1437477500": 110, + "1437477501": 110, + "1437477502": 110, + "1437477503": 110, + "1437477504": 110, + "1437477505": 110, + "1437477506": 110, + "1437477507": 111, + "1437477508": 111, + "1437477509": 111, + "1437477510": 111, + "1437477511": 111, + "1437477512": 111, + "1437477513": 111, + "1437477514": 110, + "1437477515": 110, + "1437477516": 109, + "1437477517": 109, + "1437477518": 109, + "1437477519": 108, + "1437477520": 108, + "1437477521": 109, + "1437477522": 109, + "1437477523": 108, + "1437477524": 109, + "1437477525": 109, + "1437477526": 109, + "1437477527": 109, + "1437477528": 110, + "1437477529": 109, + "1437477530": 110, + "1437477532": 109, + "1437477533": 109, + "1437477534": 108, + "1437477535": 107, + "1437477536": 107, + "1437477537": 106, + "1437477538": 106, + "1437477539": 107, + "1437477540": 106, + "1437477541": 107, + "1437477542": 106, + "1437477543": 106, + "1437477544": 105, + "1437477545": 105, + "1437477546": 105, + "1437477547": 105, + "1437477548": 105, + "1437477549": 105, + "1437477550": 104, + "1437477551": 104, + "1437477552": 104, + "1437477553": 103, + "1437477555": 103, + "1437477556": 103, + "1437477557": 103, + "1437477558": 103, + "1437477559": 103, + "1437477560": 103, + "1437477561": 103, + "1437477562": 103, + "1437477563": 103, + "1437477564": 103, + "1437477565": 103, + "1437477566": 104, + "1437477567": 105, + "1437477568": 105, + "1437477569": 105, + "1437477570": 106, + "1437477571": 106, + "1437477572": 105, + "1437477573": 105, + "1437477574": 104, + "1437477575": 104, + "1437477576": 105, + "1437477577": 105, + "1437477578": 105, + "1437477580": 105, + "1437477581": 105, + "1437477582": 105, + "1437477583": 105, + "1437477584": 104, + "1437477585": 105, + "1437477586": 105, + "1437477587": 106, + "1437477588": 106, + "1437477589": 106, + "1437477590": 106, + "1437477591": 106, + "1437477592": 106, + "1437477593": 106, + "1437477594": 106, + "1437477595": 106, + "1437477596": 107, + "1437477597": 107, + "1437477598": 107, + "1437477599": 108, + "1437477600": 108, + "1437477601": 108, + "1437477604": 109, + "1437477605": 109, + "1437477607": 109, + "1437477608": 109, + "1437477609": 110, + "1437477610": 110, + "1437477611": 110, + "1437477612": 110, + "1437477613": 110, + "1437477614": 110, + "1437477615": 110, + "1437477616": 110, + "1437477617": 110, + "1437477618": 110, + "1437477619": 110, + "1437477620": 110, + "1437477621": 110, + "1437477622": 111, + "1437477623": 111, + "1437477624": 111, + "1437477625": 111, + "1437477626": 112, + "1437477627": 112, + "1437477628": 113, + "1437477629": 114, + "1437477630": 115, + "1437477631": 115, + "1437477632": 116, + "1437477633": 116, + "1437477634": 116, + "1437477635": 117, + "1437477636": 117, + "1437477638": 117, + "1437477639": 117, + "1437477640": 117, + "1437477641": 117, + "1437477642": 117, + "1437477643": 116, + "1437477644": 116, + "1437477645": 115, + "1437477646": 115, + "1437477647": 114, + "1437477648": 114, + "1437477649": 114, + "1437477650": 115, + "1437477651": 115, + "1437477652": 114, + "1437477653": 115, + "1437477654": 114, + "1437477655": 114, + "1437477656": 113, + "1437477657": 112, + "1437477658": 112, + "1437477659": 111, + "1437477660": 111, + "1437477661": 111, + "1437477662": 111, + "1437477663": 111, + "1437477664": 111, + "1437477665": 111, + "1437477666": 111, + "1437477667": 111, + "1437477668": 111, + "1437477669": 111, + "1437477671": 111, + "1437477672": 111, + "1437477673": 111, + "1437477674": 112, + "1437477676": 111, + "1437477677": 111, + "1437477678": 112, + "1437477679": 112, + "1437477680": 112, + "1437477681": 112, + "1437477682": 112, + "1437477683": 112, + "1437477684": 112, + "1437477685": 112, + "1437477688": 113, + "1437477689": 113, + "1437477690": 113, + "1437477691": 113, + "1437477692": 113, + "1437477693": 114, + "1437477695": 114, + "1437477696": 113, + "1437477697": 113, + "1437477698": 113, + "1437477699": 113, + "1437477700": 113, + "1437477701": 113, + "1437477702": 114, + "1437477703": 113, + "1437477704": 113, + "1437477705": 113, + "1437477706": 113 + }, + "cadences": { + "1437474517": 61, + "1437474518": 62, + "1437474519": 62, + "1437474520": 62, + "1437474521": 0, + "1437474522": 0, + "1437474523": 0, + "1437474524": 0, + "1437474525": 0, + "1437474526": 0, + "1437474527": 47, + "1437474528": 47, + "1437474529": 44, + "1437474530": 53, + "1437474532": 69, + "1437474533": 69, + "1437474534": 69, + "1437474535": 70, + "1437474536": 72, + "1437474537": 72, + "1437474538": 72, + "1437474539": 72, + "1437474540": 72, + "1437474541": 0, + "1437474542": 0, + "1437474543": 68, + "1437474544": 76, + "1437474545": 90, + "1437474546": 95, + "1437474547": 95, + "1437474548": 95, + "1437474549": 95, + "1437474550": 95, + "1437474551": 100, + "1437474552": 102, + "1437474553": 104, + "1437474554": 103, + "1437474555": 102, + "1437474556": 102, + "1437474557": 101, + "1437474558": 100, + "1437474559": 98, + "1437474560": 98, + "1437474561": 98, + "1437474562": 96, + "1437474563": 95, + "1437474564": 95, + "1437474566": 95, + "1437474567": 95, + "1437474568": 96, + "1437474569": 96, + "1437474570": 96, + "1437474571": 96, + "1437474572": 95, + "1437474573": 94, + "1437474574": 91, + "1437474575": 92, + "1437474576": 93, + "1437474577": 90, + "1437474578": 91, + "1437474579": 93, + "1437474580": 92, + "1437474581": 92, + "1437474582": 91, + "1437474583": 90, + "1437474584": 86, + "1437474585": 85, + "1437474586": 81, + "1437474587": 76, + "1437474588": 76, + "1437474589": 82, + "1437474590": 90, + "1437474591": 96, + "1437474592": 99, + "1437474593": 99, + "1437474594": 101, + "1437474595": 101, + "1437474596": 101, + "1437474597": 100, + "1437474598": 98, + "1437474599": 97, + "1437474600": 98, + "1437474601": 98, + "1437474603": 98, + "1437474604": 97, + "1437474605": 97, + "1437474606": 97, + "1437474607": 97, + "1437474608": 96, + "1437474609": 94, + "1437474610": 94, + "1437474611": 94, + "1437474612": 95, + "1437474613": 94, + "1437474614": 92, + "1437474615": 87, + "1437474616": 87, + "1437474617": 86, + "1437474618": 84, + "1437474619": 82, + "1437474620": 80, + "1437474621": 79, + "1437474622": 79, + "1437474623": 79, + "1437474624": 79, + "1437474626": 80, + "1437474627": 80, + "1437474628": 80, + "1437474629": 81, + "1437474630": 80, + "1437474631": 81, + "1437474632": 79, + "1437474633": 77, + "1437474634": 76, + "1437474635": 76, + "1437474636": 77, + "1437474637": 77, + "1437474638": 78, + "1437474639": 77, + "1437474640": 77, + "1437474641": 81, + "1437474642": 83, + "1437474643": 89, + "1437474644": 91, + "1437474645": 90, + "1437474646": 88, + "1437474647": 88, + "1437474648": 86, + "1437474649": 86, + "1437474650": 86, + "1437474652": 86, + "1437474653": 85, + "1437474654": 85, + "1437474655": 86, + "1437474656": 86, + "1437474657": 87, + "1437474658": 87, + "1437474659": 88, + "1437474660": 88, + "1437474661": 86, + "1437474662": 86, + "1437474663": 86, + "1437474664": 86, + "1437474665": 86, + "1437474666": 86, + "1437474667": 87, + "1437474668": 85, + "1437474669": 85, + "1437474670": 84, + "1437474671": 83, + "1437474672": 82, + "1437474673": 80, + "1437474674": 79, + "1437474675": 79, + "1437474676": 79, + "1437474677": 79, + "1437474678": 79, + "1437474679": 79, + "1437474681": 80, + "1437474682": 80, + "1437474683": 79, + "1437474684": 79, + "1437474685": 79, + "1437474686": 79, + "1437474687": 78, + "1437474688": 78, + "1437474689": 78, + "1437474690": 77, + "1437474691": 77, + "1437474692": 77, + "1437474693": 76, + "1437474694": 77, + "1437474695": 76, + "1437474696": 75, + "1437474697": 76, + "1437474698": 77, + "1437474699": 77, + "1437474700": 78, + "1437474701": 78, + "1437474702": 79, + "1437474703": 80, + "1437474705": 79, + "1437474706": 79, + "1437474707": 78, + "1437474708": 77, + "1437474709": 76, + "1437474710": 74, + "1437474711": 80, + "1437474712": 81, + "1437474713": 84, + "1437474714": 84, + "1437474715": 84, + "1437474716": 85, + "1437474717": 84, + "1437474718": 85, + "1437474719": 85, + "1437474720": 85, + "1437474721": 85, + "1437474722": 85, + "1437474723": 85, + "1437474724": 85, + "1437474725": 85, + "1437474726": 85, + "1437474727": 84, + "1437474728": 84, + "1437474729": 83, + "1437474730": 84, + "1437474732": 84, + "1437474733": 84, + "1437474734": 84, + "1437474735": 85, + "1437474736": 85, + "1437474737": 85, + "1437474738": 85, + "1437474739": 86, + "1437474740": 86, + "1437474741": 88, + "1437474742": 88, + "1437474743": 89, + "1437474744": 88, + "1437474745": 88, + "1437474746": 88, + "1437474747": 89, + "1437474748": 89, + "1437474749": 89, + "1437474750": 89, + "1437474751": 89, + "1437474752": 89, + "1437474753": 88, + "1437474754": 89, + "1437474755": 88, + "1437474756": 88, + "1437474757": 89, + "1437474758": 89, + "1437474760": 89, + "1437474761": 89, + "1437474762": 89, + "1437474763": 89, + "1437474764": 88, + "1437474765": 88, + "1437474766": 87, + "1437474767": 87, + "1437474768": 88, + "1437474769": 87, + "1437474770": 87, + "1437474771": 87, + "1437474772": 88, + "1437474773": 87, + "1437474774": 88, + "1437474775": 88, + "1437474776": 88, + "1437474777": 88, + "1437474778": 89, + "1437474779": 89, + "1437474780": 89, + "1437474781": 89, + "1437474782": 88, + "1437474783": 89, + "1437474785": 90, + "1437474786": 90, + "1437474787": 90, + "1437474788": 90, + "1437474789": 91, + "1437474790": 90, + "1437474791": 90, + "1437474792": 90, + "1437474793": 90, + "1437474794": 90, + "1437474795": 91, + "1437474796": 91, + "1437474797": 91, + "1437474798": 90, + "1437474799": 89, + "1437474800": 90, + "1437474801": 89, + "1437474802": 88, + "1437474803": 88, + "1437474804": 87, + "1437474805": 87, + "1437474806": 89, + "1437474808": 90, + "1437474809": 89, + "1437474810": 89, + "1437474811": 88, + "1437474812": 88, + "1437474813": 88, + "1437474814": 87, + "1437474815": 88, + "1437474816": 89, + "1437474817": 91, + "1437474818": 91, + "1437474819": 90, + "1437474820": 89, + "1437474821": 89, + "1437474822": 90, + "1437474823": 90, + "1437474824": 90, + "1437474825": 89, + "1437474827": 90, + "1437474828": 93, + "1437474829": 101, + "1437474830": 103, + "1437474831": 103, + "1437474832": 100, + "1437474833": 94, + "1437474834": 93, + "1437474835": 91, + "1437474836": 91, + "1437474837": 91, + "1437474838": 91, + "1437474839": 88, + "1437474840": 86, + "1437474841": 86, + "1437474842": 86, + "1437474843": 86, + "1437474844": 85, + "1437474845": 86, + "1437474846": 86, + "1437474847": 86, + "1437474848": 87, + "1437474849": 87, + "1437474850": 88, + "1437474851": 87, + "1437474852": 87, + "1437474853": 87, + "1437474854": 88, + "1437474855": 88, + "1437474856": 88, + "1437474857": 88, + "1437474859": 88, + "1437474860": 88, + "1437474861": 87, + "1437474862": 87, + "1437474863": 88, + "1437474864": 88, + "1437474865": 88, + "1437474866": 88, + "1437474867": 88, + "1437474868": 89, + "1437474869": 89, + "1437474870": 88, + "1437474871": 88, + "1437474872": 88, + "1437474873": 88, + "1437474874": 88, + "1437474875": 89, + "1437474876": 88, + "1437474877": 88, + "1437474878": 88, + "1437474879": 89, + "1437474880": 89, + "1437474881": 91, + "1437474882": 91, + "1437474883": 90, + "1437474884": 90, + "1437474885": 91, + "1437474886": 91, + "1437474887": 90, + "1437474888": 91, + "1437474890": 91, + "1437474891": 90, + "1437474892": 90, + "1437474893": 90, + "1437474894": 89, + "1437474895": 89, + "1437474896": 87, + "1437474897": 86, + "1437474898": 86, + "1437474899": 85, + "1437474900": 87, + "1437474901": 91, + "1437474902": 93, + "1437474903": 93, + "1437474904": 90, + "1437474905": 88, + "1437474906": 86, + "1437474907": 85, + "1437474908": 85, + "1437474909": 85, + "1437474910": 85, + "1437474911": 85, + "1437474912": 85, + "1437474913": 85, + "1437474914": 86, + "1437474915": 86, + "1437474916": 86, + "1437474917": 85, + "1437474918": 85, + "1437474919": 84, + "1437474920": 85, + "1437474921": 84, + "1437474923": 82, + "1437474924": 83, + "1437474925": 84, + "1437474926": 84, + "1437474927": 85, + "1437474928": 84, + "1437474929": 85, + "1437474930": 86, + "1437474931": 86, + "1437474932": 86, + "1437474933": 85, + "1437474934": 85, + "1437474935": 84, + "1437474936": 83, + "1437474937": 84, + "1437474938": 84, + "1437474939": 83, + "1437474940": 82, + "1437474941": 82, + "1437474942": 82, + "1437474943": 82, + "1437474944": 82, + "1437474945": 79, + "1437474946": 80, + "1437474947": 80, + "1437474948": 80, + "1437474949": 80, + "1437474950": 80, + "1437474951": 81, + "1437474952": 83, + "1437474953": 83, + "1437474954": 83, + "1437474955": 83, + "1437474956": 83, + "1437474957": 84, + "1437474958": 84, + "1437474959": 85, + "1437474960": 84, + "1437474962": 83, + "1437474963": 84, + "1437474964": 85, + "1437474965": 84, + "1437474966": 84, + "1437474967": 83, + "1437474968": 84, + "1437474969": 83, + "1437474970": 82, + "1437474971": 83, + "1437474972": 83, + "1437474973": 83, + "1437474974": 83, + "1437474975": 81, + "1437474976": 81, + "1437474977": 81, + "1437474978": 84, + "1437474979": 84, + "1437474980": 85, + "1437474981": 85, + "1437474982": 84, + "1437474983": 84, + "1437474984": 85, + "1437474985": 85, + "1437474986": 85, + "1437474987": 85, + "1437474988": 89, + "1437474989": 89, + "1437474990": 89, + "1437474992": 20, + "1437474993": 47, + "1437474994": 72, + "1437474995": 77, + "1437474996": 77, + "1437474997": 82, + "1437474998": 84, + "1437474999": 84, + "1437475000": 85, + "1437475001": 84, + "1437475002": 84, + "1437475003": 84, + "1437475004": 85, + "1437475005": 86, + "1437475006": 85, + "1437475007": 84, + "1437475008": 84, + "1437475009": 84, + "1437475010": 84, + "1437475012": 84, + "1437475013": 84, + "1437475014": 86, + "1437475015": 86, + "1437475016": 85, + "1437475017": 85, + "1437475018": 85, + "1437475019": 85, + "1437475020": 85, + "1437475021": 84, + "1437475022": 85, + "1437475023": 84, + "1437475024": 83, + "1437475025": 83, + "1437475026": 83, + "1437475027": 84, + "1437475029": 84, + "1437475030": 83, + "1437475031": 84, + "1437475032": 86, + "1437475033": 86, + "1437475034": 89, + "1437475035": 90, + "1437475036": 90, + "1437475037": 89, + "1437475038": 90, + "1437475039": 89, + "1437475040": 90, + "1437475041": 86, + "1437475042": 86, + "1437475043": 84, + "1437475044": 83, + "1437475045": 84, + "1437475046": 84, + "1437475047": 84, + "1437475048": 83, + "1437475049": 83, + "1437475050": 87, + "1437475051": 87, + "1437475052": 88, + "1437475054": 90, + "1437475055": 91, + "1437475056": 91, + "1437475057": 90, + "1437475058": 89, + "1437475059": 88, + "1437475060": 88, + "1437475061": 88, + "1437475062": 88, + "1437475063": 89, + "1437475064": 88, + "1437475065": 89, + "1437475066": 90, + "1437475067": 89, + "1437475068": 89, + "1437475069": 90, + "1437475070": 91, + "1437475071": 92, + "1437475072": 91, + "1437475073": 90, + "1437475074": 91, + "1437475075": 90, + "1437475076": 91, + "1437475077": 90, + "1437475078": 90, + "1437475079": 90, + "1437475080": 90, + "1437475081": 90, + "1437475083": 90, + "1437475084": 91, + "1437475085": 91, + "1437475086": 91, + "1437475087": 90, + "1437475088": 90, + "1437475089": 92, + "1437475090": 93, + "1437475091": 94, + "1437475092": 93, + "1437475093": 93, + "1437475094": 93, + "1437475095": 92, + "1437475096": 93, + "1437475097": 93, + "1437475098": 93, + "1437475099": 93, + "1437475100": 93, + "1437475101": 93, + "1437475102": 92, + "1437475103": 93, + "1437475104": 93, + "1437475105": 94, + "1437475106": 93, + "1437475107": 92, + "1437475108": 91, + "1437475109": 91, + "1437475110": 91, + "1437475112": 92, + "1437475113": 92, + "1437475114": 92, + "1437475115": 91, + "1437475116": 92, + "1437475117": 92, + "1437475118": 92, + "1437475119": 92, + "1437475120": 92, + "1437475121": 92, + "1437475122": 93, + "1437475123": 92, + "1437475124": 92, + "1437475125": 93, + "1437475126": 93, + "1437475127": 93, + "1437475128": 93, + "1437475129": 94, + "1437475130": 92, + "1437475131": 92, + "1437475132": 92, + "1437475133": 92, + "1437475134": 92, + "1437475135": 92, + "1437475136": 91, + "1437475137": 90, + "1437475138": 91, + "1437475139": 90, + "1437475140": 90, + "1437475141": 89, + "1437475142": 89, + "1437475143": 88, + "1437475145": 84, + "1437475146": 86, + "1437475147": 86, + "1437475148": 88, + "1437475149": 90, + "1437475150": 94, + "1437475151": 94, + "1437475152": 93, + "1437475153": 91, + "1437475154": 89, + "1437475155": 88, + "1437475156": 89, + "1437475157": 89, + "1437475158": 88, + "1437475159": 88, + "1437475160": 88, + "1437475161": 90, + "1437475162": 90, + "1437475163": 90, + "1437475164": 90, + "1437475165": 90, + "1437475166": 90, + "1437475167": 89, + "1437475168": 89, + "1437475169": 89, + "1437475170": 90, + "1437475171": 90, + "1437475173": 91, + "1437475174": 91, + "1437475175": 91, + "1437475176": 90, + "1437475177": 90, + "1437475178": 90, + "1437475179": 90, + "1437475180": 91, + "1437475181": 92, + "1437475182": 92, + "1437475183": 93, + "1437475184": 92, + "1437475185": 91, + "1437475186": 91, + "1437475187": 92, + "1437475188": 93, + "1437475189": 92, + "1437475190": 93, + "1437475191": 93, + "1437475192": 94, + "1437475193": 94, + "1437475194": 93, + "1437475195": 92, + "1437475196": 94, + "1437475197": 93, + "1437475198": 93, + "1437475200": 93, + "1437475201": 93, + "1437475202": 92, + "1437475203": 92, + "1437475204": 92, + "1437475205": 91, + "1437475206": 91, + "1437475207": 91, + "1437475208": 91, + "1437475209": 91, + "1437475210": 93, + "1437475211": 94, + "1437475212": 93, + "1437475213": 91, + "1437475214": 90, + "1437475215": 90, + "1437475216": 89, + "1437475217": 87, + "1437475218": 86, + "1437475219": 88, + "1437475220": 90, + "1437475221": 92, + "1437475222": 92, + "1437475223": 92, + "1437475224": 92, + "1437475225": 92, + "1437475226": 92, + "1437475227": 93, + "1437475228": 96, + "1437475230": 97, + "1437475231": 102, + "1437475232": 102, + "1437475233": 102, + "1437475234": 100, + "1437475235": 97, + "1437475236": 95, + "1437475237": 92, + "1437475238": 92, + "1437475239": 92, + "1437475240": 92, + "1437475241": 92, + "1437475242": 90, + "1437475243": 90, + "1437475244": 89, + "1437475245": 89, + "1437475246": 88, + "1437475247": 87, + "1437475248": 88, + "1437475249": 88, + "1437475250": 89, + "1437475251": 89, + "1437475252": 88, + "1437475253": 89, + "1437475254": 89, + "1437475255": 88, + "1437475256": 87, + "1437475257": 88, + "1437475258": 87, + "1437475259": 86, + "1437475260": 87, + "1437475261": 87, + "1437475262": 87, + "1437475263": 87, + "1437475264": 87, + "1437475265": 86, + "1437475266": 86, + "1437475267": 87, + "1437475269": 86, + "1437475270": 86, + "1437475271": 86, + "1437475272": 86, + "1437475273": 87, + "1437475274": 87, + "1437475275": 86, + "1437475276": 86, + "1437475277": 87, + "1437475278": 86, + "1437475279": 86, + "1437475280": 87, + "1437475281": 87, + "1437475282": 87, + "1437475283": 87, + "1437475284": 86, + "1437475285": 87, + "1437475286": 87, + "1437475287": 85, + "1437475288": 85, + "1437475289": 85, + "1437475290": 85, + "1437475291": 85, + "1437475292": 85, + "1437475293": 85, + "1437475294": 86, + "1437475295": 86, + "1437475296": 87, + "1437475297": 88, + "1437475298": 88, + "1437475299": 88, + "1437475300": 87, + "1437475301": 88, + "1437475302": 88, + "1437475303": 87, + "1437475304": 86, + "1437475305": 86, + "1437475306": 85, + "1437475308": 84, + "1437475309": 84, + "1437475310": 85, + "1437475311": 85, + "1437475312": 85, + "1437475313": 85, + "1437475314": 86, + "1437475315": 85, + "1437475316": 84, + "1437475317": 85, + "1437475318": 84, + "1437475319": 84, + "1437475320": 84, + "1437475321": 85, + "1437475322": 85, + "1437475323": 85, + "1437475324": 86, + "1437475325": 87, + "1437475326": 87, + "1437475327": 86, + "1437475328": 87, + "1437475329": 87, + "1437475330": 86, + "1437475331": 85, + "1437475332": 85, + "1437475333": 85, + "1437475334": 85, + "1437475335": 85, + "1437475336": 85, + "1437475337": 85, + "1437475338": 86, + "1437475339": 85, + "1437475340": 85, + "1437475342": 87, + "1437475343": 86, + "1437475344": 86, + "1437475345": 86, + "1437475346": 86, + "1437475347": 85, + "1437475348": 85, + "1437475349": 85, + "1437475350": 85, + "1437475351": 91, + "1437475352": 92, + "1437475353": 94, + "1437475354": 93, + "1437475355": 93, + "1437475356": 93, + "1437475357": 93, + "1437475358": 92, + "1437475359": 93, + "1437475360": 94, + "1437475361": 96, + "1437475362": 96, + "1437475363": 94, + "1437475364": 94, + "1437475365": 93, + "1437475366": 95, + "1437475367": 99, + "1437475368": 99, + "1437475369": 99, + "1437475371": 101, + "1437475372": 100, + "1437475373": 98, + "1437475374": 97, + "1437475375": 96, + "1437475376": 97, + "1437475377": 98, + "1437475378": 99, + "1437475379": 98, + "1437475380": 98, + "1437475381": 96, + "1437475382": 96, + "1437475383": 97, + "1437475384": 98, + "1437475385": 97, + "1437475386": 98, + "1437475387": 97, + "1437475388": 93, + "1437475389": 93, + "1437475390": 86, + "1437475391": 83, + "1437475392": 79, + "1437475393": 78, + "1437475394": 78, + "1437475395": 76, + "1437475396": 77, + "1437475397": 76, + "1437475398": 73, + "1437475400": 71, + "1437475401": 70, + "1437475402": 69, + "1437475403": 67, + "1437475404": 67, + "1437475405": 70, + "1437475406": 71, + "1437475407": 70, + "1437475408": 70, + "1437475409": 71, + "1437475410": 72, + "1437475411": 72, + "1437475412": 72, + "1437475413": 72, + "1437475414": 71, + "1437475415": 72, + "1437475416": 72, + "1437475417": 72, + "1437475418": 71, + "1437475419": 72, + "1437475420": 73, + "1437475421": 73, + "1437475422": 73, + "1437475423": 73, + "1437475424": 73, + "1437475425": 72, + "1437475426": 72, + "1437475427": 72, + "1437475428": 72, + "1437475429": 72, + "1437475430": 71, + "1437475431": 70, + "1437475433": 70, + "1437475434": 71, + "1437475435": 70, + "1437475436": 70, + "1437475437": 69, + "1437475438": 70, + "1437475439": 70, + "1437475440": 70, + "1437475441": 70, + "1437475442": 71, + "1437475443": 71, + "1437475444": 70, + "1437475445": 66, + "1437475446": 62, + "1437475447": 59, + "1437475448": 59, + "1437475449": 59, + "1437475450": 0, + "1437475451": 0, + "1437475452": 0, + "1437475453": 0, + "1437475454": 0, + "1437475455": 0, + "1437475456": 0, + "1437475457": 0, + "1437475458": 0, + "1437475459": 0, + "1437475460": 0, + "1437475461": 0, + "1437475462": 0, + "1437475463": 0, + "1437475464": 0, + "1437475466": 0, + "1437475467": 0, + "1437475468": 0, + "1437475469": 0, + "1437475470": 0, + "1437475471": 0, + "1437475472": 0, + "1437475473": 0, + "1437475474": 0, + "1437475475": 0, + "1437475476": 0, + "1437475477": 0, + "1437475478": 0, + "1437475479": 0, + "1437475480": 0, + "1437475481": 0, + "1437475482": 0, + "1437475483": 0, + "1437475484": 0, + "1437475485": 0, + "1437475486": 0, + "1437475487": 0, + "1437475488": 0, + "1437475489": 0, + "1437475490": 0, + "1437475491": 25, + "1437475492": 25, + "1437475493": 28, + "1437475494": 28, + "1437475495": 32, + "1437475496": 35, + "1437475497": 35, + "1437475498": 38, + "1437475499": 45, + "1437475500": 48, + "1437475501": 50, + "1437475502": 53, + "1437475503": 56, + "1437475504": 63, + "1437475505": 63, + "1437475506": 65, + "1437475507": 66, + "1437475508": 67, + "1437475510": 68, + "1437475511": 68, + "1437475512": 71, + "1437475513": 71, + "1437475514": 72, + "1437475515": 73, + "1437475516": 74, + "1437475517": 75, + "1437475518": 73, + "1437475519": 73, + "1437475520": 74, + "1437475521": 74, + "1437475522": 73, + "1437475523": 74, + "1437475524": 75, + "1437475525": 75, + "1437475526": 75, + "1437475527": 75, + "1437475528": 76, + "1437475529": 75, + "1437475530": 74, + "1437475531": 77, + "1437475532": 77, + "1437475533": 77, + "1437475534": 77, + "1437475535": 79, + "1437475536": 78, + "1437475537": 76, + "1437475538": 76, + "1437475539": 76, + "1437475540": 74, + "1437475541": 74, + "1437475542": 74, + "1437475543": 75, + "1437475544": 75, + "1437475545": 73, + "1437475546": 73, + "1437475547": 72, + "1437475548": 71, + "1437475549": 71, + "1437475551": 71, + "1437475552": 72, + "1437475553": 72, + "1437475554": 72, + "1437475555": 72, + "1437475556": 72, + "1437475557": 72, + "1437475558": 73, + "1437475559": 74, + "1437475560": 74, + "1437475561": 74, + "1437475562": 72, + "1437475563": 72, + "1437475564": 70, + "1437475565": 69, + "1437475566": 69, + "1437475567": 69, + "1437475568": 69, + "1437475569": 69, + "1437475570": 69, + "1437475571": 70, + "1437475572": 71, + "1437475573": 71, + "1437475574": 71, + "1437475575": 70, + "1437475576": 69, + "1437475577": 70, + "1437475578": 70, + "1437475580": 70, + "1437475581": 70, + "1437475582": 71, + "1437475583": 71, + "1437475584": 71, + "1437475585": 71, + "1437475586": 70, + "1437475587": 69, + "1437475588": 67, + "1437475589": 68, + "1437475590": 67, + "1437475591": 62, + "1437475592": 62, + "1437475593": 62, + "1437475594": 0, + "1437475595": 0, + "1437475596": 0, + "1437475597": 0, + "1437475598": 0, + "1437475599": 0, + "1437475600": 0, + "1437475601": 0, + "1437475602": 0, + "1437475603": 0, + "1437475604": 0, + "1437475605": 43, + "1437475606": 47, + "1437475607": 47, + "1437475608": 51, + "1437475610": 54, + "1437475611": 56, + "1437475612": 57, + "1437475613": 58, + "1437475614": 58, + "1437475615": 59, + "1437475616": 60, + "1437475617": 60, + "1437475618": 60, + "1437475619": 59, + "1437475620": 59, + "1437475621": 58, + "1437475622": 58, + "1437475623": 58, + "1437475624": 60, + "1437475625": 62, + "1437475626": 63, + "1437475627": 64, + "1437475628": 64, + "1437475629": 66, + "1437475630": 68, + "1437475631": 68, + "1437475632": 68, + "1437475633": 68, + "1437475634": 69, + "1437475636": 69, + "1437475637": 69, + "1437475638": 68, + "1437475639": 69, + "1437475640": 69, + "1437475641": 70, + "1437475642": 70, + "1437475643": 69, + "1437475644": 69, + "1437475645": 69, + "1437475646": 71, + "1437475647": 70, + "1437475648": 70, + "1437475649": 70, + "1437475650": 69, + "1437475651": 69, + "1437475652": 69, + "1437475653": 69, + "1437475654": 70, + "1437475655": 70, + "1437475656": 70, + "1437475657": 70, + "1437475658": 70, + "1437475659": 70, + "1437475660": 71, + "1437475662": 71, + "1437475663": 70, + "1437475664": 70, + "1437475665": 70, + "1437475666": 70, + "1437475667": 70, + "1437475668": 70, + "1437475669": 70, + "1437475670": 70, + "1437475671": 70, + "1437475672": 69, + "1437475673": 69, + "1437475674": 70, + "1437475675": 70, + "1437475676": 70, + "1437475677": 70, + "1437475678": 69, + "1437475679": 69, + "1437475680": 69, + "1437475681": 71, + "1437475682": 71, + "1437475683": 71, + "1437475684": 73, + "1437475685": 73, + "1437475686": 73, + "1437475687": 73, + "1437475688": 74, + "1437475689": 73, + "1437475690": 73, + "1437475691": 73, + "1437475693": 73, + "1437475694": 74, + "1437475695": 73, + "1437475696": 73, + "1437475697": 73, + "1437475698": 74, + "1437475699": 73, + "1437475700": 73, + "1437475701": 74, + "1437475702": 74, + "1437475703": 74, + "1437475704": 75, + "1437475705": 75, + "1437475706": 75, + "1437475707": 73, + "1437475708": 73, + "1437475709": 75, + "1437475710": 74, + "1437475711": 73, + "1437475712": 74, + "1437475713": 74, + "1437475714": 75, + "1437475715": 76, + "1437475716": 78, + "1437475717": 80, + "1437475718": 81, + "1437475719": 81, + "1437475720": 81, + "1437475721": 82, + "1437475722": 82, + "1437475724": 82, + "1437475725": 81, + "1437475726": 80, + "1437475727": 82, + "1437475728": 84, + "1437475729": 85, + "1437475730": 84, + "1437475731": 84, + "1437475732": 84, + "1437475733": 83, + "1437475734": 83, + "1437475735": 83, + "1437475736": 83, + "1437475737": 83, + "1437475738": 83, + "1437475739": 84, + "1437475740": 84, + "1437475741": 84, + "1437475742": 83, + "1437475743": 83, + "1437475744": 82, + "1437475745": 83, + "1437475746": 82, + "1437475747": 82, + "1437475748": 82, + "1437475749": 82, + "1437475750": 82, + "1437475751": 81, + "1437475752": 81, + "1437475753": 82, + "1437475754": 82, + "1437475755": 82, + "1437475756": 83, + "1437475758": 84, + "1437475759": 84, + "1437475760": 83, + "1437475761": 83, + "1437475762": 83, + "1437475763": 82, + "1437475764": 82, + "1437475765": 84, + "1437475766": 84, + "1437475767": 83, + "1437475768": 84, + "1437475769": 84, + "1437475770": 84, + "1437475771": 82, + "1437475772": 83, + "1437475773": 84, + "1437475774": 82, + "1437475775": 82, + "1437475776": 81, + "1437475777": 82, + "1437475778": 82, + "1437475779": 82, + "1437475780": 82, + "1437475781": 83, + "1437475782": 83, + "1437475783": 83, + "1437475784": 82, + "1437475785": 82, + "1437475786": 82, + "1437475787": 82, + "1437475788": 82, + "1437475789": 82, + "1437475791": 81, + "1437475792": 81, + "1437475793": 80, + "1437475794": 80, + "1437475795": 81, + "1437475796": 82, + "1437475797": 81, + "1437475798": 81, + "1437475799": 81, + "1437475800": 81, + "1437475801": 82, + "1437475802": 81, + "1437475803": 80, + "1437475804": 81, + "1437475805": 81, + "1437475806": 81, + "1437475807": 82, + "1437475808": 82, + "1437475809": 81, + "1437475810": 81, + "1437475811": 81, + "1437475812": 81, + "1437475813": 81, + "1437475814": 81, + "1437475815": 81, + "1437475816": 81, + "1437475817": 81, + "1437475818": 80, + "1437475819": 79, + "1437475821": 79, + "1437475822": 79, + "1437475823": 79, + "1437475824": 79, + "1437475825": 79, + "1437475826": 79, + "1437475827": 78, + "1437475828": 77, + "1437475829": 77, + "1437475830": 77, + "1437475831": 76, + "1437475832": 77, + "1437475833": 77, + "1437475834": 78, + "1437475835": 77, + "1437475836": 78, + "1437475837": 78, + "1437475838": 78, + "1437475839": 77, + "1437475840": 77, + "1437475841": 78, + "1437475842": 77, + "1437475843": 77, + "1437475844": 77, + "1437475845": 77, + "1437475846": 76, + "1437475847": 77, + "1437475848": 78, + "1437475849": 78, + "1437475850": 78, + "1437475852": 78, + "1437475853": 78, + "1437475854": 78, + "1437475855": 78, + "1437475856": 77, + "1437475857": 78, + "1437475858": 79, + "1437475859": 79, + "1437475860": 79, + "1437475861": 78, + "1437475862": 78, + "1437475863": 78, + "1437475864": 78, + "1437475865": 78, + "1437475866": 78, + "1437475867": 78, + "1437475868": 78, + "1437475869": 77, + "1437475870": 78, + "1437475871": 78, + "1437475872": 78, + "1437475873": 78, + "1437475874": 77, + "1437475875": 78, + "1437475876": 78, + "1437475878": 79, + "1437475879": 79, + "1437475880": 78, + "1437475881": 78, + "1437475882": 77, + "1437475883": 77, + "1437475884": 78, + "1437475885": 78, + "1437475886": 79, + "1437475887": 79, + "1437475888": 79, + "1437475889": 79, + "1437475890": 79, + "1437475891": 79, + "1437475892": 80, + "1437475893": 80, + "1437475894": 81, + "1437475895": 81, + "1437475896": 82, + "1437475897": 82, + "1437475898": 82, + "1437475899": 82, + "1437475900": 81, + "1437475901": 83, + "1437475902": 83, + "1437475903": 83, + "1437475905": 82, + "1437475906": 82, + "1437475907": 83, + "1437475908": 82, + "1437475909": 82, + "1437475910": 83, + "1437475911": 83, + "1437475912": 83, + "1437475913": 82, + "1437475914": 83, + "1437475915": 84, + "1437475916": 84, + "1437475917": 84, + "1437475918": 84, + "1437475919": 82, + "1437475920": 83, + "1437475921": 81, + "1437475922": 79, + "1437475923": 84, + "1437475924": 86, + "1437475925": 86, + "1437475926": 85, + "1437475927": 85, + "1437475928": 85, + "1437475929": 85, + "1437475930": 84, + "1437475931": 83, + "1437475932": 83, + "1437475933": 83, + "1437475934": 83, + "1437475935": 83, + "1437475936": 83, + "1437475938": 83, + "1437475939": 83, + "1437475940": 82, + "1437475941": 82, + "1437475942": 83, + "1437475943": 83, + "1437475944": 81, + "1437475945": 81, + "1437475946": 80, + "1437475947": 82, + "1437475948": 82, + "1437475949": 80, + "1437475950": 80, + "1437475951": 80, + "1437475952": 79, + "1437475953": 79, + "1437475954": 79, + "1437475955": 79, + "1437475956": 78, + "1437475957": 79, + "1437475958": 80, + "1437475959": 78, + "1437475960": 77, + "1437475961": 75, + "1437475962": 75, + "1437475963": 76, + "1437475964": 75, + "1437475965": 75, + "1437475967": 75, + "1437475968": 75, + "1437475969": 0, + "1437475970": 44, + "1437475971": 59, + "1437475972": 67, + "1437475973": 71, + "1437475974": 76, + "1437475975": 76, + "1437475976": 76, + "1437475977": 75, + "1437475978": 76, + "1437475979": 76, + "1437475980": 76, + "1437475981": 76, + "1437475982": 76, + "1437475983": 77, + "1437475984": 76, + "1437475985": 76, + "1437475986": 76, + "1437475987": 77, + "1437475988": 79, + "1437475989": 80, + "1437475990": 79, + "1437475991": 79, + "1437475992": 79, + "1437475993": 80, + "1437475994": 80, + "1437475995": 80, + "1437475997": 79, + "1437475998": 78, + "1437475999": 77, + "1437476000": 77, + "1437476001": 79, + "1437476002": 78, + "1437476003": 79, + "1437476004": 79, + "1437476005": 77, + "1437476006": 77, + "1437476007": 78, + "1437476008": 78, + "1437476009": 77, + "1437476010": 77, + "1437476011": 78, + "1437476012": 77, + "1437476013": 77, + "1437476014": 77, + "1437476015": 76, + "1437476016": 76, + "1437476017": 76, + "1437476019": 76, + "1437476020": 76, + "1437476021": 75, + "1437476022": 77, + "1437476023": 77, + "1437476024": 75, + "1437476025": 75, + "1437476026": 75, + "1437476027": 75, + "1437476028": 75, + "1437476029": 76, + "1437476030": 76, + "1437476031": 76, + "1437476032": 76, + "1437476033": 76, + "1437476034": 76, + "1437476035": 76, + "1437476036": 76, + "1437476037": 76, + "1437476038": 76, + "1437476039": 76, + "1437476040": 76, + "1437476041": 76, + "1437476042": 76, + "1437476043": 77, + "1437476044": 77, + "1437476045": 78, + "1437476047": 77, + "1437476048": 77, + "1437476049": 77, + "1437476050": 76, + "1437476051": 76, + "1437476052": 76, + "1437476053": 77, + "1437476054": 76, + "1437476055": 76, + "1437476056": 75, + "1437476057": 75, + "1437476058": 75, + "1437476059": 76, + "1437476060": 76, + "1437476061": 75, + "1437476062": 76, + "1437476063": 75, + "1437476064": 75, + "1437476065": 74, + "1437476066": 74, + "1437476067": 74, + "1437476068": 74, + "1437476069": 74, + "1437476070": 73, + "1437476071": 73, + "1437476072": 74, + "1437476073": 74, + "1437476074": 74, + "1437476075": 75, + "1437476076": 74, + "1437476077": 73, + "1437476079": 72, + "1437476080": 72, + "1437476081": 74, + "1437476082": 75, + "1437476083": 76, + "1437476084": 76, + "1437476085": 76, + "1437476086": 76, + "1437476087": 75, + "1437476088": 73, + "1437476089": 73, + "1437476090": 74, + "1437476091": 73, + "1437476092": 76, + "1437476093": 77, + "1437476094": 77, + "1437476095": 77, + "1437476096": 77, + "1437476097": 76, + "1437476098": 76, + "1437476099": 76, + "1437476100": 77, + "1437476101": 75, + "1437476102": 76, + "1437476103": 76, + "1437476104": 77, + "1437476105": 78, + "1437476106": 77, + "1437476107": 76, + "1437476108": 75, + "1437476109": 75, + "1437476110": 77, + "1437476112": 77, + "1437476113": 76, + "1437476114": 75, + "1437476115": 77, + "1437476116": 78, + "1437476117": 76, + "1437476118": 74, + "1437476119": 74, + "1437476120": 75, + "1437476121": 75, + "1437476122": 74, + "1437476123": 73, + "1437476124": 72, + "1437476125": 72, + "1437476126": 70, + "1437476127": 71, + "1437476128": 70, + "1437476129": 69, + "1437476130": 70, + "1437476131": 71, + "1437476132": 70, + "1437476133": 70, + "1437476134": 72, + "1437476135": 72, + "1437476136": 71, + "1437476137": 72, + "1437476138": 72, + "1437476139": 71, + "1437476140": 71, + "1437476141": 71, + "1437476142": 72, + "1437476143": 72, + "1437476144": 73, + "1437476146": 73, + "1437476147": 72, + "1437476148": 72, + "1437476149": 72, + "1437476150": 71, + "1437476151": 70, + "1437476152": 70, + "1437476153": 70, + "1437476154": 69, + "1437476155": 70, + "1437476156": 71, + "1437476157": 72, + "1437476158": 72, + "1437476159": 72, + "1437476160": 73, + "1437476161": 73, + "1437476162": 73, + "1437476163": 73, + "1437476164": 72, + "1437476165": 73, + "1437476166": 72, + "1437476167": 72, + "1437476168": 72, + "1437476169": 71, + "1437476170": 72, + "1437476171": 72, + "1437476172": 72, + "1437476173": 72, + "1437476174": 70, + "1437476175": 69, + "1437476176": 70, + "1437476177": 70, + "1437476179": 71, + "1437476180": 71, + "1437476181": 70, + "1437476182": 70, + "1437476183": 70, + "1437476184": 70, + "1437476185": 69, + "1437476186": 70, + "1437476187": 71, + "1437476188": 71, + "1437476189": 71, + "1437476190": 74, + "1437476191": 77, + "1437476192": 77, + "1437476193": 78, + "1437476194": 79, + "1437476195": 79, + "1437476196": 80, + "1437476197": 79, + "1437476198": 79, + "1437476199": 77, + "1437476200": 76, + "1437476201": 75, + "1437476202": 75, + "1437476203": 76, + "1437476204": 76, + "1437476205": 76, + "1437476206": 76, + "1437476207": 75, + "1437476208": 75, + "1437476209": 75, + "1437476211": 75, + "1437476212": 75, + "1437476213": 75, + "1437476214": 75, + "1437476215": 76, + "1437476216": 76, + "1437476217": 76, + "1437476218": 76, + "1437476219": 75, + "1437476220": 76, + "1437476221": 77, + "1437476222": 76, + "1437476223": 76, + "1437476224": 76, + "1437476225": 76, + "1437476226": 75, + "1437476227": 76, + "1437476228": 75, + "1437476229": 75, + "1437476230": 75, + "1437476231": 75, + "1437476232": 74, + "1437476233": 74, + "1437476234": 74, + "1437476235": 74, + "1437476236": 74, + "1437476237": 75, + "1437476238": 74, + "1437476239": 74, + "1437476240": 74, + "1437476241": 72, + "1437476242": 70, + "1437476243": 67, + "1437476244": 68, + "1437476245": 66, + "1437476246": 64, + "1437476248": 63, + "1437476249": 62, + "1437476250": 60, + "1437476251": 59, + "1437476252": 59, + "1437476253": 59, + "1437476254": 59, + "1437476255": 59, + "1437476256": 60, + "1437476257": 60, + "1437476258": 60, + "1437476259": 61, + "1437476260": 61, + "1437476261": 61, + "1437476262": 61, + "1437476263": 61, + "1437476264": 63, + "1437476265": 63, + "1437476266": 63, + "1437476267": 62, + "1437476268": 61, + "1437476269": 62, + "1437476270": 61, + "1437476271": 61, + "1437476272": 60, + "1437476274": 60, + "1437476275": 60, + "1437476276": 58, + "1437476277": 54, + "1437476278": 49, + "1437476279": 49, + "1437476280": 45, + "1437476281": 42, + "1437476282": 42, + "1437476283": 40, + "1437476284": 40, + "1437476285": 40, + "1437476286": 40, + "1437476287": 40, + "1437476288": 40, + "1437476289": 39, + "1437476290": 39, + "1437476291": 40, + "1437476292": 40, + "1437476293": 40, + "1437476295": 39, + "1437476296": 39, + "1437476297": 39, + "1437476298": 39, + "1437476299": 39, + "1437476300": 39, + "1437476301": 39, + "1437476302": 39, + "1437476303": 18, + "1437476304": 27, + "1437476305": 27, + "1437476306": 27, + "1437476307": 27, + "1437476308": 0, + "1437476309": 0, + "1437476310": 0, + "1437476311": 0, + "1437476312": 12, + "1437476313": 12, + "1437476314": 12, + "1437476315": 0, + "1437476316": 12, + "1437476317": 12, + "1437476318": 12, + "1437476319": 0, + "1437476320": 13, + "1437476321": 13, + "1437476323": 13, + "1437476324": 0, + "1437476325": 0, + "1437476326": 0, + "1437476327": 12, + "1437476328": 12, + "1437476329": 12, + "1437476330": 0, + "1437476331": 11, + "1437476332": 11, + "1437476333": 11, + "1437476334": 0, + "1437476335": 0, + "1437476338": 22, + "1437476339": 22, + "1437476340": 22, + "1437476341": 27, + "1437476342": 31, + "1437476343": 31, + "1437476344": 35, + "1437476345": 38, + "1437476346": 38, + "1437476347": 37, + "1437476348": 35, + "1437476349": 35, + "1437476350": 34, + "1437476351": 34, + "1437476352": 36, + "1437476353": 36, + "1437476354": 36, + "1437476355": 37, + "1437476356": 39, + "1437476357": 40, + "1437476358": 40, + "1437476360": 38, + "1437476361": 38, + "1437476362": 36, + "1437476363": 36, + "1437476364": 36, + "1437476365": 35, + "1437476366": 35, + "1437476367": 35, + "1437476368": 35, + "1437476369": 35, + "1437476370": 36, + "1437476371": 36, + "1437476372": 34, + "1437476373": 34, + "1437476374": 34, + "1437476375": 37, + "1437476376": 37, + "1437476377": 37, + "1437476378": 35, + "1437476379": 35, + "1437476380": 35, + "1437476381": 35, + "1437476382": 35, + "1437476383": 34, + "1437476384": 37, + "1437476385": 37, + "1437476386": 40, + "1437476387": 41, + "1437476389": 43, + "1437476390": 43, + "1437476391": 45, + "1437476392": 48, + "1437476393": 52, + "1437476394": 55, + "1437476395": 55, + "1437476396": 61, + "1437476397": 59, + "1437476398": 60, + "1437476399": 60, + "1437476400": 60, + "1437476401": 59, + "1437476402": 58, + "1437476403": 58, + "1437476404": 58, + "1437476405": 59, + "1437476406": 60, + "1437476407": 60, + "1437476408": 60, + "1437476410": 60, + "1437476411": 61, + "1437476412": 60, + "1437476413": 59, + "1437476414": 59, + "1437476415": 62, + "1437476416": 62, + "1437476417": 62, + "1437476418": 60, + "1437476419": 60, + "1437476420": 59, + "1437476421": 59, + "1437476422": 58, + "1437476423": 58, + "1437476424": 58, + "1437476425": 58, + "1437476426": 59, + "1437476427": 59, + "1437476428": 59, + "1437476429": 59, + "1437476430": 59, + "1437476431": 59, + "1437476432": 58, + "1437476433": 58, + "1437476434": 58, + "1437476435": 58, + "1437476436": 57, + "1437476437": 57, + "1437476438": 56, + "1437476439": 57, + "1437476441": 59, + "1437476442": 61, + "1437476443": 63, + "1437476444": 64, + "1437476445": 77, + "1437476446": 85, + "1437476447": 86, + "1437476448": 85, + "1437476449": 87, + "1437476450": 86, + "1437476451": 82, + "1437476452": 81, + "1437476453": 81, + "1437476454": 80, + "1437476455": 78, + "1437476456": 76, + "1437476457": 76, + "1437476458": 76, + "1437476459": 76, + "1437476460": 76, + "1437476461": 76, + "1437476462": 78, + "1437476463": 79, + "1437476464": 82, + "1437476465": 84, + "1437476467": 84, + "1437476468": 86, + "1437476469": 88, + "1437476470": 90, + "1437476471": 88, + "1437476472": 88, + "1437476473": 91, + "1437476474": 92, + "1437476475": 91, + "1437476476": 91, + "1437476477": 90, + "1437476478": 87, + "1437476479": 85, + "1437476480": 84, + "1437476481": 83, + "1437476482": 84, + "1437476483": 87, + "1437476484": 87, + "1437476485": 87, + "1437476486": 89, + "1437476487": 90, + "1437476488": 88, + "1437476490": 88, + "1437476491": 90, + "1437476492": 89, + "1437476493": 88, + "1437476494": 89, + "1437476495": 87, + "1437476496": 88, + "1437476497": 89, + "1437476498": 91, + "1437476499": 91, + "1437476500": 93, + "1437476501": 94, + "1437476502": 92, + "1437476503": 90, + "1437476504": 92, + "1437476505": 92, + "1437476506": 91, + "1437476507": 91, + "1437476508": 91, + "1437476509": 91, + "1437476510": 91, + "1437476511": 89, + "1437476512": 89, + "1437476513": 87, + "1437476514": 87, + "1437476515": 87, + "1437476516": 89, + "1437476517": 94, + "1437476518": 94, + "1437476519": 94, + "1437476521": 93, + "1437476522": 92, + "1437476523": 89, + "1437476524": 91, + "1437476525": 93, + "1437476526": 95, + "1437476527": 95, + "1437476528": 95, + "1437476529": 96, + "1437476530": 96, + "1437476531": 94, + "1437476532": 94, + "1437476533": 94, + "1437476534": 95, + "1437476535": 95, + "1437476536": 94, + "1437476537": 95, + "1437476538": 96, + "1437476539": 97, + "1437476540": 96, + "1437476541": 96, + "1437476542": 95, + "1437476543": 95, + "1437476544": 87, + "1437476545": 83, + "1437476547": 80, + "1437476548": 79, + "1437476549": 78, + "1437476550": 78, + "1437476551": 78, + "1437476552": 77, + "1437476553": 77, + "1437476554": 77, + "1437476555": 76, + "1437476556": 75, + "1437476557": 74, + "1437476558": 74, + "1437476559": 72, + "1437476560": 72, + "1437476561": 71, + "1437476562": 71, + "1437476563": 71, + "1437476564": 71, + "1437476565": 71, + "1437476566": 71, + "1437476567": 70, + "1437476568": 70, + "1437476569": 70, + "1437476570": 70, + "1437476571": 69, + "1437476572": 67, + "1437476573": 67, + "1437476574": 67, + "1437476576": 66, + "1437476577": 66, + "1437476578": 65, + "1437476579": 64, + "1437476580": 63, + "1437476581": 59, + "1437476582": 57, + "1437476583": 56, + "1437476584": 56, + "1437476585": 55, + "1437476586": 55, + "1437476587": 53, + "1437476588": 50, + "1437476589": 49, + "1437476590": 49, + "1437476591": 50, + "1437476592": 53, + "1437476593": 56, + "1437476594": 56, + "1437476595": 56, + "1437476596": 57, + "1437476597": 57, + "1437476598": 57, + "1437476599": 58, + "1437476601": 58, + "1437476602": 58, + "1437476603": 59, + "1437476604": 59, + "1437476605": 59, + "1437476606": 62, + "1437476607": 74, + "1437476608": 77, + "1437476609": 81, + "1437476610": 82, + "1437476611": 82, + "1437476612": 83, + "1437476613": 82, + "1437476614": 82, + "1437476615": 83, + "1437476616": 83, + "1437476617": 83, + "1437476618": 83, + "1437476619": 83, + "1437476620": 83, + "1437476621": 83, + "1437476622": 83, + "1437476623": 83, + "1437476624": 84, + "1437476625": 85, + "1437476627": 85, + "1437476628": 86, + "1437476629": 86, + "1437476630": 86, + "1437476631": 88, + "1437476632": 88, + "1437476633": 88, + "1437476634": 86, + "1437476635": 86, + "1437476636": 86, + "1437476637": 87, + "1437476638": 87, + "1437476639": 85, + "1437476640": 90, + "1437476641": 97, + "1437476642": 97, + "1437476643": 96, + "1437476644": 95, + "1437476645": 95, + "1437476646": 95, + "1437476647": 95, + "1437476648": 96, + "1437476649": 96, + "1437476650": 96, + "1437476651": 94, + "1437476652": 94, + "1437476653": 94, + "1437476654": 95, + "1437476655": 98, + "1437476656": 99, + "1437476658": 99, + "1437476659": 99, + "1437476660": 99, + "1437476661": 99, + "1437476662": 99, + "1437476663": 99, + "1437476664": 99, + "1437476665": 98, + "1437476666": 97, + "1437476667": 98, + "1437476668": 97, + "1437476669": 97, + "1437476670": 97, + "1437476671": 99, + "1437476672": 98, + "1437476673": 98, + "1437476674": 97, + "1437476675": 97, + "1437476676": 98, + "1437476677": 98, + "1437476678": 98, + "1437476679": 97, + "1437476680": 97, + "1437476681": 98, + "1437476682": 97, + "1437476683": 98, + "1437476684": 97, + "1437476685": 96, + "1437476686": 96, + "1437476687": 96, + "1437476688": 97, + "1437476689": 102, + "1437476690": 102, + "1437476691": 102, + "1437476692": 100, + "1437476694": 100, + "1437476695": 99, + "1437476696": 99, + "1437476697": 99, + "1437476698": 99, + "1437476699": 98, + "1437476700": 95, + "1437476701": 94, + "1437476702": 94, + "1437476703": 94, + "1437476704": 95, + "1437476705": 95, + "1437476706": 94, + "1437476707": 91, + "1437476708": 92, + "1437476709": 91, + "1437476710": 90, + "1437476711": 90, + "1437476712": 88, + "1437476713": 89, + "1437476714": 90, + "1437476715": 90, + "1437476716": 91, + "1437476717": 90, + "1437476718": 91, + "1437476719": 92, + "1437476720": 92, + "1437476721": 94, + "1437476723": 94, + "1437476724": 93, + "1437476725": 95, + "1437476726": 95, + "1437476727": 94, + "1437476728": 95, + "1437476729": 94, + "1437476730": 94, + "1437476731": 92, + "1437476732": 92, + "1437476733": 92, + "1437476734": 94, + "1437476735": 95, + "1437476736": 96, + "1437476737": 97, + "1437476738": 96, + "1437476739": 96, + "1437476740": 97, + "1437476741": 97, + "1437476742": 96, + "1437476743": 96, + "1437476744": 96, + "1437476745": 98, + "1437476746": 95, + "1437476747": 95, + "1437476748": 95, + "1437476749": 94, + "1437476750": 95, + "1437476751": 95, + "1437476752": 93, + "1437476753": 89, + "1437476755": 88, + "1437476756": 87, + "1437476757": 87, + "1437476758": 86, + "1437476759": 87, + "1437476760": 87, + "1437476761": 87, + "1437476762": 86, + "1437476763": 86, + "1437476764": 86, + "1437476765": 85, + "1437476766": 86, + "1437476767": 86, + "1437476768": 86, + "1437476769": 87, + "1437476770": 86, + "1437476771": 86, + "1437476772": 86, + "1437476773": 86, + "1437476774": 86, + "1437476775": 86, + "1437476776": 86, + "1437476777": 86, + "1437476778": 85, + "1437476779": 85, + "1437476780": 87, + "1437476781": 88, + "1437476782": 87, + "1437476783": 81, + "1437476784": 82, + "1437476785": 81, + "1437476786": 74, + "1437476787": 73, + "1437476788": 84, + "1437476789": 92, + "1437476791": 96, + "1437476792": 92, + "1437476793": 87, + "1437476794": 85, + "1437476795": 83, + "1437476796": 82, + "1437476797": 81, + "1437476798": 82, + "1437476799": 81, + "1437476800": 81, + "1437476801": 84, + "1437476802": 83, + "1437476803": 82, + "1437476804": 79, + "1437476805": 79, + "1437476806": 79, + "1437476807": 83, + "1437476808": 83, + "1437476809": 82, + "1437476810": 82, + "1437476811": 83, + "1437476812": 82, + "1437476813": 80, + "1437476814": 79, + "1437476815": 80, + "1437476816": 80, + "1437476817": 79, + "1437476818": 79, + "1437476819": 77, + "1437476820": 78, + "1437476821": 80, + "1437476822": 80, + "1437476824": 80, + "1437476825": 81, + "1437476826": 80, + "1437476827": 80, + "1437476828": 81, + "1437476829": 81, + "1437476830": 81, + "1437476831": 81, + "1437476832": 83, + "1437476833": 84, + "1437476834": 85, + "1437476835": 88, + "1437476836": 91, + "1437476837": 92, + "1437476838": 92, + "1437476839": 94, + "1437476840": 93, + "1437476841": 93, + "1437476842": 94, + "1437476843": 95, + "1437476844": 98, + "1437476845": 99, + "1437476846": 100, + "1437476847": 98, + "1437476848": 100, + "1437476849": 99, + "1437476850": 98, + "1437476851": 98, + "1437476852": 99, + "1437476854": 99, + "1437476855": 99, + "1437476856": 99, + "1437476857": 100, + "1437476858": 101, + "1437476859": 102, + "1437476860": 102, + "1437476861": 101, + "1437476862": 103, + "1437476863": 103, + "1437476864": 103, + "1437476865": 103, + "1437476866": 103, + "1437476867": 103, + "1437476868": 106, + "1437476869": 107, + "1437476870": 108, + "1437476871": 105, + "1437476872": 101, + "1437476873": 99, + "1437476874": 99, + "1437476875": 99, + "1437476876": 97, + "1437476877": 97, + "1437476878": 96, + "1437476879": 98, + "1437476880": 96, + "1437476881": 96, + "1437476882": 97, + "1437476883": 96, + "1437476884": 96, + "1437476886": 97, + "1437476887": 96, + "1437476888": 97, + "1437476889": 97, + "1437476890": 99, + "1437476891": 99, + "1437476892": 98, + "1437476893": 99, + "1437476894": 98, + "1437476895": 99, + "1437476896": 97, + "1437476897": 97, + "1437476898": 97, + "1437476899": 99, + "1437476900": 98, + "1437476901": 96, + "1437476902": 97, + "1437476903": 97, + "1437476904": 98, + "1437476905": 98, + "1437476906": 98, + "1437476907": 98, + "1437476908": 98, + "1437476910": 99, + "1437476911": 98, + "1437476912": 99, + "1437476913": 99, + "1437476914": 99, + "1437476915": 99, + "1437476916": 98, + "1437476917": 97, + "1437476918": 96, + "1437476919": 93, + "1437476920": 93, + "1437476921": 99, + "1437476922": 98, + "1437476923": 97, + "1437476924": 95, + "1437476925": 94, + "1437476926": 94, + "1437476927": 94, + "1437476928": 92, + "1437476929": 93, + "1437476930": 92, + "1437476931": 93, + "1437476932": 92, + "1437476933": 92, + "1437476934": 91, + "1437476935": 91, + "1437476936": 90, + "1437476938": 85, + "1437476939": 85, + "1437476940": 85, + "1437476941": 86, + "1437476942": 87, + "1437476943": 87, + "1437476944": 88, + "1437476945": 88, + "1437476946": 88, + "1437476947": 88, + "1437476948": 86, + "1437476949": 87, + "1437476950": 87, + "1437476951": 87, + "1437476952": 88, + "1437476953": 88, + "1437476954": 87, + "1437476955": 87, + "1437476956": 87, + "1437476957": 87, + "1437476958": 88, + "1437476959": 86, + "1437476960": 86, + "1437476961": 86, + "1437476962": 86, + "1437476963": 87, + "1437476964": 86, + "1437476965": 86, + "1437476966": 86, + "1437476967": 86, + "1437476969": 87, + "1437476970": 88, + "1437476971": 88, + "1437476972": 89, + "1437476973": 89, + "1437476974": 90, + "1437476975": 89, + "1437476976": 88, + "1437476977": 89, + "1437476978": 90, + "1437476979": 89, + "1437476980": 88, + "1437476981": 88, + "1437476982": 88, + "1437476983": 87, + "1437476984": 87, + "1437476985": 87, + "1437476986": 87, + "1437476987": 86, + "1437476988": 87, + "1437476989": 87, + "1437476990": 87, + "1437476991": 88, + "1437476992": 88, + "1437476993": 88, + "1437476994": 88, + "1437476996": 87, + "1437476997": 87, + "1437476998": 87, + "1437476999": 89, + "1437477000": 89, + "1437477001": 89, + "1437477002": 91, + "1437477003": 90, + "1437477004": 89, + "1437477005": 90, + "1437477006": 88, + "1437477007": 90, + "1437477008": 90, + "1437477009": 91, + "1437477010": 91, + "1437477011": 91, + "1437477012": 92, + "1437477013": 92, + "1437477014": 92, + "1437477015": 92, + "1437477016": 92, + "1437477017": 93, + "1437477018": 92, + "1437477019": 92, + "1437477020": 93, + "1437477022": 93, + "1437477023": 93, + "1437477024": 93, + "1437477025": 94, + "1437477026": 93, + "1437477027": 92, + "1437477028": 91, + "1437477029": 91, + "1437477030": 90, + "1437477031": 90, + "1437477032": 90, + "1437477033": 90, + "1437477034": 90, + "1437477035": 91, + "1437477036": 91, + "1437477037": 92, + "1437477038": 93, + "1437477039": 93, + "1437477040": 92, + "1437477041": 91, + "1437477042": 91, + "1437477043": 92, + "1437477044": 92, + "1437477045": 93, + "1437477046": 92, + "1437477047": 92, + "1437477048": 92, + "1437477050": 93, + "1437477051": 92, + "1437477052": 92, + "1437477053": 93, + "1437477054": 94, + "1437477055": 92, + "1437477056": 92, + "1437477057": 91, + "1437477058": 88, + "1437477059": 87, + "1437477060": 87, + "1437477061": 86, + "1437477062": 87, + "1437477063": 87, + "1437477064": 87, + "1437477065": 85, + "1437477066": 84, + "1437477067": 85, + "1437477068": 86, + "1437477069": 86, + "1437477070": 85, + "1437477071": 85, + "1437477072": 85, + "1437477073": 85, + "1437477075": 85, + "1437477076": 85, + "1437477077": 84, + "1437477078": 84, + "1437477079": 87, + "1437477080": 89, + "1437477081": 91, + "1437477082": 92, + "1437477083": 91, + "1437477084": 90, + "1437477085": 90, + "1437477086": 89, + "1437477087": 90, + "1437477088": 90, + "1437477089": 90, + "1437477090": 90, + "1437477091": 92, + "1437477092": 94, + "1437477093": 92, + "1437477094": 91, + "1437477095": 90, + "1437477096": 90, + "1437477097": 91, + "1437477098": 90, + "1437477099": 89, + "1437477100": 89, + "1437477101": 90, + "1437477102": 89, + "1437477103": 89, + "1437477104": 89, + "1437477105": 89, + "1437477106": 90, + "1437477107": 90, + "1437477109": 90, + "1437477110": 90, + "1437477111": 90, + "1437477112": 90, + "1437477113": 88, + "1437477114": 88, + "1437477115": 88, + "1437477116": 89, + "1437477117": 89, + "1437477118": 89, + "1437477119": 89, + "1437477120": 89, + "1437477121": 90, + "1437477122": 90, + "1437477123": 92, + "1437477124": 99, + "1437477125": 99, + "1437477126": 100, + "1437477127": 100, + "1437477128": 100, + "1437477129": 98, + "1437477130": 98, + "1437477131": 99, + "1437477132": 96, + "1437477133": 101, + "1437477134": 101, + "1437477135": 101, + "1437477136": 101, + "1437477137": 100, + "1437477138": 99, + "1437477139": 100, + "1437477140": 99, + "1437477141": 99, + "1437477143": 99, + "1437477144": 98, + "1437477145": 99, + "1437477146": 99, + "1437477147": 97, + "1437477148": 96, + "1437477149": 97, + "1437477150": 96, + "1437477151": 97, + "1437477152": 97, + "1437477153": 97, + "1437477154": 97, + "1437477155": 97, + "1437477156": 97, + "1437477157": 98, + "1437477158": 98, + "1437477159": 99, + "1437477160": 99, + "1437477161": 98, + "1437477162": 97, + "1437477163": 96, + "1437477164": 96, + "1437477165": 96, + "1437477166": 96, + "1437477167": 96, + "1437477168": 95, + "1437477169": 95, + "1437477170": 95, + "1437477171": 94, + "1437477172": 94, + "1437477173": 93, + "1437477174": 92, + "1437477175": 91, + "1437477176": 91, + "1437477178": 90, + "1437477179": 90, + "1437477180": 90, + "1437477181": 91, + "1437477182": 90, + "1437477183": 91, + "1437477184": 91, + "1437477185": 91, + "1437477186": 91, + "1437477187": 91, + "1437477188": 92, + "1437477189": 91, + "1437477190": 92, + "1437477191": 92, + "1437477192": 93, + "1437477193": 93, + "1437477194": 93, + "1437477195": 93, + "1437477196": 94, + "1437477197": 94, + "1437477198": 94, + "1437477199": 94, + "1437477200": 93, + "1437477201": 93, + "1437477202": 93, + "1437477203": 93, + "1437477204": 93, + "1437477205": 91, + "1437477206": 90, + "1437477207": 90, + "1437477208": 90, + "1437477209": 90, + "1437477210": 88, + "1437477211": 87, + "1437477212": 89, + "1437477213": 91, + "1437477215": 93, + "1437477216": 94, + "1437477217": 94, + "1437477218": 92, + "1437477219": 92, + "1437477220": 91, + "1437477221": 91, + "1437477222": 91, + "1437477223": 91, + "1437477224": 91, + "1437477225": 91, + "1437477226": 92, + "1437477227": 93, + "1437477228": 94, + "1437477229": 93, + "1437477230": 91, + "1437477231": 91, + "1437477232": 91, + "1437477233": 91, + "1437477234": 91, + "1437477235": 89, + "1437477236": 88, + "1437477237": 88, + "1437477238": 89, + "1437477239": 89, + "1437477240": 89, + "1437477241": 90, + "1437477242": 90, + "1437477243": 89, + "1437477244": 90, + "1437477245": 90, + "1437477247": 91, + "1437477248": 92, + "1437477249": 92, + "1437477250": 92, + "1437477251": 92, + "1437477252": 91, + "1437477253": 91, + "1437477254": 91, + "1437477255": 91, + "1437477256": 91, + "1437477257": 91, + "1437477258": 93, + "1437477259": 94, + "1437477260": 95, + "1437477261": 95, + "1437477262": 95, + "1437477263": 95, + "1437477264": 94, + "1437477265": 94, + "1437477266": 94, + "1437477267": 94, + "1437477268": 94, + "1437477270": 94, + "1437477271": 94, + "1437477272": 94, + "1437477273": 94, + "1437477274": 94, + "1437477275": 94, + "1437477276": 95, + "1437477277": 96, + "1437477278": 93, + "1437477279": 94, + "1437477280": 93, + "1437477281": 93, + "1437477282": 99, + "1437477283": 107, + "1437477284": 108, + "1437477285": 107, + "1437477286": 103, + "1437477287": 97, + "1437477288": 95, + "1437477289": 96, + "1437477290": 95, + "1437477291": 95, + "1437477292": 94, + "1437477294": 92, + "1437477295": 91, + "1437477296": 89, + "1437477297": 89, + "1437477298": 88, + "1437477299": 87, + "1437477300": 87, + "1437477301": 87, + "1437477302": 88, + "1437477303": 88, + "1437477304": 88, + "1437477305": 89, + "1437477306": 91, + "1437477307": 91, + "1437477308": 92, + "1437477309": 92, + "1437477310": 92, + "1437477311": 94, + "1437477312": 94, + "1437477313": 94, + "1437477314": 96, + "1437477315": 99, + "1437477316": 98, + "1437477317": 100, + "1437477318": 99, + "1437477319": 98, + "1437477321": 99, + "1437477322": 100, + "1437477323": 99, + "1437477324": 99, + "1437477325": 100, + "1437477326": 100, + "1437477327": 97, + "1437477328": 98, + "1437477329": 99, + "1437477330": 104, + "1437477331": 104, + "1437477332": 99, + "1437477333": 98, + "1437477334": 99, + "1437477335": 101, + "1437477336": 102, + "1437477337": 99, + "1437477338": 98, + "1437477339": 96, + "1437477340": 96, + "1437477341": 96, + "1437477342": 0, + "1437477343": 14, + "1437477345": 14, + "1437477346": 14, + "1437477347": 0, + "1437477348": 0, + "1437477349": 0, + "1437477350": 0, + "1437477351": 0, + "1437477352": 0, + "1437477353": 0, + "1437477354": 0, + "1437477355": 0, + "1437477356": 0, + "1437477376": 56, + "1437477377": 59, + "1437477378": 61, + "1437477379": 59, + "1437477380": 59, + "1437477381": 59, + "1437477383": 0, + "1437477384": 0, + "1437477385": 0, + "1437477386": 0, + "1437477387": 0, + "1437477388": 0, + "1437477392": 22, + "1437477393": 22, + "1437477394": 22, + "1437477395": 22, + "1437477397": 22, + "1437477398": 22, + "1437477399": 23, + "1437477400": 23, + "1437477401": 23, + "1437477402": 23, + "1437477403": 23, + "1437477404": 0, + "1437477405": 0, + "1437477406": 0, + "1437477407": 0, + "1437477408": 0, + "1437477411": 25, + "1437477412": 25, + "1437477413": 25, + "1437477414": 26, + "1437477415": 26, + "1437477417": 27, + "1437477418": 27, + "1437477419": 26, + "1437477420": 26, + "1437477421": 26, + "1437477422": 0, + "1437477423": 0, + "1437477428": 31, + "1437477429": 31, + "1437477430": 32, + "1437477432": 32, + "1437477433": 32, + "1437477434": 32, + "1437477435": 31, + "1437477436": 31, + "1437477437": 30, + "1437477438": 32, + "1437477439": 32, + "1437477440": 32, + "1437477441": 32, + "1437477442": 31, + "1437477443": 31, + "1437477444": 31, + "1437477445": 30, + "1437477446": 31, + "1437477447": 31, + "1437477448": 31, + "1437477449": 31, + "1437477450": 30, + "1437477451": 30, + "1437477452": 30, + "1437477453": 30, + "1437477454": 30, + "1437477455": 30, + "1437477456": 30, + "1437477457": 0, + "1437477458": 0, + "1437477459": 0, + "1437477461": 0, + "1437477465": 32, + "1437477466": 32, + "1437477467": 32, + "1437477468": 32, + "1437477469": 30, + "1437477470": 30, + "1437477471": 30, + "1437477472": 29, + "1437477473": 29, + "1437477474": 28, + "1437477475": 28, + "1437477476": 28, + "1437477477": 28, + "1437477478": 27, + "1437477479": 27, + "1437477480": 28, + "1437477481": 28, + "1437477482": 28, + "1437477483": 28, + "1437477484": 28, + "1437477485": 28, + "1437477486": 30, + "1437477487": 30, + "1437477488": 30, + "1437477489": 30, + "1437477490": 30, + "1437477491": 30, + "1437477492": 30, + "1437477493": 32, + "1437477494": 32, + "1437477495": 33, + "1437477496": 33, + "1437477497": 34, + "1437477498": 33, + "1437477500": 33, + "1437477501": 33, + "1437477502": 33, + "1437477503": 33, + "1437477504": 33, + "1437477505": 33, + "1437477506": 33, + "1437477507": 33, + "1437477508": 33, + "1437477509": 29, + "1437477510": 29, + "1437477511": 27, + "1437477512": 27, + "1437477513": 26, + "1437477514": 26, + "1437477515": 25, + "1437477516": 25, + "1437477517": 25, + "1437477518": 25, + "1437477519": 25, + "1437477520": 25, + "1437477521": 25, + "1437477522": 25, + "1437477523": 25, + "1437477524": 26, + "1437477525": 26, + "1437477526": 26, + "1437477527": 26, + "1437477528": 26, + "1437477529": 26, + "1437477530": 26, + "1437477532": 26, + "1437477533": 26, + "1437477534": 26, + "1437477535": 26, + "1437477536": 25, + "1437477537": 25, + "1437477538": 25, + "1437477539": 25, + "1437477540": 25, + "1437477541": 25, + "1437477542": 25, + "1437477543": 25, + "1437477544": 25, + "1437477545": 25, + "1437477546": 25, + "1437477547": 26, + "1437477548": 26, + "1437477549": 26, + "1437477550": 25, + "1437477551": 25, + "1437477552": 25, + "1437477553": 25, + "1437477555": 26, + "1437477556": 26, + "1437477557": 26, + "1437477558": 25, + "1437477559": 25, + "1437477560": 25, + "1437477561": 25, + "1437477562": 25, + "1437477563": 25, + "1437477564": 24, + "1437477565": 24, + "1437477566": 24, + "1437477567": 24, + "1437477568": 24, + "1437477569": 25, + "1437477570": 25, + "1437477571": 26, + "1437477572": 26, + "1437477573": 25, + "1437477574": 25, + "1437477575": 25, + "1437477576": 0, + "1437477577": 26, + "1437477578": 26, + "1437477580": 29, + "1437477581": 29, + "1437477582": 32, + "1437477583": 35, + "1437477584": 35, + "1437477585": 38, + "1437477586": 39, + "1437477587": 39, + "1437477588": 41, + "1437477589": 41, + "1437477590": 41, + "1437477591": 41, + "1437477592": 41, + "1437477593": 40, + "1437477594": 40, + "1437477595": 40, + "1437477596": 40, + "1437477597": 40, + "1437477598": 40, + "1437477599": 37, + "1437477600": 37, + "1437477601": 37, + "1437477604": 14, + "1437477605": 14, + "1437477607": 32, + "1437477608": 39, + "1437477609": 43, + "1437477610": 47, + "1437477611": 49, + "1437477612": 49, + "1437477613": 49, + "1437477614": 50, + "1437477615": 52, + "1437477616": 52, + "1437477617": 51, + "1437477618": 49, + "1437477619": 48, + "1437477620": 48, + "1437477621": 48, + "1437477622": 49, + "1437477623": 52, + "1437477624": 56, + "1437477625": 63, + "1437477626": 65, + "1437477627": 65, + "1437477628": 66, + "1437477629": 64, + "1437477630": 64, + "1437477631": 66, + "1437477632": 63, + "1437477633": 61, + "1437477634": 62, + "1437477635": 63, + "1437477636": 62, + "1437477638": 60, + "1437477639": 60, + "1437477640": 57, + "1437477641": 57, + "1437477642": 51, + "1437477643": 42, + "1437477644": 42, + "1437477645": 42, + "1437477646": 48, + "1437477647": 49, + "1437477648": 55, + "1437477649": 61, + "1437477650": 60, + "1437477651": 56, + "1437477652": 56, + "1437477653": 56, + "1437477654": 0, + "1437477655": 0, + "1437477656": 0, + "1437477657": 0, + "1437477658": 0, + "1437477659": 0, + "1437477660": 0, + "1437477661": 0, + "1437477662": 0, + "1437477663": 0, + "1437477664": 0, + "1437477665": 36, + "1437477666": 36, + "1437477667": 35, + "1437477668": 35, + "1437477669": 32, + "1437477671": 32, + "1437477672": 29, + "1437477673": 29, + "1437477674": 29, + "1437477676": 25, + "1437477677": 25, + "1437477678": 30, + "1437477679": 30, + "1437477680": 30, + "1437477681": 0, + "1437477682": 0, + "1437477683": 0, + "1437477684": 0, + "1437477685": 0, + "1437477688": 25, + "1437477689": 25, + "1437477690": 35, + "1437477691": 36, + "1437477692": 36, + "1437477693": 32, + "1437477695": 32, + "1437477696": 33, + "1437477697": 33, + "1437477698": 33, + "1437477699": 34, + "1437477700": 34, + "1437477701": 34, + "1437477702": 0, + "1437477703": 0, + "1437477704": 0, + "1437477705": 0, + "1437477706": 0 + }, + "distances": { + "1437474517": 0, + "1437474518": 0, + "1437474519": 0.01, + "1437474520": 0.01, + "1437474521": 0.01, + "1437474522": 0.01, + "1437474523": 0.01, + "1437474524": 0.01, + "1437474525": 0.01, + "1437474526": 0.01, + "1437474527": 0.01, + "1437474528": 0.01, + "1437474529": 0.01, + "1437474530": 0.02, + "1437474532": 0.02, + "1437474533": 0.02, + "1437474534": 0.02, + "1437474535": 0.03, + "1437474536": 0.03, + "1437474537": 0.03, + "1437474538": 0.04, + "1437474539": 0.04, + "1437474540": 0.05, + "1437474541": 0.05, + "1437474542": 0.05, + "1437474543": 0.06, + "1437474544": 0.06, + "1437474545": 0.06, + "1437474546": 0.07, + "1437474547": 0.07, + "1437474548": 0.08, + "1437474549": 0.09, + "1437474550": 0.09, + "1437474551": 0.1, + "1437474552": 0.11, + "1437474553": 0.11, + "1437474554": 0.12, + "1437474555": 0.13, + "1437474556": 0.14, + "1437474557": 0.15, + "1437474558": 0.16, + "1437474559": 0.17, + "1437474560": 0.18, + "1437474561": 0.19, + "1437474562": 0.2, + "1437474563": 0.21, + "1437474564": 0.22, + "1437474566": 0.23, + "1437474567": 0.24, + "1437474568": 0.25, + "1437474569": 0.26, + "1437474570": 0.28, + "1437474571": 0.29, + "1437474572": 0.3, + "1437474573": 0.31, + "1437474574": 0.32, + "1437474575": 0.33, + "1437474576": 0.34, + "1437474577": 0.36, + "1437474578": 0.37, + "1437474579": 0.38, + "1437474580": 0.39, + "1437474581": 0.4, + "1437474582": 0.41, + "1437474583": 0.43, + "1437474584": 0.44, + "1437474585": 0.45, + "1437474586": 0.46, + "1437474587": 0.47, + "1437474588": 0.48, + "1437474589": 0.49, + "1437474590": 0.5, + "1437474591": 0.52, + "1437474592": 0.53, + "1437474593": 0.54, + "1437474594": 0.55, + "1437474595": 0.56, + "1437474596": 0.57, + "1437474597": 0.58, + "1437474598": 0.59, + "1437474599": 0.6, + "1437474600": 0.61, + "1437474601": 0.62, + "1437474603": 0.63, + "1437474604": 0.65, + "1437474605": 0.66, + "1437474606": 0.67, + "1437474607": 0.68, + "1437474608": 0.69, + "1437474609": 0.7, + "1437474610": 0.71, + "1437474611": 0.72, + "1437474612": 0.73, + "1437474613": 0.75, + "1437474614": 0.76, + "1437474615": 0.77, + "1437474616": 0.78, + "1437474617": 0.79, + "1437474618": 0.8, + "1437474619": 0.81, + "1437474620": 0.82, + "1437474621": 0.83, + "1437474622": 0.84, + "1437474623": 0.85, + "1437474624": 0.87, + "1437474626": 0.88, + "1437474627": 0.89, + "1437474628": 0.9, + "1437474629": 0.91, + "1437474630": 0.92, + "1437474631": 0.93, + "1437474632": 0.94, + "1437474633": 0.95, + "1437474634": 0.96, + "1437474635": 0.97, + "1437474636": 0.97, + "1437474637": 0.98, + "1437474638": 0.99, + "1437474639": 1, + "1437474640": 1.01, + "1437474641": 1.02, + "1437474642": 1.03, + "1437474643": 1.04, + "1437474644": 1.05, + "1437474645": 1.06, + "1437474646": 1.07, + "1437474647": 1.08, + "1437474648": 1.08, + "1437474649": 1.09, + "1437474650": 1.1, + "1437474652": 1.11, + "1437474653": 1.11, + "1437474654": 1.12, + "1437474655": 1.12, + "1437474656": 1.13, + "1437474657": 1.13, + "1437474658": 1.14, + "1437474659": 1.14, + "1437474660": 1.15, + "1437474661": 1.15, + "1437474662": 1.16, + "1437474663": 1.16, + "1437474664": 1.17, + "1437474665": 1.17, + "1437474666": 1.18, + "1437474667": 1.18, + "1437474668": 1.19, + "1437474669": 1.19, + "1437474670": 1.19, + "1437474671": 1.2, + "1437474672": 1.2, + "1437474673": 1.2, + "1437474674": 1.21, + "1437474675": 1.21, + "1437474676": 1.21, + "1437474677": 1.21, + "1437474678": 1.22, + "1437474679": 1.22, + "1437474681": 1.22, + "1437474682": 1.23, + "1437474683": 1.23, + "1437474684": 1.23, + "1437474685": 1.24, + "1437474686": 1.24, + "1437474687": 1.24, + "1437474688": 1.25, + "1437474689": 1.25, + "1437474690": 1.25, + "1437474691": 1.26, + "1437474692": 1.26, + "1437474693": 1.26, + "1437474694": 1.27, + "1437474695": 1.27, + "1437474696": 1.27, + "1437474697": 1.28, + "1437474698": 1.28, + "1437474699": 1.28, + "1437474700": 1.29, + "1437474701": 1.29, + "1437474702": 1.29, + "1437474703": 1.3, + "1437474705": 1.3, + "1437474706": 1.3, + "1437474707": 1.31, + "1437474708": 1.31, + "1437474709": 1.32, + "1437474710": 1.32, + "1437474711": 1.32, + "1437474712": 1.33, + "1437474713": 1.33, + "1437474714": 1.33, + "1437474715": 1.34, + "1437474716": 1.34, + "1437474717": 1.35, + "1437474718": 1.35, + "1437474719": 1.35, + "1437474720": 1.36, + "1437474721": 1.36, + "1437474722": 1.37, + "1437474723": 1.37, + "1437474724": 1.37, + "1437474725": 1.38, + "1437474726": 1.38, + "1437474727": 1.39, + "1437474728": 1.39, + "1437474729": 1.4, + "1437474730": 1.4, + "1437474732": 1.4, + "1437474733": 1.41, + "1437474734": 1.41, + "1437474735": 1.42, + "1437474736": 1.42, + "1437474737": 1.42, + "1437474738": 1.43, + "1437474739": 1.43, + "1437474740": 1.44, + "1437474741": 1.44, + "1437474742": 1.45, + "1437474743": 1.45, + "1437474744": 1.46, + "1437474745": 1.46, + "1437474746": 1.47, + "1437474747": 1.48, + "1437474748": 1.49, + "1437474749": 1.5, + "1437474750": 1.5, + "1437474751": 1.51, + "1437474752": 1.52, + "1437474753": 1.53, + "1437474754": 1.53, + "1437474755": 1.54, + "1437474756": 1.55, + "1437474757": 1.55, + "1437474758": 1.56, + "1437474760": 1.57, + "1437474761": 1.57, + "1437474762": 1.58, + "1437474763": 1.58, + "1437474764": 1.59, + "1437474765": 1.59, + "1437474766": 1.6, + "1437474767": 1.6, + "1437474768": 1.61, + "1437474769": 1.61, + "1437474770": 1.62, + "1437474771": 1.62, + "1437474772": 1.63, + "1437474773": 1.63, + "1437474774": 1.64, + "1437474775": 1.64, + "1437474776": 1.65, + "1437474777": 1.65, + "1437474778": 1.66, + "1437474779": 1.66, + "1437474780": 1.67, + "1437474781": 1.67, + "1437474782": 1.67, + "1437474783": 1.68, + "1437474785": 1.68, + "1437474786": 1.69, + "1437474787": 1.69, + "1437474788": 1.7, + "1437474789": 1.7, + "1437474790": 1.71, + "1437474791": 1.71, + "1437474792": 1.72, + "1437474793": 1.72, + "1437474794": 1.73, + "1437474795": 1.73, + "1437474796": 1.73, + "1437474797": 1.74, + "1437474798": 1.74, + "1437474799": 1.75, + "1437474800": 1.75, + "1437474801": 1.76, + "1437474802": 1.76, + "1437474803": 1.77, + "1437474804": 1.77, + "1437474805": 1.78, + "1437474806": 1.78, + "1437474808": 1.79, + "1437474809": 1.79, + "1437474810": 1.8, + "1437474811": 1.81, + "1437474812": 1.81, + "1437474813": 1.82, + "1437474814": 1.83, + "1437474815": 1.83, + "1437474816": 1.84, + "1437474817": 1.85, + "1437474818": 1.86, + "1437474819": 1.86, + "1437474820": 1.87, + "1437474821": 1.88, + "1437474822": 1.88, + "1437474823": 1.89, + "1437474824": 1.9, + "1437474825": 1.9, + "1437474827": 1.91, + "1437474828": 1.92, + "1437474829": 1.93, + "1437474830": 1.93, + "1437474831": 1.94, + "1437474832": 1.95, + "1437474833": 1.96, + "1437474834": 1.97, + "1437474835": 1.98, + "1437474836": 1.99, + "1437474837": 2, + "1437474838": 2.01, + "1437474839": 2.02, + "1437474840": 2.03, + "1437474841": 2.04, + "1437474842": 2.05, + "1437474843": 2.06, + "1437474844": 2.08, + "1437474845": 2.09, + "1437474846": 2.1, + "1437474847": 2.11, + "1437474848": 2.12, + "1437474849": 2.14, + "1437474850": 2.15, + "1437474851": 2.16, + "1437474852": 2.18, + "1437474853": 2.19, + "1437474854": 2.2, + "1437474855": 2.22, + "1437474856": 2.23, + "1437474857": 2.24, + "1437474859": 2.26, + "1437474860": 2.27, + "1437474861": 2.28, + "1437474862": 2.29, + "1437474863": 2.3, + "1437474864": 2.32, + "1437474865": 2.33, + "1437474866": 2.34, + "1437474867": 2.35, + "1437474868": 2.36, + "1437474869": 2.38, + "1437474870": 2.39, + "1437474871": 2.4, + "1437474872": 2.41, + "1437474873": 2.42, + "1437474874": 2.43, + "1437474875": 2.44, + "1437474876": 2.45, + "1437474877": 2.47, + "1437474878": 2.48, + "1437474879": 2.49, + "1437474880": 2.5, + "1437474881": 2.51, + "1437474882": 2.52, + "1437474883": 2.53, + "1437474884": 2.54, + "1437474885": 2.56, + "1437474886": 2.57, + "1437474887": 2.58, + "1437474888": 2.59, + "1437474890": 2.6, + "1437474891": 2.62, + "1437474892": 2.63, + "1437474893": 2.64, + "1437474894": 2.65, + "1437474895": 2.67, + "1437474896": 2.68, + "1437474897": 2.69, + "1437474898": 2.71, + "1437474899": 2.72, + "1437474900": 2.73, + "1437474901": 2.74, + "1437474902": 2.75, + "1437474903": 2.77, + "1437474904": 2.78, + "1437474905": 2.79, + "1437474906": 2.8, + "1437474907": 2.81, + "1437474908": 2.82, + "1437474909": 2.84, + "1437474910": 2.85, + "1437474911": 2.86, + "1437474912": 2.87, + "1437474913": 2.88, + "1437474914": 2.89, + "1437474915": 2.91, + "1437474916": 2.92, + "1437474917": 2.93, + "1437474918": 2.95, + "1437474919": 2.96, + "1437474920": 2.97, + "1437474921": 2.99, + "1437474923": 3, + "1437474924": 3.01, + "1437474925": 3.03, + "1437474926": 3.04, + "1437474927": 3.06, + "1437474928": 3.07, + "1437474929": 3.08, + "1437474930": 3.1, + "1437474931": 3.11, + "1437474932": 3.13, + "1437474933": 3.14, + "1437474934": 3.15, + "1437474935": 3.16, + "1437474936": 3.17, + "1437474937": 3.18, + "1437474938": 3.19, + "1437474939": 3.2, + "1437474940": 3.21, + "1437474941": 3.22, + "1437474942": 3.23, + "1437474943": 3.23, + "1437474944": 3.24, + "1437474945": 3.25, + "1437474946": 3.26, + "1437474947": 3.27, + "1437474948": 3.27, + "1437474949": 3.28, + "1437474950": 3.29, + "1437474951": 3.3, + "1437474952": 3.31, + "1437474953": 3.32, + "1437474954": 3.33, + "1437474955": 3.33, + "1437474956": 3.34, + "1437474957": 3.35, + "1437474958": 3.36, + "1437474959": 3.37, + "1437474960": 3.38, + "1437474962": 3.39, + "1437474963": 3.4, + "1437474964": 3.42, + "1437474965": 3.43, + "1437474966": 3.44, + "1437474967": 3.45, + "1437474968": 3.46, + "1437474969": 3.47, + "1437474970": 3.49, + "1437474971": 3.5, + "1437474972": 3.51, + "1437474973": 3.52, + "1437474974": 3.54, + "1437474975": 3.55, + "1437474976": 3.56, + "1437474977": 3.57, + "1437474978": 3.58, + "1437474979": 3.6, + "1437474980": 3.61, + "1437474981": 3.62, + "1437474982": 3.63, + "1437474983": 3.65, + "1437474984": 3.66, + "1437474985": 3.67, + "1437474986": 3.68, + "1437474987": 3.7, + "1437474988": 3.71, + "1437474989": 3.72, + "1437474990": 3.74, + "1437474992": 3.75, + "1437474993": 3.77, + "1437474994": 3.78, + "1437474995": 3.8, + "1437474996": 3.81, + "1437474997": 3.83, + "1437474998": 3.84, + "1437474999": 3.85, + "1437475000": 3.86, + "1437475001": 3.88, + "1437475002": 3.89, + "1437475003": 3.91, + "1437475004": 3.92, + "1437475005": 3.94, + "1437475006": 3.95, + "1437475007": 3.97, + "1437475008": 3.98, + "1437475009": 4, + "1437475010": 4.02, + "1437475012": 4.04, + "1437475013": 4.05, + "1437475014": 4.07, + "1437475015": 4.09, + "1437475016": 4.11, + "1437475017": 4.12, + "1437475018": 4.14, + "1437475019": 4.16, + "1437475020": 4.18, + "1437475021": 4.2, + "1437475022": 4.21, + "1437475023": 4.23, + "1437475024": 4.25, + "1437475025": 4.27, + "1437475026": 4.29, + "1437475027": 4.3, + "1437475029": 4.32, + "1437475030": 4.34, + "1437475031": 4.36, + "1437475032": 4.37, + "1437475033": 4.39, + "1437475034": 4.4, + "1437475035": 4.42, + "1437475036": 4.44, + "1437475037": 4.45, + "1437475038": 4.47, + "1437475039": 4.48, + "1437475040": 4.5, + "1437475041": 4.51, + "1437475042": 4.53, + "1437475043": 4.54, + "1437475044": 4.55, + "1437475045": 4.57, + "1437475046": 4.58, + "1437475047": 4.6, + "1437475048": 4.61, + "1437475049": 4.62, + "1437475050": 4.63, + "1437475051": 4.65, + "1437475052": 4.66, + "1437475054": 4.67, + "1437475055": 4.68, + "1437475056": 4.7, + "1437475057": 4.71, + "1437475058": 4.72, + "1437475059": 4.73, + "1437475060": 4.75, + "1437475061": 4.76, + "1437475062": 4.77, + "1437475063": 4.78, + "1437475064": 4.79, + "1437475065": 4.8, + "1437475066": 4.82, + "1437475067": 4.83, + "1437475068": 4.84, + "1437475069": 4.85, + "1437475070": 4.86, + "1437475071": 4.87, + "1437475072": 4.89, + "1437475073": 4.9, + "1437475074": 4.91, + "1437475075": 4.92, + "1437475076": 4.93, + "1437475077": 4.95, + "1437475078": 4.96, + "1437475079": 4.97, + "1437475080": 4.99, + "1437475081": 5, + "1437475083": 5.01, + "1437475084": 5.02, + "1437475085": 5.04, + "1437475086": 5.05, + "1437475087": 5.06, + "1437475088": 5.07, + "1437475089": 5.08, + "1437475090": 5.09, + "1437475091": 5.11, + "1437475092": 5.12, + "1437475093": 5.13, + "1437475094": 5.14, + "1437475095": 5.15, + "1437475096": 5.15, + "1437475097": 5.16, + "1437475098": 5.17, + "1437475099": 5.18, + "1437475100": 5.19, + "1437475101": 5.2, + "1437475102": 5.21, + "1437475103": 5.22, + "1437475104": 5.22, + "1437475105": 5.23, + "1437475106": 5.24, + "1437475107": 5.25, + "1437475108": 5.26, + "1437475109": 5.27, + "1437475110": 5.28, + "1437475112": 5.29, + "1437475113": 5.3, + "1437475114": 5.31, + "1437475115": 5.32, + "1437475116": 5.33, + "1437475117": 5.34, + "1437475118": 5.35, + "1437475119": 5.36, + "1437475120": 5.36, + "1437475121": 5.37, + "1437475122": 5.38, + "1437475123": 5.39, + "1437475124": 5.4, + "1437475125": 5.4, + "1437475126": 5.41, + "1437475127": 5.42, + "1437475128": 5.43, + "1437475129": 5.43, + "1437475130": 5.44, + "1437475131": 5.45, + "1437475132": 5.46, + "1437475133": 5.47, + "1437475134": 5.48, + "1437475135": 5.48, + "1437475136": 5.49, + "1437475137": 5.5, + "1437475138": 5.51, + "1437475139": 5.52, + "1437475140": 5.53, + "1437475141": 5.54, + "1437475142": 5.55, + "1437475143": 5.57, + "1437475145": 5.58, + "1437475146": 5.59, + "1437475147": 5.6, + "1437475148": 5.61, + "1437475149": 5.63, + "1437475150": 5.64, + "1437475151": 5.65, + "1437475152": 5.67, + "1437475153": 5.68, + "1437475154": 5.69, + "1437475155": 5.71, + "1437475156": 5.72, + "1437475157": 5.73, + "1437475158": 5.75, + "1437475159": 5.76, + "1437475160": 5.77, + "1437475161": 5.78, + "1437475162": 5.8, + "1437475163": 5.81, + "1437475164": 5.82, + "1437475165": 5.84, + "1437475166": 5.85, + "1437475167": 5.86, + "1437475168": 5.88, + "1437475169": 5.89, + "1437475170": 5.91, + "1437475171": 5.92, + "1437475173": 5.93, + "1437475174": 5.95, + "1437475175": 5.96, + "1437475176": 5.97, + "1437475177": 5.99, + "1437475178": 6, + "1437475179": 6.01, + "1437475180": 6.02, + "1437475181": 6.04, + "1437475182": 6.05, + "1437475183": 6.06, + "1437475184": 6.07, + "1437475185": 6.08, + "1437475186": 6.1, + "1437475187": 6.11, + "1437475188": 6.12, + "1437475189": 6.13, + "1437475190": 6.14, + "1437475191": 6.15, + "1437475192": 6.17, + "1437475193": 6.18, + "1437475194": 6.19, + "1437475195": 6.2, + "1437475196": 6.21, + "1437475197": 6.22, + "1437475198": 6.23, + "1437475200": 6.25, + "1437475201": 6.26, + "1437475202": 6.27, + "1437475203": 6.28, + "1437475204": 6.29, + "1437475205": 6.3, + "1437475206": 6.32, + "1437475207": 6.33, + "1437475208": 6.34, + "1437475209": 6.35, + "1437475210": 6.36, + "1437475211": 6.38, + "1437475212": 6.39, + "1437475213": 6.4, + "1437475214": 6.41, + "1437475215": 6.42, + "1437475216": 6.44, + "1437475217": 6.45, + "1437475218": 6.46, + "1437475219": 6.47, + "1437475220": 6.48, + "1437475221": 6.49, + "1437475222": 6.5, + "1437475223": 6.51, + "1437475224": 6.52, + "1437475225": 6.54, + "1437475226": 6.55, + "1437475227": 6.56, + "1437475228": 6.57, + "1437475230": 6.58, + "1437475231": 6.59, + "1437475232": 6.6, + "1437475233": 6.61, + "1437475234": 6.62, + "1437475235": 6.64, + "1437475236": 6.65, + "1437475237": 6.66, + "1437475238": 6.67, + "1437475239": 6.68, + "1437475240": 6.69, + "1437475241": 6.7, + "1437475242": 6.72, + "1437475243": 6.73, + "1437475244": 6.74, + "1437475245": 6.75, + "1437475246": 6.76, + "1437475247": 6.77, + "1437475248": 6.78, + "1437475249": 6.8, + "1437475250": 6.81, + "1437475251": 6.82, + "1437475252": 6.83, + "1437475253": 6.84, + "1437475254": 6.85, + "1437475255": 6.86, + "1437475256": 6.87, + "1437475257": 6.89, + "1437475258": 6.9, + "1437475259": 6.91, + "1437475260": 6.92, + "1437475261": 6.93, + "1437475262": 6.94, + "1437475263": 6.95, + "1437475264": 6.95, + "1437475265": 6.96, + "1437475266": 6.97, + "1437475267": 6.98, + "1437475269": 6.98, + "1437475270": 6.99, + "1437475271": 7, + "1437475272": 7, + "1437475273": 7.01, + "1437475274": 7.01, + "1437475275": 7.02, + "1437475276": 7.02, + "1437475277": 7.03, + "1437475278": 7.04, + "1437475279": 7.04, + "1437475280": 7.05, + "1437475281": 7.05, + "1437475282": 7.05, + "1437475283": 7.06, + "1437475284": 7.06, + "1437475285": 7.07, + "1437475286": 7.07, + "1437475287": 7.08, + "1437475288": 7.08, + "1437475289": 7.09, + "1437475290": 7.09, + "1437475291": 7.1, + "1437475292": 7.1, + "1437475293": 7.11, + "1437475294": 7.11, + "1437475295": 7.12, + "1437475296": 7.12, + "1437475297": 7.13, + "1437475298": 7.13, + "1437475299": 7.14, + "1437475300": 7.14, + "1437475301": 7.15, + "1437475302": 7.16, + "1437475303": 7.16, + "1437475304": 7.17, + "1437475305": 7.17, + "1437475306": 7.18, + "1437475308": 7.19, + "1437475309": 7.2, + "1437475310": 7.21, + "1437475311": 7.21, + "1437475312": 7.22, + "1437475313": 7.23, + "1437475314": 7.24, + "1437475315": 7.25, + "1437475316": 7.26, + "1437475317": 7.28, + "1437475318": 7.29, + "1437475319": 7.3, + "1437475320": 7.31, + "1437475321": 7.33, + "1437475322": 7.34, + "1437475323": 7.35, + "1437475324": 7.37, + "1437475325": 7.38, + "1437475326": 7.4, + "1437475327": 7.41, + "1437475328": 7.43, + "1437475329": 7.44, + "1437475330": 7.45, + "1437475331": 7.47, + "1437475332": 7.48, + "1437475333": 7.49, + "1437475334": 7.51, + "1437475335": 7.52, + "1437475336": 7.53, + "1437475337": 7.54, + "1437475338": 7.55, + "1437475339": 7.56, + "1437475340": 7.57, + "1437475342": 7.58, + "1437475343": 7.59, + "1437475344": 7.61, + "1437475345": 7.62, + "1437475346": 7.63, + "1437475347": 7.64, + "1437475348": 7.65, + "1437475349": 7.66, + "1437475350": 7.67, + "1437475351": 7.68, + "1437475352": 7.7, + "1437475353": 7.71, + "1437475354": 7.72, + "1437475355": 7.73, + "1437475356": 7.74, + "1437475357": 7.75, + "1437475358": 7.76, + "1437475359": 7.78, + "1437475360": 7.79, + "1437475361": 7.8, + "1437475362": 7.81, + "1437475363": 7.83, + "1437475364": 7.84, + "1437475365": 7.85, + "1437475366": 7.87, + "1437475367": 7.88, + "1437475368": 7.89, + "1437475369": 7.9, + "1437475371": 7.91, + "1437475372": 7.92, + "1437475373": 7.93, + "1437475374": 7.94, + "1437475375": 7.95, + "1437475376": 7.96, + "1437475377": 7.97, + "1437475378": 7.99, + "1437475379": 8, + "1437475380": 8.01, + "1437475381": 8.03, + "1437475382": 8.04, + "1437475383": 8.05, + "1437475384": 8.06, + "1437475385": 8.08, + "1437475386": 8.09, + "1437475387": 8.1, + "1437475388": 8.11, + "1437475389": 8.12, + "1437475390": 8.13, + "1437475391": 8.14, + "1437475392": 8.15, + "1437475393": 8.16, + "1437475394": 8.17, + "1437475395": 8.18, + "1437475396": 8.19, + "1437475397": 8.2, + "1437475398": 8.21, + "1437475400": 8.22, + "1437475401": 8.23, + "1437475402": 8.24, + "1437475403": 8.25, + "1437475404": 8.26, + "1437475405": 8.27, + "1437475406": 8.28, + "1437475407": 8.29, + "1437475408": 8.3, + "1437475409": 8.31, + "1437475410": 8.32, + "1437475411": 8.33, + "1437475412": 8.34, + "1437475413": 8.35, + "1437475414": 8.36, + "1437475415": 8.37, + "1437475416": 8.38, + "1437475417": 8.39, + "1437475418": 8.4, + "1437475419": 8.41, + "1437475420": 8.42, + "1437475421": 8.43, + "1437475422": 8.44, + "1437475423": 8.45, + "1437475424": 8.46, + "1437475425": 8.47, + "1437475426": 8.48, + "1437475427": 8.49, + "1437475428": 8.5, + "1437475429": 8.51, + "1437475430": 8.52, + "1437475431": 8.53, + "1437475433": 8.55, + "1437475434": 8.56, + "1437475435": 8.57, + "1437475436": 8.58, + "1437475437": 8.59, + "1437475438": 8.6, + "1437475439": 8.62, + "1437475440": 8.63, + "1437475441": 8.64, + "1437475442": 8.65, + "1437475443": 8.66, + "1437475444": 8.68, + "1437475445": 8.69, + "1437475446": 8.7, + "1437475447": 8.71, + "1437475448": 8.73, + "1437475449": 8.74, + "1437475450": 8.75, + "1437475451": 8.76, + "1437475452": 8.77, + "1437475453": 8.79, + "1437475454": 8.8, + "1437475455": 8.81, + "1437475456": 8.82, + "1437475457": 8.83, + "1437475458": 8.84, + "1437475459": 8.85, + "1437475460": 8.86, + "1437475461": 8.88, + "1437475462": 8.89, + "1437475463": 8.9, + "1437475464": 8.91, + "1437475466": 8.92, + "1437475467": 8.93, + "1437475468": 8.94, + "1437475469": 8.95, + "1437475470": 8.96, + "1437475471": 8.97, + "1437475472": 8.97, + "1437475473": 8.98, + "1437475474": 8.99, + "1437475475": 9, + "1437475476": 9.01, + "1437475477": 9.02, + "1437475478": 9.02, + "1437475479": 9.03, + "1437475480": 9.04, + "1437475481": 9.04, + "1437475482": 9.05, + "1437475483": 9.05, + "1437475484": 9.05, + "1437475485": 9.06, + "1437475486": 9.06, + "1437475487": 9.06, + "1437475488": 9.06, + "1437475489": 9.06, + "1437475490": 9.06, + "1437475491": 9.06, + "1437475492": 9.06, + "1437475493": 9.06, + "1437475494": 9.06, + "1437475495": 9.06, + "1437475496": 9.06, + "1437475497": 9.07, + "1437475498": 9.07, + "1437475499": 9.07, + "1437475500": 9.07, + "1437475501": 9.08, + "1437475502": 9.08, + "1437475503": 9.08, + "1437475504": 9.09, + "1437475505": 9.09, + "1437475506": 9.09, + "1437475507": 9.1, + "1437475508": 9.1, + "1437475510": 9.11, + "1437475511": 9.11, + "1437475512": 9.12, + "1437475513": 9.12, + "1437475514": 9.13, + "1437475515": 9.13, + "1437475516": 9.14, + "1437475517": 9.14, + "1437475518": 9.15, + "1437475519": 9.16, + "1437475520": 9.16, + "1437475521": 9.17, + "1437475522": 9.17, + "1437475523": 9.18, + "1437475524": 9.19, + "1437475525": 9.19, + "1437475526": 9.2, + "1437475527": 9.21, + "1437475528": 9.21, + "1437475529": 9.22, + "1437475530": 9.23, + "1437475531": 9.24, + "1437475532": 9.24, + "1437475533": 9.25, + "1437475534": 9.26, + "1437475535": 9.26, + "1437475536": 9.27, + "1437475537": 9.28, + "1437475538": 9.29, + "1437475539": 9.3, + "1437475540": 9.3, + "1437475541": 9.31, + "1437475542": 9.32, + "1437475543": 9.33, + "1437475544": 9.33, + "1437475545": 9.34, + "1437475546": 9.35, + "1437475547": 9.36, + "1437475548": 9.37, + "1437475549": 9.37, + "1437475551": 9.38, + "1437475552": 9.39, + "1437475553": 9.4, + "1437475554": 9.41, + "1437475555": 9.41, + "1437475556": 9.42, + "1437475557": 9.43, + "1437475558": 9.44, + "1437475559": 9.45, + "1437475560": 9.46, + "1437475561": 9.46, + "1437475562": 9.47, + "1437475563": 9.48, + "1437475564": 9.49, + "1437475565": 9.5, + "1437475566": 9.51, + "1437475567": 9.51, + "1437475568": 9.52, + "1437475569": 9.53, + "1437475570": 9.54, + "1437475571": 9.55, + "1437475572": 9.55, + "1437475573": 9.56, + "1437475574": 9.57, + "1437475575": 9.58, + "1437475576": 9.59, + "1437475577": 9.59, + "1437475578": 9.6, + "1437475580": 9.61, + "1437475581": 9.62, + "1437475582": 9.63, + "1437475583": 9.63, + "1437475584": 9.64, + "1437475585": 9.65, + "1437475586": 9.66, + "1437475587": 9.66, + "1437475588": 9.67, + "1437475589": 9.68, + "1437475590": 9.69, + "1437475591": 9.69, + "1437475592": 9.7, + "1437475593": 9.71, + "1437475594": 9.71, + "1437475595": 9.72, + "1437475596": 9.72, + "1437475597": 9.73, + "1437475598": 9.73, + "1437475599": 9.73, + "1437475600": 9.73, + "1437475601": 9.73, + "1437475602": 9.74, + "1437475603": 9.74, + "1437475604": 9.74, + "1437475605": 9.74, + "1437475606": 9.74, + "1437475607": 9.74, + "1437475608": 9.74, + "1437475610": 9.74, + "1437475611": 9.74, + "1437475612": 9.74, + "1437475613": 9.75, + "1437475614": 9.75, + "1437475615": 9.75, + "1437475616": 9.76, + "1437475617": 9.76, + "1437475618": 9.76, + "1437475619": 9.76, + "1437475620": 9.77, + "1437475621": 9.77, + "1437475622": 9.77, + "1437475623": 9.77, + "1437475624": 9.78, + "1437475625": 9.78, + "1437475626": 9.78, + "1437475627": 9.79, + "1437475628": 9.79, + "1437475629": 9.79, + "1437475630": 9.8, + "1437475631": 9.8, + "1437475632": 9.81, + "1437475633": 9.81, + "1437475634": 9.82, + "1437475636": 9.82, + "1437475637": 9.83, + "1437475638": 9.83, + "1437475639": 9.84, + "1437475640": 9.84, + "1437475641": 9.85, + "1437475642": 9.85, + "1437475643": 9.86, + "1437475644": 9.87, + "1437475645": 9.87, + "1437475646": 9.88, + "1437475647": 9.88, + "1437475648": 9.89, + "1437475649": 9.9, + "1437475650": 9.9, + "1437475651": 9.91, + "1437475652": 9.92, + "1437475653": 9.92, + "1437475654": 9.93, + "1437475655": 9.94, + "1437475656": 9.94, + "1437475657": 9.95, + "1437475658": 9.96, + "1437475659": 9.96, + "1437475660": 9.97, + "1437475662": 9.98, + "1437475663": 9.98, + "1437475664": 9.99, + "1437475665": 10, + "1437475666": 10, + "1437475667": 10.01, + "1437475668": 10.01, + "1437475669": 10.02, + "1437475670": 10.03, + "1437475671": 10.03, + "1437475672": 10.04, + "1437475673": 10.05, + "1437475674": 10.05, + "1437475675": 10.06, + "1437475676": 10.07, + "1437475677": 10.07, + "1437475678": 10.08, + "1437475679": 10.08, + "1437475680": 10.09, + "1437475681": 10.09, + "1437475682": 10.1, + "1437475683": 10.1, + "1437475684": 10.11, + "1437475685": 10.11, + "1437475686": 10.11, + "1437475687": 10.12, + "1437475688": 10.12, + "1437475689": 10.13, + "1437475690": 10.13, + "1437475691": 10.14, + "1437475693": 10.14, + "1437475694": 10.15, + "1437475695": 10.15, + "1437475696": 10.16, + "1437475697": 10.17, + "1437475698": 10.17, + "1437475699": 10.18, + "1437475700": 10.19, + "1437475701": 10.19, + "1437475702": 10.2, + "1437475703": 10.2, + "1437475704": 10.21, + "1437475705": 10.21, + "1437475706": 10.21, + "1437475707": 10.22, + "1437475708": 10.22, + "1437475709": 10.22, + "1437475710": 10.23, + "1437475711": 10.23, + "1437475712": 10.23, + "1437475713": 10.23, + "1437475714": 10.24, + "1437475715": 10.24, + "1437475716": 10.24, + "1437475717": 10.24, + "1437475718": 10.24, + "1437475719": 10.25, + "1437475720": 10.25, + "1437475721": 10.25, + "1437475722": 10.25, + "1437475724": 10.26, + "1437475725": 10.26, + "1437475726": 10.26, + "1437475727": 10.26, + "1437475728": 10.26, + "1437475729": 10.27, + "1437475730": 10.27, + "1437475731": 10.27, + "1437475732": 10.27, + "1437475733": 10.27, + "1437475734": 10.28, + "1437475735": 10.28, + "1437475736": 10.28, + "1437475737": 10.28, + "1437475738": 10.28, + "1437475739": 10.29, + "1437475740": 10.29, + "1437475741": 10.29, + "1437475742": 10.29, + "1437475743": 10.3, + "1437475744": 10.3, + "1437475745": 10.31, + "1437475746": 10.31, + "1437475747": 10.31, + "1437475748": 10.31, + "1437475749": 10.32, + "1437475750": 10.32, + "1437475751": 10.32, + "1437475752": 10.33, + "1437475753": 10.33, + "1437475754": 10.33, + "1437475755": 10.33, + "1437475756": 10.33, + "1437475758": 10.33, + "1437475759": 10.34, + "1437475760": 10.34, + "1437475761": 10.34, + "1437475762": 10.34, + "1437475763": 10.34, + "1437475764": 10.35, + "1437475765": 10.35, + "1437475766": 10.35, + "1437475767": 10.35, + "1437475768": 10.35, + "1437475769": 10.35, + "1437475770": 10.36, + "1437475771": 10.36, + "1437475772": 10.36, + "1437475773": 10.36, + "1437475774": 10.37, + "1437475775": 10.37, + "1437475776": 10.37, + "1437475777": 10.37, + "1437475778": 10.37, + "1437475779": 10.38, + "1437475780": 10.38, + "1437475781": 10.38, + "1437475782": 10.38, + "1437475783": 10.39, + "1437475784": 10.39, + "1437475785": 10.39, + "1437475786": 10.39, + "1437475787": 10.39, + "1437475788": 10.4, + "1437475789": 10.4, + "1437475791": 10.4, + "1437475792": 10.4, + "1437475793": 10.41, + "1437475794": 10.41, + "1437475795": 10.41, + "1437475796": 10.41, + "1437475797": 10.41, + "1437475798": 10.42, + "1437475799": 10.42, + "1437475800": 10.42, + "1437475801": 10.42, + "1437475802": 10.43, + "1437475803": 10.43, + "1437475804": 10.43, + "1437475805": 10.43, + "1437475806": 10.43, + "1437475807": 10.44, + "1437475808": 10.44, + "1437475809": 10.44, + "1437475810": 10.44, + "1437475811": 10.45, + "1437475812": 10.45, + "1437475813": 10.45, + "1437475814": 10.45, + "1437475815": 10.46, + "1437475816": 10.46, + "1437475817": 10.46, + "1437475818": 10.46, + "1437475819": 10.46, + "1437475821": 10.47, + "1437475822": 10.47, + "1437475823": 10.47, + "1437475824": 10.47, + "1437475825": 10.48, + "1437475826": 10.48, + "1437475827": 10.48, + "1437475828": 10.48, + "1437475829": 10.48, + "1437475830": 10.49, + "1437475831": 10.49, + "1437475832": 10.49, + "1437475833": 10.49, + "1437475834": 10.49, + "1437475835": 10.5, + "1437475836": 10.5, + "1437475837": 10.5, + "1437475838": 10.5, + "1437475839": 10.5, + "1437475840": 10.51, + "1437475841": 10.51, + "1437475842": 10.51, + "1437475843": 10.51, + "1437475844": 10.52, + "1437475845": 10.52, + "1437475846": 10.52, + "1437475847": 10.52, + "1437475848": 10.52, + "1437475849": 10.53, + "1437475850": 10.53, + "1437475852": 10.53, + "1437475853": 10.53, + "1437475854": 10.53, + "1437475855": 10.54, + "1437475856": 10.54, + "1437475857": 10.54, + "1437475858": 10.54, + "1437475859": 10.54, + "1437475860": 10.55, + "1437475861": 10.55, + "1437475862": 10.55, + "1437475863": 10.55, + "1437475864": 10.55, + "1437475865": 10.56, + "1437475866": 10.56, + "1437475867": 10.56, + "1437475868": 10.56, + "1437475869": 10.56, + "1437475870": 10.57, + "1437475871": 10.57, + "1437475872": 10.57, + "1437475873": 10.57, + "1437475874": 10.57, + "1437475875": 10.58, + "1437475876": 10.58, + "1437475878": 10.58, + "1437475879": 10.59, + "1437475880": 10.59, + "1437475881": 10.59, + "1437475882": 10.6, + "1437475883": 10.6, + "1437475884": 10.61, + "1437475885": 10.61, + "1437475886": 10.62, + "1437475887": 10.62, + "1437475888": 10.63, + "1437475889": 10.64, + "1437475890": 10.64, + "1437475891": 10.65, + "1437475892": 10.66, + "1437475893": 10.66, + "1437475894": 10.67, + "1437475895": 10.67, + "1437475896": 10.67, + "1437475897": 10.68, + "1437475898": 10.68, + "1437475899": 10.69, + "1437475900": 10.69, + "1437475901": 10.69, + "1437475902": 10.69, + "1437475903": 10.7, + "1437475905": 10.7, + "1437475906": 10.7, + "1437475907": 10.71, + "1437475908": 10.71, + "1437475909": 10.71, + "1437475910": 10.71, + "1437475911": 10.72, + "1437475912": 10.72, + "1437475913": 10.72, + "1437475914": 10.72, + "1437475915": 10.73, + "1437475916": 10.73, + "1437475917": 10.73, + "1437475918": 10.73, + "1437475919": 10.74, + "1437475920": 10.74, + "1437475921": 10.74, + "1437475922": 10.75, + "1437475923": 10.75, + "1437475924": 10.75, + "1437475925": 10.75, + "1437475926": 10.76, + "1437475927": 10.76, + "1437475928": 10.76, + "1437475929": 10.77, + "1437475930": 10.77, + "1437475931": 10.77, + "1437475932": 10.77, + "1437475933": 10.78, + "1437475934": 10.78, + "1437475935": 10.78, + "1437475936": 10.78, + "1437475938": 10.79, + "1437475939": 10.79, + "1437475940": 10.79, + "1437475941": 10.79, + "1437475942": 10.79, + "1437475943": 10.8, + "1437475944": 10.8, + "1437475945": 10.8, + "1437475946": 10.8, + "1437475947": 10.81, + "1437475948": 10.81, + "1437475949": 10.81, + "1437475950": 10.81, + "1437475951": 10.82, + "1437475952": 10.82, + "1437475953": 10.82, + "1437475954": 10.82, + "1437475955": 10.83, + "1437475956": 10.83, + "1437475957": 10.83, + "1437475958": 10.83, + "1437475959": 10.83, + "1437475960": 10.84, + "1437475961": 10.84, + "1437475962": 10.84, + "1437475963": 10.84, + "1437475964": 10.84, + "1437475965": 10.84, + "1437475967": 10.85, + "1437475968": 10.85, + "1437475969": 10.85, + "1437475970": 10.85, + "1437475971": 10.85, + "1437475972": 10.85, + "1437475973": 10.86, + "1437475974": 10.86, + "1437475975": 10.86, + "1437475976": 10.86, + "1437475977": 10.86, + "1437475978": 10.87, + "1437475979": 10.87, + "1437475980": 10.87, + "1437475981": 10.87, + "1437475982": 10.88, + "1437475983": 10.88, + "1437475984": 10.88, + "1437475985": 10.88, + "1437475986": 10.88, + "1437475987": 10.89, + "1437475988": 10.89, + "1437475989": 10.89, + "1437475990": 10.89, + "1437475991": 10.9, + "1437475992": 10.9, + "1437475993": 10.9, + "1437475994": 10.9, + "1437475995": 10.91, + "1437475997": 10.91, + "1437475998": 10.91, + "1437475999": 10.91, + "1437476000": 10.91, + "1437476001": 10.92, + "1437476002": 10.92, + "1437476003": 10.92, + "1437476004": 10.92, + "1437476005": 10.93, + "1437476006": 10.93, + "1437476007": 10.94, + "1437476008": 10.94, + "1437476009": 10.94, + "1437476010": 10.95, + "1437476011": 10.96, + "1437476012": 10.96, + "1437476013": 10.97, + "1437476014": 10.97, + "1437476015": 10.97, + "1437476016": 10.98, + "1437476017": 10.98, + "1437476019": 10.99, + "1437476020": 10.99, + "1437476021": 10.99, + "1437476022": 11, + "1437476023": 11, + "1437476024": 11, + "1437476025": 11.01, + "1437476026": 11.01, + "1437476027": 11.01, + "1437476028": 11.02, + "1437476029": 11.02, + "1437476030": 11.02, + "1437476031": 11.03, + "1437476032": 11.03, + "1437476033": 11.04, + "1437476034": 11.04, + "1437476035": 11.04, + "1437476036": 11.05, + "1437476037": 11.05, + "1437476038": 11.05, + "1437476039": 11.06, + "1437476040": 11.06, + "1437476041": 11.07, + "1437476042": 11.07, + "1437476043": 11.08, + "1437476044": 11.08, + "1437476045": 11.09, + "1437476047": 11.09, + "1437476048": 11.1, + "1437476049": 11.1, + "1437476050": 11.11, + "1437476051": 11.12, + "1437476052": 11.12, + "1437476053": 11.13, + "1437476054": 11.14, + "1437476055": 11.15, + "1437476056": 11.15, + "1437476057": 11.16, + "1437476058": 11.17, + "1437476059": 11.18, + "1437476060": 11.19, + "1437476061": 11.2, + "1437476062": 11.21, + "1437476063": 11.21, + "1437476064": 11.22, + "1437476065": 11.23, + "1437476066": 11.24, + "1437476067": 11.25, + "1437476068": 11.26, + "1437476069": 11.27, + "1437476070": 11.29, + "1437476071": 11.3, + "1437476072": 11.31, + "1437476073": 11.32, + "1437476074": 11.33, + "1437476075": 11.34, + "1437476076": 11.35, + "1437476077": 11.36, + "1437476079": 11.37, + "1437476080": 11.38, + "1437476081": 11.39, + "1437476082": 11.4, + "1437476083": 11.41, + "1437476084": 11.42, + "1437476085": 11.43, + "1437476086": 11.44, + "1437476087": 11.45, + "1437476088": 11.45, + "1437476089": 11.46, + "1437476090": 11.47, + "1437476091": 11.48, + "1437476092": 11.49, + "1437476093": 11.5, + "1437476094": 11.51, + "1437476095": 11.51, + "1437476096": 11.52, + "1437476097": 11.53, + "1437476098": 11.54, + "1437476099": 11.54, + "1437476100": 11.55, + "1437476101": 11.56, + "1437476102": 11.57, + "1437476103": 11.58, + "1437476104": 11.58, + "1437476105": 11.59, + "1437476106": 11.6, + "1437476107": 11.61, + "1437476108": 11.61, + "1437476109": 11.62, + "1437476110": 11.63, + "1437476112": 11.64, + "1437476113": 11.64, + "1437476114": 11.65, + "1437476115": 11.66, + "1437476116": 11.67, + "1437476117": 11.67, + "1437476118": 11.68, + "1437476119": 11.69, + "1437476120": 11.7, + "1437476121": 11.71, + "1437476122": 11.71, + "1437476123": 11.72, + "1437476124": 11.73, + "1437476125": 11.74, + "1437476126": 11.75, + "1437476127": 11.76, + "1437476128": 11.77, + "1437476129": 11.78, + "1437476130": 11.79, + "1437476131": 11.8, + "1437476132": 11.81, + "1437476133": 11.82, + "1437476134": 11.83, + "1437476135": 11.84, + "1437476136": 11.85, + "1437476137": 11.86, + "1437476138": 11.86, + "1437476139": 11.87, + "1437476140": 11.88, + "1437476141": 11.89, + "1437476142": 11.9, + "1437476143": 11.91, + "1437476144": 11.92, + "1437476146": 11.93, + "1437476147": 11.94, + "1437476148": 11.94, + "1437476149": 11.95, + "1437476150": 11.96, + "1437476151": 11.97, + "1437476152": 11.98, + "1437476153": 11.99, + "1437476154": 12, + "1437476155": 12.01, + "1437476156": 12.02, + "1437476157": 12.03, + "1437476158": 12.04, + "1437476159": 12.05, + "1437476160": 12.06, + "1437476161": 12.07, + "1437476162": 12.08, + "1437476163": 12.09, + "1437476164": 12.1, + "1437476165": 12.12, + "1437476166": 12.13, + "1437476167": 12.14, + "1437476168": 12.15, + "1437476169": 12.17, + "1437476170": 12.18, + "1437476171": 12.19, + "1437476172": 12.2, + "1437476173": 12.22, + "1437476174": 12.23, + "1437476175": 12.24, + "1437476176": 12.26, + "1437476177": 12.27, + "1437476179": 12.28, + "1437476180": 12.29, + "1437476181": 12.3, + "1437476182": 12.31, + "1437476183": 12.31, + "1437476184": 12.32, + "1437476185": 12.33, + "1437476186": 12.33, + "1437476187": 12.34, + "1437476188": 12.35, + "1437476189": 12.35, + "1437476190": 12.36, + "1437476191": 12.36, + "1437476192": 12.37, + "1437476193": 12.37, + "1437476194": 12.38, + "1437476195": 12.39, + "1437476196": 12.39, + "1437476197": 12.4, + "1437476198": 12.4, + "1437476199": 12.41, + "1437476200": 12.42, + "1437476201": 12.42, + "1437476202": 12.43, + "1437476203": 12.44, + "1437476204": 12.44, + "1437476205": 12.45, + "1437476206": 12.46, + "1437476207": 12.47, + "1437476208": 12.47, + "1437476209": 12.48, + "1437476211": 12.49, + "1437476212": 12.5, + "1437476213": 12.5, + "1437476214": 12.51, + "1437476215": 12.52, + "1437476216": 12.53, + "1437476217": 12.54, + "1437476218": 12.55, + "1437476219": 12.56, + "1437476220": 12.57, + "1437476221": 12.58, + "1437476222": 12.59, + "1437476223": 12.6, + "1437476224": 12.61, + "1437476225": 12.62, + "1437476226": 12.63, + "1437476227": 12.64, + "1437476228": 12.65, + "1437476229": 12.66, + "1437476230": 12.67, + "1437476231": 12.68, + "1437476232": 12.69, + "1437476233": 12.71, + "1437476234": 12.72, + "1437476235": 12.73, + "1437476236": 12.74, + "1437476237": 12.75, + "1437476238": 12.76, + "1437476239": 12.77, + "1437476240": 12.78, + "1437476241": 12.79, + "1437476242": 12.81, + "1437476243": 12.82, + "1437476244": 12.83, + "1437476245": 12.84, + "1437476246": 12.85, + "1437476248": 12.87, + "1437476249": 12.88, + "1437476250": 12.89, + "1437476251": 12.91, + "1437476252": 12.92, + "1437476253": 12.93, + "1437476254": 12.94, + "1437476255": 12.96, + "1437476256": 12.97, + "1437476257": 12.98, + "1437476258": 12.99, + "1437476259": 13, + "1437476260": 13.01, + "1437476261": 13.02, + "1437476262": 13.04, + "1437476263": 13.05, + "1437476264": 13.06, + "1437476265": 13.08, + "1437476266": 13.09, + "1437476267": 13.1, + "1437476268": 13.12, + "1437476269": 13.13, + "1437476270": 13.15, + "1437476271": 13.16, + "1437476272": 13.18, + "1437476274": 13.19, + "1437476275": 13.21, + "1437476276": 13.23, + "1437476277": 13.24, + "1437476278": 13.26, + "1437476279": 13.28, + "1437476280": 13.29, + "1437476281": 13.31, + "1437476282": 13.33, + "1437476283": 13.34, + "1437476284": 13.36, + "1437476285": 13.37, + "1437476286": 13.39, + "1437476287": 13.41, + "1437476288": 13.42, + "1437476289": 13.44, + "1437476290": 13.45, + "1437476291": 13.47, + "1437476292": 13.48, + "1437476293": 13.49, + "1437476295": 13.51, + "1437476296": 13.52, + "1437476297": 13.54, + "1437476298": 13.55, + "1437476299": 13.56, + "1437476300": 13.58, + "1437476301": 13.59, + "1437476302": 13.6, + "1437476303": 13.61, + "1437476304": 13.63, + "1437476305": 13.64, + "1437476306": 13.65, + "1437476307": 13.66, + "1437476308": 13.67, + "1437476309": 13.69, + "1437476310": 13.7, + "1437476311": 13.71, + "1437476312": 13.72, + "1437476313": 13.73, + "1437476314": 13.74, + "1437476315": 13.75, + "1437476316": 13.76, + "1437476317": 13.76, + "1437476318": 13.77, + "1437476319": 13.78, + "1437476320": 13.79, + "1437476321": 13.8, + "1437476323": 13.81, + "1437476324": 13.81, + "1437476325": 13.82, + "1437476326": 13.82, + "1437476327": 13.83, + "1437476328": 13.83, + "1437476329": 13.83, + "1437476330": 13.84, + "1437476331": 13.84, + "1437476332": 13.84, + "1437476333": 13.84, + "1437476334": 13.84, + "1437476335": 13.84, + "1437476338": 13.84, + "1437476339": 13.84, + "1437476340": 13.84, + "1437476341": 13.84, + "1437476342": 13.84, + "1437476343": 13.84, + "1437476344": 13.85, + "1437476345": 13.85, + "1437476346": 13.85, + "1437476347": 13.85, + "1437476348": 13.85, + "1437476349": 13.86, + "1437476350": 13.86, + "1437476351": 13.86, + "1437476352": 13.86, + "1437476353": 13.87, + "1437476354": 13.87, + "1437476355": 13.87, + "1437476356": 13.88, + "1437476357": 13.88, + "1437476358": 13.88, + "1437476360": 13.89, + "1437476361": 13.89, + "1437476362": 13.89, + "1437476363": 13.9, + "1437476364": 13.9, + "1437476365": 13.91, + "1437476366": 13.91, + "1437476367": 13.91, + "1437476368": 13.92, + "1437476369": 13.92, + "1437476370": 13.92, + "1437476371": 13.93, + "1437476372": 13.93, + "1437476373": 13.94, + "1437476374": 13.94, + "1437476375": 13.94, + "1437476376": 13.95, + "1437476377": 13.95, + "1437476378": 13.96, + "1437476379": 13.96, + "1437476380": 13.97, + "1437476381": 13.97, + "1437476382": 13.97, + "1437476383": 13.98, + "1437476384": 13.98, + "1437476385": 13.99, + "1437476386": 13.99, + "1437476387": 14, + "1437476389": 14, + "1437476390": 14.01, + "1437476391": 14.01, + "1437476392": 14.01, + "1437476393": 14.02, + "1437476394": 14.02, + "1437476395": 14.03, + "1437476396": 14.04, + "1437476397": 14.04, + "1437476398": 14.05, + "1437476399": 14.06, + "1437476400": 14.06, + "1437476401": 14.07, + "1437476402": 14.08, + "1437476403": 14.09, + "1437476404": 14.09, + "1437476405": 14.1, + "1437476406": 14.11, + "1437476407": 14.12, + "1437476408": 14.13, + "1437476410": 14.14, + "1437476411": 14.15, + "1437476412": 14.16, + "1437476413": 14.16, + "1437476414": 14.17, + "1437476415": 14.18, + "1437476416": 14.19, + "1437476417": 14.19, + "1437476418": 14.2, + "1437476419": 14.2, + "1437476420": 14.21, + "1437476421": 14.22, + "1437476422": 14.22, + "1437476423": 14.23, + "1437476424": 14.23, + "1437476425": 14.24, + "1437476426": 14.24, + "1437476427": 14.24, + "1437476428": 14.25, + "1437476429": 14.25, + "1437476430": 14.26, + "1437476431": 14.26, + "1437476432": 14.26, + "1437476433": 14.27, + "1437476434": 14.27, + "1437476435": 14.27, + "1437476436": 14.28, + "1437476437": 14.28, + "1437476438": 14.28, + "1437476439": 14.28, + "1437476441": 14.29, + "1437476442": 14.29, + "1437476443": 14.29, + "1437476444": 14.3, + "1437476445": 14.3, + "1437476446": 14.3, + "1437476447": 14.3, + "1437476448": 14.31, + "1437476449": 14.31, + "1437476450": 14.32, + "1437476451": 14.32, + "1437476452": 14.33, + "1437476453": 14.33, + "1437476454": 14.34, + "1437476455": 14.34, + "1437476456": 14.35, + "1437476457": 14.35, + "1437476458": 14.36, + "1437476459": 14.37, + "1437476460": 14.37, + "1437476461": 14.38, + "1437476462": 14.39, + "1437476463": 14.39, + "1437476464": 14.4, + "1437476465": 14.41, + "1437476467": 14.42, + "1437476468": 14.43, + "1437476469": 14.44, + "1437476470": 14.45, + "1437476471": 14.46, + "1437476472": 14.47, + "1437476473": 14.48, + "1437476474": 14.49, + "1437476475": 14.5, + "1437476476": 14.5, + "1437476477": 14.51, + "1437476478": 14.52, + "1437476479": 14.53, + "1437476480": 14.54, + "1437476481": 14.55, + "1437476482": 14.56, + "1437476483": 14.57, + "1437476484": 14.57, + "1437476485": 14.58, + "1437476486": 14.59, + "1437476487": 14.6, + "1437476488": 14.61, + "1437476490": 14.62, + "1437476491": 14.63, + "1437476492": 14.65, + "1437476493": 14.66, + "1437476494": 14.67, + "1437476495": 14.68, + "1437476496": 14.69, + "1437476497": 14.7, + "1437476498": 14.72, + "1437476499": 14.73, + "1437476500": 14.74, + "1437476501": 14.76, + "1437476502": 14.77, + "1437476503": 14.79, + "1437476504": 14.8, + "1437476505": 14.82, + "1437476506": 14.83, + "1437476507": 14.85, + "1437476508": 14.86, + "1437476509": 14.88, + "1437476510": 14.89, + "1437476511": 14.91, + "1437476512": 14.92, + "1437476513": 14.94, + "1437476514": 14.95, + "1437476515": 14.96, + "1437476516": 14.98, + "1437476517": 14.99, + "1437476518": 15.01, + "1437476519": 15.02, + "1437476521": 15.04, + "1437476522": 15.06, + "1437476523": 15.07, + "1437476524": 15.09, + "1437476525": 15.1, + "1437476526": 15.12, + "1437476527": 15.13, + "1437476528": 15.15, + "1437476529": 15.16, + "1437476530": 15.17, + "1437476531": 15.19, + "1437476532": 15.2, + "1437476533": 15.22, + "1437476534": 15.23, + "1437476535": 15.25, + "1437476536": 15.26, + "1437476537": 15.28, + "1437476538": 15.29, + "1437476539": 15.31, + "1437476540": 15.32, + "1437476541": 15.34, + "1437476542": 15.35, + "1437476543": 15.36, + "1437476544": 15.38, + "1437476545": 15.39, + "1437476547": 15.41, + "1437476548": 15.42, + "1437476549": 15.44, + "1437476550": 15.45, + "1437476551": 15.47, + "1437476552": 15.48, + "1437476553": 15.49, + "1437476554": 15.51, + "1437476555": 15.52, + "1437476556": 15.54, + "1437476557": 15.55, + "1437476558": 15.56, + "1437476559": 15.58, + "1437476560": 15.59, + "1437476561": 15.6, + "1437476562": 15.61, + "1437476563": 15.63, + "1437476564": 15.64, + "1437476565": 15.65, + "1437476566": 15.66, + "1437476567": 15.67, + "1437476568": 15.69, + "1437476569": 15.7, + "1437476570": 15.71, + "1437476571": 15.72, + "1437476572": 15.73, + "1437476573": 15.75, + "1437476574": 15.76, + "1437476576": 15.77, + "1437476577": 15.78, + "1437476578": 15.8, + "1437476579": 15.81, + "1437476580": 15.82, + "1437476581": 15.83, + "1437476582": 15.84, + "1437476583": 15.85, + "1437476584": 15.86, + "1437476585": 15.88, + "1437476586": 15.89, + "1437476587": 15.9, + "1437476588": 15.91, + "1437476589": 15.92, + "1437476590": 15.93, + "1437476591": 15.94, + "1437476592": 15.95, + "1437476593": 15.96, + "1437476594": 15.97, + "1437476595": 15.98, + "1437476596": 15.99, + "1437476597": 16, + "1437476598": 16.01, + "1437476599": 16.02, + "1437476601": 16.03, + "1437476602": 16.04, + "1437476603": 16.05, + "1437476604": 16.05, + "1437476605": 16.06, + "1437476606": 16.07, + "1437476607": 16.08, + "1437476608": 16.08, + "1437476609": 16.09, + "1437476610": 16.1, + "1437476611": 16.1, + "1437476612": 16.11, + "1437476613": 16.11, + "1437476614": 16.12, + "1437476615": 16.12, + "1437476616": 16.13, + "1437476617": 16.14, + "1437476618": 16.14, + "1437476619": 16.15, + "1437476620": 16.15, + "1437476621": 16.16, + "1437476622": 16.16, + "1437476623": 16.17, + "1437476624": 16.17, + "1437476625": 16.18, + "1437476627": 16.18, + "1437476628": 16.19, + "1437476629": 16.19, + "1437476630": 16.2, + "1437476631": 16.21, + "1437476632": 16.21, + "1437476633": 16.22, + "1437476634": 16.22, + "1437476635": 16.23, + "1437476636": 16.23, + "1437476637": 16.24, + "1437476638": 16.24, + "1437476639": 16.25, + "1437476640": 16.26, + "1437476641": 16.26, + "1437476642": 16.27, + "1437476643": 16.28, + "1437476644": 16.28, + "1437476645": 16.29, + "1437476646": 16.3, + "1437476647": 16.31, + "1437476648": 16.32, + "1437476649": 16.33, + "1437476650": 16.34, + "1437476651": 16.35, + "1437476652": 16.36, + "1437476653": 16.37, + "1437476654": 16.39, + "1437476655": 16.4, + "1437476656": 16.41, + "1437476658": 16.43, + "1437476659": 16.44, + "1437476660": 16.46, + "1437476661": 16.47, + "1437476662": 16.49, + "1437476663": 16.5, + "1437476664": 16.52, + "1437476665": 16.54, + "1437476666": 16.55, + "1437476667": 16.57, + "1437476668": 16.59, + "1437476669": 16.6, + "1437476670": 16.62, + "1437476671": 16.63, + "1437476672": 16.65, + "1437476673": 16.66, + "1437476674": 16.67, + "1437476675": 16.69, + "1437476676": 16.7, + "1437476677": 16.71, + "1437476678": 16.73, + "1437476679": 16.74, + "1437476680": 16.76, + "1437476681": 16.77, + "1437476682": 16.78, + "1437476683": 16.8, + "1437476684": 16.81, + "1437476685": 16.82, + "1437476686": 16.84, + "1437476687": 16.85, + "1437476688": 16.86, + "1437476689": 16.88, + "1437476690": 16.89, + "1437476691": 16.9, + "1437476692": 16.92, + "1437476694": 16.93, + "1437476695": 16.95, + "1437476696": 16.96, + "1437476697": 16.98, + "1437476698": 16.99, + "1437476699": 17.01, + "1437476700": 17.02, + "1437476701": 17.03, + "1437476702": 17.04, + "1437476703": 17.05, + "1437476704": 17.07, + "1437476705": 17.08, + "1437476706": 17.09, + "1437476707": 17.1, + "1437476708": 17.12, + "1437476709": 17.13, + "1437476710": 17.14, + "1437476711": 17.16, + "1437476712": 17.17, + "1437476713": 17.19, + "1437476714": 17.2, + "1437476715": 17.21, + "1437476716": 17.22, + "1437476717": 17.23, + "1437476718": 17.25, + "1437476719": 17.26, + "1437476720": 17.27, + "1437476721": 17.28, + "1437476723": 17.29, + "1437476724": 17.3, + "1437476725": 17.31, + "1437476726": 17.32, + "1437476727": 17.33, + "1437476728": 17.34, + "1437476729": 17.36, + "1437476730": 17.37, + "1437476731": 17.38, + "1437476732": 17.39, + "1437476733": 17.4, + "1437476734": 17.41, + "1437476735": 17.43, + "1437476736": 17.44, + "1437476737": 17.45, + "1437476738": 17.46, + "1437476739": 17.48, + "1437476740": 17.49, + "1437476741": 17.5, + "1437476742": 17.51, + "1437476743": 17.53, + "1437476744": 17.54, + "1437476745": 17.55, + "1437476746": 17.56, + "1437476747": 17.58, + "1437476748": 17.59, + "1437476749": 17.6, + "1437476750": 17.62, + "1437476751": 17.63, + "1437476752": 17.64, + "1437476753": 17.66, + "1437476755": 17.67, + "1437476756": 17.68, + "1437476757": 17.7, + "1437476758": 17.71, + "1437476759": 17.73, + "1437476760": 17.74, + "1437476761": 17.76, + "1437476762": 17.77, + "1437476763": 17.79, + "1437476764": 17.8, + "1437476765": 17.82, + "1437476766": 17.83, + "1437476767": 17.85, + "1437476768": 17.86, + "1437476769": 17.88, + "1437476770": 17.89, + "1437476771": 17.9, + "1437476772": 17.92, + "1437476773": 17.93, + "1437476774": 17.95, + "1437476775": 17.96, + "1437476776": 17.98, + "1437476777": 17.99, + "1437476778": 18.01, + "1437476779": 18.02, + "1437476780": 18.03, + "1437476781": 18.05, + "1437476782": 18.06, + "1437476783": 18.07, + "1437476784": 18.09, + "1437476785": 18.1, + "1437476786": 18.11, + "1437476787": 18.13, + "1437476788": 18.14, + "1437476789": 18.15, + "1437476791": 18.17, + "1437476792": 18.18, + "1437476793": 18.19, + "1437476794": 18.2, + "1437476795": 18.22, + "1437476796": 18.23, + "1437476797": 18.24, + "1437476798": 18.25, + "1437476799": 18.27, + "1437476800": 18.28, + "1437476801": 18.29, + "1437476802": 18.3, + "1437476803": 18.31, + "1437476804": 18.33, + "1437476805": 18.34, + "1437476806": 18.35, + "1437476807": 18.36, + "1437476808": 18.37, + "1437476809": 18.38, + "1437476810": 18.4, + "1437476811": 18.41, + "1437476812": 18.42, + "1437476813": 18.43, + "1437476814": 18.44, + "1437476815": 18.45, + "1437476816": 18.46, + "1437476817": 18.47, + "1437476818": 18.48, + "1437476819": 18.49, + "1437476820": 18.5, + "1437476821": 18.52, + "1437476822": 18.53, + "1437476824": 18.54, + "1437476825": 18.55, + "1437476826": 18.56, + "1437476827": 18.57, + "1437476828": 18.58, + "1437476829": 18.59, + "1437476830": 18.6, + "1437476831": 18.61, + "1437476832": 18.62, + "1437476833": 18.63, + "1437476834": 18.64, + "1437476835": 18.65, + "1437476836": 18.66, + "1437476837": 18.67, + "1437476838": 18.68, + "1437476839": 18.7, + "1437476840": 18.71, + "1437476841": 18.72, + "1437476842": 18.73, + "1437476843": 18.74, + "1437476844": 18.75, + "1437476845": 18.76, + "1437476846": 18.77, + "1437476847": 18.78, + "1437476848": 18.79, + "1437476849": 18.8, + "1437476850": 18.81, + "1437476851": 18.83, + "1437476852": 18.84, + "1437476854": 18.85, + "1437476855": 18.86, + "1437476856": 18.87, + "1437476857": 18.88, + "1437476858": 18.89, + "1437476859": 18.9, + "1437476860": 18.91, + "1437476861": 18.92, + "1437476862": 18.93, + "1437476863": 18.94, + "1437476864": 18.95, + "1437476865": 18.96, + "1437476866": 18.97, + "1437476867": 18.98, + "1437476868": 18.99, + "1437476869": 19, + "1437476870": 19.02, + "1437476871": 19.03, + "1437476872": 19.04, + "1437476873": 19.05, + "1437476874": 19.06, + "1437476875": 19.07, + "1437476876": 19.08, + "1437476877": 19.09, + "1437476878": 19.1, + "1437476879": 19.12, + "1437476880": 19.13, + "1437476881": 19.14, + "1437476882": 19.15, + "1437476883": 19.16, + "1437476884": 19.17, + "1437476886": 19.18, + "1437476887": 19.19, + "1437476888": 19.21, + "1437476889": 19.22, + "1437476890": 19.23, + "1437476891": 19.24, + "1437476892": 19.25, + "1437476893": 19.26, + "1437476894": 19.27, + "1437476895": 19.28, + "1437476896": 19.29, + "1437476897": 19.3, + "1437476898": 19.31, + "1437476899": 19.32, + "1437476900": 19.33, + "1437476901": 19.34, + "1437476902": 19.35, + "1437476903": 19.36, + "1437476904": 19.36, + "1437476905": 19.37, + "1437476906": 19.38, + "1437476907": 19.39, + "1437476908": 19.39, + "1437476910": 19.4, + "1437476911": 19.41, + "1437476912": 19.41, + "1437476913": 19.42, + "1437476914": 19.42, + "1437476915": 19.42, + "1437476916": 19.43, + "1437476917": 19.43, + "1437476918": 19.44, + "1437476919": 19.44, + "1437476920": 19.45, + "1437476921": 19.46, + "1437476922": 19.46, + "1437476923": 19.46, + "1437476924": 19.47, + "1437476925": 19.47, + "1437476926": 19.48, + "1437476927": 19.48, + "1437476928": 19.48, + "1437476929": 19.48, + "1437476930": 19.49, + "1437476931": 19.49, + "1437476932": 19.49, + "1437476933": 19.49, + "1437476934": 19.5, + "1437476935": 19.5, + "1437476936": 19.5, + "1437476938": 19.51, + "1437476939": 19.51, + "1437476940": 19.51, + "1437476941": 19.51, + "1437476942": 19.52, + "1437476943": 19.52, + "1437476944": 19.52, + "1437476945": 19.53, + "1437476946": 19.53, + "1437476947": 19.53, + "1437476948": 19.54, + "1437476949": 19.54, + "1437476950": 19.54, + "1437476951": 19.55, + "1437476952": 19.55, + "1437476953": 19.55, + "1437476954": 19.56, + "1437476955": 19.56, + "1437476956": 19.56, + "1437476957": 19.57, + "1437476958": 19.57, + "1437476959": 19.57, + "1437476960": 19.58, + "1437476961": 19.58, + "1437476962": 19.58, + "1437476963": 19.59, + "1437476964": 19.59, + "1437476965": 19.59, + "1437476966": 19.59, + "1437476967": 19.6, + "1437476969": 19.6, + "1437476970": 19.6, + "1437476971": 19.61, + "1437476972": 19.61, + "1437476973": 19.61, + "1437476974": 19.62, + "1437476975": 19.62, + "1437476976": 19.62, + "1437476977": 19.63, + "1437476978": 19.63, + "1437476979": 19.63, + "1437476980": 19.64, + "1437476981": 19.64, + "1437476982": 19.64, + "1437476983": 19.65, + "1437476984": 19.65, + "1437476985": 19.65, + "1437476986": 19.66, + "1437476987": 19.66, + "1437476988": 19.66, + "1437476989": 19.67, + "1437476990": 19.67, + "1437476991": 19.67, + "1437476992": 19.68, + "1437476993": 19.68, + "1437476994": 19.68, + "1437476996": 19.69, + "1437476997": 19.69, + "1437476998": 19.69, + "1437476999": 19.7, + "1437477000": 19.7, + "1437477001": 19.7, + "1437477002": 19.71, + "1437477003": 19.71, + "1437477004": 19.72, + "1437477005": 19.72, + "1437477006": 19.72, + "1437477007": 19.73, + "1437477008": 19.74, + "1437477009": 19.74, + "1437477010": 19.75, + "1437477011": 19.76, + "1437477012": 19.76, + "1437477013": 19.77, + "1437477014": 19.78, + "1437477015": 19.79, + "1437477016": 19.8, + "1437477017": 19.8, + "1437477018": 19.81, + "1437477019": 19.82, + "1437477020": 19.83, + "1437477022": 19.83, + "1437477023": 19.84, + "1437477024": 19.85, + "1437477025": 19.85, + "1437477026": 19.86, + "1437477027": 19.86, + "1437477028": 19.87, + "1437477029": 19.87, + "1437477030": 19.88, + "1437477031": 19.89, + "1437477032": 19.89, + "1437477033": 19.9, + "1437477034": 19.9, + "1437477035": 19.91, + "1437477036": 19.91, + "1437477037": 19.92, + "1437477038": 19.92, + "1437477039": 19.93, + "1437477040": 19.93, + "1437477041": 19.94, + "1437477042": 19.94, + "1437477043": 19.95, + "1437477044": 19.95, + "1437477045": 19.96, + "1437477046": 19.96, + "1437477047": 19.97, + "1437477048": 19.97, + "1437477050": 19.98, + "1437477051": 19.98, + "1437477052": 19.99, + "1437477053": 19.99, + "1437477054": 20, + "1437477055": 20, + "1437477056": 20.01, + "1437477057": 20.01, + "1437477058": 20.02, + "1437477059": 20.02, + "1437477060": 20.03, + "1437477061": 20.03, + "1437477062": 20.04, + "1437477063": 20.04, + "1437477064": 20.05, + "1437477065": 20.05, + "1437477066": 20.06, + "1437477067": 20.06, + "1437477068": 20.07, + "1437477069": 20.07, + "1437477070": 20.08, + "1437477071": 20.08, + "1437477072": 20.09, + "1437477073": 20.1, + "1437477075": 20.11, + "1437477076": 20.11, + "1437477077": 20.12, + "1437477078": 20.13, + "1437477079": 20.13, + "1437477080": 20.14, + "1437477081": 20.15, + "1437477082": 20.15, + "1437477083": 20.16, + "1437477084": 20.17, + "1437477085": 20.17, + "1437477086": 20.18, + "1437477087": 20.19, + "1437477088": 20.2, + "1437477089": 20.2, + "1437477090": 20.21, + "1437477091": 20.22, + "1437477092": 20.23, + "1437477093": 20.24, + "1437477094": 20.25, + "1437477095": 20.25, + "1437477096": 20.26, + "1437477097": 20.27, + "1437477098": 20.28, + "1437477099": 20.3, + "1437477100": 20.31, + "1437477101": 20.32, + "1437477102": 20.33, + "1437477103": 20.34, + "1437477104": 20.35, + "1437477105": 20.37, + "1437477106": 20.38, + "1437477107": 20.39, + "1437477109": 20.4, + "1437477110": 20.42, + "1437477111": 20.43, + "1437477112": 20.44, + "1437477113": 20.46, + "1437477114": 20.47, + "1437477115": 20.48, + "1437477116": 20.5, + "1437477117": 20.51, + "1437477118": 20.52, + "1437477119": 20.54, + "1437477120": 20.55, + "1437477121": 20.56, + "1437477122": 20.57, + "1437477123": 20.59, + "1437477124": 20.6, + "1437477125": 20.61, + "1437477126": 20.62, + "1437477127": 20.63, + "1437477128": 20.64, + "1437477129": 20.66, + "1437477130": 20.67, + "1437477131": 20.68, + "1437477132": 20.69, + "1437477133": 20.7, + "1437477134": 20.71, + "1437477135": 20.73, + "1437477136": 20.74, + "1437477137": 20.75, + "1437477138": 20.76, + "1437477139": 20.77, + "1437477140": 20.78, + "1437477141": 20.79, + "1437477143": 20.81, + "1437477144": 20.82, + "1437477145": 20.83, + "1437477146": 20.84, + "1437477147": 20.85, + "1437477148": 20.86, + "1437477149": 20.88, + "1437477150": 20.89, + "1437477151": 20.9, + "1437477152": 20.91, + "1437477153": 20.93, + "1437477154": 20.94, + "1437477155": 20.95, + "1437477156": 20.96, + "1437477157": 20.98, + "1437477158": 20.99, + "1437477159": 21, + "1437477160": 21.01, + "1437477161": 21.03, + "1437477162": 21.04, + "1437477163": 21.05, + "1437477164": 21.06, + "1437477165": 21.08, + "1437477166": 21.09, + "1437477167": 21.1, + "1437477168": 21.11, + "1437477169": 21.12, + "1437477170": 21.14, + "1437477171": 21.15, + "1437477172": 21.16, + "1437477173": 21.18, + "1437477174": 21.19, + "1437477175": 21.2, + "1437477176": 21.22, + "1437477178": 21.23, + "1437477179": 21.25, + "1437477180": 21.26, + "1437477181": 21.27, + "1437477182": 21.29, + "1437477183": 21.3, + "1437477184": 21.32, + "1437477185": 21.33, + "1437477186": 21.35, + "1437477187": 21.36, + "1437477188": 21.38, + "1437477189": 21.39, + "1437477190": 21.41, + "1437477191": 21.42, + "1437477192": 21.43, + "1437477193": 21.44, + "1437477194": 21.45, + "1437477195": 21.47, + "1437477196": 21.48, + "1437477197": 21.49, + "1437477198": 21.49, + "1437477199": 21.5, + "1437477200": 21.51, + "1437477201": 21.52, + "1437477202": 21.53, + "1437477203": 21.54, + "1437477204": 21.55, + "1437477205": 21.56, + "1437477206": 21.57, + "1437477207": 21.58, + "1437477208": 21.59, + "1437477209": 21.6, + "1437477210": 21.61, + "1437477211": 21.62, + "1437477212": 21.63, + "1437477213": 21.64, + "1437477215": 21.65, + "1437477216": 21.66, + "1437477217": 21.68, + "1437477218": 21.69, + "1437477219": 21.7, + "1437477220": 21.71, + "1437477221": 21.72, + "1437477222": 21.74, + "1437477223": 21.75, + "1437477224": 21.76, + "1437477225": 21.77, + "1437477226": 21.79, + "1437477227": 21.8, + "1437477228": 21.81, + "1437477229": 21.83, + "1437477230": 21.84, + "1437477231": 21.85, + "1437477232": 21.86, + "1437477233": 21.88, + "1437477234": 21.89, + "1437477235": 21.9, + "1437477236": 21.92, + "1437477237": 21.93, + "1437477238": 21.94, + "1437477239": 21.96, + "1437477240": 21.97, + "1437477241": 21.99, + "1437477242": 22, + "1437477243": 22.01, + "1437477244": 22.03, + "1437477245": 22.04, + "1437477247": 22.06, + "1437477248": 22.08, + "1437477249": 22.09, + "1437477250": 22.1, + "1437477251": 22.12, + "1437477252": 22.13, + "1437477253": 22.14, + "1437477254": 22.16, + "1437477255": 22.17, + "1437477256": 22.19, + "1437477257": 22.2, + "1437477258": 22.22, + "1437477259": 22.24, + "1437477260": 22.25, + "1437477261": 22.27, + "1437477262": 22.29, + "1437477263": 22.3, + "1437477264": 22.32, + "1437477265": 22.34, + "1437477266": 22.36, + "1437477267": 22.38, + "1437477268": 22.4, + "1437477270": 22.42, + "1437477271": 22.43, + "1437477272": 22.45, + "1437477273": 22.47, + "1437477274": 22.49, + "1437477275": 22.51, + "1437477276": 22.53, + "1437477277": 22.54, + "1437477278": 22.56, + "1437477279": 22.58, + "1437477280": 22.6, + "1437477281": 22.61, + "1437477282": 22.63, + "1437477283": 22.65, + "1437477284": 22.67, + "1437477285": 22.68, + "1437477286": 22.7, + "1437477287": 22.71, + "1437477288": 22.73, + "1437477289": 22.75, + "1437477290": 22.76, + "1437477291": 22.78, + "1437477292": 22.79, + "1437477294": 22.81, + "1437477295": 22.82, + "1437477296": 22.84, + "1437477297": 22.85, + "1437477298": 22.86, + "1437477299": 22.88, + "1437477300": 22.89, + "1437477301": 22.9, + "1437477302": 22.92, + "1437477303": 22.93, + "1437477304": 22.94, + "1437477305": 22.95, + "1437477306": 22.97, + "1437477307": 22.98, + "1437477308": 22.99, + "1437477309": 23, + "1437477310": 23.01, + "1437477311": 23.02, + "1437477312": 23.04, + "1437477313": 23.05, + "1437477314": 23.06, + "1437477315": 23.07, + "1437477316": 23.08, + "1437477317": 23.09, + "1437477318": 23.1, + "1437477319": 23.12, + "1437477321": 23.13, + "1437477322": 23.14, + "1437477323": 23.15, + "1437477324": 23.16, + "1437477325": 23.17, + "1437477326": 23.18, + "1437477327": 23.19, + "1437477328": 23.2, + "1437477329": 23.22, + "1437477330": 23.23, + "1437477331": 23.24, + "1437477332": 23.25, + "1437477333": 23.27, + "1437477334": 23.28, + "1437477335": 23.29, + "1437477336": 23.31, + "1437477337": 23.32, + "1437477338": 23.33, + "1437477339": 23.34, + "1437477340": 23.35, + "1437477341": 23.36, + "1437477342": 23.37, + "1437477343": 23.38, + "1437477345": 23.39, + "1437477346": 23.39, + "1437477347": 23.4, + "1437477348": 23.41, + "1437477349": 23.41, + "1437477350": 23.42, + "1437477351": 23.42, + "1437477352": 23.42, + "1437477353": 23.42, + "1437477354": 23.42, + "1437477355": 23.42, + "1437477356": 23.42, + "1437477376": 23.42, + "1437477377": 23.42, + "1437477378": 23.42, + "1437477379": 23.42, + "1437477380": 23.42, + "1437477381": 23.43, + "1437477383": 23.43, + "1437477384": 23.43, + "1437477385": 23.43, + "1437477386": 23.43, + "1437477387": 23.43, + "1437477388": 23.43, + "1437477392": 23.43, + "1437477393": 23.43, + "1437477394": 23.43, + "1437477395": 23.43, + "1437477397": 23.43, + "1437477398": 23.43, + "1437477399": 23.43, + "1437477400": 23.43, + "1437477401": 23.43, + "1437477402": 23.44, + "1437477403": 23.44, + "1437477404": 23.44, + "1437477405": 23.44, + "1437477406": 23.44, + "1437477407": 23.44, + "1437477408": 23.44, + "1437477411": 23.44, + "1437477412": 23.44, + "1437477413": 23.44, + "1437477414": 23.44, + "1437477415": 23.44, + "1437477417": 23.44, + "1437477418": 23.44, + "1437477419": 23.44, + "1437477420": 23.44, + "1437477421": 23.44, + "1437477422": 23.44, + "1437477423": 23.44, + "1437477428": 23.44, + "1437477429": 23.44, + "1437477430": 23.44, + "1437477432": 23.44, + "1437477433": 23.44, + "1437477434": 23.45, + "1437477435": 23.45, + "1437477436": 23.45, + "1437477437": 23.45, + "1437477438": 23.45, + "1437477439": 23.45, + "1437477440": 23.45, + "1437477441": 23.45, + "1437477442": 23.45, + "1437477443": 23.45, + "1437477444": 23.46, + "1437477445": 23.46, + "1437477446": 23.46, + "1437477447": 23.46, + "1437477448": 23.46, + "1437477449": 23.46, + "1437477450": 23.46, + "1437477451": 23.46, + "1437477452": 23.46, + "1437477453": 23.46, + "1437477454": 23.46, + "1437477455": 23.47, + "1437477456": 23.47, + "1437477457": 23.47, + "1437477458": 23.47, + "1437477459": 23.47, + "1437477461": 23.47, + "1437477465": 23.47, + "1437477466": 23.47, + "1437477467": 23.47, + "1437477468": 23.47, + "1437477469": 23.47, + "1437477470": 23.47, + "1437477471": 23.47, + "1437477472": 23.48, + "1437477473": 23.48, + "1437477474": 23.48, + "1437477475": 23.48, + "1437477476": 23.48, + "1437477477": 23.48, + "1437477478": 23.48, + "1437477479": 23.48, + "1437477480": 23.48, + "1437477481": 23.49, + "1437477482": 23.49, + "1437477483": 23.49, + "1437477484": 23.49, + "1437477485": 23.49, + "1437477486": 23.49, + "1437477487": 23.49, + "1437477488": 23.5, + "1437477489": 23.5, + "1437477490": 23.5, + "1437477491": 23.5, + "1437477492": 23.5, + "1437477493": 23.5, + "1437477494": 23.5, + "1437477495": 23.5, + "1437477496": 23.5, + "1437477497": 23.51, + "1437477498": 23.51, + "1437477500": 23.51, + "1437477501": 23.51, + "1437477502": 23.52, + "1437477503": 23.52, + "1437477504": 23.52, + "1437477505": 23.53, + "1437477506": 23.53, + "1437477507": 23.53, + "1437477508": 23.54, + "1437477509": 23.54, + "1437477510": 23.55, + "1437477511": 23.55, + "1437477512": 23.55, + "1437477513": 23.56, + "1437477514": 23.56, + "1437477515": 23.57, + "1437477516": 23.57, + "1437477517": 23.58, + "1437477518": 23.58, + "1437477519": 23.58, + "1437477520": 23.59, + "1437477521": 23.59, + "1437477522": 23.59, + "1437477523": 23.6, + "1437477524": 23.6, + "1437477525": 23.6, + "1437477526": 23.6, + "1437477527": 23.6, + "1437477528": 23.6, + "1437477529": 23.6, + "1437477530": 23.6, + "1437477532": 23.61, + "1437477533": 23.61, + "1437477534": 23.61, + "1437477535": 23.61, + "1437477536": 23.61, + "1437477537": 23.61, + "1437477538": 23.61, + "1437477539": 23.61, + "1437477540": 23.61, + "1437477541": 23.61, + "1437477542": 23.61, + "1437477543": 23.61, + "1437477544": 23.61, + "1437477545": 23.62, + "1437477546": 23.62, + "1437477547": 23.62, + "1437477548": 23.62, + "1437477549": 23.62, + "1437477550": 23.62, + "1437477551": 23.62, + "1437477552": 23.62, + "1437477553": 23.62, + "1437477555": 23.62, + "1437477556": 23.62, + "1437477557": 23.62, + "1437477558": 23.62, + "1437477559": 23.62, + "1437477560": 23.62, + "1437477561": 23.63, + "1437477562": 23.63, + "1437477563": 23.63, + "1437477564": 23.63, + "1437477565": 23.63, + "1437477566": 23.63, + "1437477567": 23.63, + "1437477568": 23.63, + "1437477569": 23.63, + "1437477570": 23.63, + "1437477571": 23.63, + "1437477572": 23.63, + "1437477573": 23.63, + "1437477574": 23.63, + "1437477575": 23.63, + "1437477576": 23.63, + "1437477577": 23.63, + "1437477578": 23.63, + "1437477580": 23.63, + "1437477581": 23.63, + "1437477582": 23.63, + "1437477583": 23.63, + "1437477584": 23.64, + "1437477585": 23.64, + "1437477586": 23.64, + "1437477587": 23.64, + "1437477588": 23.64, + "1437477589": 23.64, + "1437477590": 23.64, + "1437477591": 23.64, + "1437477592": 23.65, + "1437477593": 23.65, + "1437477594": 23.65, + "1437477595": 23.65, + "1437477596": 23.65, + "1437477597": 23.65, + "1437477598": 23.65, + "1437477599": 23.65, + "1437477600": 23.65, + "1437477601": 23.65, + "1437477604": 23.65, + "1437477605": 23.65, + "1437477607": 23.65, + "1437477608": 23.66, + "1437477609": 23.66, + "1437477610": 23.66, + "1437477611": 23.66, + "1437477612": 23.66, + "1437477613": 23.66, + "1437477614": 23.67, + "1437477615": 23.67, + "1437477616": 23.67, + "1437477617": 23.68, + "1437477618": 23.68, + "1437477619": 23.68, + "1437477620": 23.69, + "1437477621": 23.69, + "1437477622": 23.7, + "1437477623": 23.7, + "1437477624": 23.71, + "1437477625": 23.71, + "1437477626": 23.72, + "1437477627": 23.73, + "1437477628": 23.73, + "1437477629": 23.74, + "1437477630": 23.75, + "1437477631": 23.76, + "1437477632": 23.77, + "1437477633": 23.78, + "1437477634": 23.79, + "1437477635": 23.8, + "1437477636": 23.81, + "1437477638": 23.82, + "1437477639": 23.83, + "1437477640": 23.84, + "1437477641": 23.85, + "1437477642": 23.85, + "1437477643": 23.86, + "1437477644": 23.87, + "1437477645": 23.88, + "1437477646": 23.89, + "1437477647": 23.9, + "1437477648": 23.91, + "1437477649": 23.92, + "1437477650": 23.93, + "1437477651": 23.94, + "1437477652": 23.95, + "1437477653": 23.96, + "1437477654": 23.97, + "1437477655": 23.98, + "1437477656": 23.98, + "1437477657": 23.99, + "1437477658": 23.99, + "1437477659": 23.99, + "1437477660": 24, + "1437477661": 24, + "1437477662": 24, + "1437477663": 24, + "1437477664": 24, + "1437477665": 24, + "1437477666": 24, + "1437477667": 24, + "1437477668": 24, + "1437477669": 24, + "1437477671": 24, + "1437477672": 24, + "1437477673": 24, + "1437477674": 24, + "1437477676": 24.01, + "1437477677": 24.01, + "1437477678": 24.01, + "1437477679": 24.01, + "1437477680": 24.01, + "1437477681": 24.01, + "1437477682": 24.01, + "1437477683": 24.01, + "1437477684": 24.01, + "1437477685": 24.01, + "1437477688": 24.01, + "1437477689": 24.01, + "1437477690": 24.01, + "1437477691": 24.01, + "1437477692": 24.01, + "1437477693": 24.01, + "1437477695": 24.02, + "1437477696": 24.02, + "1437477697": 24.02, + "1437477698": 24.02, + "1437477699": 24.02, + "1437477700": 24.02, + "1437477701": 24.02, + "1437477702": 24.02, + "1437477703": 24.02, + "1437477704": 24.02, + "1437477705": 24.02, + "1437477706": 24.02 + }, + "speeds": { + "1437474517": 12.095, + "1437474518": 9.787, + "1437474519": 8.439, + "1437474520": 7.538, + "1437474521": 8.243, + "1437474522": 12.327, + "1437474523": 23.474, + "1437474524": 205.761, + "1437474525": 0, + "1437474526": 0, + "1437474527": 490.196, + "1437474528": 22.104, + "1437474529": 12.318, + "1437474530": 9.358, + "1437474532": 7.095, + "1437474533": 6.136, + "1437474534": 5.602, + "1437474535": 5.038, + "1437474536": 4.659, + "1437474537": 4.409, + "1437474538": 4.292, + "1437474539": 4.191, + "1437474540": 4.099, + "1437474541": 4.868, + "1437474542": 6.039, + "1437474543": 5.834, + "1437474544": 4.57, + "1437474545": 3.849, + "1437474546": 3.405, + "1437474547": 3.161, + "1437474548": 2.907, + "1437474549": 2.699, + "1437474550": 2.537, + "1437474551": 2.379, + "1437474552": 2.239, + "1437474553": 2.117, + "1437474554": 2.021, + "1437474555": 1.938, + "1437474556": 1.863, + "1437474557": 1.8, + "1437474558": 1.757, + "1437474559": 1.726, + "1437474560": 1.694, + "1437474561": 1.665, + "1437474562": 1.644, + "1437474563": 1.627, + "1437474564": 1.609, + "1437474566": 1.593, + "1437474567": 1.576, + "1437474568": 1.562, + "1437474569": 1.551, + "1437474570": 1.539, + "1437474571": 1.528, + "1437474572": 1.515, + "1437474573": 1.5, + "1437474574": 1.489, + "1437474575": 1.485, + "1437474576": 1.481, + "1437474577": 1.485, + "1437474578": 1.485, + "1437474579": 1.483, + "1437474580": 1.483, + "1437474581": 1.473, + "1437474582": 1.465, + "1437474583": 1.463, + "1437474584": 1.475, + "1437474585": 1.49, + "1437474586": 1.511, + "1437474587": 1.538, + "1437474588": 1.557, + "1437474589": 1.563, + "1437474590": 1.568, + "1437474591": 1.568, + "1437474592": 1.566, + "1437474593": 1.564, + "1437474594": 1.562, + "1437474595": 1.56, + "1437474596": 1.56, + "1437474597": 1.563, + "1437474598": 1.566, + "1437474599": 1.571, + "1437474600": 1.59, + "1437474601": 1.617, + "1437474603": 1.63, + "1437474604": 1.632, + "1437474605": 1.625, + "1437474606": 1.61, + "1437474607": 1.598, + "1437474608": 1.592, + "1437474609": 1.588, + "1437474610": 1.581, + "1437474611": 1.57, + "1437474612": 1.563, + "1437474613": 1.558, + "1437474614": 1.557, + "1437474615": 1.56, + "1437474616": 1.566, + "1437474617": 1.568, + "1437474618": 1.568, + "1437474619": 1.566, + "1437474620": 1.577, + "1437474621": 1.594, + "1437474622": 1.584, + "1437474623": 1.576, + "1437474624": 1.591, + "1437474626": 1.615, + "1437474627": 1.626, + "1437474628": 1.639, + "1437474629": 1.662, + "1437474630": 1.708, + "1437474631": 1.754, + "1437474632": 1.79, + "1437474633": 1.831, + "1437474634": 1.888, + "1437474635": 1.918, + "1437474636": 1.937, + "1437474637": 1.945, + "1437474638": 1.944, + "1437474639": 1.925, + "1437474640": 1.905, + "1437474641": 1.88, + "1437474642": 1.845, + "1437474643": 1.809, + "1437474644": 1.797, + "1437474645": 1.873, + "1437474646": 1.97, + "1437474647": 2.08, + "1437474648": 2.207, + "1437474649": 2.365, + "1437474650": 2.515, + "1437474652": 2.697, + "1437474653": 2.883, + "1437474654": 3.069, + "1437474655": 3.263, + "1437474656": 3.474, + "1437474657": 3.678, + "1437474658": 3.895, + "1437474659": 4.012, + "1437474660": 3.982, + "1437474661": 3.872, + "1437474662": 3.729, + "1437474663": 3.552, + "1437474664": 3.396, + "1437474665": 3.285, + "1437474666": 3.259, + "1437474667": 3.426, + "1437474668": 3.911, + "1437474669": 4.414, + "1437474670": 4.869, + "1437474671": 5.231, + "1437474672": 5.567, + "1437474673": 5.877, + "1437474674": 5.969, + "1437474675": 5.98, + "1437474676": 5.908, + "1437474677": 5.834, + "1437474678": 5.783, + "1437474679": 5.679, + "1437474681": 5.557, + "1437474682": 5.447, + "1437474683": 5.378, + "1437474684": 5.347, + "1437474685": 5.313, + "1437474686": 5.299, + "1437474687": 5.283, + "1437474688": 5.269, + "1437474689": 5.238, + "1437474690": 5.241, + "1437474691": 5.223, + "1437474692": 5.218, + "1437474693": 5.218, + "1437474694": 5.168, + "1437474695": 5.182, + "1437474696": 5.261, + "1437474697": 5.281, + "1437474698": 5.171, + "1437474699": 5.095, + "1437474700": 4.981, + "1437474701": 4.892, + "1437474702": 4.853, + "1437474703": 4.809, + "1437474705": 4.803, + "1437474706": 4.82, + "1437474707": 4.865, + "1437474708": 4.832, + "1437474709": 4.818, + "1437474710": 4.928, + "1437474711": 4.756, + "1437474712": 4.635, + "1437474713": 4.522, + "1437474714": 4.465, + "1437474715": 4.389, + "1437474716": 4.328, + "1437474717": 4.276, + "1437474718": 4.222, + "1437474719": 4.191, + "1437474720": 4.178, + "1437474721": 4.172, + "1437474722": 4.161, + "1437474723": 4.15, + "1437474724": 4.158, + "1437474725": 4.151, + "1437474726": 4.151, + "1437474727": 4.172, + "1437474728": 4.18, + "1437474729": 4.212, + "1437474730": 4.223, + "1437474732": 4.278, + "1437474733": 4.307, + "1437474734": 4.366, + "1437474735": 4.437, + "1437474736": 4.393, + "1437474737": 4.302, + "1437474738": 4.169, + "1437474739": 3.967, + "1437474740": 3.746, + "1437474741": 3.48, + "1437474742": 3.189, + "1437474743": 2.924, + "1437474744": 2.693, + "1437474745": 2.485, + "1437474746": 2.31, + "1437474747": 2.178, + "1437474748": 2.105, + "1437474749": 2.082, + "1437474750": 2.111, + "1437474751": 2.18, + "1437474752": 2.279, + "1437474753": 2.388, + "1437474754": 2.494, + "1437474755": 2.604, + "1437474756": 2.714, + "1437474757": 2.825, + "1437474758": 2.923, + "1437474760": 3.026, + "1437474761": 3.118, + "1437474762": 3.192, + "1437474763": 3.256, + "1437474764": 3.315, + "1437474765": 3.363, + "1437474766": 3.43, + "1437474767": 3.479, + "1437474768": 3.507, + "1437474769": 3.543, + "1437474770": 3.572, + "1437474771": 3.605, + "1437474772": 3.642, + "1437474773": 3.692, + "1437474774": 3.715, + "1437474775": 3.733, + "1437474776": 3.736, + "1437474777": 3.745, + "1437474778": 3.735, + "1437474779": 3.74, + "1437474780": 3.759, + "1437474781": 3.784, + "1437474782": 3.797, + "1437474783": 3.787, + "1437474785": 3.762, + "1437474786": 3.744, + "1437474787": 3.746, + "1437474788": 3.724, + "1437474789": 3.721, + "1437474790": 3.736, + "1437474791": 3.743, + "1437474792": 3.759, + "1437474793": 3.745, + "1437474794": 3.729, + "1437474795": 3.718, + "1437474796": 3.721, + "1437474797": 3.719, + "1437474798": 3.719, + "1437474799": 3.744, + "1437474800": 3.756, + "1437474801": 3.82, + "1437474802": 3.844, + "1437474803": 3.856, + "1437474804": 3.865, + "1437474805": 3.815, + "1437474806": 3.726, + "1437474808": 3.441, + "1437474809": 3.033, + "1437474810": 2.757, + "1437474811": 2.559, + "1437474812": 2.429, + "1437474813": 2.367, + "1437474814": 2.346, + "1437474815": 2.358, + "1437474816": 2.379, + "1437474817": 2.415, + "1437474818": 2.452, + "1437474819": 2.485, + "1437474820": 2.515, + "1437474821": 2.529, + "1437474822": 2.525, + "1437474823": 2.516, + "1437474824": 2.493, + "1437474825": 2.465, + "1437474827": 2.422, + "1437474828": 2.356, + "1437474829": 2.253, + "1437474830": 2.144, + "1437474831": 2.061, + "1437474832": 1.988, + "1437474833": 1.927, + "1437474834": 1.867, + "1437474835": 1.806, + "1437474836": 1.754, + "1437474837": 1.702, + "1437474838": 1.654, + "1437474839": 1.608, + "1437474840": 1.567, + "1437474841": 1.532, + "1437474842": 1.497, + "1437474843": 1.465, + "1437474844": 1.435, + "1437474845": 1.409, + "1437474846": 1.387, + "1437474847": 1.367, + "1437474848": 1.346, + "1437474849": 1.329, + "1437474850": 1.316, + "1437474851": 1.305, + "1437474852": 1.299, + "1437474853": 1.298, + "1437474854": 1.301, + "1437474855": 1.307, + "1437474856": 1.319, + "1437474857": 1.333, + "1437474859": 1.355, + "1437474860": 1.378, + "1437474861": 1.396, + "1437474862": 1.411, + "1437474863": 1.424, + "1437474864": 1.438, + "1437474865": 1.453, + "1437474866": 1.467, + "1437474867": 1.477, + "1437474868": 1.485, + "1437474869": 1.491, + "1437474870": 1.494, + "1437474871": 1.5, + "1437474872": 1.51, + "1437474873": 1.52, + "1437474874": 1.528, + "1437474875": 1.536, + "1437474876": 1.543, + "1437474877": 1.548, + "1437474878": 1.551, + "1437474879": 1.552, + "1437474880": 1.549, + "1437474881": 1.54, + "1437474882": 1.529, + "1437474883": 1.516, + "1437474884": 1.499, + "1437474885": 1.481, + "1437474886": 1.462, + "1437474887": 1.443, + "1437474888": 1.424, + "1437474890": 1.407, + "1437474891": 1.392, + "1437474892": 1.378, + "1437474893": 1.368, + "1437474894": 1.359, + "1437474895": 1.352, + "1437474896": 1.351, + "1437474897": 1.359, + "1437474898": 1.37, + "1437474899": 1.388, + "1437474900": 1.403, + "1437474901": 1.417, + "1437474902": 1.431, + "1437474903": 1.446, + "1437474904": 1.462, + "1437474905": 1.476, + "1437474906": 1.488, + "1437474907": 1.497, + "1437474908": 1.502, + "1437474909": 1.501, + "1437474910": 1.495, + "1437474911": 1.481, + "1437474912": 1.458, + "1437474913": 1.434, + "1437474914": 1.408, + "1437474915": 1.381, + "1437474916": 1.357, + "1437474917": 1.333, + "1437474918": 1.312, + "1437474919": 1.291, + "1437474920": 1.271, + "1437474921": 1.254, + "1437474923": 1.239, + "1437474924": 1.224, + "1437474925": 1.211, + "1437474926": 1.2, + "1437474927": 1.191, + "1437474928": 1.185, + "1437474929": 1.185, + "1437474930": 1.202, + "1437474931": 1.255, + "1437474932": 1.326, + "1437474933": 1.402, + "1437474934": 1.485, + "1437474935": 1.571, + "1437474936": 1.661, + "1437474937": 1.749, + "1437474938": 1.837, + "1437474939": 1.931, + "1437474940": 2.019, + "1437474941": 2.097, + "1437474942": 2.153, + "1437474943": 2.179, + "1437474944": 2.188, + "1437474945": 2.182, + "1437474946": 2.166, + "1437474947": 2.144, + "1437474948": 2.112, + "1437474949": 2.079, + "1437474950": 2.043, + "1437474951": 1.999, + "1437474952": 1.947, + "1437474953": 1.907, + "1437474954": 1.868, + "1437474955": 1.831, + "1437474956": 1.795, + "1437474957": 1.76, + "1437474958": 1.728, + "1437474959": 1.697, + "1437474960": 1.669, + "1437474962": 1.64, + "1437474963": 1.604, + "1437474964": 1.568, + "1437474965": 1.533, + "1437474966": 1.499, + "1437474967": 1.469, + "1437474968": 1.446, + "1437474969": 1.427, + "1437474970": 1.414, + "1437474971": 1.405, + "1437474972": 1.402, + "1437474973": 1.401, + "1437474974": 1.402, + "1437474975": 1.406, + "1437474976": 1.41, + "1437474977": 1.413, + "1437474978": 1.412, + "1437474979": 1.41, + "1437474980": 1.407, + "1437474981": 1.403, + "1437474982": 1.4, + "1437474983": 1.39, + "1437474984": 1.37, + "1437474985": 1.351, + "1437474986": 1.328, + "1437474987": 1.298, + "1437474988": 1.262, + "1437474989": 1.221, + "1437474990": 1.185, + "1437474992": 1.169, + "1437474993": 1.16, + "1437474994": 1.176, + "1437474995": 1.217, + "1437474996": 1.267, + "1437474997": 1.313, + "1437474998": 1.334, + "1437474999": 1.325, + "1437475000": 1.297, + "1437475001": 1.268, + "1437475002": 1.239, + "1437475003": 1.21, + "1437475004": 1.181, + "1437475005": 1.16, + "1437475006": 1.137, + "1437475007": 1.108, + "1437475008": 1.083, + "1437475009": 1.056, + "1437475010": 1.029, + "1437475012": 1, + "1437475013": 0.981, + "1437475014": 0.969, + "1437475015": 0.963, + "1437475016": 0.96, + "1437475017": 0.961, + "1437475018": 0.963, + "1437475019": 0.965, + "1437475020": 0.969, + "1437475021": 0.974, + "1437475022": 0.979, + "1437475023": 0.985, + "1437475024": 0.993, + "1437475025": 1.003, + "1437475026": 1.014, + "1437475027": 1.024, + "1437475029": 1.037, + "1437475030": 1.049, + "1437475031": 1.061, + "1437475032": 1.072, + "1437475033": 1.083, + "1437475034": 1.094, + "1437475035": 1.105, + "1437475036": 1.116, + "1437475037": 1.128, + "1437475038": 1.139, + "1437475039": 1.151, + "1437475040": 1.165, + "1437475041": 1.18, + "1437475042": 1.198, + "1437475043": 1.218, + "1437475044": 1.239, + "1437475045": 1.261, + "1437475046": 1.285, + "1437475047": 1.308, + "1437475048": 1.334, + "1437475049": 1.357, + "1437475050": 1.375, + "1437475051": 1.39, + "1437475052": 1.404, + "1437475054": 1.41, + "1437475055": 1.415, + "1437475056": 1.422, + "1437475057": 1.43, + "1437475058": 1.437, + "1437475059": 1.444, + "1437475060": 1.449, + "1437475061": 1.456, + "1437475062": 1.46, + "1437475063": 1.463, + "1437475064": 1.466, + "1437475065": 1.469, + "1437475066": 1.473, + "1437475067": 1.477, + "1437475068": 1.48, + "1437475069": 1.482, + "1437475070": 1.483, + "1437475071": 1.482, + "1437475072": 1.485, + "1437475073": 1.479, + "1437475074": 1.459, + "1437475075": 1.434, + "1437475076": 1.402, + "1437475077": 1.364, + "1437475078": 1.329, + "1437475079": 1.3, + "1437475080": 1.287, + "1437475081": 1.297, + "1437475083": 1.325, + "1437475084": 1.362, + "1437475085": 1.402, + "1437475086": 1.446, + "1437475087": 1.492, + "1437475088": 1.529, + "1437475089": 1.565, + "1437475090": 1.608, + "1437475091": 1.649, + "1437475092": 1.69, + "1437475093": 1.736, + "1437475094": 1.779, + "1437475095": 1.82, + "1437475096": 1.859, + "1437475097": 1.895, + "1437475098": 1.93, + "1437475099": 1.963, + "1437475100": 1.994, + "1437475101": 2.023, + "1437475102": 2.048, + "1437475103": 2.054, + "1437475104": 2.044, + "1437475105": 2.016, + "1437475106": 1.969, + "1437475107": 1.917, + "1437475108": 1.864, + "1437475109": 1.814, + "1437475110": 1.774, + "1437475112": 1.744, + "1437475113": 1.725, + "1437475114": 1.722, + "1437475115": 1.737, + "1437475116": 1.772, + "1437475117": 1.824, + "1437475118": 1.889, + "1437475119": 1.96, + "1437475120": 2.037, + "1437475121": 2.119, + "1437475122": 2.186, + "1437475123": 2.247, + "1437475124": 2.285, + "1437475125": 2.301, + "1437475126": 2.291, + "1437475127": 2.253, + "1437475128": 2.199, + "1437475129": 2.149, + "1437475130": 2.101, + "1437475131": 2.056, + "1437475132": 2.013, + "1437475133": 1.971, + "1437475134": 1.93, + "1437475135": 1.887, + "1437475136": 1.847, + "1437475137": 1.81, + "1437475138": 1.768, + "1437475139": 1.728, + "1437475140": 1.688, + "1437475141": 1.643, + "1437475142": 1.593, + "1437475143": 1.541, + "1437475145": 1.492, + "1437475146": 1.443, + "1437475147": 1.402, + "1437475148": 1.371, + "1437475149": 1.34, + "1437475150": 1.315, + "1437475151": 1.3, + "1437475152": 1.293, + "1437475153": 1.292, + "1437475154": 1.295, + "1437475155": 1.299, + "1437475156": 1.303, + "1437475157": 1.309, + "1437475158": 1.316, + "1437475159": 1.32, + "1437475160": 1.325, + "1437475161": 1.337, + "1437475162": 1.351, + "1437475163": 1.357, + "1437475164": 1.34, + "1437475165": 1.309, + "1437475166": 1.282, + "1437475167": 1.258, + "1437475168": 1.237, + "1437475169": 1.22, + "1437475170": 1.212, + "1437475171": 1.221, + "1437475173": 1.242, + "1437475174": 1.27, + "1437475175": 1.299, + "1437475176": 1.329, + "1437475177": 1.359, + "1437475178": 1.38, + "1437475179": 1.396, + "1437475180": 1.41, + "1437475181": 1.423, + "1437475182": 1.434, + "1437475183": 1.444, + "1437475184": 1.454, + "1437475185": 1.464, + "1437475186": 1.473, + "1437475187": 1.481, + "1437475188": 1.487, + "1437475189": 1.493, + "1437475190": 1.5, + "1437475191": 1.504, + "1437475192": 1.506, + "1437475193": 1.509, + "1437475194": 1.512, + "1437475195": 1.513, + "1437475196": 1.51, + "1437475197": 1.507, + "1437475198": 1.499, + "1437475200": 1.491, + "1437475201": 1.48, + "1437475202": 1.465, + "1437475203": 1.454, + "1437475204": 1.452, + "1437475205": 1.45, + "1437475206": 1.447, + "1437475207": 1.445, + "1437475208": 1.444, + "1437475209": 1.441, + "1437475210": 1.438, + "1437475211": 1.437, + "1437475212": 1.437, + "1437475213": 1.44, + "1437475214": 1.454, + "1437475215": 1.472, + "1437475216": 1.491, + "1437475217": 1.51, + "1437475218": 1.53, + "1437475219": 1.545, + "1437475220": 1.556, + "1437475221": 1.565, + "1437475222": 1.573, + "1437475223": 1.581, + "1437475224": 1.588, + "1437475225": 1.594, + "1437475226": 1.601, + "1437475227": 1.601, + "1437475228": 1.593, + "1437475230": 1.571, + "1437475231": 1.538, + "1437475232": 1.513, + "1437475233": 1.492, + "1437475234": 1.483, + "1437475235": 1.483, + "1437475236": 1.488, + "1437475237": 1.492, + "1437475238": 1.496, + "1437475239": 1.499, + "1437475240": 1.503, + "1437475241": 1.507, + "1437475242": 1.511, + "1437475243": 1.517, + "1437475244": 1.522, + "1437475245": 1.524, + "1437475246": 1.519, + "1437475247": 1.516, + "1437475248": 1.513, + "1437475249": 1.518, + "1437475250": 1.522, + "1437475251": 1.527, + "1437475252": 1.529, + "1437475253": 1.53, + "1437475254": 1.516, + "1437475255": 1.493, + "1437475256": 1.475, + "1437475257": 1.481, + "1437475258": 1.548, + "1437475259": 1.631, + "1437475260": 1.716, + "1437475261": 1.811, + "1437475262": 1.908, + "1437475263": 2.008, + "1437475264": 2.11, + "1437475265": 2.219, + "1437475266": 2.33, + "1437475267": 2.44, + "1437475269": 2.555, + "1437475270": 2.665, + "1437475271": 2.775, + "1437475272": 2.873, + "1437475273": 2.955, + "1437475274": 3.028, + "1437475275": 3.119, + "1437475276": 3.198, + "1437475277": 3.256, + "1437475278": 3.346, + "1437475279": 3.408, + "1437475280": 3.462, + "1437475281": 3.502, + "1437475282": 3.537, + "1437475283": 3.56, + "1437475284": 3.573, + "1437475285": 3.572, + "1437475286": 3.607, + "1437475287": 3.631, + "1437475288": 3.657, + "1437475289": 3.661, + "1437475290": 3.659, + "1437475291": 3.657, + "1437475292": 3.618, + "1437475293": 3.575, + "1437475294": 3.523, + "1437475295": 3.458, + "1437475296": 3.385, + "1437475297": 3.315, + "1437475298": 3.243, + "1437475299": 3.147, + "1437475300": 3.046, + "1437475301": 2.917, + "1437475302": 2.782, + "1437475303": 2.662, + "1437475304": 2.548, + "1437475305": 2.436, + "1437475306": 2.335, + "1437475308": 2.231, + "1437475309": 2.128, + "1437475310": 2.023, + "1437475311": 1.924, + "1437475312": 1.833, + "1437475313": 1.748, + "1437475314": 1.673, + "1437475315": 1.605, + "1437475316": 1.544, + "1437475317": 1.485, + "1437475318": 1.429, + "1437475319": 1.378, + "1437475320": 1.329, + "1437475321": 1.281, + "1437475322": 1.242, + "1437475323": 1.212, + "1437475324": 1.188, + "1437475325": 1.172, + "1437475326": 1.165, + "1437475327": 1.17, + "1437475328": 1.189, + "1437475329": 1.218, + "1437475330": 1.254, + "1437475331": 1.297, + "1437475332": 1.342, + "1437475333": 1.39, + "1437475334": 1.443, + "1437475335": 1.495, + "1437475336": 1.54, + "1437475337": 1.578, + "1437475338": 1.609, + "1437475339": 1.633, + "1437475340": 1.635, + "1437475342": 1.552, + "1437475343": 1.412, + "1437475344": 1.406, + "1437475345": 1.5, + "1437475346": 1.61, + "1437475347": 1.616, + "1437475348": 1.596, + "1437475349": 1.574, + "1437475350": 1.553, + "1437475351": 1.537, + "1437475352": 1.533, + "1437475353": 1.539, + "1437475354": 1.541, + "1437475355": 1.526, + "1437475356": 1.511, + "1437475357": 1.494, + "1437475358": 1.472, + "1437475359": 1.441, + "1437475360": 1.392, + "1437475361": 1.344, + "1437475362": 1.305, + "1437475363": 1.282, + "1437475364": 1.297, + "1437475365": 1.362, + "1437475366": 1.452, + "1437475367": 1.547, + "1437475368": 1.628, + "1437475369": 1.67, + "1437475371": 1.678, + "1437475372": 1.671, + "1437475373": 1.655, + "1437475374": 1.628, + "1437475375": 1.59, + "1437475376": 1.538, + "1437475377": 1.468, + "1437475378": 1.394, + "1437475379": 1.331, + "1437475380": 1.284, + "1437475381": 1.26, + "1437475382": 1.3, + "1437475383": 1.361, + "1437475384": 1.429, + "1437475385": 1.496, + "1437475386": 1.54, + "1437475387": 1.574, + "1437475388": 1.598, + "1437475389": 1.621, + "1437475390": 1.646, + "1437475391": 1.68, + "1437475392": 1.715, + "1437475393": 1.733, + "1437475394": 1.722, + "1437475395": 1.72, + "1437475396": 1.745, + "1437475397": 1.788, + "1437475398": 1.832, + "1437475400": 1.845, + "1437475401": 1.851, + "1437475402": 1.851, + "1437475403": 1.838, + "1437475404": 1.794, + "1437475405": 1.758, + "1437475406": 1.731, + "1437475407": 1.708, + "1437475408": 1.688, + "1437475409": 1.668, + "1437475410": 1.65, + "1437475411": 1.638, + "1437475412": 1.628, + "1437475413": 1.624, + "1437475414": 1.639, + "1437475415": 1.675, + "1437475416": 1.717, + "1437475417": 1.752, + "1437475418": 1.775, + "1437475419": 1.781, + "1437475420": 1.773, + "1437475421": 1.756, + "1437475422": 1.734, + "1437475423": 1.712, + "1437475424": 1.687, + "1437475425": 1.665, + "1437475426": 1.642, + "1437475427": 1.619, + "1437475428": 1.598, + "1437475429": 1.578, + "1437475430": 1.559, + "1437475431": 1.543, + "1437475433": 1.527, + "1437475434": 1.51, + "1437475435": 1.494, + "1437475436": 1.476, + "1437475437": 1.461, + "1437475438": 1.45, + "1437475439": 1.441, + "1437475440": 1.43, + "1437475441": 1.423, + "1437475442": 1.407, + "1437475443": 1.395, + "1437475444": 1.388, + "1437475445": 1.389, + "1437475446": 1.392, + "1437475447": 1.397, + "1437475448": 1.402, + "1437475449": 1.407, + "1437475450": 1.412, + "1437475451": 1.426, + "1437475452": 1.44, + "1437475453": 1.455, + "1437475454": 1.47, + "1437475455": 1.485, + "1437475456": 1.501, + "1437475457": 1.517, + "1437475458": 1.535, + "1437475459": 1.553, + "1437475460": 1.572, + "1437475461": 1.592, + "1437475462": 1.614, + "1437475463": 1.638, + "1437475464": 1.665, + "1437475466": 1.695, + "1437475467": 1.727, + "1437475468": 1.762, + "1437475469": 1.799, + "1437475470": 1.84, + "1437475471": 1.883, + "1437475472": 1.927, + "1437475473": 1.973, + "1437475474": 2.021, + "1437475475": 2.072, + "1437475476": 2.124, + "1437475477": 2.176, + "1437475478": 2.369, + "1437475479": 2.668, + "1437475480": 3.029, + "1437475481": 3.509, + "1437475482": 4.136, + "1437475483": 5.028, + "1437475484": 6.342, + "1437475485": 8.6, + "1437475486": 13.398, + "1437475487": 29.709, + "1437475488": 0, + "1437475489": 0, + "1437475490": 0, + "1437475491": 77.16, + "1437475492": 29.815, + "1437475493": 18.077, + "1437475494": 13.495, + "1437475495": 11.178, + "1437475496": 9.662, + "1437475497": 8.595, + "1437475498": 7.607, + "1437475499": 6.635, + "1437475500": 6.072, + "1437475501": 5.64, + "1437475502": 5.236, + "1437475503": 4.839, + "1437475504": 4.469, + "1437475505": 4.186, + "1437475506": 3.966, + "1437475507": 3.769, + "1437475508": 3.447, + "1437475510": 3.358, + "1437475511": 3.761, + "1437475512": 3.674, + "1437475513": 3.498, + "1437475514": 3.343, + "1437475515": 3.209, + "1437475516": 3.097, + "1437475517": 3.001, + "1437475518": 2.907, + "1437475519": 2.841, + "1437475520": 2.775, + "1437475521": 2.716, + "1437475522": 2.666, + "1437475523": 2.623, + "1437475524": 2.576, + "1437475525": 2.536, + "1437475526": 2.5, + "1437475527": 2.465, + "1437475528": 2.433, + "1437475529": 2.408, + "1437475530": 2.385, + "1437475531": 2.36, + "1437475532": 2.334, + "1437475533": 2.313, + "1437475534": 2.292, + "1437475535": 2.264, + "1437475536": 2.246, + "1437475537": 2.236, + "1437475538": 2.225, + "1437475539": 2.213, + "1437475540": 2.204, + "1437475541": 2.196, + "1437475542": 2.187, + "1437475543": 2.178, + "1437475544": 2.168, + "1437475545": 2.161, + "1437475546": 2.157, + "1437475547": 2.154, + "1437475548": 2.15, + "1437475549": 2.147, + "1437475551": 2.144, + "1437475552": 2.14, + "1437475553": 2.133, + "1437475554": 2.126, + "1437475555": 2.12, + "1437475556": 2.115, + "1437475557": 2.111, + "1437475558": 2.104, + "1437475559": 2.092, + "1437475560": 2.085, + "1437475561": 2.08, + "1437475562": 2.084, + "1437475563": 2.088, + "1437475564": 2.093, + "1437475565": 2.099, + "1437475566": 2.102, + "1437475567": 2.105, + "1437475568": 2.111, + "1437475569": 2.115, + "1437475570": 2.117, + "1437475571": 2.119, + "1437475572": 2.122, + "1437475573": 2.126, + "1437475574": 2.133, + "1437475575": 2.143, + "1437475576": 2.154, + "1437475577": 2.161, + "1437475578": 2.174, + "1437475580": 2.196, + "1437475581": 2.215, + "1437475582": 2.237, + "1437475583": 2.26, + "1437475584": 2.286, + "1437475585": 2.311, + "1437475586": 2.336, + "1437475587": 2.363, + "1437475588": 2.387, + "1437475589": 2.404, + "1437475590": 2.428, + "1437475591": 2.467, + "1437475592": 2.521, + "1437475593": 2.576, + "1437475594": 2.713, + "1437475595": 3.149, + "1437475596": 3.747, + "1437475597": 4.61, + "1437475598": 5.961, + "1437475599": 8.43, + "1437475600": 14.582, + "1437475601": 44.924, + "1437475602": 0, + "1437475603": 0, + "1437475604": 0, + "1437475605": 427.35, + "1437475606": 20.964, + "1437475607": 12.219, + "1437475608": 9.85, + "1437475610": 8.413, + "1437475611": 7.494, + "1437475612": 6.91, + "1437475613": 6.593, + "1437475614": 6.364, + "1437475615": 6.21, + "1437475616": 6.132, + "1437475617": 6.105, + "1437475618": 6.184, + "1437475619": 6.393, + "1437475620": 6.588, + "1437475621": 6.567, + "1437475622": 6.388, + "1437475623": 6.114, + "1437475624": 5.779, + "1437475625": 5.445, + "1437475626": 5.149, + "1437475627": 4.905, + "1437475628": 4.687, + "1437475629": 4.467, + "1437475630": 4.275, + "1437475631": 4.11, + "1437475632": 3.94, + "1437475633": 3.783, + "1437475634": 3.641, + "1437475636": 3.526, + "1437475637": 3.427, + "1437475638": 3.333, + "1437475639": 3.248, + "1437475640": 3.164, + "1437475641": 3.07, + "1437475642": 3.008, + "1437475643": 2.958, + "1437475644": 2.906, + "1437475645": 2.858, + "1437475646": 2.821, + "1437475647": 2.794, + "1437475648": 2.758, + "1437475649": 2.723, + "1437475650": 2.693, + "1437475651": 2.667, + "1437475652": 2.64, + "1437475653": 2.616, + "1437475654": 2.594, + "1437475655": 2.574, + "1437475656": 2.557, + "1437475657": 2.54, + "1437475658": 2.524, + "1437475659": 2.511, + "1437475660": 2.501, + "1437475662": 2.483, + "1437475663": 2.513, + "1437475664": 2.787, + "1437475665": 2.919, + "1437475666": 2.884, + "1437475667": 2.851, + "1437475668": 2.807, + "1437475669": 2.677, + "1437475670": 2.598, + "1437475671": 2.554, + "1437475672": 2.534, + "1437475673": 2.544, + "1437475674": 2.622, + "1437475675": 2.726, + "1437475676": 2.838, + "1437475677": 2.952, + "1437475678": 3.092, + "1437475679": 3.271, + "1437475680": 3.724, + "1437475681": 4.268, + "1437475682": 4.265, + "1437475683": 4.192, + "1437475684": 4.068, + "1437475685": 3.953, + "1437475686": 3.869, + "1437475687": 3.763, + "1437475688": 3.649, + "1437475689": 3.559, + "1437475690": 3.451, + "1437475691": 3.296, + "1437475693": 3.174, + "1437475694": 3.07, + "1437475695": 2.986, + "1437475696": 2.916, + "1437475697": 2.831, + "1437475698": 2.71, + "1437475699": 2.635, + "1437475700": 2.594, + "1437475701": 2.73, + "1437475702": 3.077, + "1437475703": 4.005, + "1437475704": 4.345, + "1437475705": 4.694, + "1437475706": 5.022, + "1437475707": 5.495, + "1437475708": 5.972, + "1437475709": 6.43, + "1437475710": 6.775, + "1437475711": 7.231, + "1437475712": 7.565, + "1437475713": 7.799, + "1437475714": 7.906, + "1437475715": 7.895, + "1437475716": 7.72, + "1437475717": 7.72, + "1437475718": 7.68, + "1437475719": 7.825, + "1437475720": 7.792, + "1437475721": 7.642, + "1437475722": 7.617, + "1437475724": 7.688, + "1437475725": 7.929, + "1437475726": 8.15, + "1437475727": 8.114, + "1437475728": 8.009, + "1437475729": 7.899, + "1437475730": 7.952, + "1437475731": 8.017, + "1437475732": 8.146, + "1437475733": 8.13, + "1437475734": 10.187, + "1437475735": 9.885, + "1437475736": 9.213, + "1437475737": 8.477, + "1437475738": 7.673, + "1437475739": 7.095, + "1437475740": 6.661, + "1437475741": 6.03, + "1437475742": 5.33, + "1437475743": 5.038, + "1437475744": 4.975, + "1437475745": 5.072, + "1437475746": 5.373, + "1437475747": 5.223, + "1437475748": 5.16, + "1437475749": 5.315, + "1437475750": 5.906, + "1437475751": 7.31, + "1437475752": 8.999, + "1437475753": 10.169, + "1437475754": 10.815, + "1437475755": 10.808, + "1437475756": 10.256, + "1437475758": 9.998, + "1437475759": 9.927, + "1437475760": 9.944, + "1437475761": 9.673, + "1437475762": 9.662, + "1437475763": 9.584, + "1437475764": 9.163, + "1437475765": 8.903, + "1437475766": 8.965, + "1437475767": 8.842, + "1437475768": 8.681, + "1437475769": 8.508, + "1437475770": 8.371, + "1437475771": 8.317, + "1437475772": 8.114, + "1437475773": 8.106, + "1437475774": 8.166, + "1437475775": 8.118, + "1437475776": 8.098, + "1437475777": 7.918, + "1437475778": 7.712, + "1437475779": 7.617, + "1437475780": 7.628, + "1437475781": 7.457, + "1437475782": 7.545, + "1437475783": 7.6, + "1437475784": 7.555, + "1437475785": 7.67, + "1437475786": 8.162, + "1437475787": 7.974, + "1437475788": 7.741, + "1437475789": 7.638, + "1437475791": 7.709, + "1437475792": 7.774, + "1437475793": 7.839, + "1437475794": 7.821, + "1437475795": 7.6, + "1437475796": 7.45, + "1437475797": 7.484, + "1437475798": 7.624, + "1437475799": 7.61, + "1437475800": 7.59, + "1437475801": 7.596, + "1437475802": 7.638, + "1437475803": 7.666, + "1437475804": 7.555, + "1437475805": 7.237, + "1437475806": 7.313, + "1437475807": 7.237, + "1437475808": 7.119, + "1437475809": 7.199, + "1437475810": 7.323, + "1437475811": 7.398, + "1437475812": 7.384, + "1437475813": 7.46, + "1437475814": 7.645, + "1437475815": 7.756, + "1437475816": 7.843, + "1437475817": 7.851, + "1437475818": 7.854, + "1437475819": 7.948, + "1437475821": 7.99, + "1437475822": 8.067, + "1437475823": 8.071, + "1437475824": 7.974, + "1437475825": 7.91, + "1437475826": 8.024, + "1437475827": 8.146, + "1437475828": 8.235, + "1437475829": 8.263, + "1437475830": 8.401, + "1437475831": 8.465, + "1437475832": 8.418, + "1437475833": 8.401, + "1437475834": 8.358, + "1437475835": 8.371, + "1437475836": 8.342, + "1437475837": 8.239, + "1437475838": 8.182, + "1437475839": 8.469, + "1437475840": 8.667, + "1437475841": 8.49, + "1437475842": 8.401, + "1437475843": 8.247, + "1437475844": 8.28, + "1437475845": 8.418, + "1437475846": 8.35, + "1437475847": 8.134, + "1437475848": 8.15, + "1437475849": 8.247, + "1437475850": 8.17, + "1437475852": 8.259, + "1437475853": 8.308, + "1437475854": 8.321, + "1437475855": 8.308, + "1437475856": 8.439, + "1437475857": 8.371, + "1437475858": 8.304, + "1437475859": 8.333, + "1437475860": 8.46, + "1437475861": 8.508, + "1437475862": 8.591, + "1437475863": 8.618, + "1437475864": 8.726, + "1437475865": 12.655, + "1437475866": 10.739, + "1437475867": 9.95, + "1437475868": 9.491, + "1437475869": 9.033, + "1437475870": 8.721, + "1437475871": 8.409, + "1437475872": 7.741, + "1437475873": 7.08, + "1437475874": 6.759, + "1437475875": 6.313, + "1437475876": 5.803, + "1437475878": 5.368, + "1437475879": 4.974, + "1437475880": 4.637, + "1437475881": 4.301, + "1437475882": 3.977, + "1437475883": 3.653, + "1437475884": 3.367, + "1437475885": 3.142, + "1437475886": 2.918, + "1437475887": 2.767, + "1437475888": 2.683, + "1437475889": 2.666, + "1437475890": 2.735, + "1437475891": 2.892, + "1437475892": 3.16, + "1437475893": 3.429, + "1437475894": 3.722, + "1437475895": 4.014, + "1437475896": 4.33, + "1437475897": 4.675, + "1437475898": 4.995, + "1437475899": 5.286, + "1437475900": 5.582, + "1437475901": 5.72, + "1437475902": 5.904, + "1437475903": 6.047, + "1437475905": 6.182, + "1437475906": 6.282, + "1437475907": 6.369, + "1437475908": 6.505, + "1437475909": 6.567, + "1437475910": 6.549, + "1437475911": 6.588, + "1437475912": 6.585, + "1437475913": 6.551, + "1437475914": 6.352, + "1437475915": 6.219, + "1437475916": 6.159, + "1437475917": 6.136, + "1437475918": 6.109, + "1437475919": 6.157, + "1437475920": 6.285, + "1437475921": 6.72, + "1437475922": 6.63, + "1437475923": 6.233, + "1437475924": 6.065, + "1437475925": 6.05, + "1437475926": 6.391, + "1437475927": 6.403, + "1437475928": 6.378, + "1437475929": 6.294, + "1437475930": 6.308, + "1437475931": 6.425, + "1437475932": 6.536, + "1437475933": 6.619, + "1437475934": 6.893, + "1437475935": 7.345, + "1437475936": 8.17, + "1437475938": 10.016, + "1437475939": 8.922, + "1437475940": 8.071, + "1437475941": 7.481, + "1437475942": 7.047, + "1437475943": 6.8, + "1437475944": 6.675, + "1437475945": 6.862, + "1437475946": 7.009, + "1437475947": 6.91, + "1437475948": 6.924, + "1437475949": 7.047, + "1437475950": 7.147, + "1437475951": 7.297, + "1437475952": 7.365, + "1437475953": 7.401, + "1437475954": 7.481, + "1437475955": 7.565, + "1437475956": 7.638, + "1437475957": 7.494, + "1437475958": 7.467, + "1437475959": 7.691, + "1437475960": 7.688, + "1437475961": 7.99, + "1437475962": 8.649, + "1437475963": 10.288, + "1437475964": 71.839, + "1437475965": 15.029, + "1437475967": 11.416, + "1437475968": 10.194, + "1437475969": 20.475, + "1437475970": 13.495, + "1437475971": 8.879, + "1437475972": 8.413, + "1437475973": 8.146, + "1437475974": 8.102, + "1437475975": 8.118, + "1437475976": 8.009, + "1437475977": 7.929, + "1437475978": 7.899, + "1437475979": 7.948, + "1437475980": 7.974, + "1437475981": 7.974, + "1437475982": 7.888, + "1437475983": 7.691, + "1437475984": 8.001, + "1437475985": 8.138, + "1437475986": 8.198, + "1437475987": 7.986, + "1437475988": 6.971, + "1437475989": 6.653, + "1437475990": 6.622, + "1437475991": 6.75, + "1437475992": 6.956, + "1437475993": 7.104, + "1437475994": 7.193, + "1437475995": 7.342, + "1437475997": 7.424, + "1437475998": 7.511, + "1437475999": 7.562, + "1437476000": 7.421, + "1437476001": 7.316, + "1437476002": 7.304, + "1437476003": 7.135, + "1437476004": 6.425, + "1437476005": 5.452, + "1437476006": 4.699, + "1437476007": 4.081, + "1437476008": 3.577, + "1437476009": 3.316, + "1437476010": 3.161, + "1437476011": 3.129, + "1437476012": 3.372, + "1437476013": 3.91, + "1437476014": 4.003, + "1437476015": 4.136, + "1437476016": 4.281, + "1437476017": 4.424, + "1437476019": 4.571, + "1437476020": 4.709, + "1437476021": 4.848, + "1437476022": 4.957, + "1437476023": 5.014, + "1437476024": 5.083, + "1437476025": 5.179, + "1437476026": 5.248, + "1437476027": 5.271, + "1437476028": 5.251, + "1437476029": 5.186, + "1437476030": 5.094, + "1437476031": 5.025, + "1437476032": 4.944, + "1437476033": 4.832, + "1437476034": 4.709, + "1437476035": 4.603, + "1437476036": 4.479, + "1437476037": 4.327, + "1437476038": 4.188, + "1437476039": 4.045, + "1437476040": 3.911, + "1437476041": 3.772, + "1437476042": 3.619, + "1437476043": 3.466, + "1437476044": 3.321, + "1437476045": 3.183, + "1437476047": 3.045, + "1437476048": 2.914, + "1437476049": 2.8, + "1437476050": 2.693, + "1437476051": 2.591, + "1437476052": 2.492, + "1437476053": 2.348, + "1437476054": 2.257, + "1437476055": 2.197, + "1437476056": 2.168, + "1437476057": 2.136, + "1437476058": 2.07, + "1437476059": 2.01, + "1437476060": 1.954, + "1437476061": 1.903, + "1437476062": 1.86, + "1437476063": 1.82, + "1437476064": 1.784, + "1437476065": 1.751, + "1437476066": 1.721, + "1437476067": 1.693, + "1437476068": 1.67, + "1437476069": 1.648, + "1437476070": 1.631, + "1437476071": 1.617, + "1437476072": 1.606, + "1437476073": 1.602, + "1437476074": 1.604, + "1437476075": 1.611, + "1437476076": 1.625, + "1437476077": 1.649, + "1437476079": 1.683, + "1437476080": 1.723, + "1437476081": 1.763, + "1437476082": 1.804, + "1437476083": 1.839, + "1437476084": 1.867, + "1437476085": 1.894, + "1437476086": 1.916, + "1437476087": 1.941, + "1437476088": 1.969, + "1437476089": 1.997, + "1437476090": 2.024, + "1437476091": 2.05, + "1437476092": 2.083, + "1437476093": 2.119, + "1437476094": 2.142, + "1437476095": 2.161, + "1437476096": 2.18, + "1437476097": 2.197, + "1437476098": 2.215, + "1437476099": 2.23, + "1437476100": 2.236, + "1437476101": 2.249, + "1437476102": 2.264, + "1437476103": 2.276, + "1437476104": 2.278, + "1437476105": 2.282, + "1437476106": 2.291, + "1437476107": 2.299, + "1437476108": 2.302, + "1437476109": 2.302, + "1437476110": 2.293, + "1437476112": 2.282, + "1437476113": 2.273, + "1437476114": 2.254, + "1437476115": 2.227, + "1437476116": 2.195, + "1437476117": 2.16, + "1437476118": 2.135, + "1437476119": 2.106, + "1437476120": 2.072, + "1437476121": 2.037, + "1437476122": 2.005, + "1437476123": 1.976, + "1437476124": 1.94, + "1437476125": 1.913, + "1437476126": 1.888, + "1437476127": 1.864, + "1437476128": 1.842, + "1437476129": 1.823, + "1437476130": 1.805, + "1437476131": 1.79, + "1437476132": 1.781, + "1437476133": 1.776, + "1437476134": 1.775, + "1437476135": 1.785, + "1437476136": 1.802, + "1437476137": 1.819, + "1437476138": 1.842, + "1437476139": 1.866, + "1437476140": 1.889, + "1437476141": 1.909, + "1437476142": 1.928, + "1437476143": 1.942, + "1437476144": 1.952, + "1437476146": 1.961, + "1437476147": 1.967, + "1437476148": 1.968, + "1437476149": 1.965, + "1437476150": 1.958, + "1437476151": 1.944, + "1437476152": 1.923, + "1437476153": 1.898, + "1437476154": 1.868, + "1437476155": 1.829, + "1437476156": 1.783, + "1437476157": 1.735, + "1437476158": 1.686, + "1437476159": 1.643, + "1437476160": 1.597, + "1437476161": 1.558, + "1437476162": 1.521, + "1437476163": 1.487, + "1437476164": 1.456, + "1437476165": 1.427, + "1437476166": 1.401, + "1437476167": 1.378, + "1437476168": 1.358, + "1437476169": 1.34, + "1437476170": 1.324, + "1437476171": 1.311, + "1437476172": 1.303, + "1437476173": 1.3, + "1437476174": 1.317, + "1437476175": 1.377, + "1437476176": 1.463, + "1437476177": 1.559, + "1437476179": 1.667, + "1437476180": 1.782, + "1437476181": 1.909, + "1437476182": 2.041, + "1437476183": 2.187, + "1437476184": 2.339, + "1437476185": 2.497, + "1437476186": 2.658, + "1437476187": 2.812, + "1437476188": 2.967, + "1437476189": 3.103, + "1437476190": 3.165, + "1437476191": 3.067, + "1437476192": 3.042, + "1437476193": 3.036, + "1437476194": 3.042, + "1437476195": 3.072, + "1437476196": 2.994, + "1437476197": 2.915, + "1437476198": 2.84, + "1437476199": 2.775, + "1437476200": 2.708, + "1437476201": 2.645, + "1437476202": 2.58, + "1437476203": 2.517, + "1437476204": 2.454, + "1437476205": 2.389, + "1437476206": 2.331, + "1437476207": 2.28, + "1437476208": 2.23, + "1437476209": 2.184, + "1437476211": 2.138, + "1437476212": 2.093, + "1437476213": 2.052, + "1437476214": 2.015, + "1437476215": 1.98, + "1437476216": 1.94, + "1437476217": 1.896, + "1437476218": 1.849, + "1437476219": 1.801, + "1437476220": 1.756, + "1437476221": 1.712, + "1437476222": 1.671, + "1437476223": 1.637, + "1437476224": 1.61, + "1437476225": 1.587, + "1437476226": 1.572, + "1437476227": 1.562, + "1437476228": 1.556, + "1437476229": 1.554, + "1437476230": 1.554, + "1437476231": 1.556, + "1437476232": 1.558, + "1437476233": 1.56, + "1437476234": 1.562, + "1437476235": 1.563, + "1437476236": 1.563, + "1437476237": 1.562, + "1437476238": 1.561, + "1437476239": 1.56, + "1437476240": 1.556, + "1437476241": 1.548, + "1437476242": 1.535, + "1437476243": 1.511, + "1437476244": 1.475, + "1437476245": 1.436, + "1437476246": 1.392, + "1437476248": 1.347, + "1437476249": 1.311, + "1437476250": 1.29, + "1437476251": 1.291, + "1437476252": 1.324, + "1437476253": 1.379, + "1437476254": 1.448, + "1437476255": 1.512, + "1437476256": 1.555, + "1437476257": 1.561, + "1437476258": 1.535, + "1437476259": 1.5, + "1437476260": 1.464, + "1437476261": 1.432, + "1437476262": 1.401, + "1437476263": 1.37, + "1437476264": 1.34, + "1437476265": 1.31, + "1437476266": 1.282, + "1437476267": 1.254, + "1437476268": 1.227, + "1437476269": 1.196, + "1437476270": 1.161, + "1437476271": 1.126, + "1437476272": 1.097, + "1437476274": 1.077, + "1437476275": 1.063, + "1437476276": 1.057, + "1437476277": 1.055, + "1437476278": 1.056, + "1437476279": 1.059, + "1437476280": 1.063, + "1437476281": 1.069, + "1437476282": 1.075, + "1437476283": 1.083, + "1437476284": 1.091, + "1437476285": 1.099, + "1437476286": 1.11, + "1437476287": 1.123, + "1437476288": 1.136, + "1437476289": 1.15, + "1437476290": 1.166, + "1437476291": 1.182, + "1437476292": 1.199, + "1437476293": 1.215, + "1437476295": 1.232, + "1437476296": 1.249, + "1437476297": 1.268, + "1437476298": 1.286, + "1437476299": 1.304, + "1437476300": 1.323, + "1437476301": 1.343, + "1437476302": 1.363, + "1437476303": 1.383, + "1437476304": 1.405, + "1437476305": 1.428, + "1437476306": 1.454, + "1437476307": 1.482, + "1437476308": 1.52, + "1437476309": 1.563, + "1437476310": 1.608, + "1437476311": 1.656, + "1437476312": 1.705, + "1437476313": 1.759, + "1437476314": 1.812, + "1437476315": 1.862, + "1437476316": 1.913, + "1437476317": 1.97, + "1437476318": 2.025, + "1437476319": 2.081, + "1437476320": 2.135, + "1437476321": 2.188, + "1437476323": 2.422, + "1437476324": 2.714, + "1437476325": 3.085, + "1437476326": 3.548, + "1437476327": 4.151, + "1437476328": 5.026, + "1437476329": 6.313, + "1437476330": 8.422, + "1437476331": 12.84, + "1437476332": 26.371, + "1437476333": 5555.556, + "1437476334": 0, + "1437476335": 0, + "1437476338": 1041.667, + "1437476339": 59.737, + "1437476340": 31.626, + "1437476341": 19.794, + "1437476342": 14.518, + "1437476343": 11.779, + "1437476344": 9.868, + "1437476345": 8.622, + "1437476346": 7.756, + "1437476347": 7.297, + "1437476348": 6.979, + "1437476349": 6.75, + "1437476350": 6.528, + "1437476351": 6.299, + "1437476352": 6.028, + "1437476353": 5.801, + "1437476354": 5.64, + "1437476355": 5.491, + "1437476356": 5.33, + "1437476357": 5.163, + "1437476358": 5.014, + "1437476360": 4.901, + "1437476361": 4.835, + "1437476362": 4.795, + "1437476363": 4.751, + "1437476364": 4.686, + "1437476365": 4.622, + "1437476366": 4.561, + "1437476367": 4.517, + "1437476368": 4.477, + "1437476369": 4.435, + "1437476370": 4.388, + "1437476371": 4.343, + "1437476372": 4.32, + "1437476373": 4.304, + "1437476374": 4.268, + "1437476375": 4.206, + "1437476376": 4.138, + "1437476377": 4.111, + "1437476378": 4.097, + "1437476379": 4.087, + "1437476380": 4.065, + "1437476381": 4.044, + "1437476382": 4.031, + "1437476383": 4.012, + "1437476384": 3.988, + "1437476385": 3.938, + "1437476386": 3.883, + "1437476387": 3.831, + "1437476389": 3.777, + "1437476390": 3.721, + "1437476391": 3.66, + "1437476392": 3.583, + "1437476393": 3.484, + "1437476394": 3.331, + "1437476395": 3.179, + "1437476396": 3.015, + "1437476397": 2.875, + "1437476398": 2.732, + "1437476399": 2.586, + "1437476400": 2.447, + "1437476401": 2.318, + "1437476402": 2.204, + "1437476403": 2.105, + "1437476404": 2.017, + "1437476405": 1.938, + "1437476406": 1.911, + "1437476407": 1.922, + "1437476408": 1.934, + "1437476410": 1.973, + "1437476411": 2.028, + "1437476412": 2.104, + "1437476413": 2.199, + "1437476414": 2.295, + "1437476415": 2.391, + "1437476416": 2.486, + "1437476417": 2.598, + "1437476418": 2.726, + "1437476419": 2.858, + "1437476420": 2.999, + "1437476421": 3.146, + "1437476422": 3.306, + "1437476423": 3.474, + "1437476424": 3.652, + "1437476425": 3.828, + "1437476426": 4.011, + "1437476427": 4.2, + "1437476428": 4.377, + "1437476429": 4.556, + "1437476430": 4.758, + "1437476431": 4.965, + "1437476432": 5.189, + "1437476433": 5.42, + "1437476434": 5.614, + "1437476435": 5.789, + "1437476436": 5.978, + "1437476437": 6.161, + "1437476438": 6.28, + "1437476439": 6.356, + "1437476441": 6.325, + "1437476442": 6.256, + "1437476443": 6.175, + "1437476444": 6.121, + "1437476445": 5.735, + "1437476446": 4.951, + "1437476447": 4.63, + "1437476448": 4.27, + "1437476449": 3.96, + "1437476450": 3.738, + "1437476451": 3.637, + "1437476452": 3.504, + "1437476453": 3.351, + "1437476454": 3.251, + "1437476455": 3.151, + "1437476456": 3.09, + "1437476457": 2.957, + "1437476458": 2.835, + "1437476459": 2.714, + "1437476460": 2.59, + "1437476461": 2.468, + "1437476462": 2.316, + "1437476463": 2.186, + "1437476464": 2.087, + "1437476465": 2.004, + "1437476467": 1.934, + "1437476468": 1.859, + "1437476469": 1.816, + "1437476470": 1.795, + "1437476471": 1.801, + "1437476472": 1.819, + "1437476473": 1.843, + "1437476474": 1.88, + "1437476475": 1.926, + "1437476476": 1.967, + "1437476477": 1.995, + "1437476478": 2.024, + "1437476479": 2.046, + "1437476480": 2.043, + "1437476481": 2.026, + "1437476482": 1.98, + "1437476483": 1.927, + "1437476484": 1.878, + "1437476485": 1.83, + "1437476486": 1.779, + "1437476487": 1.732, + "1437476488": 1.698, + "1437476490": 1.653, + "1437476491": 1.611, + "1437476492": 1.577, + "1437476493": 1.54, + "1437476494": 1.501, + "1437476495": 1.463, + "1437476496": 1.412, + "1437476497": 1.361, + "1437476498": 1.315, + "1437476499": 1.275, + "1437476500": 1.239, + "1437476501": 1.212, + "1437476502": 1.196, + "1437476503": 1.185, + "1437476504": 1.176, + "1437476505": 1.175, + "1437476506": 1.172, + "1437476507": 1.165, + "1437476508": 1.161, + "1437476509": 1.156, + "1437476510": 1.158, + "1437476511": 1.167, + "1437476512": 1.177, + "1437476513": 1.184, + "1437476514": 1.178, + "1437476515": 1.162, + "1437476516": 1.145, + "1437476517": 1.126, + "1437476518": 1.112, + "1437476519": 1.098, + "1437476521": 1.094, + "1437476522": 1.105, + "1437476523": 1.125, + "1437476524": 1.141, + "1437476525": 1.153, + "1437476526": 1.164, + "1437476527": 1.173, + "1437476528": 1.179, + "1437476529": 1.178, + "1437476530": 1.179, + "1437476531": 1.181, + "1437476532": 1.181, + "1437476533": 1.18, + "1437476534": 1.184, + "1437476535": 1.185, + "1437476536": 1.189, + "1437476537": 1.185, + "1437476538": 1.189, + "1437476539": 1.193, + "1437476540": 1.197, + "1437476541": 1.197, + "1437476542": 1.196, + "1437476543": 1.197, + "1437476544": 1.201, + "1437476545": 1.203, + "1437476547": 1.204, + "1437476548": 1.203, + "1437476549": 1.211, + "1437476550": 1.219, + "1437476551": 1.228, + "1437476552": 1.235, + "1437476553": 1.238, + "1437476554": 1.245, + "1437476555": 1.252, + "1437476556": 1.261, + "1437476557": 1.28, + "1437476558": 1.303, + "1437476559": 1.324, + "1437476560": 1.342, + "1437476561": 1.357, + "1437476562": 1.367, + "1437476563": 1.384, + "1437476564": 1.402, + "1437476565": 1.418, + "1437476566": 1.428, + "1437476567": 1.433, + "1437476568": 1.434, + "1437476569": 1.436, + "1437476570": 1.435, + "1437476571": 1.428, + "1437476572": 1.433, + "1437476573": 1.432, + "1437476574": 1.433, + "1437476576": 1.436, + "1437476577": 1.447, + "1437476578": 1.461, + "1437476579": 1.475, + "1437476580": 1.491, + "1437476581": 1.511, + "1437476582": 1.529, + "1437476583": 1.549, + "1437476584": 1.569, + "1437476585": 1.604, + "1437476586": 1.627, + "1437476587": 1.651, + "1437476588": 1.678, + "1437476589": 1.703, + "1437476590": 1.706, + "1437476591": 1.711, + "1437476592": 1.725, + "1437476593": 1.736, + "1437476594": 1.748, + "1437476595": 1.753, + "1437476596": 1.733, + "1437476597": 1.706, + "1437476598": 1.685, + "1437476599": 1.704, + "1437476601": 1.824, + "1437476602": 1.963, + "1437476603": 2.092, + "1437476604": 2.224, + "1437476605": 2.361, + "1437476606": 2.479, + "1437476607": 2.555, + "1437476608": 2.638, + "1437476609": 2.704, + "1437476610": 2.774, + "1437476611": 2.861, + "1437476612": 2.933, + "1437476613": 3.006, + "1437476614": 3.069, + "1437476615": 3.116, + "1437476616": 3.163, + "1437476617": 3.206, + "1437476618": 3.246, + "1437476619": 3.258, + "1437476620": 3.269, + "1437476621": 3.278, + "1437476622": 3.262, + "1437476623": 3.262, + "1437476624": 3.255, + "1437476625": 3.243, + "1437476627": 3.216, + "1437476628": 3.215, + "1437476629": 3.217, + "1437476630": 3.197, + "1437476631": 3.164, + "1437476632": 3.145, + "1437476633": 3.129, + "1437476634": 3.109, + "1437476635": 3.092, + "1437476636": 3.063, + "1437476637": 3.01, + "1437476638": 2.975, + "1437476639": 2.924, + "1437476640": 2.722, + "1437476641": 2.545, + "1437476642": 2.43, + "1437476643": 2.311, + "1437476644": 2.197, + "1437476645": 2.074, + "1437476646": 1.964, + "1437476647": 1.86, + "1437476648": 1.759, + "1437476649": 1.665, + "1437476650": 1.59, + "1437476651": 1.528, + "1437476652": 1.47, + "1437476653": 1.412, + "1437476654": 1.356, + "1437476655": 1.304, + "1437476656": 1.257, + "1437476658": 1.213, + "1437476659": 1.171, + "1437476660": 1.129, + "1437476661": 1.096, + "1437476662": 1.065, + "1437476663": 1.041, + "1437476664": 1.032, + "1437476665": 1.031, + "1437476666": 1.04, + "1437476667": 1.059, + "1437476668": 1.085, + "1437476669": 1.114, + "1437476670": 1.145, + "1437476671": 1.174, + "1437476672": 1.203, + "1437476673": 1.233, + "1437476674": 1.263, + "1437476675": 1.288, + "1437476676": 1.299, + "1437476677": 1.267, + "1437476678": 1.176, + "1437476679": 1.184, + "1437476680": 1.263, + "1437476681": 1.297, + "1437476682": 1.29, + "1437476683": 1.279, + "1437476684": 1.271, + "1437476685": 1.271, + "1437476686": 1.279, + "1437476687": 1.282, + "1437476688": 1.269, + "1437476689": 1.257, + "1437476690": 1.256, + "1437476691": 1.244, + "1437476692": 1.217, + "1437476694": 1.185, + "1437476695": 1.158, + "1437476696": 1.139, + "1437476697": 1.16, + "1437476698": 1.22, + "1437476699": 1.296, + "1437476700": 1.373, + "1437476701": 1.425, + "1437476702": 1.448, + "1437476703": 1.459, + "1437476704": 1.457, + "1437476705": 1.441, + "1437476706": 1.411, + "1437476707": 1.36, + "1437476708": 1.307, + "1437476709": 1.261, + "1437476710": 1.222, + "1437476711": 1.207, + "1437476712": 1.245, + "1437476713": 1.308, + "1437476714": 1.379, + "1437476715": 1.449, + "1437476716": 1.497, + "1437476717": 1.531, + "1437476718": 1.556, + "1437476719": 1.564, + "1437476720": 1.57, + "1437476721": 1.574, + "1437476723": 1.579, + "1437476724": 1.559, + "1437476725": 1.551, + "1437476726": 1.554, + "1437476727": 1.557, + "1437476728": 1.56, + "1437476729": 1.55, + "1437476730": 1.536, + "1437476731": 1.517, + "1437476732": 1.472, + "1437476733": 1.435, + "1437476734": 1.407, + "1437476735": 1.382, + "1437476736": 1.364, + "1437476737": 1.35, + "1437476738": 1.339, + "1437476739": 1.334, + "1437476740": 1.344, + "1437476741": 1.367, + "1437476742": 1.39, + "1437476743": 1.402, + "1437476744": 1.404, + "1437476745": 1.39, + "1437476746": 1.369, + "1437476747": 1.346, + "1437476748": 1.326, + "1437476749": 1.306, + "1437476750": 1.289, + "1437476751": 1.275, + "1437476752": 1.268, + "1437476753": 1.262, + "1437476755": 1.255, + "1437476756": 1.248, + "1437476757": 1.241, + "1437476758": 1.234, + "1437476759": 1.219, + "1437476760": 1.201, + "1437476761": 1.184, + "1437476762": 1.168, + "1437476763": 1.157, + "1437476764": 1.152, + "1437476765": 1.148, + "1437476766": 1.148, + "1437476767": 1.149, + "1437476768": 1.15, + "1437476769": 1.153, + "1437476770": 1.158, + "1437476771": 1.165, + "1437476772": 1.166, + "1437476773": 1.169, + "1437476774": 1.173, + "1437476775": 1.177, + "1437476776": 1.187, + "1437476777": 1.198, + "1437476778": 1.208, + "1437476779": 1.219, + "1437476780": 1.231, + "1437476781": 1.244, + "1437476782": 1.259, + "1437476783": 1.278, + "1437476784": 1.291, + "1437476785": 1.306, + "1437476786": 1.325, + "1437476787": 1.341, + "1437476788": 1.341, + "1437476789": 1.337, + "1437476791": 1.329, + "1437476792": 1.327, + "1437476793": 1.34, + "1437476794": 1.35, + "1437476795": 1.358, + "1437476796": 1.364, + "1437476797": 1.378, + "1437476798": 1.386, + "1437476799": 1.389, + "1437476800": 1.39, + "1437476801": 1.394, + "1437476802": 1.408, + "1437476803": 1.425, + "1437476804": 1.442, + "1437476805": 1.46, + "1437476806": 1.474, + "1437476807": 1.487, + "1437476808": 1.499, + "1437476809": 1.513, + "1437476810": 1.525, + "1437476811": 1.535, + "1437476812": 1.547, + "1437476813": 1.561, + "1437476814": 1.574, + "1437476815": 1.588, + "1437476816": 1.599, + "1437476817": 1.608, + "1437476818": 1.616, + "1437476819": 1.613, + "1437476820": 1.617, + "1437476821": 1.624, + "1437476822": 1.637, + "1437476824": 1.643, + "1437476825": 1.647, + "1437476826": 1.651, + "1437476827": 1.654, + "1437476828": 1.655, + "1437476829": 1.657, + "1437476830": 1.657, + "1437476831": 1.654, + "1437476832": 1.656, + "1437476833": 1.656, + "1437476834": 1.652, + "1437476835": 1.642, + "1437476836": 1.63, + "1437476837": 1.615, + "1437476838": 1.598, + "1437476839": 1.589, + "1437476840": 1.587, + "1437476841": 1.585, + "1437476842": 1.587, + "1437476843": 1.586, + "1437476844": 1.584, + "1437476845": 1.585, + "1437476846": 1.586, + "1437476847": 1.584, + "1437476848": 1.581, + "1437476849": 1.578, + "1437476850": 1.584, + "1437476851": 1.587, + "1437476852": 1.588, + "1437476854": 1.591, + "1437476855": 1.593, + "1437476856": 1.603, + "1437476857": 1.617, + "1437476858": 1.64, + "1437476859": 1.666, + "1437476860": 1.676, + "1437476861": 1.676, + "1437476862": 1.668, + "1437476863": 1.655, + "1437476864": 1.642, + "1437476865": 1.637, + "1437476866": 1.629, + "1437476867": 1.622, + "1437476868": 1.611, + "1437476869": 1.597, + "1437476870": 1.579, + "1437476871": 1.567, + "1437476872": 1.565, + "1437476873": 1.56, + "1437476874": 1.549, + "1437476875": 1.537, + "1437476876": 1.532, + "1437476877": 1.528, + "1437476878": 1.52, + "1437476879": 1.517, + "1437476880": 1.523, + "1437476881": 1.532, + "1437476882": 1.538, + "1437476883": 1.544, + "1437476884": 1.551, + "1437476886": 1.564, + "1437476887": 1.602, + "1437476888": 1.639, + "1437476889": 1.675, + "1437476890": 1.709, + "1437476891": 1.738, + "1437476892": 1.749, + "1437476893": 1.753, + "1437476894": 1.748, + "1437476895": 1.725, + "1437476896": 1.704, + "1437476897": 1.692, + "1437476898": 1.681, + "1437476899": 1.671, + "1437476900": 1.703, + "1437476901": 1.79, + "1437476902": 1.887, + "1437476903": 1.988, + "1437476904": 2.107, + "1437476905": 2.235, + "1437476906": 2.384, + "1437476907": 2.55, + "1437476908": 2.722, + "1437476910": 2.901, + "1437476911": 3.107, + "1437476912": 3.319, + "1437476913": 3.566, + "1437476914": 3.704, + "1437476915": 3.703, + "1437476916": 3.609, + "1437476917": 3.494, + "1437476918": 3.349, + "1437476919": 3.271, + "1437476920": 3.252, + "1437476921": 3.309, + "1437476922": 3.694, + "1437476923": 4.3, + "1437476924": 4.94, + "1437476925": 5.434, + "1437476926": 5.765, + "1437476927": 6.065, + "1437476928": 6.273, + "1437476929": 6.306, + "1437476930": 6.155, + "1437476931": 6.107, + "1437476932": 6.114, + "1437476933": 6.092, + "1437476934": 6.052, + "1437476935": 6.112, + "1437476936": 6.148, + "1437476938": 6.089, + "1437476939": 6.026, + "1437476940": 5.976, + "1437476941": 5.881, + "1437476942": 5.775, + "1437476943": 5.648, + "1437476944": 5.526, + "1437476945": 5.463, + "1437476946": 5.401, + "1437476947": 5.425, + "1437476948": 5.468, + "1437476949": 5.431, + "1437476950": 5.402, + "1437476951": 5.438, + "1437476952": 5.448, + "1437476953": 5.432, + "1437476954": 5.418, + "1437476955": 5.406, + "1437476956": 5.352, + "1437476957": 5.271, + "1437476958": 5.315, + "1437476959": 5.352, + "1437476960": 5.338, + "1437476961": 5.315, + "1437476962": 5.286, + "1437476963": 5.291, + "1437476964": 5.296, + "1437476965": 5.298, + "1437476966": 5.352, + "1437476967": 5.361, + "1437476969": 5.306, + "1437476970": 5.271, + "1437476971": 5.243, + "1437476972": 5.205, + "1437476973": 5.152, + "1437476974": 5.105, + "1437476975": 5.133, + "1437476976": 5.109, + "1437476977": 5.072, + "1437476978": 5.072, + "1437476979": 5.141, + "1437476980": 5.163, + "1437476981": 5.155, + "1437476982": 5.176, + "1437476983": 5.225, + "1437476984": 5.212, + "1437476985": 5.254, + "1437476986": 5.286, + "1437476987": 5.32, + "1437476988": 5.356, + "1437476989": 5.347, + "1437476990": 5.276, + "1437476991": 5.253, + "1437476992": 5.253, + "1437476993": 5.228, + "1437476994": 5.171, + "1437476996": 5.139, + "1437476997": 5.117, + "1437476998": 5.072, + "1437476999": 5.025, + "1437477000": 5.032, + "1437477001": 4.943, + "1437477002": 4.712, + "1437477003": 4.544, + "1437477004": 4.322, + "1437477005": 4.035, + "1437477006": 3.6, + "1437477007": 3.172, + "1437477008": 2.877, + "1437477009": 2.618, + "1437477010": 2.402, + "1437477011": 2.234, + "1437477012": 2.129, + "1437477013": 2.08, + "1437477014": 2.088, + "1437477015": 2.135, + "1437477016": 2.224, + "1437477017": 2.319, + "1437477018": 2.413, + "1437477019": 2.505, + "1437477020": 2.601, + "1437477022": 2.69, + "1437477023": 2.763, + "1437477024": 2.816, + "1437477025": 2.889, + "1437477026": 2.96, + "1437477027": 3.028, + "1437477028": 3.098, + "1437477029": 3.15, + "1437477030": 3.213, + "1437477031": 3.253, + "1437477032": 3.293, + "1437477033": 3.311, + "1437477034": 3.321, + "1437477035": 3.337, + "1437477036": 3.329, + "1437477037": 3.315, + "1437477038": 3.31, + "1437477039": 3.298, + "1437477040": 3.299, + "1437477041": 3.333, + "1437477042": 3.379, + "1437477043": 3.388, + "1437477044": 3.41, + "1437477045": 3.41, + "1437477046": 3.427, + "1437477047": 3.444, + "1437477048": 3.451, + "1437477050": 3.435, + "1437477051": 3.436, + "1437477052": 3.429, + "1437477053": 3.424, + "1437477054": 3.428, + "1437477055": 3.45, + "1437477056": 3.469, + "1437477057": 3.508, + "1437477058": 3.559, + "1437477059": 3.597, + "1437477060": 3.651, + "1437477061": 3.713, + "1437477062": 3.719, + "1437477063": 3.729, + "1437477064": 3.724, + "1437477065": 3.741, + "1437477066": 3.772, + "1437477067": 3.699, + "1437477068": 3.345, + "1437477069": 2.989, + "1437477070": 2.734, + "1437477071": 2.56, + "1437477072": 2.446, + "1437477073": 2.386, + "1437477075": 2.379, + "1437477076": 2.414, + "1437477077": 2.459, + "1437477078": 2.501, + "1437477079": 2.527, + "1437477080": 2.542, + "1437477081": 2.534, + "1437477082": 2.515, + "1437477083": 2.501, + "1437477084": 2.478, + "1437477085": 2.447, + "1437477086": 2.413, + "1437477087": 2.359, + "1437477088": 2.302, + "1437477089": 2.246, + "1437477090": 2.17, + "1437477091": 2.082, + "1437477092": 1.999, + "1437477093": 1.934, + "1437477094": 1.868, + "1437477095": 1.806, + "1437477096": 1.745, + "1437477097": 1.689, + "1437477098": 1.641, + "1437477099": 1.596, + "1437477100": 1.555, + "1437477101": 1.517, + "1437477102": 1.482, + "1437477103": 1.445, + "1437477104": 1.41, + "1437477105": 1.379, + "1437477106": 1.352, + "1437477107": 1.327, + "1437477109": 1.308, + "1437477110": 1.294, + "1437477111": 1.278, + "1437477112": 1.263, + "1437477113": 1.257, + "1437477114": 1.256, + "1437477115": 1.263, + "1437477116": 1.278, + "1437477117": 1.3, + "1437477118": 1.326, + "1437477119": 1.352, + "1437477120": 1.376, + "1437477121": 1.395, + "1437477122": 1.41, + "1437477123": 1.422, + "1437477124": 1.432, + "1437477125": 1.438, + "1437477126": 1.442, + "1437477127": 1.445, + "1437477128": 1.453, + "1437477129": 1.461, + "1437477130": 1.467, + "1437477131": 1.474, + "1437477132": 1.483, + "1437477133": 1.493, + "1437477134": 1.505, + "1437477135": 1.512, + "1437477136": 1.516, + "1437477137": 1.522, + "1437477138": 1.527, + "1437477139": 1.529, + "1437477140": 1.529, + "1437477141": 1.525, + "1437477143": 1.517, + "1437477144": 1.506, + "1437477145": 1.49, + "1437477146": 1.477, + "1437477147": 1.464, + "1437477148": 1.447, + "1437477149": 1.427, + "1437477150": 1.406, + "1437477151": 1.383, + "1437477152": 1.366, + "1437477153": 1.357, + "1437477154": 1.353, + "1437477155": 1.35, + "1437477156": 1.348, + "1437477157": 1.354, + "1437477158": 1.365, + "1437477159": 1.374, + "1437477160": 1.384, + "1437477161": 1.393, + "1437477162": 1.4, + "1437477163": 1.404, + "1437477164": 1.407, + "1437477165": 1.409, + "1437477166": 1.405, + "1437477167": 1.397, + "1437477168": 1.387, + "1437477169": 1.374, + "1437477170": 1.354, + "1437477171": 1.331, + "1437477172": 1.306, + "1437477173": 1.286, + "1437477174": 1.268, + "1437477175": 1.25, + "1437477176": 1.232, + "1437477178": 1.216, + "1437477179": 1.199, + "1437477180": 1.184, + "1437477181": 1.17, + "1437477182": 1.159, + "1437477183": 1.149, + "1437477184": 1.14, + "1437477185": 1.133, + "1437477186": 1.129, + "1437477187": 1.13, + "1437477188": 1.153, + "1437477189": 1.211, + "1437477190": 1.279, + "1437477191": 1.348, + "1437477192": 1.419, + "1437477193": 1.49, + "1437477194": 1.566, + "1437477195": 1.641, + "1437477196": 1.713, + "1437477197": 1.781, + "1437477198": 1.838, + "1437477199": 1.876, + "1437477200": 1.893, + "1437477201": 1.892, + "1437477202": 1.875, + "1437477203": 1.857, + "1437477204": 1.833, + "1437477205": 1.81, + "1437477206": 1.785, + "1437477207": 1.755, + "1437477208": 1.723, + "1437477209": 1.688, + "1437477210": 1.657, + "1437477211": 1.63, + "1437477212": 1.601, + "1437477213": 1.57, + "1437477215": 1.54, + "1437477216": 1.514, + "1437477217": 1.487, + "1437477218": 1.459, + "1437477219": 1.428, + "1437477220": 1.401, + "1437477221": 1.378, + "1437477222": 1.358, + "1437477223": 1.343, + "1437477224": 1.331, + "1437477225": 1.325, + "1437477226": 1.322, + "1437477227": 1.321, + "1437477228": 1.322, + "1437477229": 1.325, + "1437477230": 1.327, + "1437477231": 1.327, + "1437477232": 1.326, + "1437477233": 1.325, + "1437477234": 1.324, + "1437477235": 1.323, + "1437477236": 1.319, + "1437477237": 1.312, + "1437477238": 1.3, + "1437477239": 1.28, + "1437477240": 1.252, + "1437477241": 1.217, + "1437477242": 1.18, + "1437477243": 1.147, + "1437477244": 1.123, + "1437477245": 1.115, + "1437477247": 1.131, + "1437477248": 1.168, + "1437477249": 1.213, + "1437477250": 1.247, + "1437477251": 1.258, + "1437477252": 1.244, + "1437477253": 1.218, + "1437477254": 1.193, + "1437477255": 1.169, + "1437477256": 1.147, + "1437477257": 1.126, + "1437477258": 1.103, + "1437477259": 1.082, + "1437477260": 1.061, + "1437477261": 1.038, + "1437477262": 1.011, + "1437477263": 0.984, + "1437477264": 0.961, + "1437477265": 0.947, + "1437477266": 0.939, + "1437477267": 0.936, + "1437477268": 0.935, + "1437477270": 0.936, + "1437477271": 0.937, + "1437477272": 0.94, + "1437477273": 0.943, + "1437477274": 0.948, + "1437477275": 0.953, + "1437477276": 0.959, + "1437477277": 0.97, + "1437477278": 0.98, + "1437477279": 0.99, + "1437477280": 1.002, + "1437477281": 1.014, + "1437477282": 1.024, + "1437477283": 1.031, + "1437477284": 1.039, + "1437477285": 1.05, + "1437477286": 1.061, + "1437477287": 1.076, + "1437477288": 1.09, + "1437477289": 1.105, + "1437477290": 1.121, + "1437477291": 1.138, + "1437477292": 1.157, + "1437477294": 1.178, + "1437477295": 1.201, + "1437477296": 1.228, + "1437477297": 1.256, + "1437477298": 1.281, + "1437477299": 1.296, + "1437477300": 1.314, + "1437477301": 1.337, + "1437477302": 1.365, + "1437477303": 1.386, + "1437477304": 1.407, + "1437477305": 1.426, + "1437477306": 1.44, + "1437477307": 1.456, + "1437477308": 1.472, + "1437477309": 1.484, + "1437477310": 1.496, + "1437477311": 1.506, + "1437477312": 1.52, + "1437477313": 1.533, + "1437477314": 1.54, + "1437477315": 1.542, + "1437477316": 1.544, + "1437477317": 1.54, + "1437477318": 1.547, + "1437477319": 1.556, + "1437477321": 1.561, + "1437477322": 1.563, + "1437477323": 1.567, + "1437477324": 1.572, + "1437477325": 1.561, + "1437477326": 1.537, + "1437477327": 1.51, + "1437477328": 1.476, + "1437477329": 1.436, + "1437477330": 1.395, + "1437477331": 1.36, + "1437477332": 1.342, + "1437477333": 1.349, + "1437477334": 1.378, + "1437477335": 1.417, + "1437477336": 1.462, + "1437477337": 1.514, + "1437477338": 1.569, + "1437477339": 1.631, + "1437477340": 1.694, + "1437477341": 1.759, + "1437477342": 1.86, + "1437477343": 1.984, + "1437477345": 2.121, + "1437477346": 2.369, + "1437477347": 2.89, + "1437477348": 3.572, + "1437477349": 4.594, + "1437477350": 6.386, + "1437477351": 10.365, + "1437477352": 27.1, + "1437477353": 0, + "1437477354": 0, + "1437477355": 0, + "1437477356": 0, + "1437477376": 222.222, + "1437477377": 13.959, + "1437477378": 9.735, + "1437477379": 8.676, + "1437477380": 8.443, + "1437477381": 8.271, + "1437477383": 9.432, + "1437477384": 21.177, + "1437477385": 980.392, + "1437477386": 0, + "1437477387": 0, + "1437477388": 0, + "1437477392": 1111.111, + "1437477393": 67.751, + "1437477394": 41.771, + "1437477395": 32.938, + "1437477397": 28.686, + "1437477398": 26.371, + "1437477399": 24.913, + "1437477400": 24.015, + "1437477401": 24.582, + "1437477402": 25.407, + "1437477403": 26.042, + "1437477404": 80.906, + "1437477405": 0, + "1437477406": 0, + "1437477407": 0, + "1437477408": 0, + "1437477411": 1111.111, + "1437477412": 67.751, + "1437477413": 41.563, + "1437477414": 32.425, + "1437477415": 28.058, + "1437477417": 26.795, + "1437477418": 26.455, + "1437477419": 27.457, + "1437477420": 29.036, + "1437477421": 30.248, + "1437477422": 72.464, + "1437477423": 0, + "1437477428": 574.713, + "1437477429": 33.807, + "1437477430": 21.07, + "1437477432": 17.674, + "1437477433": 17.2, + "1437477434": 18.195, + "1437477435": 18.983, + "1437477436": 19.677, + "1437477437": 19.936, + "1437477438": 19.157, + "1437477439": 18.096, + "1437477440": 17.452, + "1437477441": 17.618, + "1437477442": 18.057, + "1437477443": 18.56, + "1437477444": 18.896, + "1437477445": 18.896, + "1437477446": 18.376, + "1437477447": 17.806, + "1437477448": 18.038, + "1437477449": 18.175, + "1437477450": 18.295, + "1437477451": 18.116, + "1437477452": 17.361, + "1437477453": 16.852, + "1437477454": 16.869, + "1437477455": 16.852, + "1437477456": 16.784, + "1437477457": 57.67, + "1437477458": 0, + "1437477459": 0, + "1437477461": 0, + "1437477465": 406.504, + "1437477466": 24.913, + "1437477467": 15.029, + "1437477468": 13.072, + "1437477469": 12.355, + "1437477470": 12.99, + "1437477471": 13.506, + "1437477472": 14.443, + "1437477473": 15.138, + "1437477474": 15.461, + "1437477475": 15.783, + "1437477476": 15.934, + "1437477477": 15.873, + "1437477478": 15.62, + "1437477479": 15.235, + "1437477480": 13.866, + "1437477481": 12.742, + "1437477482": 12.165, + "1437477483": 11.68, + "1437477484": 11.208, + "1437477485": 10.739, + "1437477486": 9.944, + "1437477487": 9.228, + "1437477488": 28.785, + "1437477489": 0, + "1437477490": 103.52, + "1437477491": 29.603, + "1437477492": 17.059, + "1437477493": 12.55, + "1437477494": 10.423, + "1437477495": 9.073, + "1437477496": 8.059, + "1437477497": 7.464, + "1437477498": 6.953, + "1437477500": 6.493, + "1437477501": 6.05, + "1437477502": 5.644, + "1437477503": 5.304, + "1437477504": 5.01, + "1437477505": 4.774, + "1437477506": 4.57, + "1437477507": 4.44, + "1437477508": 4.329, + "1437477509": 4.251, + "1437477510": 4.192, + "1437477511": 4.142, + "1437477512": 4.109, + "1437477513": 4.099, + "1437477514": 4.118, + "1437477515": 4.174, + "1437477516": 4.271, + "1437477517": 4.414, + "1437477518": 4.632, + "1437477519": 4.922, + "1437477520": 5.303, + "1437477521": 5.807, + "1437477522": 6.442, + "1437477523": 7.268, + "1437477524": 8.333, + "1437477525": 9.752, + "1437477526": 11.639, + "1437477527": 14.306, + "1437477528": 17.693, + "1437477529": 20.807, + "1437477530": 23.343, + "1437477532": 24.295, + "1437477533": 24.51, + "1437477534": 22.584, + "1437477535": 20.008, + "1437477536": 18.939, + "1437477537": 18.875, + "1437477538": 18.918, + "1437477539": 21.422, + "1437477540": 23.641, + "1437477541": 24.876, + "1437477542": 25.602, + "1437477543": 26.001, + "1437477544": 26.247, + "1437477545": 26.455, + "1437477546": 26.624, + "1437477547": 26.882, + "1437477548": 27.367, + "1437477549": 27.685, + "1437477550": 26.969, + "1437477551": 26.667, + "1437477552": 25.445, + "1437477553": 24.618, + "1437477555": 25.8, + "1437477556": 27.144, + "1437477557": 28.011, + "1437477558": 30.303, + "1437477559": 31.867, + "1437477560": 32.552, + "1437477561": 32.938, + "1437477562": 32.938, + "1437477563": 32.744, + "1437477564": 34.507, + "1437477565": 41.152, + "1437477566": 46.041, + "1437477567": 50.352, + "1437477568": 53.248, + "1437477569": 44.924, + "1437477570": 39.494, + "1437477571": 37.202, + "1437477572": 35.997, + "1437477573": 36.792, + "1437477574": 38.402, + "1437477575": 39.308, + "1437477576": 216.45, + "1437477577": 238.095, + "1437477578": 49.31, + "1437477580": 29.603, + "1437477581": 22.957, + "1437477582": 19.516, + "1437477583": 17.902, + "1437477584": 17.416, + "1437477585": 16.276, + "1437477586": 15.375, + "1437477587": 14.697, + "1437477588": 14.531, + "1437477589": 14.646, + "1437477590": 14.343, + "1437477591": 13.866, + "1437477592": 13.355, + "1437477593": 13.365, + "1437477594": 13.617, + "1437477595": 13.854, + "1437477596": 14.723, + "1437477597": 16.244, + "1437477598": 21.844, + "1437477599": 29.815, + "1437477600": 42.845, + "1437477601": 0, + "1437477604": 555.556, + "1437477605": 36.63, + "1437477607": 14.1, + "1437477608": 11.913, + "1437477609": 11.307, + "1437477610": 10.489, + "1437477611": 9.673, + "1437477612": 8.999, + "1437477613": 7.72, + "1437477614": 6.118, + "1437477615": 5.078, + "1437477616": 5.004, + "1437477617": 5.226, + "1437477618": 5.441, + "1437477619": 5.327, + "1437477620": 4.723, + "1437477621": 4.124, + "1437477622": 3.646, + "1437477623": 3.253, + "1437477624": 2.926, + "1437477625": 2.648, + "1437477626": 2.42, + "1437477627": 2.238, + "1437477628": 2.093, + "1437477629": 1.98, + "1437477630": 1.885, + "1437477631": 1.814, + "1437477632": 1.772, + "1437477633": 1.756, + "1437477634": 1.76, + "1437477635": 1.779, + "1437477636": 1.809, + "1437477638": 1.852, + "1437477639": 1.895, + "1437477640": 1.932, + "1437477641": 1.965, + "1437477642": 1.994, + "1437477643": 2.013, + "1437477644": 2.016, + "1437477645": 1.993, + "1437477646": 1.95, + "1437477647": 1.906, + "1437477648": 1.854, + "1437477649": 1.799, + "1437477650": 1.758, + "1437477651": 1.724, + "1437477652": 1.692, + "1437477653": 1.662, + "1437477654": 1.639, + "1437477655": 2.751, + "1437477656": 3.102, + "1437477657": 3.828, + "1437477658": 5.043, + "1437477659": 7.313, + "1437477660": 13.144, + "1437477661": 46.168, + "1437477662": 0, + "1437477663": 0, + "1437477664": 0, + "1437477665": 33.944, + "1437477666": 15.461, + "1437477667": 13.376, + "1437477668": 13.001, + "1437477669": 14.802, + "1437477671": 17.94, + "1437477672": 21.758, + "1437477673": 25.72, + "1437477674": 29.343, + "1437477676": 32.175, + "1437477677": 24.876, + "1437477678": 19.865, + "1437477679": 16.667, + "1437477680": 15.138, + "1437477681": 25.445, + "1437477682": 0, + "1437477683": 0, + "1437477684": 0, + "1437477685": 0, + "1437477688": 505.051, + "1437477689": 34.578, + "1437477690": 18.939, + "1437477691": 14.658, + "1437477692": 15.98, + "1437477693": 16.955, + "1437477695": 17.544, + "1437477696": 17.094, + "1437477697": 16.324, + "1437477698": 16.534, + "1437477699": 15.873, + "1437477700": 14.594, + "1437477701": 13.866, + "1437477702": 17.712, + "1437477703": 126.263, + "1437477704": 0, + "1437477705": 0, + "1437477706": 0 + }, + "powers": { + "1437474517": 53, + "1437474518": 59, + "1437474519": 59, + "1437474520": 59, + "1437474521": 0, + "1437474522": 0, + "1437474523": 0, + "1437474524": 0, + "1437474525": 0, + "1437474526": 0, + "1437474527": 74, + "1437474528": 74, + "1437474529": 71, + "1437474530": 119, + "1437474532": 107, + "1437474533": 107, + "1437474534": 134, + "1437474535": 116, + "1437474536": 107, + "1437474537": 67, + "1437474538": 67, + "1437474539": 67, + "1437474540": 67, + "1437474541": 0, + "1437474542": 0, + "1437474543": 242, + "1437474544": 284, + "1437474545": 333, + "1437474546": 243, + "1437474547": 243, + "1437474548": 341, + "1437474549": 341, + "1437474550": 341, + "1437474551": 399, + "1437474552": 453, + "1437474553": 459, + "1437474554": 437, + "1437474555": 462, + "1437474556": 434, + "1437474557": 434, + "1437474558": 396, + "1437474559": 399, + "1437474560": 412, + "1437474561": 412, + "1437474562": 350, + "1437474563": 383, + "1437474564": 382, + "1437474566": 381, + "1437474567": 408, + "1437474568": 380, + "1437474569": 398, + "1437474570": 395, + "1437474571": 395, + "1437474572": 374, + "1437474573": 343, + "1437474574": 357, + "1437474575": 381, + "1437474576": 369, + "1437474577": 310, + "1437474578": 381, + "1437474579": 347, + "1437474580": 333, + "1437474581": 367, + "1437474582": 357, + "1437474583": 313, + "1437474584": 285, + "1437474585": 256, + "1437474586": 193, + "1437474587": 234, + "1437474588": 296, + "1437474589": 384, + "1437474590": 371, + "1437474591": 432, + "1437474592": 427, + "1437474593": 434, + "1437474594": 443, + "1437474595": 457, + "1437474596": 413, + "1437474597": 392, + "1437474598": 394, + "1437474599": 413, + "1437474600": 406, + "1437474601": 405, + "1437474603": 391, + "1437474604": 392, + "1437474605": 395, + "1437474606": 390, + "1437474607": 378, + "1437474608": 353, + "1437474609": 351, + "1437474610": 391, + "1437474611": 391, + "1437474612": 366, + "1437474613": 346, + "1437474614": 333, + "1437474615": 274, + "1437474616": 290, + "1437474617": 276, + "1437474618": 267, + "1437474619": 268, + "1437474620": 234, + "1437474621": 233, + "1437474622": 253, + "1437474623": 253, + "1437474624": 273, + "1437474626": 269, + "1437474627": 252, + "1437474628": 265, + "1437474629": 272, + "1437474630": 252, + "1437474631": 271, + "1437474632": 245, + "1437474633": 219, + "1437474634": 228, + "1437474635": 249, + "1437474636": 245, + "1437474637": 252, + "1437474638": 252, + "1437474639": 254, + "1437474640": 254, + "1437474641": 322, + "1437474642": 359, + "1437474643": 355, + "1437474644": 357, + "1437474645": 318, + "1437474646": 320, + "1437474647": 304, + "1437474648": 293, + "1437474649": 306, + "1437474650": 303, + "1437474652": 290, + "1437474653": 306, + "1437474654": 305, + "1437474655": 308, + "1437474656": 313, + "1437474657": 320, + "1437474658": 318, + "1437474659": 310, + "1437474660": 302, + "1437474661": 287, + "1437474662": 296, + "1437474663": 306, + "1437474664": 308, + "1437474665": 308, + "1437474666": 315, + "1437474667": 301, + "1437474668": 298, + "1437474669": 294, + "1437474670": 272, + "1437474671": 274, + "1437474672": 263, + "1437474673": 258, + "1437474674": 257, + "1437474675": 266, + "1437474676": 262, + "1437474677": 262, + "1437474678": 258, + "1437474679": 271, + "1437474681": 275, + "1437474682": 275, + "1437474683": 270, + "1437474684": 263, + "1437474685": 264, + "1437474686": 264, + "1437474687": 262, + "1437474688": 262, + "1437474689": 257, + "1437474690": 260, + "1437474691": 263, + "1437474692": 254, + "1437474693": 258, + "1437474694": 264, + "1437474695": 248, + "1437474696": 237, + "1437474697": 265, + "1437474698": 279, + "1437474699": 280, + "1437474700": 300, + "1437474701": 282, + "1437474702": 289, + "1437474703": 279, + "1437474705": 270, + "1437474706": 270, + "1437474707": 263, + "1437474708": 286, + "1437474709": 231, + "1437474710": 252, + "1437474711": 317, + "1437474712": 311, + "1437474713": 308, + "1437474714": 318, + "1437474715": 320, + "1437474716": 323, + "1437474717": 321, + "1437474718": 331, + "1437474719": 322, + "1437474720": 318, + "1437474721": 321, + "1437474722": 321, + "1437474723": 321, + "1437474724": 311, + "1437474725": 328, + "1437474726": 314, + "1437474727": 319, + "1437474728": 304, + "1437474729": 318, + "1437474730": 318, + "1437474732": 306, + "1437474733": 310, + "1437474734": 284, + "1437474735": 317, + "1437474736": 338, + "1437474737": 329, + "1437474738": 323, + "1437474739": 333, + "1437474740": 326, + "1437474741": 348, + "1437474742": 340, + "1437474743": 330, + "1437474744": 315, + "1437474745": 326, + "1437474746": 333, + "1437474747": 341, + "1437474748": 341, + "1437474749": 337, + "1437474750": 329, + "1437474751": 357, + "1437474752": 341, + "1437474753": 333, + "1437474754": 338, + "1437474755": 328, + "1437474756": 328, + "1437474757": 326, + "1437474758": 340, + "1437474760": 323, + "1437474761": 327, + "1437474762": 341, + "1437474763": 334, + "1437474764": 339, + "1437474765": 339, + "1437474766": 328, + "1437474767": 328, + "1437474768": 337, + "1437474769": 327, + "1437474770": 330, + "1437474771": 317, + "1437474772": 313, + "1437474773": 296, + "1437474774": 325, + "1437474775": 308, + "1437474776": 320, + "1437474777": 314, + "1437474778": 327, + "1437474779": 315, + "1437474780": 315, + "1437474781": 309, + "1437474782": 318, + "1437474783": 336, + "1437474785": 333, + "1437474786": 329, + "1437474787": 320, + "1437474788": 337, + "1437474789": 321, + "1437474790": 323, + "1437474791": 313, + "1437474792": 325, + "1437474793": 336, + "1437474794": 340, + "1437474795": 332, + "1437474796": 334, + "1437474797": 337, + "1437474798": 334, + "1437474799": 328, + "1437474800": 299, + "1437474801": 307, + "1437474802": 313, + "1437474803": 305, + "1437474804": 304, + "1437474805": 332, + "1437474806": 314, + "1437474808": 335, + "1437474809": 318, + "1437474810": 316, + "1437474811": 307, + "1437474812": 307, + "1437474813": 307, + "1437474814": 303, + "1437474815": 347, + "1437474816": 347, + "1437474817": 330, + "1437474818": 329, + "1437474819": 320, + "1437474820": 312, + "1437474821": 325, + "1437474822": 324, + "1437474823": 317, + "1437474824": 329, + "1437474825": 314, + "1437474827": 337, + "1437474828": 375, + "1437474829": 488, + "1437474830": 415, + "1437474831": 402, + "1437474832": 345, + "1437474833": 326, + "1437474834": 328, + "1437474835": 306, + "1437474836": 306, + "1437474837": 322, + "1437474838": 323, + "1437474839": 343, + "1437474840": 314, + "1437474841": 325, + "1437474842": 335, + "1437474843": 331, + "1437474844": 344, + "1437474845": 324, + "1437474846": 321, + "1437474847": 354, + "1437474848": 371, + "1437474849": 344, + "1437474850": 345, + "1437474851": 356, + "1437474852": 341, + "1437474853": 340, + "1437474854": 358, + "1437474855": 361, + "1437474856": 351, + "1437474857": 351, + "1437474859": 364, + "1437474860": 348, + "1437474861": 348, + "1437474862": 345, + "1437474863": 351, + "1437474864": 343, + "1437474865": 346, + "1437474866": 346, + "1437474867": 377, + "1437474868": 356, + "1437474869": 340, + "1437474870": 354, + "1437474871": 344, + "1437474872": 353, + "1437474873": 353, + "1437474874": 353, + "1437474875": 326, + "1437474876": 344, + "1437474877": 348, + "1437474878": 350, + "1437474879": 366, + "1437474880": 361, + "1437474881": 374, + "1437474882": 365, + "1437474883": 364, + "1437474884": 374, + "1437474885": 363, + "1437474886": 363, + "1437474887": 370, + "1437474888": 370, + "1437474890": 357, + "1437474891": 354, + "1437474892": 354, + "1437474893": 327, + "1437474894": 343, + "1437474895": 343, + "1437474896": 257, + "1437474897": 273, + "1437474898": 292, + "1437474899": 266, + "1437474900": 316, + "1437474901": 309, + "1437474902": 293, + "1437474903": 278, + "1437474904": 241, + "1437474905": 244, + "1437474906": 236, + "1437474907": 226, + "1437474908": 240, + "1437474909": 235, + "1437474910": 249, + "1437474911": 248, + "1437474912": 256, + "1437474913": 251, + "1437474914": 258, + "1437474915": 256, + "1437474916": 236, + "1437474917": 229, + "1437474918": 229, + "1437474919": 251, + "1437474920": 246, + "1437474921": 221, + "1437474923": 229, + "1437474924": 244, + "1437474925": 237, + "1437474926": 236, + "1437474927": 250, + "1437474928": 242, + "1437474929": 266, + "1437474930": 240, + "1437474931": 251, + "1437474932": 242, + "1437474933": 217, + "1437474934": 230, + "1437474935": 214, + "1437474936": 215, + "1437474937": 266, + "1437474938": 244, + "1437474939": 238, + "1437474940": 240, + "1437474941": 241, + "1437474942": 232, + "1437474943": 232, + "1437474944": 232, + "1437474945": 224, + "1437474946": 223, + "1437474947": 233, + "1437474948": 227, + "1437474949": 220, + "1437474950": 224, + "1437474951": 246, + "1437474952": 248, + "1437474953": 248, + "1437474954": 245, + "1437474955": 246, + "1437474956": 255, + "1437474957": 256, + "1437474958": 256, + "1437474959": 261, + "1437474960": 258, + "1437474962": 251, + "1437474963": 261, + "1437474964": 241, + "1437474965": 233, + "1437474966": 256, + "1437474967": 236, + "1437474968": 249, + "1437474969": 248, + "1437474970": 250, + "1437474971": 242, + "1437474972": 249, + "1437474973": 258, + "1437474974": 229, + "1437474975": 237, + "1437474976": 223, + "1437474977": 246, + "1437474978": 295, + "1437474979": 288, + "1437474980": 285, + "1437474981": 277, + "1437474982": 250, + "1437474983": 303, + "1437474984": 284, + "1437474985": 297, + "1437474986": 290, + "1437474987": 290, + "1437474988": 289, + "1437474989": 289, + "1437474990": 289, + "1437474992": 117, + "1437474993": 333, + "1437474994": 266, + "1437474995": 257, + "1437474996": 257, + "1437474997": 261, + "1437474998": 260, + "1437474999": 260, + "1437475000": 278, + "1437475001": 263, + "1437475002": 250, + "1437475003": 270, + "1437475004": 288, + "1437475005": 236, + "1437475006": 256, + "1437475007": 285, + "1437475008": 288, + "1437475009": 288, + "1437475010": 260, + "1437475012": 240, + "1437475013": 275, + "1437475014": 277, + "1437475015": 256, + "1437475016": 253, + "1437475017": 254, + "1437475018": 270, + "1437475019": 297, + "1437475020": 253, + "1437475021": 269, + "1437475022": 272, + "1437475023": 247, + "1437475024": 241, + "1437475025": 256, + "1437475026": 272, + "1437475027": 270, + "1437475029": 270, + "1437475030": 263, + "1437475031": 283, + "1437475032": 292, + "1437475033": 300, + "1437475034": 305, + "1437475035": 303, + "1437475036": 294, + "1437475037": 306, + "1437475038": 290, + "1437475039": 281, + "1437475040": 298, + "1437475041": 277, + "1437475042": 277, + "1437475043": 255, + "1437475044": 291, + "1437475045": 292, + "1437475046": 264, + "1437475047": 260, + "1437475048": 246, + "1437475049": 261, + "1437475050": 318, + "1437475051": 313, + "1437475052": 333, + "1437475054": 361, + "1437475055": 334, + "1437475056": 318, + "1437475057": 329, + "1437475058": 314, + "1437475059": 321, + "1437475060": 330, + "1437475061": 299, + "1437475062": 329, + "1437475063": 340, + "1437475064": 331, + "1437475065": 335, + "1437475066": 320, + "1437475067": 319, + "1437475068": 334, + "1437475069": 320, + "1437475070": 361, + "1437475071": 358, + "1437475072": 313, + "1437475073": 320, + "1437475074": 327, + "1437475075": 298, + "1437475076": 308, + "1437475077": 316, + "1437475078": 328, + "1437475079": 328, + "1437475080": 313, + "1437475081": 316, + "1437475083": 321, + "1437475084": 338, + "1437475085": 325, + "1437475086": 325, + "1437475087": 321, + "1437475088": 326, + "1437475089": 336, + "1437475090": 333, + "1437475091": 336, + "1437475092": 338, + "1437475093": 329, + "1437475094": 333, + "1437475095": 340, + "1437475096": 345, + "1437475097": 342, + "1437475098": 340, + "1437475099": 330, + "1437475100": 344, + "1437475101": 312, + "1437475102": 325, + "1437475103": 346, + "1437475104": 341, + "1437475105": 318, + "1437475106": 328, + "1437475107": 318, + "1437475108": 313, + "1437475109": 314, + "1437475110": 302, + "1437475112": 324, + "1437475113": 317, + "1437475114": 320, + "1437475115": 323, + "1437475116": 314, + "1437475117": 319, + "1437475118": 322, + "1437475119": 319, + "1437475120": 314, + "1437475121": 323, + "1437475122": 318, + "1437475123": 316, + "1437475124": 327, + "1437475125": 329, + "1437475126": 339, + "1437475127": 346, + "1437475128": 346, + "1437475129": 337, + "1437475130": 326, + "1437475131": 321, + "1437475132": 317, + "1437475133": 315, + "1437475134": 317, + "1437475135": 330, + "1437475136": 304, + "1437475137": 296, + "1437475138": 320, + "1437475139": 295, + "1437475140": 308, + "1437475141": 306, + "1437475142": 284, + "1437475143": 257, + "1437475145": 314, + "1437475146": 315, + "1437475147": 275, + "1437475148": 292, + "1437475149": 345, + "1437475150": 323, + "1437475151": 323, + "1437475152": 298, + "1437475153": 276, + "1437475154": 283, + "1437475155": 292, + "1437475156": 306, + "1437475157": 283, + "1437475158": 286, + "1437475159": 301, + "1437475160": 317, + "1437475161": 314, + "1437475162": 306, + "1437475163": 307, + "1437475164": 294, + "1437475165": 304, + "1437475166": 296, + "1437475167": 291, + "1437475168": 316, + "1437475169": 295, + "1437475170": 316, + "1437475171": 304, + "1437475173": 306, + "1437475174": 289, + "1437475175": 293, + "1437475176": 276, + "1437475177": 295, + "1437475178": 295, + "1437475179": 321, + "1437475180": 316, + "1437475181": 318, + "1437475182": 328, + "1437475183": 315, + "1437475184": 302, + "1437475185": 313, + "1437475186": 313, + "1437475187": 314, + "1437475188": 326, + "1437475189": 304, + "1437475190": 316, + "1437475191": 325, + "1437475192": 331, + "1437475193": 312, + "1437475194": 316, + "1437475195": 332, + "1437475196": 327, + "1437475197": 319, + "1437475198": 327, + "1437475200": 308, + "1437475201": 308, + "1437475202": 306, + "1437475203": 302, + "1437475204": 299, + "1437475205": 300, + "1437475206": 314, + "1437475207": 291, + "1437475208": 318, + "1437475209": 318, + "1437475210": 302, + "1437475211": 299, + "1437475212": 289, + "1437475213": 282, + "1437475214": 294, + "1437475215": 279, + "1437475216": 276, + "1437475217": 259, + "1437475218": 257, + "1437475219": 313, + "1437475220": 315, + "1437475221": 332, + "1437475222": 311, + "1437475223": 330, + "1437475224": 316, + "1437475225": 330, + "1437475226": 302, + "1437475227": 330, + "1437475228": 359, + "1437475230": 379, + "1437475231": 382, + "1437475232": 357, + "1437475233": 406, + "1437475234": 339, + "1437475235": 311, + "1437475236": 301, + "1437475237": 307, + "1437475238": 305, + "1437475239": 317, + "1437475240": 296, + "1437475241": 296, + "1437475242": 292, + "1437475243": 284, + "1437475244": 284, + "1437475245": 297, + "1437475246": 279, + "1437475247": 288, + "1437475248": 289, + "1437475249": 289, + "1437475250": 301, + "1437475251": 267, + "1437475252": 284, + "1437475253": 318, + "1437475254": 285, + "1437475255": 283, + "1437475256": 296, + "1437475257": 288, + "1437475258": 264, + "1437475259": 268, + "1437475260": 284, + "1437475261": 282, + "1437475262": 277, + "1437475263": 283, + "1437475264": 283, + "1437475265": 262, + "1437475266": 275, + "1437475267": 269, + "1437475269": 264, + "1437475270": 271, + "1437475271": 271, + "1437475272": 274, + "1437475273": 294, + "1437475274": 271, + "1437475275": 263, + "1437475276": 283, + "1437475277": 255, + "1437475278": 265, + "1437475279": 266, + "1437475280": 269, + "1437475281": 270, + "1437475282": 267, + "1437475283": 267, + "1437475284": 281, + "1437475285": 281, + "1437475286": 254, + "1437475287": 249, + "1437475288": 255, + "1437475289": 262, + "1437475290": 247, + "1437475291": 256, + "1437475292": 272, + "1437475293": 272, + "1437475294": 280, + "1437475295": 286, + "1437475296": 286, + "1437475297": 279, + "1437475298": 293, + "1437475299": 287, + "1437475300": 278, + "1437475301": 297, + "1437475302": 288, + "1437475303": 267, + "1437475304": 268, + "1437475305": 262, + "1437475306": 241, + "1437475308": 239, + "1437475309": 272, + "1437475310": 291, + "1437475311": 281, + "1437475312": 287, + "1437475313": 284, + "1437475314": 268, + "1437475315": 252, + "1437475316": 255, + "1437475317": 274, + "1437475318": 260, + "1437475319": 263, + "1437475320": 263, + "1437475321": 270, + "1437475322": 265, + "1437475323": 280, + "1437475324": 275, + "1437475325": 279, + "1437475326": 266, + "1437475327": 267, + "1437475328": 277, + "1437475329": 266, + "1437475330": 238, + "1437475331": 239, + "1437475332": 283, + "1437475333": 256, + "1437475334": 268, + "1437475335": 278, + "1437475336": 278, + "1437475337": 274, + "1437475338": 283, + "1437475339": 249, + "1437475340": 292, + "1437475342": 277, + "1437475343": 267, + "1437475344": 268, + "1437475345": 270, + "1437475346": 274, + "1437475347": 279, + "1437475348": 287, + "1437475349": 277, + "1437475350": 293, + "1437475351": 350, + "1437475352": 334, + "1437475353": 328, + "1437475354": 326, + "1437475355": 337, + "1437475356": 337, + "1437475357": 326, + "1437475358": 321, + "1437475359": 343, + "1437475360": 364, + "1437475361": 326, + "1437475362": 328, + "1437475363": 321, + "1437475364": 293, + "1437475365": 314, + "1437475366": 361, + "1437475367": 381, + "1437475368": 337, + "1437475369": 348, + "1437475371": 375, + "1437475372": 373, + "1437475373": 355, + "1437475374": 345, + "1437475375": 349, + "1437475376": 363, + "1437475377": 374, + "1437475378": 349, + "1437475379": 365, + "1437475380": 342, + "1437475381": 311, + "1437475382": 384, + "1437475383": 364, + "1437475384": 361, + "1437475385": 361, + "1437475386": 345, + "1437475387": 328, + "1437475388": 317, + "1437475389": 291, + "1437475390": 203, + "1437475391": 163, + "1437475392": 209, + "1437475393": 197, + "1437475394": 180, + "1437475395": 167, + "1437475396": 166, + "1437475397": 165, + "1437475398": 153, + "1437475400": 143, + "1437475401": 142, + "1437475402": 143, + "1437475403": 132, + "1437475404": 138, + "1437475405": 128, + "1437475406": 123, + "1437475407": 120, + "1437475408": 129, + "1437475409": 142, + "1437475410": 122, + "1437475411": 129, + "1437475412": 129, + "1437475413": 131, + "1437475414": 130, + "1437475415": 132, + "1437475416": 132, + "1437475417": 135, + "1437475418": 133, + "1437475419": 151, + "1437475420": 154, + "1437475421": 143, + "1437475422": 131, + "1437475423": 136, + "1437475424": 134, + "1437475425": 132, + "1437475426": 132, + "1437475427": 137, + "1437475428": 133, + "1437475429": 130, + "1437475430": 120, + "1437475431": 122, + "1437475433": 122, + "1437475434": 133, + "1437475435": 126, + "1437475436": 128, + "1437475437": 129, + "1437475438": 130, + "1437475439": 127, + "1437475440": 125, + "1437475441": 130, + "1437475442": 134, + "1437475443": 134, + "1437475444": 121, + "1437475445": 87, + "1437475446": 87, + "1437475447": 89, + "1437475448": 89, + "1437475449": 89, + "1437475450": 0, + "1437475451": 0, + "1437475452": 0, + "1437475453": 0, + "1437475454": 0, + "1437475455": 0, + "1437475456": 0, + "1437475457": 0, + "1437475458": 0, + "1437475459": 0, + "1437475460": 0, + "1437475461": 0, + "1437475462": 0, + "1437475463": 0, + "1437475464": 0, + "1437475466": 0, + "1437475467": 0, + "1437475468": 0, + "1437475469": 0, + "1437475470": 0, + "1437475471": 0, + "1437475472": 0, + "1437475473": 0, + "1437475474": 0, + "1437475475": 0, + "1437475476": 0, + "1437475477": 0, + "1437475478": 0, + "1437475479": 0, + "1437475480": 0, + "1437475481": 0, + "1437475482": 0, + "1437475483": 0, + "1437475484": 0, + "1437475485": 0, + "1437475486": 0, + "1437475487": 0, + "1437475488": 0, + "1437475489": 0, + "1437475490": 0, + "1437475491": 37, + "1437475492": 37, + "1437475493": 42, + "1437475494": 42, + "1437475495": 46, + "1437475496": 53, + "1437475497": 53, + "1437475498": 68, + "1437475499": 94, + "1437475500": 79, + "1437475501": 84, + "1437475502": 105, + "1437475503": 122, + "1437475504": 129, + "1437475505": 129, + "1437475506": 122, + "1437475507": 138, + "1437475508": 140, + "1437475510": 125, + "1437475511": 148, + "1437475512": 168, + "1437475513": 145, + "1437475514": 150, + "1437475515": 157, + "1437475516": 141, + "1437475517": 167, + "1437475518": 148, + "1437475519": 149, + "1437475520": 152, + "1437475521": 153, + "1437475522": 143, + "1437475523": 157, + "1437475524": 158, + "1437475525": 154, + "1437475526": 154, + "1437475527": 154, + "1437475528": 154, + "1437475529": 143, + "1437475530": 142, + "1437475531": 165, + "1437475532": 154, + "1437475533": 159, + "1437475534": 176, + "1437475535": 180, + "1437475536": 146, + "1437475537": 143, + "1437475538": 151, + "1437475539": 151, + "1437475540": 148, + "1437475541": 142, + "1437475542": 150, + "1437475543": 149, + "1437475544": 149, + "1437475545": 139, + "1437475546": 135, + "1437475547": 132, + "1437475548": 134, + "1437475549": 132, + "1437475551": 134, + "1437475552": 144, + "1437475553": 152, + "1437475554": 149, + "1437475555": 142, + "1437475556": 142, + "1437475557": 145, + "1437475558": 162, + "1437475559": 172, + "1437475560": 157, + "1437475561": 142, + "1437475562": 124, + "1437475563": 123, + "1437475564": 120, + "1437475565": 125, + "1437475566": 131, + "1437475567": 129, + "1437475568": 120, + "1437475569": 133, + "1437475570": 132, + "1437475571": 139, + "1437475572": 137, + "1437475573": 132, + "1437475574": 128, + "1437475575": 121, + "1437475576": 130, + "1437475577": 153, + "1437475578": 135, + "1437475580": 141, + "1437475581": 141, + "1437475582": 140, + "1437475583": 129, + "1437475584": 129, + "1437475585": 131, + "1437475586": 126, + "1437475587": 117, + "1437475588": 117, + "1437475589": 128, + "1437475590": 117, + "1437475591": 69, + "1437475592": 69, + "1437475593": 69, + "1437475594": 0, + "1437475595": 0, + "1437475596": 0, + "1437475597": 0, + "1437475598": 0, + "1437475599": 0, + "1437475600": 0, + "1437475601": 0, + "1437475602": 0, + "1437475603": 0, + "1437475604": 0, + "1437475605": 84, + "1437475606": 90, + "1437475607": 90, + "1437475608": 90, + "1437475610": 100, + "1437475611": 105, + "1437475612": 104, + "1437475613": 96, + "1437475614": 99, + "1437475615": 100, + "1437475616": 105, + "1437475617": 105, + "1437475618": 92, + "1437475619": 85, + "1437475620": 85, + "1437475621": 97, + "1437475622": 103, + "1437475623": 103, + "1437475624": 118, + "1437475625": 116, + "1437475626": 118, + "1437475627": 117, + "1437475628": 117, + "1437475629": 127, + "1437475630": 118, + "1437475631": 120, + "1437475632": 129, + "1437475633": 136, + "1437475634": 130, + "1437475636": 122, + "1437475637": 125, + "1437475638": 129, + "1437475639": 127, + "1437475640": 154, + "1437475641": 153, + "1437475642": 128, + "1437475643": 131, + "1437475644": 131, + "1437475645": 135, + "1437475646": 121, + "1437475647": 97, + "1437475648": 135, + "1437475649": 127, + "1437475650": 128, + "1437475651": 127, + "1437475652": 131, + "1437475653": 127, + "1437475654": 134, + "1437475655": 127, + "1437475656": 128, + "1437475657": 133, + "1437475658": 133, + "1437475659": 134, + "1437475660": 139, + "1437475662": 139, + "1437475663": 128, + "1437475664": 138, + "1437475665": 132, + "1437475666": 127, + "1437475667": 130, + "1437475668": 127, + "1437475669": 134, + "1437475670": 136, + "1437475671": 133, + "1437475672": 122, + "1437475673": 122, + "1437475674": 131, + "1437475675": 136, + "1437475676": 125, + "1437475677": 132, + "1437475678": 128, + "1437475679": 129, + "1437475680": 125, + "1437475681": 145, + "1437475682": 150, + "1437475683": 159, + "1437475684": 166, + "1437475685": 144, + "1437475686": 144, + "1437475687": 159, + "1437475688": 158, + "1437475689": 145, + "1437475690": 157, + "1437475691": 164, + "1437475693": 145, + "1437475694": 158, + "1437475695": 133, + "1437475696": 141, + "1437475697": 152, + "1437475698": 140, + "1437475699": 142, + "1437475700": 147, + "1437475701": 148, + "1437475702": 143, + "1437475703": 140, + "1437475704": 155, + "1437475705": 158, + "1437475706": 148, + "1437475707": 143, + "1437475708": 146, + "1437475709": 158, + "1437475710": 137, + "1437475711": 149, + "1437475712": 153, + "1437475713": 154, + "1437475714": 163, + "1437475715": 176, + "1437475716": 182, + "1437475717": 170, + "1437475718": 184, + "1437475719": 158, + "1437475720": 178, + "1437475721": 187, + "1437475722": 184, + "1437475724": 172, + "1437475725": 163, + "1437475726": 167, + "1437475727": 187, + "1437475728": 192, + "1437475729": 193, + "1437475730": 190, + "1437475731": 182, + "1437475732": 195, + "1437475733": 191, + "1437475734": 191, + "1437475735": 187, + "1437475736": 178, + "1437475737": 193, + "1437475738": 193, + "1437475739": 170, + "1437475740": 184, + "1437475741": 179, + "1437475742": 172, + "1437475743": 179, + "1437475744": 174, + "1437475745": 188, + "1437475746": 181, + "1437475747": 176, + "1437475748": 176, + "1437475749": 179, + "1437475750": 165, + "1437475751": 172, + "1437475752": 175, + "1437475753": 176, + "1437475754": 170, + "1437475755": 179, + "1437475756": 186, + "1437475758": 186, + "1437475759": 180, + "1437475760": 178, + "1437475761": 183, + "1437475762": 170, + "1437475763": 179, + "1437475764": 188, + "1437475765": 183, + "1437475766": 179, + "1437475767": 171, + "1437475768": 181, + "1437475769": 180, + "1437475770": 180, + "1437475771": 184, + "1437475772": 192, + "1437475773": 182, + "1437475774": 168, + "1437475775": 176, + "1437475776": 176, + "1437475777": 190, + "1437475778": 189, + "1437475779": 180, + "1437475780": 178, + "1437475781": 177, + "1437475782": 169, + "1437475783": 177, + "1437475784": 180, + "1437475785": 167, + "1437475786": 159, + "1437475787": 183, + "1437475788": 183, + "1437475789": 176, + "1437475791": 167, + "1437475792": 167, + "1437475793": 168, + "1437475794": 174, + "1437475795": 187, + "1437475796": 178, + "1437475797": 170, + "1437475798": 172, + "1437475799": 175, + "1437475800": 173, + "1437475801": 169, + "1437475802": 164, + "1437475803": 177, + "1437475804": 199, + "1437475805": 172, + "1437475806": 172, + "1437475807": 192, + "1437475808": 184, + "1437475809": 172, + "1437475810": 179, + "1437475811": 175, + "1437475812": 175, + "1437475813": 174, + "1437475814": 162, + "1437475815": 160, + "1437475816": 159, + "1437475817": 169, + "1437475818": 159, + "1437475819": 155, + "1437475821": 160, + "1437475822": 153, + "1437475823": 163, + "1437475824": 165, + "1437475825": 165, + "1437475826": 151, + "1437475827": 152, + "1437475828": 151, + "1437475829": 149, + "1437475830": 145, + "1437475831": 150, + "1437475832": 157, + "1437475833": 155, + "1437475834": 155, + "1437475835": 155, + "1437475836": 157, + "1437475837": 163, + "1437475838": 151, + "1437475839": 146, + "1437475840": 163, + "1437475841": 157, + "1437475842": 158, + "1437475843": 164, + "1437475844": 149, + "1437475845": 147, + "1437475846": 159, + "1437475847": 170, + "1437475848": 149, + "1437475849": 155, + "1437475850": 159, + "1437475852": 151, + "1437475853": 157, + "1437475854": 158, + "1437475855": 159, + "1437475856": 157, + "1437475857": 163, + "1437475858": 163, + "1437475859": 154, + "1437475860": 152, + "1437475861": 152, + "1437475862": 154, + "1437475863": 155, + "1437475864": 160, + "1437475865": 158, + "1437475866": 148, + "1437475867": 150, + "1437475868": 154, + "1437475869": 152, + "1437475870": 150, + "1437475871": 150, + "1437475872": 159, + "1437475873": 147, + "1437475874": 151, + "1437475875": 166, + "1437475876": 164, + "1437475878": 163, + "1437475879": 160, + "1437475880": 147, + "1437475881": 149, + "1437475882": 155, + "1437475883": 160, + "1437475884": 132, + "1437475885": 155, + "1437475886": 187, + "1437475887": 157, + "1437475888": 169, + "1437475889": 163, + "1437475890": 176, + "1437475891": 176, + "1437475892": 173, + "1437475893": 173, + "1437475894": 184, + "1437475895": 184, + "1437475896": 177, + "1437475897": 171, + "1437475898": 181, + "1437475899": 176, + "1437475900": 174, + "1437475901": 192, + "1437475902": 177, + "1437475903": 184, + "1437475905": 180, + "1437475906": 181, + "1437475907": 174, + "1437475908": 168, + "1437475909": 182, + "1437475910": 178, + "1437475911": 176, + "1437475912": 184, + "1437475913": 175, + "1437475914": 178, + "1437475915": 188, + "1437475916": 185, + "1437475917": 190, + "1437475918": 191, + "1437475919": 170, + "1437475920": 148, + "1437475921": 90, + "1437475922": 157, + "1437475923": 212, + "1437475924": 189, + "1437475925": 197, + "1437475926": 111, + "1437475927": 196, + "1437475928": 178, + "1437475929": 198, + "1437475930": 170, + "1437475931": 170, + "1437475932": 183, + "1437475933": 180, + "1437475934": 173, + "1437475935": 175, + "1437475936": 175, + "1437475938": 179, + "1437475939": 180, + "1437475940": 169, + "1437475941": 195, + "1437475942": 184, + "1437475943": 184, + "1437475944": 164, + "1437475945": 166, + "1437475946": 181, + "1437475947": 167, + "1437475948": 167, + "1437475949": 164, + "1437475950": 150, + "1437475951": 151, + "1437475952": 154, + "1437475953": 157, + "1437475954": 150, + "1437475955": 150, + "1437475956": 149, + "1437475957": 171, + "1437475958": 156, + "1437475959": 130, + "1437475960": 122, + "1437475961": 128, + "1437475962": 133, + "1437475963": 140, + "1437475964": 136, + "1437475965": 136, + "1437475967": 136, + "1437475968": 136, + "1437475969": 0, + "1437475970": 235, + "1437475971": 155, + "1437475972": 155, + "1437475973": 154, + "1437475974": 143, + "1437475975": 145, + "1437475976": 152, + "1437475977": 150, + "1437475978": 149, + "1437475979": 147, + "1437475980": 147, + "1437475981": 145, + "1437475982": 164, + "1437475983": 163, + "1437475984": 133, + "1437475985": 144, + "1437475986": 144, + "1437475987": 167, + "1437475988": 165, + "1437475989": 156, + "1437475990": 156, + "1437475991": 157, + "1437475992": 159, + "1437475993": 164, + "1437475994": 158, + "1437475995": 158, + "1437475997": 154, + "1437475998": 153, + "1437475999": 164, + "1437476000": 171, + "1437476001": 165, + "1437476002": 157, + "1437476003": 160, + "1437476004": 160, + "1437476005": 152, + "1437476006": 162, + "1437476007": 161, + "1437476008": 152, + "1437476009": 147, + "1437476010": 158, + "1437476011": 154, + "1437476012": 149, + "1437476013": 148, + "1437476014": 143, + "1437476015": 143, + "1437476016": 147, + "1437476017": 147, + "1437476019": 145, + "1437476020": 145, + "1437476021": 138, + "1437476022": 146, + "1437476023": 155, + "1437476024": 135, + "1437476025": 131, + "1437476026": 133, + "1437476027": 140, + "1437476028": 140, + "1437476029": 146, + "1437476030": 149, + "1437476031": 139, + "1437476032": 141, + "1437476033": 145, + "1437476034": 140, + "1437476035": 140, + "1437476036": 152, + "1437476037": 152, + "1437476038": 146, + "1437476039": 146, + "1437476040": 139, + "1437476041": 147, + "1437476042": 154, + "1437476043": 157, + "1437476044": 152, + "1437476045": 154, + "1437476047": 156, + "1437476048": 140, + "1437476049": 138, + "1437476050": 135, + "1437476051": 143, + "1437476052": 139, + "1437476053": 144, + "1437476054": 135, + "1437476055": 143, + "1437476056": 146, + "1437476057": 146, + "1437476058": 146, + "1437476059": 145, + "1437476060": 148, + "1437476061": 141, + "1437476062": 135, + "1437476063": 140, + "1437476064": 136, + "1437476065": 134, + "1437476066": 134, + "1437476067": 135, + "1437476068": 136, + "1437476069": 136, + "1437476070": 140, + "1437476071": 137, + "1437476072": 135, + "1437476073": 135, + "1437476074": 135, + "1437476075": 135, + "1437476076": 122, + "1437476077": 125, + "1437476079": 126, + "1437476080": 143, + "1437476081": 154, + "1437476082": 139, + "1437476083": 157, + "1437476084": 157, + "1437476085": 142, + "1437476086": 143, + "1437476087": 140, + "1437476088": 132, + "1437476089": 132, + "1437476090": 143, + "1437476091": 135, + "1437476092": 99, + "1437476093": 133, + "1437476094": 152, + "1437476095": 152, + "1437476096": 153, + "1437476097": 150, + "1437476098": 144, + "1437476099": 172, + "1437476100": 170, + "1437476101": 144, + "1437476102": 142, + "1437476103": 157, + "1437476104": 170, + "1437476105": 151, + "1437476106": 143, + "1437476107": 141, + "1437476108": 145, + "1437476109": 152, + "1437476110": 164, + "1437476112": 145, + "1437476113": 148, + "1437476114": 158, + "1437476115": 159, + "1437476116": 167, + "1437476117": 128, + "1437476118": 129, + "1437476119": 139, + "1437476120": 139, + "1437476121": 143, + "1437476122": 119, + "1437476123": 134, + "1437476124": 126, + "1437476125": 126, + "1437476126": 122, + "1437476127": 129, + "1437476128": 123, + "1437476129": 133, + "1437476130": 138, + "1437476131": 129, + "1437476132": 121, + "1437476133": 138, + "1437476134": 134, + "1437476135": 134, + "1437476136": 143, + "1437476137": 146, + "1437476138": 121, + "1437476139": 127, + "1437476140": 133, + "1437476141": 133, + "1437476142": 139, + "1437476143": 148, + "1437476144": 142, + "1437476146": 130, + "1437476147": 130, + "1437476148": 135, + "1437476149": 123, + "1437476150": 122, + "1437476151": 128, + "1437476152": 123, + "1437476153": 123, + "1437476154": 126, + "1437476155": 146, + "1437476156": 149, + "1437476157": 167, + "1437476158": 152, + "1437476159": 158, + "1437476160": 172, + "1437476161": 163, + "1437476162": 151, + "1437476163": 156, + "1437476164": 154, + "1437476165": 154, + "1437476166": 142, + "1437476167": 148, + "1437476168": 151, + "1437476169": 153, + "1437476170": 149, + "1437476171": 137, + "1437476172": 153, + "1437476173": 153, + "1437476174": 115, + "1437476175": 118, + "1437476176": 124, + "1437476177": 118, + "1437476179": 127, + "1437476180": 119, + "1437476181": 122, + "1437476182": 126, + "1437476183": 123, + "1437476184": 123, + "1437476185": 135, + "1437476186": 138, + "1437476187": 128, + "1437476188": 128, + "1437476189": 141, + "1437476190": 172, + "1437476191": 172, + "1437476192": 142, + "1437476193": 176, + "1437476194": 167, + "1437476195": 168, + "1437476196": 170, + "1437476197": 160, + "1437476198": 147, + "1437476199": 143, + "1437476200": 145, + "1437476201": 140, + "1437476202": 140, + "1437476203": 144, + "1437476204": 153, + "1437476205": 157, + "1437476206": 142, + "1437476207": 143, + "1437476208": 146, + "1437476209": 138, + "1437476211": 153, + "1437476212": 148, + "1437476213": 146, + "1437476214": 147, + "1437476215": 141, + "1437476216": 146, + "1437476217": 140, + "1437476218": 147, + "1437476219": 140, + "1437476220": 153, + "1437476221": 156, + "1437476222": 146, + "1437476223": 148, + "1437476224": 147, + "1437476225": 146, + "1437476226": 142, + "1437476227": 154, + "1437476228": 141, + "1437476229": 141, + "1437476230": 138, + "1437476231": 137, + "1437476232": 135, + "1437476233": 135, + "1437476234": 134, + "1437476235": 146, + "1437476236": 145, + "1437476237": 146, + "1437476238": 140, + "1437476239": 134, + "1437476240": 134, + "1437476241": 122, + "1437476242": 107, + "1437476243": 116, + "1437476244": 115, + "1437476245": 99, + "1437476246": 95, + "1437476248": 99, + "1437476249": 93, + "1437476250": 97, + "1437476251": 94, + "1437476252": 94, + "1437476253": 99, + "1437476254": 94, + "1437476255": 94, + "1437476256": 111, + "1437476257": 111, + "1437476258": 111, + "1437476259": 110, + "1437476260": 110, + "1437476261": 110, + "1437476262": 110, + "1437476263": 110, + "1437476264": 109, + "1437476265": 107, + "1437476266": 110, + "1437476267": 101, + "1437476268": 90, + "1437476269": 104, + "1437476270": 102, + "1437476271": 93, + "1437476272": 98, + "1437476274": 113, + "1437476275": 107, + "1437476276": 79, + "1437476277": 57, + "1437476278": 43, + "1437476279": 43, + "1437476280": 43, + "1437476281": 47, + "1437476282": 47, + "1437476283": 48, + "1437476284": 51, + "1437476285": 51, + "1437476286": 49, + "1437476287": 49, + "1437476288": 49, + "1437476289": 48, + "1437476290": 49, + "1437476291": 50, + "1437476292": 50, + "1437476293": 51, + "1437476295": 47, + "1437476296": 47, + "1437476297": 48, + "1437476298": 49, + "1437476299": 49, + "1437476300": 46, + "1437476301": 46, + "1437476302": 46, + "1437476303": 44, + "1437476304": 67, + "1437476305": 67, + "1437476306": 67, + "1437476307": 67, + "1437476308": 0, + "1437476309": 0, + "1437476310": 0, + "1437476311": 0, + "1437476312": 0, + "1437476313": 0, + "1437476314": 0, + "1437476315": 0, + "1437476316": 0, + "1437476317": 0, + "1437476318": 0, + "1437476319": 0, + "1437476320": 0, + "1437476321": 0, + "1437476323": 0, + "1437476324": 0, + "1437476325": 0, + "1437476326": 0, + "1437476327": 0, + "1437476328": 0, + "1437476329": 0, + "1437476330": 0, + "1437476331": 0, + "1437476332": 0, + "1437476333": 0, + "1437476334": 0, + "1437476335": 0, + "1437476338": 26, + "1437476339": 26, + "1437476340": 26, + "1437476341": 35, + "1437476342": 40, + "1437476343": 40, + "1437476344": 54, + "1437476345": 53, + "1437476346": 53, + "1437476347": 38, + "1437476348": 32, + "1437476349": 32, + "1437476350": 38, + "1437476351": 38, + "1437476352": 50, + "1437476353": 40, + "1437476354": 40, + "1437476355": 42, + "1437476356": 52, + "1437476357": 51, + "1437476358": 51, + "1437476360": 38, + "1437476361": 38, + "1437476362": 32, + "1437476363": 41, + "1437476364": 41, + "1437476365": 42, + "1437476366": 42, + "1437476367": 38, + "1437476368": 38, + "1437476369": 38, + "1437476370": 43, + "1437476371": 43, + "1437476372": 33, + "1437476373": 33, + "1437476374": 42, + "1437476375": 58, + "1437476376": 40, + "1437476377": 40, + "1437476378": 34, + "1437476379": 40, + "1437476380": 40, + "1437476381": 37, + "1437476382": 37, + "1437476383": 38, + "1437476384": 54, + "1437476385": 54, + "1437476386": 60, + "1437476387": 57, + "1437476389": 65, + "1437476390": 65, + "1437476391": 71, + "1437476392": 82, + "1437476393": 104, + "1437476394": 94, + "1437476395": 94, + "1437476396": 85, + "1437476397": 88, + "1437476398": 102, + "1437476399": 104, + "1437476400": 98, + "1437476401": 85, + "1437476402": 90, + "1437476403": 90, + "1437476404": 94, + "1437476405": 102, + "1437476406": 103, + "1437476407": 99, + "1437476408": 102, + "1437476410": 97, + "1437476411": 109, + "1437476412": 70, + "1437476413": 90, + "1437476414": 90, + "1437476415": 128, + "1437476416": 104, + "1437476417": 104, + "1437476418": 103, + "1437476419": 98, + "1437476420": 95, + "1437476421": 96, + "1437476422": 92, + "1437476423": 94, + "1437476424": 97, + "1437476425": 97, + "1437476426": 91, + "1437476427": 102, + "1437476428": 99, + "1437476429": 99, + "1437476430": 93, + "1437476431": 93, + "1437476432": 85, + "1437476433": 89, + "1437476434": 96, + "1437476435": 89, + "1437476436": 89, + "1437476437": 89, + "1437476438": 94, + "1437476439": 104, + "1437476441": 116, + "1437476442": 111, + "1437476443": 122, + "1437476444": 115, + "1437476445": 222, + "1437476446": 287, + "1437476447": 209, + "1437476448": 300, + "1437476449": 289, + "1437476450": 264, + "1437476451": 254, + "1437476452": 298, + "1437476453": 275, + "1437476454": 261, + "1437476455": 255, + "1437476456": 257, + "1437476457": 268, + "1437476458": 257, + "1437476459": 255, + "1437476460": 262, + "1437476461": 262, + "1437476462": 294, + "1437476463": 274, + "1437476464": 329, + "1437476465": 309, + "1437476467": 468, + "1437476468": 416, + "1437476469": 452, + "1437476470": 424, + "1437476471": 442, + "1437476472": 442, + "1437476473": 470, + "1437476474": 439, + "1437476475": 441, + "1437476476": 444, + "1437476477": 446, + "1437476478": 371, + "1437476479": 407, + "1437476480": 366, + "1437476481": 397, + "1437476482": 450, + "1437476483": 402, + "1437476484": 410, + "1437476485": 423, + "1437476486": 483, + "1437476487": 403, + "1437476488": 353, + "1437476490": 437, + "1437476491": 430, + "1437476492": 405, + "1437476493": 419, + "1437476494": 411, + "1437476495": 420, + "1437476496": 446, + "1437476497": 444, + "1437476498": 422, + "1437476499": 422, + "1437476500": 483, + "1437476501": 391, + "1437476502": 396, + "1437476503": 402, + "1437476504": 443, + "1437476505": 419, + "1437476506": 395, + "1437476507": 408, + "1437476508": 429, + "1437476509": 407, + "1437476510": 388, + "1437476511": 413, + "1437476512": 397, + "1437476513": 395, + "1437476514": 393, + "1437476515": 366, + "1437476516": 433, + "1437476517": 446, + "1437476518": 415, + "1437476519": 430, + "1437476521": 418, + "1437476522": 440, + "1437476523": 459, + "1437476524": 533, + "1437476525": 564, + "1437476526": 527, + "1437476527": 535, + "1437476528": 537, + "1437476529": 548, + "1437476530": 506, + "1437476531": 485, + "1437476532": 521, + "1437476533": 508, + "1437476534": 546, + "1437476535": 498, + "1437476536": 530, + "1437476537": 556, + "1437476538": 547, + "1437476539": 510, + "1437476540": 518, + "1437476541": 523, + "1437476542": 467, + "1437476543": 467, + "1437476544": 354, + "1437476545": 358, + "1437476547": 360, + "1437476548": 356, + "1437476549": 370, + "1437476550": 359, + "1437476551": 359, + "1437476552": 361, + "1437476553": 361, + "1437476554": 361, + "1437476555": 367, + "1437476556": 352, + "1437476557": 331, + "1437476558": 311, + "1437476559": 327, + "1437476560": 314, + "1437476561": 308, + "1437476562": 308, + "1437476563": 314, + "1437476564": 308, + "1437476565": 309, + "1437476566": 304, + "1437476567": 298, + "1437476568": 301, + "1437476569": 304, + "1437476570": 304, + "1437476571": 289, + "1437476572": 273, + "1437476573": 272, + "1437476574": 272, + "1437476576": 274, + "1437476577": 260, + "1437476578": 237, + "1437476579": 234, + "1437476580": 194, + "1437476581": 176, + "1437476582": 181, + "1437476583": 155, + "1437476584": 149, + "1437476585": 135, + "1437476586": 128, + "1437476587": 100, + "1437476588": 97, + "1437476589": 111, + "1437476590": 111, + "1437476591": 129, + "1437476592": 163, + "1437476593": 165, + "1437476594": 165, + "1437476595": 161, + "1437476596": 172, + "1437476597": 163, + "1437476598": 171, + "1437476599": 184, + "1437476601": 171, + "1437476602": 173, + "1437476603": 181, + "1437476604": 185, + "1437476605": 185, + "1437476606": 263, + "1437476607": 314, + "1437476608": 303, + "1437476609": 360, + "1437476610": 290, + "1437476611": 303, + "1437476612": 318, + "1437476613": 285, + "1437476614": 308, + "1437476615": 306, + "1437476616": 309, + "1437476617": 296, + "1437476618": 309, + "1437476619": 321, + "1437476620": 309, + "1437476621": 307, + "1437476622": 311, + "1437476623": 308, + "1437476624": 315, + "1437476625": 319, + "1437476627": 329, + "1437476628": 304, + "1437476629": 327, + "1437476630": 343, + "1437476631": 345, + "1437476632": 334, + "1437476633": 323, + "1437476634": 318, + "1437476635": 316, + "1437476636": 329, + "1437476637": 349, + "1437476638": 329, + "1437476639": 391, + "1437476640": 570, + "1437476641": 456, + "1437476642": 480, + "1437476643": 466, + "1437476644": 471, + "1437476645": 482, + "1437476646": 451, + "1437476647": 478, + "1437476648": 473, + "1437476649": 467, + "1437476650": 447, + "1437476651": 416, + "1437476652": 436, + "1437476653": 476, + "1437476654": 505, + "1437476655": 504, + "1437476656": 493, + "1437476658": 492, + "1437476659": 500, + "1437476660": 507, + "1437476661": 490, + "1437476662": 487, + "1437476663": 472, + "1437476664": 485, + "1437476665": 462, + "1437476666": 481, + "1437476667": 474, + "1437476668": 469, + "1437476669": 466, + "1437476670": 497, + "1437476671": 489, + "1437476672": 455, + "1437476673": 485, + "1437476674": 444, + "1437476675": 455, + "1437476676": 430, + "1437476677": 446, + "1437476678": 448, + "1437476679": 442, + "1437476680": 463, + "1437476681": 447, + "1437476682": 465, + "1437476683": 441, + "1437476684": 424, + "1437476685": 405, + "1437476686": 429, + "1437476687": 466, + "1437476688": 440, + "1437476689": 390, + "1437476690": 389, + "1437476691": 389, + "1437476692": 386, + "1437476694": 398, + "1437476695": 378, + "1437476696": 389, + "1437476697": 367, + "1437476698": 372, + "1437476699": 354, + "1437476700": 352, + "1437476701": 356, + "1437476702": 348, + "1437476703": 365, + "1437476704": 356, + "1437476705": 360, + "1437476706": 343, + "1437476707": 304, + "1437476708": 314, + "1437476709": 310, + "1437476710": 337, + "1437476711": 312, + "1437476712": 308, + "1437476713": 347, + "1437476714": 331, + "1437476715": 333, + "1437476716": 323, + "1437476717": 311, + "1437476718": 339, + "1437476719": 344, + "1437476720": 371, + "1437476721": 369, + "1437476723": 337, + "1437476724": 352, + "1437476725": 369, + "1437476726": 364, + "1437476727": 369, + "1437476728": 358, + "1437476729": 356, + "1437476730": 353, + "1437476731": 289, + "1437476732": 335, + "1437476733": 335, + "1437476734": 317, + "1437476735": 350, + "1437476736": 331, + "1437476737": 335, + "1437476738": 317, + "1437476739": 320, + "1437476740": 331, + "1437476741": 331, + "1437476742": 325, + "1437476743": 345, + "1437476744": 312, + "1437476745": 316, + "1437476746": 299, + "1437476747": 302, + "1437476748": 298, + "1437476749": 311, + "1437476750": 333, + "1437476751": 299, + "1437476752": 271, + "1437476753": 248, + "1437476755": 267, + "1437476756": 264, + "1437476757": 274, + "1437476758": 280, + "1437476759": 283, + "1437476760": 265, + "1437476761": 263, + "1437476762": 276, + "1437476763": 280, + "1437476764": 267, + "1437476765": 261, + "1437476766": 265, + "1437476767": 281, + "1437476768": 273, + "1437476769": 260, + "1437476770": 249, + "1437476771": 262, + "1437476772": 277, + "1437476773": 271, + "1437476774": 277, + "1437476775": 258, + "1437476776": 264, + "1437476777": 264, + "1437476778": 272, + "1437476779": 274, + "1437476780": 279, + "1437476781": 287, + "1437476782": 226, + "1437476783": 262, + "1437476784": 356, + "1437476785": 317, + "1437476786": 257, + "1437476787": 343, + "1437476788": 479, + "1437476789": 501, + "1437476791": 553, + "1437476792": 344, + "1437476793": 261, + "1437476794": 268, + "1437476795": 307, + "1437476796": 294, + "1437476797": 281, + "1437476798": 311, + "1437476799": 287, + "1437476800": 270, + "1437476801": 261, + "1437476802": 220, + "1437476803": 242, + "1437476804": 202, + "1437476805": 228, + "1437476806": 228, + "1437476807": 237, + "1437476808": 236, + "1437476809": 229, + "1437476810": 235, + "1437476811": 236, + "1437476812": 211, + "1437476813": 197, + "1437476814": 216, + "1437476815": 225, + "1437476816": 228, + "1437476817": 200, + "1437476818": 203, + "1437476819": 194, + "1437476820": 227, + "1437476821": 216, + "1437476822": 226, + "1437476824": 234, + "1437476825": 231, + "1437476826": 225, + "1437476827": 249, + "1437476828": 244, + "1437476829": 228, + "1437476830": 240, + "1437476831": 234, + "1437476832": 246, + "1437476833": 259, + "1437476834": 266, + "1437476835": 278, + "1437476836": 303, + "1437476837": 298, + "1437476838": 302, + "1437476839": 261, + "1437476840": 288, + "1437476841": 284, + "1437476842": 282, + "1437476843": 317, + "1437476844": 324, + "1437476845": 304, + "1437476846": 301, + "1437476847": 309, + "1437476848": 313, + "1437476849": 312, + "1437476850": 304, + "1437476851": 346, + "1437476852": 332, + "1437476854": 335, + "1437476855": 320, + "1437476856": 327, + "1437476857": 351, + "1437476858": 337, + "1437476859": 352, + "1437476860": 335, + "1437476861": 324, + "1437476862": 357, + "1437476863": 343, + "1437476864": 349, + "1437476865": 334, + "1437476866": 342, + "1437476867": 362, + "1437476868": 368, + "1437476869": 391, + "1437476870": 377, + "1437476871": 299, + "1437476872": 282, + "1437476873": 295, + "1437476874": 305, + "1437476875": 289, + "1437476876": 300, + "1437476877": 298, + "1437476878": 328, + "1437476879": 307, + "1437476880": 283, + "1437476881": 277, + "1437476882": 291, + "1437476883": 293, + "1437476884": 286, + "1437476886": 285, + "1437476887": 299, + "1437476888": 277, + "1437476889": 283, + "1437476890": 343, + "1437476891": 343, + "1437476892": 304, + "1437476893": 295, + "1437476894": 301, + "1437476895": 311, + "1437476896": 287, + "1437476897": 290, + "1437476898": 297, + "1437476899": 297, + "1437476900": 277, + "1437476901": 291, + "1437476902": 326, + "1437476903": 312, + "1437476904": 310, + "1437476905": 293, + "1437476906": 309, + "1437476907": 311, + "1437476908": 324, + "1437476910": 298, + "1437476911": 310, + "1437476912": 302, + "1437476913": 321, + "1437476914": 312, + "1437476915": 303, + "1437476916": 301, + "1437476917": 294, + "1437476918": 303, + "1437476919": 248, + "1437476920": 248, + "1437476921": 276, + "1437476922": 245, + "1437476923": 267, + "1437476924": 249, + "1437476925": 264, + "1437476926": 253, + "1437476927": 248, + "1437476928": 249, + "1437476929": 255, + "1437476930": 270, + "1437476931": 244, + "1437476932": 251, + "1437476933": 236, + "1437476934": 249, + "1437476935": 224, + "1437476936": 230, + "1437476938": 238, + "1437476939": 237, + "1437476940": 237, + "1437476941": 247, + "1437476942": 252, + "1437476943": 261, + "1437476944": 263, + "1437476945": 255, + "1437476946": 262, + "1437476947": 238, + "1437476948": 241, + "1437476949": 258, + "1437476950": 237, + "1437476951": 241, + "1437476952": 248, + "1437476953": 246, + "1437476954": 245, + "1437476955": 253, + "1437476956": 253, + "1437476957": 253, + "1437476958": 231, + "1437476959": 241, + "1437476960": 249, + "1437476961": 254, + "1437476962": 246, + "1437476963": 248, + "1437476964": 245, + "1437476965": 247, + "1437476966": 236, + "1437476967": 250, + "1437476969": 255, + "1437476970": 261, + "1437476971": 247, + "1437476972": 263, + "1437476973": 263, + "1437476974": 263, + "1437476975": 246, + "1437476976": 261, + "1437476977": 267, + "1437476978": 254, + "1437476979": 247, + "1437476980": 249, + "1437476981": 255, + "1437476982": 231, + "1437476983": 256, + "1437476984": 243, + "1437476985": 243, + "1437476986": 242, + "1437476987": 239, + "1437476988": 241, + "1437476989": 252, + "1437476990": 257, + "1437476991": 255, + "1437476992": 257, + "1437476993": 265, + "1437476994": 272, + "1437476996": 252, + "1437476997": 267, + "1437476998": 272, + "1437476999": 272, + "1437477000": 248, + "1437477001": 275, + "1437477002": 266, + "1437477003": 242, + "1437477004": 268, + "1437477005": 306, + "1437477006": 406, + "1437477007": 341, + "1437477008": 349, + "1437477009": 353, + "1437477010": 368, + "1437477011": 366, + "1437477012": 367, + "1437477013": 360, + "1437477014": 366, + "1437477015": 385, + "1437477016": 379, + "1437477017": 395, + "1437477018": 367, + "1437477019": 394, + "1437477020": 363, + "1437477022": 372, + "1437477023": 396, + "1437477024": 392, + "1437477025": 344, + "1437477026": 359, + "1437477027": 338, + "1437477028": 357, + "1437477029": 341, + "1437477030": 348, + "1437477031": 350, + "1437477032": 354, + "1437477033": 383, + "1437477034": 358, + "1437477035": 366, + "1437477036": 385, + "1437477037": 378, + "1437477038": 380, + "1437477039": 389, + "1437477040": 358, + "1437477041": 333, + "1437477042": 333, + "1437477043": 369, + "1437477044": 354, + "1437477045": 366, + "1437477046": 350, + "1437477047": 346, + "1437477048": 364, + "1437477050": 379, + "1437477051": 351, + "1437477052": 371, + "1437477053": 363, + "1437477054": 354, + "1437477055": 341, + "1437477056": 341, + "1437477057": 325, + "1437477058": 327, + "1437477059": 325, + "1437477060": 311, + "1437477061": 310, + "1437477062": 325, + "1437477063": 325, + "1437477064": 329, + "1437477065": 304, + "1437477066": 298, + "1437477067": 330, + "1437477068": 332, + "1437477069": 303, + "1437477070": 305, + "1437477071": 315, + "1437477072": 315, + "1437477073": 315, + "1437477075": 304, + "1437477076": 292, + "1437477077": 312, + "1437477078": 312, + "1437477079": 337, + "1437477080": 358, + "1437477081": 382, + "1437477082": 372, + "1437477083": 348, + "1437477084": 348, + "1437477085": 348, + "1437477086": 355, + "1437477087": 350, + "1437477088": 344, + "1437477089": 331, + "1437477090": 361, + "1437477091": 403, + "1437477092": 322, + "1437477093": 325, + "1437477094": 345, + "1437477095": 349, + "1437477096": 356, + "1437477097": 316, + "1437477098": 340, + "1437477099": 334, + "1437477100": 339, + "1437477101": 341, + "1437477102": 334, + "1437477103": 348, + "1437477104": 323, + "1437477105": 323, + "1437477106": 328, + "1437477107": 328, + "1437477109": 332, + "1437477110": 319, + "1437477111": 353, + "1437477112": 303, + "1437477113": 316, + "1437477114": 336, + "1437477115": 321, + "1437477116": 322, + "1437477117": 333, + "1437477118": 327, + "1437477119": 335, + "1437477120": 329, + "1437477121": 342, + "1437477122": 369, + "1437477123": 364, + "1437477124": 436, + "1437477125": 416, + "1437477126": 457, + "1437477127": 421, + "1437477128": 398, + "1437477129": 399, + "1437477130": 431, + "1437477131": 397, + "1437477132": 367, + "1437477133": 325, + "1437477134": 358, + "1437477135": 380, + "1437477136": 357, + "1437477137": 342, + "1437477138": 346, + "1437477139": 345, + "1437477140": 337, + "1437477141": 343, + "1437477143": 331, + "1437477144": 323, + "1437477145": 343, + "1437477146": 309, + "1437477147": 306, + "1437477148": 327, + "1437477149": 321, + "1437477150": 319, + "1437477151": 328, + "1437477152": 348, + "1437477153": 331, + "1437477154": 293, + "1437477155": 328, + "1437477156": 349, + "1437477157": 318, + "1437477158": 342, + "1437477159": 338, + "1437477160": 346, + "1437477161": 325, + "1437477162": 341, + "1437477163": 334, + "1437477164": 311, + "1437477165": 323, + "1437477166": 325, + "1437477167": 322, + "1437477168": 302, + "1437477169": 307, + "1437477170": 302, + "1437477171": 307, + "1437477172": 325, + "1437477173": 301, + "1437477174": 299, + "1437477175": 291, + "1437477176": 306, + "1437477178": 302, + "1437477179": 302, + "1437477180": 301, + "1437477181": 291, + "1437477182": 282, + "1437477183": 298, + "1437477184": 300, + "1437477185": 288, + "1437477186": 287, + "1437477187": 299, + "1437477188": 294, + "1437477189": 296, + "1437477190": 296, + "1437477191": 315, + "1437477192": 317, + "1437477193": 304, + "1437477194": 312, + "1437477195": 296, + "1437477196": 313, + "1437477197": 300, + "1437477198": 302, + "1437477199": 295, + "1437477200": 302, + "1437477201": 334, + "1437477202": 334, + "1437477203": 298, + "1437477204": 283, + "1437477205": 270, + "1437477206": 295, + "1437477207": 286, + "1437477208": 299, + "1437477209": 278, + "1437477210": 265, + "1437477211": 262, + "1437477212": 301, + "1437477213": 325, + "1437477215": 316, + "1437477216": 294, + "1437477217": 294, + "1437477218": 290, + "1437477219": 274, + "1437477220": 283, + "1437477221": 292, + "1437477222": 292, + "1437477223": 311, + "1437477224": 306, + "1437477225": 306, + "1437477226": 303, + "1437477227": 320, + "1437477228": 315, + "1437477229": 307, + "1437477230": 343, + "1437477231": 344, + "1437477232": 343, + "1437477233": 336, + "1437477234": 322, + "1437477235": 317, + "1437477236": 318, + "1437477237": 327, + "1437477238": 331, + "1437477239": 336, + "1437477240": 342, + "1437477241": 329, + "1437477242": 344, + "1437477243": 336, + "1437477244": 336, + "1437477245": 357, + "1437477247": 349, + "1437477248": 354, + "1437477249": 363, + "1437477250": 356, + "1437477251": 345, + "1437477252": 339, + "1437477253": 351, + "1437477254": 351, + "1437477255": 343, + "1437477256": 343, + "1437477257": 343, + "1437477258": 380, + "1437477259": 348, + "1437477260": 355, + "1437477261": 373, + "1437477262": 373, + "1437477263": 348, + "1437477264": 361, + "1437477265": 365, + "1437477266": 352, + "1437477267": 369, + "1437477268": 363, + "1437477270": 363, + "1437477271": 389, + "1437477272": 378, + "1437477273": 364, + "1437477274": 371, + "1437477275": 379, + "1437477276": 384, + "1437477277": 285, + "1437477278": 353, + "1437477279": 365, + "1437477280": 292, + "1437477281": 310, + "1437477282": 417, + "1437477283": 436, + "1437477284": 409, + "1437477285": 381, + "1437477286": 347, + "1437477287": 278, + "1437477288": 293, + "1437477289": 288, + "1437477290": 274, + "1437477291": 263, + "1437477292": 265, + "1437477294": 260, + "1437477295": 254, + "1437477296": 191, + "1437477297": 210, + "1437477298": 197, + "1437477299": 205, + "1437477300": 221, + "1437477301": 225, + "1437477302": 231, + "1437477303": 226, + "1437477304": 217, + "1437477305": 246, + "1437477306": 234, + "1437477307": 220, + "1437477308": 234, + "1437477309": 245, + "1437477310": 241, + "1437477311": 249, + "1437477312": 223, + "1437477313": 245, + "1437477314": 304, + "1437477315": 293, + "1437477316": 297, + "1437477317": 257, + "1437477318": 249, + "1437477319": 247, + "1437477321": 297, + "1437477322": 287, + "1437477323": 268, + "1437477324": 263, + "1437477325": 297, + "1437477326": 277, + "1437477327": 267, + "1437477328": 278, + "1437477329": 299, + "1437477330": 279, + "1437477331": 268, + "1437477332": 235, + "1437477333": 261, + "1437477334": 278, + "1437477335": 283, + "1437477336": 267, + "1437477337": 247, + "1437477338": 249, + "1437477339": 214, + "1437477340": 214, + "1437477341": 214, + "1437477342": 0, + "1437477343": 0, + "1437477345": 0, + "1437477346": 0, + "1437477347": 0, + "1437477348": 0, + "1437477349": 0, + "1437477350": 0, + "1437477351": 0, + "1437477352": 0, + "1437477353": 0, + "1437477354": 0, + "1437477355": 0, + "1437477356": 0, + "1437477376": 138, + "1437477377": 140, + "1437477378": 125, + "1437477379": 87, + "1437477380": 87, + "1437477381": 87, + "1437477383": 0, + "1437477384": 0, + "1437477385": 0, + "1437477386": 0, + "1437477387": 0, + "1437477388": 0, + "1437477392": 28, + "1437477393": 28, + "1437477394": 28, + "1437477395": 28, + "1437477397": 28, + "1437477398": 28, + "1437477399": 28, + "1437477400": 28, + "1437477401": 23, + "1437477402": 23, + "1437477403": 23, + "1437477404": 0, + "1437477405": 0, + "1437477406": 0, + "1437477407": 0, + "1437477408": 0, + "1437477411": 28, + "1437477412": 28, + "1437477413": 28, + "1437477414": 29, + "1437477415": 29, + "1437477417": 24, + "1437477418": 24, + "1437477419": 19, + "1437477420": 19, + "1437477421": 19, + "1437477422": 0, + "1437477423": 0, + "1437477428": 55, + "1437477429": 55, + "1437477430": 48, + "1437477432": 48, + "1437477433": 30, + "1437477434": 30, + "1437477435": 29, + "1437477436": 29, + "1437477437": 34, + "1437477438": 38, + "1437477439": 38, + "1437477440": 38, + "1437477441": 34, + "1437477442": 31, + "1437477443": 31, + "1437477444": 31, + "1437477445": 32, + "1437477446": 37, + "1437477447": 33, + "1437477448": 33, + "1437477449": 33, + "1437477450": 32, + "1437477451": 38, + "1437477452": 38, + "1437477453": 38, + "1437477454": 35, + "1437477455": 35, + "1437477456": 35, + "1437477457": 0, + "1437477458": 0, + "1437477459": 0, + "1437477461": 0, + "1437477465": 69, + "1437477466": 69, + "1437477467": 69, + "1437477468": 52, + "1437477469": 31, + "1437477470": 31, + "1437477471": 31, + "1437477472": 25, + "1437477473": 25, + "1437477474": 26, + "1437477475": 26, + "1437477476": 28, + "1437477477": 28, + "1437477478": 29, + "1437477479": 29, + "1437477480": 42, + "1437477481": 42, + "1437477482": 36, + "1437477483": 36, + "1437477484": 36, + "1437477485": 36, + "1437477486": 46, + "1437477487": 46, + "1437477488": 33, + "1437477489": 44, + "1437477490": 44, + "1437477491": 49, + "1437477492": 49, + "1437477493": 50, + "1437477494": 50, + "1437477495": 54, + "1437477496": 54, + "1437477497": 40, + "1437477498": 41, + "1437477500": 41, + "1437477501": 49, + "1437477502": 49, + "1437477503": 46, + "1437477504": 39, + "1437477505": 39, + "1437477506": 39, + "1437477507": 23, + "1437477508": 23, + "1437477509": 17, + "1437477510": 17, + "1437477511": 25, + "1437477512": 25, + "1437477513": 28, + "1437477514": 28, + "1437477515": 28, + "1437477516": 28, + "1437477517": 28, + "1437477518": 26, + "1437477519": 26, + "1437477520": 26, + "1437477521": 26, + "1437477522": 29, + "1437477523": 29, + "1437477524": 29, + "1437477525": 29, + "1437477526": 25, + "1437477527": 25, + "1437477528": 25, + "1437477529": 27, + "1437477530": 27, + "1437477532": 33, + "1437477533": 33, + "1437477534": 49, + "1437477535": 49, + "1437477536": 45, + "1437477537": 45, + "1437477538": 45, + "1437477539": 31, + "1437477540": 31, + "1437477541": 33, + "1437477542": 33, + "1437477543": 33, + "1437477544": 33, + "1437477545": 33, + "1437477546": 33, + "1437477547": 32, + "1437477548": 32, + "1437477549": 32, + "1437477550": 35, + "1437477551": 35, + "1437477552": 39, + "1437477553": 39, + "1437477555": 31, + "1437477556": 31, + "1437477557": 31, + "1437477558": 27, + "1437477559": 27, + "1437477560": 28, + "1437477561": 28, + "1437477562": 28, + "1437477563": 28, + "1437477564": 17, + "1437477565": 17, + "1437477566": 17, + "1437477567": 16, + "1437477568": 16, + "1437477569": 27, + "1437477570": 27, + "1437477571": 27, + "1437477572": 27, + "1437477573": 23, + "1437477574": 23, + "1437477575": 23, + "1437477576": 0, + "1437477577": 38, + "1437477578": 38, + "1437477580": 53, + "1437477581": 53, + "1437477582": 58, + "1437477583": 55, + "1437477584": 55, + "1437477585": 63, + "1437477586": 66, + "1437477587": 66, + "1437477588": 63, + "1437477589": 61, + "1437477590": 68, + "1437477591": 68, + "1437477592": 71, + "1437477593": 61, + "1437477594": 59, + "1437477595": 59, + "1437477596": 46, + "1437477597": 17, + "1437477598": 17, + "1437477599": 5, + "1437477600": 5, + "1437477601": 4, + "1437477604": 54, + "1437477605": 54, + "1437477607": 135, + "1437477608": 74, + "1437477609": 82, + "1437477610": 94, + "1437477611": 92, + "1437477612": 89, + "1437477613": 89, + "1437477614": 94, + "1437477615": 102, + "1437477616": 90, + "1437477617": 86, + "1437477618": 73, + "1437477619": 75, + "1437477620": 75, + "1437477621": 89, + "1437477622": 96, + "1437477623": 115, + "1437477624": 123, + "1437477625": 154, + "1437477626": 143, + "1437477627": 143, + "1437477628": 124, + "1437477629": 123, + "1437477630": 160, + "1437477631": 157, + "1437477632": 101, + "1437477633": 123, + "1437477634": 138, + "1437477635": 140, + "1437477636": 98, + "1437477638": 99, + "1437477639": 99, + "1437477640": 93, + "1437477641": 93, + "1437477642": 40, + "1437477643": 31, + "1437477644": 31, + "1437477645": 76, + "1437477646": 107, + "1437477647": 88, + "1437477648": 148, + "1437477649": 148, + "1437477650": 80, + "1437477651": 78, + "1437477652": 78, + "1437477653": 78, + "1437477654": 0, + "1437477655": 0, + "1437477656": 0, + "1437477657": 0, + "1437477658": 0, + "1437477659": 0, + "1437477660": 0, + "1437477661": 0, + "1437477662": 0, + "1437477663": 0, + "1437477664": 0, + "1437477665": 91, + "1437477666": 91, + "1437477667": 54, + "1437477668": 54, + "1437477669": 19, + "1437477671": 19, + "1437477672": 15, + "1437477673": 15, + "1437477674": 15, + "1437477676": 39, + "1437477677": 39, + "1437477678": 51, + "1437477679": 51, + "1437477680": 51, + "1437477681": 0, + "1437477682": 0, + "1437477683": 0, + "1437477684": 0, + "1437477685": 0, + "1437477688": 56, + "1437477689": 56, + "1437477690": 73, + "1437477691": 32, + "1437477692": 32, + "1437477693": 34, + "1437477695": 34, + "1437477696": 43, + "1437477697": 43, + "1437477698": 38, + "1437477699": 53, + "1437477700": 53, + "1437477701": 53, + "1437477702": 0, + "1437477703": 0, + "1437477704": 0, + "1437477705": 0, + "1437477706": 0 + }, + "temperatures": null +} \ No newline at end of file diff --git a/Sources/src/data/model/manager/ActivityManager.php b/Sources/src/data/model/manager/ActivityManager.php new file mode 100644 index 00000000..5ff1cbc1 --- /dev/null +++ b/Sources/src/data/model/manager/ActivityManager.php @@ -0,0 +1,161 @@ +authService = $authService; + } + + /** + * Enregistre les données d'un fichier FIT au format JSON. + * + * @param object $monFichierFit L'objet FIT File à partir duquel extraire les données. + * @return bool Retourne true en cas de succès, sinon false. + * @throws Exception En cas d'erreur lors de l'ouverture ou de l'enregistrement du fichier FIT. + */ + public function saveFitFileToJSON($monFichierFit): bool + { + try { + // Extraction des données du fichier FIT + $fitData = [ + 'timestamps' => $monFichierFit->data_mesgs['record']['timestamp'], + 'latitudes' => $monFichierFit->data_mesgs['record']['position_lat'], + 'longitudes' => $monFichierFit->data_mesgs['record']['position_long'], + 'altitudes' => $monFichierFit->data_mesgs['record']['altitude'], + 'heartRates' => $monFichierFit->data_mesgs['record']['heart_rate'], + 'cadences' => $monFichierFit->data_mesgs['record']['cadence'], + 'distances' => $monFichierFit->data_mesgs['record']['distance'], + 'speeds' => $monFichierFit->data_mesgs['record']['speed'], + 'powers' => $monFichierFit->data_mesgs['record']['power'], + 'temperatures' => $monFichierFit->data_mesgs['record']['temperature'], + ]; + + // Conversion des données en format JSON + $jsonFitData = json_encode($fitData, JSON_PRETTY_PRINT); + + // Enregistrement du fichier JSON + file_put_contents('/Users/Perederii/SAE/git/Web/Sources/src/data/model/fitFileSaver/jsonFiles/ActivitySave.json', $jsonFitData); + + return true; + } catch (\Exception $e) { + echo $e; + } + + return false; + } + + /** + * Télécharge un fichier FIT, extrait les données pertinentes et crée une nouvelle activité associée. + * + * @param string $type Le type d'activité. + * @param int $effortRessenti L'effort ressenti pour l'activité. + * @param string|resource $file_path_or_data Le chemin du fichier FIT ou les données brutes du fichier FIT. + * @param array|null $options Les options de téléchargement du fichier FIT (facultatif). + * @return bool Retourne true en cas de succès, sinon false. + * @throws Exception En cas d'erreur lors du téléchargement, du traitement ou de l'enregistrement des données. + */ + public function uploadFile($type, $effortRessenti, $file_path_or_data, ?array $options = null): bool + { + try { + // Vérification des options par défaut + if (empty($options)) { + $options = [ + 'fix_data' => ['all'], + 'data_every_second' => false, + 'units' => 'metric', + 'pace' => true, + 'garmin_timestamps' => false, + 'overwrite_with_dev_data' => false + ]; + } + + // Ouverture du fichier FIT + if (!($monFichierFit = new phpFITFileAnalysis($file_path_or_data, $options))) { + throw new Exception("Problème lors de l'ouverture du fichier FIT"); + } + + // Extraction du premier et du dernier timestamp + $firstTimestamp = $monFichierFit->data_mesgs['record']['timestamp'][0]; + $lastTimestamp = end($monFichierFit->data_mesgs['record']['timestamp']); + + // Conversion des timestamps en objets DateTime + $startDate = \DateTime::createFromFormat('Y-m-d', date('Y-m-d', $firstTimestamp)); + $startTime = \DateTime::createFromFormat('H:i:s', date('H:i:s', $firstTimestamp)); + $endTime = ($lastTimestamp) ? \DateTime::createFromFormat('H:i:s', date('H:i:s', $lastTimestamp)) : null; + + // Vérification des conversions en DateTime + if (!$startDate || !$startTime || ($lastTimestamp && !$endTime)) { + throw new \Exception("La conversion en DateTime a échoué."); + } + + // Extraction des autres données nécessaires + $heartRateList = $monFichierFit->data_mesgs['record']['heart_rate']; + $variability = max($heartRateList) - min($heartRateList); + $average = number_format(array_sum($heartRateList) / count($heartRateList), 2); + $varianceV = array_sum(array_map(fn($x) => pow($x - $average, 2), $heartRateList)) / count($heartRateList); + $variance = number_format($varianceV, 2); + $standardDeviation = number_format(sqrt($variance), 2); + $maximum = max($heartRateList); + $minimum = min($heartRateList); + + $temperatureList = $monFichierFit->data_mesgs['record']['temperature']; + $averageTemperature = (!empty($temperatureList)) ? number_format(array_sum($temperatureList) / count($temperatureList), 1) : -200; + + $isPaused = count($monFichierFit->isPaused()) > 0; + + // Création de l'objet Activity + $newActivity = new Activity( + $type, + $startDate, + $startTime, + $endTime, + $effortRessenti, + $variability, + $variance, + $standardDeviation, + $average, + $maximum, + $minimum, + $averageTemperature, + $isPaused + ); + + // Ajout de l'activité et enregistrement du fichier FIT en JSON + if ($this->authService->currentUser->getRole()->addActivity($newActivity) && $this->saveFitFileToJSON($monFichierFit)) { + return true; + } + } catch (\Exception $e) { + echo $e; + } + + return false; + } +} +?> \ No newline at end of file diff --git a/Sources/src/data/model/manager/AthleteManager.php b/Sources/src/data/model/manager/AthleteManager.php index 1f5fdea7..69487c78 100644 --- a/Sources/src/data/model/manager/AthleteManager.php +++ b/Sources/src/data/model/manager/AthleteManager.php @@ -1,109 +1,44 @@ authService = $authService; } - public function getCoachByName(String $coachUsername): ?User { - if(($coach = $this->authService->getUserRepository()->getItemByName($coachUsername, 0, 1)) instanceof CoachAthlete) { - return $coach; - } - return null; - } - public function getAthleteByName(String $athleteUsername): ?User { - if(($athlete =$this->authService->getUserRepository()->getItemByName($athleteUsername, 0, 1)) instanceof Athlete) { - return $athlete; - } - return null; - } - public function getUsersList(): ?array - { - if ($this->authService->currentUser && $this->authService->currentUser->getRole()->getUsersList()) { - return $this->authService->currentUser->getRole()->getUsersList(); - } - return null; - } - public function getTrainingsList(): ?array { - foreach ($this->authService->getUserRepository()->getItemByRole() as $coach) { - foreach ($coach->getUsersList()->getUsername() as $username) { - if($this->authService->currentUser->getUsername() == $username) { - $this->authService->currentUser->getRole()->setTrainingsList($coach->getTrainingsList()); - } - } - } - if ($this->authService->currentUser && $this->authService->currentUser->getRole()->getTrainingsList()) { - return $this->authService->currentUser->getRole()->getTrainingsList(); + + /** + * Récupère les activités de l'athlète actuel. + * + * @return array|null Retourne un tableau d'objets Activity en cas de succès, sinon null. + */ + public function getActivities(): ?array { + if ($this->authService->currentUser && $this->authService->currentUser->getRole()->getActivities()) { + return $this->authService->currentUser->getRole()->getActivities(); } return null; } - public function addUser(String $username): bool - { - if ($this->authService->currentUser && $this->authService->currentUser->getRole()) { - if(($user = $this->authService->getUserRepository()->GetItemByName($username,0,1))) { // count 1 seul et debuis 0 (debut) - if ($this->authService->currentUser->getRole()->addUser($user)) { - return true; - } - } - } - return false; - } - public function removeUser(String $username): bool - { - if ($this->authService->currentUser && $this->authService->currentUser->getRole()) { - if(($user = $this->authService->getUserRepository()->GetItemByName($username,0,1))) { // count 1 seul et debuis 0 (debut) - if ($this->authService->currentUser->getRole()->removeUser($user)) { - return true; - } - } - } - return false; - } - public function addTraining(Training $training): bool - { - if ($this->authService->currentUser && $this->authService->currentUser->getRole()) { - if ($this->authService->currentUser->getRole()->addTraining($training)) { - return true; - } - } - return false; - } - public function removeTraining(String $trainingId): bool - { - if ($this->authService->currentUser && $this->authService->currentUser->getRole()) { - if(($training = $this->authService->currentUser->getRole()->getTraining()->getItemById($trainingId))) { // count 1 seul et debuis 0 (debut) - if ($this->authService->currentUser->getRole()->removeTraining($training)) { - return true; - } - } - } - return false; - } - -// public function getStatistics(User $user) : ?Statistic { -// if ($this->authService->currentUser && $this->authService->currentUser->getRole()) { -// if (($arrayStat = $this->authService->currentUser->getRole()->getUserList($user)->getStatistic())) { -// return $arrayStat; -// } -// } -// return null; -// } -// -// public function getAnalyse(User $user): bool { -// return false; -// } - } - -?> \ No newline at end of file +?> diff --git a/Sources/src/data/model/manager/CoachManager.php b/Sources/src/data/model/manager/CoachManager.php deleted file mode 100644 index 61513e81..00000000 --- a/Sources/src/data/model/manager/CoachManager.php +++ /dev/null @@ -1,95 +0,0 @@ -authService = $authService; - } - public function getUsersList(): ?array - { - if ($this->authService->currentUser && $this->authService->currentUser->getRole()->getUsersList()) { - return $this->authService->currentUser->getRole()->getUsersList(); - } - return null; - } - public function getTrainingsList(): ?array { - if ($this->authService->currentUser && $this->authService->currentUser->getRole()->getTrainingsList()) { - return $this->authService->currentUser->getRole()->getTrainingsList(); - } - return null; - } - public function addUser(String $username): bool - { - if ($this->authService->currentUser && $this->authService->currentUser->getRole()) { - if(($user = $this->authService->getUserRepository()->GetItemByName($username,0,1))) { // count 1 seul et debuis 0 (debut) - if ($this->authService->currentUser->getRole()->addUser($user)) { - return true; - } - } - } - return false; - } - public function removeUser(String $username): bool - { - if ($this->authService->currentUser && $this->authService->currentUser->getRole()) { - if(($user = $this->authService->getUserRepository()->GetItemByName($username,0,1))) { // count 1 seul et debuis 0 (debut) - if ($this->authService->currentUser->getRole()->removeUser($user)) { - return true; - } - } - } - return false; - } - public function addTraining(Training $training): bool - { - if ($this->authService->currentUser && $this->authService->currentUser->getRole()) { - if ($this->authService->currentUser->getRole()->addTraining($training)) { - return true; - } - } - return false; - } - public function removeTraining(String $trainingId): bool - { - if ($this->authService->currentUser && $this->authService->currentUser->getRole()) { - if(($training = $this->authService->currentUser->getRole()->getTraining()->getItemById($trainingId))) { // count 1 seul et debuis 0 (debut) - if ($this->authService->currentUser->getRole()->removeTraining($training)) { - return true; - } - } - } - return false; - } - -// public function getStatistics(User $user) : ?Statistic { -// if ($this->authService->currentUser && $this->authService->currentUser->getRole()) { -// if (($arrayStat = $this->authService->currentUser->getRole()->getUserList($user)->getStatistic())) { -// return $arrayStat; -// } -// } -// return null; -// } -// -// public function getAnalyse(User $user): bool { -// return false; -// } - -} - -?> \ No newline at end of file diff --git a/Sources/src/data/model/manager/DataManager.php b/Sources/src/data/model/manager/DataManager.php index 78020537..67184960 100644 --- a/Sources/src/data/model/manager/DataManager.php +++ b/Sources/src/data/model/manager/DataManager.php @@ -3,7 +3,7 @@ namespace Manager; abstract class DataManager { public $userMgr; - public $coachMgr; + public $activityMgr; public $athleteMgr; } diff --git a/Sources/src/data/model/manager/UserManager.php b/Sources/src/data/model/manager/UserManager.php index 53ba97ca..51fe5b36 100644 --- a/Sources/src/data/model/manager/UserManager.php +++ b/Sources/src/data/model/manager/UserManager.php @@ -1,28 +1,51 @@ authService = $authService; } + /** + * Connecte un utilisateur avec les identifiants fournis. + * + * @param string $loginUser Le nom d'utilisateur. + * @param string $passwordUser Le mot de passe de l'utilisateur. + * @return bool Retourne true en cas de connexion réussie, sinon false. + * @throws \Exception En cas d'erreur dans les informations d'identification. + */ public function login($loginUser, $passwordUser): bool { if (!Validation::val_string($passwordUser) || !Validation::val_string($loginUser)) - throw new \Exception(" some wrong with cred !!!!!"); + throw new \Exception("Erreur dans les informations d'identification."); if ($this->authService->login($loginUser, $passwordUser)) { $this->currentUser = $this->authService->currentUser; @@ -31,15 +54,18 @@ class UserManager return false; } - public function register($loginUser, $passwordUser,$data): bool + /** + * Enregistre un nouvel utilisateur avec les informations fournies. + * + * @param string $loginUser Le nom d'utilisateur. + * @param string $passwordUser Le mot de passe de l'utilisateur. + * @param array $data Les données supplémentaires pour l'enregistrement. + * @return bool Retourne true en cas d'enregistrement réussi, sinon false. + * @throws \Exception En cas d'erreur lors de la validation des données ou de l'enregistrement. + */ + public function register($loginUser, $passwordUser, $data): bool { - // foreach ($data as $entry) { - // $isValid = Validation::val_string($entry); - // if (!$isValid) { - // throw new \Exception( "Entry '$entry' is not a valid string."); - // } - // } - + // Validation des champs $fieldsToValidate = [ 'nom' => 'Nom non valide', 'prenom' => 'Prénom non valide', @@ -47,37 +73,41 @@ class UserManager 'poids' => 'Poids non valide', ]; - foreach ($fieldsToValidate as $fieldName => $errorMessage) { if (!Validation::val_string($data[$fieldName])) { throw new \Exception($errorMessage); } } - + // Validation du rôle $roleName = $data['roleName']; if ($roleName !== "Athlete" && $roleName !== "Coach") { throw new \Exception("Rôle non valide"); } - + + // Validation du sexe if ($data['sexe'] !== "M" && $data['sexe'] !== "H") { throw new \Exception("Sexe non valide"); } - + + // Enregistrement de l'utilisateur if ($this->authService->register($loginUser, $passwordUser, $data)) { return true; } return false; } + /** + * Déconnecte l'utilisateur actuel. + * + * @return bool Retourne true en cas de déconnexion réussie, sinon false. + */ public function deconnecter(): bool { - if($this->authService->logoutUser()){ + if ($this->authService->logoutUser()) { return true; } return false; } } - - -?> \ No newline at end of file +?> diff --git a/Sources/src/data/stub/StubData.php b/Sources/src/data/stub/StubData.php index b62c821d..fff95900 100644 --- a/Sources/src/data/stub/StubData.php +++ b/Sources/src/data/stub/StubData.php @@ -1,23 +1,58 @@ userMgr = new UserManager($authService); - $this->coachMgr = new CoachManager($authService); + // Initialisation du gestionnaire d'athlètes $this->athleteMgr = new AthleteManager($authService); + + // Initialisation du gestionnaire d'activités + $this->activityMgr = new ActivityManager($authService); } } - -?> \ No newline at end of file +?> diff --git a/Sources/src/data/stub/repository/TrainingRepository.php b/Sources/src/data/stub/repository/TrainingRepository.php deleted file mode 100644 index 220198aa..00000000 --- a/Sources/src/data/stub/repository/TrainingRepository.php +++ /dev/null @@ -1,86 +0,0 @@ -trainingsList[] = new Training(1, new \DateTime("1985-05-10"), 48.5, 55.8, "john.doe@example.com", "hello"); - $this->trainingsList[] = new Training(2, new \DateTime("1986-06-12"), 48.5, 55.8, "john.doe@exavdffgmple.com", "hedfdffllo"); - $this->trainingsList[] = new Training(3, new \DateTime("1989-07-14"), 48.5, 55.8, "john.doe@exdfdfample.com", "hedfdfllo"); - $this->trainingsList[] = new Training(4, new \DateTime("1990-08-16"), 48.5, 55.8, "john.doe@exdfdfample.com", "hedffhdllo"); - $this->trainingsList[] = new Training(5, new \DateTime("2000-09-18"), 48.5, 55.8, "john.doe@exdffdample.com", "hedfdfgllo"); - } - - /** - * @return array - */ - public function &getTrainingsList(): array { - return $this->trainingsList; - } - - public function setTrainingsList(array $trainingsList): void { - $this->trainingsList = $trainingsList; - } - - public function getItemById(int $id): ?Training { - foreach ($this->trainingsList as $training) { - if ($training->getId() === $id) { - return $training; - } - } - return null; - } - - public function GetNbItems(): int { - return count($this->trainingsList); - } - - public function GetItems(int $index, int $count, ?string $orderingPropertyName = null, bool $descending = false): array { - // Cette méthode est un exemple simple, on ne gère pas l'ordonnancement ici - return array_slice($this->trainingsList, $index, $count); - } - - - // should have type here - public function UpdateItem($oldTraining, $newTraining): void { - $index = array_search($oldTraining, $this->trainingsList); - if ($index !== false) { - $this->trainingsList[$index] = $newTraining; - } - } - - // should have type here - public function AddItem($training): void { - $this->trainingsList[] = $training; - } - - // should have type here - public function DeleteItem($training): bool { - $index = array_search($training, $this->trainingsList); - if ($index !== false) { - unset($this->trainingsList[$index]); - return true; - } - return false; - } - - public function GetItemsByName(string $substring, int $index, int $count, ?string $orderingPropertyName = null, bool $descending = false): ?array - { - return null; - // TODO: Implement GetItemsByName() method. - } - - public function GetItemByName(string $substring, int $index, int $count, ?string $orderingPropertyName = null, bool $descending = false) - { - return null; - // TODO: Implement GetItemByName() method. - } -} \ No newline at end of file diff --git a/Sources/src/data/stub/repository/UserRepository.php b/Sources/src/data/stub/repository/UserRepository.php index 7659f4ea..f480c1dd 100644 --- a/Sources/src/data/stub/repository/UserRepository.php +++ b/Sources/src/data/stub/repository/UserRepository.php @@ -1,27 +1,47 @@ users[] = new User(1, "Doe", "Doe", "John", "john.doe@example.com", "password123", 'M', 1.80, 75, new \DateTime("1985-05-15"), new CoachAthlete($training)); + // Initialisation de quelques utilisateurs pour des besoins de démonstration. +// $this->users[] = new User(1, "Doe", "Doe", "John", "john.doe@example.com", "password123", 'M', 1.80, 75, new \DateTime("1985-05-15"), new CoachAthlete($training)); $this->users[] = new User(2, "Smith", "Smith", "Jane", "jane.smith@example.com", "secure456", 'F', 1.65, 60, new \DateTime("1990-03-10"), new Athlete(null)); - $this->users[] = new User(3, "Martin", "Martin", "Paul", "paul.martin@example.com", "super789", 'M', 1.75, 68, new \DateTime("1988-08-20"), new CoachAthlete($training)); +// $this->users[] = new User(3, "Martin", "Martin", "Paul", "paul.martin@example.com", "super789", 'M', 1.75, 68, new \DateTime("1988-08-20"), new CoachAthlete($training)); $this->users[] = new User(4, "Brown", "Brown", "Anna", "anna.brown@example.com", "test000", 'F', 1.70, 58, new \DateTime("1992-11-25"), new Athlete(null)); $this->users[] = new User(5, "Lee", "Lee", "Bruce", "bruce.lee@example.com", "hello321", 'M', 1.72, 70, new \DateTime("1970-02-05"), new Athlete(null)); - $this->users[] = new User(6, "c", "c", "c", "coach@example.com", "c1", 'M', 1.80, 75, new \DateTime("1985-05-15"), new CoachAthlete($training)); +// $this->users[] = new User(6, "c", "c", "c", "coach@example.com", "c1", 'M', 1.80, 75, new \DateTime("1985-05-15"), new CoachAthlete($training)); $this->users[] = new User(7, "athlete", "athlete", "a", "athlete@example.com", "hello321", 'F', 1.55, 67, new \DateTime("1999-09-30"), new Athlete(null)); } + /** + * Obtient un utilisateur par son identifiant. + * + * @param int $id L'identifiant de l'utilisateur. + * @return User|null L'utilisateur correspondant à l'identifiant donné, ou null s'il n'existe pas. + */ public function getItemById(int $id): ?User { foreach ($this->users as $user) { if ($user->getId() === $id) { @@ -31,7 +51,12 @@ class UserRepository implements IUserRepository { return null; } - public function getItemByRole():?User{ + /** + * Obtient un utilisateur par son rôle. + * + * @return User|null L'utilisateur ayant le rôle spécifié, ou null s'il n'y en a pas. + */ + public function getItemByRole(): ?User { foreach ($this->users as $user) { if ($user->getRole() instanceof \Model\Coach) { return $user; @@ -40,6 +65,12 @@ class UserRepository implements IUserRepository { return null; } + /** + * Obtient un utilisateur par son adresse e-mail. + * + * @param string $email L'adresse e-mail de l'utilisateur. + * @return User|null L'utilisateur correspondant à l'adresse e-mail donnée, ou null s'il n'existe pas. + */ public function getItemByEmail(string $email): ?User { foreach ($this->users as $user) { if ($user->getEmail() === $email) { @@ -49,42 +80,94 @@ class UserRepository implements IUserRepository { return null; } + // ... (Les autres méthodes) + + /** + * Obtient le nombre total d'utilisateurs dans le dépôt. + * + * @return int Le nombre total d'utilisateurs. + */ public function GetNbItems(): int { return count($this->users); } + /** + * Obtient un tableau d'utilisateurs en fonction des paramètres spécifiés. + * + * @param int $index L'indice de départ dans le tableau. + * @param int $count Le nombre d'utilisateurs à récupérer. + * @param string|null $orderingPropertyName Le nom de la propriété pour l'ordonnancement (facultatif). + * @param bool $descending Indique si l'ordonnancement doit être effectué en ordre descendant (facultatif, par défaut false). + * @return array Le tableau d'utilisateurs. + */ public function GetItems(int $index, int $count, ?string $orderingPropertyName = null, bool $descending = false): array { // Cette méthode est un exemple simple, on ne gère pas l'ordonnancement ici return array_slice($this->users, $index, $count); } + /** + * Obtient un tableau d'utilisateurs dont le nom ou le prénom contient la sous-chaîne spécifiée. + * + * @param string $substring La sous-chaîne pour la recherche. + * @param int $index L'indice de départ dans le tableau. + * @param int $count Le nombre d'utilisateurs à récupérer. + * @param string|null $orderingPropertyName Le nom de la propriété pour l'ordonnancement (facultatif). + * @param bool $descending Indique si l'ordonnancement doit être effectué en ordre descendant (facultatif, par défaut false). + * @return array|null Le tableau d'utilisateurs filtré, ou null s'il n'y a aucun utilisateur correspondant. + */ public function GetItemsByName(string $substring, int $index, int $count, ?string $orderingPropertyName = null, bool $descending = false): ?array { $filteredUsers = array_filter($this->users, function ($user) use ($substring) { return strpos(strtolower($user->getNom()), strtolower($substring)) !== false || strpos(strtolower($user->getPrenom()), strtolower($substring)) !== false; }); return array_slice($filteredUsers, $index, $count); } + + /** + * Obtient un utilisateur dont le nom ou le prénom contient la sous-chaîne spécifiée. + * + * @param string $substring La sous-chaîne pour la recherche. + * @param int $index L'indice de départ dans le tableau. + * @param int $count Le nombre d'utilisateurs à récupérer. + * @param string|null $orderingPropertyName Le nom de la propriété pour l'ordonnancement (facultatif). + * @param bool $descending Indique si l'ordonnancement doit être effectué en ordre descendant (facultatif, par défaut false). + * @return User|null L'utilisateur filtré, ou null s'il n'y a aucun utilisateur correspondant. + */ public function GetItemByName(string $substring, int $index, int $count, ?string $orderingPropertyName = null, bool $descending = false): ?User { $filteredUsers = $this->GetItemsByName($substring, $index, $count, $orderingPropertyName, $descending); return isset($filteredUsers[0]) ? $filteredUsers[0] : null; } - - // should have type here - public function UpdateItem($oldUser, $newUser): void { - $index = array_search($oldUser, $this->users); + /** + * Met à jour un utilisateur existant dans le dépôt. + * + * @param User $oldItem L'ancienne instance de l'utilisateur. + * @param User $newItem La nouvelle instance de l'utilisateur. + * @return void + */ + public function UpdateItem($oldItem, $newItem): void { + $index = array_search($oldItem, $this->users); if ($index !== false) { - $this->users[$index] = $newUser; + $this->users[$index] = $newItem; } } - // should have type here - public function AddItem($user): void { - $this->users[] = $user; + /** + * Ajoute un nouvel utilisateur au dépôt. + * + * @param User $user L'instance de l'utilisateur à ajouter. + * @return void + */ + public function AddItem($item): void { + $this->users[] = $item; } - // should have type here - public function DeleteItem($user): bool { - $index = array_search($user, $this->users); + /** + * Supprime un utilisateur du dépôt. + * + * @param User $user L'instance de l'utilisateur à supprimer. + * @return bool Retourne true si la suppression a réussi, sinon false. + */ + public function DeleteItem($item): bool { + $index = array_search($item, $this->users); if ($index !== false) { unset($this->users[$index]); return true; @@ -92,5 +175,4 @@ class UserRepository implements IUserRepository { return false; } } - -?> \ No newline at end of file +?> diff --git a/Sources/vendor/composer/autoload_classmap.php b/Sources/vendor/composer/autoload_classmap.php index 58f2289c..d8b2ad20 100755 --- a/Sources/vendor/composer/autoload_classmap.php +++ b/Sources/vendor/composer/autoload_classmap.php @@ -6,6 +6,7 @@ $vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( + 'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php', 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', 'PHPUnit\\Event\\Application\\Finished' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Application/Finished.php', 'PHPUnit\\Event\\Application\\FinishedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Application/FinishedSubscriber.php', @@ -953,6 +954,7 @@ return array( 'PharIo\\Version\\VersionConstraintParser' => $vendorDir . '/phar-io/version/src/VersionConstraintParser.php', 'PharIo\\Version\\VersionConstraintValue' => $vendorDir . '/phar-io/version/src/VersionConstraintValue.php', 'PharIo\\Version\\VersionNumber' => $vendorDir . '/phar-io/version/src/VersionNumber.php', + 'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php', 'SebastianBergmann\\CliParser\\AmbiguousOptionException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/AmbiguousOptionException.php', 'SebastianBergmann\\CliParser\\Exception' => $vendorDir . '/sebastian/cli-parser/src/exceptions/Exception.php', 'SebastianBergmann\\CliParser\\OptionDoesNotAllowArgumentException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/OptionDoesNotAllowArgumentException.php', @@ -1156,6 +1158,7 @@ return array( 'SebastianBergmann\\Type\\UnknownType' => $vendorDir . '/sebastian/type/src/type/UnknownType.php', 'SebastianBergmann\\Type\\VoidType' => $vendorDir . '/sebastian/type/src/type/VoidType.php', 'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php', + 'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php', 'TheSeer\\Tokenizer\\Exception' => $vendorDir . '/theseer/tokenizer/src/Exception.php', 'TheSeer\\Tokenizer\\NamespaceUri' => $vendorDir . '/theseer/tokenizer/src/NamespaceUri.php', 'TheSeer\\Tokenizer\\NamespaceUriException' => $vendorDir . '/theseer/tokenizer/src/NamespaceUriException.php', @@ -1164,4 +1167,6 @@ return array( 'TheSeer\\Tokenizer\\TokenCollectionException' => $vendorDir . '/theseer/tokenizer/src/TokenCollectionException.php', 'TheSeer\\Tokenizer\\Tokenizer' => $vendorDir . '/theseer/tokenizer/src/Tokenizer.php', 'TheSeer\\Tokenizer\\XMLSerializer' => $vendorDir . '/theseer/tokenizer/src/XMLSerializer.php', + 'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php', + 'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php', ); diff --git a/Sources/vendor/composer/autoload_files.php b/Sources/vendor/composer/autoload_files.php index 2530eb44..25b2d88c 100755 --- a/Sources/vendor/composer/autoload_files.php +++ b/Sources/vendor/composer/autoload_files.php @@ -6,6 +6,9 @@ $vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( + '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', + 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php', '6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', 'ec07570ca5a812141189b1fa81503674' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert/Functions.php', ); diff --git a/Sources/vendor/composer/autoload_psr4.php b/Sources/vendor/composer/autoload_psr4.php index 11b2b49e..7744b0ac 100755 --- a/Sources/vendor/composer/autoload_psr4.php +++ b/Sources/vendor/composer/autoload_psr4.php @@ -7,15 +7,22 @@ $baseDir = dirname($vendorDir); return array( 'adriangibbons\\' => array($vendorDir . '/adriangibbons/php-fit-file-analysis/src'), + 'Twig\\' => array($vendorDir . '/twig/twig/src'), + 'Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'), + 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'), + 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'), 'Stub\\' => array($baseDir . '/src/data/stub', $baseDir . '/src/data/stub/service', $baseDir . '/src/data/stub/repository'), 'Shared\\Exception\\' => array($baseDir . '/src/shared/exception'), 'Shared\\' => array($baseDir . '/src/shared'), 'Repository\\' => array($baseDir . '/src/data/model/repository'), 'PhpParser\\' => array($vendorDir . '/nikic/php-parser/lib/PhpParser'), + 'PhpOption\\' => array($vendorDir . '/phpoption/phpoption/src/PhpOption'), 'Network\\' => array($baseDir . '/src/data/core/network'), 'Model\\' => array($baseDir . '/src/data/model'), 'Manager\\' => array($baseDir . '/src/data/model/manager'), 'Hearttrack\\' => array($baseDir . '/src'), + 'GrahamCampbell\\ResultType\\' => array($vendorDir . '/graham-campbell/result-type/src'), + 'Dotenv\\' => array($vendorDir . '/vlucas/phpdotenv/src'), 'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'), 'Data\\' => array($baseDir . '/src/data'), 'Console\\' => array($baseDir . '/src/console'), diff --git a/Sources/vendor/composer/autoload_real.php b/Sources/vendor/composer/autoload_real.php index 3d3157be..9d7669a3 100755 --- a/Sources/vendor/composer/autoload_real.php +++ b/Sources/vendor/composer/autoload_real.php @@ -22,6 +22,8 @@ class ComposerAutoloaderInitb084bad56d99d613841073027e5f5e7e return self::$loader; } + require __DIR__ . '/platform_check.php'; + spl_autoload_register(array('ComposerAutoloaderInitb084bad56d99d613841073027e5f5e7e', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); spl_autoload_unregister(array('ComposerAutoloaderInitb084bad56d99d613841073027e5f5e7e', 'loadClassLoader')); diff --git a/Sources/vendor/composer/autoload_static.php b/Sources/vendor/composer/autoload_static.php index e58f9cfa..7730cf43 100755 --- a/Sources/vendor/composer/autoload_static.php +++ b/Sources/vendor/composer/autoload_static.php @@ -7,6 +7,9 @@ namespace Composer\Autoload; class ComposerStaticInitb084bad56d99d613841073027e5f5e7e { public static $files = array ( + '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', + 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', '6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', 'ec07570ca5a812141189b1fa81503674' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Assert/Functions.php', ); @@ -16,8 +19,15 @@ class ComposerStaticInitb084bad56d99d613841073027e5f5e7e array ( 'adriangibbons\\' => 14, ), + 'T' => + array ( + 'Twig\\' => 5, + ), 'S' => array ( + 'Symfony\\Polyfill\\Php80\\' => 23, + 'Symfony\\Polyfill\\Mbstring\\' => 26, + 'Symfony\\Polyfill\\Ctype\\' => 23, 'Stub\\' => 5, 'Shared\\Exception\\' => 17, 'Shared\\' => 7, @@ -29,6 +39,7 @@ class ComposerStaticInitb084bad56d99d613841073027e5f5e7e 'P' => array ( 'PhpParser\\' => 10, + 'PhpOption\\' => 10, ), 'N' => array ( @@ -43,8 +54,13 @@ class ComposerStaticInitb084bad56d99d613841073027e5f5e7e array ( 'Hearttrack\\' => 11, ), + 'G' => + array ( + 'GrahamCampbell\\ResultType\\' => 26, + ), 'D' => array ( + 'Dotenv\\' => 7, 'DeepCopy\\' => 9, 'Data\\' => 5, ), @@ -63,6 +79,22 @@ class ComposerStaticInitb084bad56d99d613841073027e5f5e7e array ( 0 => __DIR__ . '/..' . '/adriangibbons/php-fit-file-analysis/src', ), + 'Twig\\' => + array ( + 0 => __DIR__ . '/..' . '/twig/twig/src', + ), + 'Symfony\\Polyfill\\Php80\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/polyfill-php80', + ), + 'Symfony\\Polyfill\\Mbstring\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring', + ), + 'Symfony\\Polyfill\\Ctype\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype', + ), 'Stub\\' => array ( 0 => __DIR__ . '/../..' . '/src/data/stub', @@ -85,6 +117,10 @@ class ComposerStaticInitb084bad56d99d613841073027e5f5e7e array ( 0 => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser', ), + 'PhpOption\\' => + array ( + 0 => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption', + ), 'Network\\' => array ( 0 => __DIR__ . '/../..' . '/src/data/core/network', @@ -101,6 +137,14 @@ class ComposerStaticInitb084bad56d99d613841073027e5f5e7e array ( 0 => __DIR__ . '/../..' . '/src', ), + 'GrahamCampbell\\ResultType\\' => + array ( + 0 => __DIR__ . '/..' . '/graham-campbell/result-type/src', + ), + 'Dotenv\\' => + array ( + 0 => __DIR__ . '/..' . '/vlucas/phpdotenv/src', + ), 'DeepCopy\\' => array ( 0 => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy', @@ -120,6 +164,7 @@ class ComposerStaticInitb084bad56d99d613841073027e5f5e7e ); public static $classMap = array ( + 'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php', 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', 'PHPUnit\\Event\\Application\\Finished' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Application/Finished.php', 'PHPUnit\\Event\\Application\\FinishedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Application/FinishedSubscriber.php', @@ -1067,6 +1112,7 @@ class ComposerStaticInitb084bad56d99d613841073027e5f5e7e 'PharIo\\Version\\VersionConstraintParser' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintParser.php', 'PharIo\\Version\\VersionConstraintValue' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintValue.php', 'PharIo\\Version\\VersionNumber' => __DIR__ . '/..' . '/phar-io/version/src/VersionNumber.php', + 'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php', 'SebastianBergmann\\CliParser\\AmbiguousOptionException' => __DIR__ . '/..' . '/sebastian/cli-parser/src/exceptions/AmbiguousOptionException.php', 'SebastianBergmann\\CliParser\\Exception' => __DIR__ . '/..' . '/sebastian/cli-parser/src/exceptions/Exception.php', 'SebastianBergmann\\CliParser\\OptionDoesNotAllowArgumentException' => __DIR__ . '/..' . '/sebastian/cli-parser/src/exceptions/OptionDoesNotAllowArgumentException.php', @@ -1270,6 +1316,7 @@ class ComposerStaticInitb084bad56d99d613841073027e5f5e7e 'SebastianBergmann\\Type\\UnknownType' => __DIR__ . '/..' . '/sebastian/type/src/type/UnknownType.php', 'SebastianBergmann\\Type\\VoidType' => __DIR__ . '/..' . '/sebastian/type/src/type/VoidType.php', 'SebastianBergmann\\Version' => __DIR__ . '/..' . '/sebastian/version/src/Version.php', + 'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php', 'TheSeer\\Tokenizer\\Exception' => __DIR__ . '/..' . '/theseer/tokenizer/src/Exception.php', 'TheSeer\\Tokenizer\\NamespaceUri' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUri.php', 'TheSeer\\Tokenizer\\NamespaceUriException' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUriException.php', @@ -1278,6 +1325,8 @@ class ComposerStaticInitb084bad56d99d613841073027e5f5e7e 'TheSeer\\Tokenizer\\TokenCollectionException' => __DIR__ . '/..' . '/theseer/tokenizer/src/TokenCollectionException.php', 'TheSeer\\Tokenizer\\Tokenizer' => __DIR__ . '/..' . '/theseer/tokenizer/src/Tokenizer.php', 'TheSeer\\Tokenizer\\XMLSerializer' => __DIR__ . '/..' . '/theseer/tokenizer/src/XMLSerializer.php', + 'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php', + 'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php', ); public static function getInitializer(ClassLoader $loader) diff --git a/Sources/vendor/composer/installed.json b/Sources/vendor/composer/installed.json index f35a396c..9c393096 100755 --- a/Sources/vendor/composer/installed.json +++ b/Sources/vendor/composer/installed.json @@ -41,6 +41,71 @@ }, "install-path": "../adriangibbons/php-fit-file-analysis" }, + { + "name": "graham-campbell/result-type", + "version": "v1.1.2", + "version_normalized": "1.1.2.0", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862", + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "time": "2023-11-12T22:16:48+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "install-path": "../graham-campbell/result-type" + }, { "name": "myclabs/deep-copy", "version": "1.11.1", @@ -279,6 +344,84 @@ }, "install-path": "../phar-io/version" }, + { + "name": "phpoption/phpoption", + "version": "1.9.2", + "version_normalized": "1.9.2.0", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820", + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "time": "2023-11-12T21:59:55+00:00", + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "install-path": "../phpoption/phpoption" + }, { "name": "phpunit/php-code-coverage", "version": "10.1.9", @@ -1679,6 +1822,263 @@ ], "install-path": "../sebastian/version" }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.28.0", + "version_normalized": "1.28.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "time": "2023-01-26T09:26:14+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "install-path": "../symfony/polyfill-ctype" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.28.0", + "version_normalized": "1.28.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "42292d99c55abe617799667f454222c54c60e229" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", + "reference": "42292d99c55abe617799667f454222c54c60e229", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "time": "2023-07-28T09:04:16+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "install-path": "../symfony/polyfill-mbstring" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.28.0", + "version_normalized": "1.28.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "time": "2023-01-26T09:26:14+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "install-path": "../symfony/polyfill-php80" + }, { "name": "theseer/tokenizer", "version": "1.2.2", @@ -1731,6 +2131,168 @@ } ], "install-path": "../theseer/tokenizer" + }, + { + "name": "twig/twig", + "version": "v3.8.0", + "version_normalized": "3.8.0.0", + "source": { + "type": "git", + "url": "https://github.com/twigphp/Twig.git", + "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", + "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-php80": "^1.22" + }, + "require-dev": { + "psr/container": "^1.0|^2.0", + "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0" + }, + "time": "2023-11-21T18:54:41+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Twig\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com", + "homepage": "http://fabien.potencier.org", + "role": "Lead Developer" + }, + { + "name": "Twig Team", + "role": "Contributors" + }, + { + "name": "Armin Ronacher", + "email": "armin.ronacher@active-4.com", + "role": "Project Founder" + } + ], + "description": "Twig, the flexible, fast, and secure template language for PHP", + "homepage": "https://twig.symfony.com", + "keywords": [ + "templating" + ], + "support": { + "issues": "https://github.com/twigphp/Twig/issues", + "source": "https://github.com/twigphp/Twig/tree/v3.8.0" + }, + "funding": [ + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/twig/twig", + "type": "tidelift" + } + ], + "install-path": "../twig/twig" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.6.0", + "version_normalized": "5.6.0.0", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.1.2", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.2", + "symfony/polyfill-ctype": "^1.24", + "symfony/polyfill-mbstring": "^1.24", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-filter": "*", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "time": "2023-11-12T22:43:29+00:00", + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "5.6-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "install-path": "../vlucas/phpdotenv" } ], "dev": true, diff --git a/Sources/vendor/composer/installed.php b/Sources/vendor/composer/installed.php index 947b15f5..e3c38425 100755 --- a/Sources/vendor/composer/installed.php +++ b/Sources/vendor/composer/installed.php @@ -3,7 +3,7 @@ 'name' => 'hearttrack/package', 'pretty_version' => 'dev-master', 'version' => 'dev-master', - 'reference' => 'f6eafff4cda8cea272db1e1b754a5933d5b7d3ea', + 'reference' => '15e854a5088c3bd09feb895db7d604abde12b229', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -19,10 +19,19 @@ 'aliases' => array(), 'dev_requirement' => false, ), + 'graham-campbell/result-type' => array( + 'pretty_version' => 'v1.1.2', + 'version' => '1.1.2.0', + 'reference' => 'fbd48bce38f73f8a4ec8583362e732e4095e5862', + 'type' => 'library', + 'install_path' => __DIR__ . '/../graham-campbell/result-type', + 'aliases' => array(), + 'dev_requirement' => false, + ), 'hearttrack/package' => array( 'pretty_version' => 'dev-master', 'version' => 'dev-master', - 'reference' => 'f6eafff4cda8cea272db1e1b754a5933d5b7d3ea', + 'reference' => '15e854a5088c3bd09feb895db7d604abde12b229', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -64,6 +73,15 @@ 'aliases' => array(), 'dev_requirement' => true, ), + 'phpoption/phpoption' => array( + 'pretty_version' => '1.9.2', + 'version' => '1.9.2.0', + 'reference' => '80735db690fe4fc5c76dfa7f9b770634285fa820', + 'type' => 'library', + 'install_path' => __DIR__ . '/../phpoption/phpoption', + 'aliases' => array(), + 'dev_requirement' => false, + ), 'phpunit/php-code-coverage' => array( 'pretty_version' => '10.1.9', 'version' => '10.1.9.0', @@ -253,6 +271,33 @@ 'aliases' => array(), 'dev_requirement' => true, ), + 'symfony/polyfill-ctype' => array( + 'pretty_version' => 'v1.28.0', + 'version' => '1.28.0.0', + 'reference' => 'ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb', + 'type' => 'library', + 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'symfony/polyfill-mbstring' => array( + 'pretty_version' => 'v1.28.0', + 'version' => '1.28.0.0', + 'reference' => '42292d99c55abe617799667f454222c54c60e229', + 'type' => 'library', + 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'symfony/polyfill-php80' => array( + 'pretty_version' => 'v1.28.0', + 'version' => '1.28.0.0', + 'reference' => '6caa57379c4aec19c0a12a38b59b26487dcfe4b5', + 'type' => 'library', + 'install_path' => __DIR__ . '/../symfony/polyfill-php80', + 'aliases' => array(), + 'dev_requirement' => false, + ), 'theseer/tokenizer' => array( 'pretty_version' => '1.2.2', 'version' => '1.2.2.0', @@ -262,5 +307,23 @@ 'aliases' => array(), 'dev_requirement' => true, ), + 'twig/twig' => array( + 'pretty_version' => 'v3.8.0', + 'version' => '3.8.0.0', + 'reference' => '9d15f0ac07f44dc4217883ec6ae02fd555c6f71d', + 'type' => 'library', + 'install_path' => __DIR__ . '/../twig/twig', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'vlucas/phpdotenv' => array( + 'pretty_version' => 'v5.6.0', + 'version' => '5.6.0.0', + 'reference' => '2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4', + 'type' => 'library', + 'install_path' => __DIR__ . '/../vlucas/phpdotenv', + 'aliases' => array(), + 'dev_requirement' => false, + ), ), ); diff --git a/Sources/vendor/composer/platform_check.php b/Sources/vendor/composer/platform_check.php new file mode 100644 index 00000000..a8b98d5c --- /dev/null +++ b/Sources/vendor/composer/platform_check.php @@ -0,0 +1,26 @@ += 70205)) { + $issues[] = 'Your Composer dependencies require a PHP version ">= 7.2.5". You are running ' . PHP_VERSION . '.'; +} + +if ($issues) { + if (!headers_sent()) { + header('HTTP/1.1 500 Internal Server Error'); + } + if (!ini_get('display_errors')) { + if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { + fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); + } elseif (!headers_sent()) { + echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; + } + } + trigger_error( + 'Composer detected issues in your platform: ' . implode(' ', $issues), + E_USER_ERROR + ); +} diff --git a/Sources/vendor/graham-campbell/result-type/LICENSE b/Sources/vendor/graham-campbell/result-type/LICENSE new file mode 100644 index 00000000..bbd75d13 --- /dev/null +++ b/Sources/vendor/graham-campbell/result-type/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2020-2023 Graham Campbell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/Sources/vendor/graham-campbell/result-type/composer.json b/Sources/vendor/graham-campbell/result-type/composer.json new file mode 100644 index 00000000..b1ba15ab --- /dev/null +++ b/Sources/vendor/graham-campbell/result-type/composer.json @@ -0,0 +1,33 @@ +{ + "name": "graham-campbell/result-type", + "description": "An Implementation Of The Result Type", + "keywords": ["result", "result-type", "Result", "Result Type", "Result-Type", "Graham Campbell", "GrahamCampbell"], + "license": "MIT", + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "require": { + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "GrahamCampbell\\Tests\\ResultType\\": "tests/" + } + }, + "config": { + "preferred-install": "dist" + } +} diff --git a/Sources/vendor/graham-campbell/result-type/src/Error.php b/Sources/vendor/graham-campbell/result-type/src/Error.php new file mode 100644 index 00000000..2c37c3e2 --- /dev/null +++ b/Sources/vendor/graham-campbell/result-type/src/Error.php @@ -0,0 +1,121 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace GrahamCampbell\ResultType; + +use PhpOption\None; +use PhpOption\Some; + +/** + * @template T + * @template E + * + * @extends \GrahamCampbell\ResultType\Result + */ +final class Error extends Result +{ + /** + * @var E + */ + private $value; + + /** + * Internal constructor for an error value. + * + * @param E $value + * + * @return void + */ + private function __construct($value) + { + $this->value = $value; + } + + /** + * Create a new error value. + * + * @template F + * + * @param F $value + * + * @return \GrahamCampbell\ResultType\Result + */ + public static function create($value) + { + return new self($value); + } + + /** + * Get the success option value. + * + * @return \PhpOption\Option + */ + public function success() + { + return None::create(); + } + + /** + * Map over the success value. + * + * @template S + * + * @param callable(T):S $f + * + * @return \GrahamCampbell\ResultType\Result + */ + public function map(callable $f) + { + return self::create($this->value); + } + + /** + * Flat map over the success value. + * + * @template S + * @template F + * + * @param callable(T):\GrahamCampbell\ResultType\Result $f + * + * @return \GrahamCampbell\ResultType\Result + */ + public function flatMap(callable $f) + { + /** @var \GrahamCampbell\ResultType\Result */ + return self::create($this->value); + } + + /** + * Get the error option value. + * + * @return \PhpOption\Option + */ + public function error() + { + return Some::create($this->value); + } + + /** + * Map over the error value. + * + * @template F + * + * @param callable(E):F $f + * + * @return \GrahamCampbell\ResultType\Result + */ + public function mapError(callable $f) + { + return self::create($f($this->value)); + } +} diff --git a/Sources/vendor/graham-campbell/result-type/src/Result.php b/Sources/vendor/graham-campbell/result-type/src/Result.php new file mode 100644 index 00000000..8c67bcdd --- /dev/null +++ b/Sources/vendor/graham-campbell/result-type/src/Result.php @@ -0,0 +1,69 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace GrahamCampbell\ResultType; + +/** + * @template T + * @template E + */ +abstract class Result +{ + /** + * Get the success option value. + * + * @return \PhpOption\Option + */ + abstract public function success(); + + /** + * Map over the success value. + * + * @template S + * + * @param callable(T):S $f + * + * @return \GrahamCampbell\ResultType\Result + */ + abstract public function map(callable $f); + + /** + * Flat map over the success value. + * + * @template S + * @template F + * + * @param callable(T):\GrahamCampbell\ResultType\Result $f + * + * @return \GrahamCampbell\ResultType\Result + */ + abstract public function flatMap(callable $f); + + /** + * Get the error option value. + * + * @return \PhpOption\Option + */ + abstract public function error(); + + /** + * Map over the error value. + * + * @template F + * + * @param callable(E):F $f + * + * @return \GrahamCampbell\ResultType\Result + */ + abstract public function mapError(callable $f); +} diff --git a/Sources/vendor/graham-campbell/result-type/src/Success.php b/Sources/vendor/graham-campbell/result-type/src/Success.php new file mode 100644 index 00000000..27cd85ee --- /dev/null +++ b/Sources/vendor/graham-campbell/result-type/src/Success.php @@ -0,0 +1,120 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace GrahamCampbell\ResultType; + +use PhpOption\None; +use PhpOption\Some; + +/** + * @template T + * @template E + * + * @extends \GrahamCampbell\ResultType\Result + */ +final class Success extends Result +{ + /** + * @var T + */ + private $value; + + /** + * Internal constructor for a success value. + * + * @param T $value + * + * @return void + */ + private function __construct($value) + { + $this->value = $value; + } + + /** + * Create a new error value. + * + * @template S + * + * @param S $value + * + * @return \GrahamCampbell\ResultType\Result + */ + public static function create($value) + { + return new self($value); + } + + /** + * Get the success option value. + * + * @return \PhpOption\Option + */ + public function success() + { + return Some::create($this->value); + } + + /** + * Map over the success value. + * + * @template S + * + * @param callable(T):S $f + * + * @return \GrahamCampbell\ResultType\Result + */ + public function map(callable $f) + { + return self::create($f($this->value)); + } + + /** + * Flat map over the success value. + * + * @template S + * @template F + * + * @param callable(T):\GrahamCampbell\ResultType\Result $f + * + * @return \GrahamCampbell\ResultType\Result + */ + public function flatMap(callable $f) + { + return $f($this->value); + } + + /** + * Get the error option value. + * + * @return \PhpOption\Option + */ + public function error() + { + return None::create(); + } + + /** + * Map over the error value. + * + * @template F + * + * @param callable(E):F $f + * + * @return \GrahamCampbell\ResultType\Result + */ + public function mapError(callable $f) + { + return self::create($this->value); + } +} diff --git a/Sources/vendor/phpoption/phpoption/LICENSE b/Sources/vendor/phpoption/phpoption/LICENSE new file mode 100644 index 00000000..f49a4e16 --- /dev/null +++ b/Sources/vendor/phpoption/phpoption/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/Sources/vendor/phpoption/phpoption/composer.json b/Sources/vendor/phpoption/phpoption/composer.json new file mode 100644 index 00000000..77f50a37 --- /dev/null +++ b/Sources/vendor/phpoption/phpoption/composer.json @@ -0,0 +1,52 @@ +{ + "name": "phpoption/phpoption", + "description": "Option Type for PHP", + "keywords": ["php", "option", "language", "type"], + "license": "Apache-2.0", + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "autoload-dev": { + "psr-4": { + "PhpOption\\Tests\\": "tests/PhpOption/Tests/" + } + }, + "config": { + "allow-plugins": { + "bamarni/composer-bin-plugin": true + }, + "preferred-install": "dist" + }, + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "minimum-stability": "dev", + "prefer-stable": true +} diff --git a/Sources/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php b/Sources/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php new file mode 100644 index 00000000..9cb77c86 --- /dev/null +++ b/Sources/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php @@ -0,0 +1,175 @@ + + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +namespace PhpOption; + +use Traversable; + +/** + * @template T + * + * @extends Option + */ +final class LazyOption extends Option +{ + /** @var callable(mixed...):(Option) */ + private $callback; + + /** @var array */ + private $arguments; + + /** @var Option|null */ + private $option; + + /** + * @template S + * @param callable(mixed...):(Option) $callback + * @param array $arguments + * + * @return LazyOption + */ + public static function create($callback, array $arguments = []): self + { + return new self($callback, $arguments); + } + + /** + * @param callable(mixed...):(Option) $callback + * @param array $arguments + */ + public function __construct($callback, array $arguments = []) + { + if (!is_callable($callback)) { + throw new \InvalidArgumentException('Invalid callback given'); + } + + $this->callback = $callback; + $this->arguments = $arguments; + } + + public function isDefined(): bool + { + return $this->option()->isDefined(); + } + + public function isEmpty(): bool + { + return $this->option()->isEmpty(); + } + + public function get() + { + return $this->option()->get(); + } + + public function getOrElse($default) + { + return $this->option()->getOrElse($default); + } + + public function getOrCall($callable) + { + return $this->option()->getOrCall($callable); + } + + public function getOrThrow(\Exception $ex) + { + return $this->option()->getOrThrow($ex); + } + + public function orElse(Option $else) + { + return $this->option()->orElse($else); + } + + public function ifDefined($callable) + { + $this->option()->forAll($callable); + } + + public function forAll($callable) + { + return $this->option()->forAll($callable); + } + + public function map($callable) + { + return $this->option()->map($callable); + } + + public function flatMap($callable) + { + return $this->option()->flatMap($callable); + } + + public function filter($callable) + { + return $this->option()->filter($callable); + } + + public function filterNot($callable) + { + return $this->option()->filterNot($callable); + } + + public function select($value) + { + return $this->option()->select($value); + } + + public function reject($value) + { + return $this->option()->reject($value); + } + + /** + * @return Traversable + */ + public function getIterator(): Traversable + { + return $this->option()->getIterator(); + } + + public function foldLeft($initialValue, $callable) + { + return $this->option()->foldLeft($initialValue, $callable); + } + + public function foldRight($initialValue, $callable) + { + return $this->option()->foldRight($initialValue, $callable); + } + + /** + * @return Option + */ + private function option(): Option + { + if (null === $this->option) { + /** @var mixed */ + $option = call_user_func_array($this->callback, $this->arguments); + if ($option instanceof Option) { + $this->option = $option; + } else { + throw new \RuntimeException(sprintf('Expected instance of %s', Option::class)); + } + } + + return $this->option; + } +} diff --git a/Sources/vendor/phpoption/phpoption/src/PhpOption/None.php b/Sources/vendor/phpoption/phpoption/src/PhpOption/None.php new file mode 100644 index 00000000..4b85d22d --- /dev/null +++ b/Sources/vendor/phpoption/phpoption/src/PhpOption/None.php @@ -0,0 +1,136 @@ + + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +namespace PhpOption; + +use EmptyIterator; + +/** + * @extends Option + */ +final class None extends Option +{ + /** @var None|null */ + private static $instance; + + /** + * @return None + */ + public static function create(): self + { + if (null === self::$instance) { + self::$instance = new self(); + } + + return self::$instance; + } + + public function get() + { + throw new \RuntimeException('None has no value.'); + } + + public function getOrCall($callable) + { + return $callable(); + } + + public function getOrElse($default) + { + return $default; + } + + public function getOrThrow(\Exception $ex) + { + throw $ex; + } + + public function isEmpty(): bool + { + return true; + } + + public function isDefined(): bool + { + return false; + } + + public function orElse(Option $else) + { + return $else; + } + + public function ifDefined($callable) + { + // Just do nothing in that case. + } + + public function forAll($callable) + { + return $this; + } + + public function map($callable) + { + return $this; + } + + public function flatMap($callable) + { + return $this; + } + + public function filter($callable) + { + return $this; + } + + public function filterNot($callable) + { + return $this; + } + + public function select($value) + { + return $this; + } + + public function reject($value) + { + return $this; + } + + public function getIterator(): EmptyIterator + { + return new EmptyIterator(); + } + + public function foldLeft($initialValue, $callable) + { + return $initialValue; + } + + public function foldRight($initialValue, $callable) + { + return $initialValue; + } + + private function __construct() + { + } +} diff --git a/Sources/vendor/phpoption/phpoption/src/PhpOption/Option.php b/Sources/vendor/phpoption/phpoption/src/PhpOption/Option.php new file mode 100644 index 00000000..172924cf --- /dev/null +++ b/Sources/vendor/phpoption/phpoption/src/PhpOption/Option.php @@ -0,0 +1,434 @@ + + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +namespace PhpOption; + +use ArrayAccess; +use IteratorAggregate; + +/** + * @template T + * + * @implements IteratorAggregate + */ +abstract class Option implements IteratorAggregate +{ + /** + * Creates an option given a return value. + * + * This is intended for consuming existing APIs and allows you to easily + * convert them to an option. By default, we treat ``null`` as the None + * case, and everything else as Some. + * + * @template S + * + * @param S $value The actual return value. + * @param S $noneValue The value which should be considered "None"; null by + * default. + * + * @return Option + */ + public static function fromValue($value, $noneValue = null) + { + if ($value === $noneValue) { + return None::create(); + } + + return new Some($value); + } + + /** + * Creates an option from an array's value. + * + * If the key does not exist in the array, the array is not actually an + * array, or the array's value at the given key is null, None is returned. + * Otherwise, Some is returned wrapping the value at the given key. + * + * @template S + * + * @param array|ArrayAccess|null $array A potential array or \ArrayAccess value. + * @param string $key The key to check. + * + * @return Option + */ + public static function fromArraysValue($array, $key) + { + if (!(is_array($array) || $array instanceof ArrayAccess) || !isset($array[$key])) { + return None::create(); + } + + return new Some($array[$key]); + } + + /** + * Creates a lazy-option with the given callback. + * + * This is also a helper constructor for lazy-consuming existing APIs where + * the return value is not yet an option. By default, we treat ``null`` as + * None case, and everything else as Some. + * + * @template S + * + * @param callable $callback The callback to evaluate. + * @param array $arguments The arguments for the callback. + * @param S $noneValue The value which should be considered "None"; + * null by default. + * + * @return LazyOption + */ + public static function fromReturn($callback, array $arguments = [], $noneValue = null) + { + return new LazyOption(static function () use ($callback, $arguments, $noneValue) { + /** @var mixed */ + $return = call_user_func_array($callback, $arguments); + + if ($return === $noneValue) { + return None::create(); + } + + return new Some($return); + }); + } + + /** + * Option factory, which creates new option based on passed value. + * + * If value is already an option, it simply returns. If value is callable, + * LazyOption with passed callback created and returned. If Option + * returned from callback, it returns directly. On other case value passed + * to Option::fromValue() method. + * + * @template S + * + * @param Option|callable|S $value + * @param S $noneValue Used when $value is mixed or + * callable, for None-check. + * + * @return Option|LazyOption + */ + public static function ensure($value, $noneValue = null) + { + if ($value instanceof self) { + return $value; + } elseif (is_callable($value)) { + return new LazyOption(static function () use ($value, $noneValue) { + /** @var mixed */ + $return = $value(); + + if ($return instanceof self) { + return $return; + } else { + return self::fromValue($return, $noneValue); + } + }); + } else { + return self::fromValue($value, $noneValue); + } + } + + /** + * Lift a function so that it accepts Option as parameters. + * + * We return a new closure that wraps the original callback. If any of the + * parameters passed to the lifted function is empty, the function will + * return a value of None. Otherwise, we will pass all parameters to the + * original callback and return the value inside a new Option, unless an + * Option is returned from the function, in which case, we use that. + * + * @template S + * + * @param callable $callback + * @param mixed $noneValue + * + * @return callable + */ + public static function lift($callback, $noneValue = null) + { + return static function () use ($callback, $noneValue) { + /** @var array */ + $args = func_get_args(); + + $reduced_args = array_reduce( + $args, + /** @param bool $status */ + static function ($status, self $o) { + return $o->isEmpty() ? true : $status; + }, + false + ); + // if at least one parameter is empty, return None + if ($reduced_args) { + return None::create(); + } + + $args = array_map( + /** @return T */ + static function (self $o) { + // it is safe to do so because the fold above checked + // that all arguments are of type Some + /** @var T */ + return $o->get(); + }, + $args + ); + + return self::ensure(call_user_func_array($callback, $args), $noneValue); + }; + } + + /** + * Returns the value if available, or throws an exception otherwise. + * + * @throws \RuntimeException If value is not available. + * + * @return T + */ + abstract public function get(); + + /** + * Returns the value if available, or the default value if not. + * + * @template S + * + * @param S $default + * + * @return T|S + */ + abstract public function getOrElse($default); + + /** + * Returns the value if available, or the results of the callable. + * + * This is preferable over ``getOrElse`` if the computation of the default + * value is expensive. + * + * @template S + * + * @param callable():S $callable + * + * @return T|S + */ + abstract public function getOrCall($callable); + + /** + * Returns the value if available, or throws the passed exception. + * + * @param \Exception $ex + * + * @return T + */ + abstract public function getOrThrow(\Exception $ex); + + /** + * Returns true if no value is available, false otherwise. + * + * @return bool + */ + abstract public function isEmpty(); + + /** + * Returns true if a value is available, false otherwise. + * + * @return bool + */ + abstract public function isDefined(); + + /** + * Returns this option if non-empty, or the passed option otherwise. + * + * This can be used to try multiple alternatives, and is especially useful + * with lazy evaluating options: + * + * ```php + * $repo->findSomething() + * ->orElse(new LazyOption(array($repo, 'findSomethingElse'))) + * ->orElse(new LazyOption(array($repo, 'createSomething'))); + * ``` + * + * @param Option $else + * + * @return Option + */ + abstract public function orElse(self $else); + + /** + * This is similar to map() below except that the return value has no meaning; + * the passed callable is simply executed if the option is non-empty, and + * ignored if the option is empty. + * + * In all cases, the return value of the callable is discarded. + * + * ```php + * $comment->getMaybeFile()->ifDefined(function($file) { + * // Do something with $file here. + * }); + * ``` + * + * If you're looking for something like ``ifEmpty``, you can use ``getOrCall`` + * and ``getOrElse`` in these cases. + * + * @deprecated Use forAll() instead. + * + * @param callable(T):mixed $callable + * + * @return void + */ + abstract public function ifDefined($callable); + + /** + * This is similar to map() except that the return value of the callable has no meaning. + * + * The passed callable is simply executed if the option is non-empty, and ignored if the + * option is empty. This method is preferred for callables with side-effects, while map() + * is intended for callables without side-effects. + * + * @param callable(T):mixed $callable + * + * @return Option + */ + abstract public function forAll($callable); + + /** + * Applies the callable to the value of the option if it is non-empty, + * and returns the return value of the callable wrapped in Some(). + * + * If the option is empty, then the callable is not applied. + * + * ```php + * (new Some("foo"))->map('strtoupper')->get(); // "FOO" + * ``` + * + * @template S + * + * @param callable(T):S $callable + * + * @return Option + */ + abstract public function map($callable); + + /** + * Applies the callable to the value of the option if it is non-empty, and + * returns the return value of the callable directly. + * + * In contrast to ``map``, the return value of the callable is expected to + * be an Option itself; it is not automatically wrapped in Some(). + * + * @template S + * + * @param callable(T):Option $callable must return an Option + * + * @return Option + */ + abstract public function flatMap($callable); + + /** + * If the option is empty, it is returned immediately without applying the callable. + * + * If the option is non-empty, the callable is applied, and if it returns true, + * the option itself is returned; otherwise, None is returned. + * + * @param callable(T):bool $callable + * + * @return Option + */ + abstract public function filter($callable); + + /** + * If the option is empty, it is returned immediately without applying the callable. + * + * If the option is non-empty, the callable is applied, and if it returns false, + * the option itself is returned; otherwise, None is returned. + * + * @param callable(T):bool $callable + * + * @return Option + */ + abstract public function filterNot($callable); + + /** + * If the option is empty, it is returned immediately. + * + * If the option is non-empty, and its value does not equal the passed value + * (via a shallow comparison ===), then None is returned. Otherwise, the + * Option is returned. + * + * In other words, this will filter all but the passed value. + * + * @param T $value + * + * @return Option + */ + abstract public function select($value); + + /** + * If the option is empty, it is returned immediately. + * + * If the option is non-empty, and its value does equal the passed value (via + * a shallow comparison ===), then None is returned; otherwise, the Option is + * returned. + * + * In other words, this will let all values through except the passed value. + * + * @param T $value + * + * @return Option + */ + abstract public function reject($value); + + /** + * Binary operator for the initial value and the option's value. + * + * If empty, the initial value is returned. If non-empty, the callable + * receives the initial value and the option's value as arguments. + * + * ```php + * + * $some = new Some(5); + * $none = None::create(); + * $result = $some->foldLeft(1, function($a, $b) { return $a + $b; }); // int(6) + * $result = $none->foldLeft(1, function($a, $b) { return $a + $b; }); // int(1) + * + * // This can be used instead of something like the following: + * $option = Option::fromValue($integerOrNull); + * $result = 1; + * if ( ! $option->isEmpty()) { + * $result += $option->get(); + * } + * ``` + * + * @template S + * + * @param S $initialValue + * @param callable(S, T):S $callable + * + * @return S + */ + abstract public function foldLeft($initialValue, $callable); + + /** + * foldLeft() but with reversed arguments for the callable. + * + * @template S + * + * @param S $initialValue + * @param callable(T, S):S $callable + * + * @return S + */ + abstract public function foldRight($initialValue, $callable); +} diff --git a/Sources/vendor/phpoption/phpoption/src/PhpOption/Some.php b/Sources/vendor/phpoption/phpoption/src/PhpOption/Some.php new file mode 100644 index 00000000..032632ea --- /dev/null +++ b/Sources/vendor/phpoption/phpoption/src/PhpOption/Some.php @@ -0,0 +1,169 @@ + + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +namespace PhpOption; + +use ArrayIterator; + +/** + * @template T + * + * @extends Option + */ +final class Some extends Option +{ + /** @var T */ + private $value; + + /** + * @param T $value + */ + public function __construct($value) + { + $this->value = $value; + } + + /** + * @template U + * + * @param U $value + * + * @return Some + */ + public static function create($value): self + { + return new self($value); + } + + public function isDefined(): bool + { + return true; + } + + public function isEmpty(): bool + { + return false; + } + + public function get() + { + return $this->value; + } + + public function getOrElse($default) + { + return $this->value; + } + + public function getOrCall($callable) + { + return $this->value; + } + + public function getOrThrow(\Exception $ex) + { + return $this->value; + } + + public function orElse(Option $else) + { + return $this; + } + + public function ifDefined($callable) + { + $this->forAll($callable); + } + + public function forAll($callable) + { + $callable($this->value); + + return $this; + } + + public function map($callable) + { + return new self($callable($this->value)); + } + + public function flatMap($callable) + { + /** @var mixed */ + $rs = $callable($this->value); + if (!$rs instanceof Option) { + throw new \RuntimeException('Callables passed to flatMap() must return an Option. Maybe you should use map() instead?'); + } + + return $rs; + } + + public function filter($callable) + { + if (true === $callable($this->value)) { + return $this; + } + + return None::create(); + } + + public function filterNot($callable) + { + if (false === $callable($this->value)) { + return $this; + } + + return None::create(); + } + + public function select($value) + { + if ($this->value === $value) { + return $this; + } + + return None::create(); + } + + public function reject($value) + { + if ($this->value === $value) { + return None::create(); + } + + return $this; + } + + /** + * @return ArrayIterator + */ + public function getIterator(): ArrayIterator + { + return new ArrayIterator([$this->value]); + } + + public function foldLeft($initialValue, $callable) + { + return $callable($initialValue, $this->value); + } + + public function foldRight($initialValue, $callable) + { + return $callable($this->value, $initialValue); + } +} diff --git a/Sources/vendor/symfony/polyfill-ctype/Ctype.php b/Sources/vendor/symfony/polyfill-ctype/Ctype.php new file mode 100644 index 00000000..ba75a2c9 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-ctype/Ctype.php @@ -0,0 +1,232 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Polyfill\Ctype; + +/** + * Ctype implementation through regex. + * + * @internal + * + * @author Gert de Pagter + */ +final class Ctype +{ + /** + * Returns TRUE if every character in text is either a letter or a digit, FALSE otherwise. + * + * @see https://php.net/ctype-alnum + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_alnum($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z0-9]/', $text); + } + + /** + * Returns TRUE if every character in text is a letter, FALSE otherwise. + * + * @see https://php.net/ctype-alpha + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_alpha($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z]/', $text); + } + + /** + * Returns TRUE if every character in text is a control character from the current locale, FALSE otherwise. + * + * @see https://php.net/ctype-cntrl + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_cntrl($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^\x00-\x1f\x7f]/', $text); + } + + /** + * Returns TRUE if every character in the string text is a decimal digit, FALSE otherwise. + * + * @see https://php.net/ctype-digit + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_digit($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^0-9]/', $text); + } + + /** + * Returns TRUE if every character in text is printable and actually creates visible output (no white space), FALSE otherwise. + * + * @see https://php.net/ctype-graph + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_graph($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^!-~]/', $text); + } + + /** + * Returns TRUE if every character in text is a lowercase letter. + * + * @see https://php.net/ctype-lower + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_lower($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^a-z]/', $text); + } + + /** + * Returns TRUE if every character in text will actually create output (including blanks). Returns FALSE if text contains control characters or characters that do not have any output or control function at all. + * + * @see https://php.net/ctype-print + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_print($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^ -~]/', $text); + } + + /** + * Returns TRUE if every character in text is printable, but neither letter, digit or blank, FALSE otherwise. + * + * @see https://php.net/ctype-punct + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_punct($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^!-\/\:-@\[-`\{-~]/', $text); + } + + /** + * Returns TRUE if every character in text creates some sort of white space, FALSE otherwise. Besides the blank character this also includes tab, vertical tab, line feed, carriage return and form feed characters. + * + * @see https://php.net/ctype-space + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_space($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^\s]/', $text); + } + + /** + * Returns TRUE if every character in text is an uppercase letter. + * + * @see https://php.net/ctype-upper + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_upper($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^A-Z]/', $text); + } + + /** + * Returns TRUE if every character in text is a hexadecimal 'digit', that is a decimal digit or a character from [A-Fa-f] , FALSE otherwise. + * + * @see https://php.net/ctype-xdigit + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_xdigit($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^A-Fa-f0-9]/', $text); + } + + /** + * Converts integers to their char versions according to normal ctype behaviour, if needed. + * + * If an integer between -128 and 255 inclusive is provided, + * it is interpreted as the ASCII value of a single character + * (negative values have 256 added in order to allow characters in the Extended ASCII range). + * Any other integer is interpreted as a string containing the decimal digits of the integer. + * + * @param mixed $int + * @param string $function + * + * @return mixed + */ + private static function convert_int_to_char_for_ctype($int, $function) + { + if (!\is_int($int)) { + return $int; + } + + if ($int < -128 || $int > 255) { + return (string) $int; + } + + if (\PHP_VERSION_ID >= 80100) { + @trigger_error($function.'(): Argument of type int will be interpreted as string in the future', \E_USER_DEPRECATED); + } + + if ($int < 0) { + $int += 256; + } + + return \chr($int); + } +} diff --git a/Sources/vendor/symfony/polyfill-ctype/LICENSE b/Sources/vendor/symfony/polyfill-ctype/LICENSE new file mode 100644 index 00000000..7536caea --- /dev/null +++ b/Sources/vendor/symfony/polyfill-ctype/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2018-present Fabien Potencier + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/Sources/vendor/symfony/polyfill-ctype/README.md b/Sources/vendor/symfony/polyfill-ctype/README.md new file mode 100644 index 00000000..b144d03c --- /dev/null +++ b/Sources/vendor/symfony/polyfill-ctype/README.md @@ -0,0 +1,12 @@ +Symfony Polyfill / Ctype +======================== + +This component provides `ctype_*` functions to users who run php versions without the ctype extension. + +More information can be found in the +[main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md). + +License +======= + +This library is released under the [MIT license](LICENSE). diff --git a/Sources/vendor/symfony/polyfill-ctype/bootstrap.php b/Sources/vendor/symfony/polyfill-ctype/bootstrap.php new file mode 100644 index 00000000..d54524b3 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-ctype/bootstrap.php @@ -0,0 +1,50 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +use Symfony\Polyfill\Ctype as p; + +if (\PHP_VERSION_ID >= 80000) { + return require __DIR__.'/bootstrap80.php'; +} + +if (!function_exists('ctype_alnum')) { + function ctype_alnum($text) { return p\Ctype::ctype_alnum($text); } +} +if (!function_exists('ctype_alpha')) { + function ctype_alpha($text) { return p\Ctype::ctype_alpha($text); } +} +if (!function_exists('ctype_cntrl')) { + function ctype_cntrl($text) { return p\Ctype::ctype_cntrl($text); } +} +if (!function_exists('ctype_digit')) { + function ctype_digit($text) { return p\Ctype::ctype_digit($text); } +} +if (!function_exists('ctype_graph')) { + function ctype_graph($text) { return p\Ctype::ctype_graph($text); } +} +if (!function_exists('ctype_lower')) { + function ctype_lower($text) { return p\Ctype::ctype_lower($text); } +} +if (!function_exists('ctype_print')) { + function ctype_print($text) { return p\Ctype::ctype_print($text); } +} +if (!function_exists('ctype_punct')) { + function ctype_punct($text) { return p\Ctype::ctype_punct($text); } +} +if (!function_exists('ctype_space')) { + function ctype_space($text) { return p\Ctype::ctype_space($text); } +} +if (!function_exists('ctype_upper')) { + function ctype_upper($text) { return p\Ctype::ctype_upper($text); } +} +if (!function_exists('ctype_xdigit')) { + function ctype_xdigit($text) { return p\Ctype::ctype_xdigit($text); } +} diff --git a/Sources/vendor/symfony/polyfill-ctype/bootstrap80.php b/Sources/vendor/symfony/polyfill-ctype/bootstrap80.php new file mode 100644 index 00000000..ab2f8611 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-ctype/bootstrap80.php @@ -0,0 +1,46 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +use Symfony\Polyfill\Ctype as p; + +if (!function_exists('ctype_alnum')) { + function ctype_alnum(mixed $text): bool { return p\Ctype::ctype_alnum($text); } +} +if (!function_exists('ctype_alpha')) { + function ctype_alpha(mixed $text): bool { return p\Ctype::ctype_alpha($text); } +} +if (!function_exists('ctype_cntrl')) { + function ctype_cntrl(mixed $text): bool { return p\Ctype::ctype_cntrl($text); } +} +if (!function_exists('ctype_digit')) { + function ctype_digit(mixed $text): bool { return p\Ctype::ctype_digit($text); } +} +if (!function_exists('ctype_graph')) { + function ctype_graph(mixed $text): bool { return p\Ctype::ctype_graph($text); } +} +if (!function_exists('ctype_lower')) { + function ctype_lower(mixed $text): bool { return p\Ctype::ctype_lower($text); } +} +if (!function_exists('ctype_print')) { + function ctype_print(mixed $text): bool { return p\Ctype::ctype_print($text); } +} +if (!function_exists('ctype_punct')) { + function ctype_punct(mixed $text): bool { return p\Ctype::ctype_punct($text); } +} +if (!function_exists('ctype_space')) { + function ctype_space(mixed $text): bool { return p\Ctype::ctype_space($text); } +} +if (!function_exists('ctype_upper')) { + function ctype_upper(mixed $text): bool { return p\Ctype::ctype_upper($text); } +} +if (!function_exists('ctype_xdigit')) { + function ctype_xdigit(mixed $text): bool { return p\Ctype::ctype_xdigit($text); } +} diff --git a/Sources/vendor/symfony/polyfill-ctype/composer.json b/Sources/vendor/symfony/polyfill-ctype/composer.json new file mode 100644 index 00000000..e5c978f1 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-ctype/composer.json @@ -0,0 +1,41 @@ +{ + "name": "symfony/polyfill-ctype", + "type": "library", + "description": "Symfony polyfill for ctype functions", + "keywords": ["polyfill", "compatibility", "portable", "ctype"], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "autoload": { + "psr-4": { "Symfony\\Polyfill\\Ctype\\": "" }, + "files": [ "bootstrap.php" ] + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + } +} diff --git a/Sources/vendor/symfony/polyfill-mbstring/LICENSE b/Sources/vendor/symfony/polyfill-mbstring/LICENSE new file mode 100644 index 00000000..6e3afce6 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-mbstring/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2015-present Fabien Potencier + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/Sources/vendor/symfony/polyfill-mbstring/Mbstring.php b/Sources/vendor/symfony/polyfill-mbstring/Mbstring.php new file mode 100644 index 00000000..2e0b9694 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-mbstring/Mbstring.php @@ -0,0 +1,947 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Polyfill\Mbstring; + +/** + * Partial mbstring implementation in PHP, iconv based, UTF-8 centric. + * + * Implemented: + * - mb_chr - Returns a specific character from its Unicode code point + * - mb_convert_encoding - Convert character encoding + * - mb_convert_variables - Convert character code in variable(s) + * - mb_decode_mimeheader - Decode string in MIME header field + * - mb_encode_mimeheader - Encode string for MIME header XXX NATIVE IMPLEMENTATION IS REALLY BUGGED + * - mb_decode_numericentity - Decode HTML numeric string reference to character + * - mb_encode_numericentity - Encode character to HTML numeric string reference + * - mb_convert_case - Perform case folding on a string + * - mb_detect_encoding - Detect character encoding + * - mb_get_info - Get internal settings of mbstring + * - mb_http_input - Detect HTTP input character encoding + * - mb_http_output - Set/Get HTTP output character encoding + * - mb_internal_encoding - Set/Get internal character encoding + * - mb_list_encodings - Returns an array of all supported encodings + * - mb_ord - Returns the Unicode code point of a character + * - mb_output_handler - Callback function converts character encoding in output buffer + * - mb_scrub - Replaces ill-formed byte sequences with substitute characters + * - mb_strlen - Get string length + * - mb_strpos - Find position of first occurrence of string in a string + * - mb_strrpos - Find position of last occurrence of a string in a string + * - mb_str_split - Convert a string to an array + * - mb_strtolower - Make a string lowercase + * - mb_strtoupper - Make a string uppercase + * - mb_substitute_character - Set/Get substitution character + * - mb_substr - Get part of string + * - mb_stripos - Finds position of first occurrence of a string within another, case insensitive + * - mb_stristr - Finds first occurrence of a string within another, case insensitive + * - mb_strrchr - Finds the last occurrence of a character in a string within another + * - mb_strrichr - Finds the last occurrence of a character in a string within another, case insensitive + * - mb_strripos - Finds position of last occurrence of a string within another, case insensitive + * - mb_strstr - Finds first occurrence of a string within another + * - mb_strwidth - Return width of string + * - mb_substr_count - Count the number of substring occurrences + * + * Not implemented: + * - mb_convert_kana - Convert "kana" one from another ("zen-kaku", "han-kaku" and more) + * - mb_ereg_* - Regular expression with multibyte support + * - mb_parse_str - Parse GET/POST/COOKIE data and set global variable + * - mb_preferred_mime_name - Get MIME charset string + * - mb_regex_encoding - Returns current encoding for multibyte regex as string + * - mb_regex_set_options - Set/Get the default options for mbregex functions + * - mb_send_mail - Send encoded mail + * - mb_split - Split multibyte string using regular expression + * - mb_strcut - Get part of string + * - mb_strimwidth - Get truncated string with specified width + * + * @author Nicolas Grekas + * + * @internal + */ +final class Mbstring +{ + public const MB_CASE_FOLD = \PHP_INT_MAX; + + private const SIMPLE_CASE_FOLD = [ + ['µ', 'ſ', "\xCD\x85", 'ς', "\xCF\x90", "\xCF\x91", "\xCF\x95", "\xCF\x96", "\xCF\xB0", "\xCF\xB1", "\xCF\xB5", "\xE1\xBA\x9B", "\xE1\xBE\xBE"], + ['μ', 's', 'ι', 'σ', 'β', 'θ', 'φ', 'π', 'κ', 'ρ', 'ε', "\xE1\xB9\xA1", 'ι'], + ]; + + private static $encodingList = ['ASCII', 'UTF-8']; + private static $language = 'neutral'; + private static $internalEncoding = 'UTF-8'; + + public static function mb_convert_encoding($s, $toEncoding, $fromEncoding = null) + { + if (\is_array($fromEncoding) || (null !== $fromEncoding && false !== strpos($fromEncoding, ','))) { + $fromEncoding = self::mb_detect_encoding($s, $fromEncoding); + } else { + $fromEncoding = self::getEncoding($fromEncoding); + } + + $toEncoding = self::getEncoding($toEncoding); + + if ('BASE64' === $fromEncoding) { + $s = base64_decode($s); + $fromEncoding = $toEncoding; + } + + if ('BASE64' === $toEncoding) { + return base64_encode($s); + } + + if ('HTML-ENTITIES' === $toEncoding || 'HTML' === $toEncoding) { + if ('HTML-ENTITIES' === $fromEncoding || 'HTML' === $fromEncoding) { + $fromEncoding = 'Windows-1252'; + } + if ('UTF-8' !== $fromEncoding) { + $s = iconv($fromEncoding, 'UTF-8//IGNORE', $s); + } + + return preg_replace_callback('/[\x80-\xFF]+/', [__CLASS__, 'html_encoding_callback'], $s); + } + + if ('HTML-ENTITIES' === $fromEncoding) { + $s = html_entity_decode($s, \ENT_COMPAT, 'UTF-8'); + $fromEncoding = 'UTF-8'; + } + + return iconv($fromEncoding, $toEncoding.'//IGNORE', $s); + } + + public static function mb_convert_variables($toEncoding, $fromEncoding, &...$vars) + { + $ok = true; + array_walk_recursive($vars, function (&$v) use (&$ok, $toEncoding, $fromEncoding) { + if (false === $v = self::mb_convert_encoding($v, $toEncoding, $fromEncoding)) { + $ok = false; + } + }); + + return $ok ? $fromEncoding : false; + } + + public static function mb_decode_mimeheader($s) + { + return iconv_mime_decode($s, 2, self::$internalEncoding); + } + + public static function mb_encode_mimeheader($s, $charset = null, $transferEncoding = null, $linefeed = null, $indent = null) + { + trigger_error('mb_encode_mimeheader() is bugged. Please use iconv_mime_encode() instead', \E_USER_WARNING); + } + + public static function mb_decode_numericentity($s, $convmap, $encoding = null) + { + if (null !== $s && !\is_scalar($s) && !(\is_object($s) && method_exists($s, '__toString'))) { + trigger_error('mb_decode_numericentity() expects parameter 1 to be string, '.\gettype($s).' given', \E_USER_WARNING); + + return null; + } + + if (!\is_array($convmap) || (80000 > \PHP_VERSION_ID && !$convmap)) { + return false; + } + + if (null !== $encoding && !\is_scalar($encoding)) { + trigger_error('mb_decode_numericentity() expects parameter 3 to be string, '.\gettype($s).' given', \E_USER_WARNING); + + return ''; // Instead of null (cf. mb_encode_numericentity). + } + + $s = (string) $s; + if ('' === $s) { + return ''; + } + + $encoding = self::getEncoding($encoding); + + if ('UTF-8' === $encoding) { + $encoding = null; + if (!preg_match('//u', $s)) { + $s = @iconv('UTF-8', 'UTF-8//IGNORE', $s); + } + } else { + $s = iconv($encoding, 'UTF-8//IGNORE', $s); + } + + $cnt = floor(\count($convmap) / 4) * 4; + + for ($i = 0; $i < $cnt; $i += 4) { + // collector_decode_htmlnumericentity ignores $convmap[$i + 3] + $convmap[$i] += $convmap[$i + 2]; + $convmap[$i + 1] += $convmap[$i + 2]; + } + + $s = preg_replace_callback('/&#(?:0*([0-9]+)|x0*([0-9a-fA-F]+))(?!&);?/', function (array $m) use ($cnt, $convmap) { + $c = isset($m[2]) ? (int) hexdec($m[2]) : $m[1]; + for ($i = 0; $i < $cnt; $i += 4) { + if ($c >= $convmap[$i] && $c <= $convmap[$i + 1]) { + return self::mb_chr($c - $convmap[$i + 2]); + } + } + + return $m[0]; + }, $s); + + if (null === $encoding) { + return $s; + } + + return iconv('UTF-8', $encoding.'//IGNORE', $s); + } + + public static function mb_encode_numericentity($s, $convmap, $encoding = null, $is_hex = false) + { + if (null !== $s && !\is_scalar($s) && !(\is_object($s) && method_exists($s, '__toString'))) { + trigger_error('mb_encode_numericentity() expects parameter 1 to be string, '.\gettype($s).' given', \E_USER_WARNING); + + return null; + } + + if (!\is_array($convmap) || (80000 > \PHP_VERSION_ID && !$convmap)) { + return false; + } + + if (null !== $encoding && !\is_scalar($encoding)) { + trigger_error('mb_encode_numericentity() expects parameter 3 to be string, '.\gettype($s).' given', \E_USER_WARNING); + + return null; // Instead of '' (cf. mb_decode_numericentity). + } + + if (null !== $is_hex && !\is_scalar($is_hex)) { + trigger_error('mb_encode_numericentity() expects parameter 4 to be boolean, '.\gettype($s).' given', \E_USER_WARNING); + + return null; + } + + $s = (string) $s; + if ('' === $s) { + return ''; + } + + $encoding = self::getEncoding($encoding); + + if ('UTF-8' === $encoding) { + $encoding = null; + if (!preg_match('//u', $s)) { + $s = @iconv('UTF-8', 'UTF-8//IGNORE', $s); + } + } else { + $s = iconv($encoding, 'UTF-8//IGNORE', $s); + } + + static $ulenMask = ["\xC0" => 2, "\xD0" => 2, "\xE0" => 3, "\xF0" => 4]; + + $cnt = floor(\count($convmap) / 4) * 4; + $i = 0; + $len = \strlen($s); + $result = ''; + + while ($i < $len) { + $ulen = $s[$i] < "\x80" ? 1 : $ulenMask[$s[$i] & "\xF0"]; + $uchr = substr($s, $i, $ulen); + $i += $ulen; + $c = self::mb_ord($uchr); + + for ($j = 0; $j < $cnt; $j += 4) { + if ($c >= $convmap[$j] && $c <= $convmap[$j + 1]) { + $cOffset = ($c + $convmap[$j + 2]) & $convmap[$j + 3]; + $result .= $is_hex ? sprintf('&#x%X;', $cOffset) : '&#'.$cOffset.';'; + continue 2; + } + } + $result .= $uchr; + } + + if (null === $encoding) { + return $result; + } + + return iconv('UTF-8', $encoding.'//IGNORE', $result); + } + + public static function mb_convert_case($s, $mode, $encoding = null) + { + $s = (string) $s; + if ('' === $s) { + return ''; + } + + $encoding = self::getEncoding($encoding); + + if ('UTF-8' === $encoding) { + $encoding = null; + if (!preg_match('//u', $s)) { + $s = @iconv('UTF-8', 'UTF-8//IGNORE', $s); + } + } else { + $s = iconv($encoding, 'UTF-8//IGNORE', $s); + } + + if (\MB_CASE_TITLE == $mode) { + static $titleRegexp = null; + if (null === $titleRegexp) { + $titleRegexp = self::getData('titleCaseRegexp'); + } + $s = preg_replace_callback($titleRegexp, [__CLASS__, 'title_case'], $s); + } else { + if (\MB_CASE_UPPER == $mode) { + static $upper = null; + if (null === $upper) { + $upper = self::getData('upperCase'); + } + $map = $upper; + } else { + if (self::MB_CASE_FOLD === $mode) { + static $caseFolding = null; + if (null === $caseFolding) { + $caseFolding = self::getData('caseFolding'); + } + $s = strtr($s, $caseFolding); + } + + static $lower = null; + if (null === $lower) { + $lower = self::getData('lowerCase'); + } + $map = $lower; + } + + static $ulenMask = ["\xC0" => 2, "\xD0" => 2, "\xE0" => 3, "\xF0" => 4]; + + $i = 0; + $len = \strlen($s); + + while ($i < $len) { + $ulen = $s[$i] < "\x80" ? 1 : $ulenMask[$s[$i] & "\xF0"]; + $uchr = substr($s, $i, $ulen); + $i += $ulen; + + if (isset($map[$uchr])) { + $uchr = $map[$uchr]; + $nlen = \strlen($uchr); + + if ($nlen == $ulen) { + $nlen = $i; + do { + $s[--$nlen] = $uchr[--$ulen]; + } while ($ulen); + } else { + $s = substr_replace($s, $uchr, $i - $ulen, $ulen); + $len += $nlen - $ulen; + $i += $nlen - $ulen; + } + } + } + } + + if (null === $encoding) { + return $s; + } + + return iconv('UTF-8', $encoding.'//IGNORE', $s); + } + + public static function mb_internal_encoding($encoding = null) + { + if (null === $encoding) { + return self::$internalEncoding; + } + + $normalizedEncoding = self::getEncoding($encoding); + + if ('UTF-8' === $normalizedEncoding || false !== @iconv($normalizedEncoding, $normalizedEncoding, ' ')) { + self::$internalEncoding = $normalizedEncoding; + + return true; + } + + if (80000 > \PHP_VERSION_ID) { + return false; + } + + throw new \ValueError(sprintf('Argument #1 ($encoding) must be a valid encoding, "%s" given', $encoding)); + } + + public static function mb_language($lang = null) + { + if (null === $lang) { + return self::$language; + } + + switch ($normalizedLang = strtolower($lang)) { + case 'uni': + case 'neutral': + self::$language = $normalizedLang; + + return true; + } + + if (80000 > \PHP_VERSION_ID) { + return false; + } + + throw new \ValueError(sprintf('Argument #1 ($language) must be a valid language, "%s" given', $lang)); + } + + public static function mb_list_encodings() + { + return ['UTF-8']; + } + + public static function mb_encoding_aliases($encoding) + { + switch (strtoupper($encoding)) { + case 'UTF8': + case 'UTF-8': + return ['utf8']; + } + + return false; + } + + public static function mb_check_encoding($var = null, $encoding = null) + { + if (PHP_VERSION_ID < 70200 && \is_array($var)) { + trigger_error('mb_check_encoding() expects parameter 1 to be string, array given', \E_USER_WARNING); + + return null; + } + + if (null === $encoding) { + if (null === $var) { + return false; + } + $encoding = self::$internalEncoding; + } + + if (!\is_array($var)) { + return self::mb_detect_encoding($var, [$encoding]) || false !== @iconv($encoding, $encoding, $var); + } + + foreach ($var as $key => $value) { + if (!self::mb_check_encoding($key, $encoding)) { + return false; + } + if (!self::mb_check_encoding($value, $encoding)) { + return false; + } + } + + return true; + + } + + public static function mb_detect_encoding($str, $encodingList = null, $strict = false) + { + if (null === $encodingList) { + $encodingList = self::$encodingList; + } else { + if (!\is_array($encodingList)) { + $encodingList = array_map('trim', explode(',', $encodingList)); + } + $encodingList = array_map('strtoupper', $encodingList); + } + + foreach ($encodingList as $enc) { + switch ($enc) { + case 'ASCII': + if (!preg_match('/[\x80-\xFF]/', $str)) { + return $enc; + } + break; + + case 'UTF8': + case 'UTF-8': + if (preg_match('//u', $str)) { + return 'UTF-8'; + } + break; + + default: + if (0 === strncmp($enc, 'ISO-8859-', 9)) { + return $enc; + } + } + } + + return false; + } + + public static function mb_detect_order($encodingList = null) + { + if (null === $encodingList) { + return self::$encodingList; + } + + if (!\is_array($encodingList)) { + $encodingList = array_map('trim', explode(',', $encodingList)); + } + $encodingList = array_map('strtoupper', $encodingList); + + foreach ($encodingList as $enc) { + switch ($enc) { + default: + if (strncmp($enc, 'ISO-8859-', 9)) { + return false; + } + // no break + case 'ASCII': + case 'UTF8': + case 'UTF-8': + } + } + + self::$encodingList = $encodingList; + + return true; + } + + public static function mb_strlen($s, $encoding = null) + { + $encoding = self::getEncoding($encoding); + if ('CP850' === $encoding || 'ASCII' === $encoding) { + return \strlen($s); + } + + return @iconv_strlen($s, $encoding); + } + + public static function mb_strpos($haystack, $needle, $offset = 0, $encoding = null) + { + $encoding = self::getEncoding($encoding); + if ('CP850' === $encoding || 'ASCII' === $encoding) { + return strpos($haystack, $needle, $offset); + } + + $needle = (string) $needle; + if ('' === $needle) { + if (80000 > \PHP_VERSION_ID) { + trigger_error(__METHOD__.': Empty delimiter', \E_USER_WARNING); + + return false; + } + + return 0; + } + + return iconv_strpos($haystack, $needle, $offset, $encoding); + } + + public static function mb_strrpos($haystack, $needle, $offset = 0, $encoding = null) + { + $encoding = self::getEncoding($encoding); + if ('CP850' === $encoding || 'ASCII' === $encoding) { + return strrpos($haystack, $needle, $offset); + } + + if ($offset != (int) $offset) { + $offset = 0; + } elseif ($offset = (int) $offset) { + if ($offset < 0) { + if (0 > $offset += self::mb_strlen($needle)) { + $haystack = self::mb_substr($haystack, 0, $offset, $encoding); + } + $offset = 0; + } else { + $haystack = self::mb_substr($haystack, $offset, 2147483647, $encoding); + } + } + + $pos = '' !== $needle || 80000 > \PHP_VERSION_ID + ? iconv_strrpos($haystack, $needle, $encoding) + : self::mb_strlen($haystack, $encoding); + + return false !== $pos ? $offset + $pos : false; + } + + public static function mb_str_split($string, $split_length = 1, $encoding = null) + { + if (null !== $string && !\is_scalar($string) && !(\is_object($string) && method_exists($string, '__toString'))) { + trigger_error('mb_str_split() expects parameter 1 to be string, '.\gettype($string).' given', \E_USER_WARNING); + + return null; + } + + if (1 > $split_length = (int) $split_length) { + if (80000 > \PHP_VERSION_ID) { + trigger_error('The length of each segment must be greater than zero', \E_USER_WARNING); + + return false; + } + + throw new \ValueError('Argument #2 ($length) must be greater than 0'); + } + + if (null === $encoding) { + $encoding = mb_internal_encoding(); + } + + if ('UTF-8' === $encoding = self::getEncoding($encoding)) { + $rx = '/('; + while (65535 < $split_length) { + $rx .= '.{65535}'; + $split_length -= 65535; + } + $rx .= '.{'.$split_length.'})/us'; + + return preg_split($rx, $string, -1, \PREG_SPLIT_DELIM_CAPTURE | \PREG_SPLIT_NO_EMPTY); + } + + $result = []; + $length = mb_strlen($string, $encoding); + + for ($i = 0; $i < $length; $i += $split_length) { + $result[] = mb_substr($string, $i, $split_length, $encoding); + } + + return $result; + } + + public static function mb_strtolower($s, $encoding = null) + { + return self::mb_convert_case($s, \MB_CASE_LOWER, $encoding); + } + + public static function mb_strtoupper($s, $encoding = null) + { + return self::mb_convert_case($s, \MB_CASE_UPPER, $encoding); + } + + public static function mb_substitute_character($c = null) + { + if (null === $c) { + return 'none'; + } + if (0 === strcasecmp($c, 'none')) { + return true; + } + if (80000 > \PHP_VERSION_ID) { + return false; + } + if (\is_int($c) || 'long' === $c || 'entity' === $c) { + return false; + } + + throw new \ValueError('Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepoint'); + } + + public static function mb_substr($s, $start, $length = null, $encoding = null) + { + $encoding = self::getEncoding($encoding); + if ('CP850' === $encoding || 'ASCII' === $encoding) { + return (string) substr($s, $start, null === $length ? 2147483647 : $length); + } + + if ($start < 0) { + $start = iconv_strlen($s, $encoding) + $start; + if ($start < 0) { + $start = 0; + } + } + + if (null === $length) { + $length = 2147483647; + } elseif ($length < 0) { + $length = iconv_strlen($s, $encoding) + $length - $start; + if ($length < 0) { + return ''; + } + } + + return (string) iconv_substr($s, $start, $length, $encoding); + } + + public static function mb_stripos($haystack, $needle, $offset = 0, $encoding = null) + { + [$haystack, $needle] = str_replace(self::SIMPLE_CASE_FOLD[0], self::SIMPLE_CASE_FOLD[1], [ + self::mb_convert_case($haystack, \MB_CASE_LOWER, $encoding), + self::mb_convert_case($needle, \MB_CASE_LOWER, $encoding), + ]); + + return self::mb_strpos($haystack, $needle, $offset, $encoding); + } + + public static function mb_stristr($haystack, $needle, $part = false, $encoding = null) + { + $pos = self::mb_stripos($haystack, $needle, 0, $encoding); + + return self::getSubpart($pos, $part, $haystack, $encoding); + } + + public static function mb_strrchr($haystack, $needle, $part = false, $encoding = null) + { + $encoding = self::getEncoding($encoding); + if ('CP850' === $encoding || 'ASCII' === $encoding) { + $pos = strrpos($haystack, $needle); + } else { + $needle = self::mb_substr($needle, 0, 1, $encoding); + $pos = iconv_strrpos($haystack, $needle, $encoding); + } + + return self::getSubpart($pos, $part, $haystack, $encoding); + } + + public static function mb_strrichr($haystack, $needle, $part = false, $encoding = null) + { + $needle = self::mb_substr($needle, 0, 1, $encoding); + $pos = self::mb_strripos($haystack, $needle, $encoding); + + return self::getSubpart($pos, $part, $haystack, $encoding); + } + + public static function mb_strripos($haystack, $needle, $offset = 0, $encoding = null) + { + $haystack = self::mb_convert_case($haystack, \MB_CASE_LOWER, $encoding); + $needle = self::mb_convert_case($needle, \MB_CASE_LOWER, $encoding); + + $haystack = str_replace(self::SIMPLE_CASE_FOLD[0], self::SIMPLE_CASE_FOLD[1], $haystack); + $needle = str_replace(self::SIMPLE_CASE_FOLD[0], self::SIMPLE_CASE_FOLD[1], $needle); + + return self::mb_strrpos($haystack, $needle, $offset, $encoding); + } + + public static function mb_strstr($haystack, $needle, $part = false, $encoding = null) + { + $pos = strpos($haystack, $needle); + if (false === $pos) { + return false; + } + if ($part) { + return substr($haystack, 0, $pos); + } + + return substr($haystack, $pos); + } + + public static function mb_get_info($type = 'all') + { + $info = [ + 'internal_encoding' => self::$internalEncoding, + 'http_output' => 'pass', + 'http_output_conv_mimetypes' => '^(text/|application/xhtml\+xml)', + 'func_overload' => 0, + 'func_overload_list' => 'no overload', + 'mail_charset' => 'UTF-8', + 'mail_header_encoding' => 'BASE64', + 'mail_body_encoding' => 'BASE64', + 'illegal_chars' => 0, + 'encoding_translation' => 'Off', + 'language' => self::$language, + 'detect_order' => self::$encodingList, + 'substitute_character' => 'none', + 'strict_detection' => 'Off', + ]; + + if ('all' === $type) { + return $info; + } + if (isset($info[$type])) { + return $info[$type]; + } + + return false; + } + + public static function mb_http_input($type = '') + { + return false; + } + + public static function mb_http_output($encoding = null) + { + return null !== $encoding ? 'pass' === $encoding : 'pass'; + } + + public static function mb_strwidth($s, $encoding = null) + { + $encoding = self::getEncoding($encoding); + + if ('UTF-8' !== $encoding) { + $s = iconv($encoding, 'UTF-8//IGNORE', $s); + } + + $s = preg_replace('/[\x{1100}-\x{115F}\x{2329}\x{232A}\x{2E80}-\x{303E}\x{3040}-\x{A4CF}\x{AC00}-\x{D7A3}\x{F900}-\x{FAFF}\x{FE10}-\x{FE19}\x{FE30}-\x{FE6F}\x{FF00}-\x{FF60}\x{FFE0}-\x{FFE6}\x{20000}-\x{2FFFD}\x{30000}-\x{3FFFD}]/u', '', $s, -1, $wide); + + return ($wide << 1) + iconv_strlen($s, 'UTF-8'); + } + + public static function mb_substr_count($haystack, $needle, $encoding = null) + { + return substr_count($haystack, $needle); + } + + public static function mb_output_handler($contents, $status) + { + return $contents; + } + + public static function mb_chr($code, $encoding = null) + { + if (0x80 > $code %= 0x200000) { + $s = \chr($code); + } elseif (0x800 > $code) { + $s = \chr(0xC0 | $code >> 6).\chr(0x80 | $code & 0x3F); + } elseif (0x10000 > $code) { + $s = \chr(0xE0 | $code >> 12).\chr(0x80 | $code >> 6 & 0x3F).\chr(0x80 | $code & 0x3F); + } else { + $s = \chr(0xF0 | $code >> 18).\chr(0x80 | $code >> 12 & 0x3F).\chr(0x80 | $code >> 6 & 0x3F).\chr(0x80 | $code & 0x3F); + } + + if ('UTF-8' !== $encoding = self::getEncoding($encoding)) { + $s = mb_convert_encoding($s, $encoding, 'UTF-8'); + } + + return $s; + } + + public static function mb_ord($s, $encoding = null) + { + if ('UTF-8' !== $encoding = self::getEncoding($encoding)) { + $s = mb_convert_encoding($s, 'UTF-8', $encoding); + } + + if (1 === \strlen($s)) { + return \ord($s); + } + + $code = ($s = unpack('C*', substr($s, 0, 4))) ? $s[1] : 0; + if (0xF0 <= $code) { + return (($code - 0xF0) << 18) + (($s[2] - 0x80) << 12) + (($s[3] - 0x80) << 6) + $s[4] - 0x80; + } + if (0xE0 <= $code) { + return (($code - 0xE0) << 12) + (($s[2] - 0x80) << 6) + $s[3] - 0x80; + } + if (0xC0 <= $code) { + return (($code - 0xC0) << 6) + $s[2] - 0x80; + } + + return $code; + } + + public static function mb_str_pad(string $string, int $length, string $pad_string = ' ', int $pad_type = \STR_PAD_RIGHT, string $encoding = null): string + { + if (!\in_array($pad_type, [\STR_PAD_RIGHT, \STR_PAD_LEFT, \STR_PAD_BOTH], true)) { + throw new \ValueError('mb_str_pad(): Argument #4 ($pad_type) must be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH'); + } + + if (null === $encoding) { + $encoding = self::mb_internal_encoding(); + } + + try { + $validEncoding = @self::mb_check_encoding('', $encoding); + } catch (\ValueError $e) { + throw new \ValueError(sprintf('mb_str_pad(): Argument #5 ($encoding) must be a valid encoding, "%s" given', $encoding)); + } + + // BC for PHP 7.3 and lower + if (!$validEncoding) { + throw new \ValueError(sprintf('mb_str_pad(): Argument #5 ($encoding) must be a valid encoding, "%s" given', $encoding)); + } + + if (self::mb_strlen($pad_string, $encoding) <= 0) { + throw new \ValueError('mb_str_pad(): Argument #3 ($pad_string) must be a non-empty string'); + } + + $paddingRequired = $length - self::mb_strlen($string, $encoding); + + if ($paddingRequired < 1) { + return $string; + } + + switch ($pad_type) { + case \STR_PAD_LEFT: + return self::mb_substr(str_repeat($pad_string, $paddingRequired), 0, $paddingRequired, $encoding).$string; + case \STR_PAD_RIGHT: + return $string.self::mb_substr(str_repeat($pad_string, $paddingRequired), 0, $paddingRequired, $encoding); + default: + $leftPaddingLength = floor($paddingRequired / 2); + $rightPaddingLength = $paddingRequired - $leftPaddingLength; + + return self::mb_substr(str_repeat($pad_string, $leftPaddingLength), 0, $leftPaddingLength, $encoding).$string.self::mb_substr(str_repeat($pad_string, $rightPaddingLength), 0, $rightPaddingLength, $encoding); + } + } + + private static function getSubpart($pos, $part, $haystack, $encoding) + { + if (false === $pos) { + return false; + } + if ($part) { + return self::mb_substr($haystack, 0, $pos, $encoding); + } + + return self::mb_substr($haystack, $pos, null, $encoding); + } + + private static function html_encoding_callback(array $m) + { + $i = 1; + $entities = ''; + $m = unpack('C*', htmlentities($m[0], \ENT_COMPAT, 'UTF-8')); + + while (isset($m[$i])) { + if (0x80 > $m[$i]) { + $entities .= \chr($m[$i++]); + continue; + } + if (0xF0 <= $m[$i]) { + $c = (($m[$i++] - 0xF0) << 18) + (($m[$i++] - 0x80) << 12) + (($m[$i++] - 0x80) << 6) + $m[$i++] - 0x80; + } elseif (0xE0 <= $m[$i]) { + $c = (($m[$i++] - 0xE0) << 12) + (($m[$i++] - 0x80) << 6) + $m[$i++] - 0x80; + } else { + $c = (($m[$i++] - 0xC0) << 6) + $m[$i++] - 0x80; + } + + $entities .= '&#'.$c.';'; + } + + return $entities; + } + + private static function title_case(array $s) + { + return self::mb_convert_case($s[1], \MB_CASE_UPPER, 'UTF-8').self::mb_convert_case($s[2], \MB_CASE_LOWER, 'UTF-8'); + } + + private static function getData($file) + { + if (file_exists($file = __DIR__.'/Resources/unidata/'.$file.'.php')) { + return require $file; + } + + return false; + } + + private static function getEncoding($encoding) + { + if (null === $encoding) { + return self::$internalEncoding; + } + + if ('UTF-8' === $encoding) { + return 'UTF-8'; + } + + $encoding = strtoupper($encoding); + + if ('8BIT' === $encoding || 'BINARY' === $encoding) { + return 'CP850'; + } + + if ('UTF8' === $encoding) { + return 'UTF-8'; + } + + return $encoding; + } +} diff --git a/Sources/vendor/symfony/polyfill-mbstring/README.md b/Sources/vendor/symfony/polyfill-mbstring/README.md new file mode 100644 index 00000000..478b40da --- /dev/null +++ b/Sources/vendor/symfony/polyfill-mbstring/README.md @@ -0,0 +1,13 @@ +Symfony Polyfill / Mbstring +=========================== + +This component provides a partial, native PHP implementation for the +[Mbstring](https://php.net/mbstring) extension. + +More information can be found in the +[main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md). + +License +======= + +This library is released under the [MIT license](LICENSE). diff --git a/Sources/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php b/Sources/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php new file mode 100644 index 00000000..512bba0b --- /dev/null +++ b/Sources/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php @@ -0,0 +1,119 @@ + 'i̇', + 'µ' => 'μ', + 'ſ' => 's', + 'ͅ' => 'ι', + 'ς' => 'σ', + 'ϐ' => 'β', + 'ϑ' => 'θ', + 'ϕ' => 'φ', + 'ϖ' => 'π', + 'ϰ' => 'κ', + 'ϱ' => 'ρ', + 'ϵ' => 'ε', + 'ẛ' => 'ṡ', + 'ι' => 'ι', + 'ß' => 'ss', + 'ʼn' => 'ʼn', + 'ǰ' => 'ǰ', + 'ΐ' => 'ΐ', + 'ΰ' => 'ΰ', + 'և' => 'եւ', + 'ẖ' => 'ẖ', + 'ẗ' => 'ẗ', + 'ẘ' => 'ẘ', + 'ẙ' => 'ẙ', + 'ẚ' => 'aʾ', + 'ẞ' => 'ss', + 'ὐ' => 'ὐ', + 'ὒ' => 'ὒ', + 'ὔ' => 'ὔ', + 'ὖ' => 'ὖ', + 'ᾀ' => 'ἀι', + 'ᾁ' => 'ἁι', + 'ᾂ' => 'ἂι', + 'ᾃ' => 'ἃι', + 'ᾄ' => 'ἄι', + 'ᾅ' => 'ἅι', + 'ᾆ' => 'ἆι', + 'ᾇ' => 'ἇι', + 'ᾈ' => 'ἀι', + 'ᾉ' => 'ἁι', + 'ᾊ' => 'ἂι', + 'ᾋ' => 'ἃι', + 'ᾌ' => 'ἄι', + 'ᾍ' => 'ἅι', + 'ᾎ' => 'ἆι', + 'ᾏ' => 'ἇι', + 'ᾐ' => 'ἠι', + 'ᾑ' => 'ἡι', + 'ᾒ' => 'ἢι', + 'ᾓ' => 'ἣι', + 'ᾔ' => 'ἤι', + 'ᾕ' => 'ἥι', + 'ᾖ' => 'ἦι', + 'ᾗ' => 'ἧι', + 'ᾘ' => 'ἠι', + 'ᾙ' => 'ἡι', + 'ᾚ' => 'ἢι', + 'ᾛ' => 'ἣι', + 'ᾜ' => 'ἤι', + 'ᾝ' => 'ἥι', + 'ᾞ' => 'ἦι', + 'ᾟ' => 'ἧι', + 'ᾠ' => 'ὠι', + 'ᾡ' => 'ὡι', + 'ᾢ' => 'ὢι', + 'ᾣ' => 'ὣι', + 'ᾤ' => 'ὤι', + 'ᾥ' => 'ὥι', + 'ᾦ' => 'ὦι', + 'ᾧ' => 'ὧι', + 'ᾨ' => 'ὠι', + 'ᾩ' => 'ὡι', + 'ᾪ' => 'ὢι', + 'ᾫ' => 'ὣι', + 'ᾬ' => 'ὤι', + 'ᾭ' => 'ὥι', + 'ᾮ' => 'ὦι', + 'ᾯ' => 'ὧι', + 'ᾲ' => 'ὰι', + 'ᾳ' => 'αι', + 'ᾴ' => 'άι', + 'ᾶ' => 'ᾶ', + 'ᾷ' => 'ᾶι', + 'ᾼ' => 'αι', + 'ῂ' => 'ὴι', + 'ῃ' => 'ηι', + 'ῄ' => 'ήι', + 'ῆ' => 'ῆ', + 'ῇ' => 'ῆι', + 'ῌ' => 'ηι', + 'ῒ' => 'ῒ', + 'ῖ' => 'ῖ', + 'ῗ' => 'ῗ', + 'ῢ' => 'ῢ', + 'ῤ' => 'ῤ', + 'ῦ' => 'ῦ', + 'ῧ' => 'ῧ', + 'ῲ' => 'ὼι', + 'ῳ' => 'ωι', + 'ῴ' => 'ώι', + 'ῶ' => 'ῶ', + 'ῷ' => 'ῶι', + 'ῼ' => 'ωι', + 'ff' => 'ff', + 'fi' => 'fi', + 'fl' => 'fl', + 'ffi' => 'ffi', + 'ffl' => 'ffl', + 'ſt' => 'st', + 'st' => 'st', + 'ﬓ' => 'մն', + 'ﬔ' => 'մե', + 'ﬕ' => 'մի', + 'ﬖ' => 'վն', + 'ﬗ' => 'մխ', +]; diff --git a/Sources/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php b/Sources/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php new file mode 100644 index 00000000..fac60b08 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php @@ -0,0 +1,1397 @@ + 'a', + 'B' => 'b', + 'C' => 'c', + 'D' => 'd', + 'E' => 'e', + 'F' => 'f', + 'G' => 'g', + 'H' => 'h', + 'I' => 'i', + 'J' => 'j', + 'K' => 'k', + 'L' => 'l', + 'M' => 'm', + 'N' => 'n', + 'O' => 'o', + 'P' => 'p', + 'Q' => 'q', + 'R' => 'r', + 'S' => 's', + 'T' => 't', + 'U' => 'u', + 'V' => 'v', + 'W' => 'w', + 'X' => 'x', + 'Y' => 'y', + 'Z' => 'z', + 'À' => 'à', + 'Á' => 'á', + 'Â' => 'â', + 'Ã' => 'ã', + 'Ä' => 'ä', + 'Å' => 'å', + 'Æ' => 'æ', + 'Ç' => 'ç', + 'È' => 'è', + 'É' => 'é', + 'Ê' => 'ê', + 'Ë' => 'ë', + 'Ì' => 'ì', + 'Í' => 'í', + 'Î' => 'î', + 'Ï' => 'ï', + 'Ð' => 'ð', + 'Ñ' => 'ñ', + 'Ò' => 'ò', + 'Ó' => 'ó', + 'Ô' => 'ô', + 'Õ' => 'õ', + 'Ö' => 'ö', + 'Ø' => 'ø', + 'Ù' => 'ù', + 'Ú' => 'ú', + 'Û' => 'û', + 'Ü' => 'ü', + 'Ý' => 'ý', + 'Þ' => 'þ', + 'Ā' => 'ā', + 'Ă' => 'ă', + 'Ą' => 'ą', + 'Ć' => 'ć', + 'Ĉ' => 'ĉ', + 'Ċ' => 'ċ', + 'Č' => 'č', + 'Ď' => 'ď', + 'Đ' => 'đ', + 'Ē' => 'ē', + 'Ĕ' => 'ĕ', + 'Ė' => 'ė', + 'Ę' => 'ę', + 'Ě' => 'ě', + 'Ĝ' => 'ĝ', + 'Ğ' => 'ğ', + 'Ġ' => 'ġ', + 'Ģ' => 'ģ', + 'Ĥ' => 'ĥ', + 'Ħ' => 'ħ', + 'Ĩ' => 'ĩ', + 'Ī' => 'ī', + 'Ĭ' => 'ĭ', + 'Į' => 'į', + 'İ' => 'i̇', + 'IJ' => 'ij', + 'Ĵ' => 'ĵ', + 'Ķ' => 'ķ', + 'Ĺ' => 'ĺ', + 'Ļ' => 'ļ', + 'Ľ' => 'ľ', + 'Ŀ' => 'ŀ', + 'Ł' => 'ł', + 'Ń' => 'ń', + 'Ņ' => 'ņ', + 'Ň' => 'ň', + 'Ŋ' => 'ŋ', + 'Ō' => 'ō', + 'Ŏ' => 'ŏ', + 'Ő' => 'ő', + 'Œ' => 'œ', + 'Ŕ' => 'ŕ', + 'Ŗ' => 'ŗ', + 'Ř' => 'ř', + 'Ś' => 'ś', + 'Ŝ' => 'ŝ', + 'Ş' => 'ş', + 'Š' => 'š', + 'Ţ' => 'ţ', + 'Ť' => 'ť', + 'Ŧ' => 'ŧ', + 'Ũ' => 'ũ', + 'Ū' => 'ū', + 'Ŭ' => 'ŭ', + 'Ů' => 'ů', + 'Ű' => 'ű', + 'Ų' => 'ų', + 'Ŵ' => 'ŵ', + 'Ŷ' => 'ŷ', + 'Ÿ' => 'ÿ', + 'Ź' => 'ź', + 'Ż' => 'ż', + 'Ž' => 'ž', + 'Ɓ' => 'ɓ', + 'Ƃ' => 'ƃ', + 'Ƅ' => 'ƅ', + 'Ɔ' => 'ɔ', + 'Ƈ' => 'ƈ', + 'Ɖ' => 'ɖ', + 'Ɗ' => 'ɗ', + 'Ƌ' => 'ƌ', + 'Ǝ' => 'ǝ', + 'Ə' => 'ə', + 'Ɛ' => 'ɛ', + 'Ƒ' => 'ƒ', + 'Ɠ' => 'ɠ', + 'Ɣ' => 'ɣ', + 'Ɩ' => 'ɩ', + 'Ɨ' => 'ɨ', + 'Ƙ' => 'ƙ', + 'Ɯ' => 'ɯ', + 'Ɲ' => 'ɲ', + 'Ɵ' => 'ɵ', + 'Ơ' => 'ơ', + 'Ƣ' => 'ƣ', + 'Ƥ' => 'ƥ', + 'Ʀ' => 'ʀ', + 'Ƨ' => 'ƨ', + 'Ʃ' => 'ʃ', + 'Ƭ' => 'ƭ', + 'Ʈ' => 'ʈ', + 'Ư' => 'ư', + 'Ʊ' => 'ʊ', + 'Ʋ' => 'ʋ', + 'Ƴ' => 'ƴ', + 'Ƶ' => 'ƶ', + 'Ʒ' => 'ʒ', + 'Ƹ' => 'ƹ', + 'Ƽ' => 'ƽ', + 'DŽ' => 'dž', + 'Dž' => 'dž', + 'LJ' => 'lj', + 'Lj' => 'lj', + 'NJ' => 'nj', + 'Nj' => 'nj', + 'Ǎ' => 'ǎ', + 'Ǐ' => 'ǐ', + 'Ǒ' => 'ǒ', + 'Ǔ' => 'ǔ', + 'Ǖ' => 'ǖ', + 'Ǘ' => 'ǘ', + 'Ǚ' => 'ǚ', + 'Ǜ' => 'ǜ', + 'Ǟ' => 'ǟ', + 'Ǡ' => 'ǡ', + 'Ǣ' => 'ǣ', + 'Ǥ' => 'ǥ', + 'Ǧ' => 'ǧ', + 'Ǩ' => 'ǩ', + 'Ǫ' => 'ǫ', + 'Ǭ' => 'ǭ', + 'Ǯ' => 'ǯ', + 'DZ' => 'dz', + 'Dz' => 'dz', + 'Ǵ' => 'ǵ', + 'Ƕ' => 'ƕ', + 'Ƿ' => 'ƿ', + 'Ǹ' => 'ǹ', + 'Ǻ' => 'ǻ', + 'Ǽ' => 'ǽ', + 'Ǿ' => 'ǿ', + 'Ȁ' => 'ȁ', + 'Ȃ' => 'ȃ', + 'Ȅ' => 'ȅ', + 'Ȇ' => 'ȇ', + 'Ȉ' => 'ȉ', + 'Ȋ' => 'ȋ', + 'Ȍ' => 'ȍ', + 'Ȏ' => 'ȏ', + 'Ȑ' => 'ȑ', + 'Ȓ' => 'ȓ', + 'Ȕ' => 'ȕ', + 'Ȗ' => 'ȗ', + 'Ș' => 'ș', + 'Ț' => 'ț', + 'Ȝ' => 'ȝ', + 'Ȟ' => 'ȟ', + 'Ƞ' => 'ƞ', + 'Ȣ' => 'ȣ', + 'Ȥ' => 'ȥ', + 'Ȧ' => 'ȧ', + 'Ȩ' => 'ȩ', + 'Ȫ' => 'ȫ', + 'Ȭ' => 'ȭ', + 'Ȯ' => 'ȯ', + 'Ȱ' => 'ȱ', + 'Ȳ' => 'ȳ', + 'Ⱥ' => 'ⱥ', + 'Ȼ' => 'ȼ', + 'Ƚ' => 'ƚ', + 'Ⱦ' => 'ⱦ', + 'Ɂ' => 'ɂ', + 'Ƀ' => 'ƀ', + 'Ʉ' => 'ʉ', + 'Ʌ' => 'ʌ', + 'Ɇ' => 'ɇ', + 'Ɉ' => 'ɉ', + 'Ɋ' => 'ɋ', + 'Ɍ' => 'ɍ', + 'Ɏ' => 'ɏ', + 'Ͱ' => 'ͱ', + 'Ͳ' => 'ͳ', + 'Ͷ' => 'ͷ', + 'Ϳ' => 'ϳ', + 'Ά' => 'ά', + 'Έ' => 'έ', + 'Ή' => 'ή', + 'Ί' => 'ί', + 'Ό' => 'ό', + 'Ύ' => 'ύ', + 'Ώ' => 'ώ', + 'Α' => 'α', + 'Β' => 'β', + 'Γ' => 'γ', + 'Δ' => 'δ', + 'Ε' => 'ε', + 'Ζ' => 'ζ', + 'Η' => 'η', + 'Θ' => 'θ', + 'Ι' => 'ι', + 'Κ' => 'κ', + 'Λ' => 'λ', + 'Μ' => 'μ', + 'Ν' => 'ν', + 'Ξ' => 'ξ', + 'Ο' => 'ο', + 'Π' => 'π', + 'Ρ' => 'ρ', + 'Σ' => 'σ', + 'Τ' => 'τ', + 'Υ' => 'υ', + 'Φ' => 'φ', + 'Χ' => 'χ', + 'Ψ' => 'ψ', + 'Ω' => 'ω', + 'Ϊ' => 'ϊ', + 'Ϋ' => 'ϋ', + 'Ϗ' => 'ϗ', + 'Ϙ' => 'ϙ', + 'Ϛ' => 'ϛ', + 'Ϝ' => 'ϝ', + 'Ϟ' => 'ϟ', + 'Ϡ' => 'ϡ', + 'Ϣ' => 'ϣ', + 'Ϥ' => 'ϥ', + 'Ϧ' => 'ϧ', + 'Ϩ' => 'ϩ', + 'Ϫ' => 'ϫ', + 'Ϭ' => 'ϭ', + 'Ϯ' => 'ϯ', + 'ϴ' => 'θ', + 'Ϸ' => 'ϸ', + 'Ϲ' => 'ϲ', + 'Ϻ' => 'ϻ', + 'Ͻ' => 'ͻ', + 'Ͼ' => 'ͼ', + 'Ͽ' => 'ͽ', + 'Ѐ' => 'ѐ', + 'Ё' => 'ё', + 'Ђ' => 'ђ', + 'Ѓ' => 'ѓ', + 'Є' => 'є', + 'Ѕ' => 'ѕ', + 'І' => 'і', + 'Ї' => 'ї', + 'Ј' => 'ј', + 'Љ' => 'љ', + 'Њ' => 'њ', + 'Ћ' => 'ћ', + 'Ќ' => 'ќ', + 'Ѝ' => 'ѝ', + 'Ў' => 'ў', + 'Џ' => 'џ', + 'А' => 'а', + 'Б' => 'б', + 'В' => 'в', + 'Г' => 'г', + 'Д' => 'д', + 'Е' => 'е', + 'Ж' => 'ж', + 'З' => 'з', + 'И' => 'и', + 'Й' => 'й', + 'К' => 'к', + 'Л' => 'л', + 'М' => 'м', + 'Н' => 'н', + 'О' => 'о', + 'П' => 'п', + 'Р' => 'р', + 'С' => 'с', + 'Т' => 'т', + 'У' => 'у', + 'Ф' => 'ф', + 'Х' => 'х', + 'Ц' => 'ц', + 'Ч' => 'ч', + 'Ш' => 'ш', + 'Щ' => 'щ', + 'Ъ' => 'ъ', + 'Ы' => 'ы', + 'Ь' => 'ь', + 'Э' => 'э', + 'Ю' => 'ю', + 'Я' => 'я', + 'Ѡ' => 'ѡ', + 'Ѣ' => 'ѣ', + 'Ѥ' => 'ѥ', + 'Ѧ' => 'ѧ', + 'Ѩ' => 'ѩ', + 'Ѫ' => 'ѫ', + 'Ѭ' => 'ѭ', + 'Ѯ' => 'ѯ', + 'Ѱ' => 'ѱ', + 'Ѳ' => 'ѳ', + 'Ѵ' => 'ѵ', + 'Ѷ' => 'ѷ', + 'Ѹ' => 'ѹ', + 'Ѻ' => 'ѻ', + 'Ѽ' => 'ѽ', + 'Ѿ' => 'ѿ', + 'Ҁ' => 'ҁ', + 'Ҋ' => 'ҋ', + 'Ҍ' => 'ҍ', + 'Ҏ' => 'ҏ', + 'Ґ' => 'ґ', + 'Ғ' => 'ғ', + 'Ҕ' => 'ҕ', + 'Җ' => 'җ', + 'Ҙ' => 'ҙ', + 'Қ' => 'қ', + 'Ҝ' => 'ҝ', + 'Ҟ' => 'ҟ', + 'Ҡ' => 'ҡ', + 'Ң' => 'ң', + 'Ҥ' => 'ҥ', + 'Ҧ' => 'ҧ', + 'Ҩ' => 'ҩ', + 'Ҫ' => 'ҫ', + 'Ҭ' => 'ҭ', + 'Ү' => 'ү', + 'Ұ' => 'ұ', + 'Ҳ' => 'ҳ', + 'Ҵ' => 'ҵ', + 'Ҷ' => 'ҷ', + 'Ҹ' => 'ҹ', + 'Һ' => 'һ', + 'Ҽ' => 'ҽ', + 'Ҿ' => 'ҿ', + 'Ӏ' => 'ӏ', + 'Ӂ' => 'ӂ', + 'Ӄ' => 'ӄ', + 'Ӆ' => 'ӆ', + 'Ӈ' => 'ӈ', + 'Ӊ' => 'ӊ', + 'Ӌ' => 'ӌ', + 'Ӎ' => 'ӎ', + 'Ӑ' => 'ӑ', + 'Ӓ' => 'ӓ', + 'Ӕ' => 'ӕ', + 'Ӗ' => 'ӗ', + 'Ә' => 'ә', + 'Ӛ' => 'ӛ', + 'Ӝ' => 'ӝ', + 'Ӟ' => 'ӟ', + 'Ӡ' => 'ӡ', + 'Ӣ' => 'ӣ', + 'Ӥ' => 'ӥ', + 'Ӧ' => 'ӧ', + 'Ө' => 'ө', + 'Ӫ' => 'ӫ', + 'Ӭ' => 'ӭ', + 'Ӯ' => 'ӯ', + 'Ӱ' => 'ӱ', + 'Ӳ' => 'ӳ', + 'Ӵ' => 'ӵ', + 'Ӷ' => 'ӷ', + 'Ӹ' => 'ӹ', + 'Ӻ' => 'ӻ', + 'Ӽ' => 'ӽ', + 'Ӿ' => 'ӿ', + 'Ԁ' => 'ԁ', + 'Ԃ' => 'ԃ', + 'Ԅ' => 'ԅ', + 'Ԇ' => 'ԇ', + 'Ԉ' => 'ԉ', + 'Ԋ' => 'ԋ', + 'Ԍ' => 'ԍ', + 'Ԏ' => 'ԏ', + 'Ԑ' => 'ԑ', + 'Ԓ' => 'ԓ', + 'Ԕ' => 'ԕ', + 'Ԗ' => 'ԗ', + 'Ԙ' => 'ԙ', + 'Ԛ' => 'ԛ', + 'Ԝ' => 'ԝ', + 'Ԟ' => 'ԟ', + 'Ԡ' => 'ԡ', + 'Ԣ' => 'ԣ', + 'Ԥ' => 'ԥ', + 'Ԧ' => 'ԧ', + 'Ԩ' => 'ԩ', + 'Ԫ' => 'ԫ', + 'Ԭ' => 'ԭ', + 'Ԯ' => 'ԯ', + 'Ա' => 'ա', + 'Բ' => 'բ', + 'Գ' => 'գ', + 'Դ' => 'դ', + 'Ե' => 'ե', + 'Զ' => 'զ', + 'Է' => 'է', + 'Ը' => 'ը', + 'Թ' => 'թ', + 'Ժ' => 'ժ', + 'Ի' => 'ի', + 'Լ' => 'լ', + 'Խ' => 'խ', + 'Ծ' => 'ծ', + 'Կ' => 'կ', + 'Հ' => 'հ', + 'Ձ' => 'ձ', + 'Ղ' => 'ղ', + 'Ճ' => 'ճ', + 'Մ' => 'մ', + 'Յ' => 'յ', + 'Ն' => 'ն', + 'Շ' => 'շ', + 'Ո' => 'ո', + 'Չ' => 'չ', + 'Պ' => 'պ', + 'Ջ' => 'ջ', + 'Ռ' => 'ռ', + 'Ս' => 'ս', + 'Վ' => 'վ', + 'Տ' => 'տ', + 'Ր' => 'ր', + 'Ց' => 'ց', + 'Ւ' => 'ւ', + 'Փ' => 'փ', + 'Ք' => 'ք', + 'Օ' => 'օ', + 'Ֆ' => 'ֆ', + 'Ⴀ' => 'ⴀ', + 'Ⴁ' => 'ⴁ', + 'Ⴂ' => 'ⴂ', + 'Ⴃ' => 'ⴃ', + 'Ⴄ' => 'ⴄ', + 'Ⴅ' => 'ⴅ', + 'Ⴆ' => 'ⴆ', + 'Ⴇ' => 'ⴇ', + 'Ⴈ' => 'ⴈ', + 'Ⴉ' => 'ⴉ', + 'Ⴊ' => 'ⴊ', + 'Ⴋ' => 'ⴋ', + 'Ⴌ' => 'ⴌ', + 'Ⴍ' => 'ⴍ', + 'Ⴎ' => 'ⴎ', + 'Ⴏ' => 'ⴏ', + 'Ⴐ' => 'ⴐ', + 'Ⴑ' => 'ⴑ', + 'Ⴒ' => 'ⴒ', + 'Ⴓ' => 'ⴓ', + 'Ⴔ' => 'ⴔ', + 'Ⴕ' => 'ⴕ', + 'Ⴖ' => 'ⴖ', + 'Ⴗ' => 'ⴗ', + 'Ⴘ' => 'ⴘ', + 'Ⴙ' => 'ⴙ', + 'Ⴚ' => 'ⴚ', + 'Ⴛ' => 'ⴛ', + 'Ⴜ' => 'ⴜ', + 'Ⴝ' => 'ⴝ', + 'Ⴞ' => 'ⴞ', + 'Ⴟ' => 'ⴟ', + 'Ⴠ' => 'ⴠ', + 'Ⴡ' => 'ⴡ', + 'Ⴢ' => 'ⴢ', + 'Ⴣ' => 'ⴣ', + 'Ⴤ' => 'ⴤ', + 'Ⴥ' => 'ⴥ', + 'Ⴧ' => 'ⴧ', + 'Ⴭ' => 'ⴭ', + 'Ꭰ' => 'ꭰ', + 'Ꭱ' => 'ꭱ', + 'Ꭲ' => 'ꭲ', + 'Ꭳ' => 'ꭳ', + 'Ꭴ' => 'ꭴ', + 'Ꭵ' => 'ꭵ', + 'Ꭶ' => 'ꭶ', + 'Ꭷ' => 'ꭷ', + 'Ꭸ' => 'ꭸ', + 'Ꭹ' => 'ꭹ', + 'Ꭺ' => 'ꭺ', + 'Ꭻ' => 'ꭻ', + 'Ꭼ' => 'ꭼ', + 'Ꭽ' => 'ꭽ', + 'Ꭾ' => 'ꭾ', + 'Ꭿ' => 'ꭿ', + 'Ꮀ' => 'ꮀ', + 'Ꮁ' => 'ꮁ', + 'Ꮂ' => 'ꮂ', + 'Ꮃ' => 'ꮃ', + 'Ꮄ' => 'ꮄ', + 'Ꮅ' => 'ꮅ', + 'Ꮆ' => 'ꮆ', + 'Ꮇ' => 'ꮇ', + 'Ꮈ' => 'ꮈ', + 'Ꮉ' => 'ꮉ', + 'Ꮊ' => 'ꮊ', + 'Ꮋ' => 'ꮋ', + 'Ꮌ' => 'ꮌ', + 'Ꮍ' => 'ꮍ', + 'Ꮎ' => 'ꮎ', + 'Ꮏ' => 'ꮏ', + 'Ꮐ' => 'ꮐ', + 'Ꮑ' => 'ꮑ', + 'Ꮒ' => 'ꮒ', + 'Ꮓ' => 'ꮓ', + 'Ꮔ' => 'ꮔ', + 'Ꮕ' => 'ꮕ', + 'Ꮖ' => 'ꮖ', + 'Ꮗ' => 'ꮗ', + 'Ꮘ' => 'ꮘ', + 'Ꮙ' => 'ꮙ', + 'Ꮚ' => 'ꮚ', + 'Ꮛ' => 'ꮛ', + 'Ꮜ' => 'ꮜ', + 'Ꮝ' => 'ꮝ', + 'Ꮞ' => 'ꮞ', + 'Ꮟ' => 'ꮟ', + 'Ꮠ' => 'ꮠ', + 'Ꮡ' => 'ꮡ', + 'Ꮢ' => 'ꮢ', + 'Ꮣ' => 'ꮣ', + 'Ꮤ' => 'ꮤ', + 'Ꮥ' => 'ꮥ', + 'Ꮦ' => 'ꮦ', + 'Ꮧ' => 'ꮧ', + 'Ꮨ' => 'ꮨ', + 'Ꮩ' => 'ꮩ', + 'Ꮪ' => 'ꮪ', + 'Ꮫ' => 'ꮫ', + 'Ꮬ' => 'ꮬ', + 'Ꮭ' => 'ꮭ', + 'Ꮮ' => 'ꮮ', + 'Ꮯ' => 'ꮯ', + 'Ꮰ' => 'ꮰ', + 'Ꮱ' => 'ꮱ', + 'Ꮲ' => 'ꮲ', + 'Ꮳ' => 'ꮳ', + 'Ꮴ' => 'ꮴ', + 'Ꮵ' => 'ꮵ', + 'Ꮶ' => 'ꮶ', + 'Ꮷ' => 'ꮷ', + 'Ꮸ' => 'ꮸ', + 'Ꮹ' => 'ꮹ', + 'Ꮺ' => 'ꮺ', + 'Ꮻ' => 'ꮻ', + 'Ꮼ' => 'ꮼ', + 'Ꮽ' => 'ꮽ', + 'Ꮾ' => 'ꮾ', + 'Ꮿ' => 'ꮿ', + 'Ᏸ' => 'ᏸ', + 'Ᏹ' => 'ᏹ', + 'Ᏺ' => 'ᏺ', + 'Ᏻ' => 'ᏻ', + 'Ᏼ' => 'ᏼ', + 'Ᏽ' => 'ᏽ', + 'Ა' => 'ა', + 'Ბ' => 'ბ', + 'Გ' => 'გ', + 'Დ' => 'დ', + 'Ე' => 'ე', + 'Ვ' => 'ვ', + 'Ზ' => 'ზ', + 'Თ' => 'თ', + 'Ი' => 'ი', + 'Კ' => 'კ', + 'Ლ' => 'ლ', + 'Მ' => 'მ', + 'Ნ' => 'ნ', + 'Ო' => 'ო', + 'Პ' => 'პ', + 'Ჟ' => 'ჟ', + 'Რ' => 'რ', + 'Ს' => 'ს', + 'Ტ' => 'ტ', + 'Უ' => 'უ', + 'Ფ' => 'ფ', + 'Ქ' => 'ქ', + 'Ღ' => 'ღ', + 'Ყ' => 'ყ', + 'Შ' => 'შ', + 'Ჩ' => 'ჩ', + 'Ც' => 'ც', + 'Ძ' => 'ძ', + 'Წ' => 'წ', + 'Ჭ' => 'ჭ', + 'Ხ' => 'ხ', + 'Ჯ' => 'ჯ', + 'Ჰ' => 'ჰ', + 'Ჱ' => 'ჱ', + 'Ჲ' => 'ჲ', + 'Ჳ' => 'ჳ', + 'Ჴ' => 'ჴ', + 'Ჵ' => 'ჵ', + 'Ჶ' => 'ჶ', + 'Ჷ' => 'ჷ', + 'Ჸ' => 'ჸ', + 'Ჹ' => 'ჹ', + 'Ჺ' => 'ჺ', + 'Ჽ' => 'ჽ', + 'Ჾ' => 'ჾ', + 'Ჿ' => 'ჿ', + 'Ḁ' => 'ḁ', + 'Ḃ' => 'ḃ', + 'Ḅ' => 'ḅ', + 'Ḇ' => 'ḇ', + 'Ḉ' => 'ḉ', + 'Ḋ' => 'ḋ', + 'Ḍ' => 'ḍ', + 'Ḏ' => 'ḏ', + 'Ḑ' => 'ḑ', + 'Ḓ' => 'ḓ', + 'Ḕ' => 'ḕ', + 'Ḗ' => 'ḗ', + 'Ḙ' => 'ḙ', + 'Ḛ' => 'ḛ', + 'Ḝ' => 'ḝ', + 'Ḟ' => 'ḟ', + 'Ḡ' => 'ḡ', + 'Ḣ' => 'ḣ', + 'Ḥ' => 'ḥ', + 'Ḧ' => 'ḧ', + 'Ḩ' => 'ḩ', + 'Ḫ' => 'ḫ', + 'Ḭ' => 'ḭ', + 'Ḯ' => 'ḯ', + 'Ḱ' => 'ḱ', + 'Ḳ' => 'ḳ', + 'Ḵ' => 'ḵ', + 'Ḷ' => 'ḷ', + 'Ḹ' => 'ḹ', + 'Ḻ' => 'ḻ', + 'Ḽ' => 'ḽ', + 'Ḿ' => 'ḿ', + 'Ṁ' => 'ṁ', + 'Ṃ' => 'ṃ', + 'Ṅ' => 'ṅ', + 'Ṇ' => 'ṇ', + 'Ṉ' => 'ṉ', + 'Ṋ' => 'ṋ', + 'Ṍ' => 'ṍ', + 'Ṏ' => 'ṏ', + 'Ṑ' => 'ṑ', + 'Ṓ' => 'ṓ', + 'Ṕ' => 'ṕ', + 'Ṗ' => 'ṗ', + 'Ṙ' => 'ṙ', + 'Ṛ' => 'ṛ', + 'Ṝ' => 'ṝ', + 'Ṟ' => 'ṟ', + 'Ṡ' => 'ṡ', + 'Ṣ' => 'ṣ', + 'Ṥ' => 'ṥ', + 'Ṧ' => 'ṧ', + 'Ṩ' => 'ṩ', + 'Ṫ' => 'ṫ', + 'Ṭ' => 'ṭ', + 'Ṯ' => 'ṯ', + 'Ṱ' => 'ṱ', + 'Ṳ' => 'ṳ', + 'Ṵ' => 'ṵ', + 'Ṷ' => 'ṷ', + 'Ṹ' => 'ṹ', + 'Ṻ' => 'ṻ', + 'Ṽ' => 'ṽ', + 'Ṿ' => 'ṿ', + 'Ẁ' => 'ẁ', + 'Ẃ' => 'ẃ', + 'Ẅ' => 'ẅ', + 'Ẇ' => 'ẇ', + 'Ẉ' => 'ẉ', + 'Ẋ' => 'ẋ', + 'Ẍ' => 'ẍ', + 'Ẏ' => 'ẏ', + 'Ẑ' => 'ẑ', + 'Ẓ' => 'ẓ', + 'Ẕ' => 'ẕ', + 'ẞ' => 'ß', + 'Ạ' => 'ạ', + 'Ả' => 'ả', + 'Ấ' => 'ấ', + 'Ầ' => 'ầ', + 'Ẩ' => 'ẩ', + 'Ẫ' => 'ẫ', + 'Ậ' => 'ậ', + 'Ắ' => 'ắ', + 'Ằ' => 'ằ', + 'Ẳ' => 'ẳ', + 'Ẵ' => 'ẵ', + 'Ặ' => 'ặ', + 'Ẹ' => 'ẹ', + 'Ẻ' => 'ẻ', + 'Ẽ' => 'ẽ', + 'Ế' => 'ế', + 'Ề' => 'ề', + 'Ể' => 'ể', + 'Ễ' => 'ễ', + 'Ệ' => 'ệ', + 'Ỉ' => 'ỉ', + 'Ị' => 'ị', + 'Ọ' => 'ọ', + 'Ỏ' => 'ỏ', + 'Ố' => 'ố', + 'Ồ' => 'ồ', + 'Ổ' => 'ổ', + 'Ỗ' => 'ỗ', + 'Ộ' => 'ộ', + 'Ớ' => 'ớ', + 'Ờ' => 'ờ', + 'Ở' => 'ở', + 'Ỡ' => 'ỡ', + 'Ợ' => 'ợ', + 'Ụ' => 'ụ', + 'Ủ' => 'ủ', + 'Ứ' => 'ứ', + 'Ừ' => 'ừ', + 'Ử' => 'ử', + 'Ữ' => 'ữ', + 'Ự' => 'ự', + 'Ỳ' => 'ỳ', + 'Ỵ' => 'ỵ', + 'Ỷ' => 'ỷ', + 'Ỹ' => 'ỹ', + 'Ỻ' => 'ỻ', + 'Ỽ' => 'ỽ', + 'Ỿ' => 'ỿ', + 'Ἀ' => 'ἀ', + 'Ἁ' => 'ἁ', + 'Ἂ' => 'ἂ', + 'Ἃ' => 'ἃ', + 'Ἄ' => 'ἄ', + 'Ἅ' => 'ἅ', + 'Ἆ' => 'ἆ', + 'Ἇ' => 'ἇ', + 'Ἐ' => 'ἐ', + 'Ἑ' => 'ἑ', + 'Ἒ' => 'ἒ', + 'Ἓ' => 'ἓ', + 'Ἔ' => 'ἔ', + 'Ἕ' => 'ἕ', + 'Ἠ' => 'ἠ', + 'Ἡ' => 'ἡ', + 'Ἢ' => 'ἢ', + 'Ἣ' => 'ἣ', + 'Ἤ' => 'ἤ', + 'Ἥ' => 'ἥ', + 'Ἦ' => 'ἦ', + 'Ἧ' => 'ἧ', + 'Ἰ' => 'ἰ', + 'Ἱ' => 'ἱ', + 'Ἲ' => 'ἲ', + 'Ἳ' => 'ἳ', + 'Ἴ' => 'ἴ', + 'Ἵ' => 'ἵ', + 'Ἶ' => 'ἶ', + 'Ἷ' => 'ἷ', + 'Ὀ' => 'ὀ', + 'Ὁ' => 'ὁ', + 'Ὂ' => 'ὂ', + 'Ὃ' => 'ὃ', + 'Ὄ' => 'ὄ', + 'Ὅ' => 'ὅ', + 'Ὑ' => 'ὑ', + 'Ὓ' => 'ὓ', + 'Ὕ' => 'ὕ', + 'Ὗ' => 'ὗ', + 'Ὠ' => 'ὠ', + 'Ὡ' => 'ὡ', + 'Ὢ' => 'ὢ', + 'Ὣ' => 'ὣ', + 'Ὤ' => 'ὤ', + 'Ὥ' => 'ὥ', + 'Ὦ' => 'ὦ', + 'Ὧ' => 'ὧ', + 'ᾈ' => 'ᾀ', + 'ᾉ' => 'ᾁ', + 'ᾊ' => 'ᾂ', + 'ᾋ' => 'ᾃ', + 'ᾌ' => 'ᾄ', + 'ᾍ' => 'ᾅ', + 'ᾎ' => 'ᾆ', + 'ᾏ' => 'ᾇ', + 'ᾘ' => 'ᾐ', + 'ᾙ' => 'ᾑ', + 'ᾚ' => 'ᾒ', + 'ᾛ' => 'ᾓ', + 'ᾜ' => 'ᾔ', + 'ᾝ' => 'ᾕ', + 'ᾞ' => 'ᾖ', + 'ᾟ' => 'ᾗ', + 'ᾨ' => 'ᾠ', + 'ᾩ' => 'ᾡ', + 'ᾪ' => 'ᾢ', + 'ᾫ' => 'ᾣ', + 'ᾬ' => 'ᾤ', + 'ᾭ' => 'ᾥ', + 'ᾮ' => 'ᾦ', + 'ᾯ' => 'ᾧ', + 'Ᾰ' => 'ᾰ', + 'Ᾱ' => 'ᾱ', + 'Ὰ' => 'ὰ', + 'Ά' => 'ά', + 'ᾼ' => 'ᾳ', + 'Ὲ' => 'ὲ', + 'Έ' => 'έ', + 'Ὴ' => 'ὴ', + 'Ή' => 'ή', + 'ῌ' => 'ῃ', + 'Ῐ' => 'ῐ', + 'Ῑ' => 'ῑ', + 'Ὶ' => 'ὶ', + 'Ί' => 'ί', + 'Ῠ' => 'ῠ', + 'Ῡ' => 'ῡ', + 'Ὺ' => 'ὺ', + 'Ύ' => 'ύ', + 'Ῥ' => 'ῥ', + 'Ὸ' => 'ὸ', + 'Ό' => 'ό', + 'Ὼ' => 'ὼ', + 'Ώ' => 'ώ', + 'ῼ' => 'ῳ', + 'Ω' => 'ω', + 'K' => 'k', + 'Å' => 'å', + 'Ⅎ' => 'ⅎ', + 'Ⅰ' => 'ⅰ', + 'Ⅱ' => 'ⅱ', + 'Ⅲ' => 'ⅲ', + 'Ⅳ' => 'ⅳ', + 'Ⅴ' => 'ⅴ', + 'Ⅵ' => 'ⅵ', + 'Ⅶ' => 'ⅶ', + 'Ⅷ' => 'ⅷ', + 'Ⅸ' => 'ⅸ', + 'Ⅹ' => 'ⅹ', + 'Ⅺ' => 'ⅺ', + 'Ⅻ' => 'ⅻ', + 'Ⅼ' => 'ⅼ', + 'Ⅽ' => 'ⅽ', + 'Ⅾ' => 'ⅾ', + 'Ⅿ' => 'ⅿ', + 'Ↄ' => 'ↄ', + 'Ⓐ' => 'ⓐ', + 'Ⓑ' => 'ⓑ', + 'Ⓒ' => 'ⓒ', + 'Ⓓ' => 'ⓓ', + 'Ⓔ' => 'ⓔ', + 'Ⓕ' => 'ⓕ', + 'Ⓖ' => 'ⓖ', + 'Ⓗ' => 'ⓗ', + 'Ⓘ' => 'ⓘ', + 'Ⓙ' => 'ⓙ', + 'Ⓚ' => 'ⓚ', + 'Ⓛ' => 'ⓛ', + 'Ⓜ' => 'ⓜ', + 'Ⓝ' => 'ⓝ', + 'Ⓞ' => 'ⓞ', + 'Ⓟ' => 'ⓟ', + 'Ⓠ' => 'ⓠ', + 'Ⓡ' => 'ⓡ', + 'Ⓢ' => 'ⓢ', + 'Ⓣ' => 'ⓣ', + 'Ⓤ' => 'ⓤ', + 'Ⓥ' => 'ⓥ', + 'Ⓦ' => 'ⓦ', + 'Ⓧ' => 'ⓧ', + 'Ⓨ' => 'ⓨ', + 'Ⓩ' => 'ⓩ', + 'Ⰰ' => 'ⰰ', + 'Ⰱ' => 'ⰱ', + 'Ⰲ' => 'ⰲ', + 'Ⰳ' => 'ⰳ', + 'Ⰴ' => 'ⰴ', + 'Ⰵ' => 'ⰵ', + 'Ⰶ' => 'ⰶ', + 'Ⰷ' => 'ⰷ', + 'Ⰸ' => 'ⰸ', + 'Ⰹ' => 'ⰹ', + 'Ⰺ' => 'ⰺ', + 'Ⰻ' => 'ⰻ', + 'Ⰼ' => 'ⰼ', + 'Ⰽ' => 'ⰽ', + 'Ⰾ' => 'ⰾ', + 'Ⰿ' => 'ⰿ', + 'Ⱀ' => 'ⱀ', + 'Ⱁ' => 'ⱁ', + 'Ⱂ' => 'ⱂ', + 'Ⱃ' => 'ⱃ', + 'Ⱄ' => 'ⱄ', + 'Ⱅ' => 'ⱅ', + 'Ⱆ' => 'ⱆ', + 'Ⱇ' => 'ⱇ', + 'Ⱈ' => 'ⱈ', + 'Ⱉ' => 'ⱉ', + 'Ⱊ' => 'ⱊ', + 'Ⱋ' => 'ⱋ', + 'Ⱌ' => 'ⱌ', + 'Ⱍ' => 'ⱍ', + 'Ⱎ' => 'ⱎ', + 'Ⱏ' => 'ⱏ', + 'Ⱐ' => 'ⱐ', + 'Ⱑ' => 'ⱑ', + 'Ⱒ' => 'ⱒ', + 'Ⱓ' => 'ⱓ', + 'Ⱔ' => 'ⱔ', + 'Ⱕ' => 'ⱕ', + 'Ⱖ' => 'ⱖ', + 'Ⱗ' => 'ⱗ', + 'Ⱘ' => 'ⱘ', + 'Ⱙ' => 'ⱙ', + 'Ⱚ' => 'ⱚ', + 'Ⱛ' => 'ⱛ', + 'Ⱜ' => 'ⱜ', + 'Ⱝ' => 'ⱝ', + 'Ⱞ' => 'ⱞ', + 'Ⱡ' => 'ⱡ', + 'Ɫ' => 'ɫ', + 'Ᵽ' => 'ᵽ', + 'Ɽ' => 'ɽ', + 'Ⱨ' => 'ⱨ', + 'Ⱪ' => 'ⱪ', + 'Ⱬ' => 'ⱬ', + 'Ɑ' => 'ɑ', + 'Ɱ' => 'ɱ', + 'Ɐ' => 'ɐ', + 'Ɒ' => 'ɒ', + 'Ⱳ' => 'ⱳ', + 'Ⱶ' => 'ⱶ', + 'Ȿ' => 'ȿ', + 'Ɀ' => 'ɀ', + 'Ⲁ' => 'ⲁ', + 'Ⲃ' => 'ⲃ', + 'Ⲅ' => 'ⲅ', + 'Ⲇ' => 'ⲇ', + 'Ⲉ' => 'ⲉ', + 'Ⲋ' => 'ⲋ', + 'Ⲍ' => 'ⲍ', + 'Ⲏ' => 'ⲏ', + 'Ⲑ' => 'ⲑ', + 'Ⲓ' => 'ⲓ', + 'Ⲕ' => 'ⲕ', + 'Ⲗ' => 'ⲗ', + 'Ⲙ' => 'ⲙ', + 'Ⲛ' => 'ⲛ', + 'Ⲝ' => 'ⲝ', + 'Ⲟ' => 'ⲟ', + 'Ⲡ' => 'ⲡ', + 'Ⲣ' => 'ⲣ', + 'Ⲥ' => 'ⲥ', + 'Ⲧ' => 'ⲧ', + 'Ⲩ' => 'ⲩ', + 'Ⲫ' => 'ⲫ', + 'Ⲭ' => 'ⲭ', + 'Ⲯ' => 'ⲯ', + 'Ⲱ' => 'ⲱ', + 'Ⲳ' => 'ⲳ', + 'Ⲵ' => 'ⲵ', + 'Ⲷ' => 'ⲷ', + 'Ⲹ' => 'ⲹ', + 'Ⲻ' => 'ⲻ', + 'Ⲽ' => 'ⲽ', + 'Ⲿ' => 'ⲿ', + 'Ⳁ' => 'ⳁ', + 'Ⳃ' => 'ⳃ', + 'Ⳅ' => 'ⳅ', + 'Ⳇ' => 'ⳇ', + 'Ⳉ' => 'ⳉ', + 'Ⳋ' => 'ⳋ', + 'Ⳍ' => 'ⳍ', + 'Ⳏ' => 'ⳏ', + 'Ⳑ' => 'ⳑ', + 'Ⳓ' => 'ⳓ', + 'Ⳕ' => 'ⳕ', + 'Ⳗ' => 'ⳗ', + 'Ⳙ' => 'ⳙ', + 'Ⳛ' => 'ⳛ', + 'Ⳝ' => 'ⳝ', + 'Ⳟ' => 'ⳟ', + 'Ⳡ' => 'ⳡ', + 'Ⳣ' => 'ⳣ', + 'Ⳬ' => 'ⳬ', + 'Ⳮ' => 'ⳮ', + 'Ⳳ' => 'ⳳ', + 'Ꙁ' => 'ꙁ', + 'Ꙃ' => 'ꙃ', + 'Ꙅ' => 'ꙅ', + 'Ꙇ' => 'ꙇ', + 'Ꙉ' => 'ꙉ', + 'Ꙋ' => 'ꙋ', + 'Ꙍ' => 'ꙍ', + 'Ꙏ' => 'ꙏ', + 'Ꙑ' => 'ꙑ', + 'Ꙓ' => 'ꙓ', + 'Ꙕ' => 'ꙕ', + 'Ꙗ' => 'ꙗ', + 'Ꙙ' => 'ꙙ', + 'Ꙛ' => 'ꙛ', + 'Ꙝ' => 'ꙝ', + 'Ꙟ' => 'ꙟ', + 'Ꙡ' => 'ꙡ', + 'Ꙣ' => 'ꙣ', + 'Ꙥ' => 'ꙥ', + 'Ꙧ' => 'ꙧ', + 'Ꙩ' => 'ꙩ', + 'Ꙫ' => 'ꙫ', + 'Ꙭ' => 'ꙭ', + 'Ꚁ' => 'ꚁ', + 'Ꚃ' => 'ꚃ', + 'Ꚅ' => 'ꚅ', + 'Ꚇ' => 'ꚇ', + 'Ꚉ' => 'ꚉ', + 'Ꚋ' => 'ꚋ', + 'Ꚍ' => 'ꚍ', + 'Ꚏ' => 'ꚏ', + 'Ꚑ' => 'ꚑ', + 'Ꚓ' => 'ꚓ', + 'Ꚕ' => 'ꚕ', + 'Ꚗ' => 'ꚗ', + 'Ꚙ' => 'ꚙ', + 'Ꚛ' => 'ꚛ', + 'Ꜣ' => 'ꜣ', + 'Ꜥ' => 'ꜥ', + 'Ꜧ' => 'ꜧ', + 'Ꜩ' => 'ꜩ', + 'Ꜫ' => 'ꜫ', + 'Ꜭ' => 'ꜭ', + 'Ꜯ' => 'ꜯ', + 'Ꜳ' => 'ꜳ', + 'Ꜵ' => 'ꜵ', + 'Ꜷ' => 'ꜷ', + 'Ꜹ' => 'ꜹ', + 'Ꜻ' => 'ꜻ', + 'Ꜽ' => 'ꜽ', + 'Ꜿ' => 'ꜿ', + 'Ꝁ' => 'ꝁ', + 'Ꝃ' => 'ꝃ', + 'Ꝅ' => 'ꝅ', + 'Ꝇ' => 'ꝇ', + 'Ꝉ' => 'ꝉ', + 'Ꝋ' => 'ꝋ', + 'Ꝍ' => 'ꝍ', + 'Ꝏ' => 'ꝏ', + 'Ꝑ' => 'ꝑ', + 'Ꝓ' => 'ꝓ', + 'Ꝕ' => 'ꝕ', + 'Ꝗ' => 'ꝗ', + 'Ꝙ' => 'ꝙ', + 'Ꝛ' => 'ꝛ', + 'Ꝝ' => 'ꝝ', + 'Ꝟ' => 'ꝟ', + 'Ꝡ' => 'ꝡ', + 'Ꝣ' => 'ꝣ', + 'Ꝥ' => 'ꝥ', + 'Ꝧ' => 'ꝧ', + 'Ꝩ' => 'ꝩ', + 'Ꝫ' => 'ꝫ', + 'Ꝭ' => 'ꝭ', + 'Ꝯ' => 'ꝯ', + 'Ꝺ' => 'ꝺ', + 'Ꝼ' => 'ꝼ', + 'Ᵹ' => 'ᵹ', + 'Ꝿ' => 'ꝿ', + 'Ꞁ' => 'ꞁ', + 'Ꞃ' => 'ꞃ', + 'Ꞅ' => 'ꞅ', + 'Ꞇ' => 'ꞇ', + 'Ꞌ' => 'ꞌ', + 'Ɥ' => 'ɥ', + 'Ꞑ' => 'ꞑ', + 'Ꞓ' => 'ꞓ', + 'Ꞗ' => 'ꞗ', + 'Ꞙ' => 'ꞙ', + 'Ꞛ' => 'ꞛ', + 'Ꞝ' => 'ꞝ', + 'Ꞟ' => 'ꞟ', + 'Ꞡ' => 'ꞡ', + 'Ꞣ' => 'ꞣ', + 'Ꞥ' => 'ꞥ', + 'Ꞧ' => 'ꞧ', + 'Ꞩ' => 'ꞩ', + 'Ɦ' => 'ɦ', + 'Ɜ' => 'ɜ', + 'Ɡ' => 'ɡ', + 'Ɬ' => 'ɬ', + 'Ɪ' => 'ɪ', + 'Ʞ' => 'ʞ', + 'Ʇ' => 'ʇ', + 'Ʝ' => 'ʝ', + 'Ꭓ' => 'ꭓ', + 'Ꞵ' => 'ꞵ', + 'Ꞷ' => 'ꞷ', + 'Ꞹ' => 'ꞹ', + 'Ꞻ' => 'ꞻ', + 'Ꞽ' => 'ꞽ', + 'Ꞿ' => 'ꞿ', + 'Ꟃ' => 'ꟃ', + 'Ꞔ' => 'ꞔ', + 'Ʂ' => 'ʂ', + 'Ᶎ' => 'ᶎ', + 'Ꟈ' => 'ꟈ', + 'Ꟊ' => 'ꟊ', + 'Ꟶ' => 'ꟶ', + 'A' => 'a', + 'B' => 'b', + 'C' => 'c', + 'D' => 'd', + 'E' => 'e', + 'F' => 'f', + 'G' => 'g', + 'H' => 'h', + 'I' => 'i', + 'J' => 'j', + 'K' => 'k', + 'L' => 'l', + 'M' => 'm', + 'N' => 'n', + 'O' => 'o', + 'P' => 'p', + 'Q' => 'q', + 'R' => 'r', + 'S' => 's', + 'T' => 't', + 'U' => 'u', + 'V' => 'v', + 'W' => 'w', + 'X' => 'x', + 'Y' => 'y', + 'Z' => 'z', + '𐐀' => '𐐨', + '𐐁' => '𐐩', + '𐐂' => '𐐪', + '𐐃' => '𐐫', + '𐐄' => '𐐬', + '𐐅' => '𐐭', + '𐐆' => '𐐮', + '𐐇' => '𐐯', + '𐐈' => '𐐰', + '𐐉' => '𐐱', + '𐐊' => '𐐲', + '𐐋' => '𐐳', + '𐐌' => '𐐴', + '𐐍' => '𐐵', + '𐐎' => '𐐶', + '𐐏' => '𐐷', + '𐐐' => '𐐸', + '𐐑' => '𐐹', + '𐐒' => '𐐺', + '𐐓' => '𐐻', + '𐐔' => '𐐼', + '𐐕' => '𐐽', + '𐐖' => '𐐾', + '𐐗' => '𐐿', + '𐐘' => '𐑀', + '𐐙' => '𐑁', + '𐐚' => '𐑂', + '𐐛' => '𐑃', + '𐐜' => '𐑄', + '𐐝' => '𐑅', + '𐐞' => '𐑆', + '𐐟' => '𐑇', + '𐐠' => '𐑈', + '𐐡' => '𐑉', + '𐐢' => '𐑊', + '𐐣' => '𐑋', + '𐐤' => '𐑌', + '𐐥' => '𐑍', + '𐐦' => '𐑎', + '𐐧' => '𐑏', + '𐒰' => '𐓘', + '𐒱' => '𐓙', + '𐒲' => '𐓚', + '𐒳' => '𐓛', + '𐒴' => '𐓜', + '𐒵' => '𐓝', + '𐒶' => '𐓞', + '𐒷' => '𐓟', + '𐒸' => '𐓠', + '𐒹' => '𐓡', + '𐒺' => '𐓢', + '𐒻' => '𐓣', + '𐒼' => '𐓤', + '𐒽' => '𐓥', + '𐒾' => '𐓦', + '𐒿' => '𐓧', + '𐓀' => '𐓨', + '𐓁' => '𐓩', + '𐓂' => '𐓪', + '𐓃' => '𐓫', + '𐓄' => '𐓬', + '𐓅' => '𐓭', + '𐓆' => '𐓮', + '𐓇' => '𐓯', + '𐓈' => '𐓰', + '𐓉' => '𐓱', + '𐓊' => '𐓲', + '𐓋' => '𐓳', + '𐓌' => '𐓴', + '𐓍' => '𐓵', + '𐓎' => '𐓶', + '𐓏' => '𐓷', + '𐓐' => '𐓸', + '𐓑' => '𐓹', + '𐓒' => '𐓺', + '𐓓' => '𐓻', + '𐲀' => '𐳀', + '𐲁' => '𐳁', + '𐲂' => '𐳂', + '𐲃' => '𐳃', + '𐲄' => '𐳄', + '𐲅' => '𐳅', + '𐲆' => '𐳆', + '𐲇' => '𐳇', + '𐲈' => '𐳈', + '𐲉' => '𐳉', + '𐲊' => '𐳊', + '𐲋' => '𐳋', + '𐲌' => '𐳌', + '𐲍' => '𐳍', + '𐲎' => '𐳎', + '𐲏' => '𐳏', + '𐲐' => '𐳐', + '𐲑' => '𐳑', + '𐲒' => '𐳒', + '𐲓' => '𐳓', + '𐲔' => '𐳔', + '𐲕' => '𐳕', + '𐲖' => '𐳖', + '𐲗' => '𐳗', + '𐲘' => '𐳘', + '𐲙' => '𐳙', + '𐲚' => '𐳚', + '𐲛' => '𐳛', + '𐲜' => '𐳜', + '𐲝' => '𐳝', + '𐲞' => '𐳞', + '𐲟' => '𐳟', + '𐲠' => '𐳠', + '𐲡' => '𐳡', + '𐲢' => '𐳢', + '𐲣' => '𐳣', + '𐲤' => '𐳤', + '𐲥' => '𐳥', + '𐲦' => '𐳦', + '𐲧' => '𐳧', + '𐲨' => '𐳨', + '𐲩' => '𐳩', + '𐲪' => '𐳪', + '𐲫' => '𐳫', + '𐲬' => '𐳬', + '𐲭' => '𐳭', + '𐲮' => '𐳮', + '𐲯' => '𐳯', + '𐲰' => '𐳰', + '𐲱' => '𐳱', + '𐲲' => '𐳲', + '𑢠' => '𑣀', + '𑢡' => '𑣁', + '𑢢' => '𑣂', + '𑢣' => '𑣃', + '𑢤' => '𑣄', + '𑢥' => '𑣅', + '𑢦' => '𑣆', + '𑢧' => '𑣇', + '𑢨' => '𑣈', + '𑢩' => '𑣉', + '𑢪' => '𑣊', + '𑢫' => '𑣋', + '𑢬' => '𑣌', + '𑢭' => '𑣍', + '𑢮' => '𑣎', + '𑢯' => '𑣏', + '𑢰' => '𑣐', + '𑢱' => '𑣑', + '𑢲' => '𑣒', + '𑢳' => '𑣓', + '𑢴' => '𑣔', + '𑢵' => '𑣕', + '𑢶' => '𑣖', + '𑢷' => '𑣗', + '𑢸' => '𑣘', + '𑢹' => '𑣙', + '𑢺' => '𑣚', + '𑢻' => '𑣛', + '𑢼' => '𑣜', + '𑢽' => '𑣝', + '𑢾' => '𑣞', + '𑢿' => '𑣟', + '𖹀' => '𖹠', + '𖹁' => '𖹡', + '𖹂' => '𖹢', + '𖹃' => '𖹣', + '𖹄' => '𖹤', + '𖹅' => '𖹥', + '𖹆' => '𖹦', + '𖹇' => '𖹧', + '𖹈' => '𖹨', + '𖹉' => '𖹩', + '𖹊' => '𖹪', + '𖹋' => '𖹫', + '𖹌' => '𖹬', + '𖹍' => '𖹭', + '𖹎' => '𖹮', + '𖹏' => '𖹯', + '𖹐' => '𖹰', + '𖹑' => '𖹱', + '𖹒' => '𖹲', + '𖹓' => '𖹳', + '𖹔' => '𖹴', + '𖹕' => '𖹵', + '𖹖' => '𖹶', + '𖹗' => '𖹷', + '𖹘' => '𖹸', + '𖹙' => '𖹹', + '𖹚' => '𖹺', + '𖹛' => '𖹻', + '𖹜' => '𖹼', + '𖹝' => '𖹽', + '𖹞' => '𖹾', + '𖹟' => '𖹿', + '𞤀' => '𞤢', + '𞤁' => '𞤣', + '𞤂' => '𞤤', + '𞤃' => '𞤥', + '𞤄' => '𞤦', + '𞤅' => '𞤧', + '𞤆' => '𞤨', + '𞤇' => '𞤩', + '𞤈' => '𞤪', + '𞤉' => '𞤫', + '𞤊' => '𞤬', + '𞤋' => '𞤭', + '𞤌' => '𞤮', + '𞤍' => '𞤯', + '𞤎' => '𞤰', + '𞤏' => '𞤱', + '𞤐' => '𞤲', + '𞤑' => '𞤳', + '𞤒' => '𞤴', + '𞤓' => '𞤵', + '𞤔' => '𞤶', + '𞤕' => '𞤷', + '𞤖' => '𞤸', + '𞤗' => '𞤹', + '𞤘' => '𞤺', + '𞤙' => '𞤻', + '𞤚' => '𞤼', + '𞤛' => '𞤽', + '𞤜' => '𞤾', + '𞤝' => '𞤿', + '𞤞' => '𞥀', + '𞤟' => '𞥁', + '𞤠' => '𞥂', + '𞤡' => '𞥃', +); diff --git a/Sources/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php b/Sources/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php new file mode 100644 index 00000000..2a8f6e73 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php @@ -0,0 +1,5 @@ + 'A', + 'b' => 'B', + 'c' => 'C', + 'd' => 'D', + 'e' => 'E', + 'f' => 'F', + 'g' => 'G', + 'h' => 'H', + 'i' => 'I', + 'j' => 'J', + 'k' => 'K', + 'l' => 'L', + 'm' => 'M', + 'n' => 'N', + 'o' => 'O', + 'p' => 'P', + 'q' => 'Q', + 'r' => 'R', + 's' => 'S', + 't' => 'T', + 'u' => 'U', + 'v' => 'V', + 'w' => 'W', + 'x' => 'X', + 'y' => 'Y', + 'z' => 'Z', + 'µ' => 'Μ', + 'à' => 'À', + 'á' => 'Á', + 'â' => 'Â', + 'ã' => 'Ã', + 'ä' => 'Ä', + 'å' => 'Å', + 'æ' => 'Æ', + 'ç' => 'Ç', + 'è' => 'È', + 'é' => 'É', + 'ê' => 'Ê', + 'ë' => 'Ë', + 'ì' => 'Ì', + 'í' => 'Í', + 'î' => 'Î', + 'ï' => 'Ï', + 'ð' => 'Ð', + 'ñ' => 'Ñ', + 'ò' => 'Ò', + 'ó' => 'Ó', + 'ô' => 'Ô', + 'õ' => 'Õ', + 'ö' => 'Ö', + 'ø' => 'Ø', + 'ù' => 'Ù', + 'ú' => 'Ú', + 'û' => 'Û', + 'ü' => 'Ü', + 'ý' => 'Ý', + 'þ' => 'Þ', + 'ÿ' => 'Ÿ', + 'ā' => 'Ā', + 'ă' => 'Ă', + 'ą' => 'Ą', + 'ć' => 'Ć', + 'ĉ' => 'Ĉ', + 'ċ' => 'Ċ', + 'č' => 'Č', + 'ď' => 'Ď', + 'đ' => 'Đ', + 'ē' => 'Ē', + 'ĕ' => 'Ĕ', + 'ė' => 'Ė', + 'ę' => 'Ę', + 'ě' => 'Ě', + 'ĝ' => 'Ĝ', + 'ğ' => 'Ğ', + 'ġ' => 'Ġ', + 'ģ' => 'Ģ', + 'ĥ' => 'Ĥ', + 'ħ' => 'Ħ', + 'ĩ' => 'Ĩ', + 'ī' => 'Ī', + 'ĭ' => 'Ĭ', + 'į' => 'Į', + 'ı' => 'I', + 'ij' => 'IJ', + 'ĵ' => 'Ĵ', + 'ķ' => 'Ķ', + 'ĺ' => 'Ĺ', + 'ļ' => 'Ļ', + 'ľ' => 'Ľ', + 'ŀ' => 'Ŀ', + 'ł' => 'Ł', + 'ń' => 'Ń', + 'ņ' => 'Ņ', + 'ň' => 'Ň', + 'ŋ' => 'Ŋ', + 'ō' => 'Ō', + 'ŏ' => 'Ŏ', + 'ő' => 'Ő', + 'œ' => 'Œ', + 'ŕ' => 'Ŕ', + 'ŗ' => 'Ŗ', + 'ř' => 'Ř', + 'ś' => 'Ś', + 'ŝ' => 'Ŝ', + 'ş' => 'Ş', + 'š' => 'Š', + 'ţ' => 'Ţ', + 'ť' => 'Ť', + 'ŧ' => 'Ŧ', + 'ũ' => 'Ũ', + 'ū' => 'Ū', + 'ŭ' => 'Ŭ', + 'ů' => 'Ů', + 'ű' => 'Ű', + 'ų' => 'Ų', + 'ŵ' => 'Ŵ', + 'ŷ' => 'Ŷ', + 'ź' => 'Ź', + 'ż' => 'Ż', + 'ž' => 'Ž', + 'ſ' => 'S', + 'ƀ' => 'Ƀ', + 'ƃ' => 'Ƃ', + 'ƅ' => 'Ƅ', + 'ƈ' => 'Ƈ', + 'ƌ' => 'Ƌ', + 'ƒ' => 'Ƒ', + 'ƕ' => 'Ƕ', + 'ƙ' => 'Ƙ', + 'ƚ' => 'Ƚ', + 'ƞ' => 'Ƞ', + 'ơ' => 'Ơ', + 'ƣ' => 'Ƣ', + 'ƥ' => 'Ƥ', + 'ƨ' => 'Ƨ', + 'ƭ' => 'Ƭ', + 'ư' => 'Ư', + 'ƴ' => 'Ƴ', + 'ƶ' => 'Ƶ', + 'ƹ' => 'Ƹ', + 'ƽ' => 'Ƽ', + 'ƿ' => 'Ƿ', + 'Dž' => 'DŽ', + 'dž' => 'DŽ', + 'Lj' => 'LJ', + 'lj' => 'LJ', + 'Nj' => 'NJ', + 'nj' => 'NJ', + 'ǎ' => 'Ǎ', + 'ǐ' => 'Ǐ', + 'ǒ' => 'Ǒ', + 'ǔ' => 'Ǔ', + 'ǖ' => 'Ǖ', + 'ǘ' => 'Ǘ', + 'ǚ' => 'Ǚ', + 'ǜ' => 'Ǜ', + 'ǝ' => 'Ǝ', + 'ǟ' => 'Ǟ', + 'ǡ' => 'Ǡ', + 'ǣ' => 'Ǣ', + 'ǥ' => 'Ǥ', + 'ǧ' => 'Ǧ', + 'ǩ' => 'Ǩ', + 'ǫ' => 'Ǫ', + 'ǭ' => 'Ǭ', + 'ǯ' => 'Ǯ', + 'Dz' => 'DZ', + 'dz' => 'DZ', + 'ǵ' => 'Ǵ', + 'ǹ' => 'Ǹ', + 'ǻ' => 'Ǻ', + 'ǽ' => 'Ǽ', + 'ǿ' => 'Ǿ', + 'ȁ' => 'Ȁ', + 'ȃ' => 'Ȃ', + 'ȅ' => 'Ȅ', + 'ȇ' => 'Ȇ', + 'ȉ' => 'Ȉ', + 'ȋ' => 'Ȋ', + 'ȍ' => 'Ȍ', + 'ȏ' => 'Ȏ', + 'ȑ' => 'Ȑ', + 'ȓ' => 'Ȓ', + 'ȕ' => 'Ȕ', + 'ȗ' => 'Ȗ', + 'ș' => 'Ș', + 'ț' => 'Ț', + 'ȝ' => 'Ȝ', + 'ȟ' => 'Ȟ', + 'ȣ' => 'Ȣ', + 'ȥ' => 'Ȥ', + 'ȧ' => 'Ȧ', + 'ȩ' => 'Ȩ', + 'ȫ' => 'Ȫ', + 'ȭ' => 'Ȭ', + 'ȯ' => 'Ȯ', + 'ȱ' => 'Ȱ', + 'ȳ' => 'Ȳ', + 'ȼ' => 'Ȼ', + 'ȿ' => 'Ȿ', + 'ɀ' => 'Ɀ', + 'ɂ' => 'Ɂ', + 'ɇ' => 'Ɇ', + 'ɉ' => 'Ɉ', + 'ɋ' => 'Ɋ', + 'ɍ' => 'Ɍ', + 'ɏ' => 'Ɏ', + 'ɐ' => 'Ɐ', + 'ɑ' => 'Ɑ', + 'ɒ' => 'Ɒ', + 'ɓ' => 'Ɓ', + 'ɔ' => 'Ɔ', + 'ɖ' => 'Ɖ', + 'ɗ' => 'Ɗ', + 'ə' => 'Ə', + 'ɛ' => 'Ɛ', + 'ɜ' => 'Ɜ', + 'ɠ' => 'Ɠ', + 'ɡ' => 'Ɡ', + 'ɣ' => 'Ɣ', + 'ɥ' => 'Ɥ', + 'ɦ' => 'Ɦ', + 'ɨ' => 'Ɨ', + 'ɩ' => 'Ɩ', + 'ɪ' => 'Ɪ', + 'ɫ' => 'Ɫ', + 'ɬ' => 'Ɬ', + 'ɯ' => 'Ɯ', + 'ɱ' => 'Ɱ', + 'ɲ' => 'Ɲ', + 'ɵ' => 'Ɵ', + 'ɽ' => 'Ɽ', + 'ʀ' => 'Ʀ', + 'ʂ' => 'Ʂ', + 'ʃ' => 'Ʃ', + 'ʇ' => 'Ʇ', + 'ʈ' => 'Ʈ', + 'ʉ' => 'Ʉ', + 'ʊ' => 'Ʊ', + 'ʋ' => 'Ʋ', + 'ʌ' => 'Ʌ', + 'ʒ' => 'Ʒ', + 'ʝ' => 'Ʝ', + 'ʞ' => 'Ʞ', + 'ͅ' => 'Ι', + 'ͱ' => 'Ͱ', + 'ͳ' => 'Ͳ', + 'ͷ' => 'Ͷ', + 'ͻ' => 'Ͻ', + 'ͼ' => 'Ͼ', + 'ͽ' => 'Ͽ', + 'ά' => 'Ά', + 'έ' => 'Έ', + 'ή' => 'Ή', + 'ί' => 'Ί', + 'α' => 'Α', + 'β' => 'Β', + 'γ' => 'Γ', + 'δ' => 'Δ', + 'ε' => 'Ε', + 'ζ' => 'Ζ', + 'η' => 'Η', + 'θ' => 'Θ', + 'ι' => 'Ι', + 'κ' => 'Κ', + 'λ' => 'Λ', + 'μ' => 'Μ', + 'ν' => 'Ν', + 'ξ' => 'Ξ', + 'ο' => 'Ο', + 'π' => 'Π', + 'ρ' => 'Ρ', + 'ς' => 'Σ', + 'σ' => 'Σ', + 'τ' => 'Τ', + 'υ' => 'Υ', + 'φ' => 'Φ', + 'χ' => 'Χ', + 'ψ' => 'Ψ', + 'ω' => 'Ω', + 'ϊ' => 'Ϊ', + 'ϋ' => 'Ϋ', + 'ό' => 'Ό', + 'ύ' => 'Ύ', + 'ώ' => 'Ώ', + 'ϐ' => 'Β', + 'ϑ' => 'Θ', + 'ϕ' => 'Φ', + 'ϖ' => 'Π', + 'ϗ' => 'Ϗ', + 'ϙ' => 'Ϙ', + 'ϛ' => 'Ϛ', + 'ϝ' => 'Ϝ', + 'ϟ' => 'Ϟ', + 'ϡ' => 'Ϡ', + 'ϣ' => 'Ϣ', + 'ϥ' => 'Ϥ', + 'ϧ' => 'Ϧ', + 'ϩ' => 'Ϩ', + 'ϫ' => 'Ϫ', + 'ϭ' => 'Ϭ', + 'ϯ' => 'Ϯ', + 'ϰ' => 'Κ', + 'ϱ' => 'Ρ', + 'ϲ' => 'Ϲ', + 'ϳ' => 'Ϳ', + 'ϵ' => 'Ε', + 'ϸ' => 'Ϸ', + 'ϻ' => 'Ϻ', + 'а' => 'А', + 'б' => 'Б', + 'в' => 'В', + 'г' => 'Г', + 'д' => 'Д', + 'е' => 'Е', + 'ж' => 'Ж', + 'з' => 'З', + 'и' => 'И', + 'й' => 'Й', + 'к' => 'К', + 'л' => 'Л', + 'м' => 'М', + 'н' => 'Н', + 'о' => 'О', + 'п' => 'П', + 'р' => 'Р', + 'с' => 'С', + 'т' => 'Т', + 'у' => 'У', + 'ф' => 'Ф', + 'х' => 'Х', + 'ц' => 'Ц', + 'ч' => 'Ч', + 'ш' => 'Ш', + 'щ' => 'Щ', + 'ъ' => 'Ъ', + 'ы' => 'Ы', + 'ь' => 'Ь', + 'э' => 'Э', + 'ю' => 'Ю', + 'я' => 'Я', + 'ѐ' => 'Ѐ', + 'ё' => 'Ё', + 'ђ' => 'Ђ', + 'ѓ' => 'Ѓ', + 'є' => 'Є', + 'ѕ' => 'Ѕ', + 'і' => 'І', + 'ї' => 'Ї', + 'ј' => 'Ј', + 'љ' => 'Љ', + 'њ' => 'Њ', + 'ћ' => 'Ћ', + 'ќ' => 'Ќ', + 'ѝ' => 'Ѝ', + 'ў' => 'Ў', + 'џ' => 'Џ', + 'ѡ' => 'Ѡ', + 'ѣ' => 'Ѣ', + 'ѥ' => 'Ѥ', + 'ѧ' => 'Ѧ', + 'ѩ' => 'Ѩ', + 'ѫ' => 'Ѫ', + 'ѭ' => 'Ѭ', + 'ѯ' => 'Ѯ', + 'ѱ' => 'Ѱ', + 'ѳ' => 'Ѳ', + 'ѵ' => 'Ѵ', + 'ѷ' => 'Ѷ', + 'ѹ' => 'Ѹ', + 'ѻ' => 'Ѻ', + 'ѽ' => 'Ѽ', + 'ѿ' => 'Ѿ', + 'ҁ' => 'Ҁ', + 'ҋ' => 'Ҋ', + 'ҍ' => 'Ҍ', + 'ҏ' => 'Ҏ', + 'ґ' => 'Ґ', + 'ғ' => 'Ғ', + 'ҕ' => 'Ҕ', + 'җ' => 'Җ', + 'ҙ' => 'Ҙ', + 'қ' => 'Қ', + 'ҝ' => 'Ҝ', + 'ҟ' => 'Ҟ', + 'ҡ' => 'Ҡ', + 'ң' => 'Ң', + 'ҥ' => 'Ҥ', + 'ҧ' => 'Ҧ', + 'ҩ' => 'Ҩ', + 'ҫ' => 'Ҫ', + 'ҭ' => 'Ҭ', + 'ү' => 'Ү', + 'ұ' => 'Ұ', + 'ҳ' => 'Ҳ', + 'ҵ' => 'Ҵ', + 'ҷ' => 'Ҷ', + 'ҹ' => 'Ҹ', + 'һ' => 'Һ', + 'ҽ' => 'Ҽ', + 'ҿ' => 'Ҿ', + 'ӂ' => 'Ӂ', + 'ӄ' => 'Ӄ', + 'ӆ' => 'Ӆ', + 'ӈ' => 'Ӈ', + 'ӊ' => 'Ӊ', + 'ӌ' => 'Ӌ', + 'ӎ' => 'Ӎ', + 'ӏ' => 'Ӏ', + 'ӑ' => 'Ӑ', + 'ӓ' => 'Ӓ', + 'ӕ' => 'Ӕ', + 'ӗ' => 'Ӗ', + 'ә' => 'Ә', + 'ӛ' => 'Ӛ', + 'ӝ' => 'Ӝ', + 'ӟ' => 'Ӟ', + 'ӡ' => 'Ӡ', + 'ӣ' => 'Ӣ', + 'ӥ' => 'Ӥ', + 'ӧ' => 'Ӧ', + 'ө' => 'Ө', + 'ӫ' => 'Ӫ', + 'ӭ' => 'Ӭ', + 'ӯ' => 'Ӯ', + 'ӱ' => 'Ӱ', + 'ӳ' => 'Ӳ', + 'ӵ' => 'Ӵ', + 'ӷ' => 'Ӷ', + 'ӹ' => 'Ӹ', + 'ӻ' => 'Ӻ', + 'ӽ' => 'Ӽ', + 'ӿ' => 'Ӿ', + 'ԁ' => 'Ԁ', + 'ԃ' => 'Ԃ', + 'ԅ' => 'Ԅ', + 'ԇ' => 'Ԇ', + 'ԉ' => 'Ԉ', + 'ԋ' => 'Ԋ', + 'ԍ' => 'Ԍ', + 'ԏ' => 'Ԏ', + 'ԑ' => 'Ԑ', + 'ԓ' => 'Ԓ', + 'ԕ' => 'Ԕ', + 'ԗ' => 'Ԗ', + 'ԙ' => 'Ԙ', + 'ԛ' => 'Ԛ', + 'ԝ' => 'Ԝ', + 'ԟ' => 'Ԟ', + 'ԡ' => 'Ԡ', + 'ԣ' => 'Ԣ', + 'ԥ' => 'Ԥ', + 'ԧ' => 'Ԧ', + 'ԩ' => 'Ԩ', + 'ԫ' => 'Ԫ', + 'ԭ' => 'Ԭ', + 'ԯ' => 'Ԯ', + 'ա' => 'Ա', + 'բ' => 'Բ', + 'գ' => 'Գ', + 'դ' => 'Դ', + 'ե' => 'Ե', + 'զ' => 'Զ', + 'է' => 'Է', + 'ը' => 'Ը', + 'թ' => 'Թ', + 'ժ' => 'Ժ', + 'ի' => 'Ի', + 'լ' => 'Լ', + 'խ' => 'Խ', + 'ծ' => 'Ծ', + 'կ' => 'Կ', + 'հ' => 'Հ', + 'ձ' => 'Ձ', + 'ղ' => 'Ղ', + 'ճ' => 'Ճ', + 'մ' => 'Մ', + 'յ' => 'Յ', + 'ն' => 'Ն', + 'շ' => 'Շ', + 'ո' => 'Ո', + 'չ' => 'Չ', + 'պ' => 'Պ', + 'ջ' => 'Ջ', + 'ռ' => 'Ռ', + 'ս' => 'Ս', + 'վ' => 'Վ', + 'տ' => 'Տ', + 'ր' => 'Ր', + 'ց' => 'Ց', + 'ւ' => 'Ւ', + 'փ' => 'Փ', + 'ք' => 'Ք', + 'օ' => 'Օ', + 'ֆ' => 'Ֆ', + 'ა' => 'Ა', + 'ბ' => 'Ბ', + 'გ' => 'Გ', + 'დ' => 'Დ', + 'ე' => 'Ე', + 'ვ' => 'Ვ', + 'ზ' => 'Ზ', + 'თ' => 'Თ', + 'ი' => 'Ი', + 'კ' => 'Კ', + 'ლ' => 'Ლ', + 'მ' => 'Მ', + 'ნ' => 'Ნ', + 'ო' => 'Ო', + 'პ' => 'Პ', + 'ჟ' => 'Ჟ', + 'რ' => 'Რ', + 'ს' => 'Ს', + 'ტ' => 'Ტ', + 'უ' => 'Უ', + 'ფ' => 'Ფ', + 'ქ' => 'Ქ', + 'ღ' => 'Ღ', + 'ყ' => 'Ყ', + 'შ' => 'Შ', + 'ჩ' => 'Ჩ', + 'ც' => 'Ც', + 'ძ' => 'Ძ', + 'წ' => 'Წ', + 'ჭ' => 'Ჭ', + 'ხ' => 'Ხ', + 'ჯ' => 'Ჯ', + 'ჰ' => 'Ჰ', + 'ჱ' => 'Ჱ', + 'ჲ' => 'Ჲ', + 'ჳ' => 'Ჳ', + 'ჴ' => 'Ჴ', + 'ჵ' => 'Ჵ', + 'ჶ' => 'Ჶ', + 'ჷ' => 'Ჷ', + 'ჸ' => 'Ჸ', + 'ჹ' => 'Ჹ', + 'ჺ' => 'Ჺ', + 'ჽ' => 'Ჽ', + 'ჾ' => 'Ჾ', + 'ჿ' => 'Ჿ', + 'ᏸ' => 'Ᏸ', + 'ᏹ' => 'Ᏹ', + 'ᏺ' => 'Ᏺ', + 'ᏻ' => 'Ᏻ', + 'ᏼ' => 'Ᏼ', + 'ᏽ' => 'Ᏽ', + 'ᲀ' => 'В', + 'ᲁ' => 'Д', + 'ᲂ' => 'О', + 'ᲃ' => 'С', + 'ᲄ' => 'Т', + 'ᲅ' => 'Т', + 'ᲆ' => 'Ъ', + 'ᲇ' => 'Ѣ', + 'ᲈ' => 'Ꙋ', + 'ᵹ' => 'Ᵹ', + 'ᵽ' => 'Ᵽ', + 'ᶎ' => 'Ᶎ', + 'ḁ' => 'Ḁ', + 'ḃ' => 'Ḃ', + 'ḅ' => 'Ḅ', + 'ḇ' => 'Ḇ', + 'ḉ' => 'Ḉ', + 'ḋ' => 'Ḋ', + 'ḍ' => 'Ḍ', + 'ḏ' => 'Ḏ', + 'ḑ' => 'Ḑ', + 'ḓ' => 'Ḓ', + 'ḕ' => 'Ḕ', + 'ḗ' => 'Ḗ', + 'ḙ' => 'Ḙ', + 'ḛ' => 'Ḛ', + 'ḝ' => 'Ḝ', + 'ḟ' => 'Ḟ', + 'ḡ' => 'Ḡ', + 'ḣ' => 'Ḣ', + 'ḥ' => 'Ḥ', + 'ḧ' => 'Ḧ', + 'ḩ' => 'Ḩ', + 'ḫ' => 'Ḫ', + 'ḭ' => 'Ḭ', + 'ḯ' => 'Ḯ', + 'ḱ' => 'Ḱ', + 'ḳ' => 'Ḳ', + 'ḵ' => 'Ḵ', + 'ḷ' => 'Ḷ', + 'ḹ' => 'Ḹ', + 'ḻ' => 'Ḻ', + 'ḽ' => 'Ḽ', + 'ḿ' => 'Ḿ', + 'ṁ' => 'Ṁ', + 'ṃ' => 'Ṃ', + 'ṅ' => 'Ṅ', + 'ṇ' => 'Ṇ', + 'ṉ' => 'Ṉ', + 'ṋ' => 'Ṋ', + 'ṍ' => 'Ṍ', + 'ṏ' => 'Ṏ', + 'ṑ' => 'Ṑ', + 'ṓ' => 'Ṓ', + 'ṕ' => 'Ṕ', + 'ṗ' => 'Ṗ', + 'ṙ' => 'Ṙ', + 'ṛ' => 'Ṛ', + 'ṝ' => 'Ṝ', + 'ṟ' => 'Ṟ', + 'ṡ' => 'Ṡ', + 'ṣ' => 'Ṣ', + 'ṥ' => 'Ṥ', + 'ṧ' => 'Ṧ', + 'ṩ' => 'Ṩ', + 'ṫ' => 'Ṫ', + 'ṭ' => 'Ṭ', + 'ṯ' => 'Ṯ', + 'ṱ' => 'Ṱ', + 'ṳ' => 'Ṳ', + 'ṵ' => 'Ṵ', + 'ṷ' => 'Ṷ', + 'ṹ' => 'Ṹ', + 'ṻ' => 'Ṻ', + 'ṽ' => 'Ṽ', + 'ṿ' => 'Ṿ', + 'ẁ' => 'Ẁ', + 'ẃ' => 'Ẃ', + 'ẅ' => 'Ẅ', + 'ẇ' => 'Ẇ', + 'ẉ' => 'Ẉ', + 'ẋ' => 'Ẋ', + 'ẍ' => 'Ẍ', + 'ẏ' => 'Ẏ', + 'ẑ' => 'Ẑ', + 'ẓ' => 'Ẓ', + 'ẕ' => 'Ẕ', + 'ẛ' => 'Ṡ', + 'ạ' => 'Ạ', + 'ả' => 'Ả', + 'ấ' => 'Ấ', + 'ầ' => 'Ầ', + 'ẩ' => 'Ẩ', + 'ẫ' => 'Ẫ', + 'ậ' => 'Ậ', + 'ắ' => 'Ắ', + 'ằ' => 'Ằ', + 'ẳ' => 'Ẳ', + 'ẵ' => 'Ẵ', + 'ặ' => 'Ặ', + 'ẹ' => 'Ẹ', + 'ẻ' => 'Ẻ', + 'ẽ' => 'Ẽ', + 'ế' => 'Ế', + 'ề' => 'Ề', + 'ể' => 'Ể', + 'ễ' => 'Ễ', + 'ệ' => 'Ệ', + 'ỉ' => 'Ỉ', + 'ị' => 'Ị', + 'ọ' => 'Ọ', + 'ỏ' => 'Ỏ', + 'ố' => 'Ố', + 'ồ' => 'Ồ', + 'ổ' => 'Ổ', + 'ỗ' => 'Ỗ', + 'ộ' => 'Ộ', + 'ớ' => 'Ớ', + 'ờ' => 'Ờ', + 'ở' => 'Ở', + 'ỡ' => 'Ỡ', + 'ợ' => 'Ợ', + 'ụ' => 'Ụ', + 'ủ' => 'Ủ', + 'ứ' => 'Ứ', + 'ừ' => 'Ừ', + 'ử' => 'Ử', + 'ữ' => 'Ữ', + 'ự' => 'Ự', + 'ỳ' => 'Ỳ', + 'ỵ' => 'Ỵ', + 'ỷ' => 'Ỷ', + 'ỹ' => 'Ỹ', + 'ỻ' => 'Ỻ', + 'ỽ' => 'Ỽ', + 'ỿ' => 'Ỿ', + 'ἀ' => 'Ἀ', + 'ἁ' => 'Ἁ', + 'ἂ' => 'Ἂ', + 'ἃ' => 'Ἃ', + 'ἄ' => 'Ἄ', + 'ἅ' => 'Ἅ', + 'ἆ' => 'Ἆ', + 'ἇ' => 'Ἇ', + 'ἐ' => 'Ἐ', + 'ἑ' => 'Ἑ', + 'ἒ' => 'Ἒ', + 'ἓ' => 'Ἓ', + 'ἔ' => 'Ἔ', + 'ἕ' => 'Ἕ', + 'ἠ' => 'Ἠ', + 'ἡ' => 'Ἡ', + 'ἢ' => 'Ἢ', + 'ἣ' => 'Ἣ', + 'ἤ' => 'Ἤ', + 'ἥ' => 'Ἥ', + 'ἦ' => 'Ἦ', + 'ἧ' => 'Ἧ', + 'ἰ' => 'Ἰ', + 'ἱ' => 'Ἱ', + 'ἲ' => 'Ἲ', + 'ἳ' => 'Ἳ', + 'ἴ' => 'Ἴ', + 'ἵ' => 'Ἵ', + 'ἶ' => 'Ἶ', + 'ἷ' => 'Ἷ', + 'ὀ' => 'Ὀ', + 'ὁ' => 'Ὁ', + 'ὂ' => 'Ὂ', + 'ὃ' => 'Ὃ', + 'ὄ' => 'Ὄ', + 'ὅ' => 'Ὅ', + 'ὑ' => 'Ὑ', + 'ὓ' => 'Ὓ', + 'ὕ' => 'Ὕ', + 'ὗ' => 'Ὗ', + 'ὠ' => 'Ὠ', + 'ὡ' => 'Ὡ', + 'ὢ' => 'Ὢ', + 'ὣ' => 'Ὣ', + 'ὤ' => 'Ὤ', + 'ὥ' => 'Ὥ', + 'ὦ' => 'Ὦ', + 'ὧ' => 'Ὧ', + 'ὰ' => 'Ὰ', + 'ά' => 'Ά', + 'ὲ' => 'Ὲ', + 'έ' => 'Έ', + 'ὴ' => 'Ὴ', + 'ή' => 'Ή', + 'ὶ' => 'Ὶ', + 'ί' => 'Ί', + 'ὸ' => 'Ὸ', + 'ό' => 'Ό', + 'ὺ' => 'Ὺ', + 'ύ' => 'Ύ', + 'ὼ' => 'Ὼ', + 'ώ' => 'Ώ', + 'ᾀ' => 'ἈΙ', + 'ᾁ' => 'ἉΙ', + 'ᾂ' => 'ἊΙ', + 'ᾃ' => 'ἋΙ', + 'ᾄ' => 'ἌΙ', + 'ᾅ' => 'ἍΙ', + 'ᾆ' => 'ἎΙ', + 'ᾇ' => 'ἏΙ', + 'ᾐ' => 'ἨΙ', + 'ᾑ' => 'ἩΙ', + 'ᾒ' => 'ἪΙ', + 'ᾓ' => 'ἫΙ', + 'ᾔ' => 'ἬΙ', + 'ᾕ' => 'ἭΙ', + 'ᾖ' => 'ἮΙ', + 'ᾗ' => 'ἯΙ', + 'ᾠ' => 'ὨΙ', + 'ᾡ' => 'ὩΙ', + 'ᾢ' => 'ὪΙ', + 'ᾣ' => 'ὫΙ', + 'ᾤ' => 'ὬΙ', + 'ᾥ' => 'ὭΙ', + 'ᾦ' => 'ὮΙ', + 'ᾧ' => 'ὯΙ', + 'ᾰ' => 'Ᾰ', + 'ᾱ' => 'Ᾱ', + 'ᾳ' => 'ΑΙ', + 'ι' => 'Ι', + 'ῃ' => 'ΗΙ', + 'ῐ' => 'Ῐ', + 'ῑ' => 'Ῑ', + 'ῠ' => 'Ῠ', + 'ῡ' => 'Ῡ', + 'ῥ' => 'Ῥ', + 'ῳ' => 'ΩΙ', + 'ⅎ' => 'Ⅎ', + 'ⅰ' => 'Ⅰ', + 'ⅱ' => 'Ⅱ', + 'ⅲ' => 'Ⅲ', + 'ⅳ' => 'Ⅳ', + 'ⅴ' => 'Ⅴ', + 'ⅵ' => 'Ⅵ', + 'ⅶ' => 'Ⅶ', + 'ⅷ' => 'Ⅷ', + 'ⅸ' => 'Ⅸ', + 'ⅹ' => 'Ⅹ', + 'ⅺ' => 'Ⅺ', + 'ⅻ' => 'Ⅻ', + 'ⅼ' => 'Ⅼ', + 'ⅽ' => 'Ⅽ', + 'ⅾ' => 'Ⅾ', + 'ⅿ' => 'Ⅿ', + 'ↄ' => 'Ↄ', + 'ⓐ' => 'Ⓐ', + 'ⓑ' => 'Ⓑ', + 'ⓒ' => 'Ⓒ', + 'ⓓ' => 'Ⓓ', + 'ⓔ' => 'Ⓔ', + 'ⓕ' => 'Ⓕ', + 'ⓖ' => 'Ⓖ', + 'ⓗ' => 'Ⓗ', + 'ⓘ' => 'Ⓘ', + 'ⓙ' => 'Ⓙ', + 'ⓚ' => 'Ⓚ', + 'ⓛ' => 'Ⓛ', + 'ⓜ' => 'Ⓜ', + 'ⓝ' => 'Ⓝ', + 'ⓞ' => 'Ⓞ', + 'ⓟ' => 'Ⓟ', + 'ⓠ' => 'Ⓠ', + 'ⓡ' => 'Ⓡ', + 'ⓢ' => 'Ⓢ', + 'ⓣ' => 'Ⓣ', + 'ⓤ' => 'Ⓤ', + 'ⓥ' => 'Ⓥ', + 'ⓦ' => 'Ⓦ', + 'ⓧ' => 'Ⓧ', + 'ⓨ' => 'Ⓨ', + 'ⓩ' => 'Ⓩ', + 'ⰰ' => 'Ⰰ', + 'ⰱ' => 'Ⰱ', + 'ⰲ' => 'Ⰲ', + 'ⰳ' => 'Ⰳ', + 'ⰴ' => 'Ⰴ', + 'ⰵ' => 'Ⰵ', + 'ⰶ' => 'Ⰶ', + 'ⰷ' => 'Ⰷ', + 'ⰸ' => 'Ⰸ', + 'ⰹ' => 'Ⰹ', + 'ⰺ' => 'Ⰺ', + 'ⰻ' => 'Ⰻ', + 'ⰼ' => 'Ⰼ', + 'ⰽ' => 'Ⰽ', + 'ⰾ' => 'Ⰾ', + 'ⰿ' => 'Ⰿ', + 'ⱀ' => 'Ⱀ', + 'ⱁ' => 'Ⱁ', + 'ⱂ' => 'Ⱂ', + 'ⱃ' => 'Ⱃ', + 'ⱄ' => 'Ⱄ', + 'ⱅ' => 'Ⱅ', + 'ⱆ' => 'Ⱆ', + 'ⱇ' => 'Ⱇ', + 'ⱈ' => 'Ⱈ', + 'ⱉ' => 'Ⱉ', + 'ⱊ' => 'Ⱊ', + 'ⱋ' => 'Ⱋ', + 'ⱌ' => 'Ⱌ', + 'ⱍ' => 'Ⱍ', + 'ⱎ' => 'Ⱎ', + 'ⱏ' => 'Ⱏ', + 'ⱐ' => 'Ⱐ', + 'ⱑ' => 'Ⱑ', + 'ⱒ' => 'Ⱒ', + 'ⱓ' => 'Ⱓ', + 'ⱔ' => 'Ⱔ', + 'ⱕ' => 'Ⱕ', + 'ⱖ' => 'Ⱖ', + 'ⱗ' => 'Ⱗ', + 'ⱘ' => 'Ⱘ', + 'ⱙ' => 'Ⱙ', + 'ⱚ' => 'Ⱚ', + 'ⱛ' => 'Ⱛ', + 'ⱜ' => 'Ⱜ', + 'ⱝ' => 'Ⱝ', + 'ⱞ' => 'Ⱞ', + 'ⱡ' => 'Ⱡ', + 'ⱥ' => 'Ⱥ', + 'ⱦ' => 'Ⱦ', + 'ⱨ' => 'Ⱨ', + 'ⱪ' => 'Ⱪ', + 'ⱬ' => 'Ⱬ', + 'ⱳ' => 'Ⱳ', + 'ⱶ' => 'Ⱶ', + 'ⲁ' => 'Ⲁ', + 'ⲃ' => 'Ⲃ', + 'ⲅ' => 'Ⲅ', + 'ⲇ' => 'Ⲇ', + 'ⲉ' => 'Ⲉ', + 'ⲋ' => 'Ⲋ', + 'ⲍ' => 'Ⲍ', + 'ⲏ' => 'Ⲏ', + 'ⲑ' => 'Ⲑ', + 'ⲓ' => 'Ⲓ', + 'ⲕ' => 'Ⲕ', + 'ⲗ' => 'Ⲗ', + 'ⲙ' => 'Ⲙ', + 'ⲛ' => 'Ⲛ', + 'ⲝ' => 'Ⲝ', + 'ⲟ' => 'Ⲟ', + 'ⲡ' => 'Ⲡ', + 'ⲣ' => 'Ⲣ', + 'ⲥ' => 'Ⲥ', + 'ⲧ' => 'Ⲧ', + 'ⲩ' => 'Ⲩ', + 'ⲫ' => 'Ⲫ', + 'ⲭ' => 'Ⲭ', + 'ⲯ' => 'Ⲯ', + 'ⲱ' => 'Ⲱ', + 'ⲳ' => 'Ⲳ', + 'ⲵ' => 'Ⲵ', + 'ⲷ' => 'Ⲷ', + 'ⲹ' => 'Ⲹ', + 'ⲻ' => 'Ⲻ', + 'ⲽ' => 'Ⲽ', + 'ⲿ' => 'Ⲿ', + 'ⳁ' => 'Ⳁ', + 'ⳃ' => 'Ⳃ', + 'ⳅ' => 'Ⳅ', + 'ⳇ' => 'Ⳇ', + 'ⳉ' => 'Ⳉ', + 'ⳋ' => 'Ⳋ', + 'ⳍ' => 'Ⳍ', + 'ⳏ' => 'Ⳏ', + 'ⳑ' => 'Ⳑ', + 'ⳓ' => 'Ⳓ', + 'ⳕ' => 'Ⳕ', + 'ⳗ' => 'Ⳗ', + 'ⳙ' => 'Ⳙ', + 'ⳛ' => 'Ⳛ', + 'ⳝ' => 'Ⳝ', + 'ⳟ' => 'Ⳟ', + 'ⳡ' => 'Ⳡ', + 'ⳣ' => 'Ⳣ', + 'ⳬ' => 'Ⳬ', + 'ⳮ' => 'Ⳮ', + 'ⳳ' => 'Ⳳ', + 'ⴀ' => 'Ⴀ', + 'ⴁ' => 'Ⴁ', + 'ⴂ' => 'Ⴂ', + 'ⴃ' => 'Ⴃ', + 'ⴄ' => 'Ⴄ', + 'ⴅ' => 'Ⴅ', + 'ⴆ' => 'Ⴆ', + 'ⴇ' => 'Ⴇ', + 'ⴈ' => 'Ⴈ', + 'ⴉ' => 'Ⴉ', + 'ⴊ' => 'Ⴊ', + 'ⴋ' => 'Ⴋ', + 'ⴌ' => 'Ⴌ', + 'ⴍ' => 'Ⴍ', + 'ⴎ' => 'Ⴎ', + 'ⴏ' => 'Ⴏ', + 'ⴐ' => 'Ⴐ', + 'ⴑ' => 'Ⴑ', + 'ⴒ' => 'Ⴒ', + 'ⴓ' => 'Ⴓ', + 'ⴔ' => 'Ⴔ', + 'ⴕ' => 'Ⴕ', + 'ⴖ' => 'Ⴖ', + 'ⴗ' => 'Ⴗ', + 'ⴘ' => 'Ⴘ', + 'ⴙ' => 'Ⴙ', + 'ⴚ' => 'Ⴚ', + 'ⴛ' => 'Ⴛ', + 'ⴜ' => 'Ⴜ', + 'ⴝ' => 'Ⴝ', + 'ⴞ' => 'Ⴞ', + 'ⴟ' => 'Ⴟ', + 'ⴠ' => 'Ⴠ', + 'ⴡ' => 'Ⴡ', + 'ⴢ' => 'Ⴢ', + 'ⴣ' => 'Ⴣ', + 'ⴤ' => 'Ⴤ', + 'ⴥ' => 'Ⴥ', + 'ⴧ' => 'Ⴧ', + 'ⴭ' => 'Ⴭ', + 'ꙁ' => 'Ꙁ', + 'ꙃ' => 'Ꙃ', + 'ꙅ' => 'Ꙅ', + 'ꙇ' => 'Ꙇ', + 'ꙉ' => 'Ꙉ', + 'ꙋ' => 'Ꙋ', + 'ꙍ' => 'Ꙍ', + 'ꙏ' => 'Ꙏ', + 'ꙑ' => 'Ꙑ', + 'ꙓ' => 'Ꙓ', + 'ꙕ' => 'Ꙕ', + 'ꙗ' => 'Ꙗ', + 'ꙙ' => 'Ꙙ', + 'ꙛ' => 'Ꙛ', + 'ꙝ' => 'Ꙝ', + 'ꙟ' => 'Ꙟ', + 'ꙡ' => 'Ꙡ', + 'ꙣ' => 'Ꙣ', + 'ꙥ' => 'Ꙥ', + 'ꙧ' => 'Ꙧ', + 'ꙩ' => 'Ꙩ', + 'ꙫ' => 'Ꙫ', + 'ꙭ' => 'Ꙭ', + 'ꚁ' => 'Ꚁ', + 'ꚃ' => 'Ꚃ', + 'ꚅ' => 'Ꚅ', + 'ꚇ' => 'Ꚇ', + 'ꚉ' => 'Ꚉ', + 'ꚋ' => 'Ꚋ', + 'ꚍ' => 'Ꚍ', + 'ꚏ' => 'Ꚏ', + 'ꚑ' => 'Ꚑ', + 'ꚓ' => 'Ꚓ', + 'ꚕ' => 'Ꚕ', + 'ꚗ' => 'Ꚗ', + 'ꚙ' => 'Ꚙ', + 'ꚛ' => 'Ꚛ', + 'ꜣ' => 'Ꜣ', + 'ꜥ' => 'Ꜥ', + 'ꜧ' => 'Ꜧ', + 'ꜩ' => 'Ꜩ', + 'ꜫ' => 'Ꜫ', + 'ꜭ' => 'Ꜭ', + 'ꜯ' => 'Ꜯ', + 'ꜳ' => 'Ꜳ', + 'ꜵ' => 'Ꜵ', + 'ꜷ' => 'Ꜷ', + 'ꜹ' => 'Ꜹ', + 'ꜻ' => 'Ꜻ', + 'ꜽ' => 'Ꜽ', + 'ꜿ' => 'Ꜿ', + 'ꝁ' => 'Ꝁ', + 'ꝃ' => 'Ꝃ', + 'ꝅ' => 'Ꝅ', + 'ꝇ' => 'Ꝇ', + 'ꝉ' => 'Ꝉ', + 'ꝋ' => 'Ꝋ', + 'ꝍ' => 'Ꝍ', + 'ꝏ' => 'Ꝏ', + 'ꝑ' => 'Ꝑ', + 'ꝓ' => 'Ꝓ', + 'ꝕ' => 'Ꝕ', + 'ꝗ' => 'Ꝗ', + 'ꝙ' => 'Ꝙ', + 'ꝛ' => 'Ꝛ', + 'ꝝ' => 'Ꝝ', + 'ꝟ' => 'Ꝟ', + 'ꝡ' => 'Ꝡ', + 'ꝣ' => 'Ꝣ', + 'ꝥ' => 'Ꝥ', + 'ꝧ' => 'Ꝧ', + 'ꝩ' => 'Ꝩ', + 'ꝫ' => 'Ꝫ', + 'ꝭ' => 'Ꝭ', + 'ꝯ' => 'Ꝯ', + 'ꝺ' => 'Ꝺ', + 'ꝼ' => 'Ꝼ', + 'ꝿ' => 'Ꝿ', + 'ꞁ' => 'Ꞁ', + 'ꞃ' => 'Ꞃ', + 'ꞅ' => 'Ꞅ', + 'ꞇ' => 'Ꞇ', + 'ꞌ' => 'Ꞌ', + 'ꞑ' => 'Ꞑ', + 'ꞓ' => 'Ꞓ', + 'ꞔ' => 'Ꞔ', + 'ꞗ' => 'Ꞗ', + 'ꞙ' => 'Ꞙ', + 'ꞛ' => 'Ꞛ', + 'ꞝ' => 'Ꞝ', + 'ꞟ' => 'Ꞟ', + 'ꞡ' => 'Ꞡ', + 'ꞣ' => 'Ꞣ', + 'ꞥ' => 'Ꞥ', + 'ꞧ' => 'Ꞧ', + 'ꞩ' => 'Ꞩ', + 'ꞵ' => 'Ꞵ', + 'ꞷ' => 'Ꞷ', + 'ꞹ' => 'Ꞹ', + 'ꞻ' => 'Ꞻ', + 'ꞽ' => 'Ꞽ', + 'ꞿ' => 'Ꞿ', + 'ꟃ' => 'Ꟃ', + 'ꟈ' => 'Ꟈ', + 'ꟊ' => 'Ꟊ', + 'ꟶ' => 'Ꟶ', + 'ꭓ' => 'Ꭓ', + 'ꭰ' => 'Ꭰ', + 'ꭱ' => 'Ꭱ', + 'ꭲ' => 'Ꭲ', + 'ꭳ' => 'Ꭳ', + 'ꭴ' => 'Ꭴ', + 'ꭵ' => 'Ꭵ', + 'ꭶ' => 'Ꭶ', + 'ꭷ' => 'Ꭷ', + 'ꭸ' => 'Ꭸ', + 'ꭹ' => 'Ꭹ', + 'ꭺ' => 'Ꭺ', + 'ꭻ' => 'Ꭻ', + 'ꭼ' => 'Ꭼ', + 'ꭽ' => 'Ꭽ', + 'ꭾ' => 'Ꭾ', + 'ꭿ' => 'Ꭿ', + 'ꮀ' => 'Ꮀ', + 'ꮁ' => 'Ꮁ', + 'ꮂ' => 'Ꮂ', + 'ꮃ' => 'Ꮃ', + 'ꮄ' => 'Ꮄ', + 'ꮅ' => 'Ꮅ', + 'ꮆ' => 'Ꮆ', + 'ꮇ' => 'Ꮇ', + 'ꮈ' => 'Ꮈ', + 'ꮉ' => 'Ꮉ', + 'ꮊ' => 'Ꮊ', + 'ꮋ' => 'Ꮋ', + 'ꮌ' => 'Ꮌ', + 'ꮍ' => 'Ꮍ', + 'ꮎ' => 'Ꮎ', + 'ꮏ' => 'Ꮏ', + 'ꮐ' => 'Ꮐ', + 'ꮑ' => 'Ꮑ', + 'ꮒ' => 'Ꮒ', + 'ꮓ' => 'Ꮓ', + 'ꮔ' => 'Ꮔ', + 'ꮕ' => 'Ꮕ', + 'ꮖ' => 'Ꮖ', + 'ꮗ' => 'Ꮗ', + 'ꮘ' => 'Ꮘ', + 'ꮙ' => 'Ꮙ', + 'ꮚ' => 'Ꮚ', + 'ꮛ' => 'Ꮛ', + 'ꮜ' => 'Ꮜ', + 'ꮝ' => 'Ꮝ', + 'ꮞ' => 'Ꮞ', + 'ꮟ' => 'Ꮟ', + 'ꮠ' => 'Ꮠ', + 'ꮡ' => 'Ꮡ', + 'ꮢ' => 'Ꮢ', + 'ꮣ' => 'Ꮣ', + 'ꮤ' => 'Ꮤ', + 'ꮥ' => 'Ꮥ', + 'ꮦ' => 'Ꮦ', + 'ꮧ' => 'Ꮧ', + 'ꮨ' => 'Ꮨ', + 'ꮩ' => 'Ꮩ', + 'ꮪ' => 'Ꮪ', + 'ꮫ' => 'Ꮫ', + 'ꮬ' => 'Ꮬ', + 'ꮭ' => 'Ꮭ', + 'ꮮ' => 'Ꮮ', + 'ꮯ' => 'Ꮯ', + 'ꮰ' => 'Ꮰ', + 'ꮱ' => 'Ꮱ', + 'ꮲ' => 'Ꮲ', + 'ꮳ' => 'Ꮳ', + 'ꮴ' => 'Ꮴ', + 'ꮵ' => 'Ꮵ', + 'ꮶ' => 'Ꮶ', + 'ꮷ' => 'Ꮷ', + 'ꮸ' => 'Ꮸ', + 'ꮹ' => 'Ꮹ', + 'ꮺ' => 'Ꮺ', + 'ꮻ' => 'Ꮻ', + 'ꮼ' => 'Ꮼ', + 'ꮽ' => 'Ꮽ', + 'ꮾ' => 'Ꮾ', + 'ꮿ' => 'Ꮿ', + 'a' => 'A', + 'b' => 'B', + 'c' => 'C', + 'd' => 'D', + 'e' => 'E', + 'f' => 'F', + 'g' => 'G', + 'h' => 'H', + 'i' => 'I', + 'j' => 'J', + 'k' => 'K', + 'l' => 'L', + 'm' => 'M', + 'n' => 'N', + 'o' => 'O', + 'p' => 'P', + 'q' => 'Q', + 'r' => 'R', + 's' => 'S', + 't' => 'T', + 'u' => 'U', + 'v' => 'V', + 'w' => 'W', + 'x' => 'X', + 'y' => 'Y', + 'z' => 'Z', + '𐐨' => '𐐀', + '𐐩' => '𐐁', + '𐐪' => '𐐂', + '𐐫' => '𐐃', + '𐐬' => '𐐄', + '𐐭' => '𐐅', + '𐐮' => '𐐆', + '𐐯' => '𐐇', + '𐐰' => '𐐈', + '𐐱' => '𐐉', + '𐐲' => '𐐊', + '𐐳' => '𐐋', + '𐐴' => '𐐌', + '𐐵' => '𐐍', + '𐐶' => '𐐎', + '𐐷' => '𐐏', + '𐐸' => '𐐐', + '𐐹' => '𐐑', + '𐐺' => '𐐒', + '𐐻' => '𐐓', + '𐐼' => '𐐔', + '𐐽' => '𐐕', + '𐐾' => '𐐖', + '𐐿' => '𐐗', + '𐑀' => '𐐘', + '𐑁' => '𐐙', + '𐑂' => '𐐚', + '𐑃' => '𐐛', + '𐑄' => '𐐜', + '𐑅' => '𐐝', + '𐑆' => '𐐞', + '𐑇' => '𐐟', + '𐑈' => '𐐠', + '𐑉' => '𐐡', + '𐑊' => '𐐢', + '𐑋' => '𐐣', + '𐑌' => '𐐤', + '𐑍' => '𐐥', + '𐑎' => '𐐦', + '𐑏' => '𐐧', + '𐓘' => '𐒰', + '𐓙' => '𐒱', + '𐓚' => '𐒲', + '𐓛' => '𐒳', + '𐓜' => '𐒴', + '𐓝' => '𐒵', + '𐓞' => '𐒶', + '𐓟' => '𐒷', + '𐓠' => '𐒸', + '𐓡' => '𐒹', + '𐓢' => '𐒺', + '𐓣' => '𐒻', + '𐓤' => '𐒼', + '𐓥' => '𐒽', + '𐓦' => '𐒾', + '𐓧' => '𐒿', + '𐓨' => '𐓀', + '𐓩' => '𐓁', + '𐓪' => '𐓂', + '𐓫' => '𐓃', + '𐓬' => '𐓄', + '𐓭' => '𐓅', + '𐓮' => '𐓆', + '𐓯' => '𐓇', + '𐓰' => '𐓈', + '𐓱' => '𐓉', + '𐓲' => '𐓊', + '𐓳' => '𐓋', + '𐓴' => '𐓌', + '𐓵' => '𐓍', + '𐓶' => '𐓎', + '𐓷' => '𐓏', + '𐓸' => '𐓐', + '𐓹' => '𐓑', + '𐓺' => '𐓒', + '𐓻' => '𐓓', + '𐳀' => '𐲀', + '𐳁' => '𐲁', + '𐳂' => '𐲂', + '𐳃' => '𐲃', + '𐳄' => '𐲄', + '𐳅' => '𐲅', + '𐳆' => '𐲆', + '𐳇' => '𐲇', + '𐳈' => '𐲈', + '𐳉' => '𐲉', + '𐳊' => '𐲊', + '𐳋' => '𐲋', + '𐳌' => '𐲌', + '𐳍' => '𐲍', + '𐳎' => '𐲎', + '𐳏' => '𐲏', + '𐳐' => '𐲐', + '𐳑' => '𐲑', + '𐳒' => '𐲒', + '𐳓' => '𐲓', + '𐳔' => '𐲔', + '𐳕' => '𐲕', + '𐳖' => '𐲖', + '𐳗' => '𐲗', + '𐳘' => '𐲘', + '𐳙' => '𐲙', + '𐳚' => '𐲚', + '𐳛' => '𐲛', + '𐳜' => '𐲜', + '𐳝' => '𐲝', + '𐳞' => '𐲞', + '𐳟' => '𐲟', + '𐳠' => '𐲠', + '𐳡' => '𐲡', + '𐳢' => '𐲢', + '𐳣' => '𐲣', + '𐳤' => '𐲤', + '𐳥' => '𐲥', + '𐳦' => '𐲦', + '𐳧' => '𐲧', + '𐳨' => '𐲨', + '𐳩' => '𐲩', + '𐳪' => '𐲪', + '𐳫' => '𐲫', + '𐳬' => '𐲬', + '𐳭' => '𐲭', + '𐳮' => '𐲮', + '𐳯' => '𐲯', + '𐳰' => '𐲰', + '𐳱' => '𐲱', + '𐳲' => '𐲲', + '𑣀' => '𑢠', + '𑣁' => '𑢡', + '𑣂' => '𑢢', + '𑣃' => '𑢣', + '𑣄' => '𑢤', + '𑣅' => '𑢥', + '𑣆' => '𑢦', + '𑣇' => '𑢧', + '𑣈' => '𑢨', + '𑣉' => '𑢩', + '𑣊' => '𑢪', + '𑣋' => '𑢫', + '𑣌' => '𑢬', + '𑣍' => '𑢭', + '𑣎' => '𑢮', + '𑣏' => '𑢯', + '𑣐' => '𑢰', + '𑣑' => '𑢱', + '𑣒' => '𑢲', + '𑣓' => '𑢳', + '𑣔' => '𑢴', + '𑣕' => '𑢵', + '𑣖' => '𑢶', + '𑣗' => '𑢷', + '𑣘' => '𑢸', + '𑣙' => '𑢹', + '𑣚' => '𑢺', + '𑣛' => '𑢻', + '𑣜' => '𑢼', + '𑣝' => '𑢽', + '𑣞' => '𑢾', + '𑣟' => '𑢿', + '𖹠' => '𖹀', + '𖹡' => '𖹁', + '𖹢' => '𖹂', + '𖹣' => '𖹃', + '𖹤' => '𖹄', + '𖹥' => '𖹅', + '𖹦' => '𖹆', + '𖹧' => '𖹇', + '𖹨' => '𖹈', + '𖹩' => '𖹉', + '𖹪' => '𖹊', + '𖹫' => '𖹋', + '𖹬' => '𖹌', + '𖹭' => '𖹍', + '𖹮' => '𖹎', + '𖹯' => '𖹏', + '𖹰' => '𖹐', + '𖹱' => '𖹑', + '𖹲' => '𖹒', + '𖹳' => '𖹓', + '𖹴' => '𖹔', + '𖹵' => '𖹕', + '𖹶' => '𖹖', + '𖹷' => '𖹗', + '𖹸' => '𖹘', + '𖹹' => '𖹙', + '𖹺' => '𖹚', + '𖹻' => '𖹛', + '𖹼' => '𖹜', + '𖹽' => '𖹝', + '𖹾' => '𖹞', + '𖹿' => '𖹟', + '𞤢' => '𞤀', + '𞤣' => '𞤁', + '𞤤' => '𞤂', + '𞤥' => '𞤃', + '𞤦' => '𞤄', + '𞤧' => '𞤅', + '𞤨' => '𞤆', + '𞤩' => '𞤇', + '𞤪' => '𞤈', + '𞤫' => '𞤉', + '𞤬' => '𞤊', + '𞤭' => '𞤋', + '𞤮' => '𞤌', + '𞤯' => '𞤍', + '𞤰' => '𞤎', + '𞤱' => '𞤏', + '𞤲' => '𞤐', + '𞤳' => '𞤑', + '𞤴' => '𞤒', + '𞤵' => '𞤓', + '𞤶' => '𞤔', + '𞤷' => '𞤕', + '𞤸' => '𞤖', + '𞤹' => '𞤗', + '𞤺' => '𞤘', + '𞤻' => '𞤙', + '𞤼' => '𞤚', + '𞤽' => '𞤛', + '𞤾' => '𞤜', + '𞤿' => '𞤝', + '𞥀' => '𞤞', + '𞥁' => '𞤟', + '𞥂' => '𞤠', + '𞥃' => '𞤡', + 'ß' => 'SS', + 'ff' => 'FF', + 'fi' => 'FI', + 'fl' => 'FL', + 'ffi' => 'FFI', + 'ffl' => 'FFL', + 'ſt' => 'ST', + 'st' => 'ST', + 'և' => 'ԵՒ', + 'ﬓ' => 'ՄՆ', + 'ﬔ' => 'ՄԵ', + 'ﬕ' => 'ՄԻ', + 'ﬖ' => 'ՎՆ', + 'ﬗ' => 'ՄԽ', + 'ʼn' => 'ʼN', + 'ΐ' => 'Ϊ́', + 'ΰ' => 'Ϋ́', + 'ǰ' => 'J̌', + 'ẖ' => 'H̱', + 'ẗ' => 'T̈', + 'ẘ' => 'W̊', + 'ẙ' => 'Y̊', + 'ẚ' => 'Aʾ', + 'ὐ' => 'Υ̓', + 'ὒ' => 'Υ̓̀', + 'ὔ' => 'Υ̓́', + 'ὖ' => 'Υ̓͂', + 'ᾶ' => 'Α͂', + 'ῆ' => 'Η͂', + 'ῒ' => 'Ϊ̀', + 'ΐ' => 'Ϊ́', + 'ῖ' => 'Ι͂', + 'ῗ' => 'Ϊ͂', + 'ῢ' => 'Ϋ̀', + 'ΰ' => 'Ϋ́', + 'ῤ' => 'Ρ̓', + 'ῦ' => 'Υ͂', + 'ῧ' => 'Ϋ͂', + 'ῶ' => 'Ω͂', + 'ᾈ' => 'ἈΙ', + 'ᾉ' => 'ἉΙ', + 'ᾊ' => 'ἊΙ', + 'ᾋ' => 'ἋΙ', + 'ᾌ' => 'ἌΙ', + 'ᾍ' => 'ἍΙ', + 'ᾎ' => 'ἎΙ', + 'ᾏ' => 'ἏΙ', + 'ᾘ' => 'ἨΙ', + 'ᾙ' => 'ἩΙ', + 'ᾚ' => 'ἪΙ', + 'ᾛ' => 'ἫΙ', + 'ᾜ' => 'ἬΙ', + 'ᾝ' => 'ἭΙ', + 'ᾞ' => 'ἮΙ', + 'ᾟ' => 'ἯΙ', + 'ᾨ' => 'ὨΙ', + 'ᾩ' => 'ὩΙ', + 'ᾪ' => 'ὪΙ', + 'ᾫ' => 'ὫΙ', + 'ᾬ' => 'ὬΙ', + 'ᾭ' => 'ὭΙ', + 'ᾮ' => 'ὮΙ', + 'ᾯ' => 'ὯΙ', + 'ᾼ' => 'ΑΙ', + 'ῌ' => 'ΗΙ', + 'ῼ' => 'ΩΙ', + 'ᾲ' => 'ᾺΙ', + 'ᾴ' => 'ΆΙ', + 'ῂ' => 'ῊΙ', + 'ῄ' => 'ΉΙ', + 'ῲ' => 'ῺΙ', + 'ῴ' => 'ΏΙ', + 'ᾷ' => 'Α͂Ι', + 'ῇ' => 'Η͂Ι', + 'ῷ' => 'Ω͂Ι', +); diff --git a/Sources/vendor/symfony/polyfill-mbstring/bootstrap.php b/Sources/vendor/symfony/polyfill-mbstring/bootstrap.php new file mode 100644 index 00000000..ecf1a035 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-mbstring/bootstrap.php @@ -0,0 +1,151 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +use Symfony\Polyfill\Mbstring as p; + +if (\PHP_VERSION_ID >= 80000) { + return require __DIR__.'/bootstrap80.php'; +} + +if (!function_exists('mb_convert_encoding')) { + function mb_convert_encoding($string, $to_encoding, $from_encoding = null) { return p\Mbstring::mb_convert_encoding($string, $to_encoding, $from_encoding); } +} +if (!function_exists('mb_decode_mimeheader')) { + function mb_decode_mimeheader($string) { return p\Mbstring::mb_decode_mimeheader($string); } +} +if (!function_exists('mb_encode_mimeheader')) { + function mb_encode_mimeheader($string, $charset = null, $transfer_encoding = null, $newline = "\r\n", $indent = 0) { return p\Mbstring::mb_encode_mimeheader($string, $charset, $transfer_encoding, $newline, $indent); } +} +if (!function_exists('mb_decode_numericentity')) { + function mb_decode_numericentity($string, $map, $encoding = null) { return p\Mbstring::mb_decode_numericentity($string, $map, $encoding); } +} +if (!function_exists('mb_encode_numericentity')) { + function mb_encode_numericentity($string, $map, $encoding = null, $hex = false) { return p\Mbstring::mb_encode_numericentity($string, $map, $encoding, $hex); } +} +if (!function_exists('mb_convert_case')) { + function mb_convert_case($string, $mode, $encoding = null) { return p\Mbstring::mb_convert_case($string, $mode, $encoding); } +} +if (!function_exists('mb_internal_encoding')) { + function mb_internal_encoding($encoding = null) { return p\Mbstring::mb_internal_encoding($encoding); } +} +if (!function_exists('mb_language')) { + function mb_language($language = null) { return p\Mbstring::mb_language($language); } +} +if (!function_exists('mb_list_encodings')) { + function mb_list_encodings() { return p\Mbstring::mb_list_encodings(); } +} +if (!function_exists('mb_encoding_aliases')) { + function mb_encoding_aliases($encoding) { return p\Mbstring::mb_encoding_aliases($encoding); } +} +if (!function_exists('mb_check_encoding')) { + function mb_check_encoding($value = null, $encoding = null) { return p\Mbstring::mb_check_encoding($value, $encoding); } +} +if (!function_exists('mb_detect_encoding')) { + function mb_detect_encoding($string, $encodings = null, $strict = false) { return p\Mbstring::mb_detect_encoding($string, $encodings, $strict); } +} +if (!function_exists('mb_detect_order')) { + function mb_detect_order($encoding = null) { return p\Mbstring::mb_detect_order($encoding); } +} +if (!function_exists('mb_parse_str')) { + function mb_parse_str($string, &$result = []) { parse_str($string, $result); return (bool) $result; } +} +if (!function_exists('mb_strlen')) { + function mb_strlen($string, $encoding = null) { return p\Mbstring::mb_strlen($string, $encoding); } +} +if (!function_exists('mb_strpos')) { + function mb_strpos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_strpos($haystack, $needle, $offset, $encoding); } +} +if (!function_exists('mb_strtolower')) { + function mb_strtolower($string, $encoding = null) { return p\Mbstring::mb_strtolower($string, $encoding); } +} +if (!function_exists('mb_strtoupper')) { + function mb_strtoupper($string, $encoding = null) { return p\Mbstring::mb_strtoupper($string, $encoding); } +} +if (!function_exists('mb_substitute_character')) { + function mb_substitute_character($substitute_character = null) { return p\Mbstring::mb_substitute_character($substitute_character); } +} +if (!function_exists('mb_substr')) { + function mb_substr($string, $start, $length = 2147483647, $encoding = null) { return p\Mbstring::mb_substr($string, $start, $length, $encoding); } +} +if (!function_exists('mb_stripos')) { + function mb_stripos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_stripos($haystack, $needle, $offset, $encoding); } +} +if (!function_exists('mb_stristr')) { + function mb_stristr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_stristr($haystack, $needle, $before_needle, $encoding); } +} +if (!function_exists('mb_strrchr')) { + function mb_strrchr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strrchr($haystack, $needle, $before_needle, $encoding); } +} +if (!function_exists('mb_strrichr')) { + function mb_strrichr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strrichr($haystack, $needle, $before_needle, $encoding); } +} +if (!function_exists('mb_strripos')) { + function mb_strripos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_strripos($haystack, $needle, $offset, $encoding); } +} +if (!function_exists('mb_strrpos')) { + function mb_strrpos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_strrpos($haystack, $needle, $offset, $encoding); } +} +if (!function_exists('mb_strstr')) { + function mb_strstr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strstr($haystack, $needle, $before_needle, $encoding); } +} +if (!function_exists('mb_get_info')) { + function mb_get_info($type = 'all') { return p\Mbstring::mb_get_info($type); } +} +if (!function_exists('mb_http_output')) { + function mb_http_output($encoding = null) { return p\Mbstring::mb_http_output($encoding); } +} +if (!function_exists('mb_strwidth')) { + function mb_strwidth($string, $encoding = null) { return p\Mbstring::mb_strwidth($string, $encoding); } +} +if (!function_exists('mb_substr_count')) { + function mb_substr_count($haystack, $needle, $encoding = null) { return p\Mbstring::mb_substr_count($haystack, $needle, $encoding); } +} +if (!function_exists('mb_output_handler')) { + function mb_output_handler($string, $status) { return p\Mbstring::mb_output_handler($string, $status); } +} +if (!function_exists('mb_http_input')) { + function mb_http_input($type = null) { return p\Mbstring::mb_http_input($type); } +} + +if (!function_exists('mb_convert_variables')) { + function mb_convert_variables($to_encoding, $from_encoding, &...$vars) { return p\Mbstring::mb_convert_variables($to_encoding, $from_encoding, ...$vars); } +} + +if (!function_exists('mb_ord')) { + function mb_ord($string, $encoding = null) { return p\Mbstring::mb_ord($string, $encoding); } +} +if (!function_exists('mb_chr')) { + function mb_chr($codepoint, $encoding = null) { return p\Mbstring::mb_chr($codepoint, $encoding); } +} +if (!function_exists('mb_scrub')) { + function mb_scrub($string, $encoding = null) { $encoding = null === $encoding ? mb_internal_encoding() : $encoding; return mb_convert_encoding($string, $encoding, $encoding); } +} +if (!function_exists('mb_str_split')) { + function mb_str_split($string, $length = 1, $encoding = null) { return p\Mbstring::mb_str_split($string, $length, $encoding); } +} + +if (!function_exists('mb_str_pad')) { + function mb_str_pad(string $string, int $length, string $pad_string = ' ', int $pad_type = STR_PAD_RIGHT, ?string $encoding = null): string { return p\Mbstring::mb_str_pad($string, $length, $pad_string, $pad_type, $encoding); } +} + +if (extension_loaded('mbstring')) { + return; +} + +if (!defined('MB_CASE_UPPER')) { + define('MB_CASE_UPPER', 0); +} +if (!defined('MB_CASE_LOWER')) { + define('MB_CASE_LOWER', 1); +} +if (!defined('MB_CASE_TITLE')) { + define('MB_CASE_TITLE', 2); +} diff --git a/Sources/vendor/symfony/polyfill-mbstring/bootstrap80.php b/Sources/vendor/symfony/polyfill-mbstring/bootstrap80.php new file mode 100644 index 00000000..2f9fb5b4 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-mbstring/bootstrap80.php @@ -0,0 +1,147 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +use Symfony\Polyfill\Mbstring as p; + +if (!function_exists('mb_convert_encoding')) { + function mb_convert_encoding(array|string|null $string, ?string $to_encoding, array|string|null $from_encoding = null): array|string|false { return p\Mbstring::mb_convert_encoding($string ?? '', (string) $to_encoding, $from_encoding); } +} +if (!function_exists('mb_decode_mimeheader')) { + function mb_decode_mimeheader(?string $string): string { return p\Mbstring::mb_decode_mimeheader((string) $string); } +} +if (!function_exists('mb_encode_mimeheader')) { + function mb_encode_mimeheader(?string $string, ?string $charset = null, ?string $transfer_encoding = null, ?string $newline = "\r\n", ?int $indent = 0): string { return p\Mbstring::mb_encode_mimeheader((string) $string, $charset, $transfer_encoding, (string) $newline, (int) $indent); } +} +if (!function_exists('mb_decode_numericentity')) { + function mb_decode_numericentity(?string $string, array $map, ?string $encoding = null): string { return p\Mbstring::mb_decode_numericentity((string) $string, $map, $encoding); } +} +if (!function_exists('mb_encode_numericentity')) { + function mb_encode_numericentity(?string $string, array $map, ?string $encoding = null, ?bool $hex = false): string { return p\Mbstring::mb_encode_numericentity((string) $string, $map, $encoding, (bool) $hex); } +} +if (!function_exists('mb_convert_case')) { + function mb_convert_case(?string $string, ?int $mode, ?string $encoding = null): string { return p\Mbstring::mb_convert_case((string) $string, (int) $mode, $encoding); } +} +if (!function_exists('mb_internal_encoding')) { + function mb_internal_encoding(?string $encoding = null): string|bool { return p\Mbstring::mb_internal_encoding($encoding); } +} +if (!function_exists('mb_language')) { + function mb_language(?string $language = null): string|bool { return p\Mbstring::mb_language($language); } +} +if (!function_exists('mb_list_encodings')) { + function mb_list_encodings(): array { return p\Mbstring::mb_list_encodings(); } +} +if (!function_exists('mb_encoding_aliases')) { + function mb_encoding_aliases(?string $encoding): array { return p\Mbstring::mb_encoding_aliases((string) $encoding); } +} +if (!function_exists('mb_check_encoding')) { + function mb_check_encoding(array|string|null $value = null, ?string $encoding = null): bool { return p\Mbstring::mb_check_encoding($value, $encoding); } +} +if (!function_exists('mb_detect_encoding')) { + function mb_detect_encoding(?string $string, array|string|null $encodings = null, ?bool $strict = false): string|false { return p\Mbstring::mb_detect_encoding((string) $string, $encodings, (bool) $strict); } +} +if (!function_exists('mb_detect_order')) { + function mb_detect_order(array|string|null $encoding = null): array|bool { return p\Mbstring::mb_detect_order($encoding); } +} +if (!function_exists('mb_parse_str')) { + function mb_parse_str(?string $string, &$result = []): bool { parse_str((string) $string, $result); return (bool) $result; } +} +if (!function_exists('mb_strlen')) { + function mb_strlen(?string $string, ?string $encoding = null): int { return p\Mbstring::mb_strlen((string) $string, $encoding); } +} +if (!function_exists('mb_strpos')) { + function mb_strpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_strpos((string) $haystack, (string) $needle, (int) $offset, $encoding); } +} +if (!function_exists('mb_strtolower')) { + function mb_strtolower(?string $string, ?string $encoding = null): string { return p\Mbstring::mb_strtolower((string) $string, $encoding); } +} +if (!function_exists('mb_strtoupper')) { + function mb_strtoupper(?string $string, ?string $encoding = null): string { return p\Mbstring::mb_strtoupper((string) $string, $encoding); } +} +if (!function_exists('mb_substitute_character')) { + function mb_substitute_character(string|int|null $substitute_character = null): string|int|bool { return p\Mbstring::mb_substitute_character($substitute_character); } +} +if (!function_exists('mb_substr')) { + function mb_substr(?string $string, ?int $start, ?int $length = null, ?string $encoding = null): string { return p\Mbstring::mb_substr((string) $string, (int) $start, $length, $encoding); } +} +if (!function_exists('mb_stripos')) { + function mb_stripos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_stripos((string) $haystack, (string) $needle, (int) $offset, $encoding); } +} +if (!function_exists('mb_stristr')) { + function mb_stristr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_stristr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } +} +if (!function_exists('mb_strrchr')) { + function mb_strrchr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_strrchr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } +} +if (!function_exists('mb_strrichr')) { + function mb_strrichr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_strrichr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } +} +if (!function_exists('mb_strripos')) { + function mb_strripos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_strripos((string) $haystack, (string) $needle, (int) $offset, $encoding); } +} +if (!function_exists('mb_strrpos')) { + function mb_strrpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_strrpos((string) $haystack, (string) $needle, (int) $offset, $encoding); } +} +if (!function_exists('mb_strstr')) { + function mb_strstr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_strstr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } +} +if (!function_exists('mb_get_info')) { + function mb_get_info(?string $type = 'all'): array|string|int|false { return p\Mbstring::mb_get_info((string) $type); } +} +if (!function_exists('mb_http_output')) { + function mb_http_output(?string $encoding = null): string|bool { return p\Mbstring::mb_http_output($encoding); } +} +if (!function_exists('mb_strwidth')) { + function mb_strwidth(?string $string, ?string $encoding = null): int { return p\Mbstring::mb_strwidth((string) $string, $encoding); } +} +if (!function_exists('mb_substr_count')) { + function mb_substr_count(?string $haystack, ?string $needle, ?string $encoding = null): int { return p\Mbstring::mb_substr_count((string) $haystack, (string) $needle, $encoding); } +} +if (!function_exists('mb_output_handler')) { + function mb_output_handler(?string $string, ?int $status): string { return p\Mbstring::mb_output_handler((string) $string, (int) $status); } +} +if (!function_exists('mb_http_input')) { + function mb_http_input(?string $type = null): array|string|false { return p\Mbstring::mb_http_input($type); } +} + +if (!function_exists('mb_convert_variables')) { + function mb_convert_variables(?string $to_encoding, array|string|null $from_encoding, mixed &$var, mixed &...$vars): string|false { return p\Mbstring::mb_convert_variables((string) $to_encoding, $from_encoding ?? '', $var, ...$vars); } +} + +if (!function_exists('mb_ord')) { + function mb_ord(?string $string, ?string $encoding = null): int|false { return p\Mbstring::mb_ord((string) $string, $encoding); } +} +if (!function_exists('mb_chr')) { + function mb_chr(?int $codepoint, ?string $encoding = null): string|false { return p\Mbstring::mb_chr((int) $codepoint, $encoding); } +} +if (!function_exists('mb_scrub')) { + function mb_scrub(?string $string, ?string $encoding = null): string { $encoding ??= mb_internal_encoding(); return mb_convert_encoding((string) $string, $encoding, $encoding); } +} +if (!function_exists('mb_str_split')) { + function mb_str_split(?string $string, ?int $length = 1, ?string $encoding = null): array { return p\Mbstring::mb_str_split((string) $string, (int) $length, $encoding); } +} + +if (!function_exists('mb_str_pad')) { + function mb_str_pad(string $string, int $length, string $pad_string = ' ', int $pad_type = STR_PAD_RIGHT, ?string $encoding = null): string { return p\Mbstring::mb_str_pad($string, $length, $pad_string, $pad_type, $encoding); } +} + +if (extension_loaded('mbstring')) { + return; +} + +if (!defined('MB_CASE_UPPER')) { + define('MB_CASE_UPPER', 0); +} +if (!defined('MB_CASE_LOWER')) { + define('MB_CASE_LOWER', 1); +} +if (!defined('MB_CASE_TITLE')) { + define('MB_CASE_TITLE', 2); +} diff --git a/Sources/vendor/symfony/polyfill-mbstring/composer.json b/Sources/vendor/symfony/polyfill-mbstring/composer.json new file mode 100644 index 00000000..943e5029 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-mbstring/composer.json @@ -0,0 +1,41 @@ +{ + "name": "symfony/polyfill-mbstring", + "type": "library", + "description": "Symfony polyfill for the Mbstring extension", + "keywords": ["polyfill", "shim", "compatibility", "portable", "mbstring"], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-mbstring": "*" + }, + "autoload": { + "psr-4": { "Symfony\\Polyfill\\Mbstring\\": "" }, + "files": [ "bootstrap.php" ] + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + } +} diff --git a/Sources/vendor/symfony/polyfill-php80/LICENSE b/Sources/vendor/symfony/polyfill-php80/LICENSE new file mode 100644 index 00000000..0ed3a246 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-php80/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2020-present Fabien Potencier + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/Sources/vendor/symfony/polyfill-php80/Php80.php b/Sources/vendor/symfony/polyfill-php80/Php80.php new file mode 100644 index 00000000..362dd1a9 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-php80/Php80.php @@ -0,0 +1,115 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Polyfill\Php80; + +/** + * @author Ion Bazan + * @author Nico Oelgart + * @author Nicolas Grekas + * + * @internal + */ +final class Php80 +{ + public static function fdiv(float $dividend, float $divisor): float + { + return @($dividend / $divisor); + } + + public static function get_debug_type($value): string + { + switch (true) { + case null === $value: return 'null'; + case \is_bool($value): return 'bool'; + case \is_string($value): return 'string'; + case \is_array($value): return 'array'; + case \is_int($value): return 'int'; + case \is_float($value): return 'float'; + case \is_object($value): break; + case $value instanceof \__PHP_Incomplete_Class: return '__PHP_Incomplete_Class'; + default: + if (null === $type = @get_resource_type($value)) { + return 'unknown'; + } + + if ('Unknown' === $type) { + $type = 'closed'; + } + + return "resource ($type)"; + } + + $class = \get_class($value); + + if (false === strpos($class, '@')) { + return $class; + } + + return (get_parent_class($class) ?: key(class_implements($class)) ?: 'class').'@anonymous'; + } + + public static function get_resource_id($res): int + { + if (!\is_resource($res) && null === @get_resource_type($res)) { + throw new \TypeError(sprintf('Argument 1 passed to get_resource_id() must be of the type resource, %s given', get_debug_type($res))); + } + + return (int) $res; + } + + public static function preg_last_error_msg(): string + { + switch (preg_last_error()) { + case \PREG_INTERNAL_ERROR: + return 'Internal error'; + case \PREG_BAD_UTF8_ERROR: + return 'Malformed UTF-8 characters, possibly incorrectly encoded'; + case \PREG_BAD_UTF8_OFFSET_ERROR: + return 'The offset did not correspond to the beginning of a valid UTF-8 code point'; + case \PREG_BACKTRACK_LIMIT_ERROR: + return 'Backtrack limit exhausted'; + case \PREG_RECURSION_LIMIT_ERROR: + return 'Recursion limit exhausted'; + case \PREG_JIT_STACKLIMIT_ERROR: + return 'JIT stack limit exhausted'; + case \PREG_NO_ERROR: + return 'No error'; + default: + return 'Unknown error'; + } + } + + public static function str_contains(string $haystack, string $needle): bool + { + return '' === $needle || false !== strpos($haystack, $needle); + } + + public static function str_starts_with(string $haystack, string $needle): bool + { + return 0 === strncmp($haystack, $needle, \strlen($needle)); + } + + public static function str_ends_with(string $haystack, string $needle): bool + { + if ('' === $needle || $needle === $haystack) { + return true; + } + + if ('' === $haystack) { + return false; + } + + $needleLength = \strlen($needle); + + return $needleLength <= \strlen($haystack) && 0 === substr_compare($haystack, $needle, -$needleLength); + } +} diff --git a/Sources/vendor/symfony/polyfill-php80/PhpToken.php b/Sources/vendor/symfony/polyfill-php80/PhpToken.php new file mode 100644 index 00000000..fe6e6910 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-php80/PhpToken.php @@ -0,0 +1,103 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Polyfill\Php80; + +/** + * @author Fedonyuk Anton + * + * @internal + */ +class PhpToken implements \Stringable +{ + /** + * @var int + */ + public $id; + + /** + * @var string + */ + public $text; + + /** + * @var int + */ + public $line; + + /** + * @var int + */ + public $pos; + + public function __construct(int $id, string $text, int $line = -1, int $position = -1) + { + $this->id = $id; + $this->text = $text; + $this->line = $line; + $this->pos = $position; + } + + public function getTokenName(): ?string + { + if ('UNKNOWN' === $name = token_name($this->id)) { + $name = \strlen($this->text) > 1 || \ord($this->text) < 32 ? null : $this->text; + } + + return $name; + } + + /** + * @param int|string|array $kind + */ + public function is($kind): bool + { + foreach ((array) $kind as $value) { + if (\in_array($value, [$this->id, $this->text], true)) { + return true; + } + } + + return false; + } + + public function isIgnorable(): bool + { + return \in_array($this->id, [\T_WHITESPACE, \T_COMMENT, \T_DOC_COMMENT, \T_OPEN_TAG], true); + } + + public function __toString(): string + { + return (string) $this->text; + } + + /** + * @return static[] + */ + public static function tokenize(string $code, int $flags = 0): array + { + $line = 1; + $position = 0; + $tokens = token_get_all($code, $flags); + foreach ($tokens as $index => $token) { + if (\is_string($token)) { + $id = \ord($token); + $text = $token; + } else { + [$id, $text, $line] = $token; + } + $tokens[$index] = new static($id, $text, $line, $position); + $position += \strlen($text); + } + + return $tokens; + } +} diff --git a/Sources/vendor/symfony/polyfill-php80/README.md b/Sources/vendor/symfony/polyfill-php80/README.md new file mode 100644 index 00000000..3816c559 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-php80/README.md @@ -0,0 +1,25 @@ +Symfony Polyfill / Php80 +======================== + +This component provides features added to PHP 8.0 core: + +- [`Stringable`](https://php.net/stringable) interface +- [`fdiv`](https://php.net/fdiv) +- [`ValueError`](https://php.net/valueerror) class +- [`UnhandledMatchError`](https://php.net/unhandledmatcherror) class +- `FILTER_VALIDATE_BOOL` constant +- [`get_debug_type`](https://php.net/get_debug_type) +- [`PhpToken`](https://php.net/phptoken) class +- [`preg_last_error_msg`](https://php.net/preg_last_error_msg) +- [`str_contains`](https://php.net/str_contains) +- [`str_starts_with`](https://php.net/str_starts_with) +- [`str_ends_with`](https://php.net/str_ends_with) +- [`get_resource_id`](https://php.net/get_resource_id) + +More information can be found in the +[main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md). + +License +======= + +This library is released under the [MIT license](LICENSE). diff --git a/Sources/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php b/Sources/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php new file mode 100644 index 00000000..2b955423 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php @@ -0,0 +1,31 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +#[Attribute(Attribute::TARGET_CLASS)] +final class Attribute +{ + public const TARGET_CLASS = 1; + public const TARGET_FUNCTION = 2; + public const TARGET_METHOD = 4; + public const TARGET_PROPERTY = 8; + public const TARGET_CLASS_CONSTANT = 16; + public const TARGET_PARAMETER = 32; + public const TARGET_ALL = 63; + public const IS_REPEATABLE = 64; + + /** @var int */ + public $flags; + + public function __construct(int $flags = self::TARGET_ALL) + { + $this->flags = $flags; + } +} diff --git a/Sources/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php b/Sources/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php new file mode 100644 index 00000000..bd1212f6 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php @@ -0,0 +1,16 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +if (\PHP_VERSION_ID < 80000 && extension_loaded('tokenizer')) { + class PhpToken extends Symfony\Polyfill\Php80\PhpToken + { + } +} diff --git a/Sources/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php b/Sources/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php new file mode 100644 index 00000000..7c62d750 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php @@ -0,0 +1,20 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +if (\PHP_VERSION_ID < 80000) { + interface Stringable + { + /** + * @return string + */ + public function __toString(); + } +} diff --git a/Sources/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php b/Sources/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php new file mode 100644 index 00000000..01c6c6c8 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php @@ -0,0 +1,16 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +if (\PHP_VERSION_ID < 80000) { + class UnhandledMatchError extends Error + { + } +} diff --git a/Sources/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php b/Sources/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php new file mode 100644 index 00000000..783dbc28 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php @@ -0,0 +1,16 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +if (\PHP_VERSION_ID < 80000) { + class ValueError extends Error + { + } +} diff --git a/Sources/vendor/symfony/polyfill-php80/bootstrap.php b/Sources/vendor/symfony/polyfill-php80/bootstrap.php new file mode 100644 index 00000000..e5f7dbc1 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-php80/bootstrap.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +use Symfony\Polyfill\Php80 as p; + +if (\PHP_VERSION_ID >= 80000) { + return; +} + +if (!defined('FILTER_VALIDATE_BOOL') && defined('FILTER_VALIDATE_BOOLEAN')) { + define('FILTER_VALIDATE_BOOL', \FILTER_VALIDATE_BOOLEAN); +} + +if (!function_exists('fdiv')) { + function fdiv(float $num1, float $num2): float { return p\Php80::fdiv($num1, $num2); } +} +if (!function_exists('preg_last_error_msg')) { + function preg_last_error_msg(): string { return p\Php80::preg_last_error_msg(); } +} +if (!function_exists('str_contains')) { + function str_contains(?string $haystack, ?string $needle): bool { return p\Php80::str_contains($haystack ?? '', $needle ?? ''); } +} +if (!function_exists('str_starts_with')) { + function str_starts_with(?string $haystack, ?string $needle): bool { return p\Php80::str_starts_with($haystack ?? '', $needle ?? ''); } +} +if (!function_exists('str_ends_with')) { + function str_ends_with(?string $haystack, ?string $needle): bool { return p\Php80::str_ends_with($haystack ?? '', $needle ?? ''); } +} +if (!function_exists('get_debug_type')) { + function get_debug_type($value): string { return p\Php80::get_debug_type($value); } +} +if (!function_exists('get_resource_id')) { + function get_resource_id($resource): int { return p\Php80::get_resource_id($resource); } +} diff --git a/Sources/vendor/symfony/polyfill-php80/composer.json b/Sources/vendor/symfony/polyfill-php80/composer.json new file mode 100644 index 00000000..f1801f40 --- /dev/null +++ b/Sources/vendor/symfony/polyfill-php80/composer.json @@ -0,0 +1,40 @@ +{ + "name": "symfony/polyfill-php80", + "type": "library", + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "keywords": ["polyfill", "shim", "compatibility", "portable"], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=7.1" + }, + "autoload": { + "psr-4": { "Symfony\\Polyfill\\Php80\\": "" }, + "files": [ "bootstrap.php" ], + "classmap": [ "Resources/stubs" ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + } +} diff --git a/Sources/vendor/twig/twig/CHANGELOG b/Sources/vendor/twig/twig/CHANGELOG new file mode 100644 index 00000000..2b8341fd --- /dev/null +++ b/Sources/vendor/twig/twig/CHANGELOG @@ -0,0 +1,195 @@ +# 3.8.0 (2023-11-21) + + * Catch errors thrown during template rendering + * Fix IntlExtension::formatDateTime use of date formatter prototype + * Fix premature loop exit in Security Policy lookup of allowed methods/properties + * Remove NumberFormatter::TYPE_CURRENCY (deprecated in PHP 8.3) + * Restore return type annotations + * Allow Symfony 7 packages to be installed + * Deprecate `twig_test_iterable` function. Use the native `is_iterable` instead. + +# 3.7.1 (2023-08-28) + + * Fix some phpdocs + +# 3.7.0 (2023-07-26) + + * Add support for the ...spread operator on arrays and hashes + +# 3.6.1 (2023-06-08) + + * Suppress some native return type deprecation messages + +# 3.6.0 (2023-05-03) + + * Allow psr/container 2.0 + * Add the new PHP 8.0 IntlDateFormatter::RELATIVE_* constants for date formatting + * Make the Lexer initialize itself lazily + +# 3.5.1 (2023-02-08) + + * Arrow functions passed to the "reduce" filter now accept the current key as a third argument + * Restores the leniency of the matches twig comparison + * Fix error messages in sandboxed mode for "has some" and "has every" + +# 3.5.0 (2022-12-27) + + * Make Twig\ExpressionParser non-internal + * Add "has some" and "has every" operators + * Add Compile::reset() + * Throw a better runtime error when the "matches" regexp is not valid + * Add "twig *_names" intl functions + * Fix optimizing closures callbacks + * Add a better exception when getting an undefined constant via `constant` + * Fix `if` nodes when outside of a block and with an empty body + +# 3.4.3 (2022-09-28) + + * Fix a security issue on filesystem loader (possibility to load a template outside a configured directory) + +# 3.4.2 (2022-08-12) + + * Allow inherited magic method to still run with calling class + * Fix CallExpression::reflectCallable() throwing TypeError + * Fix typo in naming (currency_code) + +# 3.4.1 (2022-05-17) + +* Fix optimizing non-public named closures + +# 3.4.0 (2022-05-22) + + * Add support for named closures + +# 3.3.10 (2022-04-06) + + * Enable bytecode invalidation when auto_reload is enabled + +# 3.3.9 (2022-03-25) + + * Fix custom escapers when using multiple Twig environments + * Add support for "constant('class', object)" + * Do not reuse internally generated variable names during parsing + +# 3.3.8 (2022-02-04) + + * Fix a security issue when in a sandbox: the `sort` filter must require a Closure for the `arrow` parameter + * Fix deprecation notice on `round` + * Fix call to deprecated `convertToHtml` method + +# 3.3.7 (2022-01-03) + +* Allow more null support when Twig expects a string (for better 8.1 support) +* Only use Commonmark extensions if markdown enabled + +# 3.3.6 (2022-01-03) + +* Only use Commonmark extensions if markdown enabled + +# 3.3.5 (2022-01-03) + +* Allow CommonMark extensions to easily be added +* Allow null when Twig expects a string (for better 8.1 support) +* Make some performance optimizations +* Allow Symfony translation contract v3+ + +# 3.3.4 (2021-11-25) + + * Bump minimum supported Symfony component versions + * Fix a deprecated message + +# 3.3.3 (2021-09-17) + + * Allow Symfony 6 + * Improve compatibility with PHP 8.1 + * Explicitly specify the encoding for mb_ord in JS escaper + +# 3.3.2 (2021-05-16) + + * Revert "Throw a proper exception when a template name is an absolute path (as it has never been supported)" + +# 3.3.1 (2021-05-12) + + * Fix PHP 8.1 compatibility + * Throw a proper exception when a template name is an absolute path (as it has never been supported) + +# 3.3.0 (2021-02-08) + + * Fix macro calls in a "cache" tag + * Add the slug filter + * Allow extra bundle to be compatible with Twig 2 + +# 3.2.1 (2021-01-05) + + * Fix extra bundle compat with older versions of Symfony + +# 3.2.0 (2021-01-05) + + * Add the Cache extension in the "extra" repositories: "cache" tag + * Add "registerUndefinedTokenParserCallback" + * Mark built-in node visitors as @internal + * Fix "odd" not working for negative numbers + +# 3.1.1 (2020-10-27) + + * Fix "include(template_from_string())" + +# 3.1.0 (2020-10-21) + + * Fix sandbox support when using "include(template_from_string())" + * Make round brackets optional for one argument tests like "same as" or "divisible by" + * Add support for ES2015 style object initialisation shortcut { a } is the same as { 'a': a } + +# 3.0.5 (2020-08-05) + + * Fix twig_compare w.r.t. whitespace trimming + * Fix sandbox not disabled if syntax error occurs within {% sandbox %} tag + * Fix a regression when not using a space before an operator + * Restrict callables to closures in filters + * Allow trailing commas in argument lists (in calls as well as definitions) + +# 3.0.4 (2020-07-05) + + * Fix comparison operators + * Fix options not taken into account when using "Michelf\MarkdownExtra" + * Fix "Twig\Extra\Intl\IntlExtension::getCountryName()" to accept "null" as a first argument + * Throw exception in case non-Traversable data is passed to "filter" + * Fix context optimization on PHP 7.4 + * Fix PHP 8 compatibility + * Fix ambiguous syntax parsing + +# 3.0.3 (2020-02-11) + + * Add a check to ensure that iconv() is defined + +# 3.0.2 (2020-02-11) + + * Avoid exceptions when an intl resource is not found + * Fix implementation of case-insensitivity for method names + +# 3.0.1 (2019-12-28) + + * fixed Symfony 5.0 support for the HTML extra extension + +# 3.0.0 (2019-11-15) + + * fixed number formatter in Intl extra extension when using a formatter prototype + +# 3.0.0-BETA1 (2019-11-11) + + * removed the "if" condition support on the "for" tag + * made the in, <, >, <=, >=, ==, and != operators more strict when comparing strings and integers/floats + * removed the "filter" tag + * added type hints everywhere + * changed Environment::resolveTemplate() to always return a TemplateWrapper instance + * removed Template::__toString() + * removed Parser::isReservedMacroName() + * removed SanboxedPrintNode + * removed Node::setTemplateName() + * made classes maked as "@final" final + * removed InitRuntimeInterface, ExistsLoaderInterface, and SourceContextLoaderInterface + * removed the "spaceless" tag + * removed Twig\Environment::getBaseTemplateClass() and Twig\Environment::setBaseTemplateClass() + * removed the "base_template_class" option on Twig\Environment + * bumped minimum PHP version to 7.2 + * removed PSR-0 classes diff --git a/Sources/vendor/twig/twig/LICENSE b/Sources/vendor/twig/twig/LICENSE new file mode 100644 index 00000000..fd8234e5 --- /dev/null +++ b/Sources/vendor/twig/twig/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2009-present by the Twig Team. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the name of Twig nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/Sources/vendor/twig/twig/README.rst b/Sources/vendor/twig/twig/README.rst new file mode 100644 index 00000000..fbe7e9a9 --- /dev/null +++ b/Sources/vendor/twig/twig/README.rst @@ -0,0 +1,23 @@ +Twig, the flexible, fast, and secure template language for PHP +============================================================== + +Twig is a template language for PHP. + +Twig uses a syntax similar to the Django and Jinja template languages which +inspired the Twig runtime environment. + +Sponsors +-------- + +.. raw:: html + + + Blackfire.io + + +More Information +---------------- + +Read the `documentation`_ for more information. + +.. _documentation: https://twig.symfony.com/documentation diff --git a/Sources/vendor/twig/twig/composer.json b/Sources/vendor/twig/twig/composer.json new file mode 100644 index 00000000..1b1726fe --- /dev/null +++ b/Sources/vendor/twig/twig/composer.json @@ -0,0 +1,46 @@ +{ + "name": "twig/twig", + "type": "library", + "description": "Twig, the flexible, fast, and secure template language for PHP", + "keywords": ["templating"], + "homepage": "https://twig.symfony.com", + "license": "BSD-3-Clause", + "minimum-stability": "dev", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com", + "homepage": "http://fabien.potencier.org", + "role": "Lead Developer" + }, + { + "name": "Twig Team", + "role": "Contributors" + }, + { + "name": "Armin Ronacher", + "email": "armin.ronacher@active-4.com", + "role": "Project Founder" + } + ], + "require": { + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.22", + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-ctype": "^1.8" + }, + "require-dev": { + "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0", + "psr/container": "^1.0|^2.0" + }, + "autoload": { + "psr-4" : { + "Twig\\" : "src/" + } + }, + "autoload-dev": { + "psr-4" : { + "Twig\\Tests\\" : "tests/" + } + } +} diff --git a/Sources/vendor/twig/twig/src/Cache/CacheInterface.php b/Sources/vendor/twig/twig/src/Cache/CacheInterface.php new file mode 100644 index 00000000..6e8c409b --- /dev/null +++ b/Sources/vendor/twig/twig/src/Cache/CacheInterface.php @@ -0,0 +1,46 @@ + + */ +interface CacheInterface +{ + /** + * Generates a cache key for the given template class name. + */ + public function generateKey(string $name, string $className): string; + + /** + * Writes the compiled template to cache. + * + * @param string $content The template representation as a PHP class + */ + public function write(string $key, string $content): void; + + /** + * Loads a template from the cache. + */ + public function load(string $key): void; + + /** + * Returns the modification timestamp of a key. + */ + public function getTimestamp(string $key): int; +} diff --git a/Sources/vendor/twig/twig/src/Cache/FilesystemCache.php b/Sources/vendor/twig/twig/src/Cache/FilesystemCache.php new file mode 100644 index 00000000..4024adbd --- /dev/null +++ b/Sources/vendor/twig/twig/src/Cache/FilesystemCache.php @@ -0,0 +1,87 @@ + + */ +class FilesystemCache implements CacheInterface +{ + public const FORCE_BYTECODE_INVALIDATION = 1; + + private $directory; + private $options; + + public function __construct(string $directory, int $options = 0) + { + $this->directory = rtrim($directory, '\/').'/'; + $this->options = $options; + } + + public function generateKey(string $name, string $className): string + { + $hash = hash(\PHP_VERSION_ID < 80100 ? 'sha256' : 'xxh128', $className); + + return $this->directory.$hash[0].$hash[1].'/'.$hash.'.php'; + } + + public function load(string $key): void + { + if (is_file($key)) { + @include_once $key; + } + } + + public function write(string $key, string $content): void + { + $dir = \dirname($key); + if (!is_dir($dir)) { + if (false === @mkdir($dir, 0777, true)) { + clearstatcache(true, $dir); + if (!is_dir($dir)) { + throw new \RuntimeException(sprintf('Unable to create the cache directory (%s).', $dir)); + } + } + } elseif (!is_writable($dir)) { + throw new \RuntimeException(sprintf('Unable to write in the cache directory (%s).', $dir)); + } + + $tmpFile = tempnam($dir, basename($key)); + if (false !== @file_put_contents($tmpFile, $content) && @rename($tmpFile, $key)) { + @chmod($key, 0666 & ~umask()); + + if (self::FORCE_BYTECODE_INVALIDATION == ($this->options & self::FORCE_BYTECODE_INVALIDATION)) { + // Compile cached file into bytecode cache + if (\function_exists('opcache_invalidate') && filter_var(\ini_get('opcache.enable'), \FILTER_VALIDATE_BOOLEAN)) { + @opcache_invalidate($key, true); + } elseif (\function_exists('apc_compile_file')) { + apc_compile_file($key); + } + } + + return; + } + + throw new \RuntimeException(sprintf('Failed to write cache file "%s".', $key)); + } + + public function getTimestamp(string $key): int + { + if (!is_file($key)) { + return 0; + } + + return (int) @filemtime($key); + } +} diff --git a/Sources/vendor/twig/twig/src/Cache/NullCache.php b/Sources/vendor/twig/twig/src/Cache/NullCache.php new file mode 100644 index 00000000..8d20d59d --- /dev/null +++ b/Sources/vendor/twig/twig/src/Cache/NullCache.php @@ -0,0 +1,38 @@ + + */ +final class NullCache implements CacheInterface +{ + public function generateKey(string $name, string $className): string + { + return ''; + } + + public function write(string $key, string $content): void + { + } + + public function load(string $key): void + { + } + + public function getTimestamp(string $key): int + { + return 0; + } +} diff --git a/Sources/vendor/twig/twig/src/Compiler.php b/Sources/vendor/twig/twig/src/Compiler.php new file mode 100644 index 00000000..eb652c61 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Compiler.php @@ -0,0 +1,223 @@ + + */ +class Compiler +{ + private $lastLine; + private $source; + private $indentation; + private $env; + private $debugInfo = []; + private $sourceOffset; + private $sourceLine; + private $varNameSalt = 0; + + public function __construct(Environment $env) + { + $this->env = $env; + } + + public function getEnvironment(): Environment + { + return $this->env; + } + + public function getSource(): string + { + return $this->source; + } + + /** + * @return $this + */ + public function reset(int $indentation = 0) + { + $this->lastLine = null; + $this->source = ''; + $this->debugInfo = []; + $this->sourceOffset = 0; + // source code starts at 1 (as we then increment it when we encounter new lines) + $this->sourceLine = 1; + $this->indentation = $indentation; + $this->varNameSalt = 0; + + return $this; + } + + /** + * @return $this + */ + public function compile(Node $node, int $indentation = 0) + { + $this->reset($indentation); + $node->compile($this); + + return $this; + } + + /** + * @return $this + */ + public function subcompile(Node $node, bool $raw = true) + { + if (false === $raw) { + $this->source .= str_repeat(' ', $this->indentation * 4); + } + + $node->compile($this); + + return $this; + } + + /** + * Adds a raw string to the compiled code. + * + * @return $this + */ + public function raw(string $string) + { + $this->source .= $string; + + return $this; + } + + /** + * Writes a string to the compiled code by adding indentation. + * + * @return $this + */ + public function write(...$strings) + { + foreach ($strings as $string) { + $this->source .= str_repeat(' ', $this->indentation * 4).$string; + } + + return $this; + } + + /** + * Adds a quoted string to the compiled code. + * + * @return $this + */ + public function string(string $value) + { + $this->source .= sprintf('"%s"', addcslashes($value, "\0\t\"\$\\")); + + return $this; + } + + /** + * Returns a PHP representation of a given value. + * + * @return $this + */ + public function repr($value) + { + if (\is_int($value) || \is_float($value)) { + if (false !== $locale = setlocale(\LC_NUMERIC, '0')) { + setlocale(\LC_NUMERIC, 'C'); + } + + $this->raw(var_export($value, true)); + + if (false !== $locale) { + setlocale(\LC_NUMERIC, $locale); + } + } elseif (null === $value) { + $this->raw('null'); + } elseif (\is_bool($value)) { + $this->raw($value ? 'true' : 'false'); + } elseif (\is_array($value)) { + $this->raw('array('); + $first = true; + foreach ($value as $key => $v) { + if (!$first) { + $this->raw(', '); + } + $first = false; + $this->repr($key); + $this->raw(' => '); + $this->repr($v); + } + $this->raw(')'); + } else { + $this->string($value); + } + + return $this; + } + + /** + * @return $this + */ + public function addDebugInfo(Node $node) + { + if ($node->getTemplateLine() != $this->lastLine) { + $this->write(sprintf("// line %d\n", $node->getTemplateLine())); + + $this->sourceLine += substr_count($this->source, "\n", $this->sourceOffset); + $this->sourceOffset = \strlen($this->source); + $this->debugInfo[$this->sourceLine] = $node->getTemplateLine(); + + $this->lastLine = $node->getTemplateLine(); + } + + return $this; + } + + public function getDebugInfo(): array + { + ksort($this->debugInfo); + + return $this->debugInfo; + } + + /** + * @return $this + */ + public function indent(int $step = 1) + { + $this->indentation += $step; + + return $this; + } + + /** + * @return $this + * + * @throws \LogicException When trying to outdent too much so the indentation would become negative + */ + public function outdent(int $step = 1) + { + // can't outdent by more steps than the current indentation level + if ($this->indentation < $step) { + throw new \LogicException('Unable to call outdent() as the indentation would become negative.'); + } + + $this->indentation -= $step; + + return $this; + } + + public function getVarName(): string + { + return sprintf('__internal_compile_%d', $this->varNameSalt++); + } +} diff --git a/Sources/vendor/twig/twig/src/Environment.php b/Sources/vendor/twig/twig/src/Environment.php new file mode 100644 index 00000000..d7d51cdb --- /dev/null +++ b/Sources/vendor/twig/twig/src/Environment.php @@ -0,0 +1,840 @@ + + */ +class Environment +{ + public const VERSION = '3.8.0'; + public const VERSION_ID = 30800; + public const MAJOR_VERSION = 3; + public const MINOR_VERSION = 8; + public const RELEASE_VERSION = 0; + public const EXTRA_VERSION = ''; + + private $charset; + private $loader; + private $debug; + private $autoReload; + private $cache; + private $lexer; + private $parser; + private $compiler; + /** @var array */ + private $globals = []; + private $resolvedGlobals; + private $loadedTemplates; + private $strictVariables; + private $templateClassPrefix = '__TwigTemplate_'; + private $originalCache; + private $extensionSet; + private $runtimeLoaders = []; + private $runtimes = []; + private $optionsHash; + + /** + * Constructor. + * + * Available options: + * + * * debug: When set to true, it automatically set "auto_reload" to true as + * well (default to false). + * + * * charset: The charset used by the templates (default to UTF-8). + * + * * cache: An absolute path where to store the compiled templates, + * a \Twig\Cache\CacheInterface implementation, + * or false to disable compilation cache (default). + * + * * auto_reload: Whether to reload the template if the original source changed. + * If you don't provide the auto_reload option, it will be + * determined automatically based on the debug value. + * + * * strict_variables: Whether to ignore invalid variables in templates + * (default to false). + * + * * autoescape: Whether to enable auto-escaping (default to html): + * * false: disable auto-escaping + * * html, js: set the autoescaping to one of the supported strategies + * * name: set the autoescaping strategy based on the template name extension + * * PHP callback: a PHP callback that returns an escaping strategy based on the template "name" + * + * * optimizations: A flag that indicates which optimizations to apply + * (default to -1 which means that all optimizations are enabled; + * set it to 0 to disable). + */ + public function __construct(LoaderInterface $loader, $options = []) + { + $this->setLoader($loader); + + $options = array_merge([ + 'debug' => false, + 'charset' => 'UTF-8', + 'strict_variables' => false, + 'autoescape' => 'html', + 'cache' => false, + 'auto_reload' => null, + 'optimizations' => -1, + ], $options); + + $this->debug = (bool) $options['debug']; + $this->setCharset($options['charset'] ?? 'UTF-8'); + $this->autoReload = null === $options['auto_reload'] ? $this->debug : (bool) $options['auto_reload']; + $this->strictVariables = (bool) $options['strict_variables']; + $this->setCache($options['cache']); + $this->extensionSet = new ExtensionSet(); + + $this->addExtension(new CoreExtension()); + $this->addExtension(new EscaperExtension($options['autoescape'])); + $this->addExtension(new OptimizerExtension($options['optimizations'])); + } + + /** + * Enables debugging mode. + */ + public function enableDebug() + { + $this->debug = true; + $this->updateOptionsHash(); + } + + /** + * Disables debugging mode. + */ + public function disableDebug() + { + $this->debug = false; + $this->updateOptionsHash(); + } + + /** + * Checks if debug mode is enabled. + * + * @return bool true if debug mode is enabled, false otherwise + */ + public function isDebug() + { + return $this->debug; + } + + /** + * Enables the auto_reload option. + */ + public function enableAutoReload() + { + $this->autoReload = true; + } + + /** + * Disables the auto_reload option. + */ + public function disableAutoReload() + { + $this->autoReload = false; + } + + /** + * Checks if the auto_reload option is enabled. + * + * @return bool true if auto_reload is enabled, false otherwise + */ + public function isAutoReload() + { + return $this->autoReload; + } + + /** + * Enables the strict_variables option. + */ + public function enableStrictVariables() + { + $this->strictVariables = true; + $this->updateOptionsHash(); + } + + /** + * Disables the strict_variables option. + */ + public function disableStrictVariables() + { + $this->strictVariables = false; + $this->updateOptionsHash(); + } + + /** + * Checks if the strict_variables option is enabled. + * + * @return bool true if strict_variables is enabled, false otherwise + */ + public function isStrictVariables() + { + return $this->strictVariables; + } + + /** + * Gets the current cache implementation. + * + * @param bool $original Whether to return the original cache option or the real cache instance + * + * @return CacheInterface|string|false A Twig\Cache\CacheInterface implementation, + * an absolute path to the compiled templates, + * or false to disable cache + */ + public function getCache($original = true) + { + return $original ? $this->originalCache : $this->cache; + } + + /** + * Sets the current cache implementation. + * + * @param CacheInterface|string|false $cache A Twig\Cache\CacheInterface implementation, + * an absolute path to the compiled templates, + * or false to disable cache + */ + public function setCache($cache) + { + if (\is_string($cache)) { + $this->originalCache = $cache; + $this->cache = new FilesystemCache($cache, $this->autoReload ? FilesystemCache::FORCE_BYTECODE_INVALIDATION : 0); + } elseif (false === $cache) { + $this->originalCache = $cache; + $this->cache = new NullCache(); + } elseif ($cache instanceof CacheInterface) { + $this->originalCache = $this->cache = $cache; + } else { + throw new \LogicException('Cache can only be a string, false, or a \Twig\Cache\CacheInterface implementation.'); + } + } + + /** + * Gets the template class associated with the given string. + * + * The generated template class is based on the following parameters: + * + * * The cache key for the given template; + * * The currently enabled extensions; + * * Whether the Twig C extension is available or not; + * * PHP version; + * * Twig version; + * * Options with what environment was created. + * + * @param string $name The name for which to calculate the template class name + * @param int|null $index The index if it is an embedded template + * + * @internal + */ + public function getTemplateClass(string $name, int $index = null): string + { + $key = $this->getLoader()->getCacheKey($name).$this->optionsHash; + + return $this->templateClassPrefix.hash(\PHP_VERSION_ID < 80100 ? 'sha256' : 'xxh128', $key).(null === $index ? '' : '___'.$index); + } + + /** + * Renders a template. + * + * @param string|TemplateWrapper $name The template name + * + * @throws LoaderError When the template cannot be found + * @throws SyntaxError When an error occurred during compilation + * @throws RuntimeError When an error occurred during rendering + */ + public function render($name, array $context = []): string + { + return $this->load($name)->render($context); + } + + /** + * Displays a template. + * + * @param string|TemplateWrapper $name The template name + * + * @throws LoaderError When the template cannot be found + * @throws SyntaxError When an error occurred during compilation + * @throws RuntimeError When an error occurred during rendering + */ + public function display($name, array $context = []): void + { + $this->load($name)->display($context); + } + + /** + * Loads a template. + * + * @param string|TemplateWrapper $name The template name + * + * @throws LoaderError When the template cannot be found + * @throws RuntimeError When a previously generated cache is corrupted + * @throws SyntaxError When an error occurred during compilation + */ + public function load($name): TemplateWrapper + { + if ($name instanceof TemplateWrapper) { + return $name; + } + + return new TemplateWrapper($this, $this->loadTemplate($this->getTemplateClass($name), $name)); + } + + /** + * Loads a template internal representation. + * + * This method is for internal use only and should never be called + * directly. + * + * @param string $name The template name + * @param int $index The index if it is an embedded template + * + * @throws LoaderError When the template cannot be found + * @throws RuntimeError When a previously generated cache is corrupted + * @throws SyntaxError When an error occurred during compilation + * + * @internal + */ + public function loadTemplate(string $cls, string $name, int $index = null): Template + { + $mainCls = $cls; + if (null !== $index) { + $cls .= '___'.$index; + } + + if (isset($this->loadedTemplates[$cls])) { + return $this->loadedTemplates[$cls]; + } + + if (!class_exists($cls, false)) { + $key = $this->cache->generateKey($name, $mainCls); + + if (!$this->isAutoReload() || $this->isTemplateFresh($name, $this->cache->getTimestamp($key))) { + $this->cache->load($key); + } + + if (!class_exists($cls, false)) { + $source = $this->getLoader()->getSourceContext($name); + $content = $this->compileSource($source); + $this->cache->write($key, $content); + $this->cache->load($key); + + if (!class_exists($mainCls, false)) { + /* Last line of defense if either $this->bcWriteCacheFile was used, + * $this->cache is implemented as a no-op or we have a race condition + * where the cache was cleared between the above calls to write to and load from + * the cache. + */ + eval('?>'.$content); + } + + if (!class_exists($cls, false)) { + throw new RuntimeError(sprintf('Failed to load Twig template "%s", index "%s": cache might be corrupted.', $name, $index), -1, $source); + } + } + } + + $this->extensionSet->initRuntime(); + + return $this->loadedTemplates[$cls] = new $cls($this); + } + + /** + * Creates a template from source. + * + * This method should not be used as a generic way to load templates. + * + * @param string $template The template source + * @param string $name An optional name of the template to be used in error messages + * + * @throws LoaderError When the template cannot be found + * @throws SyntaxError When an error occurred during compilation + */ + public function createTemplate(string $template, string $name = null): TemplateWrapper + { + $hash = hash(\PHP_VERSION_ID < 80100 ? 'sha256' : 'xxh128', $template, false); + if (null !== $name) { + $name = sprintf('%s (string template %s)', $name, $hash); + } else { + $name = sprintf('__string_template__%s', $hash); + } + + $loader = new ChainLoader([ + new ArrayLoader([$name => $template]), + $current = $this->getLoader(), + ]); + + $this->setLoader($loader); + try { + return new TemplateWrapper($this, $this->loadTemplate($this->getTemplateClass($name), $name)); + } finally { + $this->setLoader($current); + } + } + + /** + * Returns true if the template is still fresh. + * + * Besides checking the loader for freshness information, + * this method also checks if the enabled extensions have + * not changed. + * + * @param int $time The last modification time of the cached template + */ + public function isTemplateFresh(string $name, int $time): bool + { + return $this->extensionSet->getLastModified() <= $time && $this->getLoader()->isFresh($name, $time); + } + + /** + * Tries to load a template consecutively from an array. + * + * Similar to load() but it also accepts instances of \Twig\Template and + * \Twig\TemplateWrapper, and an array of templates where each is tried to be loaded. + * + * @param string|TemplateWrapper|array $names A template or an array of templates to try consecutively + * + * @throws LoaderError When none of the templates can be found + * @throws SyntaxError When an error occurred during compilation + */ + public function resolveTemplate($names): TemplateWrapper + { + if (!\is_array($names)) { + return $this->load($names); + } + + $count = \count($names); + foreach ($names as $name) { + if ($name instanceof Template) { + return $name; + } + if ($name instanceof TemplateWrapper) { + return $name; + } + + if (1 !== $count && !$this->getLoader()->exists($name)) { + continue; + } + + return $this->load($name); + } + + throw new LoaderError(sprintf('Unable to find one of the following templates: "%s".', implode('", "', $names))); + } + + public function setLexer(Lexer $lexer) + { + $this->lexer = $lexer; + } + + /** + * @throws SyntaxError When the code is syntactically wrong + */ + public function tokenize(Source $source): TokenStream + { + if (null === $this->lexer) { + $this->lexer = new Lexer($this); + } + + return $this->lexer->tokenize($source); + } + + public function setParser(Parser $parser) + { + $this->parser = $parser; + } + + /** + * Converts a token stream to a node tree. + * + * @throws SyntaxError When the token stream is syntactically or semantically wrong + */ + public function parse(TokenStream $stream): ModuleNode + { + if (null === $this->parser) { + $this->parser = new Parser($this); + } + + return $this->parser->parse($stream); + } + + public function setCompiler(Compiler $compiler) + { + $this->compiler = $compiler; + } + + /** + * Compiles a node and returns the PHP code. + */ + public function compile(Node $node): string + { + if (null === $this->compiler) { + $this->compiler = new Compiler($this); + } + + return $this->compiler->compile($node)->getSource(); + } + + /** + * Compiles a template source code. + * + * @throws SyntaxError When there was an error during tokenizing, parsing or compiling + */ + public function compileSource(Source $source): string + { + try { + return $this->compile($this->parse($this->tokenize($source))); + } catch (Error $e) { + $e->setSourceContext($source); + throw $e; + } catch (\Exception $e) { + throw new SyntaxError(sprintf('An exception has been thrown during the compilation of a template ("%s").', $e->getMessage()), -1, $source, $e); + } + } + + public function setLoader(LoaderInterface $loader) + { + $this->loader = $loader; + } + + public function getLoader(): LoaderInterface + { + return $this->loader; + } + + public function setCharset(string $charset) + { + if ('UTF8' === $charset = null === $charset ? null : strtoupper($charset)) { + // iconv on Windows requires "UTF-8" instead of "UTF8" + $charset = 'UTF-8'; + } + + $this->charset = $charset; + } + + public function getCharset(): string + { + return $this->charset; + } + + public function hasExtension(string $class): bool + { + return $this->extensionSet->hasExtension($class); + } + + public function addRuntimeLoader(RuntimeLoaderInterface $loader) + { + $this->runtimeLoaders[] = $loader; + } + + /** + * @template TExtension of ExtensionInterface + * + * @param class-string $class + * + * @return TExtension + */ + public function getExtension(string $class): ExtensionInterface + { + return $this->extensionSet->getExtension($class); + } + + /** + * Returns the runtime implementation of a Twig element (filter/function/tag/test). + * + * @template TRuntime of object + * + * @param class-string $class A runtime class name + * + * @return TRuntime The runtime implementation + * + * @throws RuntimeError When the template cannot be found + */ + public function getRuntime(string $class) + { + if (isset($this->runtimes[$class])) { + return $this->runtimes[$class]; + } + + foreach ($this->runtimeLoaders as $loader) { + if (null !== $runtime = $loader->load($class)) { + return $this->runtimes[$class] = $runtime; + } + } + + throw new RuntimeError(sprintf('Unable to load the "%s" runtime.', $class)); + } + + public function addExtension(ExtensionInterface $extension) + { + $this->extensionSet->addExtension($extension); + $this->updateOptionsHash(); + } + + /** + * @param ExtensionInterface[] $extensions An array of extensions + */ + public function setExtensions(array $extensions) + { + $this->extensionSet->setExtensions($extensions); + $this->updateOptionsHash(); + } + + /** + * @return ExtensionInterface[] An array of extensions (keys are for internal usage only and should not be relied on) + */ + public function getExtensions(): array + { + return $this->extensionSet->getExtensions(); + } + + public function addTokenParser(TokenParserInterface $parser) + { + $this->extensionSet->addTokenParser($parser); + } + + /** + * @return TokenParserInterface[] + * + * @internal + */ + public function getTokenParsers(): array + { + return $this->extensionSet->getTokenParsers(); + } + + /** + * @internal + */ + public function getTokenParser(string $name): ?TokenParserInterface + { + return $this->extensionSet->getTokenParser($name); + } + + public function registerUndefinedTokenParserCallback(callable $callable): void + { + $this->extensionSet->registerUndefinedTokenParserCallback($callable); + } + + public function addNodeVisitor(NodeVisitorInterface $visitor) + { + $this->extensionSet->addNodeVisitor($visitor); + } + + /** + * @return NodeVisitorInterface[] + * + * @internal + */ + public function getNodeVisitors(): array + { + return $this->extensionSet->getNodeVisitors(); + } + + public function addFilter(TwigFilter $filter) + { + $this->extensionSet->addFilter($filter); + } + + /** + * @internal + */ + public function getFilter(string $name): ?TwigFilter + { + return $this->extensionSet->getFilter($name); + } + + public function registerUndefinedFilterCallback(callable $callable): void + { + $this->extensionSet->registerUndefinedFilterCallback($callable); + } + + /** + * Gets the registered Filters. + * + * Be warned that this method cannot return filters defined with registerUndefinedFilterCallback. + * + * @return TwigFilter[] + * + * @see registerUndefinedFilterCallback + * + * @internal + */ + public function getFilters(): array + { + return $this->extensionSet->getFilters(); + } + + public function addTest(TwigTest $test) + { + $this->extensionSet->addTest($test); + } + + /** + * @return TwigTest[] + * + * @internal + */ + public function getTests(): array + { + return $this->extensionSet->getTests(); + } + + /** + * @internal + */ + public function getTest(string $name): ?TwigTest + { + return $this->extensionSet->getTest($name); + } + + public function addFunction(TwigFunction $function) + { + $this->extensionSet->addFunction($function); + } + + /** + * @internal + */ + public function getFunction(string $name): ?TwigFunction + { + return $this->extensionSet->getFunction($name); + } + + public function registerUndefinedFunctionCallback(callable $callable): void + { + $this->extensionSet->registerUndefinedFunctionCallback($callable); + } + + /** + * Gets registered functions. + * + * Be warned that this method cannot return functions defined with registerUndefinedFunctionCallback. + * + * @return TwigFunction[] + * + * @see registerUndefinedFunctionCallback + * + * @internal + */ + public function getFunctions(): array + { + return $this->extensionSet->getFunctions(); + } + + /** + * Registers a Global. + * + * New globals can be added before compiling or rendering a template; + * but after, you can only update existing globals. + * + * @param mixed $value The global value + */ + public function addGlobal(string $name, $value) + { + if ($this->extensionSet->isInitialized() && !\array_key_exists($name, $this->getGlobals())) { + throw new \LogicException(sprintf('Unable to add global "%s" as the runtime or the extensions have already been initialized.', $name)); + } + + if (null !== $this->resolvedGlobals) { + $this->resolvedGlobals[$name] = $value; + } else { + $this->globals[$name] = $value; + } + } + + /** + * @internal + * + * @return array + */ + public function getGlobals(): array + { + if ($this->extensionSet->isInitialized()) { + if (null === $this->resolvedGlobals) { + $this->resolvedGlobals = array_merge($this->extensionSet->getGlobals(), $this->globals); + } + + return $this->resolvedGlobals; + } + + return array_merge($this->extensionSet->getGlobals(), $this->globals); + } + + public function mergeGlobals(array $context): array + { + // we don't use array_merge as the context being generally + // bigger than globals, this code is faster. + foreach ($this->getGlobals() as $key => $value) { + if (!\array_key_exists($key, $context)) { + $context[$key] = $value; + } + } + + return $context; + } + + /** + * @internal + * + * @return array}> + */ + public function getUnaryOperators(): array + { + return $this->extensionSet->getUnaryOperators(); + } + + /** + * @internal + * + * @return array, associativity: ExpressionParser::OPERATOR_*}> + */ + public function getBinaryOperators(): array + { + return $this->extensionSet->getBinaryOperators(); + } + + private function updateOptionsHash(): void + { + $this->optionsHash = implode(':', [ + $this->extensionSet->getSignature(), + \PHP_MAJOR_VERSION, + \PHP_MINOR_VERSION, + self::VERSION, + (int) $this->debug, + (int) $this->strictVariables, + ]); + } +} diff --git a/Sources/vendor/twig/twig/src/Error/Error.php b/Sources/vendor/twig/twig/src/Error/Error.php new file mode 100644 index 00000000..bca1fa64 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Error/Error.php @@ -0,0 +1,227 @@ + + */ +class Error extends \Exception +{ + private $lineno; + private $name; + private $rawMessage; + private $sourcePath; + private $sourceCode; + + /** + * Constructor. + * + * By default, automatic guessing is enabled. + * + * @param string $message The error message + * @param int $lineno The template line where the error occurred + * @param Source|null $source The source context where the error occurred + */ + public function __construct(string $message, int $lineno = -1, Source $source = null, \Throwable $previous = null) + { + parent::__construct('', 0, $previous); + + if (null === $source) { + $name = null; + } else { + $name = $source->getName(); + $this->sourceCode = $source->getCode(); + $this->sourcePath = $source->getPath(); + } + + $this->lineno = $lineno; + $this->name = $name; + $this->rawMessage = $message; + $this->updateRepr(); + } + + public function getRawMessage(): string + { + return $this->rawMessage; + } + + public function getTemplateLine(): int + { + return $this->lineno; + } + + public function setTemplateLine(int $lineno): void + { + $this->lineno = $lineno; + + $this->updateRepr(); + } + + public function getSourceContext(): ?Source + { + return $this->name ? new Source($this->sourceCode, $this->name, $this->sourcePath) : null; + } + + public function setSourceContext(Source $source = null): void + { + if (null === $source) { + $this->sourceCode = $this->name = $this->sourcePath = null; + } else { + $this->sourceCode = $source->getCode(); + $this->name = $source->getName(); + $this->sourcePath = $source->getPath(); + } + + $this->updateRepr(); + } + + public function guess(): void + { + $this->guessTemplateInfo(); + $this->updateRepr(); + } + + public function appendMessage($rawMessage): void + { + $this->rawMessage .= $rawMessage; + $this->updateRepr(); + } + + private function updateRepr(): void + { + $this->message = $this->rawMessage; + + if ($this->sourcePath && $this->lineno > 0) { + $this->file = $this->sourcePath; + $this->line = $this->lineno; + + return; + } + + $dot = false; + if (str_ends_with($this->message, '.')) { + $this->message = substr($this->message, 0, -1); + $dot = true; + } + + $questionMark = false; + if (str_ends_with($this->message, '?')) { + $this->message = substr($this->message, 0, -1); + $questionMark = true; + } + + if ($this->name) { + if (\is_string($this->name) || (\is_object($this->name) && method_exists($this->name, '__toString'))) { + $name = sprintf('"%s"', $this->name); + } else { + $name = json_encode($this->name); + } + $this->message .= sprintf(' in %s', $name); + } + + if ($this->lineno && $this->lineno >= 0) { + $this->message .= sprintf(' at line %d', $this->lineno); + } + + if ($dot) { + $this->message .= '.'; + } + + if ($questionMark) { + $this->message .= '?'; + } + } + + private function guessTemplateInfo(): void + { + $template = null; + $templateClass = null; + + $backtrace = debug_backtrace(\DEBUG_BACKTRACE_IGNORE_ARGS | \DEBUG_BACKTRACE_PROVIDE_OBJECT); + foreach ($backtrace as $trace) { + if (isset($trace['object']) && $trace['object'] instanceof Template) { + $currentClass = \get_class($trace['object']); + $isEmbedContainer = null === $templateClass ? false : str_starts_with($templateClass, $currentClass); + if (null === $this->name || ($this->name == $trace['object']->getTemplateName() && !$isEmbedContainer)) { + $template = $trace['object']; + $templateClass = \get_class($trace['object']); + } + } + } + + // update template name + if (null !== $template && null === $this->name) { + $this->name = $template->getTemplateName(); + } + + // update template path if any + if (null !== $template && null === $this->sourcePath) { + $src = $template->getSourceContext(); + $this->sourceCode = $src->getCode(); + $this->sourcePath = $src->getPath(); + } + + if (null === $template || $this->lineno > -1) { + return; + } + + $r = new \ReflectionObject($template); + $file = $r->getFileName(); + + $exceptions = [$e = $this]; + while ($e = $e->getPrevious()) { + $exceptions[] = $e; + } + + while ($e = array_pop($exceptions)) { + $traces = $e->getTrace(); + array_unshift($traces, ['file' => $e->getFile(), 'line' => $e->getLine()]); + + while ($trace = array_shift($traces)) { + if (!isset($trace['file']) || !isset($trace['line']) || $file != $trace['file']) { + continue; + } + + foreach ($template->getDebugInfo() as $codeLine => $templateLine) { + if ($codeLine <= $trace['line']) { + // update template line + $this->lineno = $templateLine; + + return; + } + } + } + } + } +} diff --git a/Sources/vendor/twig/twig/src/Error/LoaderError.php b/Sources/vendor/twig/twig/src/Error/LoaderError.php new file mode 100644 index 00000000..7c8c23c1 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Error/LoaderError.php @@ -0,0 +1,21 @@ + + */ +class LoaderError extends Error +{ +} diff --git a/Sources/vendor/twig/twig/src/Error/RuntimeError.php b/Sources/vendor/twig/twig/src/Error/RuntimeError.php new file mode 100644 index 00000000..f6b84766 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Error/RuntimeError.php @@ -0,0 +1,22 @@ + + */ +class RuntimeError extends Error +{ +} diff --git a/Sources/vendor/twig/twig/src/Error/SyntaxError.php b/Sources/vendor/twig/twig/src/Error/SyntaxError.php new file mode 100644 index 00000000..77c437c6 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Error/SyntaxError.php @@ -0,0 +1,46 @@ + + */ +class SyntaxError extends Error +{ + /** + * Tweaks the error message to include suggestions. + * + * @param string $name The original name of the item that does not exist + * @param array $items An array of possible items + */ + public function addSuggestions(string $name, array $items): void + { + $alternatives = []; + foreach ($items as $item) { + $lev = levenshtein($name, $item); + if ($lev <= \strlen($name) / 3 || str_contains($item, $name)) { + $alternatives[$item] = $lev; + } + } + + if (!$alternatives) { + return; + } + + asort($alternatives); + + $this->appendMessage(sprintf(' Did you mean "%s"?', implode('", "', array_keys($alternatives)))); + } +} diff --git a/Sources/vendor/twig/twig/src/ExpressionParser.php b/Sources/vendor/twig/twig/src/ExpressionParser.php new file mode 100644 index 00000000..13e0f087 --- /dev/null +++ b/Sources/vendor/twig/twig/src/ExpressionParser.php @@ -0,0 +1,841 @@ + + */ +class ExpressionParser +{ + public const OPERATOR_LEFT = 1; + public const OPERATOR_RIGHT = 2; + + private $parser; + private $env; + /** @var array}> */ + private $unaryOperators; + /** @var array, associativity: self::OPERATOR_*}> */ + private $binaryOperators; + + public function __construct(Parser $parser, Environment $env) + { + $this->parser = $parser; + $this->env = $env; + $this->unaryOperators = $env->getUnaryOperators(); + $this->binaryOperators = $env->getBinaryOperators(); + } + + public function parseExpression($precedence = 0, $allowArrow = false) + { + if ($allowArrow && $arrow = $this->parseArrow()) { + return $arrow; + } + + $expr = $this->getPrimary(); + $token = $this->parser->getCurrentToken(); + while ($this->isBinary($token) && $this->binaryOperators[$token->getValue()]['precedence'] >= $precedence) { + $op = $this->binaryOperators[$token->getValue()]; + $this->parser->getStream()->next(); + + if ('is not' === $token->getValue()) { + $expr = $this->parseNotTestExpression($expr); + } elseif ('is' === $token->getValue()) { + $expr = $this->parseTestExpression($expr); + } elseif (isset($op['callable'])) { + $expr = $op['callable']($this->parser, $expr); + } else { + $expr1 = $this->parseExpression(self::OPERATOR_LEFT === $op['associativity'] ? $op['precedence'] + 1 : $op['precedence'], true); + $class = $op['class']; + $expr = new $class($expr, $expr1, $token->getLine()); + } + + $token = $this->parser->getCurrentToken(); + } + + if (0 === $precedence) { + return $this->parseConditionalExpression($expr); + } + + return $expr; + } + + /** + * @return ArrowFunctionExpression|null + */ + private function parseArrow() + { + $stream = $this->parser->getStream(); + + // short array syntax (one argument, no parentheses)? + if ($stream->look(1)->test(/* Token::ARROW_TYPE */ 12)) { + $line = $stream->getCurrent()->getLine(); + $token = $stream->expect(/* Token::NAME_TYPE */ 5); + $names = [new AssignNameExpression($token->getValue(), $token->getLine())]; + $stream->expect(/* Token::ARROW_TYPE */ 12); + + return new ArrowFunctionExpression($this->parseExpression(0), new Node($names), $line); + } + + // first, determine if we are parsing an arrow function by finding => (long form) + $i = 0; + if (!$stream->look($i)->test(/* Token::PUNCTUATION_TYPE */ 9, '(')) { + return null; + } + ++$i; + while (true) { + // variable name + ++$i; + if (!$stream->look($i)->test(/* Token::PUNCTUATION_TYPE */ 9, ',')) { + break; + } + ++$i; + } + if (!$stream->look($i)->test(/* Token::PUNCTUATION_TYPE */ 9, ')')) { + return null; + } + ++$i; + if (!$stream->look($i)->test(/* Token::ARROW_TYPE */ 12)) { + return null; + } + + // yes, let's parse it properly + $token = $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, '('); + $line = $token->getLine(); + + $names = []; + while (true) { + $token = $stream->expect(/* Token::NAME_TYPE */ 5); + $names[] = new AssignNameExpression($token->getValue(), $token->getLine()); + + if (!$stream->nextIf(/* Token::PUNCTUATION_TYPE */ 9, ',')) { + break; + } + } + $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, ')'); + $stream->expect(/* Token::ARROW_TYPE */ 12); + + return new ArrowFunctionExpression($this->parseExpression(0), new Node($names), $line); + } + + private function getPrimary(): AbstractExpression + { + $token = $this->parser->getCurrentToken(); + + if ($this->isUnary($token)) { + $operator = $this->unaryOperators[$token->getValue()]; + $this->parser->getStream()->next(); + $expr = $this->parseExpression($operator['precedence']); + $class = $operator['class']; + + return $this->parsePostfixExpression(new $class($expr, $token->getLine())); + } elseif ($token->test(/* Token::PUNCTUATION_TYPE */ 9, '(')) { + $this->parser->getStream()->next(); + $expr = $this->parseExpression(); + $this->parser->getStream()->expect(/* Token::PUNCTUATION_TYPE */ 9, ')', 'An opened parenthesis is not properly closed'); + + return $this->parsePostfixExpression($expr); + } + + return $this->parsePrimaryExpression(); + } + + private function parseConditionalExpression($expr): AbstractExpression + { + while ($this->parser->getStream()->nextIf(/* Token::PUNCTUATION_TYPE */ 9, '?')) { + if (!$this->parser->getStream()->nextIf(/* Token::PUNCTUATION_TYPE */ 9, ':')) { + $expr2 = $this->parseExpression(); + if ($this->parser->getStream()->nextIf(/* Token::PUNCTUATION_TYPE */ 9, ':')) { + // Ternary operator (expr ? expr2 : expr3) + $expr3 = $this->parseExpression(); + } else { + // Ternary without else (expr ? expr2) + $expr3 = new ConstantExpression('', $this->parser->getCurrentToken()->getLine()); + } + } else { + // Ternary without then (expr ?: expr3) + $expr2 = $expr; + $expr3 = $this->parseExpression(); + } + + $expr = new ConditionalExpression($expr, $expr2, $expr3, $this->parser->getCurrentToken()->getLine()); + } + + return $expr; + } + + private function isUnary(Token $token): bool + { + return $token->test(/* Token::OPERATOR_TYPE */ 8) && isset($this->unaryOperators[$token->getValue()]); + } + + private function isBinary(Token $token): bool + { + return $token->test(/* Token::OPERATOR_TYPE */ 8) && isset($this->binaryOperators[$token->getValue()]); + } + + public function parsePrimaryExpression() + { + $token = $this->parser->getCurrentToken(); + switch ($token->getType()) { + case /* Token::NAME_TYPE */ 5: + $this->parser->getStream()->next(); + switch ($token->getValue()) { + case 'true': + case 'TRUE': + $node = new ConstantExpression(true, $token->getLine()); + break; + + case 'false': + case 'FALSE': + $node = new ConstantExpression(false, $token->getLine()); + break; + + case 'none': + case 'NONE': + case 'null': + case 'NULL': + $node = new ConstantExpression(null, $token->getLine()); + break; + + default: + if ('(' === $this->parser->getCurrentToken()->getValue()) { + $node = $this->getFunctionNode($token->getValue(), $token->getLine()); + } else { + $node = new NameExpression($token->getValue(), $token->getLine()); + } + } + break; + + case /* Token::NUMBER_TYPE */ 6: + $this->parser->getStream()->next(); + $node = new ConstantExpression($token->getValue(), $token->getLine()); + break; + + case /* Token::STRING_TYPE */ 7: + case /* Token::INTERPOLATION_START_TYPE */ 10: + $node = $this->parseStringExpression(); + break; + + case /* Token::OPERATOR_TYPE */ 8: + if (preg_match(Lexer::REGEX_NAME, $token->getValue(), $matches) && $matches[0] == $token->getValue()) { + // in this context, string operators are variable names + $this->parser->getStream()->next(); + $node = new NameExpression($token->getValue(), $token->getLine()); + break; + } + + if (isset($this->unaryOperators[$token->getValue()])) { + $class = $this->unaryOperators[$token->getValue()]['class']; + if (!\in_array($class, [NegUnary::class, PosUnary::class])) { + throw new SyntaxError(sprintf('Unexpected unary operator "%s".', $token->getValue()), $token->getLine(), $this->parser->getStream()->getSourceContext()); + } + + $this->parser->getStream()->next(); + $expr = $this->parsePrimaryExpression(); + + $node = new $class($expr, $token->getLine()); + break; + } + + // no break + default: + if ($token->test(/* Token::PUNCTUATION_TYPE */ 9, '[')) { + $node = $this->parseArrayExpression(); + } elseif ($token->test(/* Token::PUNCTUATION_TYPE */ 9, '{')) { + $node = $this->parseHashExpression(); + } elseif ($token->test(/* Token::OPERATOR_TYPE */ 8, '=') && ('==' === $this->parser->getStream()->look(-1)->getValue() || '!=' === $this->parser->getStream()->look(-1)->getValue())) { + throw new SyntaxError(sprintf('Unexpected operator of value "%s". Did you try to use "===" or "!==" for strict comparison? Use "is same as(value)" instead.', $token->getValue()), $token->getLine(), $this->parser->getStream()->getSourceContext()); + } else { + throw new SyntaxError(sprintf('Unexpected token "%s" of value "%s".', Token::typeToEnglish($token->getType()), $token->getValue()), $token->getLine(), $this->parser->getStream()->getSourceContext()); + } + } + + return $this->parsePostfixExpression($node); + } + + public function parseStringExpression() + { + $stream = $this->parser->getStream(); + + $nodes = []; + // a string cannot be followed by another string in a single expression + $nextCanBeString = true; + while (true) { + if ($nextCanBeString && $token = $stream->nextIf(/* Token::STRING_TYPE */ 7)) { + $nodes[] = new ConstantExpression($token->getValue(), $token->getLine()); + $nextCanBeString = false; + } elseif ($stream->nextIf(/* Token::INTERPOLATION_START_TYPE */ 10)) { + $nodes[] = $this->parseExpression(); + $stream->expect(/* Token::INTERPOLATION_END_TYPE */ 11); + $nextCanBeString = true; + } else { + break; + } + } + + $expr = array_shift($nodes); + foreach ($nodes as $node) { + $expr = new ConcatBinary($expr, $node, $node->getTemplateLine()); + } + + return $expr; + } + + public function parseArrayExpression() + { + $stream = $this->parser->getStream(); + $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, '[', 'An array element was expected'); + + $node = new ArrayExpression([], $stream->getCurrent()->getLine()); + $first = true; + while (!$stream->test(/* Token::PUNCTUATION_TYPE */ 9, ']')) { + if (!$first) { + $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, ',', 'An array element must be followed by a comma'); + + // trailing ,? + if ($stream->test(/* Token::PUNCTUATION_TYPE */ 9, ']')) { + break; + } + } + $first = false; + + if ($stream->test(/* Token::SPREAD_TYPE */ 13)) { + $stream->next(); + $expr = $this->parseExpression(); + $expr->setAttribute('spread', true); + $node->addElement($expr); + } else { + $node->addElement($this->parseExpression()); + } + } + $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, ']', 'An opened array is not properly closed'); + + return $node; + } + + public function parseHashExpression() + { + $stream = $this->parser->getStream(); + $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, '{', 'A hash element was expected'); + + $node = new ArrayExpression([], $stream->getCurrent()->getLine()); + $first = true; + while (!$stream->test(/* Token::PUNCTUATION_TYPE */ 9, '}')) { + if (!$first) { + $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, ',', 'A hash value must be followed by a comma'); + + // trailing ,? + if ($stream->test(/* Token::PUNCTUATION_TYPE */ 9, '}')) { + break; + } + } + $first = false; + + if ($stream->test(/* Token::SPREAD_TYPE */ 13)) { + $stream->next(); + $value = $this->parseExpression(); + $value->setAttribute('spread', true); + $node->addElement($value); + continue; + } + + // a hash key can be: + // + // * a number -- 12 + // * a string -- 'a' + // * a name, which is equivalent to a string -- a + // * an expression, which must be enclosed in parentheses -- (1 + 2) + if ($token = $stream->nextIf(/* Token::NAME_TYPE */ 5)) { + $key = new ConstantExpression($token->getValue(), $token->getLine()); + + // {a} is a shortcut for {a:a} + if ($stream->test(Token::PUNCTUATION_TYPE, [',', '}'])) { + $value = new NameExpression($key->getAttribute('value'), $key->getTemplateLine()); + $node->addElement($value, $key); + continue; + } + } elseif (($token = $stream->nextIf(/* Token::STRING_TYPE */ 7)) || $token = $stream->nextIf(/* Token::NUMBER_TYPE */ 6)) { + $key = new ConstantExpression($token->getValue(), $token->getLine()); + } elseif ($stream->test(/* Token::PUNCTUATION_TYPE */ 9, '(')) { + $key = $this->parseExpression(); + } else { + $current = $stream->getCurrent(); + + throw new SyntaxError(sprintf('A hash key must be a quoted string, a number, a name, or an expression enclosed in parentheses (unexpected token "%s" of value "%s".', Token::typeToEnglish($current->getType()), $current->getValue()), $current->getLine(), $stream->getSourceContext()); + } + + $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, ':', 'A hash key must be followed by a colon (:)'); + $value = $this->parseExpression(); + + $node->addElement($value, $key); + } + $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, '}', 'An opened hash is not properly closed'); + + return $node; + } + + public function parsePostfixExpression($node) + { + while (true) { + $token = $this->parser->getCurrentToken(); + if (/* Token::PUNCTUATION_TYPE */ 9 == $token->getType()) { + if ('.' == $token->getValue() || '[' == $token->getValue()) { + $node = $this->parseSubscriptExpression($node); + } elseif ('|' == $token->getValue()) { + $node = $this->parseFilterExpression($node); + } else { + break; + } + } else { + break; + } + } + + return $node; + } + + public function getFunctionNode($name, $line) + { + switch ($name) { + case 'parent': + $this->parseArguments(); + if (!\count($this->parser->getBlockStack())) { + throw new SyntaxError('Calling "parent" outside a block is forbidden.', $line, $this->parser->getStream()->getSourceContext()); + } + + if (!$this->parser->getParent() && !$this->parser->hasTraits()) { + throw new SyntaxError('Calling "parent" on a template that does not extend nor "use" another template is forbidden.', $line, $this->parser->getStream()->getSourceContext()); + } + + return new ParentExpression($this->parser->peekBlockStack(), $line); + case 'block': + $args = $this->parseArguments(); + if (\count($args) < 1) { + throw new SyntaxError('The "block" function takes one argument (the block name).', $line, $this->parser->getStream()->getSourceContext()); + } + + return new BlockReferenceExpression($args->getNode(0), \count($args) > 1 ? $args->getNode(1) : null, $line); + case 'attribute': + $args = $this->parseArguments(); + if (\count($args) < 2) { + throw new SyntaxError('The "attribute" function takes at least two arguments (the variable and the attributes).', $line, $this->parser->getStream()->getSourceContext()); + } + + return new GetAttrExpression($args->getNode(0), $args->getNode(1), \count($args) > 2 ? $args->getNode(2) : null, Template::ANY_CALL, $line); + default: + if (null !== $alias = $this->parser->getImportedSymbol('function', $name)) { + $arguments = new ArrayExpression([], $line); + foreach ($this->parseArguments() as $n) { + $arguments->addElement($n); + } + + $node = new MethodCallExpression($alias['node'], $alias['name'], $arguments, $line); + $node->setAttribute('safe', true); + + return $node; + } + + $args = $this->parseArguments(true); + $class = $this->getFunctionNodeClass($name, $line); + + return new $class($name, $args, $line); + } + } + + public function parseSubscriptExpression($node) + { + $stream = $this->parser->getStream(); + $token = $stream->next(); + $lineno = $token->getLine(); + $arguments = new ArrayExpression([], $lineno); + $type = Template::ANY_CALL; + if ('.' == $token->getValue()) { + $token = $stream->next(); + if ( + /* Token::NAME_TYPE */ 5 == $token->getType() + || + /* Token::NUMBER_TYPE */ 6 == $token->getType() + || + (/* Token::OPERATOR_TYPE */ 8 == $token->getType() && preg_match(Lexer::REGEX_NAME, $token->getValue())) + ) { + $arg = new ConstantExpression($token->getValue(), $lineno); + + if ($stream->test(/* Token::PUNCTUATION_TYPE */ 9, '(')) { + $type = Template::METHOD_CALL; + foreach ($this->parseArguments() as $n) { + $arguments->addElement($n); + } + } + } else { + throw new SyntaxError(sprintf('Expected name or number, got value "%s" of type %s.', $token->getValue(), Token::typeToEnglish($token->getType())), $lineno, $stream->getSourceContext()); + } + + if ($node instanceof NameExpression && null !== $this->parser->getImportedSymbol('template', $node->getAttribute('name'))) { + $name = $arg->getAttribute('value'); + + $node = new MethodCallExpression($node, 'macro_'.$name, $arguments, $lineno); + $node->setAttribute('safe', true); + + return $node; + } + } else { + $type = Template::ARRAY_CALL; + + // slice? + $slice = false; + if ($stream->test(/* Token::PUNCTUATION_TYPE */ 9, ':')) { + $slice = true; + $arg = new ConstantExpression(0, $token->getLine()); + } else { + $arg = $this->parseExpression(); + } + + if ($stream->nextIf(/* Token::PUNCTUATION_TYPE */ 9, ':')) { + $slice = true; + } + + if ($slice) { + if ($stream->test(/* Token::PUNCTUATION_TYPE */ 9, ']')) { + $length = new ConstantExpression(null, $token->getLine()); + } else { + $length = $this->parseExpression(); + } + + $class = $this->getFilterNodeClass('slice', $token->getLine()); + $arguments = new Node([$arg, $length]); + $filter = new $class($node, new ConstantExpression('slice', $token->getLine()), $arguments, $token->getLine()); + + $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, ']'); + + return $filter; + } + + $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, ']'); + } + + return new GetAttrExpression($node, $arg, $arguments, $type, $lineno); + } + + public function parseFilterExpression($node) + { + $this->parser->getStream()->next(); + + return $this->parseFilterExpressionRaw($node); + } + + public function parseFilterExpressionRaw($node, $tag = null) + { + while (true) { + $token = $this->parser->getStream()->expect(/* Token::NAME_TYPE */ 5); + + $name = new ConstantExpression($token->getValue(), $token->getLine()); + if (!$this->parser->getStream()->test(/* Token::PUNCTUATION_TYPE */ 9, '(')) { + $arguments = new Node(); + } else { + $arguments = $this->parseArguments(true, false, true); + } + + $class = $this->getFilterNodeClass($name->getAttribute('value'), $token->getLine()); + + $node = new $class($node, $name, $arguments, $token->getLine(), $tag); + + if (!$this->parser->getStream()->test(/* Token::PUNCTUATION_TYPE */ 9, '|')) { + break; + } + + $this->parser->getStream()->next(); + } + + return $node; + } + + /** + * Parses arguments. + * + * @param bool $namedArguments Whether to allow named arguments or not + * @param bool $definition Whether we are parsing arguments for a function definition + * + * @return Node + * + * @throws SyntaxError + */ + public function parseArguments($namedArguments = false, $definition = false, $allowArrow = false) + { + $args = []; + $stream = $this->parser->getStream(); + + $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, '(', 'A list of arguments must begin with an opening parenthesis'); + while (!$stream->test(/* Token::PUNCTUATION_TYPE */ 9, ')')) { + if (!empty($args)) { + $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, ',', 'Arguments must be separated by a comma'); + + // if the comma above was a trailing comma, early exit the argument parse loop + if ($stream->test(/* Token::PUNCTUATION_TYPE */ 9, ')')) { + break; + } + } + + if ($definition) { + $token = $stream->expect(/* Token::NAME_TYPE */ 5, null, 'An argument must be a name'); + $value = new NameExpression($token->getValue(), $this->parser->getCurrentToken()->getLine()); + } else { + $value = $this->parseExpression(0, $allowArrow); + } + + $name = null; + if ($namedArguments && $token = $stream->nextIf(/* Token::OPERATOR_TYPE */ 8, '=')) { + if (!$value instanceof NameExpression) { + throw new SyntaxError(sprintf('A parameter name must be a string, "%s" given.', \get_class($value)), $token->getLine(), $stream->getSourceContext()); + } + $name = $value->getAttribute('name'); + + if ($definition) { + $value = $this->parsePrimaryExpression(); + + if (!$this->checkConstantExpression($value)) { + throw new SyntaxError('A default value for an argument must be a constant (a boolean, a string, a number, or an array).', $token->getLine(), $stream->getSourceContext()); + } + } else { + $value = $this->parseExpression(0, $allowArrow); + } + } + + if ($definition) { + if (null === $name) { + $name = $value->getAttribute('name'); + $value = new ConstantExpression(null, $this->parser->getCurrentToken()->getLine()); + } + $args[$name] = $value; + } else { + if (null === $name) { + $args[] = $value; + } else { + $args[$name] = $value; + } + } + } + $stream->expect(/* Token::PUNCTUATION_TYPE */ 9, ')', 'A list of arguments must be closed by a parenthesis'); + + return new Node($args); + } + + public function parseAssignmentExpression() + { + $stream = $this->parser->getStream(); + $targets = []; + while (true) { + $token = $this->parser->getCurrentToken(); + if ($stream->test(/* Token::OPERATOR_TYPE */ 8) && preg_match(Lexer::REGEX_NAME, $token->getValue())) { + // in this context, string operators are variable names + $this->parser->getStream()->next(); + } else { + $stream->expect(/* Token::NAME_TYPE */ 5, null, 'Only variables can be assigned to'); + } + $value = $token->getValue(); + if (\in_array(strtr($value, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'), ['true', 'false', 'none', 'null'])) { + throw new SyntaxError(sprintf('You cannot assign a value to "%s".', $value), $token->getLine(), $stream->getSourceContext()); + } + $targets[] = new AssignNameExpression($value, $token->getLine()); + + if (!$stream->nextIf(/* Token::PUNCTUATION_TYPE */ 9, ',')) { + break; + } + } + + return new Node($targets); + } + + public function parseMultitargetExpression() + { + $targets = []; + while (true) { + $targets[] = $this->parseExpression(); + if (!$this->parser->getStream()->nextIf(/* Token::PUNCTUATION_TYPE */ 9, ',')) { + break; + } + } + + return new Node($targets); + } + + private function parseNotTestExpression(Node $node): NotUnary + { + return new NotUnary($this->parseTestExpression($node), $this->parser->getCurrentToken()->getLine()); + } + + private function parseTestExpression(Node $node): TestExpression + { + $stream = $this->parser->getStream(); + list($name, $test) = $this->getTest($node->getTemplateLine()); + + $class = $this->getTestNodeClass($test); + $arguments = null; + if ($stream->test(/* Token::PUNCTUATION_TYPE */ 9, '(')) { + $arguments = $this->parseArguments(true); + } elseif ($test->hasOneMandatoryArgument()) { + $arguments = new Node([0 => $this->parsePrimaryExpression()]); + } + + if ('defined' === $name && $node instanceof NameExpression && null !== $alias = $this->parser->getImportedSymbol('function', $node->getAttribute('name'))) { + $node = new MethodCallExpression($alias['node'], $alias['name'], new ArrayExpression([], $node->getTemplateLine()), $node->getTemplateLine()); + $node->setAttribute('safe', true); + } + + return new $class($node, $name, $arguments, $this->parser->getCurrentToken()->getLine()); + } + + private function getTest(int $line): array + { + $stream = $this->parser->getStream(); + $name = $stream->expect(/* Token::NAME_TYPE */ 5)->getValue(); + + if ($test = $this->env->getTest($name)) { + return [$name, $test]; + } + + if ($stream->test(/* Token::NAME_TYPE */ 5)) { + // try 2-words tests + $name = $name.' '.$this->parser->getCurrentToken()->getValue(); + + if ($test = $this->env->getTest($name)) { + $stream->next(); + + return [$name, $test]; + } + } + + $e = new SyntaxError(sprintf('Unknown "%s" test.', $name), $line, $stream->getSourceContext()); + $e->addSuggestions($name, array_keys($this->env->getTests())); + + throw $e; + } + + private function getTestNodeClass(TwigTest $test): string + { + if ($test->isDeprecated()) { + $stream = $this->parser->getStream(); + $message = sprintf('Twig Test "%s" is deprecated', $test->getName()); + + if ($test->getDeprecatedVersion()) { + $message .= sprintf(' since version %s', $test->getDeprecatedVersion()); + } + if ($test->getAlternative()) { + $message .= sprintf('. Use "%s" instead', $test->getAlternative()); + } + $src = $stream->getSourceContext(); + $message .= sprintf(' in %s at line %d.', $src->getPath() ?: $src->getName(), $stream->getCurrent()->getLine()); + + @trigger_error($message, \E_USER_DEPRECATED); + } + + return $test->getNodeClass(); + } + + private function getFunctionNodeClass(string $name, int $line): string + { + if (!$function = $this->env->getFunction($name)) { + $e = new SyntaxError(sprintf('Unknown "%s" function.', $name), $line, $this->parser->getStream()->getSourceContext()); + $e->addSuggestions($name, array_keys($this->env->getFunctions())); + + throw $e; + } + + if ($function->isDeprecated()) { + $message = sprintf('Twig Function "%s" is deprecated', $function->getName()); + if ($function->getDeprecatedVersion()) { + $message .= sprintf(' since version %s', $function->getDeprecatedVersion()); + } + if ($function->getAlternative()) { + $message .= sprintf('. Use "%s" instead', $function->getAlternative()); + } + $src = $this->parser->getStream()->getSourceContext(); + $message .= sprintf(' in %s at line %d.', $src->getPath() ?: $src->getName(), $line); + + @trigger_error($message, \E_USER_DEPRECATED); + } + + return $function->getNodeClass(); + } + + private function getFilterNodeClass(string $name, int $line): string + { + if (!$filter = $this->env->getFilter($name)) { + $e = new SyntaxError(sprintf('Unknown "%s" filter.', $name), $line, $this->parser->getStream()->getSourceContext()); + $e->addSuggestions($name, array_keys($this->env->getFilters())); + + throw $e; + } + + if ($filter->isDeprecated()) { + $message = sprintf('Twig Filter "%s" is deprecated', $filter->getName()); + if ($filter->getDeprecatedVersion()) { + $message .= sprintf(' since version %s', $filter->getDeprecatedVersion()); + } + if ($filter->getAlternative()) { + $message .= sprintf('. Use "%s" instead', $filter->getAlternative()); + } + $src = $this->parser->getStream()->getSourceContext(); + $message .= sprintf(' in %s at line %d.', $src->getPath() ?: $src->getName(), $line); + + @trigger_error($message, \E_USER_DEPRECATED); + } + + return $filter->getNodeClass(); + } + + // checks that the node only contains "constant" elements + private function checkConstantExpression(Node $node): bool + { + if (!($node instanceof ConstantExpression || $node instanceof ArrayExpression + || $node instanceof NegUnary || $node instanceof PosUnary + )) { + return false; + } + + foreach ($node as $n) { + if (!$this->checkConstantExpression($n)) { + return false; + } + } + + return true; + } +} diff --git a/Sources/vendor/twig/twig/src/Extension/AbstractExtension.php b/Sources/vendor/twig/twig/src/Extension/AbstractExtension.php new file mode 100644 index 00000000..422925f3 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Extension/AbstractExtension.php @@ -0,0 +1,45 @@ +dateFormats[0] = $format; + } + + if (null !== $dateIntervalFormat) { + $this->dateFormats[1] = $dateIntervalFormat; + } + } + + /** + * Gets the default format to be used by the date filter. + * + * @return array The default date format string and the default date interval format string + */ + public function getDateFormat() + { + return $this->dateFormats; + } + + /** + * Sets the default timezone to be used by the date filter. + * + * @param \DateTimeZone|string $timezone The default timezone string or a \DateTimeZone object + */ + public function setTimezone($timezone) + { + $this->timezone = $timezone instanceof \DateTimeZone ? $timezone : new \DateTimeZone($timezone); + } + + /** + * Gets the default timezone to be used by the date filter. + * + * @return \DateTimeZone The default timezone currently in use + */ + public function getTimezone() + { + if (null === $this->timezone) { + $this->timezone = new \DateTimeZone(date_default_timezone_get()); + } + + return $this->timezone; + } + + /** + * Sets the default format to be used by the number_format filter. + * + * @param int $decimal the number of decimal places to use + * @param string $decimalPoint the character(s) to use for the decimal point + * @param string $thousandSep the character(s) to use for the thousands separator + */ + public function setNumberFormat($decimal, $decimalPoint, $thousandSep) + { + $this->numberFormat = [$decimal, $decimalPoint, $thousandSep]; + } + + /** + * Get the default format used by the number_format filter. + * + * @return array The arguments for number_format() + */ + public function getNumberFormat() + { + return $this->numberFormat; + } + + public function getTokenParsers(): array + { + return [ + new ApplyTokenParser(), + new ForTokenParser(), + new IfTokenParser(), + new ExtendsTokenParser(), + new IncludeTokenParser(), + new BlockTokenParser(), + new UseTokenParser(), + new MacroTokenParser(), + new ImportTokenParser(), + new FromTokenParser(), + new SetTokenParser(), + new FlushTokenParser(), + new DoTokenParser(), + new EmbedTokenParser(), + new WithTokenParser(), + new DeprecatedTokenParser(), + ]; + } + + public function getFilters(): array + { + return [ + // formatting filters + new TwigFilter('date', 'twig_date_format_filter', ['needs_environment' => true]), + new TwigFilter('date_modify', 'twig_date_modify_filter', ['needs_environment' => true]), + new TwigFilter('format', 'twig_sprintf'), + new TwigFilter('replace', 'twig_replace_filter'), + new TwigFilter('number_format', 'twig_number_format_filter', ['needs_environment' => true]), + new TwigFilter('abs', 'abs'), + new TwigFilter('round', 'twig_round'), + + // encoding + new TwigFilter('url_encode', 'twig_urlencode_filter'), + new TwigFilter('json_encode', 'json_encode'), + new TwigFilter('convert_encoding', 'twig_convert_encoding'), + + // string filters + new TwigFilter('title', 'twig_title_string_filter', ['needs_environment' => true]), + new TwigFilter('capitalize', 'twig_capitalize_string_filter', ['needs_environment' => true]), + new TwigFilter('upper', 'twig_upper_filter', ['needs_environment' => true]), + new TwigFilter('lower', 'twig_lower_filter', ['needs_environment' => true]), + new TwigFilter('striptags', 'twig_striptags'), + new TwigFilter('trim', 'twig_trim_filter'), + new TwigFilter('nl2br', 'twig_nl2br', ['pre_escape' => 'html', 'is_safe' => ['html']]), + new TwigFilter('spaceless', 'twig_spaceless', ['is_safe' => ['html']]), + + // array helpers + new TwigFilter('join', 'twig_join_filter'), + new TwigFilter('split', 'twig_split_filter', ['needs_environment' => true]), + new TwigFilter('sort', 'twig_sort_filter', ['needs_environment' => true]), + new TwigFilter('merge', 'twig_array_merge'), + new TwigFilter('batch', 'twig_array_batch'), + new TwigFilter('column', 'twig_array_column'), + new TwigFilter('filter', 'twig_array_filter', ['needs_environment' => true]), + new TwigFilter('map', 'twig_array_map', ['needs_environment' => true]), + new TwigFilter('reduce', 'twig_array_reduce', ['needs_environment' => true]), + + // string/array filters + new TwigFilter('reverse', 'twig_reverse_filter', ['needs_environment' => true]), + new TwigFilter('length', 'twig_length_filter', ['needs_environment' => true]), + new TwigFilter('slice', 'twig_slice', ['needs_environment' => true]), + new TwigFilter('first', 'twig_first', ['needs_environment' => true]), + new TwigFilter('last', 'twig_last', ['needs_environment' => true]), + + // iteration and runtime + new TwigFilter('default', '_twig_default_filter', ['node_class' => DefaultFilter::class]), + new TwigFilter('keys', 'twig_get_array_keys_filter'), + ]; + } + + public function getFunctions(): array + { + return [ + new TwigFunction('max', 'max'), + new TwigFunction('min', 'min'), + new TwigFunction('range', 'range'), + new TwigFunction('constant', 'twig_constant'), + new TwigFunction('cycle', 'twig_cycle'), + new TwigFunction('random', 'twig_random', ['needs_environment' => true]), + new TwigFunction('date', 'twig_date_converter', ['needs_environment' => true]), + new TwigFunction('include', 'twig_include', ['needs_environment' => true, 'needs_context' => true, 'is_safe' => ['all']]), + new TwigFunction('source', 'twig_source', ['needs_environment' => true, 'is_safe' => ['all']]), + ]; + } + + public function getTests(): array + { + return [ + new TwigTest('even', null, ['node_class' => EvenTest::class]), + new TwigTest('odd', null, ['node_class' => OddTest::class]), + new TwigTest('defined', null, ['node_class' => DefinedTest::class]), + new TwigTest('same as', null, ['node_class' => SameasTest::class, 'one_mandatory_argument' => true]), + new TwigTest('none', null, ['node_class' => NullTest::class]), + new TwigTest('null', null, ['node_class' => NullTest::class]), + new TwigTest('divisible by', null, ['node_class' => DivisiblebyTest::class, 'one_mandatory_argument' => true]), + new TwigTest('constant', null, ['node_class' => ConstantTest::class]), + new TwigTest('empty', 'twig_test_empty'), + new TwigTest('iterable', 'is_iterable'), + ]; + } + + public function getNodeVisitors(): array + { + return [new MacroAutoImportNodeVisitor()]; + } + + public function getOperators(): array + { + return [ + [ + 'not' => ['precedence' => 50, 'class' => NotUnary::class], + '-' => ['precedence' => 500, 'class' => NegUnary::class], + '+' => ['precedence' => 500, 'class' => PosUnary::class], + ], + [ + 'or' => ['precedence' => 10, 'class' => OrBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + 'and' => ['precedence' => 15, 'class' => AndBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + 'b-or' => ['precedence' => 16, 'class' => BitwiseOrBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + 'b-xor' => ['precedence' => 17, 'class' => BitwiseXorBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + 'b-and' => ['precedence' => 18, 'class' => BitwiseAndBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '==' => ['precedence' => 20, 'class' => EqualBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '!=' => ['precedence' => 20, 'class' => NotEqualBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '<=>' => ['precedence' => 20, 'class' => SpaceshipBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '<' => ['precedence' => 20, 'class' => LessBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '>' => ['precedence' => 20, 'class' => GreaterBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '>=' => ['precedence' => 20, 'class' => GreaterEqualBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '<=' => ['precedence' => 20, 'class' => LessEqualBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + 'not in' => ['precedence' => 20, 'class' => NotInBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + 'in' => ['precedence' => 20, 'class' => InBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + 'matches' => ['precedence' => 20, 'class' => MatchesBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + 'starts with' => ['precedence' => 20, 'class' => StartsWithBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + 'ends with' => ['precedence' => 20, 'class' => EndsWithBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + 'has some' => ['precedence' => 20, 'class' => HasSomeBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + 'has every' => ['precedence' => 20, 'class' => HasEveryBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '..' => ['precedence' => 25, 'class' => RangeBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '+' => ['precedence' => 30, 'class' => AddBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '-' => ['precedence' => 30, 'class' => SubBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '~' => ['precedence' => 40, 'class' => ConcatBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '*' => ['precedence' => 60, 'class' => MulBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '/' => ['precedence' => 60, 'class' => DivBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '//' => ['precedence' => 60, 'class' => FloorDivBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '%' => ['precedence' => 60, 'class' => ModBinary::class, 'associativity' => ExpressionParser::OPERATOR_LEFT], + 'is' => ['precedence' => 100, 'associativity' => ExpressionParser::OPERATOR_LEFT], + 'is not' => ['precedence' => 100, 'associativity' => ExpressionParser::OPERATOR_LEFT], + '**' => ['precedence' => 200, 'class' => PowerBinary::class, 'associativity' => ExpressionParser::OPERATOR_RIGHT], + '??' => ['precedence' => 300, 'class' => NullCoalesceExpression::class, 'associativity' => ExpressionParser::OPERATOR_RIGHT], + ], + ]; + } +} +} + +namespace { + use Twig\Environment; + use Twig\Error\LoaderError; + use Twig\Error\RuntimeError; + use Twig\Extension\CoreExtension; + use Twig\Extension\SandboxExtension; + use Twig\Markup; + use Twig\Source; + use Twig\Template; + use Twig\TemplateWrapper; + +/** + * Cycles over a value. + * + * @param \ArrayAccess|array $values + * @param int $position The cycle position + * + * @return string The next value in the cycle + */ +function twig_cycle($values, $position) +{ + if (!\is_array($values) && !$values instanceof \ArrayAccess) { + return $values; + } + + return $values[$position % \count($values)]; +} + +/** + * Returns a random value depending on the supplied parameter type: + * - a random item from a \Traversable or array + * - a random character from a string + * - a random integer between 0 and the integer parameter. + * + * @param \Traversable|array|int|float|string $values The values to pick a random item from + * @param int|null $max Maximum value used when $values is an int + * + * @return mixed A random value from the given sequence + * + * @throws RuntimeError when $values is an empty array (does not apply to an empty string which is returned as is) + */ +function twig_random(Environment $env, $values = null, $max = null) +{ + if (null === $values) { + return null === $max ? mt_rand() : mt_rand(0, (int) $max); + } + + if (\is_int($values) || \is_float($values)) { + if (null === $max) { + if ($values < 0) { + $max = 0; + $min = $values; + } else { + $max = $values; + $min = 0; + } + } else { + $min = $values; + } + + return mt_rand((int) $min, (int) $max); + } + + if (\is_string($values)) { + if ('' === $values) { + return ''; + } + + $charset = $env->getCharset(); + + if ('UTF-8' !== $charset) { + $values = twig_convert_encoding($values, 'UTF-8', $charset); + } + + // unicode version of str_split() + // split at all positions, but not after the start and not before the end + $values = preg_split('/(? $value) { + $values[$i] = twig_convert_encoding($value, $charset, 'UTF-8'); + } + } + } + + if (!is_iterable($values)) { + return $values; + } + + $values = twig_to_array($values); + + if (0 === \count($values)) { + throw new RuntimeError('The random function cannot pick from an empty array.'); + } + + return $values[array_rand($values, 1)]; +} + +/** + * Converts a date to the given format. + * + * {{ post.published_at|date("m/d/Y") }} + * + * @param \DateTimeInterface|\DateInterval|string $date A date + * @param string|null $format The target format, null to use the default + * @param \DateTimeZone|string|false|null $timezone The target timezone, null to use the default, false to leave unchanged + * + * @return string The formatted date + */ +function twig_date_format_filter(Environment $env, $date, $format = null, $timezone = null) +{ + if (null === $format) { + $formats = $env->getExtension(CoreExtension::class)->getDateFormat(); + $format = $date instanceof \DateInterval ? $formats[1] : $formats[0]; + } + + if ($date instanceof \DateInterval) { + return $date->format($format); + } + + return twig_date_converter($env, $date, $timezone)->format($format); +} + +/** + * Returns a new date object modified. + * + * {{ post.published_at|date_modify("-1day")|date("m/d/Y") }} + * + * @param \DateTimeInterface|string $date A date + * @param string $modifier A modifier string + * + * @return \DateTimeInterface + */ +function twig_date_modify_filter(Environment $env, $date, $modifier) +{ + $date = twig_date_converter($env, $date, false); + + return $date->modify($modifier); +} + +/** + * Returns a formatted string. + * + * @param string|null $format + * @param ...$values + * + * @return string + */ +function twig_sprintf($format, ...$values) +{ + return sprintf($format ?? '', ...$values); +} + +/** + * Converts an input to a \DateTime instance. + * + * {% if date(user.created_at) < date('+2days') %} + * {# do something #} + * {% endif %} + * + * @param \DateTimeInterface|string|null $date A date or null to use the current time + * @param \DateTimeZone|string|false|null $timezone The target timezone, null to use the default, false to leave unchanged + * + * @return \DateTimeInterface + */ +function twig_date_converter(Environment $env, $date = null, $timezone = null) +{ + // determine the timezone + if (false !== $timezone) { + if (null === $timezone) { + $timezone = $env->getExtension(CoreExtension::class)->getTimezone(); + } elseif (!$timezone instanceof \DateTimeZone) { + $timezone = new \DateTimeZone($timezone); + } + } + + // immutable dates + if ($date instanceof \DateTimeImmutable) { + return false !== $timezone ? $date->setTimezone($timezone) : $date; + } + + if ($date instanceof \DateTimeInterface) { + $date = clone $date; + if (false !== $timezone) { + $date->setTimezone($timezone); + } + + return $date; + } + + if (null === $date || 'now' === $date) { + if (null === $date) { + $date = 'now'; + } + + return new \DateTime($date, false !== $timezone ? $timezone : $env->getExtension(CoreExtension::class)->getTimezone()); + } + + $asString = (string) $date; + if (ctype_digit($asString) || (!empty($asString) && '-' === $asString[0] && ctype_digit(substr($asString, 1)))) { + $date = new \DateTime('@'.$date); + } else { + $date = new \DateTime($date, $env->getExtension(CoreExtension::class)->getTimezone()); + } + + if (false !== $timezone) { + $date->setTimezone($timezone); + } + + return $date; +} + +/** + * Replaces strings within a string. + * + * @param string|null $str String to replace in + * @param array|\Traversable $from Replace values + * + * @return string + */ +function twig_replace_filter($str, $from) +{ + if (!is_iterable($from)) { + throw new RuntimeError(sprintf('The "replace" filter expects an array or "Traversable" as replace values, got "%s".', \is_object($from) ? \get_class($from) : \gettype($from))); + } + + return strtr($str ?? '', twig_to_array($from)); +} + +/** + * Rounds a number. + * + * @param int|float|string|null $value The value to round + * @param int|float $precision The rounding precision + * @param string $method The method to use for rounding + * + * @return int|float The rounded number + */ +function twig_round($value, $precision = 0, $method = 'common') +{ + $value = (float) $value; + + if ('common' === $method) { + return round($value, $precision); + } + + if ('ceil' !== $method && 'floor' !== $method) { + throw new RuntimeError('The round filter only supports the "common", "ceil", and "floor" methods.'); + } + + return $method($value * 10 ** $precision) / 10 ** $precision; +} + +/** + * Number format filter. + * + * All of the formatting options can be left null, in that case the defaults will + * be used. Supplying any of the parameters will override the defaults set in the + * environment object. + * + * @param mixed $number A float/int/string of the number to format + * @param int $decimal the number of decimal points to display + * @param string $decimalPoint the character(s) to use for the decimal point + * @param string $thousandSep the character(s) to use for the thousands separator + * + * @return string The formatted number + */ +function twig_number_format_filter(Environment $env, $number, $decimal = null, $decimalPoint = null, $thousandSep = null) +{ + $defaults = $env->getExtension(CoreExtension::class)->getNumberFormat(); + if (null === $decimal) { + $decimal = $defaults[0]; + } + + if (null === $decimalPoint) { + $decimalPoint = $defaults[1]; + } + + if (null === $thousandSep) { + $thousandSep = $defaults[2]; + } + + return number_format((float) $number, $decimal, $decimalPoint, $thousandSep); +} + +/** + * URL encodes (RFC 3986) a string as a path segment or an array as a query string. + * + * @param string|array|null $url A URL or an array of query parameters + * + * @return string The URL encoded value + */ +function twig_urlencode_filter($url) +{ + if (\is_array($url)) { + return http_build_query($url, '', '&', \PHP_QUERY_RFC3986); + } + + return rawurlencode($url ?? ''); +} + +/** + * Merges any number of arrays or Traversable objects. + * + * {% set items = { 'apple': 'fruit', 'orange': 'fruit' } %} + * + * {% set items = items|merge({ 'peugeot': 'car' }, { 'banana': 'fruit' }) %} + * + * {# items now contains { 'apple': 'fruit', 'orange': 'fruit', 'peugeot': 'car', 'banana': 'fruit' } #} + * + * @param array|\Traversable ...$arrays Any number of arrays or Traversable objects to merge + * + * @return array The merged array + */ +function twig_array_merge(...$arrays) +{ + $result = []; + + foreach ($arrays as $argNumber => $array) { + if (!is_iterable($array)) { + throw new RuntimeError(sprintf('The merge filter only works with arrays or "Traversable", got "%s" for argument %d.', \gettype($array), $argNumber + 1)); + } + + $result = array_merge($result, twig_to_array($array)); + } + + return $result; +} + + +/** + * Slices a variable. + * + * @param mixed $item A variable + * @param int $start Start of the slice + * @param int $length Size of the slice + * @param bool $preserveKeys Whether to preserve key or not (when the input is an array) + * + * @return mixed The sliced variable + */ +function twig_slice(Environment $env, $item, $start, $length = null, $preserveKeys = false) +{ + if ($item instanceof \Traversable) { + while ($item instanceof \IteratorAggregate) { + $item = $item->getIterator(); + } + + if ($start >= 0 && $length >= 0 && $item instanceof \Iterator) { + try { + return iterator_to_array(new \LimitIterator($item, $start, $length ?? -1), $preserveKeys); + } catch (\OutOfBoundsException $e) { + return []; + } + } + + $item = iterator_to_array($item, $preserveKeys); + } + + if (\is_array($item)) { + return \array_slice($item, $start, $length, $preserveKeys); + } + + return mb_substr((string) $item, $start, $length, $env->getCharset()); +} + +/** + * Returns the first element of the item. + * + * @param mixed $item A variable + * + * @return mixed The first element of the item + */ +function twig_first(Environment $env, $item) +{ + $elements = twig_slice($env, $item, 0, 1, false); + + return \is_string($elements) ? $elements : current($elements); +} + +/** + * Returns the last element of the item. + * + * @param mixed $item A variable + * + * @return mixed The last element of the item + */ +function twig_last(Environment $env, $item) +{ + $elements = twig_slice($env, $item, -1, 1, false); + + return \is_string($elements) ? $elements : current($elements); +} + +/** + * Joins the values to a string. + * + * The separators between elements are empty strings per default, you can define them with the optional parameters. + * + * {{ [1, 2, 3]|join(', ', ' and ') }} + * {# returns 1, 2 and 3 #} + * + * {{ [1, 2, 3]|join('|') }} + * {# returns 1|2|3 #} + * + * {{ [1, 2, 3]|join }} + * {# returns 123 #} + * + * @param array $value An array + * @param string $glue The separator + * @param string|null $and The separator for the last pair + * + * @return string The concatenated string + */ +function twig_join_filter($value, $glue = '', $and = null) +{ + if (!is_iterable($value)) { + $value = (array) $value; + } + + $value = twig_to_array($value, false); + + if (0 === \count($value)) { + return ''; + } + + if (null === $and || $and === $glue) { + return implode($glue, $value); + } + + if (1 === \count($value)) { + return $value[0]; + } + + return implode($glue, \array_slice($value, 0, -1)).$and.$value[\count($value) - 1]; +} + +/** + * Splits the string into an array. + * + * {{ "one,two,three"|split(',') }} + * {# returns [one, two, three] #} + * + * {{ "one,two,three,four,five"|split(',', 3) }} + * {# returns [one, two, "three,four,five"] #} + * + * {{ "123"|split('') }} + * {# returns [1, 2, 3] #} + * + * {{ "aabbcc"|split('', 2) }} + * {# returns [aa, bb, cc] #} + * + * @param string|null $value A string + * @param string $delimiter The delimiter + * @param int $limit The limit + * + * @return array The split string as an array + */ +function twig_split_filter(Environment $env, $value, $delimiter, $limit = null) +{ + $value = $value ?? ''; + + if ('' !== $delimiter) { + return null === $limit ? explode($delimiter, $value) : explode($delimiter, $value, $limit); + } + + if ($limit <= 1) { + return preg_split('/(?getCharset()); + if ($length < $limit) { + return [$value]; + } + + $r = []; + for ($i = 0; $i < $length; $i += $limit) { + $r[] = mb_substr($value, $i, $limit, $env->getCharset()); + } + + return $r; +} + +// The '_default' filter is used internally to avoid using the ternary operator +// which costs a lot for big contexts (before PHP 5.4). So, on average, +// a function call is cheaper. +/** + * @internal + */ +function _twig_default_filter($value, $default = '') +{ + if (twig_test_empty($value)) { + return $default; + } + + return $value; +} + +/** + * Returns the keys for the given array. + * + * It is useful when you want to iterate over the keys of an array: + * + * {% for key in array|keys %} + * {# ... #} + * {% endfor %} + * + * @param array $array An array + * + * @return array The keys + */ +function twig_get_array_keys_filter($array) +{ + if ($array instanceof \Traversable) { + while ($array instanceof \IteratorAggregate) { + $array = $array->getIterator(); + } + + $keys = []; + if ($array instanceof \Iterator) { + $array->rewind(); + while ($array->valid()) { + $keys[] = $array->key(); + $array->next(); + } + + return $keys; + } + + foreach ($array as $key => $item) { + $keys[] = $key; + } + + return $keys; + } + + if (!\is_array($array)) { + return []; + } + + return array_keys($array); +} + +/** + * Reverses a variable. + * + * @param array|\Traversable|string|null $item An array, a \Traversable instance, or a string + * @param bool $preserveKeys Whether to preserve key or not + * + * @return mixed The reversed input + */ +function twig_reverse_filter(Environment $env, $item, $preserveKeys = false) +{ + if ($item instanceof \Traversable) { + return array_reverse(iterator_to_array($item), $preserveKeys); + } + + if (\is_array($item)) { + return array_reverse($item, $preserveKeys); + } + + $string = (string) $item; + + $charset = $env->getCharset(); + + if ('UTF-8' !== $charset) { + $string = twig_convert_encoding($string, 'UTF-8', $charset); + } + + preg_match_all('/./us', $string, $matches); + + $string = implode('', array_reverse($matches[0])); + + if ('UTF-8' !== $charset) { + $string = twig_convert_encoding($string, $charset, 'UTF-8'); + } + + return $string; +} + +/** + * Sorts an array. + * + * @param array|\Traversable $array + * + * @return array + */ +function twig_sort_filter(Environment $env, $array, $arrow = null) +{ + if ($array instanceof \Traversable) { + $array = iterator_to_array($array); + } elseif (!\is_array($array)) { + throw new RuntimeError(sprintf('The sort filter only works with arrays or "Traversable", got "%s".', \gettype($array))); + } + + if (null !== $arrow) { + twig_check_arrow_in_sandbox($env, $arrow, 'sort', 'filter'); + + uasort($array, $arrow); + } else { + asort($array); + } + + return $array; +} + +/** + * @internal + */ +function twig_in_filter($value, $compare) +{ + if ($value instanceof Markup) { + $value = (string) $value; + } + if ($compare instanceof Markup) { + $compare = (string) $compare; + } + + if (\is_string($compare)) { + if (\is_string($value) || \is_int($value) || \is_float($value)) { + return '' === $value || str_contains($compare, (string) $value); + } + + return false; + } + + if (!is_iterable($compare)) { + return false; + } + + if (\is_object($value) || \is_resource($value)) { + if (!\is_array($compare)) { + foreach ($compare as $item) { + if ($item === $value) { + return true; + } + } + + return false; + } + + return \in_array($value, $compare, true); + } + + foreach ($compare as $item) { + if (0 === twig_compare($value, $item)) { + return true; + } + } + + return false; +} + +/** + * Compares two values using a more strict version of the PHP non-strict comparison operator. + * + * @see https://wiki.php.net/rfc/string_to_number_comparison + * @see https://wiki.php.net/rfc/trailing_whitespace_numerics + * + * @internal + */ +function twig_compare($a, $b) +{ + // int <=> string + if (\is_int($a) && \is_string($b)) { + $bTrim = trim($b, " \t\n\r\v\f"); + if (!is_numeric($bTrim)) { + return (string) $a <=> $b; + } + if ((int) $bTrim == $bTrim) { + return $a <=> (int) $bTrim; + } else { + return (float) $a <=> (float) $bTrim; + } + } + if (\is_string($a) && \is_int($b)) { + $aTrim = trim($a, " \t\n\r\v\f"); + if (!is_numeric($aTrim)) { + return $a <=> (string) $b; + } + if ((int) $aTrim == $aTrim) { + return (int) $aTrim <=> $b; + } else { + return (float) $aTrim <=> (float) $b; + } + } + + // float <=> string + if (\is_float($a) && \is_string($b)) { + if (is_nan($a)) { + return 1; + } + $bTrim = trim($b, " \t\n\r\v\f"); + if (!is_numeric($bTrim)) { + return (string) $a <=> $b; + } + + return $a <=> (float) $bTrim; + } + if (\is_string($a) && \is_float($b)) { + if (is_nan($b)) { + return 1; + } + $aTrim = trim($a, " \t\n\r\v\f"); + if (!is_numeric($aTrim)) { + return $a <=> (string) $b; + } + + return (float) $aTrim <=> $b; + } + + // fallback to <=> + return $a <=> $b; +} + +/** + * @return int + * + * @throws RuntimeError When an invalid pattern is used + */ +function twig_matches(string $regexp, ?string $str) +{ + set_error_handler(function ($t, $m) use ($regexp) { + throw new RuntimeError(sprintf('Regexp "%s" passed to "matches" is not valid', $regexp).substr($m, 12)); + }); + try { + return preg_match($regexp, $str ?? ''); + } finally { + restore_error_handler(); + } +} + +/** + * Returns a trimmed string. + * + * @param string|null $string + * @param string|null $characterMask + * @param string $side + * + * @return string + * + * @throws RuntimeError When an invalid trimming side is used (not a string or not 'left', 'right', or 'both') + */ +function twig_trim_filter($string, $characterMask = null, $side = 'both') +{ + if (null === $characterMask) { + $characterMask = " \t\n\r\0\x0B"; + } + + switch ($side) { + case 'both': + return trim($string ?? '', $characterMask); + case 'left': + return ltrim($string ?? '', $characterMask); + case 'right': + return rtrim($string ?? '', $characterMask); + default: + throw new RuntimeError('Trimming side must be "left", "right" or "both".'); + } +} + +/** + * Inserts HTML line breaks before all newlines in a string. + * + * @param string|null $string + * + * @return string + */ +function twig_nl2br($string) +{ + return nl2br($string ?? ''); +} + +/** + * Removes whitespaces between HTML tags. + * + * @param string|null $string + * + * @return string + */ +function twig_spaceless($content) +{ + return trim(preg_replace('/>\s+<', $content ?? '')); +} + +/** + * @param string|null $string + * @param string $to + * @param string $from + * + * @return string + */ +function twig_convert_encoding($string, $to, $from) +{ + if (!\function_exists('iconv')) { + throw new RuntimeError('Unable to convert encoding: required function iconv() does not exist. You should install ext-iconv or symfony/polyfill-iconv.'); + } + + return iconv($from, $to, $string ?? ''); +} + +/** + * Returns the length of a variable. + * + * @param mixed $thing A variable + * + * @return int The length of the value + */ +function twig_length_filter(Environment $env, $thing) +{ + if (null === $thing) { + return 0; + } + + if (\is_scalar($thing)) { + return mb_strlen($thing, $env->getCharset()); + } + + if ($thing instanceof \Countable || \is_array($thing) || $thing instanceof \SimpleXMLElement) { + return \count($thing); + } + + if ($thing instanceof \Traversable) { + return iterator_count($thing); + } + + if (method_exists($thing, '__toString') && !$thing instanceof \Countable) { + return mb_strlen((string) $thing, $env->getCharset()); + } + + return 1; +} + +/** + * Converts a string to uppercase. + * + * @param string|null $string A string + * + * @return string The uppercased string + */ +function twig_upper_filter(Environment $env, $string) +{ + return mb_strtoupper($string ?? '', $env->getCharset()); +} + +/** + * Converts a string to lowercase. + * + * @param string|null $string A string + * + * @return string The lowercased string + */ +function twig_lower_filter(Environment $env, $string) +{ + return mb_strtolower($string ?? '', $env->getCharset()); +} + +/** + * Strips HTML and PHP tags from a string. + * + * @param string|null $string + * @param string[]|string|null $string + * + * @return string + */ +function twig_striptags($string, $allowable_tags = null) +{ + return strip_tags($string ?? '', $allowable_tags); +} + +/** + * Returns a titlecased string. + * + * @param string|null $string A string + * + * @return string The titlecased string + */ +function twig_title_string_filter(Environment $env, $string) +{ + if (null !== $charset = $env->getCharset()) { + return mb_convert_case($string ?? '', \MB_CASE_TITLE, $charset); + } + + return ucwords(strtolower($string ?? '')); +} + +/** + * Returns a capitalized string. + * + * @param string|null $string A string + * + * @return string The capitalized string + */ +function twig_capitalize_string_filter(Environment $env, $string) +{ + $charset = $env->getCharset(); + + return mb_strtoupper(mb_substr($string ?? '', 0, 1, $charset), $charset).mb_strtolower(mb_substr($string ?? '', 1, null, $charset), $charset); +} + +/** + * @internal + */ +function twig_call_macro(Template $template, string $method, array $args, int $lineno, array $context, Source $source) +{ + if (!method_exists($template, $method)) { + $parent = $template; + while ($parent = $parent->getParent($context)) { + if (method_exists($parent, $method)) { + return $parent->$method(...$args); + } + } + + throw new RuntimeError(sprintf('Macro "%s" is not defined in template "%s".', substr($method, \strlen('macro_')), $template->getTemplateName()), $lineno, $source); + } + + return $template->$method(...$args); +} + +/** + * @internal + */ +function twig_ensure_traversable($seq) +{ + if (is_iterable($seq)) { + return $seq; + } + + return []; +} + +/** + * @internal + */ +function twig_to_array($seq, $preserveKeys = true) +{ + if ($seq instanceof \Traversable) { + return iterator_to_array($seq, $preserveKeys); + } + + if (!\is_array($seq)) { + return $seq; + } + + return $preserveKeys ? $seq : array_values($seq); +} + +/** + * Checks if a variable is empty. + * + * {# evaluates to true if the foo variable is null, false, or the empty string #} + * {% if foo is empty %} + * {# ... #} + * {% endif %} + * + * @param mixed $value A variable + * + * @return bool true if the value is empty, false otherwise + */ +function twig_test_empty($value) +{ + if ($value instanceof \Countable) { + return 0 === \count($value); + } + + if ($value instanceof \Traversable) { + return !iterator_count($value); + } + + if (\is_object($value) && method_exists($value, '__toString')) { + return '' === (string) $value; + } + + return '' === $value || false === $value || null === $value || [] === $value; +} + +/** + * Checks if a variable is traversable. + * + * {# evaluates to true if the foo variable is an array or a traversable object #} + * {% if foo is iterable %} + * {# ... #} + * {% endif %} + * + * @param mixed $value A variable + * + * @return bool true if the value is traversable + * + * @deprecated since Twig 3.8, to be removed in 4.0 (use the native "is_iterable" function instead) + */ +function twig_test_iterable($value) +{ + return is_iterable($value); +} + +/** + * Renders a template. + * + * @param array $context + * @param string|array|TemplateWrapper $template The template to render or an array of templates to try consecutively + * @param array $variables The variables to pass to the template + * @param bool $withContext + * @param bool $ignoreMissing Whether to ignore missing templates or not + * @param bool $sandboxed Whether to sandbox the template or not + * + * @return string The rendered template + */ +function twig_include(Environment $env, $context, $template, $variables = [], $withContext = true, $ignoreMissing = false, $sandboxed = false) +{ + $alreadySandboxed = false; + $sandbox = null; + if ($withContext) { + $variables = array_merge($context, $variables); + } + + if ($isSandboxed = $sandboxed && $env->hasExtension(SandboxExtension::class)) { + $sandbox = $env->getExtension(SandboxExtension::class); + if (!$alreadySandboxed = $sandbox->isSandboxed()) { + $sandbox->enableSandbox(); + } + + foreach ((\is_array($template) ? $template : [$template]) as $name) { + // if a Template instance is passed, it might have been instantiated outside of a sandbox, check security + if ($name instanceof TemplateWrapper || $name instanceof Template) { + $name->unwrap()->checkSecurity(); + } + } + } + + try { + $loaded = null; + try { + $loaded = $env->resolveTemplate($template); + } catch (LoaderError $e) { + if (!$ignoreMissing) { + throw $e; + } + } + + return $loaded ? $loaded->render($variables) : ''; + } finally { + if ($isSandboxed && !$alreadySandboxed) { + $sandbox->disableSandbox(); + } + } +} + +/** + * Returns a template content without rendering it. + * + * @param string $name The template name + * @param bool $ignoreMissing Whether to ignore missing templates or not + * + * @return string The template source + */ +function twig_source(Environment $env, $name, $ignoreMissing = false) +{ + $loader = $env->getLoader(); + try { + return $loader->getSourceContext($name)->getCode(); + } catch (LoaderError $e) { + if (!$ignoreMissing) { + throw $e; + } + } +} + +/** + * Provides the ability to get constants from instances as well as class/global constants. + * + * @param string $constant The name of the constant + * @param object|null $object The object to get the constant from + * + * @return string + */ +function twig_constant($constant, $object = null) +{ + if (null !== $object) { + if ('class' === $constant) { + return \get_class($object); + } + + $constant = \get_class($object).'::'.$constant; + } + + if (!\defined($constant)) { + throw new RuntimeError(sprintf('Constant "%s" is undefined.', $constant)); + } + + return \constant($constant); +} + +/** + * Checks if a constant exists. + * + * @param string $constant The name of the constant + * @param object|null $object The object to get the constant from + * + * @return bool + */ +function twig_constant_is_defined($constant, $object = null) +{ + if (null !== $object) { + if ('class' === $constant) { + return true; + } + + $constant = \get_class($object).'::'.$constant; + } + + return \defined($constant); +} + +/** + * Batches item. + * + * @param array $items An array of items + * @param int $size The size of the batch + * @param mixed $fill A value used to fill missing items + * + * @return array + */ +function twig_array_batch($items, $size, $fill = null, $preserveKeys = true) +{ + if (!is_iterable($items)) { + throw new RuntimeError(sprintf('The "batch" filter expects an array or "Traversable", got "%s".', \is_object($items) ? \get_class($items) : \gettype($items))); + } + + $size = ceil($size); + + $result = array_chunk(twig_to_array($items, $preserveKeys), $size, $preserveKeys); + + if (null !== $fill && $result) { + $last = \count($result) - 1; + if ($fillCount = $size - \count($result[$last])) { + for ($i = 0; $i < $fillCount; ++$i) { + $result[$last][] = $fill; + } + } + } + + return $result; +} + +/** + * Returns the attribute value for a given array/object. + * + * @param mixed $object The object or array from where to get the item + * @param mixed $item The item to get from the array or object + * @param array $arguments An array of arguments to pass if the item is an object method + * @param string $type The type of attribute (@see \Twig\Template constants) + * @param bool $isDefinedTest Whether this is only a defined check + * @param bool $ignoreStrictCheck Whether to ignore the strict attribute check or not + * @param int $lineno The template line where the attribute was called + * + * @return mixed The attribute value, or a Boolean when $isDefinedTest is true, or null when the attribute is not set and $ignoreStrictCheck is true + * + * @throws RuntimeError if the attribute does not exist and Twig is running in strict mode and $isDefinedTest is false + * + * @internal + */ +function twig_get_attribute(Environment $env, Source $source, $object, $item, array $arguments = [], $type = /* Template::ANY_CALL */ 'any', $isDefinedTest = false, $ignoreStrictCheck = false, $sandboxed = false, int $lineno = -1) +{ + // array + if (/* Template::METHOD_CALL */ 'method' !== $type) { + $arrayItem = \is_bool($item) || \is_float($item) ? (int) $item : $item; + + if (((\is_array($object) || $object instanceof \ArrayObject) && (isset($object[$arrayItem]) || \array_key_exists($arrayItem, (array) $object))) + || ($object instanceof ArrayAccess && isset($object[$arrayItem])) + ) { + if ($isDefinedTest) { + return true; + } + + return $object[$arrayItem]; + } + + if (/* Template::ARRAY_CALL */ 'array' === $type || !\is_object($object)) { + if ($isDefinedTest) { + return false; + } + + if ($ignoreStrictCheck || !$env->isStrictVariables()) { + return; + } + + if ($object instanceof ArrayAccess) { + $message = sprintf('Key "%s" in object with ArrayAccess of class "%s" does not exist.', $arrayItem, \get_class($object)); + } elseif (\is_object($object)) { + $message = sprintf('Impossible to access a key "%s" on an object of class "%s" that does not implement ArrayAccess interface.', $item, \get_class($object)); + } elseif (\is_array($object)) { + if (empty($object)) { + $message = sprintf('Key "%s" does not exist as the array is empty.', $arrayItem); + } else { + $message = sprintf('Key "%s" for array with keys "%s" does not exist.', $arrayItem, implode(', ', array_keys($object))); + } + } elseif (/* Template::ARRAY_CALL */ 'array' === $type) { + if (null === $object) { + $message = sprintf('Impossible to access a key ("%s") on a null variable.', $item); + } else { + $message = sprintf('Impossible to access a key ("%s") on a %s variable ("%s").', $item, \gettype($object), $object); + } + } elseif (null === $object) { + $message = sprintf('Impossible to access an attribute ("%s") on a null variable.', $item); + } else { + $message = sprintf('Impossible to access an attribute ("%s") on a %s variable ("%s").', $item, \gettype($object), $object); + } + + throw new RuntimeError($message, $lineno, $source); + } + } + + if (!\is_object($object)) { + if ($isDefinedTest) { + return false; + } + + if ($ignoreStrictCheck || !$env->isStrictVariables()) { + return; + } + + if (null === $object) { + $message = sprintf('Impossible to invoke a method ("%s") on a null variable.', $item); + } elseif (\is_array($object)) { + $message = sprintf('Impossible to invoke a method ("%s") on an array.', $item); + } else { + $message = sprintf('Impossible to invoke a method ("%s") on a %s variable ("%s").', $item, \gettype($object), $object); + } + + throw new RuntimeError($message, $lineno, $source); + } + + if ($object instanceof Template) { + throw new RuntimeError('Accessing \Twig\Template attributes is forbidden.', $lineno, $source); + } + + // object property + if (/* Template::METHOD_CALL */ 'method' !== $type) { + if (isset($object->$item) || \array_key_exists((string) $item, (array) $object)) { + if ($isDefinedTest) { + return true; + } + + if ($sandboxed) { + $env->getExtension(SandboxExtension::class)->checkPropertyAllowed($object, $item, $lineno, $source); + } + + return $object->$item; + } + } + + static $cache = []; + + $class = \get_class($object); + + // object method + // precedence: getXxx() > isXxx() > hasXxx() + if (!isset($cache[$class])) { + $methods = get_class_methods($object); + sort($methods); + $lcMethods = array_map(function ($value) { return strtr($value, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'); }, $methods); + $classCache = []; + foreach ($methods as $i => $method) { + $classCache[$method] = $method; + $classCache[$lcName = $lcMethods[$i]] = $method; + + if ('g' === $lcName[0] && str_starts_with($lcName, 'get')) { + $name = substr($method, 3); + $lcName = substr($lcName, 3); + } elseif ('i' === $lcName[0] && str_starts_with($lcName, 'is')) { + $name = substr($method, 2); + $lcName = substr($lcName, 2); + } elseif ('h' === $lcName[0] && str_starts_with($lcName, 'has')) { + $name = substr($method, 3); + $lcName = substr($lcName, 3); + if (\in_array('is'.$lcName, $lcMethods)) { + continue; + } + } else { + continue; + } + + // skip get() and is() methods (in which case, $name is empty) + if ($name) { + if (!isset($classCache[$name])) { + $classCache[$name] = $method; + } + + if (!isset($classCache[$lcName])) { + $classCache[$lcName] = $method; + } + } + } + $cache[$class] = $classCache; + } + + $call = false; + if (isset($cache[$class][$item])) { + $method = $cache[$class][$item]; + } elseif (isset($cache[$class][$lcItem = strtr($item, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz')])) { + $method = $cache[$class][$lcItem]; + } elseif (isset($cache[$class]['__call'])) { + $method = $item; + $call = true; + } else { + if ($isDefinedTest) { + return false; + } + + if ($ignoreStrictCheck || !$env->isStrictVariables()) { + return; + } + + throw new RuntimeError(sprintf('Neither the property "%1$s" nor one of the methods "%1$s()", "get%1$s()"/"is%1$s()"/"has%1$s()" or "__call()" exist and have public access in class "%2$s".', $item, $class), $lineno, $source); + } + + if ($isDefinedTest) { + return true; + } + + if ($sandboxed) { + $env->getExtension(SandboxExtension::class)->checkMethodAllowed($object, $method, $lineno, $source); + } + + // Some objects throw exceptions when they have __call, and the method we try + // to call is not supported. If ignoreStrictCheck is true, we should return null. + try { + $ret = $object->$method(...$arguments); + } catch (\BadMethodCallException $e) { + if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) { + return; + } + throw $e; + } + + return $ret; +} + +/** + * Returns the values from a single column in the input array. + * + *

+ *  {% set items = [{ 'fruit' : 'apple'}, {'fruit' : 'orange' }] %}
+ *
+ *  {% set fruits = items|column('fruit') %}
+ *
+ *  {# fruits now contains ['apple', 'orange'] #}
+ * 
+ * + * @param array|Traversable $array An array + * @param mixed $name The column name + * @param mixed $index The column to use as the index/keys for the returned array + * + * @return array The array of values + */ +function twig_array_column($array, $name, $index = null): array +{ + if ($array instanceof Traversable) { + $array = iterator_to_array($array); + } elseif (!\is_array($array)) { + throw new RuntimeError(sprintf('The column filter only works with arrays or "Traversable", got "%s" as first argument.', \gettype($array))); + } + + return array_column($array, $name, $index); +} + +function twig_array_filter(Environment $env, $array, $arrow) +{ + if (!is_iterable($array)) { + throw new RuntimeError(sprintf('The "filter" filter expects an array or "Traversable", got "%s".', \is_object($array) ? \get_class($array) : \gettype($array))); + } + + twig_check_arrow_in_sandbox($env, $arrow, 'filter', 'filter'); + + if (\is_array($array)) { + return array_filter($array, $arrow, \ARRAY_FILTER_USE_BOTH); + } + + // the IteratorIterator wrapping is needed as some internal PHP classes are \Traversable but do not implement \Iterator + return new \CallbackFilterIterator(new \IteratorIterator($array), $arrow); +} + +function twig_array_map(Environment $env, $array, $arrow) +{ + twig_check_arrow_in_sandbox($env, $arrow, 'map', 'filter'); + + $r = []; + foreach ($array as $k => $v) { + $r[$k] = $arrow($v, $k); + } + + return $r; +} + +function twig_array_reduce(Environment $env, $array, $arrow, $initial = null) +{ + twig_check_arrow_in_sandbox($env, $arrow, 'reduce', 'filter'); + + if (!\is_array($array) && !$array instanceof \Traversable) { + throw new RuntimeError(sprintf('The "reduce" filter only works with arrays or "Traversable", got "%s" as first argument.', \gettype($array))); + } + + $accumulator = $initial; + foreach ($array as $key => $value) { + $accumulator = $arrow($accumulator, $value, $key); + } + + return $accumulator; +} + +function twig_array_some(Environment $env, $array, $arrow) +{ + twig_check_arrow_in_sandbox($env, $arrow, 'has some', 'operator'); + + foreach ($array as $k => $v) { + if ($arrow($v, $k)) { + return true; + } + } + + return false; +} + +function twig_array_every(Environment $env, $array, $arrow) +{ + twig_check_arrow_in_sandbox($env, $arrow, 'has every', 'operator'); + + foreach ($array as $k => $v) { + if (!$arrow($v, $k)) { + return false; + } + } + + return true; +} + +function twig_check_arrow_in_sandbox(Environment $env, $arrow, $thing, $type) +{ + if (!$arrow instanceof Closure && $env->hasExtension('\Twig\Extension\SandboxExtension') && $env->getExtension('\Twig\Extension\SandboxExtension')->isSandboxed()) { + throw new RuntimeError(sprintf('The callable passed to the "%s" %s must be a Closure in sandbox mode.', $thing, $type)); + } +} +} diff --git a/Sources/vendor/twig/twig/src/Extension/DebugExtension.php b/Sources/vendor/twig/twig/src/Extension/DebugExtension.php new file mode 100644 index 00000000..c0f10d5a --- /dev/null +++ b/Sources/vendor/twig/twig/src/Extension/DebugExtension.php @@ -0,0 +1,64 @@ + $isDumpOutputHtmlSafe ? ['html'] : [], 'needs_context' => true, 'needs_environment' => true, 'is_variadic' => true]), + ]; + } +} +} + +namespace { +use Twig\Environment; +use Twig\Template; +use Twig\TemplateWrapper; + +function twig_var_dump(Environment $env, $context, ...$vars) +{ + if (!$env->isDebug()) { + return; + } + + ob_start(); + + if (!$vars) { + $vars = []; + foreach ($context as $key => $value) { + if (!$value instanceof Template && !$value instanceof TemplateWrapper) { + $vars[$key] = $value; + } + } + + var_dump($vars); + } else { + var_dump(...$vars); + } + + return ob_get_clean(); +} +} diff --git a/Sources/vendor/twig/twig/src/Extension/EscaperExtension.php b/Sources/vendor/twig/twig/src/Extension/EscaperExtension.php new file mode 100644 index 00000000..ef8879db --- /dev/null +++ b/Sources/vendor/twig/twig/src/Extension/EscaperExtension.php @@ -0,0 +1,416 @@ +setDefaultStrategy($defaultStrategy); + } + + public function getTokenParsers(): array + { + return [new AutoEscapeTokenParser()]; + } + + public function getNodeVisitors(): array + { + return [new EscaperNodeVisitor()]; + } + + public function getFilters(): array + { + return [ + new TwigFilter('escape', 'twig_escape_filter', ['needs_environment' => true, 'is_safe_callback' => 'twig_escape_filter_is_safe']), + new TwigFilter('e', 'twig_escape_filter', ['needs_environment' => true, 'is_safe_callback' => 'twig_escape_filter_is_safe']), + new TwigFilter('raw', 'twig_raw_filter', ['is_safe' => ['all']]), + ]; + } + + /** + * Sets the default strategy to use when not defined by the user. + * + * The strategy can be a valid PHP callback that takes the template + * name as an argument and returns the strategy to use. + * + * @param string|false|callable $defaultStrategy An escaping strategy + */ + public function setDefaultStrategy($defaultStrategy): void + { + if ('name' === $defaultStrategy) { + $defaultStrategy = [FileExtensionEscapingStrategy::class, 'guess']; + } + + $this->defaultStrategy = $defaultStrategy; + } + + /** + * Gets the default strategy to use when not defined by the user. + * + * @param string $name The template name + * + * @return string|false The default strategy to use for the template + */ + public function getDefaultStrategy(string $name) + { + // disable string callables to avoid calling a function named html or js, + // or any other upcoming escaping strategy + if (!\is_string($this->defaultStrategy) && false !== $this->defaultStrategy) { + return \call_user_func($this->defaultStrategy, $name); + } + + return $this->defaultStrategy; + } + + /** + * Defines a new escaper to be used via the escape filter. + * + * @param string $strategy The strategy name that should be used as a strategy in the escape call + * @param callable $callable A valid PHP callable + */ + public function setEscaper($strategy, callable $callable) + { + $this->escapers[$strategy] = $callable; + } + + /** + * Gets all defined escapers. + * + * @return callable[] An array of escapers + */ + public function getEscapers() + { + return $this->escapers; + } + + public function setSafeClasses(array $safeClasses = []) + { + $this->safeClasses = []; + $this->safeLookup = []; + foreach ($safeClasses as $class => $strategies) { + $this->addSafeClass($class, $strategies); + } + } + + public function addSafeClass(string $class, array $strategies) + { + $class = ltrim($class, '\\'); + if (!isset($this->safeClasses[$class])) { + $this->safeClasses[$class] = []; + } + $this->safeClasses[$class] = array_merge($this->safeClasses[$class], $strategies); + + foreach ($strategies as $strategy) { + $this->safeLookup[$strategy][$class] = true; + } + } +} +} + +namespace { +use Twig\Environment; +use Twig\Error\RuntimeError; +use Twig\Extension\EscaperExtension; +use Twig\Markup; +use Twig\Node\Expression\ConstantExpression; +use Twig\Node\Node; + +/** + * Marks a variable as being safe. + * + * @param string $string A PHP variable + */ +function twig_raw_filter($string) +{ + return $string; +} + +/** + * Escapes a string. + * + * @param mixed $string The value to be escaped + * @param string $strategy The escaping strategy + * @param string $charset The charset + * @param bool $autoescape Whether the function is called by the auto-escaping feature (true) or by the developer (false) + * + * @return string + */ +function twig_escape_filter(Environment $env, $string, $strategy = 'html', $charset = null, $autoescape = false) +{ + if ($autoescape && $string instanceof Markup) { + return $string; + } + + if (!\is_string($string)) { + if (\is_object($string) && method_exists($string, '__toString')) { + if ($autoescape) { + $c = \get_class($string); + $ext = $env->getExtension(EscaperExtension::class); + if (!isset($ext->safeClasses[$c])) { + $ext->safeClasses[$c] = []; + foreach (class_parents($string) + class_implements($string) as $class) { + if (isset($ext->safeClasses[$class])) { + $ext->safeClasses[$c] = array_unique(array_merge($ext->safeClasses[$c], $ext->safeClasses[$class])); + foreach ($ext->safeClasses[$class] as $s) { + $ext->safeLookup[$s][$c] = true; + } + } + } + } + if (isset($ext->safeLookup[$strategy][$c]) || isset($ext->safeLookup['all'][$c])) { + return (string) $string; + } + } + + $string = (string) $string; + } elseif (\in_array($strategy, ['html', 'js', 'css', 'html_attr', 'url'])) { + return $string; + } + } + + if ('' === $string) { + return ''; + } + + if (null === $charset) { + $charset = $env->getCharset(); + } + + switch ($strategy) { + case 'html': + // see https://www.php.net/htmlspecialchars + + // Using a static variable to avoid initializing the array + // each time the function is called. Moving the declaration on the + // top of the function slow downs other escaping strategies. + static $htmlspecialcharsCharsets = [ + 'ISO-8859-1' => true, 'ISO8859-1' => true, + 'ISO-8859-15' => true, 'ISO8859-15' => true, + 'utf-8' => true, 'UTF-8' => true, + 'CP866' => true, 'IBM866' => true, '866' => true, + 'CP1251' => true, 'WINDOWS-1251' => true, 'WIN-1251' => true, + '1251' => true, + 'CP1252' => true, 'WINDOWS-1252' => true, '1252' => true, + 'KOI8-R' => true, 'KOI8-RU' => true, 'KOI8R' => true, + 'BIG5' => true, '950' => true, + 'GB2312' => true, '936' => true, + 'BIG5-HKSCS' => true, + 'SHIFT_JIS' => true, 'SJIS' => true, '932' => true, + 'EUC-JP' => true, 'EUCJP' => true, + 'ISO8859-5' => true, 'ISO-8859-5' => true, 'MACROMAN' => true, + ]; + + if (isset($htmlspecialcharsCharsets[$charset])) { + return htmlspecialchars($string, \ENT_QUOTES | \ENT_SUBSTITUTE, $charset); + } + + if (isset($htmlspecialcharsCharsets[strtoupper($charset)])) { + // cache the lowercase variant for future iterations + $htmlspecialcharsCharsets[$charset] = true; + + return htmlspecialchars($string, \ENT_QUOTES | \ENT_SUBSTITUTE, $charset); + } + + $string = twig_convert_encoding($string, 'UTF-8', $charset); + $string = htmlspecialchars($string, \ENT_QUOTES | \ENT_SUBSTITUTE, 'UTF-8'); + + return iconv('UTF-8', $charset, $string); + + case 'js': + // escape all non-alphanumeric characters + // into their \x or \uHHHH representations + if ('UTF-8' !== $charset) { + $string = twig_convert_encoding($string, 'UTF-8', $charset); + } + + if (!preg_match('//u', $string)) { + throw new RuntimeError('The string to escape is not a valid UTF-8 string.'); + } + + $string = preg_replace_callback('#[^a-zA-Z0-9,\._]#Su', function ($matches) { + $char = $matches[0]; + + /* + * A few characters have short escape sequences in JSON and JavaScript. + * Escape sequences supported only by JavaScript, not JSON, are omitted. + * \" is also supported but omitted, because the resulting string is not HTML safe. + */ + static $shortMap = [ + '\\' => '\\\\', + '/' => '\\/', + "\x08" => '\b', + "\x0C" => '\f', + "\x0A" => '\n', + "\x0D" => '\r', + "\x09" => '\t', + ]; + + if (isset($shortMap[$char])) { + return $shortMap[$char]; + } + + $codepoint = mb_ord($char, 'UTF-8'); + if (0x10000 > $codepoint) { + return sprintf('\u%04X', $codepoint); + } + + // Split characters outside the BMP into surrogate pairs + // https://tools.ietf.org/html/rfc2781.html#section-2.1 + $u = $codepoint - 0x10000; + $high = 0xD800 | ($u >> 10); + $low = 0xDC00 | ($u & 0x3FF); + + return sprintf('\u%04X\u%04X', $high, $low); + }, $string); + + if ('UTF-8' !== $charset) { + $string = iconv('UTF-8', $charset, $string); + } + + return $string; + + case 'css': + if ('UTF-8' !== $charset) { + $string = twig_convert_encoding($string, 'UTF-8', $charset); + } + + if (!preg_match('//u', $string)) { + throw new RuntimeError('The string to escape is not a valid UTF-8 string.'); + } + + $string = preg_replace_callback('#[^a-zA-Z0-9]#Su', function ($matches) { + $char = $matches[0]; + + return sprintf('\\%X ', 1 === \strlen($char) ? \ord($char) : mb_ord($char, 'UTF-8')); + }, $string); + + if ('UTF-8' !== $charset) { + $string = iconv('UTF-8', $charset, $string); + } + + return $string; + + case 'html_attr': + if ('UTF-8' !== $charset) { + $string = twig_convert_encoding($string, 'UTF-8', $charset); + } + + if (!preg_match('//u', $string)) { + throw new RuntimeError('The string to escape is not a valid UTF-8 string.'); + } + + $string = preg_replace_callback('#[^a-zA-Z0-9,\.\-_]#Su', function ($matches) { + /** + * This function is adapted from code coming from Zend Framework. + * + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (https://www.zend.com) + * @license https://framework.zend.com/license/new-bsd New BSD License + */ + $chr = $matches[0]; + $ord = \ord($chr); + + /* + * The following replaces characters undefined in HTML with the + * hex entity for the Unicode replacement character. + */ + if (($ord <= 0x1F && "\t" != $chr && "\n" != $chr && "\r" != $chr) || ($ord >= 0x7F && $ord <= 0x9F)) { + return '�'; + } + + /* + * Check if the current character to escape has a name entity we should + * replace it with while grabbing the hex value of the character. + */ + if (1 === \strlen($chr)) { + /* + * While HTML supports far more named entities, the lowest common denominator + * has become HTML5's XML Serialisation which is restricted to the those named + * entities that XML supports. Using HTML entities would result in this error: + * XML Parsing Error: undefined entity + */ + static $entityMap = [ + 34 => '"', /* quotation mark */ + 38 => '&', /* ampersand */ + 60 => '<', /* less-than sign */ + 62 => '>', /* greater-than sign */ + ]; + + if (isset($entityMap[$ord])) { + return $entityMap[$ord]; + } + + return sprintf('&#x%02X;', $ord); + } + + /* + * Per OWASP recommendations, we'll use hex entities for any other + * characters where a named entity does not exist. + */ + return sprintf('&#x%04X;', mb_ord($chr, 'UTF-8')); + }, $string); + + if ('UTF-8' !== $charset) { + $string = iconv('UTF-8', $charset, $string); + } + + return $string; + + case 'url': + return rawurlencode($string); + + default: + $escapers = $env->getExtension(EscaperExtension::class)->getEscapers(); + if (\array_key_exists($strategy, $escapers)) { + return $escapers[$strategy]($env, $string, $charset); + } + + $validStrategies = implode(', ', array_merge(['html', 'js', 'url', 'css', 'html_attr'], array_keys($escapers))); + + throw new RuntimeError(sprintf('Invalid escaping strategy "%s" (valid ones: %s).', $strategy, $validStrategies)); + } +} + +/** + * @internal + */ +function twig_escape_filter_is_safe(Node $filterArgs) +{ + foreach ($filterArgs as $arg) { + if ($arg instanceof ConstantExpression) { + return [$arg->getAttribute('value')]; + } + + return []; + } + + return ['html']; +} +} diff --git a/Sources/vendor/twig/twig/src/Extension/ExtensionInterface.php b/Sources/vendor/twig/twig/src/Extension/ExtensionInterface.php new file mode 100644 index 00000000..ab9c2c37 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Extension/ExtensionInterface.php @@ -0,0 +1,76 @@ + + */ +interface ExtensionInterface +{ + /** + * Returns the token parser instances to add to the existing list. + * + * @return TokenParserInterface[] + */ + public function getTokenParsers(); + + /** + * Returns the node visitor instances to add to the existing list. + * + * @return NodeVisitorInterface[] + */ + public function getNodeVisitors(); + + /** + * Returns a list of filters to add to the existing list. + * + * @return TwigFilter[] + */ + public function getFilters(); + + /** + * Returns a list of tests to add to the existing list. + * + * @return TwigTest[] + */ + public function getTests(); + + /** + * Returns a list of functions to add to the existing list. + * + * @return TwigFunction[] + */ + public function getFunctions(); + + /** + * Returns a list of operators to add to the existing list. + * + * @return array First array of unary operators, second array of binary operators + * + * @psalm-return array{ + * array}>, + * array, associativity: ExpressionParser::OPERATOR_*}> + * } + */ + public function getOperators(); +} diff --git a/Sources/vendor/twig/twig/src/Extension/GlobalsInterface.php b/Sources/vendor/twig/twig/src/Extension/GlobalsInterface.php new file mode 100644 index 00000000..6f1dfe8a --- /dev/null +++ b/Sources/vendor/twig/twig/src/Extension/GlobalsInterface.php @@ -0,0 +1,28 @@ + + */ +interface GlobalsInterface +{ + /** + * @return array + */ + public function getGlobals(): array; +} diff --git a/Sources/vendor/twig/twig/src/Extension/OptimizerExtension.php b/Sources/vendor/twig/twig/src/Extension/OptimizerExtension.php new file mode 100644 index 00000000..965bfdb0 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Extension/OptimizerExtension.php @@ -0,0 +1,29 @@ +optimizers = $optimizers; + } + + public function getNodeVisitors(): array + { + return [new OptimizerNodeVisitor($this->optimizers)]; + } +} diff --git a/Sources/vendor/twig/twig/src/Extension/ProfilerExtension.php b/Sources/vendor/twig/twig/src/Extension/ProfilerExtension.php new file mode 100644 index 00000000..43e4a449 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Extension/ProfilerExtension.php @@ -0,0 +1,52 @@ +actives[] = $profile; + } + + /** + * @return void + */ + public function enter(Profile $profile) + { + $this->actives[0]->addProfile($profile); + array_unshift($this->actives, $profile); + } + + /** + * @return void + */ + public function leave(Profile $profile) + { + $profile->leave(); + array_shift($this->actives); + + if (1 === \count($this->actives)) { + $this->actives[0]->leave(); + } + } + + public function getNodeVisitors(): array + { + return [new ProfilerNodeVisitor(static::class)]; + } +} diff --git a/Sources/vendor/twig/twig/src/Extension/RuntimeExtensionInterface.php b/Sources/vendor/twig/twig/src/Extension/RuntimeExtensionInterface.php new file mode 100644 index 00000000..63bc3b1a --- /dev/null +++ b/Sources/vendor/twig/twig/src/Extension/RuntimeExtensionInterface.php @@ -0,0 +1,19 @@ + + */ +interface RuntimeExtensionInterface +{ +} diff --git a/Sources/vendor/twig/twig/src/Extension/SandboxExtension.php b/Sources/vendor/twig/twig/src/Extension/SandboxExtension.php new file mode 100644 index 00000000..c861159b --- /dev/null +++ b/Sources/vendor/twig/twig/src/Extension/SandboxExtension.php @@ -0,0 +1,123 @@ +policy = $policy; + $this->sandboxedGlobally = $sandboxed; + } + + public function getTokenParsers(): array + { + return [new SandboxTokenParser()]; + } + + public function getNodeVisitors(): array + { + return [new SandboxNodeVisitor()]; + } + + public function enableSandbox(): void + { + $this->sandboxed = true; + } + + public function disableSandbox(): void + { + $this->sandboxed = false; + } + + public function isSandboxed(): bool + { + return $this->sandboxedGlobally || $this->sandboxed; + } + + public function isSandboxedGlobally(): bool + { + return $this->sandboxedGlobally; + } + + public function setSecurityPolicy(SecurityPolicyInterface $policy) + { + $this->policy = $policy; + } + + public function getSecurityPolicy(): SecurityPolicyInterface + { + return $this->policy; + } + + public function checkSecurity($tags, $filters, $functions): void + { + if ($this->isSandboxed()) { + $this->policy->checkSecurity($tags, $filters, $functions); + } + } + + public function checkMethodAllowed($obj, $method, int $lineno = -1, Source $source = null): void + { + if ($this->isSandboxed()) { + try { + $this->policy->checkMethodAllowed($obj, $method); + } catch (SecurityNotAllowedMethodError $e) { + $e->setSourceContext($source); + $e->setTemplateLine($lineno); + + throw $e; + } + } + } + + public function checkPropertyAllowed($obj, $property, int $lineno = -1, Source $source = null): void + { + if ($this->isSandboxed()) { + try { + $this->policy->checkPropertyAllowed($obj, $property); + } catch (SecurityNotAllowedPropertyError $e) { + $e->setSourceContext($source); + $e->setTemplateLine($lineno); + + throw $e; + } + } + } + + public function ensureToStringAllowed($obj, int $lineno = -1, Source $source = null) + { + if ($this->isSandboxed() && \is_object($obj) && method_exists($obj, '__toString')) { + try { + $this->policy->checkMethodAllowed($obj, '__toString'); + } catch (SecurityNotAllowedMethodError $e) { + $e->setSourceContext($source); + $e->setTemplateLine($lineno); + + throw $e; + } + } + + return $obj; + } +} diff --git a/Sources/vendor/twig/twig/src/Extension/StagingExtension.php b/Sources/vendor/twig/twig/src/Extension/StagingExtension.php new file mode 100644 index 00000000..0ea47f90 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Extension/StagingExtension.php @@ -0,0 +1,100 @@ + + * + * @internal + */ +final class StagingExtension extends AbstractExtension +{ + private $functions = []; + private $filters = []; + private $visitors = []; + private $tokenParsers = []; + private $tests = []; + + public function addFunction(TwigFunction $function): void + { + if (isset($this->functions[$function->getName()])) { + throw new \LogicException(sprintf('Function "%s" is already registered.', $function->getName())); + } + + $this->functions[$function->getName()] = $function; + } + + public function getFunctions(): array + { + return $this->functions; + } + + public function addFilter(TwigFilter $filter): void + { + if (isset($this->filters[$filter->getName()])) { + throw new \LogicException(sprintf('Filter "%s" is already registered.', $filter->getName())); + } + + $this->filters[$filter->getName()] = $filter; + } + + public function getFilters(): array + { + return $this->filters; + } + + public function addNodeVisitor(NodeVisitorInterface $visitor): void + { + $this->visitors[] = $visitor; + } + + public function getNodeVisitors(): array + { + return $this->visitors; + } + + public function addTokenParser(TokenParserInterface $parser): void + { + if (isset($this->tokenParsers[$parser->getTag()])) { + throw new \LogicException(sprintf('Tag "%s" is already registered.', $parser->getTag())); + } + + $this->tokenParsers[$parser->getTag()] = $parser; + } + + public function getTokenParsers(): array + { + return $this->tokenParsers; + } + + public function addTest(TwigTest $test): void + { + if (isset($this->tests[$test->getName()])) { + throw new \LogicException(sprintf('Test "%s" is already registered.', $test->getName())); + } + + $this->tests[$test->getName()] = $test; + } + + public function getTests(): array + { + return $this->tests; + } +} diff --git a/Sources/vendor/twig/twig/src/Extension/StringLoaderExtension.php b/Sources/vendor/twig/twig/src/Extension/StringLoaderExtension.php new file mode 100644 index 00000000..7b451471 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Extension/StringLoaderExtension.php @@ -0,0 +1,42 @@ + true]), + ]; + } +} +} + +namespace { +use Twig\Environment; +use Twig\TemplateWrapper; + +/** + * Loads a template from a string. + * + * {{ include(template_from_string("Hello {{ name }}")) }} + * + * @param string $template A template as a string or object implementing __toString() + * @param string $name An optional name of the template to be used in error messages + */ +function twig_template_from_string(Environment $env, $template, string $name = null): TemplateWrapper +{ + return $env->createTemplate((string) $template, $name); +} +} diff --git a/Sources/vendor/twig/twig/src/ExtensionSet.php b/Sources/vendor/twig/twig/src/ExtensionSet.php new file mode 100644 index 00000000..d32200ce --- /dev/null +++ b/Sources/vendor/twig/twig/src/ExtensionSet.php @@ -0,0 +1,480 @@ + + * + * @internal + */ +final class ExtensionSet +{ + private $extensions; + private $initialized = false; + private $runtimeInitialized = false; + private $staging; + private $parsers; + private $visitors; + /** @var array */ + private $filters; + /** @var array */ + private $tests; + /** @var array */ + private $functions; + /** @var array}> */ + private $unaryOperators; + /** @var array, associativity: ExpressionParser::OPERATOR_*}> */ + private $binaryOperators; + /** @var array */ + private $globals; + private $functionCallbacks = []; + private $filterCallbacks = []; + private $parserCallbacks = []; + private $lastModified = 0; + + public function __construct() + { + $this->staging = new StagingExtension(); + } + + public function initRuntime() + { + $this->runtimeInitialized = true; + } + + public function hasExtension(string $class): bool + { + return isset($this->extensions[ltrim($class, '\\')]); + } + + public function getExtension(string $class): ExtensionInterface + { + $class = ltrim($class, '\\'); + + if (!isset($this->extensions[$class])) { + throw new RuntimeError(sprintf('The "%s" extension is not enabled.', $class)); + } + + return $this->extensions[$class]; + } + + /** + * @param ExtensionInterface[] $extensions + */ + public function setExtensions(array $extensions): void + { + foreach ($extensions as $extension) { + $this->addExtension($extension); + } + } + + /** + * @return ExtensionInterface[] + */ + public function getExtensions(): array + { + return $this->extensions; + } + + public function getSignature(): string + { + return json_encode(array_keys($this->extensions)); + } + + public function isInitialized(): bool + { + return $this->initialized || $this->runtimeInitialized; + } + + public function getLastModified(): int + { + if (0 !== $this->lastModified) { + return $this->lastModified; + } + + foreach ($this->extensions as $extension) { + $r = new \ReflectionObject($extension); + if (is_file($r->getFileName()) && ($extensionTime = filemtime($r->getFileName())) > $this->lastModified) { + $this->lastModified = $extensionTime; + } + } + + return $this->lastModified; + } + + public function addExtension(ExtensionInterface $extension): void + { + $class = \get_class($extension); + + if ($this->initialized) { + throw new \LogicException(sprintf('Unable to register extension "%s" as extensions have already been initialized.', $class)); + } + + if (isset($this->extensions[$class])) { + throw new \LogicException(sprintf('Unable to register extension "%s" as it is already registered.', $class)); + } + + $this->extensions[$class] = $extension; + } + + public function addFunction(TwigFunction $function): void + { + if ($this->initialized) { + throw new \LogicException(sprintf('Unable to add function "%s" as extensions have already been initialized.', $function->getName())); + } + + $this->staging->addFunction($function); + } + + /** + * @return TwigFunction[] + */ + public function getFunctions(): array + { + if (!$this->initialized) { + $this->initExtensions(); + } + + return $this->functions; + } + + public function getFunction(string $name): ?TwigFunction + { + if (!$this->initialized) { + $this->initExtensions(); + } + + if (isset($this->functions[$name])) { + return $this->functions[$name]; + } + + foreach ($this->functions as $pattern => $function) { + $pattern = str_replace('\\*', '(.*?)', preg_quote($pattern, '#'), $count); + + if ($count && preg_match('#^'.$pattern.'$#', $name, $matches)) { + array_shift($matches); + $function->setArguments($matches); + + return $function; + } + } + + foreach ($this->functionCallbacks as $callback) { + if (false !== $function = $callback($name)) { + return $function; + } + } + + return null; + } + + public function registerUndefinedFunctionCallback(callable $callable): void + { + $this->functionCallbacks[] = $callable; + } + + public function addFilter(TwigFilter $filter): void + { + if ($this->initialized) { + throw new \LogicException(sprintf('Unable to add filter "%s" as extensions have already been initialized.', $filter->getName())); + } + + $this->staging->addFilter($filter); + } + + /** + * @return TwigFilter[] + */ + public function getFilters(): array + { + if (!$this->initialized) { + $this->initExtensions(); + } + + return $this->filters; + } + + public function getFilter(string $name): ?TwigFilter + { + if (!$this->initialized) { + $this->initExtensions(); + } + + if (isset($this->filters[$name])) { + return $this->filters[$name]; + } + + foreach ($this->filters as $pattern => $filter) { + $pattern = str_replace('\\*', '(.*?)', preg_quote($pattern, '#'), $count); + + if ($count && preg_match('#^'.$pattern.'$#', $name, $matches)) { + array_shift($matches); + $filter->setArguments($matches); + + return $filter; + } + } + + foreach ($this->filterCallbacks as $callback) { + if (false !== $filter = $callback($name)) { + return $filter; + } + } + + return null; + } + + public function registerUndefinedFilterCallback(callable $callable): void + { + $this->filterCallbacks[] = $callable; + } + + public function addNodeVisitor(NodeVisitorInterface $visitor): void + { + if ($this->initialized) { + throw new \LogicException('Unable to add a node visitor as extensions have already been initialized.'); + } + + $this->staging->addNodeVisitor($visitor); + } + + /** + * @return NodeVisitorInterface[] + */ + public function getNodeVisitors(): array + { + if (!$this->initialized) { + $this->initExtensions(); + } + + return $this->visitors; + } + + public function addTokenParser(TokenParserInterface $parser): void + { + if ($this->initialized) { + throw new \LogicException('Unable to add a token parser as extensions have already been initialized.'); + } + + $this->staging->addTokenParser($parser); + } + + /** + * @return TokenParserInterface[] + */ + public function getTokenParsers(): array + { + if (!$this->initialized) { + $this->initExtensions(); + } + + return $this->parsers; + } + + public function getTokenParser(string $name): ?TokenParserInterface + { + if (!$this->initialized) { + $this->initExtensions(); + } + + if (isset($this->parsers[$name])) { + return $this->parsers[$name]; + } + + foreach ($this->parserCallbacks as $callback) { + if (false !== $parser = $callback($name)) { + return $parser; + } + } + + return null; + } + + public function registerUndefinedTokenParserCallback(callable $callable): void + { + $this->parserCallbacks[] = $callable; + } + + /** + * @return array + */ + public function getGlobals(): array + { + if (null !== $this->globals) { + return $this->globals; + } + + $globals = []; + foreach ($this->extensions as $extension) { + if (!$extension instanceof GlobalsInterface) { + continue; + } + + $extGlobals = $extension->getGlobals(); + if (!\is_array($extGlobals)) { + throw new \UnexpectedValueException(sprintf('"%s::getGlobals()" must return an array of globals.', \get_class($extension))); + } + + $globals = array_merge($globals, $extGlobals); + } + + if ($this->initialized) { + $this->globals = $globals; + } + + return $globals; + } + + public function addTest(TwigTest $test): void + { + if ($this->initialized) { + throw new \LogicException(sprintf('Unable to add test "%s" as extensions have already been initialized.', $test->getName())); + } + + $this->staging->addTest($test); + } + + /** + * @return TwigTest[] + */ + public function getTests(): array + { + if (!$this->initialized) { + $this->initExtensions(); + } + + return $this->tests; + } + + public function getTest(string $name): ?TwigTest + { + if (!$this->initialized) { + $this->initExtensions(); + } + + if (isset($this->tests[$name])) { + return $this->tests[$name]; + } + + foreach ($this->tests as $pattern => $test) { + $pattern = str_replace('\\*', '(.*?)', preg_quote($pattern, '#'), $count); + + if ($count) { + if (preg_match('#^'.$pattern.'$#', $name, $matches)) { + array_shift($matches); + $test->setArguments($matches); + + return $test; + } + } + } + + return null; + } + + /** + * @return array}> + */ + public function getUnaryOperators(): array + { + if (!$this->initialized) { + $this->initExtensions(); + } + + return $this->unaryOperators; + } + + /** + * @return array, associativity: ExpressionParser::OPERATOR_*}> + */ + public function getBinaryOperators(): array + { + if (!$this->initialized) { + $this->initExtensions(); + } + + return $this->binaryOperators; + } + + private function initExtensions(): void + { + $this->parsers = []; + $this->filters = []; + $this->functions = []; + $this->tests = []; + $this->visitors = []; + $this->unaryOperators = []; + $this->binaryOperators = []; + + foreach ($this->extensions as $extension) { + $this->initExtension($extension); + } + $this->initExtension($this->staging); + // Done at the end only, so that an exception during initialization does not mark the environment as initialized when catching the exception + $this->initialized = true; + } + + private function initExtension(ExtensionInterface $extension): void + { + // filters + foreach ($extension->getFilters() as $filter) { + $this->filters[$filter->getName()] = $filter; + } + + // functions + foreach ($extension->getFunctions() as $function) { + $this->functions[$function->getName()] = $function; + } + + // tests + foreach ($extension->getTests() as $test) { + $this->tests[$test->getName()] = $test; + } + + // token parsers + foreach ($extension->getTokenParsers() as $parser) { + if (!$parser instanceof TokenParserInterface) { + throw new \LogicException('getTokenParsers() must return an array of \Twig\TokenParser\TokenParserInterface.'); + } + + $this->parsers[$parser->getTag()] = $parser; + } + + // node visitors + foreach ($extension->getNodeVisitors() as $visitor) { + $this->visitors[] = $visitor; + } + + // operators + if ($operators = $extension->getOperators()) { + if (!\is_array($operators)) { + throw new \InvalidArgumentException(sprintf('"%s::getOperators()" must return an array with operators, got "%s".', \get_class($extension), \is_object($operators) ? \get_class($operators) : \gettype($operators).(\is_resource($operators) ? '' : '#'.$operators))); + } + + if (2 !== \count($operators)) { + throw new \InvalidArgumentException(sprintf('"%s::getOperators()" must return an array of 2 elements, got %d.', \get_class($extension), \count($operators))); + } + + $this->unaryOperators = array_merge($this->unaryOperators, $operators[0]); + $this->binaryOperators = array_merge($this->binaryOperators, $operators[1]); + } + } +} diff --git a/Sources/vendor/twig/twig/src/FileExtensionEscapingStrategy.php b/Sources/vendor/twig/twig/src/FileExtensionEscapingStrategy.php new file mode 100644 index 00000000..812071bf --- /dev/null +++ b/Sources/vendor/twig/twig/src/FileExtensionEscapingStrategy.php @@ -0,0 +1,60 @@ + + */ +class FileExtensionEscapingStrategy +{ + /** + * Guesses the best autoescaping strategy based on the file name. + * + * @param string $name The template name + * + * @return string|false The escaping strategy name to use or false to disable + */ + public static function guess(string $name) + { + if (\in_array(substr($name, -1), ['/', '\\'])) { + return 'html'; // return html for directories + } + + if (str_ends_with($name, '.twig')) { + $name = substr($name, 0, -5); + } + + $extension = pathinfo($name, \PATHINFO_EXTENSION); + + switch ($extension) { + case 'js': + return 'js'; + + case 'css': + return 'css'; + + case 'txt': + return false; + + default: + return 'html'; + } + } +} diff --git a/Sources/vendor/twig/twig/src/Lexer.php b/Sources/vendor/twig/twig/src/Lexer.php new file mode 100644 index 00000000..b23080f5 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Lexer.php @@ -0,0 +1,519 @@ + + */ +class Lexer +{ + private $isInitialized = false; + + private $tokens; + private $code; + private $cursor; + private $lineno; + private $end; + private $state; + private $states; + private $brackets; + private $env; + private $source; + private $options; + private $regexes; + private $position; + private $positions; + private $currentVarBlockLine; + + public const STATE_DATA = 0; + public const STATE_BLOCK = 1; + public const STATE_VAR = 2; + public const STATE_STRING = 3; + public const STATE_INTERPOLATION = 4; + + public const REGEX_NAME = '/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/A'; + public const REGEX_NUMBER = '/[0-9]+(?:\.[0-9]+)?([Ee][\+\-][0-9]+)?/A'; + public const REGEX_STRING = '/"([^#"\\\\]*(?:\\\\.[^#"\\\\]*)*)"|\'([^\'\\\\]*(?:\\\\.[^\'\\\\]*)*)\'/As'; + public const REGEX_DQ_STRING_DELIM = '/"/A'; + public const REGEX_DQ_STRING_PART = '/[^#"\\\\]*(?:(?:\\\\.|#(?!\{))[^#"\\\\]*)*/As'; + public const PUNCTUATION = '()[]{}?:.,|'; + + public function __construct(Environment $env, array $options = []) + { + $this->env = $env; + + $this->options = array_merge([ + 'tag_comment' => ['{#', '#}'], + 'tag_block' => ['{%', '%}'], + 'tag_variable' => ['{{', '}}'], + 'whitespace_trim' => '-', + 'whitespace_line_trim' => '~', + 'whitespace_line_chars' => ' \t\0\x0B', + 'interpolation' => ['#{', '}'], + ], $options); + } + + private function initialize() + { + if ($this->isInitialized) { + return; + } + + $this->isInitialized = true; + + // when PHP 7.3 is the min version, we will be able to remove the '#' part in preg_quote as it's part of the default + $this->regexes = [ + // }} + 'lex_var' => '{ + \s* + (?:'. + preg_quote($this->options['whitespace_trim'].$this->options['tag_variable'][1], '#').'\s*'. // -}}\s* + '|'. + preg_quote($this->options['whitespace_line_trim'].$this->options['tag_variable'][1], '#').'['.$this->options['whitespace_line_chars'].']*'. // ~}}[ \t\0\x0B]* + '|'. + preg_quote($this->options['tag_variable'][1], '#'). // }} + ') + }Ax', + + // %} + 'lex_block' => '{ + \s* + (?:'. + preg_quote($this->options['whitespace_trim'].$this->options['tag_block'][1], '#').'\s*\n?'. // -%}\s*\n? + '|'. + preg_quote($this->options['whitespace_line_trim'].$this->options['tag_block'][1], '#').'['.$this->options['whitespace_line_chars'].']*'. // ~%}[ \t\0\x0B]* + '|'. + preg_quote($this->options['tag_block'][1], '#').'\n?'. // %}\n? + ') + }Ax', + + // {% endverbatim %} + 'lex_raw_data' => '{'. + preg_quote($this->options['tag_block'][0], '#'). // {% + '('. + $this->options['whitespace_trim']. // - + '|'. + $this->options['whitespace_line_trim']. // ~ + ')?\s*endverbatim\s*'. + '(?:'. + preg_quote($this->options['whitespace_trim'].$this->options['tag_block'][1], '#').'\s*'. // -%} + '|'. + preg_quote($this->options['whitespace_line_trim'].$this->options['tag_block'][1], '#').'['.$this->options['whitespace_line_chars'].']*'. // ~%}[ \t\0\x0B]* + '|'. + preg_quote($this->options['tag_block'][1], '#'). // %} + ') + }sx', + + 'operator' => $this->getOperatorRegex(), + + // #} + 'lex_comment' => '{ + (?:'. + preg_quote($this->options['whitespace_trim'].$this->options['tag_comment'][1], '#').'\s*\n?'. // -#}\s*\n? + '|'. + preg_quote($this->options['whitespace_line_trim'].$this->options['tag_comment'][1], '#').'['.$this->options['whitespace_line_chars'].']*'. // ~#}[ \t\0\x0B]* + '|'. + preg_quote($this->options['tag_comment'][1], '#').'\n?'. // #}\n? + ') + }sx', + + // verbatim %} + 'lex_block_raw' => '{ + \s*verbatim\s* + (?:'. + preg_quote($this->options['whitespace_trim'].$this->options['tag_block'][1], '#').'\s*'. // -%}\s* + '|'. + preg_quote($this->options['whitespace_line_trim'].$this->options['tag_block'][1], '#').'['.$this->options['whitespace_line_chars'].']*'. // ~%}[ \t\0\x0B]* + '|'. + preg_quote($this->options['tag_block'][1], '#'). // %} + ') + }Asx', + + 'lex_block_line' => '{\s*line\s+(\d+)\s*'.preg_quote($this->options['tag_block'][1], '#').'}As', + + // {{ or {% or {# + 'lex_tokens_start' => '{ + ('. + preg_quote($this->options['tag_variable'][0], '#'). // {{ + '|'. + preg_quote($this->options['tag_block'][0], '#'). // {% + '|'. + preg_quote($this->options['tag_comment'][0], '#'). // {# + ')('. + preg_quote($this->options['whitespace_trim'], '#'). // - + '|'. + preg_quote($this->options['whitespace_line_trim'], '#'). // ~ + ')? + }sx', + 'interpolation_start' => '{'.preg_quote($this->options['interpolation'][0], '#').'\s*}A', + 'interpolation_end' => '{\s*'.preg_quote($this->options['interpolation'][1], '#').'}A', + ]; + } + + public function tokenize(Source $source): TokenStream + { + $this->initialize(); + + $this->source = $source; + $this->code = str_replace(["\r\n", "\r"], "\n", $source->getCode()); + $this->cursor = 0; + $this->lineno = 1; + $this->end = \strlen($this->code); + $this->tokens = []; + $this->state = self::STATE_DATA; + $this->states = []; + $this->brackets = []; + $this->position = -1; + + // find all token starts in one go + preg_match_all($this->regexes['lex_tokens_start'], $this->code, $matches, \PREG_OFFSET_CAPTURE); + $this->positions = $matches; + + while ($this->cursor < $this->end) { + // dispatch to the lexing functions depending + // on the current state + switch ($this->state) { + case self::STATE_DATA: + $this->lexData(); + break; + + case self::STATE_BLOCK: + $this->lexBlock(); + break; + + case self::STATE_VAR: + $this->lexVar(); + break; + + case self::STATE_STRING: + $this->lexString(); + break; + + case self::STATE_INTERPOLATION: + $this->lexInterpolation(); + break; + } + } + + $this->pushToken(/* Token::EOF_TYPE */ -1); + + if (!empty($this->brackets)) { + list($expect, $lineno) = array_pop($this->brackets); + throw new SyntaxError(sprintf('Unclosed "%s".', $expect), $lineno, $this->source); + } + + return new TokenStream($this->tokens, $this->source); + } + + private function lexData(): void + { + // if no matches are left we return the rest of the template as simple text token + if ($this->position == \count($this->positions[0]) - 1) { + $this->pushToken(/* Token::TEXT_TYPE */ 0, substr($this->code, $this->cursor)); + $this->cursor = $this->end; + + return; + } + + // Find the first token after the current cursor + $position = $this->positions[0][++$this->position]; + while ($position[1] < $this->cursor) { + if ($this->position == \count($this->positions[0]) - 1) { + return; + } + $position = $this->positions[0][++$this->position]; + } + + // push the template text first + $text = $textContent = substr($this->code, $this->cursor, $position[1] - $this->cursor); + + // trim? + if (isset($this->positions[2][$this->position][0])) { + if ($this->options['whitespace_trim'] === $this->positions[2][$this->position][0]) { + // whitespace_trim detected ({%-, {{- or {#-) + $text = rtrim($text); + } elseif ($this->options['whitespace_line_trim'] === $this->positions[2][$this->position][0]) { + // whitespace_line_trim detected ({%~, {{~ or {#~) + // don't trim \r and \n + $text = rtrim($text, " \t\0\x0B"); + } + } + $this->pushToken(/* Token::TEXT_TYPE */ 0, $text); + $this->moveCursor($textContent.$position[0]); + + switch ($this->positions[1][$this->position][0]) { + case $this->options['tag_comment'][0]: + $this->lexComment(); + break; + + case $this->options['tag_block'][0]: + // raw data? + if (preg_match($this->regexes['lex_block_raw'], $this->code, $match, 0, $this->cursor)) { + $this->moveCursor($match[0]); + $this->lexRawData(); + // {% line \d+ %} + } elseif (preg_match($this->regexes['lex_block_line'], $this->code, $match, 0, $this->cursor)) { + $this->moveCursor($match[0]); + $this->lineno = (int) $match[1]; + } else { + $this->pushToken(/* Token::BLOCK_START_TYPE */ 1); + $this->pushState(self::STATE_BLOCK); + $this->currentVarBlockLine = $this->lineno; + } + break; + + case $this->options['tag_variable'][0]: + $this->pushToken(/* Token::VAR_START_TYPE */ 2); + $this->pushState(self::STATE_VAR); + $this->currentVarBlockLine = $this->lineno; + break; + } + } + + private function lexBlock(): void + { + if (empty($this->brackets) && preg_match($this->regexes['lex_block'], $this->code, $match, 0, $this->cursor)) { + $this->pushToken(/* Token::BLOCK_END_TYPE */ 3); + $this->moveCursor($match[0]); + $this->popState(); + } else { + $this->lexExpression(); + } + } + + private function lexVar(): void + { + if (empty($this->brackets) && preg_match($this->regexes['lex_var'], $this->code, $match, 0, $this->cursor)) { + $this->pushToken(/* Token::VAR_END_TYPE */ 4); + $this->moveCursor($match[0]); + $this->popState(); + } else { + $this->lexExpression(); + } + } + + private function lexExpression(): void + { + // whitespace + if (preg_match('/\s+/A', $this->code, $match, 0, $this->cursor)) { + $this->moveCursor($match[0]); + + if ($this->cursor >= $this->end) { + throw new SyntaxError(sprintf('Unclosed "%s".', self::STATE_BLOCK === $this->state ? 'block' : 'variable'), $this->currentVarBlockLine, $this->source); + } + } + + // spread operator + if ('.' === $this->code[$this->cursor] && ($this->cursor + 2 < $this->end) && '.' === $this->code[$this->cursor + 1] && '.' === $this->code[$this->cursor + 2]) { + $this->pushToken(Token::SPREAD_TYPE, '...'); + $this->moveCursor('...'); + } + // arrow function + elseif ('=' === $this->code[$this->cursor] && '>' === $this->code[$this->cursor + 1]) { + $this->pushToken(Token::ARROW_TYPE, '=>'); + $this->moveCursor('=>'); + } + // operators + elseif (preg_match($this->regexes['operator'], $this->code, $match, 0, $this->cursor)) { + $this->pushToken(/* Token::OPERATOR_TYPE */ 8, preg_replace('/\s+/', ' ', $match[0])); + $this->moveCursor($match[0]); + } + // names + elseif (preg_match(self::REGEX_NAME, $this->code, $match, 0, $this->cursor)) { + $this->pushToken(/* Token::NAME_TYPE */ 5, $match[0]); + $this->moveCursor($match[0]); + } + // numbers + elseif (preg_match(self::REGEX_NUMBER, $this->code, $match, 0, $this->cursor)) { + $number = (float) $match[0]; // floats + if (ctype_digit($match[0]) && $number <= \PHP_INT_MAX) { + $number = (int) $match[0]; // integers lower than the maximum + } + $this->pushToken(/* Token::NUMBER_TYPE */ 6, $number); + $this->moveCursor($match[0]); + } + // punctuation + elseif (str_contains(self::PUNCTUATION, $this->code[$this->cursor])) { + // opening bracket + if (str_contains('([{', $this->code[$this->cursor])) { + $this->brackets[] = [$this->code[$this->cursor], $this->lineno]; + } + // closing bracket + elseif (str_contains(')]}', $this->code[$this->cursor])) { + if (empty($this->brackets)) { + throw new SyntaxError(sprintf('Unexpected "%s".', $this->code[$this->cursor]), $this->lineno, $this->source); + } + + list($expect, $lineno) = array_pop($this->brackets); + if ($this->code[$this->cursor] != strtr($expect, '([{', ')]}')) { + throw new SyntaxError(sprintf('Unclosed "%s".', $expect), $lineno, $this->source); + } + } + + $this->pushToken(/* Token::PUNCTUATION_TYPE */ 9, $this->code[$this->cursor]); + ++$this->cursor; + } + // strings + elseif (preg_match(self::REGEX_STRING, $this->code, $match, 0, $this->cursor)) { + $this->pushToken(/* Token::STRING_TYPE */ 7, stripcslashes(substr($match[0], 1, -1))); + $this->moveCursor($match[0]); + } + // opening double quoted string + elseif (preg_match(self::REGEX_DQ_STRING_DELIM, $this->code, $match, 0, $this->cursor)) { + $this->brackets[] = ['"', $this->lineno]; + $this->pushState(self::STATE_STRING); + $this->moveCursor($match[0]); + } + // unlexable + else { + throw new SyntaxError(sprintf('Unexpected character "%s".', $this->code[$this->cursor]), $this->lineno, $this->source); + } + } + + private function lexRawData(): void + { + if (!preg_match($this->regexes['lex_raw_data'], $this->code, $match, \PREG_OFFSET_CAPTURE, $this->cursor)) { + throw new SyntaxError('Unexpected end of file: Unclosed "verbatim" block.', $this->lineno, $this->source); + } + + $text = substr($this->code, $this->cursor, $match[0][1] - $this->cursor); + $this->moveCursor($text.$match[0][0]); + + // trim? + if (isset($match[1][0])) { + if ($this->options['whitespace_trim'] === $match[1][0]) { + // whitespace_trim detected ({%-, {{- or {#-) + $text = rtrim($text); + } else { + // whitespace_line_trim detected ({%~, {{~ or {#~) + // don't trim \r and \n + $text = rtrim($text, " \t\0\x0B"); + } + } + + $this->pushToken(/* Token::TEXT_TYPE */ 0, $text); + } + + private function lexComment(): void + { + if (!preg_match($this->regexes['lex_comment'], $this->code, $match, \PREG_OFFSET_CAPTURE, $this->cursor)) { + throw new SyntaxError('Unclosed comment.', $this->lineno, $this->source); + } + + $this->moveCursor(substr($this->code, $this->cursor, $match[0][1] - $this->cursor).$match[0][0]); + } + + private function lexString(): void + { + if (preg_match($this->regexes['interpolation_start'], $this->code, $match, 0, $this->cursor)) { + $this->brackets[] = [$this->options['interpolation'][0], $this->lineno]; + $this->pushToken(/* Token::INTERPOLATION_START_TYPE */ 10); + $this->moveCursor($match[0]); + $this->pushState(self::STATE_INTERPOLATION); + } elseif (preg_match(self::REGEX_DQ_STRING_PART, $this->code, $match, 0, $this->cursor) && '' !== $match[0]) { + $this->pushToken(/* Token::STRING_TYPE */ 7, stripcslashes($match[0])); + $this->moveCursor($match[0]); + } elseif (preg_match(self::REGEX_DQ_STRING_DELIM, $this->code, $match, 0, $this->cursor)) { + list($expect, $lineno) = array_pop($this->brackets); + if ('"' != $this->code[$this->cursor]) { + throw new SyntaxError(sprintf('Unclosed "%s".', $expect), $lineno, $this->source); + } + + $this->popState(); + ++$this->cursor; + } else { + // unlexable + throw new SyntaxError(sprintf('Unexpected character "%s".', $this->code[$this->cursor]), $this->lineno, $this->source); + } + } + + private function lexInterpolation(): void + { + $bracket = end($this->brackets); + if ($this->options['interpolation'][0] === $bracket[0] && preg_match($this->regexes['interpolation_end'], $this->code, $match, 0, $this->cursor)) { + array_pop($this->brackets); + $this->pushToken(/* Token::INTERPOLATION_END_TYPE */ 11); + $this->moveCursor($match[0]); + $this->popState(); + } else { + $this->lexExpression(); + } + } + + private function pushToken($type, $value = ''): void + { + // do not push empty text tokens + if (/* Token::TEXT_TYPE */ 0 === $type && '' === $value) { + return; + } + + $this->tokens[] = new Token($type, $value, $this->lineno); + } + + private function moveCursor($text): void + { + $this->cursor += \strlen($text); + $this->lineno += substr_count($text, "\n"); + } + + private function getOperatorRegex(): string + { + $operators = array_merge( + ['='], + array_keys($this->env->getUnaryOperators()), + array_keys($this->env->getBinaryOperators()) + ); + + $operators = array_combine($operators, array_map('strlen', $operators)); + arsort($operators); + + $regex = []; + foreach ($operators as $operator => $length) { + // an operator that ends with a character must be followed by + // a whitespace, a parenthesis, an opening map [ or sequence { + $r = preg_quote($operator, '/'); + if (ctype_alpha($operator[$length - 1])) { + $r .= '(?=[\s()\[{])'; + } + + // an operator that begins with a character must not have a dot or pipe before + if (ctype_alpha($operator[0])) { + $r = '(?states[] = $this->state; + $this->state = $state; + } + + private function popState(): void + { + if (0 === \count($this->states)) { + throw new \LogicException('Cannot pop state without a previous state.'); + } + + $this->state = array_pop($this->states); + } +} diff --git a/Sources/vendor/twig/twig/src/Loader/ArrayLoader.php b/Sources/vendor/twig/twig/src/Loader/ArrayLoader.php new file mode 100644 index 00000000..5d726c35 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Loader/ArrayLoader.php @@ -0,0 +1,77 @@ + + */ +final class ArrayLoader implements LoaderInterface +{ + private $templates = []; + + /** + * @param array $templates An array of templates (keys are the names, and values are the source code) + */ + public function __construct(array $templates = []) + { + $this->templates = $templates; + } + + public function setTemplate(string $name, string $template): void + { + $this->templates[$name] = $template; + } + + public function getSourceContext(string $name): Source + { + if (!isset($this->templates[$name])) { + throw new LoaderError(sprintf('Template "%s" is not defined.', $name)); + } + + return new Source($this->templates[$name], $name); + } + + public function exists(string $name): bool + { + return isset($this->templates[$name]); + } + + public function getCacheKey(string $name): string + { + if (!isset($this->templates[$name])) { + throw new LoaderError(sprintf('Template "%s" is not defined.', $name)); + } + + return $name.':'.$this->templates[$name]; + } + + public function isFresh(string $name, int $time): bool + { + if (!isset($this->templates[$name])) { + throw new LoaderError(sprintf('Template "%s" is not defined.', $name)); + } + + return true; + } +} diff --git a/Sources/vendor/twig/twig/src/Loader/ChainLoader.php b/Sources/vendor/twig/twig/src/Loader/ChainLoader.php new file mode 100644 index 00000000..fbf4f3a0 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Loader/ChainLoader.php @@ -0,0 +1,119 @@ + + */ +final class ChainLoader implements LoaderInterface +{ + private $hasSourceCache = []; + private $loaders = []; + + /** + * @param LoaderInterface[] $loaders + */ + public function __construct(array $loaders = []) + { + foreach ($loaders as $loader) { + $this->addLoader($loader); + } + } + + public function addLoader(LoaderInterface $loader): void + { + $this->loaders[] = $loader; + $this->hasSourceCache = []; + } + + /** + * @return LoaderInterface[] + */ + public function getLoaders(): array + { + return $this->loaders; + } + + public function getSourceContext(string $name): Source + { + $exceptions = []; + foreach ($this->loaders as $loader) { + if (!$loader->exists($name)) { + continue; + } + + try { + return $loader->getSourceContext($name); + } catch (LoaderError $e) { + $exceptions[] = $e->getMessage(); + } + } + + throw new LoaderError(sprintf('Template "%s" is not defined%s.', $name, $exceptions ? ' ('.implode(', ', $exceptions).')' : '')); + } + + public function exists(string $name): bool + { + if (isset($this->hasSourceCache[$name])) { + return $this->hasSourceCache[$name]; + } + + foreach ($this->loaders as $loader) { + if ($loader->exists($name)) { + return $this->hasSourceCache[$name] = true; + } + } + + return $this->hasSourceCache[$name] = false; + } + + public function getCacheKey(string $name): string + { + $exceptions = []; + foreach ($this->loaders as $loader) { + if (!$loader->exists($name)) { + continue; + } + + try { + return $loader->getCacheKey($name); + } catch (LoaderError $e) { + $exceptions[] = \get_class($loader).': '.$e->getMessage(); + } + } + + throw new LoaderError(sprintf('Template "%s" is not defined%s.', $name, $exceptions ? ' ('.implode(', ', $exceptions).')' : '')); + } + + public function isFresh(string $name, int $time): bool + { + $exceptions = []; + foreach ($this->loaders as $loader) { + if (!$loader->exists($name)) { + continue; + } + + try { + return $loader->isFresh($name, $time); + } catch (LoaderError $e) { + $exceptions[] = \get_class($loader).': '.$e->getMessage(); + } + } + + throw new LoaderError(sprintf('Template "%s" is not defined%s.', $name, $exceptions ? ' ('.implode(', ', $exceptions).')' : '')); + } +} diff --git a/Sources/vendor/twig/twig/src/Loader/FilesystemLoader.php b/Sources/vendor/twig/twig/src/Loader/FilesystemLoader.php new file mode 100644 index 00000000..1073a406 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Loader/FilesystemLoader.php @@ -0,0 +1,283 @@ + + */ +class FilesystemLoader implements LoaderInterface +{ + /** Identifier of the main namespace. */ + public const MAIN_NAMESPACE = '__main__'; + + protected $paths = []; + protected $cache = []; + protected $errorCache = []; + + private $rootPath; + + /** + * @param string|array $paths A path or an array of paths where to look for templates + * @param string|null $rootPath The root path common to all relative paths (null for getcwd()) + */ + public function __construct($paths = [], string $rootPath = null) + { + $this->rootPath = ($rootPath ?? getcwd()).\DIRECTORY_SEPARATOR; + if (null !== $rootPath && false !== ($realPath = realpath($rootPath))) { + $this->rootPath = $realPath.\DIRECTORY_SEPARATOR; + } + + if ($paths) { + $this->setPaths($paths); + } + } + + /** + * Returns the paths to the templates. + */ + public function getPaths(string $namespace = self::MAIN_NAMESPACE): array + { + return $this->paths[$namespace] ?? []; + } + + /** + * Returns the path namespaces. + * + * The main namespace is always defined. + */ + public function getNamespaces(): array + { + return array_keys($this->paths); + } + + /** + * @param string|array $paths A path or an array of paths where to look for templates + */ + public function setPaths($paths, string $namespace = self::MAIN_NAMESPACE): void + { + if (!\is_array($paths)) { + $paths = [$paths]; + } + + $this->paths[$namespace] = []; + foreach ($paths as $path) { + $this->addPath($path, $namespace); + } + } + + /** + * @throws LoaderError + */ + public function addPath(string $path, string $namespace = self::MAIN_NAMESPACE): void + { + // invalidate the cache + $this->cache = $this->errorCache = []; + + $checkPath = $this->isAbsolutePath($path) ? $path : $this->rootPath.$path; + if (!is_dir($checkPath)) { + throw new LoaderError(sprintf('The "%s" directory does not exist ("%s").', $path, $checkPath)); + } + + $this->paths[$namespace][] = rtrim($path, '/\\'); + } + + /** + * @throws LoaderError + */ + public function prependPath(string $path, string $namespace = self::MAIN_NAMESPACE): void + { + // invalidate the cache + $this->cache = $this->errorCache = []; + + $checkPath = $this->isAbsolutePath($path) ? $path : $this->rootPath.$path; + if (!is_dir($checkPath)) { + throw new LoaderError(sprintf('The "%s" directory does not exist ("%s").', $path, $checkPath)); + } + + $path = rtrim($path, '/\\'); + + if (!isset($this->paths[$namespace])) { + $this->paths[$namespace][] = $path; + } else { + array_unshift($this->paths[$namespace], $path); + } + } + + public function getSourceContext(string $name): Source + { + if (null === $path = $this->findTemplate($name)) { + return new Source('', $name, ''); + } + + return new Source(file_get_contents($path), $name, $path); + } + + public function getCacheKey(string $name): string + { + if (null === $path = $this->findTemplate($name)) { + return ''; + } + $len = \strlen($this->rootPath); + if (0 === strncmp($this->rootPath, $path, $len)) { + return substr($path, $len); + } + + return $path; + } + + /** + * @return bool + */ + public function exists(string $name) + { + $name = $this->normalizeName($name); + + if (isset($this->cache[$name])) { + return true; + } + + return null !== $this->findTemplate($name, false); + } + + public function isFresh(string $name, int $time): bool + { + // false support to be removed in 3.0 + if (null === $path = $this->findTemplate($name)) { + return false; + } + + return filemtime($path) < $time; + } + + /** + * @return string|null + */ + protected function findTemplate(string $name, bool $throw = true) + { + $name = $this->normalizeName($name); + + if (isset($this->cache[$name])) { + return $this->cache[$name]; + } + + if (isset($this->errorCache[$name])) { + if (!$throw) { + return null; + } + + throw new LoaderError($this->errorCache[$name]); + } + + try { + list($namespace, $shortname) = $this->parseName($name); + + $this->validateName($shortname); + } catch (LoaderError $e) { + if (!$throw) { + return null; + } + + throw $e; + } + + if (!isset($this->paths[$namespace])) { + $this->errorCache[$name] = sprintf('There are no registered paths for namespace "%s".', $namespace); + + if (!$throw) { + return null; + } + + throw new LoaderError($this->errorCache[$name]); + } + + foreach ($this->paths[$namespace] as $path) { + if (!$this->isAbsolutePath($path)) { + $path = $this->rootPath.$path; + } + + if (is_file($path.'/'.$shortname)) { + if (false !== $realpath = realpath($path.'/'.$shortname)) { + return $this->cache[$name] = $realpath; + } + + return $this->cache[$name] = $path.'/'.$shortname; + } + } + + $this->errorCache[$name] = sprintf('Unable to find template "%s" (looked into: %s).', $name, implode(', ', $this->paths[$namespace])); + + if (!$throw) { + return null; + } + + throw new LoaderError($this->errorCache[$name]); + } + + private function normalizeName(string $name): string + { + return preg_replace('#/{2,}#', '/', str_replace('\\', '/', $name)); + } + + private function parseName(string $name, string $default = self::MAIN_NAMESPACE): array + { + if (isset($name[0]) && '@' == $name[0]) { + if (false === $pos = strpos($name, '/')) { + throw new LoaderError(sprintf('Malformed namespaced template name "%s" (expecting "@namespace/template_name").', $name)); + } + + $namespace = substr($name, 1, $pos - 1); + $shortname = substr($name, $pos + 1); + + return [$namespace, $shortname]; + } + + return [$default, $name]; + } + + private function validateName(string $name): void + { + if (str_contains($name, "\0")) { + throw new LoaderError('A template name cannot contain NUL bytes.'); + } + + $name = ltrim($name, '/'); + $parts = explode('/', $name); + $level = 0; + foreach ($parts as $part) { + if ('..' === $part) { + --$level; + } elseif ('.' !== $part) { + ++$level; + } + + if ($level < 0) { + throw new LoaderError(sprintf('Looks like you try to load a template outside configured directories (%s).', $name)); + } + } + } + + private function isAbsolutePath(string $file): bool + { + return strspn($file, '/\\', 0, 1) + || (\strlen($file) > 3 && ctype_alpha($file[0]) + && ':' === $file[1] + && strspn($file, '/\\', 2, 1) + ) + || null !== parse_url($file, \PHP_URL_SCHEME) + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Loader/LoaderInterface.php b/Sources/vendor/twig/twig/src/Loader/LoaderInterface.php new file mode 100644 index 00000000..fec7e85f --- /dev/null +++ b/Sources/vendor/twig/twig/src/Loader/LoaderInterface.php @@ -0,0 +1,49 @@ + + */ +interface LoaderInterface +{ + /** + * Returns the source context for a given template logical name. + * + * @throws LoaderError When $name is not found + */ + public function getSourceContext(string $name): Source; + + /** + * Gets the cache key to use for the cache for a given template name. + * + * @throws LoaderError When $name is not found + */ + public function getCacheKey(string $name): string; + + /** + * @param int $time Timestamp of the last modification time of the cached template + * + * @throws LoaderError When $name is not found + */ + public function isFresh(string $name, int $time): bool; + + /** + * @return bool + */ + public function exists(string $name); +} diff --git a/Sources/vendor/twig/twig/src/Markup.php b/Sources/vendor/twig/twig/src/Markup.php new file mode 100644 index 00000000..1788acc4 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Markup.php @@ -0,0 +1,52 @@ + + */ +class Markup implements \Countable, \JsonSerializable +{ + private $content; + private $charset; + + public function __construct($content, $charset) + { + $this->content = (string) $content; + $this->charset = $charset; + } + + public function __toString() + { + return $this->content; + } + + /** + * @return int + */ + #[\ReturnTypeWillChange] + public function count() + { + return mb_strlen($this->content, $this->charset); + } + + /** + * @return mixed + */ + #[\ReturnTypeWillChange] + public function jsonSerialize() + { + return $this->content; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/AutoEscapeNode.php b/Sources/vendor/twig/twig/src/Node/AutoEscapeNode.php new file mode 100644 index 00000000..cd970411 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/AutoEscapeNode.php @@ -0,0 +1,38 @@ + + */ +class AutoEscapeNode extends Node +{ + public function __construct($value, Node $body, int $lineno, string $tag = 'autoescape') + { + parent::__construct(['body' => $body], ['value' => $value], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler->subcompile($this->getNode('body')); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/BlockNode.php b/Sources/vendor/twig/twig/src/Node/BlockNode.php new file mode 100644 index 00000000..0632ba74 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/BlockNode.php @@ -0,0 +1,44 @@ + + */ +class BlockNode extends Node +{ + public function __construct(string $name, Node $body, int $lineno, string $tag = null) + { + parent::__construct(['body' => $body], ['name' => $name], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->addDebugInfo($this) + ->write(sprintf("public function block_%s(\$context, array \$blocks = [])\n", $this->getAttribute('name')), "{\n") + ->indent() + ->write("\$macros = \$this->macros;\n") + ; + + $compiler + ->subcompile($this->getNode('body')) + ->outdent() + ->write("}\n\n") + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/BlockReferenceNode.php b/Sources/vendor/twig/twig/src/Node/BlockReferenceNode.php new file mode 100644 index 00000000..cc8af5b5 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/BlockReferenceNode.php @@ -0,0 +1,36 @@ + + */ +class BlockReferenceNode extends Node implements NodeOutputInterface +{ + public function __construct(string $name, int $lineno, string $tag = null) + { + parent::__construct([], ['name' => $name], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->addDebugInfo($this) + ->write(sprintf("\$this->displayBlock('%s', \$context, \$blocks);\n", $this->getAttribute('name'))) + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/BodyNode.php b/Sources/vendor/twig/twig/src/Node/BodyNode.php new file mode 100644 index 00000000..041cbf68 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/BodyNode.php @@ -0,0 +1,21 @@ + + */ +class BodyNode extends Node +{ +} diff --git a/Sources/vendor/twig/twig/src/Node/CheckSecurityCallNode.php b/Sources/vendor/twig/twig/src/Node/CheckSecurityCallNode.php new file mode 100644 index 00000000..a78a38d8 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/CheckSecurityCallNode.php @@ -0,0 +1,28 @@ + + */ +class CheckSecurityCallNode extends Node +{ + public function compile(Compiler $compiler) + { + $compiler + ->write("\$this->sandbox = \$this->env->getExtension('\Twig\Extension\SandboxExtension');\n") + ->write("\$this->checkSecurity();\n") + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/CheckSecurityNode.php b/Sources/vendor/twig/twig/src/Node/CheckSecurityNode.php new file mode 100644 index 00000000..47273279 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/CheckSecurityNode.php @@ -0,0 +1,88 @@ + + */ +class CheckSecurityNode extends Node +{ + private $usedFilters; + private $usedTags; + private $usedFunctions; + + public function __construct(array $usedFilters, array $usedTags, array $usedFunctions) + { + $this->usedFilters = $usedFilters; + $this->usedTags = $usedTags; + $this->usedFunctions = $usedFunctions; + + parent::__construct(); + } + + public function compile(Compiler $compiler): void + { + $tags = $filters = $functions = []; + foreach (['tags', 'filters', 'functions'] as $type) { + foreach ($this->{'used'.ucfirst($type)} as $name => $node) { + if ($node instanceof Node) { + ${$type}[$name] = $node->getTemplateLine(); + } else { + ${$type}[$node] = null; + } + } + } + + $compiler + ->write("\n") + ->write("public function checkSecurity()\n") + ->write("{\n") + ->indent() + ->write('static $tags = ')->repr(array_filter($tags))->raw(";\n") + ->write('static $filters = ')->repr(array_filter($filters))->raw(";\n") + ->write('static $functions = ')->repr(array_filter($functions))->raw(";\n\n") + ->write("try {\n") + ->indent() + ->write("\$this->sandbox->checkSecurity(\n") + ->indent() + ->write(!$tags ? "[],\n" : "['".implode("', '", array_keys($tags))."'],\n") + ->write(!$filters ? "[],\n" : "['".implode("', '", array_keys($filters))."'],\n") + ->write(!$functions ? "[]\n" : "['".implode("', '", array_keys($functions))."']\n") + ->outdent() + ->write(");\n") + ->outdent() + ->write("} catch (SecurityError \$e) {\n") + ->indent() + ->write("\$e->setSourceContext(\$this->source);\n\n") + ->write("if (\$e instanceof SecurityNotAllowedTagError && isset(\$tags[\$e->getTagName()])) {\n") + ->indent() + ->write("\$e->setTemplateLine(\$tags[\$e->getTagName()]);\n") + ->outdent() + ->write("} elseif (\$e instanceof SecurityNotAllowedFilterError && isset(\$filters[\$e->getFilterName()])) {\n") + ->indent() + ->write("\$e->setTemplateLine(\$filters[\$e->getFilterName()]);\n") + ->outdent() + ->write("} elseif (\$e instanceof SecurityNotAllowedFunctionError && isset(\$functions[\$e->getFunctionName()])) {\n") + ->indent() + ->write("\$e->setTemplateLine(\$functions[\$e->getFunctionName()]);\n") + ->outdent() + ->write("}\n\n") + ->write("throw \$e;\n") + ->outdent() + ->write("}\n\n") + ->outdent() + ->write("}\n") + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/CheckToStringNode.php b/Sources/vendor/twig/twig/src/Node/CheckToStringNode.php new file mode 100644 index 00000000..c7a9d698 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/CheckToStringNode.php @@ -0,0 +1,45 @@ + + */ +class CheckToStringNode extends AbstractExpression +{ + public function __construct(AbstractExpression $expr) + { + parent::__construct(['expr' => $expr], [], $expr->getTemplateLine(), $expr->getNodeTag()); + } + + public function compile(Compiler $compiler): void + { + $expr = $this->getNode('expr'); + $compiler + ->raw('$this->sandbox->ensureToStringAllowed(') + ->subcompile($expr) + ->raw(', ') + ->repr($expr->getTemplateLine()) + ->raw(', $this->source)') + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/DeprecatedNode.php b/Sources/vendor/twig/twig/src/Node/DeprecatedNode.php new file mode 100644 index 00000000..5ff44307 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/DeprecatedNode.php @@ -0,0 +1,53 @@ + + */ +class DeprecatedNode extends Node +{ + public function __construct(AbstractExpression $expr, int $lineno, string $tag = null) + { + parent::__construct(['expr' => $expr], [], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler->addDebugInfo($this); + + $expr = $this->getNode('expr'); + + if ($expr instanceof ConstantExpression) { + $compiler->write('@trigger_error(') + ->subcompile($expr); + } else { + $varName = $compiler->getVarName(); + $compiler->write(sprintf('$%s = ', $varName)) + ->subcompile($expr) + ->raw(";\n") + ->write(sprintf('@trigger_error($%s', $varName)); + } + + $compiler + ->raw('.') + ->string(sprintf(' ("%s" at line %d).', $this->getTemplateName(), $this->getTemplateLine())) + ->raw(", E_USER_DEPRECATED);\n") + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/DoNode.php b/Sources/vendor/twig/twig/src/Node/DoNode.php new file mode 100644 index 00000000..f7783d19 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/DoNode.php @@ -0,0 +1,38 @@ + + */ +class DoNode extends Node +{ + public function __construct(AbstractExpression $expr, int $lineno, string $tag = null) + { + parent::__construct(['expr' => $expr], [], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->addDebugInfo($this) + ->write('') + ->subcompile($this->getNode('expr')) + ->raw(";\n") + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/EmbedNode.php b/Sources/vendor/twig/twig/src/Node/EmbedNode.php new file mode 100644 index 00000000..903c3f6c --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/EmbedNode.php @@ -0,0 +1,48 @@ + + */ +class EmbedNode extends IncludeNode +{ + // we don't inject the module to avoid node visitors to traverse it twice (as it will be already visited in the main module) + public function __construct(string $name, int $index, ?AbstractExpression $variables, bool $only, bool $ignoreMissing, int $lineno, string $tag = null) + { + parent::__construct(new ConstantExpression('not_used', $lineno), $variables, $only, $ignoreMissing, $lineno, $tag); + + $this->setAttribute('name', $name); + $this->setAttribute('index', $index); + } + + protected function addGetTemplate(Compiler $compiler): void + { + $compiler + ->write('$this->loadTemplate(') + ->string($this->getAttribute('name')) + ->raw(', ') + ->repr($this->getTemplateName()) + ->raw(', ') + ->repr($this->getTemplateLine()) + ->raw(', ') + ->string($this->getAttribute('index')) + ->raw(')') + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/AbstractExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/AbstractExpression.php new file mode 100644 index 00000000..42da0559 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/AbstractExpression.php @@ -0,0 +1,24 @@ + + */ +abstract class AbstractExpression extends Node +{ +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/ArrayExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/ArrayExpression.php new file mode 100644 index 00000000..44428380 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/ArrayExpression.php @@ -0,0 +1,135 @@ +index = -1; + foreach ($this->getKeyValuePairs() as $pair) { + if ($pair['key'] instanceof ConstantExpression && ctype_digit((string) $pair['key']->getAttribute('value')) && $pair['key']->getAttribute('value') > $this->index) { + $this->index = $pair['key']->getAttribute('value'); + } + } + } + + public function getKeyValuePairs(): array + { + $pairs = []; + foreach (array_chunk($this->nodes, 2) as $pair) { + $pairs[] = [ + 'key' => $pair[0], + 'value' => $pair[1], + ]; + } + + return $pairs; + } + + public function hasElement(AbstractExpression $key): bool + { + foreach ($this->getKeyValuePairs() as $pair) { + // we compare the string representation of the keys + // to avoid comparing the line numbers which are not relevant here. + if ((string) $key === (string) $pair['key']) { + return true; + } + } + + return false; + } + + public function addElement(AbstractExpression $value, AbstractExpression $key = null): void + { + if (null === $key) { + $key = new ConstantExpression(++$this->index, $value->getTemplateLine()); + } + + array_push($this->nodes, $key, $value); + } + + public function compile(Compiler $compiler): void + { + $keyValuePairs = $this->getKeyValuePairs(); + $needsArrayMergeSpread = \PHP_VERSION_ID < 80100 && $this->hasSpreadItem($keyValuePairs); + + if ($needsArrayMergeSpread) { + $compiler->raw('twig_array_merge('); + } + $compiler->raw('['); + $first = true; + $reopenAfterMergeSpread = false; + $nextIndex = 0; + foreach ($keyValuePairs as $pair) { + if ($reopenAfterMergeSpread) { + $compiler->raw(', ['); + $reopenAfterMergeSpread = false; + } + + if ($needsArrayMergeSpread && $pair['value']->hasAttribute('spread')) { + $compiler->raw('], ')->subcompile($pair['value']); + $first = true; + $reopenAfterMergeSpread = true; + continue; + } + if (!$first) { + $compiler->raw(', '); + } + $first = false; + + if ($pair['value']->hasAttribute('spread') && !$needsArrayMergeSpread) { + $compiler->raw('...')->subcompile($pair['value']); + ++$nextIndex; + } else { + $key = $pair['key'] instanceof ConstantExpression ? $pair['key']->getAttribute('value') : null; + + if ($nextIndex !== $key) { + if (\is_int($key)) { + $nextIndex = $key + 1; + } + $compiler + ->subcompile($pair['key']) + ->raw(' => ') + ; + } else { + ++$nextIndex; + } + + $compiler->subcompile($pair['value']); + } + } + if (!$reopenAfterMergeSpread) { + $compiler->raw(']'); + } + if ($needsArrayMergeSpread) { + $compiler->raw(')'); + } + } + + private function hasSpreadItem(array $pairs): bool + { + foreach ($pairs as $pair) { + if ($pair['value']->hasAttribute('spread')) { + return true; + } + } + + return false; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/ArrowFunctionExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/ArrowFunctionExpression.php new file mode 100644 index 00000000..eaad03c9 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/ArrowFunctionExpression.php @@ -0,0 +1,64 @@ + + */ +class ArrowFunctionExpression extends AbstractExpression +{ + public function __construct(AbstractExpression $expr, Node $names, $lineno, $tag = null) + { + parent::__construct(['expr' => $expr, 'names' => $names], [], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->addDebugInfo($this) + ->raw('function (') + ; + foreach ($this->getNode('names') as $i => $name) { + if ($i) { + $compiler->raw(', '); + } + + $compiler + ->raw('$__') + ->raw($name->getAttribute('name')) + ->raw('__') + ; + } + $compiler + ->raw(') use ($context, $macros) { ') + ; + foreach ($this->getNode('names') as $name) { + $compiler + ->raw('$context["') + ->raw($name->getAttribute('name')) + ->raw('"] = $__') + ->raw($name->getAttribute('name')) + ->raw('__; ') + ; + } + $compiler + ->raw('return ') + ->subcompile($this->getNode('expr')) + ->raw('; }') + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/AssignNameExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/AssignNameExpression.php new file mode 100644 index 00000000..7dd1bc4a --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/AssignNameExpression.php @@ -0,0 +1,27 @@ +raw('$context[') + ->string($this->getAttribute('name')) + ->raw(']') + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/AbstractBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/AbstractBinary.php new file mode 100644 index 00000000..c424e5cc --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/AbstractBinary.php @@ -0,0 +1,42 @@ + $left, 'right' => $right], [], $lineno); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->raw('(') + ->subcompile($this->getNode('left')) + ->raw(' ') + ; + $this->operator($compiler); + $compiler + ->raw(' ') + ->subcompile($this->getNode('right')) + ->raw(')') + ; + } + + abstract public function operator(Compiler $compiler): Compiler; +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/AddBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/AddBinary.php new file mode 100644 index 00000000..ee4307e3 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/AddBinary.php @@ -0,0 +1,23 @@ +raw('+'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/AndBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/AndBinary.php new file mode 100644 index 00000000..5f2380da --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/AndBinary.php @@ -0,0 +1,23 @@ +raw('&&'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/BitwiseAndBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/BitwiseAndBinary.php new file mode 100644 index 00000000..db7d6d61 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/BitwiseAndBinary.php @@ -0,0 +1,23 @@ +raw('&'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/BitwiseOrBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/BitwiseOrBinary.php new file mode 100644 index 00000000..ce803dd9 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/BitwiseOrBinary.php @@ -0,0 +1,23 @@ +raw('|'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/BitwiseXorBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/BitwiseXorBinary.php new file mode 100644 index 00000000..5c297850 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/BitwiseXorBinary.php @@ -0,0 +1,23 @@ +raw('^'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/ConcatBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/ConcatBinary.php new file mode 100644 index 00000000..f825ab87 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/ConcatBinary.php @@ -0,0 +1,23 @@ +raw('.'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/DivBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/DivBinary.php new file mode 100644 index 00000000..e3817d1c --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/DivBinary.php @@ -0,0 +1,23 @@ +raw('/'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/EndsWithBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/EndsWithBinary.php new file mode 100644 index 00000000..73fa20b1 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/EndsWithBinary.php @@ -0,0 +1,35 @@ +getVarName(); + $right = $compiler->getVarName(); + $compiler + ->raw(sprintf('(is_string($%s = ', $left)) + ->subcompile($this->getNode('left')) + ->raw(sprintf(') && is_string($%s = ', $right)) + ->subcompile($this->getNode('right')) + ->raw(sprintf(') && str_ends_with($%1$s, $%2$s))', $left, $right)) + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw(''); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/EqualBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/EqualBinary.php new file mode 100644 index 00000000..6b48549e --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/EqualBinary.php @@ -0,0 +1,39 @@ += 80000) { + parent::compile($compiler); + + return; + } + + $compiler + ->raw('(0 === twig_compare(') + ->subcompile($this->getNode('left')) + ->raw(', ') + ->subcompile($this->getNode('right')) + ->raw('))') + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw('=='); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/FloorDivBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/FloorDivBinary.php new file mode 100644 index 00000000..d7e7980e --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/FloorDivBinary.php @@ -0,0 +1,29 @@ +raw('(int) floor('); + parent::compile($compiler); + $compiler->raw(')'); + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw('/'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/GreaterBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/GreaterBinary.php new file mode 100644 index 00000000..e1dd0678 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/GreaterBinary.php @@ -0,0 +1,39 @@ += 80000) { + parent::compile($compiler); + + return; + } + + $compiler + ->raw('(1 === twig_compare(') + ->subcompile($this->getNode('left')) + ->raw(', ') + ->subcompile($this->getNode('right')) + ->raw('))') + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw('>'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/GreaterEqualBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/GreaterEqualBinary.php new file mode 100644 index 00000000..df9bfcfb --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/GreaterEqualBinary.php @@ -0,0 +1,39 @@ += 80000) { + parent::compile($compiler); + + return; + } + + $compiler + ->raw('(0 <= twig_compare(') + ->subcompile($this->getNode('left')) + ->raw(', ') + ->subcompile($this->getNode('right')) + ->raw('))') + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw('>='); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/HasEveryBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/HasEveryBinary.php new file mode 100644 index 00000000..adfabd44 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/HasEveryBinary.php @@ -0,0 +1,33 @@ +raw('twig_array_every($this->env, ') + ->subcompile($this->getNode('left')) + ->raw(', ') + ->subcompile($this->getNode('right')) + ->raw(')') + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw(''); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/HasSomeBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/HasSomeBinary.php new file mode 100644 index 00000000..270da369 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/HasSomeBinary.php @@ -0,0 +1,33 @@ +raw('twig_array_some($this->env, ') + ->subcompile($this->getNode('left')) + ->raw(', ') + ->subcompile($this->getNode('right')) + ->raw(')') + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw(''); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/InBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/InBinary.php new file mode 100644 index 00000000..6dbfa97f --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/InBinary.php @@ -0,0 +1,33 @@ +raw('twig_in_filter(') + ->subcompile($this->getNode('left')) + ->raw(', ') + ->subcompile($this->getNode('right')) + ->raw(')') + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw('in'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/LessBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/LessBinary.php new file mode 100644 index 00000000..598e6291 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/LessBinary.php @@ -0,0 +1,39 @@ += 80000) { + parent::compile($compiler); + + return; + } + + $compiler + ->raw('(-1 === twig_compare(') + ->subcompile($this->getNode('left')) + ->raw(', ') + ->subcompile($this->getNode('right')) + ->raw('))') + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw('<'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/LessEqualBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/LessEqualBinary.php new file mode 100644 index 00000000..e3c4af58 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/LessEqualBinary.php @@ -0,0 +1,39 @@ += 80000) { + parent::compile($compiler); + + return; + } + + $compiler + ->raw('(0 >= twig_compare(') + ->subcompile($this->getNode('left')) + ->raw(', ') + ->subcompile($this->getNode('right')) + ->raw('))') + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw('<='); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/MatchesBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/MatchesBinary.php new file mode 100644 index 00000000..a8bce6f4 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/MatchesBinary.php @@ -0,0 +1,33 @@ +raw('twig_matches(') + ->subcompile($this->getNode('right')) + ->raw(', ') + ->subcompile($this->getNode('left')) + ->raw(')') + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw(''); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/ModBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/ModBinary.php new file mode 100644 index 00000000..271b45ca --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/ModBinary.php @@ -0,0 +1,23 @@ +raw('%'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/MulBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/MulBinary.php new file mode 100644 index 00000000..6d4c1e0b --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/MulBinary.php @@ -0,0 +1,23 @@ +raw('*'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/NotEqualBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/NotEqualBinary.php new file mode 100644 index 00000000..db47a289 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/NotEqualBinary.php @@ -0,0 +1,39 @@ += 80000) { + parent::compile($compiler); + + return; + } + + $compiler + ->raw('(0 !== twig_compare(') + ->subcompile($this->getNode('left')) + ->raw(', ') + ->subcompile($this->getNode('right')) + ->raw('))') + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw('!='); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/NotInBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/NotInBinary.php new file mode 100644 index 00000000..fcba6cca --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/NotInBinary.php @@ -0,0 +1,33 @@ +raw('!twig_in_filter(') + ->subcompile($this->getNode('left')) + ->raw(', ') + ->subcompile($this->getNode('right')) + ->raw(')') + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw('not in'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/OrBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/OrBinary.php new file mode 100644 index 00000000..21f87c91 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/OrBinary.php @@ -0,0 +1,23 @@ +raw('||'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/PowerBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/PowerBinary.php new file mode 100644 index 00000000..c9f4c669 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/PowerBinary.php @@ -0,0 +1,22 @@ +raw('**'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/RangeBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/RangeBinary.php new file mode 100644 index 00000000..55982c81 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/RangeBinary.php @@ -0,0 +1,33 @@ +raw('range(') + ->subcompile($this->getNode('left')) + ->raw(', ') + ->subcompile($this->getNode('right')) + ->raw(')') + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw('..'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/SpaceshipBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/SpaceshipBinary.php new file mode 100644 index 00000000..ae5a4a49 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/SpaceshipBinary.php @@ -0,0 +1,22 @@ +raw('<=>'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/StartsWithBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/StartsWithBinary.php new file mode 100644 index 00000000..22eff92a --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/StartsWithBinary.php @@ -0,0 +1,35 @@ +getVarName(); + $right = $compiler->getVarName(); + $compiler + ->raw(sprintf('(is_string($%s = ', $left)) + ->subcompile($this->getNode('left')) + ->raw(sprintf(') && is_string($%s = ', $right)) + ->subcompile($this->getNode('right')) + ->raw(sprintf(') && str_starts_with($%1$s, $%2$s))', $left, $right)) + ; + } + + public function operator(Compiler $compiler): Compiler + { + return $compiler->raw(''); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Binary/SubBinary.php b/Sources/vendor/twig/twig/src/Node/Expression/Binary/SubBinary.php new file mode 100644 index 00000000..eeb87fac --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Binary/SubBinary.php @@ -0,0 +1,23 @@ +raw('-'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/BlockReferenceExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/BlockReferenceExpression.php new file mode 100644 index 00000000..b1e2a8f7 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/BlockReferenceExpression.php @@ -0,0 +1,86 @@ + + */ +class BlockReferenceExpression extends AbstractExpression +{ + public function __construct(Node $name, ?Node $template, int $lineno, string $tag = null) + { + $nodes = ['name' => $name]; + if (null !== $template) { + $nodes['template'] = $template; + } + + parent::__construct($nodes, ['is_defined_test' => false, 'output' => false], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + if ($this->getAttribute('is_defined_test')) { + $this->compileTemplateCall($compiler, 'hasBlock'); + } else { + if ($this->getAttribute('output')) { + $compiler->addDebugInfo($this); + + $this + ->compileTemplateCall($compiler, 'displayBlock') + ->raw(";\n"); + } else { + $this->compileTemplateCall($compiler, 'renderBlock'); + } + } + } + + private function compileTemplateCall(Compiler $compiler, string $method): Compiler + { + if (!$this->hasNode('template')) { + $compiler->write('$this'); + } else { + $compiler + ->write('$this->loadTemplate(') + ->subcompile($this->getNode('template')) + ->raw(', ') + ->repr($this->getTemplateName()) + ->raw(', ') + ->repr($this->getTemplateLine()) + ->raw(')') + ; + } + + $compiler->raw(sprintf('->%s', $method)); + + return $this->compileBlockArguments($compiler); + } + + private function compileBlockArguments(Compiler $compiler): Compiler + { + $compiler + ->raw('(') + ->subcompile($this->getNode('name')) + ->raw(', $context'); + + if (!$this->hasNode('template')) { + $compiler->raw(', $blocks'); + } + + return $compiler->raw(')'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/CallExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/CallExpression.php new file mode 100644 index 00000000..3a2d7a4f --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/CallExpression.php @@ -0,0 +1,321 @@ +getAttribute('callable'); + + if (\is_string($callable) && !str_contains($callable, '::')) { + $compiler->raw($callable); + } else { + [$r, $callable] = $this->reflectCallable($callable); + + if (\is_string($callable)) { + $compiler->raw($callable); + } elseif (\is_array($callable) && \is_string($callable[0])) { + if (!$r instanceof \ReflectionMethod || $r->isStatic()) { + $compiler->raw(sprintf('%s::%s', $callable[0], $callable[1])); + } else { + $compiler->raw(sprintf('$this->env->getRuntime(\'%s\')->%s', $callable[0], $callable[1])); + } + } elseif (\is_array($callable) && $callable[0] instanceof ExtensionInterface) { + $class = \get_class($callable[0]); + if (!$compiler->getEnvironment()->hasExtension($class)) { + // Compile a non-optimized call to trigger a \Twig\Error\RuntimeError, which cannot be a compile-time error + $compiler->raw(sprintf('$this->env->getExtension(\'%s\')', $class)); + } else { + $compiler->raw(sprintf('$this->extensions[\'%s\']', ltrim($class, '\\'))); + } + + $compiler->raw(sprintf('->%s', $callable[1])); + } else { + $compiler->raw(sprintf('$this->env->get%s(\'%s\')->getCallable()', ucfirst($this->getAttribute('type')), $this->getAttribute('name'))); + } + } + + $this->compileArguments($compiler); + } + + protected function compileArguments(Compiler $compiler, $isArray = false): void + { + $compiler->raw($isArray ? '[' : '('); + + $first = true; + + if ($this->hasAttribute('needs_environment') && $this->getAttribute('needs_environment')) { + $compiler->raw('$this->env'); + $first = false; + } + + if ($this->hasAttribute('needs_context') && $this->getAttribute('needs_context')) { + if (!$first) { + $compiler->raw(', '); + } + $compiler->raw('$context'); + $first = false; + } + + if ($this->hasAttribute('arguments')) { + foreach ($this->getAttribute('arguments') as $argument) { + if (!$first) { + $compiler->raw(', '); + } + $compiler->string($argument); + $first = false; + } + } + + if ($this->hasNode('node')) { + if (!$first) { + $compiler->raw(', '); + } + $compiler->subcompile($this->getNode('node')); + $first = false; + } + + if ($this->hasNode('arguments')) { + $callable = $this->getAttribute('callable'); + $arguments = $this->getArguments($callable, $this->getNode('arguments')); + foreach ($arguments as $node) { + if (!$first) { + $compiler->raw(', '); + } + $compiler->subcompile($node); + $first = false; + } + } + + $compiler->raw($isArray ? ']' : ')'); + } + + protected function getArguments($callable, $arguments) + { + $callType = $this->getAttribute('type'); + $callName = $this->getAttribute('name'); + + $parameters = []; + $named = false; + foreach ($arguments as $name => $node) { + if (!\is_int($name)) { + $named = true; + $name = $this->normalizeName($name); + } elseif ($named) { + throw new SyntaxError(sprintf('Positional arguments cannot be used after named arguments for %s "%s".', $callType, $callName), $this->getTemplateLine(), $this->getSourceContext()); + } + + $parameters[$name] = $node; + } + + $isVariadic = $this->hasAttribute('is_variadic') && $this->getAttribute('is_variadic'); + if (!$named && !$isVariadic) { + return $parameters; + } + + if (!$callable) { + if ($named) { + $message = sprintf('Named arguments are not supported for %s "%s".', $callType, $callName); + } else { + $message = sprintf('Arbitrary positional arguments are not supported for %s "%s".', $callType, $callName); + } + + throw new \LogicException($message); + } + + list($callableParameters, $isPhpVariadic) = $this->getCallableParameters($callable, $isVariadic); + $arguments = []; + $names = []; + $missingArguments = []; + $optionalArguments = []; + $pos = 0; + foreach ($callableParameters as $callableParameter) { + $name = $this->normalizeName($callableParameter->name); + if (\PHP_VERSION_ID >= 80000 && 'range' === $callable) { + if ('start' === $name) { + $name = 'low'; + } elseif ('end' === $name) { + $name = 'high'; + } + } + + $names[] = $name; + + if (\array_key_exists($name, $parameters)) { + if (\array_key_exists($pos, $parameters)) { + throw new SyntaxError(sprintf('Argument "%s" is defined twice for %s "%s".', $name, $callType, $callName), $this->getTemplateLine(), $this->getSourceContext()); + } + + if (\count($missingArguments)) { + throw new SyntaxError(sprintf( + 'Argument "%s" could not be assigned for %s "%s(%s)" because it is mapped to an internal PHP function which cannot determine default value for optional argument%s "%s".', + $name, $callType, $callName, implode(', ', $names), \count($missingArguments) > 1 ? 's' : '', implode('", "', $missingArguments) + ), $this->getTemplateLine(), $this->getSourceContext()); + } + + $arguments = array_merge($arguments, $optionalArguments); + $arguments[] = $parameters[$name]; + unset($parameters[$name]); + $optionalArguments = []; + } elseif (\array_key_exists($pos, $parameters)) { + $arguments = array_merge($arguments, $optionalArguments); + $arguments[] = $parameters[$pos]; + unset($parameters[$pos]); + $optionalArguments = []; + ++$pos; + } elseif ($callableParameter->isDefaultValueAvailable()) { + $optionalArguments[] = new ConstantExpression($callableParameter->getDefaultValue(), -1); + } elseif ($callableParameter->isOptional()) { + if (empty($parameters)) { + break; + } else { + $missingArguments[] = $name; + } + } else { + throw new SyntaxError(sprintf('Value for argument "%s" is required for %s "%s".', $name, $callType, $callName), $this->getTemplateLine(), $this->getSourceContext()); + } + } + + if ($isVariadic) { + $arbitraryArguments = $isPhpVariadic ? new VariadicExpression([], -1) : new ArrayExpression([], -1); + foreach ($parameters as $key => $value) { + if (\is_int($key)) { + $arbitraryArguments->addElement($value); + } else { + $arbitraryArguments->addElement($value, new ConstantExpression($key, -1)); + } + unset($parameters[$key]); + } + + if ($arbitraryArguments->count()) { + $arguments = array_merge($arguments, $optionalArguments); + $arguments[] = $arbitraryArguments; + } + } + + if (!empty($parameters)) { + $unknownParameter = null; + foreach ($parameters as $parameter) { + if ($parameter instanceof Node) { + $unknownParameter = $parameter; + break; + } + } + + throw new SyntaxError( + sprintf( + 'Unknown argument%s "%s" for %s "%s(%s)".', + \count($parameters) > 1 ? 's' : '', implode('", "', array_keys($parameters)), $callType, $callName, implode(', ', $names) + ), + $unknownParameter ? $unknownParameter->getTemplateLine() : $this->getTemplateLine(), + $unknownParameter ? $unknownParameter->getSourceContext() : $this->getSourceContext() + ); + } + + return $arguments; + } + + protected function normalizeName(string $name): string + { + return strtolower(preg_replace(['/([A-Z]+)([A-Z][a-z])/', '/([a-z\d])([A-Z])/'], ['\\1_\\2', '\\1_\\2'], $name)); + } + + private function getCallableParameters($callable, bool $isVariadic): array + { + [$r, , $callableName] = $this->reflectCallable($callable); + + $parameters = $r->getParameters(); + if ($this->hasNode('node')) { + array_shift($parameters); + } + if ($this->hasAttribute('needs_environment') && $this->getAttribute('needs_environment')) { + array_shift($parameters); + } + if ($this->hasAttribute('needs_context') && $this->getAttribute('needs_context')) { + array_shift($parameters); + } + if ($this->hasAttribute('arguments') && null !== $this->getAttribute('arguments')) { + foreach ($this->getAttribute('arguments') as $argument) { + array_shift($parameters); + } + } + $isPhpVariadic = false; + if ($isVariadic) { + $argument = end($parameters); + $isArray = $argument && $argument->hasType() && 'array' === $argument->getType()->getName(); + if ($isArray && $argument->isDefaultValueAvailable() && [] === $argument->getDefaultValue()) { + array_pop($parameters); + } elseif ($argument && $argument->isVariadic()) { + array_pop($parameters); + $isPhpVariadic = true; + } else { + throw new \LogicException(sprintf('The last parameter of "%s" for %s "%s" must be an array with default value, eg. "array $arg = []".', $callableName, $this->getAttribute('type'), $this->getAttribute('name'))); + } + } + + return [$parameters, $isPhpVariadic]; + } + + private function reflectCallable($callable) + { + if (null !== $this->reflector) { + return $this->reflector; + } + + if (\is_string($callable) && false !== $pos = strpos($callable, '::')) { + $callable = [substr($callable, 0, $pos), substr($callable, 2 + $pos)]; + } + + if (\is_array($callable) && method_exists($callable[0], $callable[1])) { + $r = new \ReflectionMethod($callable[0], $callable[1]); + + return $this->reflector = [$r, $callable, $r->class.'::'.$r->name]; + } + + $checkVisibility = $callable instanceof \Closure; + try { + $closure = \Closure::fromCallable($callable); + } catch (\TypeError $e) { + throw new \LogicException(sprintf('Callback for %s "%s" is not callable in the current scope.', $this->getAttribute('type'), $this->getAttribute('name')), 0, $e); + } + $r = new \ReflectionFunction($closure); + + if (str_contains($r->name, '{closure}')) { + return $this->reflector = [$r, $callable, 'Closure']; + } + + if ($object = $r->getClosureThis()) { + $callable = [$object, $r->name]; + $callableName = get_debug_type($object).'::'.$r->name; + } elseif (\PHP_VERSION_ID >= 80111 && $class = $r->getClosureCalledClass()) { + $callableName = $class->name.'::'.$r->name; + } elseif (\PHP_VERSION_ID < 80111 && $class = $r->getClosureScopeClass()) { + $callableName = (\is_array($callable) ? $callable[0] : $class->name).'::'.$r->name; + } else { + $callable = $callableName = $r->name; + } + + if ($checkVisibility && \is_array($callable) && method_exists(...$callable) && !(new \ReflectionMethod(...$callable))->isPublic()) { + $callable = $r->getClosure(); + } + + return $this->reflector = [$r, $callable, $callableName]; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/ConditionalExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/ConditionalExpression.php new file mode 100644 index 00000000..d7db9935 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/ConditionalExpression.php @@ -0,0 +1,45 @@ + $expr1, 'expr2' => $expr2, 'expr3' => $expr3], [], $lineno); + } + + public function compile(Compiler $compiler): void + { + // Ternary with no then uses Elvis operator + if ($this->getNode('expr1') === $this->getNode('expr2')) { + $compiler + ->raw('((') + ->subcompile($this->getNode('expr1')) + ->raw(') ?: (') + ->subcompile($this->getNode('expr3')) + ->raw('))'); + } else { + $compiler + ->raw('((') + ->subcompile($this->getNode('expr1')) + ->raw(') ? (') + ->subcompile($this->getNode('expr2')) + ->raw(') : (') + ->subcompile($this->getNode('expr3')) + ->raw('))'); + } + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/ConstantExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/ConstantExpression.php new file mode 100644 index 00000000..7ddbcc6f --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/ConstantExpression.php @@ -0,0 +1,28 @@ + $value], $lineno); + } + + public function compile(Compiler $compiler): void + { + $compiler->repr($this->getAttribute('value')); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Filter/DefaultFilter.php b/Sources/vendor/twig/twig/src/Node/Expression/Filter/DefaultFilter.php new file mode 100644 index 00000000..6a572d48 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Filter/DefaultFilter.php @@ -0,0 +1,52 @@ + + */ +class DefaultFilter extends FilterExpression +{ + public function __construct(Node $node, ConstantExpression $filterName, Node $arguments, int $lineno, string $tag = null) + { + $default = new FilterExpression($node, new ConstantExpression('default', $node->getTemplateLine()), $arguments, $node->getTemplateLine()); + + if ('default' === $filterName->getAttribute('value') && ($node instanceof NameExpression || $node instanceof GetAttrExpression)) { + $test = new DefinedTest(clone $node, 'defined', new Node(), $node->getTemplateLine()); + $false = \count($arguments) ? $arguments->getNode(0) : new ConstantExpression('', $node->getTemplateLine()); + + $node = new ConditionalExpression($test, $default, $false, $node->getTemplateLine()); + } else { + $node = $default; + } + + parent::__construct($node, $filterName, $arguments, $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler->subcompile($this->getNode('node')); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/FilterExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/FilterExpression.php new file mode 100644 index 00000000..0fc15886 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/FilterExpression.php @@ -0,0 +1,40 @@ + $node, 'filter' => $filterName, 'arguments' => $arguments], [], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $name = $this->getNode('filter')->getAttribute('value'); + $filter = $compiler->getEnvironment()->getFilter($name); + + $this->setAttribute('name', $name); + $this->setAttribute('type', 'filter'); + $this->setAttribute('needs_environment', $filter->needsEnvironment()); + $this->setAttribute('needs_context', $filter->needsContext()); + $this->setAttribute('arguments', $filter->getArguments()); + $this->setAttribute('callable', $filter->getCallable()); + $this->setAttribute('is_variadic', $filter->isVariadic()); + + $this->compileCallable($compiler); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/FunctionExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/FunctionExpression.php new file mode 100644 index 00000000..71269775 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/FunctionExpression.php @@ -0,0 +1,43 @@ + $arguments], ['name' => $name, 'is_defined_test' => false], $lineno); + } + + public function compile(Compiler $compiler) + { + $name = $this->getAttribute('name'); + $function = $compiler->getEnvironment()->getFunction($name); + + $this->setAttribute('name', $name); + $this->setAttribute('type', 'function'); + $this->setAttribute('needs_environment', $function->needsEnvironment()); + $this->setAttribute('needs_context', $function->needsContext()); + $this->setAttribute('arguments', $function->getArguments()); + $callable = $function->getCallable(); + if ('constant' === $name && $this->getAttribute('is_defined_test')) { + $callable = 'twig_constant_is_defined'; + } + $this->setAttribute('callable', $callable); + $this->setAttribute('is_variadic', $function->isVariadic()); + + $this->compileCallable($compiler); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/GetAttrExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/GetAttrExpression.php new file mode 100644 index 00000000..e6a75ce9 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/GetAttrExpression.php @@ -0,0 +1,87 @@ + $node, 'attribute' => $attribute]; + if (null !== $arguments) { + $nodes['arguments'] = $arguments; + } + + parent::__construct($nodes, ['type' => $type, 'is_defined_test' => false, 'ignore_strict_check' => false, 'optimizable' => true], $lineno); + } + + public function compile(Compiler $compiler): void + { + $env = $compiler->getEnvironment(); + + // optimize array calls + if ( + $this->getAttribute('optimizable') + && (!$env->isStrictVariables() || $this->getAttribute('ignore_strict_check')) + && !$this->getAttribute('is_defined_test') + && Template::ARRAY_CALL === $this->getAttribute('type') + ) { + $var = '$'.$compiler->getVarName(); + $compiler + ->raw('(('.$var.' = ') + ->subcompile($this->getNode('node')) + ->raw(') && is_array(') + ->raw($var) + ->raw(') || ') + ->raw($var) + ->raw(' instanceof ArrayAccess ? (') + ->raw($var) + ->raw('[') + ->subcompile($this->getNode('attribute')) + ->raw('] ?? null) : null)') + ; + + return; + } + + $compiler->raw('twig_get_attribute($this->env, $this->source, '); + + if ($this->getAttribute('ignore_strict_check')) { + $this->getNode('node')->setAttribute('ignore_strict_check', true); + } + + $compiler + ->subcompile($this->getNode('node')) + ->raw(', ') + ->subcompile($this->getNode('attribute')) + ; + + if ($this->hasNode('arguments')) { + $compiler->raw(', ')->subcompile($this->getNode('arguments')); + } else { + $compiler->raw(', []'); + } + + $compiler->raw(', ') + ->repr($this->getAttribute('type')) + ->raw(', ')->repr($this->getAttribute('is_defined_test')) + ->raw(', ')->repr($this->getAttribute('ignore_strict_check')) + ->raw(', ')->repr($env->hasExtension(SandboxExtension::class)) + ->raw(', ')->repr($this->getNode('node')->getTemplateLine()) + ->raw(')') + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/InlinePrint.php b/Sources/vendor/twig/twig/src/Node/Expression/InlinePrint.php new file mode 100644 index 00000000..1ad4751e --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/InlinePrint.php @@ -0,0 +1,35 @@ + $node], [], $lineno); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->raw('print (') + ->subcompile($this->getNode('node')) + ->raw(')') + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/MethodCallExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/MethodCallExpression.php new file mode 100644 index 00000000..d5ec0b6e --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/MethodCallExpression.php @@ -0,0 +1,62 @@ + $node, 'arguments' => $arguments], ['method' => $method, 'safe' => false, 'is_defined_test' => false], $lineno); + + if ($node instanceof NameExpression) { + $node->setAttribute('always_defined', true); + } + } + + public function compile(Compiler $compiler): void + { + if ($this->getAttribute('is_defined_test')) { + $compiler + ->raw('method_exists($macros[') + ->repr($this->getNode('node')->getAttribute('name')) + ->raw('], ') + ->repr($this->getAttribute('method')) + ->raw(')') + ; + + return; + } + + $compiler + ->raw('twig_call_macro($macros[') + ->repr($this->getNode('node')->getAttribute('name')) + ->raw('], ') + ->repr($this->getAttribute('method')) + ->raw(', [') + ; + $first = true; + foreach ($this->getNode('arguments')->getKeyValuePairs() as $pair) { + if (!$first) { + $compiler->raw(', '); + } + $first = false; + + $compiler->subcompile($pair['value']); + } + $compiler + ->raw('], ') + ->repr($this->getTemplateLine()) + ->raw(', $context, $this->getSourceContext())'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/NameExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/NameExpression.php new file mode 100644 index 00000000..c3563f01 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/NameExpression.php @@ -0,0 +1,97 @@ + '$this->getTemplateName()', + '_context' => '$context', + '_charset' => '$this->env->getCharset()', + ]; + + public function __construct(string $name, int $lineno) + { + parent::__construct([], ['name' => $name, 'is_defined_test' => false, 'ignore_strict_check' => false, 'always_defined' => false], $lineno); + } + + public function compile(Compiler $compiler): void + { + $name = $this->getAttribute('name'); + + $compiler->addDebugInfo($this); + + if ($this->getAttribute('is_defined_test')) { + if ($this->isSpecial()) { + $compiler->repr(true); + } elseif (\PHP_VERSION_ID >= 70400) { + $compiler + ->raw('array_key_exists(') + ->string($name) + ->raw(', $context)') + ; + } else { + $compiler + ->raw('(isset($context[') + ->string($name) + ->raw(']) || array_key_exists(') + ->string($name) + ->raw(', $context))') + ; + } + } elseif ($this->isSpecial()) { + $compiler->raw($this->specialVars[$name]); + } elseif ($this->getAttribute('always_defined')) { + $compiler + ->raw('$context[') + ->string($name) + ->raw(']') + ; + } else { + if ($this->getAttribute('ignore_strict_check') || !$compiler->getEnvironment()->isStrictVariables()) { + $compiler + ->raw('($context[') + ->string($name) + ->raw('] ?? null)') + ; + } else { + $compiler + ->raw('(isset($context[') + ->string($name) + ->raw(']) || array_key_exists(') + ->string($name) + ->raw(', $context) ? $context[') + ->string($name) + ->raw('] : (function () { throw new RuntimeError(\'Variable ') + ->string($name) + ->raw(' does not exist.\', ') + ->repr($this->lineno) + ->raw(', $this->source); })()') + ->raw(')') + ; + } + } + } + + public function isSpecial() + { + return isset($this->specialVars[$this->getAttribute('name')]); + } + + public function isSimple() + { + return !$this->isSpecial() && !$this->getAttribute('is_defined_test'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/NullCoalesceExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/NullCoalesceExpression.php new file mode 100644 index 00000000..a72bc4fc --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/NullCoalesceExpression.php @@ -0,0 +1,60 @@ +getTemplateLine()); + // for "block()", we don't need the null test as the return value is always a string + if (!$left instanceof BlockReferenceExpression) { + $test = new AndBinary( + $test, + new NotUnary(new NullTest($left, 'null', new Node(), $left->getTemplateLine()), $left->getTemplateLine()), + $left->getTemplateLine() + ); + } + + parent::__construct($test, $left, $right, $lineno); + } + + public function compile(Compiler $compiler): void + { + /* + * This optimizes only one case. PHP 7 also supports more complex expressions + * that can return null. So, for instance, if log is defined, log("foo") ?? "..." works, + * but log($a["foo"]) ?? "..." does not if $a["foo"] is not defined. More advanced + * cases might be implemented as an optimizer node visitor, but has not been done + * as benefits are probably not worth the added complexity. + */ + if ($this->getNode('expr2') instanceof NameExpression) { + $this->getNode('expr2')->setAttribute('always_defined', true); + $compiler + ->raw('((') + ->subcompile($this->getNode('expr2')) + ->raw(') ?? (') + ->subcompile($this->getNode('expr3')) + ->raw('))') + ; + } else { + parent::compile($compiler); + } + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/ParentExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/ParentExpression.php new file mode 100644 index 00000000..25491971 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/ParentExpression.php @@ -0,0 +1,46 @@ + + */ +class ParentExpression extends AbstractExpression +{ + public function __construct(string $name, int $lineno, string $tag = null) + { + parent::__construct([], ['output' => false, 'name' => $name], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + if ($this->getAttribute('output')) { + $compiler + ->addDebugInfo($this) + ->write('$this->displayParentBlock(') + ->string($this->getAttribute('name')) + ->raw(", \$context, \$blocks);\n") + ; + } else { + $compiler + ->raw('$this->renderParentBlock(') + ->string($this->getAttribute('name')) + ->raw(', $context, $blocks)') + ; + } + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/TempNameExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/TempNameExpression.php new file mode 100644 index 00000000..004c704a --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/TempNameExpression.php @@ -0,0 +1,31 @@ + $name], $lineno); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->raw('$_') + ->raw($this->getAttribute('name')) + ->raw('_') + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Test/ConstantTest.php b/Sources/vendor/twig/twig/src/Node/Expression/Test/ConstantTest.php new file mode 100644 index 00000000..57e9319d --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Test/ConstantTest.php @@ -0,0 +1,49 @@ + + */ +class ConstantTest extends TestExpression +{ + public function compile(Compiler $compiler): void + { + $compiler + ->raw('(') + ->subcompile($this->getNode('node')) + ->raw(' === constant(') + ; + + if ($this->getNode('arguments')->hasNode(1)) { + $compiler + ->raw('get_class(') + ->subcompile($this->getNode('arguments')->getNode(1)) + ->raw(')."::".') + ; + } + + $compiler + ->subcompile($this->getNode('arguments')->getNode(0)) + ->raw('))') + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Test/DefinedTest.php b/Sources/vendor/twig/twig/src/Node/Expression/Test/DefinedTest.php new file mode 100644 index 00000000..3953bbbe --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Test/DefinedTest.php @@ -0,0 +1,74 @@ + + */ +class DefinedTest extends TestExpression +{ + public function __construct(Node $node, string $name, ?Node $arguments, int $lineno) + { + if ($node instanceof NameExpression) { + $node->setAttribute('is_defined_test', true); + } elseif ($node instanceof GetAttrExpression) { + $node->setAttribute('is_defined_test', true); + $this->changeIgnoreStrictCheck($node); + } elseif ($node instanceof BlockReferenceExpression) { + $node->setAttribute('is_defined_test', true); + } elseif ($node instanceof FunctionExpression && 'constant' === $node->getAttribute('name')) { + $node->setAttribute('is_defined_test', true); + } elseif ($node instanceof ConstantExpression || $node instanceof ArrayExpression) { + $node = new ConstantExpression(true, $node->getTemplateLine()); + } elseif ($node instanceof MethodCallExpression) { + $node->setAttribute('is_defined_test', true); + } else { + throw new SyntaxError('The "defined" test only works with simple variables.', $lineno); + } + + parent::__construct($node, $name, $arguments, $lineno); + } + + private function changeIgnoreStrictCheck(GetAttrExpression $node) + { + $node->setAttribute('optimizable', false); + $node->setAttribute('ignore_strict_check', true); + + if ($node->getNode('node') instanceof GetAttrExpression) { + $this->changeIgnoreStrictCheck($node->getNode('node')); + } + } + + public function compile(Compiler $compiler): void + { + $compiler->subcompile($this->getNode('node')); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Test/DivisiblebyTest.php b/Sources/vendor/twig/twig/src/Node/Expression/Test/DivisiblebyTest.php new file mode 100644 index 00000000..4cb3ee09 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Test/DivisiblebyTest.php @@ -0,0 +1,36 @@ + + */ +class DivisiblebyTest extends TestExpression +{ + public function compile(Compiler $compiler): void + { + $compiler + ->raw('(0 == ') + ->subcompile($this->getNode('node')) + ->raw(' % ') + ->subcompile($this->getNode('arguments')->getNode(0)) + ->raw(')') + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Test/EvenTest.php b/Sources/vendor/twig/twig/src/Node/Expression/Test/EvenTest.php new file mode 100644 index 00000000..a0e3ed62 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Test/EvenTest.php @@ -0,0 +1,35 @@ + + */ +class EvenTest extends TestExpression +{ + public function compile(Compiler $compiler): void + { + $compiler + ->raw('(') + ->subcompile($this->getNode('node')) + ->raw(' % 2 == 0') + ->raw(')') + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Test/NullTest.php b/Sources/vendor/twig/twig/src/Node/Expression/Test/NullTest.php new file mode 100644 index 00000000..45b54ae3 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Test/NullTest.php @@ -0,0 +1,34 @@ + + */ +class NullTest extends TestExpression +{ + public function compile(Compiler $compiler): void + { + $compiler + ->raw('(null === ') + ->subcompile($this->getNode('node')) + ->raw(')') + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Test/OddTest.php b/Sources/vendor/twig/twig/src/Node/Expression/Test/OddTest.php new file mode 100644 index 00000000..d56c7111 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Test/OddTest.php @@ -0,0 +1,35 @@ + + */ +class OddTest extends TestExpression +{ + public function compile(Compiler $compiler): void + { + $compiler + ->raw('(') + ->subcompile($this->getNode('node')) + ->raw(' % 2 != 0') + ->raw(')') + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Test/SameasTest.php b/Sources/vendor/twig/twig/src/Node/Expression/Test/SameasTest.php new file mode 100644 index 00000000..c96d2bc0 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Test/SameasTest.php @@ -0,0 +1,34 @@ + + */ +class SameasTest extends TestExpression +{ + public function compile(Compiler $compiler): void + { + $compiler + ->raw('(') + ->subcompile($this->getNode('node')) + ->raw(' === ') + ->subcompile($this->getNode('arguments')->getNode(0)) + ->raw(')') + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/TestExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/TestExpression.php new file mode 100644 index 00000000..e518bd8f --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/TestExpression.php @@ -0,0 +1,42 @@ + $node]; + if (null !== $arguments) { + $nodes['arguments'] = $arguments; + } + + parent::__construct($nodes, ['name' => $name], $lineno); + } + + public function compile(Compiler $compiler): void + { + $name = $this->getAttribute('name'); + $test = $compiler->getEnvironment()->getTest($name); + + $this->setAttribute('name', $name); + $this->setAttribute('type', 'test'); + $this->setAttribute('arguments', $test->getArguments()); + $this->setAttribute('callable', $test->getCallable()); + $this->setAttribute('is_variadic', $test->isVariadic()); + + $this->compileCallable($compiler); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Unary/AbstractUnary.php b/Sources/vendor/twig/twig/src/Node/Expression/Unary/AbstractUnary.php new file mode 100644 index 00000000..e31e3f84 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Unary/AbstractUnary.php @@ -0,0 +1,34 @@ + $node], [], $lineno); + } + + public function compile(Compiler $compiler): void + { + $compiler->raw(' '); + $this->operator($compiler); + $compiler->subcompile($this->getNode('node')); + } + + abstract public function operator(Compiler $compiler): Compiler; +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Unary/NegUnary.php b/Sources/vendor/twig/twig/src/Node/Expression/Unary/NegUnary.php new file mode 100644 index 00000000..dc2f2350 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Unary/NegUnary.php @@ -0,0 +1,23 @@ +raw('-'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Unary/NotUnary.php b/Sources/vendor/twig/twig/src/Node/Expression/Unary/NotUnary.php new file mode 100644 index 00000000..55c11bac --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Unary/NotUnary.php @@ -0,0 +1,23 @@ +raw('!'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/Unary/PosUnary.php b/Sources/vendor/twig/twig/src/Node/Expression/Unary/PosUnary.php new file mode 100644 index 00000000..4b0a0620 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/Unary/PosUnary.php @@ -0,0 +1,23 @@ +raw('+'); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Expression/VariadicExpression.php b/Sources/vendor/twig/twig/src/Node/Expression/VariadicExpression.php new file mode 100644 index 00000000..a1bdb48c --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Expression/VariadicExpression.php @@ -0,0 +1,24 @@ +raw('...'); + + parent::compile($compiler); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/FlushNode.php b/Sources/vendor/twig/twig/src/Node/FlushNode.php new file mode 100644 index 00000000..fa50a88e --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/FlushNode.php @@ -0,0 +1,35 @@ + + */ +class FlushNode extends Node +{ + public function __construct(int $lineno, string $tag) + { + parent::__construct([], [], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->addDebugInfo($this) + ->write("flush();\n") + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/ForLoopNode.php b/Sources/vendor/twig/twig/src/Node/ForLoopNode.php new file mode 100644 index 00000000..d5ce845a --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/ForLoopNode.php @@ -0,0 +1,49 @@ + + */ +class ForLoopNode extends Node +{ + public function __construct(int $lineno, string $tag = null) + { + parent::__construct([], ['with_loop' => false, 'ifexpr' => false, 'else' => false], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + if ($this->getAttribute('else')) { + $compiler->write("\$context['_iterated'] = true;\n"); + } + + if ($this->getAttribute('with_loop')) { + $compiler + ->write("++\$context['loop']['index0'];\n") + ->write("++\$context['loop']['index'];\n") + ->write("\$context['loop']['first'] = false;\n") + ->write("if (isset(\$context['loop']['length'])) {\n") + ->indent() + ->write("--\$context['loop']['revindex0'];\n") + ->write("--\$context['loop']['revindex'];\n") + ->write("\$context['loop']['last'] = 0 === \$context['loop']['revindex0'];\n") + ->outdent() + ->write("}\n") + ; + } + } +} diff --git a/Sources/vendor/twig/twig/src/Node/ForNode.php b/Sources/vendor/twig/twig/src/Node/ForNode.php new file mode 100644 index 00000000..04addfbf --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/ForNode.php @@ -0,0 +1,107 @@ + + */ +class ForNode extends Node +{ + private $loop; + + public function __construct(AssignNameExpression $keyTarget, AssignNameExpression $valueTarget, AbstractExpression $seq, ?Node $ifexpr, Node $body, ?Node $else, int $lineno, string $tag = null) + { + $body = new Node([$body, $this->loop = new ForLoopNode($lineno, $tag)]); + + $nodes = ['key_target' => $keyTarget, 'value_target' => $valueTarget, 'seq' => $seq, 'body' => $body]; + if (null !== $else) { + $nodes['else'] = $else; + } + + parent::__construct($nodes, ['with_loop' => true], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->addDebugInfo($this) + ->write("\$context['_parent'] = \$context;\n") + ->write("\$context['_seq'] = twig_ensure_traversable(") + ->subcompile($this->getNode('seq')) + ->raw(");\n") + ; + + if ($this->hasNode('else')) { + $compiler->write("\$context['_iterated'] = false;\n"); + } + + if ($this->getAttribute('with_loop')) { + $compiler + ->write("\$context['loop'] = [\n") + ->write(" 'parent' => \$context['_parent'],\n") + ->write(" 'index0' => 0,\n") + ->write(" 'index' => 1,\n") + ->write(" 'first' => true,\n") + ->write("];\n") + ->write("if (is_array(\$context['_seq']) || (is_object(\$context['_seq']) && \$context['_seq'] instanceof \Countable)) {\n") + ->indent() + ->write("\$length = count(\$context['_seq']);\n") + ->write("\$context['loop']['revindex0'] = \$length - 1;\n") + ->write("\$context['loop']['revindex'] = \$length;\n") + ->write("\$context['loop']['length'] = \$length;\n") + ->write("\$context['loop']['last'] = 1 === \$length;\n") + ->outdent() + ->write("}\n") + ; + } + + $this->loop->setAttribute('else', $this->hasNode('else')); + $this->loop->setAttribute('with_loop', $this->getAttribute('with_loop')); + + $compiler + ->write("foreach (\$context['_seq'] as ") + ->subcompile($this->getNode('key_target')) + ->raw(' => ') + ->subcompile($this->getNode('value_target')) + ->raw(") {\n") + ->indent() + ->subcompile($this->getNode('body')) + ->outdent() + ->write("}\n") + ; + + if ($this->hasNode('else')) { + $compiler + ->write("if (!\$context['_iterated']) {\n") + ->indent() + ->subcompile($this->getNode('else')) + ->outdent() + ->write("}\n") + ; + } + + $compiler->write("\$_parent = \$context['_parent'];\n"); + + // remove some "private" loop variables (needed for nested loops) + $compiler->write('unset($context[\'_seq\'], $context[\'_iterated\'], $context[\''.$this->getNode('key_target')->getAttribute('name').'\'], $context[\''.$this->getNode('value_target')->getAttribute('name').'\'], $context[\'_parent\'], $context[\'loop\']);'."\n"); + + // keep the values set in the inner context for variables defined in the outer context + $compiler->write("\$context = array_intersect_key(\$context, \$_parent) + \$_parent;\n"); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/IfNode.php b/Sources/vendor/twig/twig/src/Node/IfNode.php new file mode 100644 index 00000000..569ab795 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/IfNode.php @@ -0,0 +1,73 @@ + + */ +class IfNode extends Node +{ + public function __construct(Node $tests, ?Node $else, int $lineno, string $tag = null) + { + $nodes = ['tests' => $tests]; + if (null !== $else) { + $nodes['else'] = $else; + } + + parent::__construct($nodes, [], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler->addDebugInfo($this); + for ($i = 0, $count = \count($this->getNode('tests')); $i < $count; $i += 2) { + if ($i > 0) { + $compiler + ->outdent() + ->write('} elseif (') + ; + } else { + $compiler + ->write('if (') + ; + } + + $compiler + ->subcompile($this->getNode('tests')->getNode($i)) + ->raw(") {\n") + ->indent() + ; + // The node might not exists if the content is empty + if ($this->getNode('tests')->hasNode($i + 1)) { + $compiler->subcompile($this->getNode('tests')->getNode($i + 1)); + } + } + + if ($this->hasNode('else')) { + $compiler + ->outdent() + ->write("} else {\n") + ->indent() + ->subcompile($this->getNode('else')) + ; + } + + $compiler + ->outdent() + ->write("}\n"); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/ImportNode.php b/Sources/vendor/twig/twig/src/Node/ImportNode.php new file mode 100644 index 00000000..5378d799 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/ImportNode.php @@ -0,0 +1,63 @@ + + */ +class ImportNode extends Node +{ + public function __construct(AbstractExpression $expr, AbstractExpression $var, int $lineno, string $tag = null, bool $global = true) + { + parent::__construct(['expr' => $expr, 'var' => $var], ['global' => $global], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->addDebugInfo($this) + ->write('$macros[') + ->repr($this->getNode('var')->getAttribute('name')) + ->raw('] = ') + ; + + if ($this->getAttribute('global')) { + $compiler + ->raw('$this->macros[') + ->repr($this->getNode('var')->getAttribute('name')) + ->raw('] = ') + ; + } + + if ($this->getNode('expr') instanceof NameExpression && '_self' === $this->getNode('expr')->getAttribute('name')) { + $compiler->raw('$this'); + } else { + $compiler + ->raw('$this->loadTemplate(') + ->subcompile($this->getNode('expr')) + ->raw(', ') + ->repr($this->getTemplateName()) + ->raw(', ') + ->repr($this->getTemplateLine()) + ->raw(')->unwrap()') + ; + } + + $compiler->raw(";\n"); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/IncludeNode.php b/Sources/vendor/twig/twig/src/Node/IncludeNode.php new file mode 100644 index 00000000..d540d6b2 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/IncludeNode.php @@ -0,0 +1,106 @@ + + */ +class IncludeNode extends Node implements NodeOutputInterface +{ + public function __construct(AbstractExpression $expr, ?AbstractExpression $variables, bool $only, bool $ignoreMissing, int $lineno, string $tag = null) + { + $nodes = ['expr' => $expr]; + if (null !== $variables) { + $nodes['variables'] = $variables; + } + + parent::__construct($nodes, ['only' => $only, 'ignore_missing' => $ignoreMissing], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler->addDebugInfo($this); + + if ($this->getAttribute('ignore_missing')) { + $template = $compiler->getVarName(); + + $compiler + ->write(sprintf("$%s = null;\n", $template)) + ->write("try {\n") + ->indent() + ->write(sprintf('$%s = ', $template)) + ; + + $this->addGetTemplate($compiler); + + $compiler + ->raw(";\n") + ->outdent() + ->write("} catch (LoaderError \$e) {\n") + ->indent() + ->write("// ignore missing template\n") + ->outdent() + ->write("}\n") + ->write(sprintf("if ($%s) {\n", $template)) + ->indent() + ->write(sprintf('$%s->display(', $template)) + ; + $this->addTemplateArguments($compiler); + $compiler + ->raw(");\n") + ->outdent() + ->write("}\n") + ; + } else { + $this->addGetTemplate($compiler); + $compiler->raw('->display('); + $this->addTemplateArguments($compiler); + $compiler->raw(");\n"); + } + } + + protected function addGetTemplate(Compiler $compiler) + { + $compiler + ->write('$this->loadTemplate(') + ->subcompile($this->getNode('expr')) + ->raw(', ') + ->repr($this->getTemplateName()) + ->raw(', ') + ->repr($this->getTemplateLine()) + ->raw(')') + ; + } + + protected function addTemplateArguments(Compiler $compiler) + { + if (!$this->hasNode('variables')) { + $compiler->raw(false === $this->getAttribute('only') ? '$context' : '[]'); + } elseif (false === $this->getAttribute('only')) { + $compiler + ->raw('twig_array_merge($context, ') + ->subcompile($this->getNode('variables')) + ->raw(')') + ; + } else { + $compiler->raw('twig_to_array('); + $compiler->subcompile($this->getNode('variables')); + $compiler->raw(')'); + } + } +} diff --git a/Sources/vendor/twig/twig/src/Node/MacroNode.php b/Sources/vendor/twig/twig/src/Node/MacroNode.php new file mode 100644 index 00000000..7f1b24d5 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/MacroNode.php @@ -0,0 +1,113 @@ + + */ +class MacroNode extends Node +{ + public const VARARGS_NAME = 'varargs'; + + public function __construct(string $name, Node $body, Node $arguments, int $lineno, string $tag = null) + { + foreach ($arguments as $argumentName => $argument) { + if (self::VARARGS_NAME === $argumentName) { + throw new SyntaxError(sprintf('The argument "%s" in macro "%s" cannot be defined because the variable "%s" is reserved for arbitrary arguments.', self::VARARGS_NAME, $name, self::VARARGS_NAME), $argument->getTemplateLine(), $argument->getSourceContext()); + } + } + + parent::__construct(['body' => $body, 'arguments' => $arguments], ['name' => $name], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->addDebugInfo($this) + ->write(sprintf('public function macro_%s(', $this->getAttribute('name'))) + ; + + $count = \count($this->getNode('arguments')); + $pos = 0; + foreach ($this->getNode('arguments') as $name => $default) { + $compiler + ->raw('$__'.$name.'__ = ') + ->subcompile($default) + ; + + if (++$pos < $count) { + $compiler->raw(', '); + } + } + + if ($count) { + $compiler->raw(', '); + } + + $compiler + ->raw('...$__varargs__') + ->raw(")\n") + ->write("{\n") + ->indent() + ->write("\$macros = \$this->macros;\n") + ->write("\$context = \$this->env->mergeGlobals([\n") + ->indent() + ; + + foreach ($this->getNode('arguments') as $name => $default) { + $compiler + ->write('') + ->string($name) + ->raw(' => $__'.$name.'__') + ->raw(",\n") + ; + } + + $compiler + ->write('') + ->string(self::VARARGS_NAME) + ->raw(' => ') + ; + + $compiler + ->raw("\$__varargs__,\n") + ->outdent() + ->write("]);\n\n") + ->write("\$blocks = [];\n\n") + ; + if ($compiler->getEnvironment()->isDebug()) { + $compiler->write("ob_start();\n"); + } else { + $compiler->write("ob_start(function () { return ''; });\n"); + } + $compiler + ->write("try {\n") + ->indent() + ->subcompile($this->getNode('body')) + ->raw("\n") + ->write("return ('' === \$tmp = ob_get_contents()) ? '' : new Markup(\$tmp, \$this->env->getCharset());\n") + ->outdent() + ->write("} finally {\n") + ->indent() + ->write("ob_end_clean();\n") + ->outdent() + ->write("}\n") + ->outdent() + ->write("}\n\n") + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/ModuleNode.php b/Sources/vendor/twig/twig/src/Node/ModuleNode.php new file mode 100644 index 00000000..9b485eea --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/ModuleNode.php @@ -0,0 +1,473 @@ + + */ +final class ModuleNode extends Node +{ + public function __construct(Node $body, ?AbstractExpression $parent, Node $blocks, Node $macros, Node $traits, $embeddedTemplates, Source $source) + { + $nodes = [ + 'body' => $body, + 'blocks' => $blocks, + 'macros' => $macros, + 'traits' => $traits, + 'display_start' => new Node(), + 'display_end' => new Node(), + 'constructor_start' => new Node(), + 'constructor_end' => new Node(), + 'class_end' => new Node(), + ]; + if (null !== $parent) { + $nodes['parent'] = $parent; + } + + // embedded templates are set as attributes so that they are only visited once by the visitors + parent::__construct($nodes, [ + 'index' => null, + 'embedded_templates' => $embeddedTemplates, + ], 1); + + // populate the template name of all node children + $this->setSourceContext($source); + } + + public function setIndex($index) + { + $this->setAttribute('index', $index); + } + + public function compile(Compiler $compiler): void + { + $this->compileTemplate($compiler); + + foreach ($this->getAttribute('embedded_templates') as $template) { + $compiler->subcompile($template); + } + } + + protected function compileTemplate(Compiler $compiler) + { + if (!$this->getAttribute('index')) { + $compiler->write('compileClassHeader($compiler); + + $this->compileConstructor($compiler); + + $this->compileGetParent($compiler); + + $this->compileDisplay($compiler); + + $compiler->subcompile($this->getNode('blocks')); + + $this->compileMacros($compiler); + + $this->compileGetTemplateName($compiler); + + $this->compileIsTraitable($compiler); + + $this->compileDebugInfo($compiler); + + $this->compileGetSourceContext($compiler); + + $this->compileClassFooter($compiler); + } + + protected function compileGetParent(Compiler $compiler) + { + if (!$this->hasNode('parent')) { + return; + } + $parent = $this->getNode('parent'); + + $compiler + ->write("protected function doGetParent(array \$context)\n", "{\n") + ->indent() + ->addDebugInfo($parent) + ->write('return ') + ; + + if ($parent instanceof ConstantExpression) { + $compiler->subcompile($parent); + } else { + $compiler + ->raw('$this->loadTemplate(') + ->subcompile($parent) + ->raw(', ') + ->repr($this->getSourceContext()->getName()) + ->raw(', ') + ->repr($parent->getTemplateLine()) + ->raw(')') + ; + } + + $compiler + ->raw(";\n") + ->outdent() + ->write("}\n\n") + ; + } + + protected function compileClassHeader(Compiler $compiler) + { + $compiler + ->write("\n\n") + ; + if (!$this->getAttribute('index')) { + $compiler + ->write("use Twig\Environment;\n") + ->write("use Twig\Error\LoaderError;\n") + ->write("use Twig\Error\RuntimeError;\n") + ->write("use Twig\Extension\SandboxExtension;\n") + ->write("use Twig\Markup;\n") + ->write("use Twig\Sandbox\SecurityError;\n") + ->write("use Twig\Sandbox\SecurityNotAllowedTagError;\n") + ->write("use Twig\Sandbox\SecurityNotAllowedFilterError;\n") + ->write("use Twig\Sandbox\SecurityNotAllowedFunctionError;\n") + ->write("use Twig\Source;\n") + ->write("use Twig\Template;\n\n") + ; + } + $compiler + // if the template name contains */, add a blank to avoid a PHP parse error + ->write('/* '.str_replace('*/', '* /', $this->getSourceContext()->getName())." */\n") + ->write('class '.$compiler->getEnvironment()->getTemplateClass($this->getSourceContext()->getName(), $this->getAttribute('index'))) + ->raw(" extends Template\n") + ->write("{\n") + ->indent() + ->write("private \$source;\n") + ->write("private \$macros = [];\n\n") + ; + } + + protected function compileConstructor(Compiler $compiler) + { + $compiler + ->write("public function __construct(Environment \$env)\n", "{\n") + ->indent() + ->subcompile($this->getNode('constructor_start')) + ->write("parent::__construct(\$env);\n\n") + ->write("\$this->source = \$this->getSourceContext();\n\n") + ; + + // parent + if (!$this->hasNode('parent')) { + $compiler->write("\$this->parent = false;\n\n"); + } + + $countTraits = \count($this->getNode('traits')); + if ($countTraits) { + // traits + foreach ($this->getNode('traits') as $i => $trait) { + $node = $trait->getNode('template'); + + $compiler + ->addDebugInfo($node) + ->write(sprintf('$_trait_%s = $this->loadTemplate(', $i)) + ->subcompile($node) + ->raw(', ') + ->repr($node->getTemplateName()) + ->raw(', ') + ->repr($node->getTemplateLine()) + ->raw(");\n") + ->write(sprintf("if (!\$_trait_%s->isTraitable()) {\n", $i)) + ->indent() + ->write("throw new RuntimeError('Template \"'.") + ->subcompile($trait->getNode('template')) + ->raw(".'\" cannot be used as a trait.', ") + ->repr($node->getTemplateLine()) + ->raw(", \$this->source);\n") + ->outdent() + ->write("}\n") + ->write(sprintf("\$_trait_%s_blocks = \$_trait_%s->getBlocks();\n\n", $i, $i)) + ; + + foreach ($trait->getNode('targets') as $key => $value) { + $compiler + ->write(sprintf('if (!isset($_trait_%s_blocks[', $i)) + ->string($key) + ->raw("])) {\n") + ->indent() + ->write("throw new RuntimeError('Block ") + ->string($key) + ->raw(' is not defined in trait ') + ->subcompile($trait->getNode('template')) + ->raw(".', ") + ->repr($node->getTemplateLine()) + ->raw(", \$this->source);\n") + ->outdent() + ->write("}\n\n") + + ->write(sprintf('$_trait_%s_blocks[', $i)) + ->subcompile($value) + ->raw(sprintf('] = $_trait_%s_blocks[', $i)) + ->string($key) + ->raw(sprintf(']; unset($_trait_%s_blocks[', $i)) + ->string($key) + ->raw("]);\n\n") + ; + } + } + + if ($countTraits > 1) { + $compiler + ->write("\$this->traits = array_merge(\n") + ->indent() + ; + + for ($i = 0; $i < $countTraits; ++$i) { + $compiler + ->write(sprintf('$_trait_%s_blocks'.($i == $countTraits - 1 ? '' : ',')."\n", $i)) + ; + } + + $compiler + ->outdent() + ->write(");\n\n") + ; + } else { + $compiler + ->write("\$this->traits = \$_trait_0_blocks;\n\n") + ; + } + + $compiler + ->write("\$this->blocks = array_merge(\n") + ->indent() + ->write("\$this->traits,\n") + ->write("[\n") + ; + } else { + $compiler + ->write("\$this->blocks = [\n") + ; + } + + // blocks + $compiler + ->indent() + ; + + foreach ($this->getNode('blocks') as $name => $node) { + $compiler + ->write(sprintf("'%s' => [\$this, 'block_%s'],\n", $name, $name)) + ; + } + + if ($countTraits) { + $compiler + ->outdent() + ->write("]\n") + ->outdent() + ->write(");\n") + ; + } else { + $compiler + ->outdent() + ->write("];\n") + ; + } + + $compiler + ->subcompile($this->getNode('constructor_end')) + ->outdent() + ->write("}\n\n") + ; + } + + protected function compileDisplay(Compiler $compiler) + { + $compiler + ->write("protected function doDisplay(array \$context, array \$blocks = [])\n", "{\n") + ->indent() + ->write("\$macros = \$this->macros;\n") + ->subcompile($this->getNode('display_start')) + ->subcompile($this->getNode('body')) + ; + + if ($this->hasNode('parent')) { + $parent = $this->getNode('parent'); + + $compiler->addDebugInfo($parent); + if ($parent instanceof ConstantExpression) { + $compiler + ->write('$this->parent = $this->loadTemplate(') + ->subcompile($parent) + ->raw(', ') + ->repr($this->getSourceContext()->getName()) + ->raw(', ') + ->repr($parent->getTemplateLine()) + ->raw(");\n") + ; + $compiler->write('$this->parent'); + } else { + $compiler->write('$this->getParent($context)'); + } + $compiler->raw("->display(\$context, array_merge(\$this->blocks, \$blocks));\n"); + } + + $compiler + ->subcompile($this->getNode('display_end')) + ->outdent() + ->write("}\n\n") + ; + } + + protected function compileClassFooter(Compiler $compiler) + { + $compiler + ->subcompile($this->getNode('class_end')) + ->outdent() + ->write("}\n") + ; + } + + protected function compileMacros(Compiler $compiler) + { + $compiler->subcompile($this->getNode('macros')); + } + + protected function compileGetTemplateName(Compiler $compiler) + { + $compiler + ->write("/**\n") + ->write(" * @codeCoverageIgnore\n") + ->write(" */\n") + ->write("public function getTemplateName()\n", "{\n") + ->indent() + ->write('return ') + ->repr($this->getSourceContext()->getName()) + ->raw(";\n") + ->outdent() + ->write("}\n\n") + ; + } + + protected function compileIsTraitable(Compiler $compiler) + { + // A template can be used as a trait if: + // * it has no parent + // * it has no macros + // * it has no body + // + // Put another way, a template can be used as a trait if it + // only contains blocks and use statements. + $traitable = !$this->hasNode('parent') && 0 === \count($this->getNode('macros')); + if ($traitable) { + if ($this->getNode('body') instanceof BodyNode) { + $nodes = $this->getNode('body')->getNode(0); + } else { + $nodes = $this->getNode('body'); + } + + if (!\count($nodes)) { + $nodes = new Node([$nodes]); + } + + foreach ($nodes as $node) { + if (!\count($node)) { + continue; + } + + if ($node instanceof TextNode && ctype_space($node->getAttribute('data'))) { + continue; + } + + if ($node instanceof BlockReferenceNode) { + continue; + } + + $traitable = false; + break; + } + } + + if ($traitable) { + return; + } + + $compiler + ->write("/**\n") + ->write(" * @codeCoverageIgnore\n") + ->write(" */\n") + ->write("public function isTraitable()\n", "{\n") + ->indent() + ->write(sprintf("return %s;\n", $traitable ? 'true' : 'false')) + ->outdent() + ->write("}\n\n") + ; + } + + protected function compileDebugInfo(Compiler $compiler) + { + $compiler + ->write("/**\n") + ->write(" * @codeCoverageIgnore\n") + ->write(" */\n") + ->write("public function getDebugInfo()\n", "{\n") + ->indent() + ->write(sprintf("return %s;\n", str_replace("\n", '', var_export(array_reverse($compiler->getDebugInfo(), true), true)))) + ->outdent() + ->write("}\n\n") + ; + } + + protected function compileGetSourceContext(Compiler $compiler) + { + $compiler + ->write("public function getSourceContext()\n", "{\n") + ->indent() + ->write('return new Source(') + ->string($compiler->getEnvironment()->isDebug() ? $this->getSourceContext()->getCode() : '') + ->raw(', ') + ->string($this->getSourceContext()->getName()) + ->raw(', ') + ->string($this->getSourceContext()->getPath()) + ->raw(");\n") + ->outdent() + ->write("}\n") + ; + } + + protected function compileLoadTemplate(Compiler $compiler, $node, $var) + { + if ($node instanceof ConstantExpression) { + $compiler + ->write(sprintf('%s = $this->loadTemplate(', $var)) + ->subcompile($node) + ->raw(', ') + ->repr($node->getTemplateName()) + ->raw(', ') + ->repr($node->getTemplateLine()) + ->raw(");\n") + ; + } else { + throw new \LogicException('Trait templates can only be constant nodes.'); + } + } +} diff --git a/Sources/vendor/twig/twig/src/Node/Node.php b/Sources/vendor/twig/twig/src/Node/Node.php new file mode 100644 index 00000000..30659ae0 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/Node.php @@ -0,0 +1,178 @@ + + */ +class Node implements \Countable, \IteratorAggregate +{ + protected $nodes; + protected $attributes; + protected $lineno; + protected $tag; + + private $sourceContext; + + /** + * @param array $nodes An array of named nodes + * @param array $attributes An array of attributes (should not be nodes) + * @param int $lineno The line number + * @param string $tag The tag name associated with the Node + */ + public function __construct(array $nodes = [], array $attributes = [], int $lineno = 0, string $tag = null) + { + foreach ($nodes as $name => $node) { + if (!$node instanceof self) { + throw new \InvalidArgumentException(sprintf('Using "%s" for the value of node "%s" of "%s" is not supported. You must pass a \Twig\Node\Node instance.', \is_object($node) ? \get_class($node) : (null === $node ? 'null' : \gettype($node)), $name, static::class)); + } + } + $this->nodes = $nodes; + $this->attributes = $attributes; + $this->lineno = $lineno; + $this->tag = $tag; + } + + public function __toString() + { + $attributes = []; + foreach ($this->attributes as $name => $value) { + $attributes[] = sprintf('%s: %s', $name, str_replace("\n", '', var_export($value, true))); + } + + $repr = [static::class.'('.implode(', ', $attributes)]; + + if (\count($this->nodes)) { + foreach ($this->nodes as $name => $node) { + $len = \strlen($name) + 4; + $noderepr = []; + foreach (explode("\n", (string) $node) as $line) { + $noderepr[] = str_repeat(' ', $len).$line; + } + + $repr[] = sprintf(' %s: %s', $name, ltrim(implode("\n", $noderepr))); + } + + $repr[] = ')'; + } else { + $repr[0] .= ')'; + } + + return implode("\n", $repr); + } + + /** + * @return void + */ + public function compile(Compiler $compiler) + { + foreach ($this->nodes as $node) { + $node->compile($compiler); + } + } + + public function getTemplateLine(): int + { + return $this->lineno; + } + + public function getNodeTag(): ?string + { + return $this->tag; + } + + public function hasAttribute(string $name): bool + { + return \array_key_exists($name, $this->attributes); + } + + public function getAttribute(string $name) + { + if (!\array_key_exists($name, $this->attributes)) { + throw new \LogicException(sprintf('Attribute "%s" does not exist for Node "%s".', $name, static::class)); + } + + return $this->attributes[$name]; + } + + public function setAttribute(string $name, $value): void + { + $this->attributes[$name] = $value; + } + + public function removeAttribute(string $name): void + { + unset($this->attributes[$name]); + } + + public function hasNode(string $name): bool + { + return isset($this->nodes[$name]); + } + + public function getNode(string $name): self + { + if (!isset($this->nodes[$name])) { + throw new \LogicException(sprintf('Node "%s" does not exist for Node "%s".', $name, static::class)); + } + + return $this->nodes[$name]; + } + + public function setNode(string $name, self $node): void + { + $this->nodes[$name] = $node; + } + + public function removeNode(string $name): void + { + unset($this->nodes[$name]); + } + + /** + * @return int + */ + #[\ReturnTypeWillChange] + public function count() + { + return \count($this->nodes); + } + + public function getIterator(): \Traversable + { + return new \ArrayIterator($this->nodes); + } + + public function getTemplateName(): ?string + { + return $this->sourceContext ? $this->sourceContext->getName() : null; + } + + public function setSourceContext(Source $source): void + { + $this->sourceContext = $source; + foreach ($this->nodes as $node) { + $node->setSourceContext($source); + } + } + + public function getSourceContext(): ?Source + { + return $this->sourceContext; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/NodeCaptureInterface.php b/Sources/vendor/twig/twig/src/Node/NodeCaptureInterface.php new file mode 100644 index 00000000..9fb6a0ca --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/NodeCaptureInterface.php @@ -0,0 +1,21 @@ + + */ +interface NodeCaptureInterface +{ +} diff --git a/Sources/vendor/twig/twig/src/Node/NodeOutputInterface.php b/Sources/vendor/twig/twig/src/Node/NodeOutputInterface.php new file mode 100644 index 00000000..5e35b406 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/NodeOutputInterface.php @@ -0,0 +1,21 @@ + + */ +interface NodeOutputInterface +{ +} diff --git a/Sources/vendor/twig/twig/src/Node/PrintNode.php b/Sources/vendor/twig/twig/src/Node/PrintNode.php new file mode 100644 index 00000000..60386d29 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/PrintNode.php @@ -0,0 +1,39 @@ + + */ +class PrintNode extends Node implements NodeOutputInterface +{ + public function __construct(AbstractExpression $expr, int $lineno, string $tag = null) + { + parent::__construct(['expr' => $expr], [], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->addDebugInfo($this) + ->write('echo ') + ->subcompile($this->getNode('expr')) + ->raw(";\n") + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/SandboxNode.php b/Sources/vendor/twig/twig/src/Node/SandboxNode.php new file mode 100644 index 00000000..4d5666bf --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/SandboxNode.php @@ -0,0 +1,52 @@ + + */ +class SandboxNode extends Node +{ + public function __construct(Node $body, int $lineno, string $tag = null) + { + parent::__construct(['body' => $body], [], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->addDebugInfo($this) + ->write("if (!\$alreadySandboxed = \$this->sandbox->isSandboxed()) {\n") + ->indent() + ->write("\$this->sandbox->enableSandbox();\n") + ->outdent() + ->write("}\n") + ->write("try {\n") + ->indent() + ->subcompile($this->getNode('body')) + ->outdent() + ->write("} finally {\n") + ->indent() + ->write("if (!\$alreadySandboxed) {\n") + ->indent() + ->write("\$this->sandbox->disableSandbox();\n") + ->outdent() + ->write("}\n") + ->outdent() + ->write("}\n") + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/SetNode.php b/Sources/vendor/twig/twig/src/Node/SetNode.php new file mode 100644 index 00000000..96b6bd8b --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/SetNode.php @@ -0,0 +1,105 @@ + + */ +class SetNode extends Node implements NodeCaptureInterface +{ + public function __construct(bool $capture, Node $names, Node $values, int $lineno, string $tag = null) + { + parent::__construct(['names' => $names, 'values' => $values], ['capture' => $capture, 'safe' => false], $lineno, $tag); + + /* + * Optimizes the node when capture is used for a large block of text. + * + * {% set foo %}foo{% endset %} is compiled to $context['foo'] = new Twig\Markup("foo"); + */ + if ($this->getAttribute('capture')) { + $this->setAttribute('safe', true); + + $values = $this->getNode('values'); + if ($values instanceof TextNode) { + $this->setNode('values', new ConstantExpression($values->getAttribute('data'), $values->getTemplateLine())); + $this->setAttribute('capture', false); + } + } + } + + public function compile(Compiler $compiler): void + { + $compiler->addDebugInfo($this); + + if (\count($this->getNode('names')) > 1) { + $compiler->write('list('); + foreach ($this->getNode('names') as $idx => $node) { + if ($idx) { + $compiler->raw(', '); + } + + $compiler->subcompile($node); + } + $compiler->raw(')'); + } else { + if ($this->getAttribute('capture')) { + if ($compiler->getEnvironment()->isDebug()) { + $compiler->write("ob_start();\n"); + } else { + $compiler->write("ob_start(function () { return ''; });\n"); + } + $compiler + ->subcompile($this->getNode('values')) + ; + } + + $compiler->subcompile($this->getNode('names'), false); + + if ($this->getAttribute('capture')) { + $compiler->raw(" = ('' === \$tmp = ob_get_clean()) ? '' : new Markup(\$tmp, \$this->env->getCharset())"); + } + } + + if (!$this->getAttribute('capture')) { + $compiler->raw(' = '); + + if (\count($this->getNode('names')) > 1) { + $compiler->write('['); + foreach ($this->getNode('values') as $idx => $value) { + if ($idx) { + $compiler->raw(', '); + } + + $compiler->subcompile($value); + } + $compiler->raw(']'); + } else { + if ($this->getAttribute('safe')) { + $compiler + ->raw("('' === \$tmp = ") + ->subcompile($this->getNode('values')) + ->raw(") ? '' : new Markup(\$tmp, \$this->env->getCharset())") + ; + } else { + $compiler->subcompile($this->getNode('values')); + } + } + } + + $compiler->raw(";\n"); + } +} diff --git a/Sources/vendor/twig/twig/src/Node/TextNode.php b/Sources/vendor/twig/twig/src/Node/TextNode.php new file mode 100644 index 00000000..d74ebe63 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/TextNode.php @@ -0,0 +1,38 @@ + + */ +class TextNode extends Node implements NodeOutputInterface +{ + public function __construct(string $data, int $lineno) + { + parent::__construct([], ['data' => $data], $lineno); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->addDebugInfo($this) + ->write('echo ') + ->string($this->getAttribute('data')) + ->raw(";\n") + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Node/WithNode.php b/Sources/vendor/twig/twig/src/Node/WithNode.php new file mode 100644 index 00000000..2ac9123d --- /dev/null +++ b/Sources/vendor/twig/twig/src/Node/WithNode.php @@ -0,0 +1,70 @@ + + */ +class WithNode extends Node +{ + public function __construct(Node $body, ?Node $variables, bool $only, int $lineno, string $tag = null) + { + $nodes = ['body' => $body]; + if (null !== $variables) { + $nodes['variables'] = $variables; + } + + parent::__construct($nodes, ['only' => $only], $lineno, $tag); + } + + public function compile(Compiler $compiler): void + { + $compiler->addDebugInfo($this); + + $parentContextName = $compiler->getVarName(); + + $compiler->write(sprintf("\$%s = \$context;\n", $parentContextName)); + + if ($this->hasNode('variables')) { + $node = $this->getNode('variables'); + $varsName = $compiler->getVarName(); + $compiler + ->write(sprintf('$%s = ', $varsName)) + ->subcompile($node) + ->raw(";\n") + ->write(sprintf("if (!is_iterable(\$%s)) {\n", $varsName)) + ->indent() + ->write("throw new RuntimeError('Variables passed to the \"with\" tag must be a hash.', ") + ->repr($node->getTemplateLine()) + ->raw(", \$this->getSourceContext());\n") + ->outdent() + ->write("}\n") + ->write(sprintf("\$%s = twig_to_array(\$%s);\n", $varsName, $varsName)) + ; + + if ($this->getAttribute('only')) { + $compiler->write("\$context = [];\n"); + } + + $compiler->write(sprintf("\$context = \$this->env->mergeGlobals(array_merge(\$context, \$%s));\n", $varsName)); + } + + $compiler + ->subcompile($this->getNode('body')) + ->write(sprintf("\$context = \$%s;\n", $parentContextName)) + ; + } +} diff --git a/Sources/vendor/twig/twig/src/NodeTraverser.php b/Sources/vendor/twig/twig/src/NodeTraverser.php new file mode 100644 index 00000000..47a2d5ca --- /dev/null +++ b/Sources/vendor/twig/twig/src/NodeTraverser.php @@ -0,0 +1,76 @@ + + */ +final class NodeTraverser +{ + private $env; + private $visitors = []; + + /** + * @param NodeVisitorInterface[] $visitors + */ + public function __construct(Environment $env, array $visitors = []) + { + $this->env = $env; + foreach ($visitors as $visitor) { + $this->addVisitor($visitor); + } + } + + public function addVisitor(NodeVisitorInterface $visitor): void + { + $this->visitors[$visitor->getPriority()][] = $visitor; + } + + /** + * Traverses a node and calls the registered visitors. + */ + public function traverse(Node $node): Node + { + ksort($this->visitors); + foreach ($this->visitors as $visitors) { + foreach ($visitors as $visitor) { + $node = $this->traverseForVisitor($visitor, $node); + } + } + + return $node; + } + + private function traverseForVisitor(NodeVisitorInterface $visitor, Node $node): ?Node + { + $node = $visitor->enterNode($node, $this->env); + + foreach ($node as $k => $n) { + if (null !== $m = $this->traverseForVisitor($visitor, $n)) { + if ($m !== $n) { + $node->setNode($k, $m); + } + } else { + $node->removeNode($k); + } + } + + return $visitor->leaveNode($node, $this->env); + } +} diff --git a/Sources/vendor/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php b/Sources/vendor/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php new file mode 100644 index 00000000..d7036ae5 --- /dev/null +++ b/Sources/vendor/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php @@ -0,0 +1,49 @@ + + */ +abstract class AbstractNodeVisitor implements NodeVisitorInterface +{ + final public function enterNode(Node $node, Environment $env): Node + { + return $this->doEnterNode($node, $env); + } + + final public function leaveNode(Node $node, Environment $env): ?Node + { + return $this->doLeaveNode($node, $env); + } + + /** + * Called before child nodes are visited. + * + * @return Node The modified node + */ + abstract protected function doEnterNode(Node $node, Environment $env); + + /** + * Called after child nodes are visited. + * + * @return Node|null The modified node or null if the node must be removed + */ + abstract protected function doLeaveNode(Node $node, Environment $env); +} diff --git a/Sources/vendor/twig/twig/src/NodeVisitor/EscaperNodeVisitor.php b/Sources/vendor/twig/twig/src/NodeVisitor/EscaperNodeVisitor.php new file mode 100644 index 00000000..c390d7cc --- /dev/null +++ b/Sources/vendor/twig/twig/src/NodeVisitor/EscaperNodeVisitor.php @@ -0,0 +1,208 @@ + + * + * @internal + */ +final class EscaperNodeVisitor implements NodeVisitorInterface +{ + private $statusStack = []; + private $blocks = []; + private $safeAnalysis; + private $traverser; + private $defaultStrategy = false; + private $safeVars = []; + + public function __construct() + { + $this->safeAnalysis = new SafeAnalysisNodeVisitor(); + } + + public function enterNode(Node $node, Environment $env): Node + { + if ($node instanceof ModuleNode) { + if ($env->hasExtension(EscaperExtension::class) && $defaultStrategy = $env->getExtension(EscaperExtension::class)->getDefaultStrategy($node->getTemplateName())) { + $this->defaultStrategy = $defaultStrategy; + } + $this->safeVars = []; + $this->blocks = []; + } elseif ($node instanceof AutoEscapeNode) { + $this->statusStack[] = $node->getAttribute('value'); + } elseif ($node instanceof BlockNode) { + $this->statusStack[] = $this->blocks[$node->getAttribute('name')] ?? $this->needEscaping(); + } elseif ($node instanceof ImportNode) { + $this->safeVars[] = $node->getNode('var')->getAttribute('name'); + } + + return $node; + } + + public function leaveNode(Node $node, Environment $env): ?Node + { + if ($node instanceof ModuleNode) { + $this->defaultStrategy = false; + $this->safeVars = []; + $this->blocks = []; + } elseif ($node instanceof FilterExpression) { + return $this->preEscapeFilterNode($node, $env); + } elseif ($node instanceof PrintNode && false !== $type = $this->needEscaping()) { + $expression = $node->getNode('expr'); + if ($expression instanceof ConditionalExpression && $this->shouldUnwrapConditional($expression, $env, $type)) { + return new DoNode($this->unwrapConditional($expression, $env, $type), $expression->getTemplateLine()); + } + + return $this->escapePrintNode($node, $env, $type); + } + + if ($node instanceof AutoEscapeNode || $node instanceof BlockNode) { + array_pop($this->statusStack); + } elseif ($node instanceof BlockReferenceNode) { + $this->blocks[$node->getAttribute('name')] = $this->needEscaping(); + } + + return $node; + } + + private function shouldUnwrapConditional(ConditionalExpression $expression, Environment $env, string $type): bool + { + $expr2Safe = $this->isSafeFor($type, $expression->getNode('expr2'), $env); + $expr3Safe = $this->isSafeFor($type, $expression->getNode('expr3'), $env); + + return $expr2Safe !== $expr3Safe; + } + + private function unwrapConditional(ConditionalExpression $expression, Environment $env, string $type): ConditionalExpression + { + // convert "echo a ? b : c" to "a ? echo b : echo c" recursively + $expr2 = $expression->getNode('expr2'); + if ($expr2 instanceof ConditionalExpression && $this->shouldUnwrapConditional($expr2, $env, $type)) { + $expr2 = $this->unwrapConditional($expr2, $env, $type); + } else { + $expr2 = $this->escapeInlinePrintNode(new InlinePrint($expr2, $expr2->getTemplateLine()), $env, $type); + } + $expr3 = $expression->getNode('expr3'); + if ($expr3 instanceof ConditionalExpression && $this->shouldUnwrapConditional($expr3, $env, $type)) { + $expr3 = $this->unwrapConditional($expr3, $env, $type); + } else { + $expr3 = $this->escapeInlinePrintNode(new InlinePrint($expr3, $expr3->getTemplateLine()), $env, $type); + } + + return new ConditionalExpression($expression->getNode('expr1'), $expr2, $expr3, $expression->getTemplateLine()); + } + + private function escapeInlinePrintNode(InlinePrint $node, Environment $env, string $type): Node + { + $expression = $node->getNode('node'); + + if ($this->isSafeFor($type, $expression, $env)) { + return $node; + } + + return new InlinePrint($this->getEscaperFilter($type, $expression), $node->getTemplateLine()); + } + + private function escapePrintNode(PrintNode $node, Environment $env, string $type): Node + { + if (false === $type) { + return $node; + } + + $expression = $node->getNode('expr'); + + if ($this->isSafeFor($type, $expression, $env)) { + return $node; + } + + $class = \get_class($node); + + return new $class($this->getEscaperFilter($type, $expression), $node->getTemplateLine()); + } + + private function preEscapeFilterNode(FilterExpression $filter, Environment $env): FilterExpression + { + $name = $filter->getNode('filter')->getAttribute('value'); + + $type = $env->getFilter($name)->getPreEscape(); + if (null === $type) { + return $filter; + } + + $node = $filter->getNode('node'); + if ($this->isSafeFor($type, $node, $env)) { + return $filter; + } + + $filter->setNode('node', $this->getEscaperFilter($type, $node)); + + return $filter; + } + + private function isSafeFor(string $type, Node $expression, Environment $env): bool + { + $safe = $this->safeAnalysis->getSafe($expression); + + if (null === $safe) { + if (null === $this->traverser) { + $this->traverser = new NodeTraverser($env, [$this->safeAnalysis]); + } + + $this->safeAnalysis->setSafeVars($this->safeVars); + + $this->traverser->traverse($expression); + $safe = $this->safeAnalysis->getSafe($expression); + } + + return \in_array($type, $safe) || \in_array('all', $safe); + } + + private function needEscaping() + { + if (\count($this->statusStack)) { + return $this->statusStack[\count($this->statusStack) - 1]; + } + + return $this->defaultStrategy ?: false; + } + + private function getEscaperFilter(string $type, Node $node): FilterExpression + { + $line = $node->getTemplateLine(); + $name = new ConstantExpression('escape', $line); + $args = new Node([new ConstantExpression($type, $line), new ConstantExpression(null, $line), new ConstantExpression(true, $line)]); + + return new FilterExpression($node, $name, $args, $line); + } + + public function getPriority(): int + { + return 0; + } +} diff --git a/Sources/vendor/twig/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php b/Sources/vendor/twig/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php new file mode 100644 index 00000000..d6a7781b --- /dev/null +++ b/Sources/vendor/twig/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php @@ -0,0 +1,74 @@ + + * + * @internal + */ +final class MacroAutoImportNodeVisitor implements NodeVisitorInterface +{ + private $inAModule = false; + private $hasMacroCalls = false; + + public function enterNode(Node $node, Environment $env): Node + { + if ($node instanceof ModuleNode) { + $this->inAModule = true; + $this->hasMacroCalls = false; + } + + return $node; + } + + public function leaveNode(Node $node, Environment $env): Node + { + if ($node instanceof ModuleNode) { + $this->inAModule = false; + if ($this->hasMacroCalls) { + $node->getNode('constructor_end')->setNode('_auto_macro_import', new ImportNode(new NameExpression('_self', 0), new AssignNameExpression('_self', 0), 0, 'import', true)); + } + } elseif ($this->inAModule) { + if ( + $node instanceof GetAttrExpression + && $node->getNode('node') instanceof NameExpression + && '_self' === $node->getNode('node')->getAttribute('name') + && $node->getNode('attribute') instanceof ConstantExpression + ) { + $this->hasMacroCalls = true; + + $name = $node->getNode('attribute')->getAttribute('value'); + $node = new MethodCallExpression($node->getNode('node'), 'macro_'.$name, $node->getNode('arguments'), $node->getTemplateLine()); + $node->setAttribute('safe', true); + } + } + + return $node; + } + + public function getPriority(): int + { + // we must be ran before auto-escaping + return -10; + } +} diff --git a/Sources/vendor/twig/twig/src/NodeVisitor/NodeVisitorInterface.php b/Sources/vendor/twig/twig/src/NodeVisitor/NodeVisitorInterface.php new file mode 100644 index 00000000..59e836db --- /dev/null +++ b/Sources/vendor/twig/twig/src/NodeVisitor/NodeVisitorInterface.php @@ -0,0 +1,46 @@ + + */ +interface NodeVisitorInterface +{ + /** + * Called before child nodes are visited. + * + * @return Node The modified node + */ + public function enterNode(Node $node, Environment $env): Node; + + /** + * Called after child nodes are visited. + * + * @return Node|null The modified node or null if the node must be removed + */ + public function leaveNode(Node $node, Environment $env): ?Node; + + /** + * Returns the priority for this visitor. + * + * Priority should be between -10 and 10 (0 is the default). + * + * @return int The priority level + */ + public function getPriority(); +} diff --git a/Sources/vendor/twig/twig/src/NodeVisitor/OptimizerNodeVisitor.php b/Sources/vendor/twig/twig/src/NodeVisitor/OptimizerNodeVisitor.php new file mode 100644 index 00000000..6b39f009 --- /dev/null +++ b/Sources/vendor/twig/twig/src/NodeVisitor/OptimizerNodeVisitor.php @@ -0,0 +1,217 @@ + + * + * @internal + */ +final class OptimizerNodeVisitor implements NodeVisitorInterface +{ + public const OPTIMIZE_ALL = -1; + public const OPTIMIZE_NONE = 0; + public const OPTIMIZE_FOR = 2; + public const OPTIMIZE_RAW_FILTER = 4; + + private $loops = []; + private $loopsTargets = []; + private $optimizers; + + /** + * @param int $optimizers The optimizer mode + */ + public function __construct(int $optimizers = -1) + { + if ($optimizers > (self::OPTIMIZE_FOR | self::OPTIMIZE_RAW_FILTER)) { + throw new \InvalidArgumentException(sprintf('Optimizer mode "%s" is not valid.', $optimizers)); + } + + $this->optimizers = $optimizers; + } + + public function enterNode(Node $node, Environment $env): Node + { + if (self::OPTIMIZE_FOR === (self::OPTIMIZE_FOR & $this->optimizers)) { + $this->enterOptimizeFor($node); + } + + return $node; + } + + public function leaveNode(Node $node, Environment $env): ?Node + { + if (self::OPTIMIZE_FOR === (self::OPTIMIZE_FOR & $this->optimizers)) { + $this->leaveOptimizeFor($node); + } + + if (self::OPTIMIZE_RAW_FILTER === (self::OPTIMIZE_RAW_FILTER & $this->optimizers)) { + $node = $this->optimizeRawFilter($node); + } + + $node = $this->optimizePrintNode($node); + + return $node; + } + + /** + * Optimizes print nodes. + * + * It replaces: + * + * * "echo $this->render(Parent)Block()" with "$this->display(Parent)Block()" + */ + private function optimizePrintNode(Node $node): Node + { + if (!$node instanceof PrintNode) { + return $node; + } + + $exprNode = $node->getNode('expr'); + if ( + $exprNode instanceof BlockReferenceExpression + || $exprNode instanceof ParentExpression + ) { + $exprNode->setAttribute('output', true); + + return $exprNode; + } + + return $node; + } + + /** + * Removes "raw" filters. + */ + private function optimizeRawFilter(Node $node): Node + { + if ($node instanceof FilterExpression && 'raw' == $node->getNode('filter')->getAttribute('value')) { + return $node->getNode('node'); + } + + return $node; + } + + /** + * Optimizes "for" tag by removing the "loop" variable creation whenever possible. + */ + private function enterOptimizeFor(Node $node): void + { + if ($node instanceof ForNode) { + // disable the loop variable by default + $node->setAttribute('with_loop', false); + array_unshift($this->loops, $node); + array_unshift($this->loopsTargets, $node->getNode('value_target')->getAttribute('name')); + array_unshift($this->loopsTargets, $node->getNode('key_target')->getAttribute('name')); + } elseif (!$this->loops) { + // we are outside a loop + return; + } + + // when do we need to add the loop variable back? + + // the loop variable is referenced for the current loop + elseif ($node instanceof NameExpression && 'loop' === $node->getAttribute('name')) { + $node->setAttribute('always_defined', true); + $this->addLoopToCurrent(); + } + + // optimize access to loop targets + elseif ($node instanceof NameExpression && \in_array($node->getAttribute('name'), $this->loopsTargets)) { + $node->setAttribute('always_defined', true); + } + + // block reference + elseif ($node instanceof BlockReferenceNode || $node instanceof BlockReferenceExpression) { + $this->addLoopToCurrent(); + } + + // include without the only attribute + elseif ($node instanceof IncludeNode && !$node->getAttribute('only')) { + $this->addLoopToAll(); + } + + // include function without the with_context=false parameter + elseif ($node instanceof FunctionExpression + && 'include' === $node->getAttribute('name') + && (!$node->getNode('arguments')->hasNode('with_context') + || false !== $node->getNode('arguments')->getNode('with_context')->getAttribute('value') + ) + ) { + $this->addLoopToAll(); + } + + // the loop variable is referenced via an attribute + elseif ($node instanceof GetAttrExpression + && (!$node->getNode('attribute') instanceof ConstantExpression + || 'parent' === $node->getNode('attribute')->getAttribute('value') + ) + && (true === $this->loops[0]->getAttribute('with_loop') + || ($node->getNode('node') instanceof NameExpression + && 'loop' === $node->getNode('node')->getAttribute('name') + ) + ) + ) { + $this->addLoopToAll(); + } + } + + /** + * Optimizes "for" tag by removing the "loop" variable creation whenever possible. + */ + private function leaveOptimizeFor(Node $node): void + { + if ($node instanceof ForNode) { + array_shift($this->loops); + array_shift($this->loopsTargets); + array_shift($this->loopsTargets); + } + } + + private function addLoopToCurrent(): void + { + $this->loops[0]->setAttribute('with_loop', true); + } + + private function addLoopToAll(): void + { + foreach ($this->loops as $loop) { + $loop->setAttribute('with_loop', true); + } + } + + public function getPriority(): int + { + return 255; + } +} diff --git a/Sources/vendor/twig/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php b/Sources/vendor/twig/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php new file mode 100644 index 00000000..90d6f2e0 --- /dev/null +++ b/Sources/vendor/twig/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php @@ -0,0 +1,160 @@ +safeVars = $safeVars; + } + + public function getSafe(Node $node) + { + $hash = spl_object_hash($node); + if (!isset($this->data[$hash])) { + return; + } + + foreach ($this->data[$hash] as $bucket) { + if ($bucket['key'] !== $node) { + continue; + } + + if (\in_array('html_attr', $bucket['value'])) { + $bucket['value'][] = 'html'; + } + + return $bucket['value']; + } + } + + private function setSafe(Node $node, array $safe): void + { + $hash = spl_object_hash($node); + if (isset($this->data[$hash])) { + foreach ($this->data[$hash] as &$bucket) { + if ($bucket['key'] === $node) { + $bucket['value'] = $safe; + + return; + } + } + } + $this->data[$hash][] = [ + 'key' => $node, + 'value' => $safe, + ]; + } + + public function enterNode(Node $node, Environment $env): Node + { + return $node; + } + + public function leaveNode(Node $node, Environment $env): ?Node + { + if ($node instanceof ConstantExpression) { + // constants are marked safe for all + $this->setSafe($node, ['all']); + } elseif ($node instanceof BlockReferenceExpression) { + // blocks are safe by definition + $this->setSafe($node, ['all']); + } elseif ($node instanceof ParentExpression) { + // parent block is safe by definition + $this->setSafe($node, ['all']); + } elseif ($node instanceof ConditionalExpression) { + // intersect safeness of both operands + $safe = $this->intersectSafe($this->getSafe($node->getNode('expr2')), $this->getSafe($node->getNode('expr3'))); + $this->setSafe($node, $safe); + } elseif ($node instanceof FilterExpression) { + // filter expression is safe when the filter is safe + $name = $node->getNode('filter')->getAttribute('value'); + $args = $node->getNode('arguments'); + if ($filter = $env->getFilter($name)) { + $safe = $filter->getSafe($args); + if (null === $safe) { + $safe = $this->intersectSafe($this->getSafe($node->getNode('node')), $filter->getPreservesSafety()); + } + $this->setSafe($node, $safe); + } else { + $this->setSafe($node, []); + } + } elseif ($node instanceof FunctionExpression) { + // function expression is safe when the function is safe + $name = $node->getAttribute('name'); + $args = $node->getNode('arguments'); + if ($function = $env->getFunction($name)) { + $this->setSafe($node, $function->getSafe($args)); + } else { + $this->setSafe($node, []); + } + } elseif ($node instanceof MethodCallExpression) { + if ($node->getAttribute('safe')) { + $this->setSafe($node, ['all']); + } else { + $this->setSafe($node, []); + } + } elseif ($node instanceof GetAttrExpression && $node->getNode('node') instanceof NameExpression) { + $name = $node->getNode('node')->getAttribute('name'); + if (\in_array($name, $this->safeVars)) { + $this->setSafe($node, ['all']); + } else { + $this->setSafe($node, []); + } + } else { + $this->setSafe($node, []); + } + + return $node; + } + + private function intersectSafe(array $a = null, array $b = null): array + { + if (null === $a || null === $b) { + return []; + } + + if (\in_array('all', $a)) { + return $b; + } + + if (\in_array('all', $b)) { + return $a; + } + + return array_intersect($a, $b); + } + + public function getPriority(): int + { + return 0; + } +} diff --git a/Sources/vendor/twig/twig/src/NodeVisitor/SandboxNodeVisitor.php b/Sources/vendor/twig/twig/src/NodeVisitor/SandboxNodeVisitor.php new file mode 100644 index 00000000..1446cee6 --- /dev/null +++ b/Sources/vendor/twig/twig/src/NodeVisitor/SandboxNodeVisitor.php @@ -0,0 +1,136 @@ + + * + * @internal + */ +final class SandboxNodeVisitor implements NodeVisitorInterface +{ + private $inAModule = false; + private $tags; + private $filters; + private $functions; + private $needsToStringWrap = false; + + public function enterNode(Node $node, Environment $env): Node + { + if ($node instanceof ModuleNode) { + $this->inAModule = true; + $this->tags = []; + $this->filters = []; + $this->functions = []; + + return $node; + } elseif ($this->inAModule) { + // look for tags + if ($node->getNodeTag() && !isset($this->tags[$node->getNodeTag()])) { + $this->tags[$node->getNodeTag()] = $node; + } + + // look for filters + if ($node instanceof FilterExpression && !isset($this->filters[$node->getNode('filter')->getAttribute('value')])) { + $this->filters[$node->getNode('filter')->getAttribute('value')] = $node; + } + + // look for functions + if ($node instanceof FunctionExpression && !isset($this->functions[$node->getAttribute('name')])) { + $this->functions[$node->getAttribute('name')] = $node; + } + + // the .. operator is equivalent to the range() function + if ($node instanceof RangeBinary && !isset($this->functions['range'])) { + $this->functions['range'] = $node; + } + + if ($node instanceof PrintNode) { + $this->needsToStringWrap = true; + $this->wrapNode($node, 'expr'); + } + + if ($node instanceof SetNode && !$node->getAttribute('capture')) { + $this->needsToStringWrap = true; + } + + // wrap outer nodes that can implicitly call __toString() + if ($this->needsToStringWrap) { + if ($node instanceof ConcatBinary) { + $this->wrapNode($node, 'left'); + $this->wrapNode($node, 'right'); + } + if ($node instanceof FilterExpression) { + $this->wrapNode($node, 'node'); + $this->wrapArrayNode($node, 'arguments'); + } + if ($node instanceof FunctionExpression) { + $this->wrapArrayNode($node, 'arguments'); + } + } + } + + return $node; + } + + public function leaveNode(Node $node, Environment $env): ?Node + { + if ($node instanceof ModuleNode) { + $this->inAModule = false; + + $node->setNode('constructor_end', new Node([new CheckSecurityCallNode(), $node->getNode('constructor_end')])); + $node->setNode('class_end', new Node([new CheckSecurityNode($this->filters, $this->tags, $this->functions), $node->getNode('class_end')])); + } elseif ($this->inAModule) { + if ($node instanceof PrintNode || $node instanceof SetNode) { + $this->needsToStringWrap = false; + } + } + + return $node; + } + + private function wrapNode(Node $node, string $name): void + { + $expr = $node->getNode($name); + if ($expr instanceof NameExpression || $expr instanceof GetAttrExpression) { + $node->setNode($name, new CheckToStringNode($expr)); + } + } + + private function wrapArrayNode(Node $node, string $name): void + { + $args = $node->getNode($name); + foreach ($args as $name => $_) { + $this->wrapNode($args, $name); + } + } + + public function getPriority(): int + { + return 0; + } +} diff --git a/Sources/vendor/twig/twig/src/Parser.php b/Sources/vendor/twig/twig/src/Parser.php new file mode 100644 index 00000000..4016a5f3 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Parser.php @@ -0,0 +1,347 @@ + + */ +class Parser +{ + private $stack = []; + private $stream; + private $parent; + private $visitors; + private $expressionParser; + private $blocks; + private $blockStack; + private $macros; + private $env; + private $importedSymbols; + private $traits; + private $embeddedTemplates = []; + private $varNameSalt = 0; + + public function __construct(Environment $env) + { + $this->env = $env; + } + + public function getVarName(): string + { + return sprintf('__internal_parse_%d', $this->varNameSalt++); + } + + public function parse(TokenStream $stream, $test = null, bool $dropNeedle = false): ModuleNode + { + $vars = get_object_vars($this); + unset($vars['stack'], $vars['env'], $vars['handlers'], $vars['visitors'], $vars['expressionParser'], $vars['reservedMacroNames'], $vars['varNameSalt']); + $this->stack[] = $vars; + + // node visitors + if (null === $this->visitors) { + $this->visitors = $this->env->getNodeVisitors(); + } + + if (null === $this->expressionParser) { + $this->expressionParser = new ExpressionParser($this, $this->env); + } + + $this->stream = $stream; + $this->parent = null; + $this->blocks = []; + $this->macros = []; + $this->traits = []; + $this->blockStack = []; + $this->importedSymbols = [[]]; + $this->embeddedTemplates = []; + + try { + $body = $this->subparse($test, $dropNeedle); + + if (null !== $this->parent && null === $body = $this->filterBodyNodes($body)) { + $body = new Node(); + } + } catch (SyntaxError $e) { + if (!$e->getSourceContext()) { + $e->setSourceContext($this->stream->getSourceContext()); + } + + if (!$e->getTemplateLine()) { + $e->setTemplateLine($this->stream->getCurrent()->getLine()); + } + + throw $e; + } + + $node = new ModuleNode(new BodyNode([$body]), $this->parent, new Node($this->blocks), new Node($this->macros), new Node($this->traits), $this->embeddedTemplates, $stream->getSourceContext()); + + $traverser = new NodeTraverser($this->env, $this->visitors); + + $node = $traverser->traverse($node); + + // restore previous stack so previous parse() call can resume working + foreach (array_pop($this->stack) as $key => $val) { + $this->$key = $val; + } + + return $node; + } + + public function subparse($test, bool $dropNeedle = false): Node + { + $lineno = $this->getCurrentToken()->getLine(); + $rv = []; + while (!$this->stream->isEOF()) { + switch ($this->getCurrentToken()->getType()) { + case /* Token::TEXT_TYPE */ 0: + $token = $this->stream->next(); + $rv[] = new TextNode($token->getValue(), $token->getLine()); + break; + + case /* Token::VAR_START_TYPE */ 2: + $token = $this->stream->next(); + $expr = $this->expressionParser->parseExpression(); + $this->stream->expect(/* Token::VAR_END_TYPE */ 4); + $rv[] = new PrintNode($expr, $token->getLine()); + break; + + case /* Token::BLOCK_START_TYPE */ 1: + $this->stream->next(); + $token = $this->getCurrentToken(); + + if (/* Token::NAME_TYPE */ 5 !== $token->getType()) { + throw new SyntaxError('A block must start with a tag name.', $token->getLine(), $this->stream->getSourceContext()); + } + + if (null !== $test && $test($token)) { + if ($dropNeedle) { + $this->stream->next(); + } + + if (1 === \count($rv)) { + return $rv[0]; + } + + return new Node($rv, [], $lineno); + } + + if (!$subparser = $this->env->getTokenParser($token->getValue())) { + if (null !== $test) { + $e = new SyntaxError(sprintf('Unexpected "%s" tag', $token->getValue()), $token->getLine(), $this->stream->getSourceContext()); + + if (\is_array($test) && isset($test[0]) && $test[0] instanceof TokenParserInterface) { + $e->appendMessage(sprintf(' (expecting closing tag for the "%s" tag defined near line %s).', $test[0]->getTag(), $lineno)); + } + } else { + $e = new SyntaxError(sprintf('Unknown "%s" tag.', $token->getValue()), $token->getLine(), $this->stream->getSourceContext()); + $e->addSuggestions($token->getValue(), array_keys($this->env->getTokenParsers())); + } + + throw $e; + } + + $this->stream->next(); + + $subparser->setParser($this); + $node = $subparser->parse($token); + if (null !== $node) { + $rv[] = $node; + } + break; + + default: + throw new SyntaxError('Lexer or parser ended up in unsupported state.', $this->getCurrentToken()->getLine(), $this->stream->getSourceContext()); + } + } + + if (1 === \count($rv)) { + return $rv[0]; + } + + return new Node($rv, [], $lineno); + } + + public function getBlockStack(): array + { + return $this->blockStack; + } + + public function peekBlockStack() + { + return $this->blockStack[\count($this->blockStack) - 1] ?? null; + } + + public function popBlockStack(): void + { + array_pop($this->blockStack); + } + + public function pushBlockStack($name): void + { + $this->blockStack[] = $name; + } + + public function hasBlock(string $name): bool + { + return isset($this->blocks[$name]); + } + + public function getBlock(string $name): Node + { + return $this->blocks[$name]; + } + + public function setBlock(string $name, BlockNode $value): void + { + $this->blocks[$name] = new BodyNode([$value], [], $value->getTemplateLine()); + } + + public function hasMacro(string $name): bool + { + return isset($this->macros[$name]); + } + + public function setMacro(string $name, MacroNode $node): void + { + $this->macros[$name] = $node; + } + + public function addTrait($trait): void + { + $this->traits[] = $trait; + } + + public function hasTraits(): bool + { + return \count($this->traits) > 0; + } + + public function embedTemplate(ModuleNode $template) + { + $template->setIndex(mt_rand()); + + $this->embeddedTemplates[] = $template; + } + + public function addImportedSymbol(string $type, string $alias, string $name = null, AbstractExpression $node = null): void + { + $this->importedSymbols[0][$type][$alias] = ['name' => $name, 'node' => $node]; + } + + public function getImportedSymbol(string $type, string $alias) + { + // if the symbol does not exist in the current scope (0), try in the main/global scope (last index) + return $this->importedSymbols[0][$type][$alias] ?? ($this->importedSymbols[\count($this->importedSymbols) - 1][$type][$alias] ?? null); + } + + public function isMainScope(): bool + { + return 1 === \count($this->importedSymbols); + } + + public function pushLocalScope(): void + { + array_unshift($this->importedSymbols, []); + } + + public function popLocalScope(): void + { + array_shift($this->importedSymbols); + } + + public function getExpressionParser(): ExpressionParser + { + return $this->expressionParser; + } + + public function getParent(): ?Node + { + return $this->parent; + } + + public function setParent(?Node $parent): void + { + $this->parent = $parent; + } + + public function getStream(): TokenStream + { + return $this->stream; + } + + public function getCurrentToken(): Token + { + return $this->stream->getCurrent(); + } + + private function filterBodyNodes(Node $node, bool $nested = false): ?Node + { + // check that the body does not contain non-empty output nodes + if ( + ($node instanceof TextNode && !ctype_space($node->getAttribute('data'))) + || (!$node instanceof TextNode && !$node instanceof BlockReferenceNode && $node instanceof NodeOutputInterface) + ) { + if (str_contains((string) $node, \chr(0xEF).\chr(0xBB).\chr(0xBF))) { + $t = substr($node->getAttribute('data'), 3); + if ('' === $t || ctype_space($t)) { + // bypass empty nodes starting with a BOM + return null; + } + } + + throw new SyntaxError('A template that extends another one cannot include content outside Twig blocks. Did you forget to put the content inside a {% block %} tag?', $node->getTemplateLine(), $this->stream->getSourceContext()); + } + + // bypass nodes that "capture" the output + if ($node instanceof NodeCaptureInterface) { + // a "block" tag in such a node will serve as a block definition AND be displayed in place as well + return $node; + } + + // "block" tags that are not captured (see above) are only used for defining + // the content of the block. In such a case, nesting it does not work as + // expected as the definition is not part of the default template code flow. + if ($nested && $node instanceof BlockReferenceNode) { + throw new SyntaxError('A block definition cannot be nested under non-capturing nodes.', $node->getTemplateLine(), $this->stream->getSourceContext()); + } + + if ($node instanceof NodeOutputInterface) { + return null; + } + + // here, $nested means "being at the root level of a child template" + // we need to discard the wrapping "Node" for the "body" node + $nested = $nested || Node::class !== \get_class($node); + foreach ($node as $k => $n) { + if (null !== $n && null === $this->filterBodyNodes($n, $nested)) { + $node->removeNode($k); + } + } + + return $node; + } +} diff --git a/Sources/vendor/twig/twig/src/Profiler/Dumper/BaseDumper.php b/Sources/vendor/twig/twig/src/Profiler/Dumper/BaseDumper.php new file mode 100644 index 00000000..4da43e47 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Profiler/Dumper/BaseDumper.php @@ -0,0 +1,63 @@ + + */ +abstract class BaseDumper +{ + private $root; + + public function dump(Profile $profile): string + { + return $this->dumpProfile($profile); + } + + abstract protected function formatTemplate(Profile $profile, $prefix): string; + + abstract protected function formatNonTemplate(Profile $profile, $prefix): string; + + abstract protected function formatTime(Profile $profile, $percent): string; + + private function dumpProfile(Profile $profile, $prefix = '', $sibling = false): string + { + if ($profile->isRoot()) { + $this->root = $profile->getDuration(); + $start = $profile->getName(); + } else { + if ($profile->isTemplate()) { + $start = $this->formatTemplate($profile, $prefix); + } else { + $start = $this->formatNonTemplate($profile, $prefix); + } + $prefix .= $sibling ? '│ ' : ' '; + } + + $percent = $this->root ? $profile->getDuration() / $this->root * 100 : 0; + + if ($profile->getDuration() * 1000 < 1) { + $str = $start."\n"; + } else { + $str = sprintf("%s %s\n", $start, $this->formatTime($profile, $percent)); + } + + $nCount = \count($profile->getProfiles()); + foreach ($profile as $i => $p) { + $str .= $this->dumpProfile($p, $prefix, $i + 1 !== $nCount); + } + + return $str; + } +} diff --git a/Sources/vendor/twig/twig/src/Profiler/Dumper/BlackfireDumper.php b/Sources/vendor/twig/twig/src/Profiler/Dumper/BlackfireDumper.php new file mode 100644 index 00000000..03abe0fa --- /dev/null +++ b/Sources/vendor/twig/twig/src/Profiler/Dumper/BlackfireDumper.php @@ -0,0 +1,72 @@ + + */ +final class BlackfireDumper +{ + public function dump(Profile $profile): string + { + $data = []; + $this->dumpProfile('main()', $profile, $data); + $this->dumpChildren('main()', $profile, $data); + + $start = sprintf('%f', microtime(true)); + $str = << $values) { + $str .= "$name//{$values['ct']} {$values['wt']} {$values['mu']} {$values['pmu']}\n"; + } + + return $str; + } + + private function dumpChildren(string $parent, Profile $profile, &$data) + { + foreach ($profile as $p) { + if ($p->isTemplate()) { + $name = $p->getTemplate(); + } else { + $name = sprintf('%s::%s(%s)', $p->getTemplate(), $p->getType(), $p->getName()); + } + $this->dumpProfile(sprintf('%s==>%s', $parent, $name), $p, $data); + $this->dumpChildren($name, $p, $data); + } + } + + private function dumpProfile(string $edge, Profile $profile, &$data) + { + if (isset($data[$edge])) { + ++$data[$edge]['ct']; + $data[$edge]['wt'] += floor($profile->getDuration() * 1000000); + $data[$edge]['mu'] += $profile->getMemoryUsage(); + $data[$edge]['pmu'] += $profile->getPeakMemoryUsage(); + } else { + $data[$edge] = [ + 'ct' => 1, + 'wt' => floor($profile->getDuration() * 1000000), + 'mu' => $profile->getMemoryUsage(), + 'pmu' => $profile->getPeakMemoryUsage(), + ]; + } + } +} diff --git a/Sources/vendor/twig/twig/src/Profiler/Dumper/HtmlDumper.php b/Sources/vendor/twig/twig/src/Profiler/Dumper/HtmlDumper.php new file mode 100644 index 00000000..3c0daf1c --- /dev/null +++ b/Sources/vendor/twig/twig/src/Profiler/Dumper/HtmlDumper.php @@ -0,0 +1,47 @@ + + */ +final class HtmlDumper extends BaseDumper +{ + private static $colors = [ + 'block' => '#dfd', + 'macro' => '#ddf', + 'template' => '#ffd', + 'big' => '#d44', + ]; + + public function dump(Profile $profile): string + { + return '
'.parent::dump($profile).'
'; + } + + protected function formatTemplate(Profile $profile, $prefix): string + { + return sprintf('%s└ %s', $prefix, self::$colors['template'], $profile->getTemplate()); + } + + protected function formatNonTemplate(Profile $profile, $prefix): string + { + return sprintf('%s└ %s::%s(%s)', $prefix, $profile->getTemplate(), $profile->getType(), self::$colors[$profile->getType()] ?? 'auto', $profile->getName()); + } + + protected function formatTime(Profile $profile, $percent): string + { + return sprintf('%.2fms/%.0f%%', $percent > 20 ? self::$colors['big'] : 'auto', $profile->getDuration() * 1000, $percent); + } +} diff --git a/Sources/vendor/twig/twig/src/Profiler/Dumper/TextDumper.php b/Sources/vendor/twig/twig/src/Profiler/Dumper/TextDumper.php new file mode 100644 index 00000000..31561c46 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Profiler/Dumper/TextDumper.php @@ -0,0 +1,35 @@ + + */ +final class TextDumper extends BaseDumper +{ + protected function formatTemplate(Profile $profile, $prefix): string + { + return sprintf('%s└ %s', $prefix, $profile->getTemplate()); + } + + protected function formatNonTemplate(Profile $profile, $prefix): string + { + return sprintf('%s└ %s::%s(%s)', $prefix, $profile->getTemplate(), $profile->getType(), $profile->getName()); + } + + protected function formatTime(Profile $profile, $percent): string + { + return sprintf('%.2fms/%.0f%%', $profile->getDuration() * 1000, $percent); + } +} diff --git a/Sources/vendor/twig/twig/src/Profiler/Node/EnterProfileNode.php b/Sources/vendor/twig/twig/src/Profiler/Node/EnterProfileNode.php new file mode 100644 index 00000000..1494baf4 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Profiler/Node/EnterProfileNode.php @@ -0,0 +1,42 @@ + + */ +class EnterProfileNode extends Node +{ + public function __construct(string $extensionName, string $type, string $name, string $varName) + { + parent::__construct([], ['extension_name' => $extensionName, 'name' => $name, 'type' => $type, 'var_name' => $varName]); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->write(sprintf('$%s = $this->extensions[', $this->getAttribute('var_name'))) + ->repr($this->getAttribute('extension_name')) + ->raw("];\n") + ->write(sprintf('$%s->enter($%s = new \Twig\Profiler\Profile($this->getTemplateName(), ', $this->getAttribute('var_name'), $this->getAttribute('var_name').'_prof')) + ->repr($this->getAttribute('type')) + ->raw(', ') + ->repr($this->getAttribute('name')) + ->raw("));\n\n") + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Profiler/Node/LeaveProfileNode.php b/Sources/vendor/twig/twig/src/Profiler/Node/LeaveProfileNode.php new file mode 100644 index 00000000..94cebbaa --- /dev/null +++ b/Sources/vendor/twig/twig/src/Profiler/Node/LeaveProfileNode.php @@ -0,0 +1,36 @@ + + */ +class LeaveProfileNode extends Node +{ + public function __construct(string $varName) + { + parent::__construct([], ['var_name' => $varName]); + } + + public function compile(Compiler $compiler): void + { + $compiler + ->write("\n") + ->write(sprintf("\$%s->leave(\$%s);\n\n", $this->getAttribute('var_name'), $this->getAttribute('var_name').'_prof')) + ; + } +} diff --git a/Sources/vendor/twig/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php b/Sources/vendor/twig/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php new file mode 100644 index 00000000..91abee80 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php @@ -0,0 +1,70 @@ + + */ +final class ProfilerNodeVisitor implements NodeVisitorInterface +{ + private $extensionName; + private $varName; + + public function __construct(string $extensionName) + { + $this->extensionName = $extensionName; + $this->varName = sprintf('__internal_%s', hash(\PHP_VERSION_ID < 80100 ? 'sha256' : 'xxh128', $extensionName)); + } + + public function enterNode(Node $node, Environment $env): Node + { + return $node; + } + + public function leaveNode(Node $node, Environment $env): ?Node + { + if ($node instanceof ModuleNode) { + $node->setNode('display_start', new Node([new EnterProfileNode($this->extensionName, Profile::TEMPLATE, $node->getTemplateName(), $this->varName), $node->getNode('display_start')])); + $node->setNode('display_end', new Node([new LeaveProfileNode($this->varName), $node->getNode('display_end')])); + } elseif ($node instanceof BlockNode) { + $node->setNode('body', new BodyNode([ + new EnterProfileNode($this->extensionName, Profile::BLOCK, $node->getAttribute('name'), $this->varName), + $node->getNode('body'), + new LeaveProfileNode($this->varName), + ])); + } elseif ($node instanceof MacroNode) { + $node->setNode('body', new BodyNode([ + new EnterProfileNode($this->extensionName, Profile::MACRO, $node->getAttribute('name'), $this->varName), + $node->getNode('body'), + new LeaveProfileNode($this->varName), + ])); + } + + return $node; + } + + public function getPriority(): int + { + return 0; + } +} diff --git a/Sources/vendor/twig/twig/src/Profiler/Profile.php b/Sources/vendor/twig/twig/src/Profiler/Profile.php new file mode 100644 index 00000000..7979a23c --- /dev/null +++ b/Sources/vendor/twig/twig/src/Profiler/Profile.php @@ -0,0 +1,181 @@ + + */ +final class Profile implements \IteratorAggregate, \Serializable +{ + public const ROOT = 'ROOT'; + public const BLOCK = 'block'; + public const TEMPLATE = 'template'; + public const MACRO = 'macro'; + + private $template; + private $name; + private $type; + private $starts = []; + private $ends = []; + private $profiles = []; + + public function __construct(string $template = 'main', string $type = self::ROOT, string $name = 'main') + { + $this->template = $template; + $this->type = $type; + $this->name = str_starts_with($name, '__internal_') ? 'INTERNAL' : $name; + $this->enter(); + } + + public function getTemplate(): string + { + return $this->template; + } + + public function getType(): string + { + return $this->type; + } + + public function getName(): string + { + return $this->name; + } + + public function isRoot(): bool + { + return self::ROOT === $this->type; + } + + public function isTemplate(): bool + { + return self::TEMPLATE === $this->type; + } + + public function isBlock(): bool + { + return self::BLOCK === $this->type; + } + + public function isMacro(): bool + { + return self::MACRO === $this->type; + } + + /** + * @return Profile[] + */ + public function getProfiles(): array + { + return $this->profiles; + } + + public function addProfile(self $profile): void + { + $this->profiles[] = $profile; + } + + /** + * Returns the duration in microseconds. + */ + public function getDuration(): float + { + if ($this->isRoot() && $this->profiles) { + // for the root node with children, duration is the sum of all child durations + $duration = 0; + foreach ($this->profiles as $profile) { + $duration += $profile->getDuration(); + } + + return $duration; + } + + return isset($this->ends['wt']) && isset($this->starts['wt']) ? $this->ends['wt'] - $this->starts['wt'] : 0; + } + + /** + * Returns the memory usage in bytes. + */ + public function getMemoryUsage(): int + { + return isset($this->ends['mu']) && isset($this->starts['mu']) ? $this->ends['mu'] - $this->starts['mu'] : 0; + } + + /** + * Returns the peak memory usage in bytes. + */ + public function getPeakMemoryUsage(): int + { + return isset($this->ends['pmu']) && isset($this->starts['pmu']) ? $this->ends['pmu'] - $this->starts['pmu'] : 0; + } + + /** + * Starts the profiling. + */ + public function enter(): void + { + $this->starts = [ + 'wt' => microtime(true), + 'mu' => memory_get_usage(), + 'pmu' => memory_get_peak_usage(), + ]; + } + + /** + * Stops the profiling. + */ + public function leave(): void + { + $this->ends = [ + 'wt' => microtime(true), + 'mu' => memory_get_usage(), + 'pmu' => memory_get_peak_usage(), + ]; + } + + public function reset(): void + { + $this->starts = $this->ends = $this->profiles = []; + $this->enter(); + } + + public function getIterator(): \Traversable + { + return new \ArrayIterator($this->profiles); + } + + public function serialize(): string + { + return serialize($this->__serialize()); + } + + public function unserialize($data): void + { + $this->__unserialize(unserialize($data)); + } + + /** + * @internal + */ + public function __serialize(): array + { + return [$this->template, $this->name, $this->type, $this->starts, $this->ends, $this->profiles]; + } + + /** + * @internal + */ + public function __unserialize(array $data): void + { + list($this->template, $this->name, $this->type, $this->starts, $this->ends, $this->profiles) = $data; + } +} diff --git a/Sources/vendor/twig/twig/src/RuntimeLoader/ContainerRuntimeLoader.php b/Sources/vendor/twig/twig/src/RuntimeLoader/ContainerRuntimeLoader.php new file mode 100644 index 00000000..b360d7be --- /dev/null +++ b/Sources/vendor/twig/twig/src/RuntimeLoader/ContainerRuntimeLoader.php @@ -0,0 +1,37 @@ + + * @author Robin Chalas + */ +class ContainerRuntimeLoader implements RuntimeLoaderInterface +{ + private $container; + + public function __construct(ContainerInterface $container) + { + $this->container = $container; + } + + public function load(string $class) + { + return $this->container->has($class) ? $this->container->get($class) : null; + } +} diff --git a/Sources/vendor/twig/twig/src/RuntimeLoader/FactoryRuntimeLoader.php b/Sources/vendor/twig/twig/src/RuntimeLoader/FactoryRuntimeLoader.php new file mode 100644 index 00000000..13064839 --- /dev/null +++ b/Sources/vendor/twig/twig/src/RuntimeLoader/FactoryRuntimeLoader.php @@ -0,0 +1,41 @@ + + */ +class FactoryRuntimeLoader implements RuntimeLoaderInterface +{ + private $map; + + /** + * @param array $map An array where keys are class names and values factory callables + */ + public function __construct(array $map = []) + { + $this->map = $map; + } + + public function load(string $class) + { + if (!isset($this->map[$class])) { + return null; + } + + $runtimeFactory = $this->map[$class]; + + return $runtimeFactory(); + } +} diff --git a/Sources/vendor/twig/twig/src/RuntimeLoader/RuntimeLoaderInterface.php b/Sources/vendor/twig/twig/src/RuntimeLoader/RuntimeLoaderInterface.php new file mode 100644 index 00000000..9e5b2048 --- /dev/null +++ b/Sources/vendor/twig/twig/src/RuntimeLoader/RuntimeLoaderInterface.php @@ -0,0 +1,27 @@ + + */ +interface RuntimeLoaderInterface +{ + /** + * Creates the runtime implementation of a Twig element (filter/function/test). + * + * @return object|null The runtime instance or null if the loader does not know how to create the runtime for this class + */ + public function load(string $class); +} diff --git a/Sources/vendor/twig/twig/src/Sandbox/SecurityError.php b/Sources/vendor/twig/twig/src/Sandbox/SecurityError.php new file mode 100644 index 00000000..30a404f2 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Sandbox/SecurityError.php @@ -0,0 +1,23 @@ + + */ +class SecurityError extends Error +{ +} diff --git a/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFilterError.php b/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFilterError.php new file mode 100644 index 00000000..02d30636 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFilterError.php @@ -0,0 +1,33 @@ + + */ +final class SecurityNotAllowedFilterError extends SecurityError +{ + private $filterName; + + public function __construct(string $message, string $functionName) + { + parent::__construct($message); + $this->filterName = $functionName; + } + + public function getFilterName(): string + { + return $this->filterName; + } +} diff --git a/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFunctionError.php b/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFunctionError.php new file mode 100644 index 00000000..4f76dc6e --- /dev/null +++ b/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFunctionError.php @@ -0,0 +1,33 @@ + + */ +final class SecurityNotAllowedFunctionError extends SecurityError +{ + private $functionName; + + public function __construct(string $message, string $functionName) + { + parent::__construct($message); + $this->functionName = $functionName; + } + + public function getFunctionName(): string + { + return $this->functionName; + } +} diff --git a/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedMethodError.php b/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedMethodError.php new file mode 100644 index 00000000..8df9d0ba --- /dev/null +++ b/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedMethodError.php @@ -0,0 +1,40 @@ + + */ +final class SecurityNotAllowedMethodError extends SecurityError +{ + private $className; + private $methodName; + + public function __construct(string $message, string $className, string $methodName) + { + parent::__construct($message); + $this->className = $className; + $this->methodName = $methodName; + } + + public function getClassName(): string + { + return $this->className; + } + + public function getMethodName() + { + return $this->methodName; + } +} diff --git a/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php b/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php new file mode 100644 index 00000000..42ec4f38 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php @@ -0,0 +1,40 @@ + + */ +final class SecurityNotAllowedPropertyError extends SecurityError +{ + private $className; + private $propertyName; + + public function __construct(string $message, string $className, string $propertyName) + { + parent::__construct($message); + $this->className = $className; + $this->propertyName = $propertyName; + } + + public function getClassName(): string + { + return $this->className; + } + + public function getPropertyName() + { + return $this->propertyName; + } +} diff --git a/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedTagError.php b/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedTagError.php new file mode 100644 index 00000000..4522150e --- /dev/null +++ b/Sources/vendor/twig/twig/src/Sandbox/SecurityNotAllowedTagError.php @@ -0,0 +1,33 @@ + + */ +final class SecurityNotAllowedTagError extends SecurityError +{ + private $tagName; + + public function __construct(string $message, string $tagName) + { + parent::__construct($message); + $this->tagName = $tagName; + } + + public function getTagName(): string + { + return $this->tagName; + } +} diff --git a/Sources/vendor/twig/twig/src/Sandbox/SecurityPolicy.php b/Sources/vendor/twig/twig/src/Sandbox/SecurityPolicy.php new file mode 100644 index 00000000..a725aa4f --- /dev/null +++ b/Sources/vendor/twig/twig/src/Sandbox/SecurityPolicy.php @@ -0,0 +1,124 @@ + + */ +final class SecurityPolicy implements SecurityPolicyInterface +{ + private $allowedTags; + private $allowedFilters; + private $allowedMethods; + private $allowedProperties; + private $allowedFunctions; + + public function __construct(array $allowedTags = [], array $allowedFilters = [], array $allowedMethods = [], array $allowedProperties = [], array $allowedFunctions = []) + { + $this->allowedTags = $allowedTags; + $this->allowedFilters = $allowedFilters; + $this->setAllowedMethods($allowedMethods); + $this->allowedProperties = $allowedProperties; + $this->allowedFunctions = $allowedFunctions; + } + + public function setAllowedTags(array $tags): void + { + $this->allowedTags = $tags; + } + + public function setAllowedFilters(array $filters): void + { + $this->allowedFilters = $filters; + } + + public function setAllowedMethods(array $methods): void + { + $this->allowedMethods = []; + foreach ($methods as $class => $m) { + $this->allowedMethods[$class] = array_map(function ($value) { return strtr($value, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'); }, \is_array($m) ? $m : [$m]); + } + } + + public function setAllowedProperties(array $properties): void + { + $this->allowedProperties = $properties; + } + + public function setAllowedFunctions(array $functions): void + { + $this->allowedFunctions = $functions; + } + + public function checkSecurity($tags, $filters, $functions): void + { + foreach ($tags as $tag) { + if (!\in_array($tag, $this->allowedTags)) { + throw new SecurityNotAllowedTagError(sprintf('Tag "%s" is not allowed.', $tag), $tag); + } + } + + foreach ($filters as $filter) { + if (!\in_array($filter, $this->allowedFilters)) { + throw new SecurityNotAllowedFilterError(sprintf('Filter "%s" is not allowed.', $filter), $filter); + } + } + + foreach ($functions as $function) { + if (!\in_array($function, $this->allowedFunctions)) { + throw new SecurityNotAllowedFunctionError(sprintf('Function "%s" is not allowed.', $function), $function); + } + } + } + + public function checkMethodAllowed($obj, $method): void + { + if ($obj instanceof Template || $obj instanceof Markup) { + return; + } + + $allowed = false; + $method = strtr($method, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'); + foreach ($this->allowedMethods as $class => $methods) { + if ($obj instanceof $class && \in_array($method, $methods)) { + $allowed = true; + break; + } + } + + if (!$allowed) { + $class = \get_class($obj); + throw new SecurityNotAllowedMethodError(sprintf('Calling "%s" method on a "%s" object is not allowed.', $method, $class), $class, $method); + } + } + + public function checkPropertyAllowed($obj, $property): void + { + $allowed = false; + foreach ($this->allowedProperties as $class => $properties) { + if ($obj instanceof $class && \in_array($property, \is_array($properties) ? $properties : [$properties])) { + $allowed = true; + break; + } + } + + if (!$allowed) { + $class = \get_class($obj); + throw new SecurityNotAllowedPropertyError(sprintf('Calling "%s" property on a "%s" object is not allowed.', $property, $class), $class, $property); + } + } +} diff --git a/Sources/vendor/twig/twig/src/Sandbox/SecurityPolicyInterface.php b/Sources/vendor/twig/twig/src/Sandbox/SecurityPolicyInterface.php new file mode 100644 index 00000000..36471c54 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Sandbox/SecurityPolicyInterface.php @@ -0,0 +1,45 @@ + + */ +interface SecurityPolicyInterface +{ + /** + * @param string[] $tags + * @param string[] $filters + * @param string[] $functions + * + * @throws SecurityError + */ + public function checkSecurity($tags, $filters, $functions): void; + + /** + * @param object $obj + * @param string $method + * + * @throws SecurityNotAllowedMethodError + */ + public function checkMethodAllowed($obj, $method): void; + + /** + * @param object $obj + * @param string $property + * + * @throws SecurityNotAllowedPropertyError + */ + public function checkPropertyAllowed($obj, $property): void; +} diff --git a/Sources/vendor/twig/twig/src/Source.php b/Sources/vendor/twig/twig/src/Source.php new file mode 100644 index 00000000..3cb02403 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Source.php @@ -0,0 +1,51 @@ + + */ +final class Source +{ + private $code; + private $name; + private $path; + + /** + * @param string $code The template source code + * @param string $name The template logical name + * @param string $path The filesystem path of the template if any + */ + public function __construct(string $code, string $name, string $path = '') + { + $this->code = $code; + $this->name = $name; + $this->path = $path; + } + + public function getCode(): string + { + return $this->code; + } + + public function getName(): string + { + return $this->name; + } + + public function getPath(): string + { + return $this->path; + } +} diff --git a/Sources/vendor/twig/twig/src/Template.php b/Sources/vendor/twig/twig/src/Template.php new file mode 100644 index 00000000..ffbaae1e --- /dev/null +++ b/Sources/vendor/twig/twig/src/Template.php @@ -0,0 +1,422 @@ +load() + * instead, which returns an instance of \Twig\TemplateWrapper. + * + * @author Fabien Potencier + * + * @internal + */ +abstract class Template +{ + public const ANY_CALL = 'any'; + public const ARRAY_CALL = 'array'; + public const METHOD_CALL = 'method'; + + protected $parent; + protected $parents = []; + protected $env; + protected $blocks = []; + protected $traits = []; + protected $extensions = []; + protected $sandbox; + + public function __construct(Environment $env) + { + $this->env = $env; + $this->extensions = $env->getExtensions(); + } + + /** + * Returns the template name. + * + * @return string The template name + */ + abstract public function getTemplateName(); + + /** + * Returns debug information about the template. + * + * @return array Debug information + */ + abstract public function getDebugInfo(); + + /** + * Returns information about the original template source code. + * + * @return Source + */ + abstract public function getSourceContext(); + + /** + * Returns the parent template. + * + * This method is for internal use only and should never be called + * directly. + * + * @return Template|TemplateWrapper|false The parent template or false if there is no parent + */ + public function getParent(array $context) + { + if (null !== $this->parent) { + return $this->parent; + } + + try { + $parent = $this->doGetParent($context); + + if (false === $parent) { + return false; + } + + if ($parent instanceof self || $parent instanceof TemplateWrapper) { + return $this->parents[$parent->getSourceContext()->getName()] = $parent; + } + + if (!isset($this->parents[$parent])) { + $this->parents[$parent] = $this->loadTemplate($parent); + } + } catch (LoaderError $e) { + $e->setSourceContext(null); + $e->guess(); + + throw $e; + } + + return $this->parents[$parent]; + } + + protected function doGetParent(array $context) + { + return false; + } + + public function isTraitable() + { + return true; + } + + /** + * Displays a parent block. + * + * This method is for internal use only and should never be called + * directly. + * + * @param string $name The block name to display from the parent + * @param array $context The context + * @param array $blocks The current set of blocks + */ + public function displayParentBlock($name, array $context, array $blocks = []) + { + if (isset($this->traits[$name])) { + $this->traits[$name][0]->displayBlock($name, $context, $blocks, false); + } elseif (false !== $parent = $this->getParent($context)) { + $parent->displayBlock($name, $context, $blocks, false); + } else { + throw new RuntimeError(sprintf('The template has no parent and no traits defining the "%s" block.', $name), -1, $this->getSourceContext()); + } + } + + /** + * Displays a block. + * + * This method is for internal use only and should never be called + * directly. + * + * @param string $name The block name to display + * @param array $context The context + * @param array $blocks The current set of blocks + * @param bool $useBlocks Whether to use the current set of blocks + */ + public function displayBlock($name, array $context, array $blocks = [], $useBlocks = true, self $templateContext = null) + { + if ($useBlocks && isset($blocks[$name])) { + $template = $blocks[$name][0]; + $block = $blocks[$name][1]; + } elseif (isset($this->blocks[$name])) { + $template = $this->blocks[$name][0]; + $block = $this->blocks[$name][1]; + } else { + $template = null; + $block = null; + } + + // avoid RCEs when sandbox is enabled + if (null !== $template && !$template instanceof self) { + throw new \LogicException('A block must be a method on a \Twig\Template instance.'); + } + + if (null !== $template) { + try { + $template->$block($context, $blocks); + } catch (Error $e) { + if (!$e->getSourceContext()) { + $e->setSourceContext($template->getSourceContext()); + } + + // this is mostly useful for \Twig\Error\LoaderError exceptions + // see \Twig\Error\LoaderError + if (-1 === $e->getTemplateLine()) { + $e->guess(); + } + + throw $e; + } catch (\Throwable $e) { + $e = new RuntimeError(sprintf('An exception has been thrown during the rendering of a template ("%s").', $e->getMessage()), -1, $template->getSourceContext(), $e); + $e->guess(); + + throw $e; + } + } elseif (false !== $parent = $this->getParent($context)) { + $parent->displayBlock($name, $context, array_merge($this->blocks, $blocks), false, $templateContext ?? $this); + } elseif (isset($blocks[$name])) { + throw new RuntimeError(sprintf('Block "%s" should not call parent() in "%s" as the block does not exist in the parent template "%s".', $name, $blocks[$name][0]->getTemplateName(), $this->getTemplateName()), -1, $blocks[$name][0]->getSourceContext()); + } else { + throw new RuntimeError(sprintf('Block "%s" on template "%s" does not exist.', $name, $this->getTemplateName()), -1, ($templateContext ?? $this)->getSourceContext()); + } + } + + /** + * Renders a parent block. + * + * This method is for internal use only and should never be called + * directly. + * + * @param string $name The block name to render from the parent + * @param array $context The context + * @param array $blocks The current set of blocks + * + * @return string The rendered block + */ + public function renderParentBlock($name, array $context, array $blocks = []) + { + if ($this->env->isDebug()) { + ob_start(); + } else { + ob_start(function () { return ''; }); + } + $this->displayParentBlock($name, $context, $blocks); + + return ob_get_clean(); + } + + /** + * Renders a block. + * + * This method is for internal use only and should never be called + * directly. + * + * @param string $name The block name to render + * @param array $context The context + * @param array $blocks The current set of blocks + * @param bool $useBlocks Whether to use the current set of blocks + * + * @return string The rendered block + */ + public function renderBlock($name, array $context, array $blocks = [], $useBlocks = true) + { + if ($this->env->isDebug()) { + ob_start(); + } else { + ob_start(function () { return ''; }); + } + $this->displayBlock($name, $context, $blocks, $useBlocks); + + return ob_get_clean(); + } + + /** + * Returns whether a block exists or not in the current context of the template. + * + * This method checks blocks defined in the current template + * or defined in "used" traits or defined in parent templates. + * + * @param string $name The block name + * @param array $context The context + * @param array $blocks The current set of blocks + * + * @return bool true if the block exists, false otherwise + */ + public function hasBlock($name, array $context, array $blocks = []) + { + if (isset($blocks[$name])) { + return $blocks[$name][0] instanceof self; + } + + if (isset($this->blocks[$name])) { + return true; + } + + if (false !== $parent = $this->getParent($context)) { + return $parent->hasBlock($name, $context); + } + + return false; + } + + /** + * Returns all block names in the current context of the template. + * + * This method checks blocks defined in the current template + * or defined in "used" traits or defined in parent templates. + * + * @param array $context The context + * @param array $blocks The current set of blocks + * + * @return array An array of block names + */ + public function getBlockNames(array $context, array $blocks = []) + { + $names = array_merge(array_keys($blocks), array_keys($this->blocks)); + + if (false !== $parent = $this->getParent($context)) { + $names = array_merge($names, $parent->getBlockNames($context)); + } + + return array_unique($names); + } + + /** + * @return Template|TemplateWrapper + */ + protected function loadTemplate($template, $templateName = null, $line = null, $index = null) + { + try { + if (\is_array($template)) { + return $this->env->resolveTemplate($template); + } + + if ($template instanceof self || $template instanceof TemplateWrapper) { + return $template; + } + + if ($template === $this->getTemplateName()) { + $class = static::class; + if (false !== $pos = strrpos($class, '___', -1)) { + $class = substr($class, 0, $pos); + } + } else { + $class = $this->env->getTemplateClass($template); + } + + return $this->env->loadTemplate($class, $template, $index); + } catch (Error $e) { + if (!$e->getSourceContext()) { + $e->setSourceContext($templateName ? new Source('', $templateName) : $this->getSourceContext()); + } + + if ($e->getTemplateLine() > 0) { + throw $e; + } + + if (!$line) { + $e->guess(); + } else { + $e->setTemplateLine($line); + } + + throw $e; + } + } + + /** + * @internal + * + * @return Template + */ + public function unwrap() + { + return $this; + } + + /** + * Returns all blocks. + * + * This method is for internal use only and should never be called + * directly. + * + * @return array An array of blocks + */ + public function getBlocks() + { + return $this->blocks; + } + + public function display(array $context, array $blocks = []) + { + $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks)); + } + + public function render(array $context) + { + $level = ob_get_level(); + if ($this->env->isDebug()) { + ob_start(); + } else { + ob_start(function () { return ''; }); + } + try { + $this->display($context); + } catch (\Throwable $e) { + while (ob_get_level() > $level) { + ob_end_clean(); + } + + throw $e; + } + + return ob_get_clean(); + } + + protected function displayWithErrorHandling(array $context, array $blocks = []) + { + try { + $this->doDisplay($context, $blocks); + } catch (Error $e) { + if (!$e->getSourceContext()) { + $e->setSourceContext($this->getSourceContext()); + } + + // this is mostly useful for \Twig\Error\LoaderError exceptions + // see \Twig\Error\LoaderError + if (-1 === $e->getTemplateLine()) { + $e->guess(); + } + + throw $e; + } catch (\Throwable $e) { + $e = new RuntimeError(sprintf('An exception has been thrown during the rendering of a template ("%s").', $e->getMessage()), -1, $this->getSourceContext(), $e); + $e->guess(); + + throw $e; + } + } + + /** + * Auto-generated method to display the template with the given context. + * + * @param array $context An array of parameters to pass to the template + * @param array $blocks An array of blocks to pass to the template + */ + abstract protected function doDisplay(array $context, array $blocks = []); +} diff --git a/Sources/vendor/twig/twig/src/TemplateWrapper.php b/Sources/vendor/twig/twig/src/TemplateWrapper.php new file mode 100644 index 00000000..1ecd8225 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TemplateWrapper.php @@ -0,0 +1,107 @@ + + */ +final class TemplateWrapper +{ + private $env; + private $template; + + /** + * This method is for internal use only and should never be called + * directly (use Twig\Environment::load() instead). + * + * @internal + */ + public function __construct(Environment $env, Template $template) + { + $this->env = $env; + $this->template = $template; + } + + public function render(array $context = []): string + { + return $this->template->render($context); + } + + public function display(array $context = []) + { + // using func_get_args() allows to not expose the blocks argument + // as it should only be used by internal code + $this->template->display($context, \func_get_args()[1] ?? []); + } + + public function hasBlock(string $name, array $context = []): bool + { + return $this->template->hasBlock($name, $context); + } + + /** + * @return string[] An array of defined template block names + */ + public function getBlockNames(array $context = []): array + { + return $this->template->getBlockNames($context); + } + + public function renderBlock(string $name, array $context = []): string + { + $context = $this->env->mergeGlobals($context); + $level = ob_get_level(); + if ($this->env->isDebug()) { + ob_start(); + } else { + ob_start(function () { return ''; }); + } + try { + $this->template->displayBlock($name, $context); + } catch (\Throwable $e) { + while (ob_get_level() > $level) { + ob_end_clean(); + } + + throw $e; + } + + return ob_get_clean(); + } + + public function displayBlock(string $name, array $context = []) + { + $this->template->displayBlock($name, $this->env->mergeGlobals($context)); + } + + public function getSourceContext(): Source + { + return $this->template->getSourceContext(); + } + + public function getTemplateName(): string + { + return $this->template->getTemplateName(); + } + + /** + * @internal + * + * @return Template + */ + public function unwrap() + { + return $this->template; + } +} diff --git a/Sources/vendor/twig/twig/src/Test/IntegrationTestCase.php b/Sources/vendor/twig/twig/src/Test/IntegrationTestCase.php new file mode 100644 index 00000000..e97ad417 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Test/IntegrationTestCase.php @@ -0,0 +1,266 @@ + + * @author Karma Dordrak + */ +abstract class IntegrationTestCase extends TestCase +{ + /** + * @return string + */ + abstract protected function getFixturesDir(); + + /** + * @return RuntimeLoaderInterface[] + */ + protected function getRuntimeLoaders() + { + return []; + } + + /** + * @return ExtensionInterface[] + */ + protected function getExtensions() + { + return []; + } + + /** + * @return TwigFilter[] + */ + protected function getTwigFilters() + { + return []; + } + + /** + * @return TwigFunction[] + */ + protected function getTwigFunctions() + { + return []; + } + + /** + * @return TwigTest[] + */ + protected function getTwigTests() + { + return []; + } + + /** + * @dataProvider getTests + */ + public function testIntegration($file, $message, $condition, $templates, $exception, $outputs, $deprecation = '') + { + $this->doIntegrationTest($file, $message, $condition, $templates, $exception, $outputs, $deprecation); + } + + /** + * @dataProvider getLegacyTests + * + * @group legacy + */ + public function testLegacyIntegration($file, $message, $condition, $templates, $exception, $outputs, $deprecation = '') + { + $this->doIntegrationTest($file, $message, $condition, $templates, $exception, $outputs, $deprecation); + } + + public function getTests($name, $legacyTests = false) + { + $fixturesDir = realpath($this->getFixturesDir()); + $tests = []; + + foreach (new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($fixturesDir), \RecursiveIteratorIterator::LEAVES_ONLY) as $file) { + if (!preg_match('/\.test$/', $file)) { + continue; + } + + if ($legacyTests xor str_contains($file->getRealpath(), '.legacy.test')) { + continue; + } + + $test = file_get_contents($file->getRealpath()); + + if (preg_match('/--TEST--\s*(.*?)\s*(?:--CONDITION--\s*(.*))?\s*(?:--DEPRECATION--\s*(.*?))?\s*((?:--TEMPLATE(?:\(.*?\))?--(?:.*?))+)\s*(?:--DATA--\s*(.*))?\s*--EXCEPTION--\s*(.*)/sx', $test, $match)) { + $message = $match[1]; + $condition = $match[2]; + $deprecation = $match[3]; + $templates = self::parseTemplates($match[4]); + $exception = $match[6]; + $outputs = [[null, $match[5], null, '']]; + } elseif (preg_match('/--TEST--\s*(.*?)\s*(?:--CONDITION--\s*(.*))?\s*(?:--DEPRECATION--\s*(.*?))?\s*((?:--TEMPLATE(?:\(.*?\))?--(?:.*?))+)--DATA--.*?--EXPECT--.*/s', $test, $match)) { + $message = $match[1]; + $condition = $match[2]; + $deprecation = $match[3]; + $templates = self::parseTemplates($match[4]); + $exception = false; + preg_match_all('/--DATA--(.*?)(?:--CONFIG--(.*?))?--EXPECT--(.*?)(?=\-\-DATA\-\-|$)/s', $test, $outputs, \PREG_SET_ORDER); + } else { + throw new \InvalidArgumentException(sprintf('Test "%s" is not valid.', str_replace($fixturesDir.'/', '', $file))); + } + + $tests[] = [str_replace($fixturesDir.'/', '', $file), $message, $condition, $templates, $exception, $outputs, $deprecation]; + } + + if ($legacyTests && empty($tests)) { + // add a dummy test to avoid a PHPUnit message + return [['not', '-', '', [], '', []]]; + } + + return $tests; + } + + public function getLegacyTests() + { + return $this->getTests('testLegacyIntegration', true); + } + + protected function doIntegrationTest($file, $message, $condition, $templates, $exception, $outputs, $deprecation = '') + { + if (!$outputs) { + $this->markTestSkipped('no tests to run'); + } + + if ($condition) { + eval('$ret = '.$condition.';'); + if (!$ret) { + $this->markTestSkipped($condition); + } + } + + $loader = new ArrayLoader($templates); + + foreach ($outputs as $i => $match) { + $config = array_merge([ + 'cache' => false, + 'strict_variables' => true, + ], $match[2] ? eval($match[2].';') : []); + $twig = new Environment($loader, $config); + $twig->addGlobal('global', 'global'); + foreach ($this->getRuntimeLoaders() as $runtimeLoader) { + $twig->addRuntimeLoader($runtimeLoader); + } + + foreach ($this->getExtensions() as $extension) { + $twig->addExtension($extension); + } + + foreach ($this->getTwigFilters() as $filter) { + $twig->addFilter($filter); + } + + foreach ($this->getTwigTests() as $test) { + $twig->addTest($test); + } + + foreach ($this->getTwigFunctions() as $function) { + $twig->addFunction($function); + } + + // avoid using the same PHP class name for different cases + $p = new \ReflectionProperty($twig, 'templateClassPrefix'); + $p->setAccessible(true); + $p->setValue($twig, '__TwigTemplate_'.hash(\PHP_VERSION_ID < 80100 ? 'sha256' : 'xxh128', uniqid(mt_rand(), true), false).'_'); + + $deprecations = []; + try { + $prevHandler = set_error_handler(function ($type, $msg, $file, $line, $context = []) use (&$deprecations, &$prevHandler) { + if (\E_USER_DEPRECATED === $type) { + $deprecations[] = $msg; + + return true; + } + + return $prevHandler ? $prevHandler($type, $msg, $file, $line, $context) : false; + }); + + $template = $twig->load('index.twig'); + } catch (\Exception $e) { + if (false !== $exception) { + $message = $e->getMessage(); + $this->assertSame(trim($exception), trim(sprintf('%s: %s', \get_class($e), $message))); + $last = substr($message, \strlen($message) - 1); + $this->assertTrue('.' === $last || '?' === $last, 'Exception message must end with a dot or a question mark.'); + + return; + } + + throw new Error(sprintf('%s: %s', \get_class($e), $e->getMessage()), -1, null, $e); + } finally { + restore_error_handler(); + } + + $this->assertSame($deprecation, implode("\n", $deprecations)); + + try { + $output = trim($template->render(eval($match[1].';')), "\n "); + } catch (\Exception $e) { + if (false !== $exception) { + $this->assertSame(trim($exception), trim(sprintf('%s: %s', \get_class($e), $e->getMessage()))); + + return; + } + + $e = new Error(sprintf('%s: %s', \get_class($e), $e->getMessage()), -1, null, $e); + + $output = trim(sprintf('%s: %s', \get_class($e), $e->getMessage())); + } + + if (false !== $exception) { + list($class) = explode(':', $exception); + $constraintClass = class_exists('PHPUnit\Framework\Constraint\Exception') ? 'PHPUnit\Framework\Constraint\Exception' : 'PHPUnit_Framework_Constraint_Exception'; + $this->assertThat(null, new $constraintClass($class)); + } + + $expected = trim($match[3], "\n "); + + if ($expected !== $output) { + printf("Compiled templates that failed on case %d:\n", $i + 1); + + foreach (array_keys($templates) as $name) { + echo "Template: $name\n"; + echo $twig->compile($twig->parse($twig->tokenize($twig->getLoader()->getSourceContext($name)))); + } + } + $this->assertEquals($expected, $output, $message.' (in '.$file.')'); + } + } + + protected static function parseTemplates($test) + { + $templates = []; + preg_match_all('/--TEMPLATE(?:\((.*?)\))?--(.*?)(?=\-\-TEMPLATE|$)/s', $test, $matches, \PREG_SET_ORDER); + foreach ($matches as $match) { + $templates[$match[1] ?: 'index.twig'] = $match[2]; + } + + return $templates; + } +} diff --git a/Sources/vendor/twig/twig/src/Test/NodeTestCase.php b/Sources/vendor/twig/twig/src/Test/NodeTestCase.php new file mode 100644 index 00000000..8b1bef77 --- /dev/null +++ b/Sources/vendor/twig/twig/src/Test/NodeTestCase.php @@ -0,0 +1,65 @@ +assertNodeCompilation($source, $node, $environment, $isPattern); + } + + public function assertNodeCompilation($source, Node $node, Environment $environment = null, $isPattern = false) + { + $compiler = $this->getCompiler($environment); + $compiler->compile($node); + + if ($isPattern) { + $this->assertStringMatchesFormat($source, trim($compiler->getSource())); + } else { + $this->assertEquals($source, trim($compiler->getSource())); + } + } + + protected function getCompiler(Environment $environment = null) + { + return new Compiler($environment ?? $this->getEnvironment()); + } + + protected function getEnvironment() + { + return new Environment(new ArrayLoader([])); + } + + protected function getVariableGetter($name, $line = false) + { + $line = $line > 0 ? "// line $line\n" : ''; + + return sprintf('%s($context["%s"] ?? null)', $line, $name); + } + + protected function getAttributeGetter() + { + return 'twig_get_attribute($this->env, $this->source, '; + } +} diff --git a/Sources/vendor/twig/twig/src/Token.php b/Sources/vendor/twig/twig/src/Token.php new file mode 100644 index 00000000..59279b8f --- /dev/null +++ b/Sources/vendor/twig/twig/src/Token.php @@ -0,0 +1,184 @@ + + */ +final class Token +{ + private $value; + private $type; + private $lineno; + + public const EOF_TYPE = -1; + public const TEXT_TYPE = 0; + public const BLOCK_START_TYPE = 1; + public const VAR_START_TYPE = 2; + public const BLOCK_END_TYPE = 3; + public const VAR_END_TYPE = 4; + public const NAME_TYPE = 5; + public const NUMBER_TYPE = 6; + public const STRING_TYPE = 7; + public const OPERATOR_TYPE = 8; + public const PUNCTUATION_TYPE = 9; + public const INTERPOLATION_START_TYPE = 10; + public const INTERPOLATION_END_TYPE = 11; + public const ARROW_TYPE = 12; + public const SPREAD_TYPE = 13; + + public function __construct(int $type, $value, int $lineno) + { + $this->type = $type; + $this->value = $value; + $this->lineno = $lineno; + } + + public function __toString() + { + return sprintf('%s(%s)', self::typeToString($this->type, true), $this->value); + } + + /** + * Tests the current token for a type and/or a value. + * + * Parameters may be: + * * just type + * * type and value (or array of possible values) + * * just value (or array of possible values) (NAME_TYPE is used as type) + * + * @param array|string|int $type The type to test + * @param array|string|null $values The token value + */ + public function test($type, $values = null): bool + { + if (null === $values && !\is_int($type)) { + $values = $type; + $type = self::NAME_TYPE; + } + + return ($this->type === $type) && ( + null === $values + || (\is_array($values) && \in_array($this->value, $values)) + || $this->value == $values + ); + } + + public function getLine(): int + { + return $this->lineno; + } + + public function getType(): int + { + return $this->type; + } + + public function getValue() + { + return $this->value; + } + + public static function typeToString(int $type, bool $short = false): string + { + switch ($type) { + case self::EOF_TYPE: + $name = 'EOF_TYPE'; + break; + case self::TEXT_TYPE: + $name = 'TEXT_TYPE'; + break; + case self::BLOCK_START_TYPE: + $name = 'BLOCK_START_TYPE'; + break; + case self::VAR_START_TYPE: + $name = 'VAR_START_TYPE'; + break; + case self::BLOCK_END_TYPE: + $name = 'BLOCK_END_TYPE'; + break; + case self::VAR_END_TYPE: + $name = 'VAR_END_TYPE'; + break; + case self::NAME_TYPE: + $name = 'NAME_TYPE'; + break; + case self::NUMBER_TYPE: + $name = 'NUMBER_TYPE'; + break; + case self::STRING_TYPE: + $name = 'STRING_TYPE'; + break; + case self::OPERATOR_TYPE: + $name = 'OPERATOR_TYPE'; + break; + case self::PUNCTUATION_TYPE: + $name = 'PUNCTUATION_TYPE'; + break; + case self::INTERPOLATION_START_TYPE: + $name = 'INTERPOLATION_START_TYPE'; + break; + case self::INTERPOLATION_END_TYPE: + $name = 'INTERPOLATION_END_TYPE'; + break; + case self::ARROW_TYPE: + $name = 'ARROW_TYPE'; + break; + case self::SPREAD_TYPE: + $name = 'SPREAD_TYPE'; + break; + default: + throw new \LogicException(sprintf('Token of type "%s" does not exist.', $type)); + } + + return $short ? $name : 'Twig\Token::'.$name; + } + + public static function typeToEnglish(int $type): string + { + switch ($type) { + case self::EOF_TYPE: + return 'end of template'; + case self::TEXT_TYPE: + return 'text'; + case self::BLOCK_START_TYPE: + return 'begin of statement block'; + case self::VAR_START_TYPE: + return 'begin of print statement'; + case self::BLOCK_END_TYPE: + return 'end of statement block'; + case self::VAR_END_TYPE: + return 'end of print statement'; + case self::NAME_TYPE: + return 'name'; + case self::NUMBER_TYPE: + return 'number'; + case self::STRING_TYPE: + return 'string'; + case self::OPERATOR_TYPE: + return 'operator'; + case self::PUNCTUATION_TYPE: + return 'punctuation'; + case self::INTERPOLATION_START_TYPE: + return 'begin of string interpolation'; + case self::INTERPOLATION_END_TYPE: + return 'end of string interpolation'; + case self::ARROW_TYPE: + return 'arrow function'; + case self::SPREAD_TYPE: + return 'spread operator'; + default: + throw new \LogicException(sprintf('Token of type "%s" does not exist.', $type)); + } + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/AbstractTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/AbstractTokenParser.php new file mode 100644 index 00000000..720ea676 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/AbstractTokenParser.php @@ -0,0 +1,32 @@ + + */ +abstract class AbstractTokenParser implements TokenParserInterface +{ + /** + * @var Parser + */ + protected $parser; + + public function setParser(Parser $parser): void + { + $this->parser = $parser; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/ApplyTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/ApplyTokenParser.php new file mode 100644 index 00000000..4dbf3040 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/ApplyTokenParser.php @@ -0,0 +1,60 @@ +getLine(); + $name = $this->parser->getVarName(); + + $ref = new TempNameExpression($name, $lineno); + $ref->setAttribute('always_defined', true); + + $filter = $this->parser->getExpressionParser()->parseFilterExpressionRaw($ref, $this->getTag()); + + $this->parser->getStream()->expect(Token::BLOCK_END_TYPE); + $body = $this->parser->subparse([$this, 'decideApplyEnd'], true); + $this->parser->getStream()->expect(Token::BLOCK_END_TYPE); + + return new Node([ + new SetNode(true, $ref, $body, $lineno, $this->getTag()), + new PrintNode($filter, $lineno, $this->getTag()), + ]); + } + + public function decideApplyEnd(Token $token): bool + { + return $token->test('endapply'); + } + + public function getTag(): string + { + return 'apply'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/AutoEscapeTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/AutoEscapeTokenParser.php new file mode 100644 index 00000000..b674bea4 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/AutoEscapeTokenParser.php @@ -0,0 +1,58 @@ +getLine(); + $stream = $this->parser->getStream(); + + if ($stream->test(/* Token::BLOCK_END_TYPE */ 3)) { + $value = 'html'; + } else { + $expr = $this->parser->getExpressionParser()->parseExpression(); + if (!$expr instanceof ConstantExpression) { + throw new SyntaxError('An escaping strategy must be a string or false.', $stream->getCurrent()->getLine(), $stream->getSourceContext()); + } + $value = $expr->getAttribute('value'); + } + + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + $body = $this->parser->subparse([$this, 'decideBlockEnd'], true); + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + return new AutoEscapeNode($value, $body, $lineno, $this->getTag()); + } + + public function decideBlockEnd(Token $token): bool + { + return $token->test('endautoescape'); + } + + public function getTag(): string + { + return 'autoescape'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/BlockTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/BlockTokenParser.php new file mode 100644 index 00000000..5878131b --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/BlockTokenParser.php @@ -0,0 +1,78 @@ + + * {% block title %}{% endblock %} - My Webpage + * {% endblock %} + * + * @internal + */ +final class BlockTokenParser extends AbstractTokenParser +{ + public function parse(Token $token): Node + { + $lineno = $token->getLine(); + $stream = $this->parser->getStream(); + $name = $stream->expect(/* Token::NAME_TYPE */ 5)->getValue(); + if ($this->parser->hasBlock($name)) { + throw new SyntaxError(sprintf("The block '%s' has already been defined line %d.", $name, $this->parser->getBlock($name)->getTemplateLine()), $stream->getCurrent()->getLine(), $stream->getSourceContext()); + } + $this->parser->setBlock($name, $block = new BlockNode($name, new Node([]), $lineno)); + $this->parser->pushLocalScope(); + $this->parser->pushBlockStack($name); + + if ($stream->nextIf(/* Token::BLOCK_END_TYPE */ 3)) { + $body = $this->parser->subparse([$this, 'decideBlockEnd'], true); + if ($token = $stream->nextIf(/* Token::NAME_TYPE */ 5)) { + $value = $token->getValue(); + + if ($value != $name) { + throw new SyntaxError(sprintf('Expected endblock for block "%s" (but "%s" given).', $name, $value), $stream->getCurrent()->getLine(), $stream->getSourceContext()); + } + } + } else { + $body = new Node([ + new PrintNode($this->parser->getExpressionParser()->parseExpression(), $lineno), + ]); + } + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + $block->setNode('body', $body); + $this->parser->popBlockStack(); + $this->parser->popLocalScope(); + + return new BlockReferenceNode($name, $lineno, $this->getTag()); + } + + public function decideBlockEnd(Token $token): bool + { + return $token->test('endblock'); + } + + public function getTag(): string + { + return 'block'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/DeprecatedTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/DeprecatedTokenParser.php new file mode 100644 index 00000000..31416c79 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/DeprecatedTokenParser.php @@ -0,0 +1,43 @@ + + * + * @internal + */ +final class DeprecatedTokenParser extends AbstractTokenParser +{ + public function parse(Token $token): Node + { + $expr = $this->parser->getExpressionParser()->parseExpression(); + + $this->parser->getStream()->expect(Token::BLOCK_END_TYPE); + + return new DeprecatedNode($expr, $token->getLine(), $this->getTag()); + } + + public function getTag(): string + { + return 'deprecated'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/DoTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/DoTokenParser.php new file mode 100644 index 00000000..32c8f12f --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/DoTokenParser.php @@ -0,0 +1,38 @@ +parser->getExpressionParser()->parseExpression(); + + $this->parser->getStream()->expect(/* Token::BLOCK_END_TYPE */ 3); + + return new DoNode($expr, $token->getLine(), $this->getTag()); + } + + public function getTag(): string + { + return 'do'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/EmbedTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/EmbedTokenParser.php new file mode 100644 index 00000000..64b4f296 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/EmbedTokenParser.php @@ -0,0 +1,73 @@ +parser->getStream(); + + $parent = $this->parser->getExpressionParser()->parseExpression(); + + list($variables, $only, $ignoreMissing) = $this->parseArguments(); + + $parentToken = $fakeParentToken = new Token(/* Token::STRING_TYPE */ 7, '__parent__', $token->getLine()); + if ($parent instanceof ConstantExpression) { + $parentToken = new Token(/* Token::STRING_TYPE */ 7, $parent->getAttribute('value'), $token->getLine()); + } elseif ($parent instanceof NameExpression) { + $parentToken = new Token(/* Token::NAME_TYPE */ 5, $parent->getAttribute('name'), $token->getLine()); + } + + // inject a fake parent to make the parent() function work + $stream->injectTokens([ + new Token(/* Token::BLOCK_START_TYPE */ 1, '', $token->getLine()), + new Token(/* Token::NAME_TYPE */ 5, 'extends', $token->getLine()), + $parentToken, + new Token(/* Token::BLOCK_END_TYPE */ 3, '', $token->getLine()), + ]); + + $module = $this->parser->parse($stream, [$this, 'decideBlockEnd'], true); + + // override the parent with the correct one + if ($fakeParentToken === $parentToken) { + $module->setNode('parent', $parent); + } + + $this->parser->embedTemplate($module); + + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + return new EmbedNode($module->getTemplateName(), $module->getAttribute('index'), $variables, $only, $ignoreMissing, $token->getLine(), $this->getTag()); + } + + public function decideBlockEnd(Token $token): bool + { + return $token->test('endembed'); + } + + public function getTag(): string + { + return 'embed'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/ExtendsTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/ExtendsTokenParser.php new file mode 100644 index 00000000..0ca46dd2 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/ExtendsTokenParser.php @@ -0,0 +1,52 @@ +parser->getStream(); + + if ($this->parser->peekBlockStack()) { + throw new SyntaxError('Cannot use "extend" in a block.', $token->getLine(), $stream->getSourceContext()); + } elseif (!$this->parser->isMainScope()) { + throw new SyntaxError('Cannot use "extend" in a macro.', $token->getLine(), $stream->getSourceContext()); + } + + if (null !== $this->parser->getParent()) { + throw new SyntaxError('Multiple extends tags are forbidden.', $token->getLine(), $stream->getSourceContext()); + } + $this->parser->setParent($this->parser->getExpressionParser()->parseExpression()); + + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + return new Node(); + } + + public function getTag(): string + { + return 'extends'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/FlushTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/FlushTokenParser.php new file mode 100644 index 00000000..02c74aa1 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/FlushTokenParser.php @@ -0,0 +1,38 @@ +parser->getStream()->expect(/* Token::BLOCK_END_TYPE */ 3); + + return new FlushNode($token->getLine(), $this->getTag()); + } + + public function getTag(): string + { + return 'flush'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/ForTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/ForTokenParser.php new file mode 100644 index 00000000..bac8ba2d --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/ForTokenParser.php @@ -0,0 +1,78 @@ + + * {% for user in users %} + *
  • {{ user.username|e }}
  • + * {% endfor %} + * + * + * @internal + */ +final class ForTokenParser extends AbstractTokenParser +{ + public function parse(Token $token): Node + { + $lineno = $token->getLine(); + $stream = $this->parser->getStream(); + $targets = $this->parser->getExpressionParser()->parseAssignmentExpression(); + $stream->expect(/* Token::OPERATOR_TYPE */ 8, 'in'); + $seq = $this->parser->getExpressionParser()->parseExpression(); + + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + $body = $this->parser->subparse([$this, 'decideForFork']); + if ('else' == $stream->next()->getValue()) { + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + $else = $this->parser->subparse([$this, 'decideForEnd'], true); + } else { + $else = null; + } + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + if (\count($targets) > 1) { + $keyTarget = $targets->getNode(0); + $keyTarget = new AssignNameExpression($keyTarget->getAttribute('name'), $keyTarget->getTemplateLine()); + $valueTarget = $targets->getNode(1); + } else { + $keyTarget = new AssignNameExpression('_key', $lineno); + $valueTarget = $targets->getNode(0); + } + $valueTarget = new AssignNameExpression($valueTarget->getAttribute('name'), $valueTarget->getTemplateLine()); + + return new ForNode($keyTarget, $valueTarget, $seq, null, $body, $else, $lineno, $this->getTag()); + } + + public function decideForFork(Token $token): bool + { + return $token->test(['else', 'endfor']); + } + + public function decideForEnd(Token $token): bool + { + return $token->test('endfor'); + } + + public function getTag(): string + { + return 'for'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/FromTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/FromTokenParser.php new file mode 100644 index 00000000..31b6cde4 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/FromTokenParser.php @@ -0,0 +1,66 @@ +parser->getExpressionParser()->parseExpression(); + $stream = $this->parser->getStream(); + $stream->expect(/* Token::NAME_TYPE */ 5, 'import'); + + $targets = []; + while (true) { + $name = $stream->expect(/* Token::NAME_TYPE */ 5)->getValue(); + + $alias = $name; + if ($stream->nextIf('as')) { + $alias = $stream->expect(/* Token::NAME_TYPE */ 5)->getValue(); + } + + $targets[$name] = $alias; + + if (!$stream->nextIf(/* Token::PUNCTUATION_TYPE */ 9, ',')) { + break; + } + } + + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + $var = new AssignNameExpression($this->parser->getVarName(), $token->getLine()); + $node = new ImportNode($macro, $var, $token->getLine(), $this->getTag(), $this->parser->isMainScope()); + + foreach ($targets as $name => $alias) { + $this->parser->addImportedSymbol('function', $alias, 'macro_'.$name, $var); + } + + return $node; + } + + public function getTag(): string + { + return 'from'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/IfTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/IfTokenParser.php new file mode 100644 index 00000000..c0fe6df0 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/IfTokenParser.php @@ -0,0 +1,89 @@ + + * {% for user in users %} + *
  • {{ user.username|e }}
  • + * {% endfor %} + * + * {% endif %} + * + * @internal + */ +final class IfTokenParser extends AbstractTokenParser +{ + public function parse(Token $token): Node + { + $lineno = $token->getLine(); + $expr = $this->parser->getExpressionParser()->parseExpression(); + $stream = $this->parser->getStream(); + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + $body = $this->parser->subparse([$this, 'decideIfFork']); + $tests = [$expr, $body]; + $else = null; + + $end = false; + while (!$end) { + switch ($stream->next()->getValue()) { + case 'else': + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + $else = $this->parser->subparse([$this, 'decideIfEnd']); + break; + + case 'elseif': + $expr = $this->parser->getExpressionParser()->parseExpression(); + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + $body = $this->parser->subparse([$this, 'decideIfFork']); + $tests[] = $expr; + $tests[] = $body; + break; + + case 'endif': + $end = true; + break; + + default: + throw new SyntaxError(sprintf('Unexpected end of template. Twig was looking for the following tags "else", "elseif", or "endif" to close the "if" block started at line %d).', $lineno), $stream->getCurrent()->getLine(), $stream->getSourceContext()); + } + } + + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + return new IfNode(new Node($tests), $else, $lineno, $this->getTag()); + } + + public function decideIfFork(Token $token): bool + { + return $token->test(['elseif', 'else', 'endif']); + } + + public function decideIfEnd(Token $token): bool + { + return $token->test(['endif']); + } + + public function getTag(): string + { + return 'if'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/ImportTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/ImportTokenParser.php new file mode 100644 index 00000000..44cb4dad --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/ImportTokenParser.php @@ -0,0 +1,44 @@ +parser->getExpressionParser()->parseExpression(); + $this->parser->getStream()->expect(/* Token::NAME_TYPE */ 5, 'as'); + $var = new AssignNameExpression($this->parser->getStream()->expect(/* Token::NAME_TYPE */ 5)->getValue(), $token->getLine()); + $this->parser->getStream()->expect(/* Token::BLOCK_END_TYPE */ 3); + + $this->parser->addImportedSymbol('template', $var->getAttribute('name')); + + return new ImportNode($macro, $var, $token->getLine(), $this->getTag(), $this->parser->isMainScope()); + } + + public function getTag(): string + { + return 'import'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/IncludeTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/IncludeTokenParser.php new file mode 100644 index 00000000..28beb8ae --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/IncludeTokenParser.php @@ -0,0 +1,69 @@ +parser->getExpressionParser()->parseExpression(); + + list($variables, $only, $ignoreMissing) = $this->parseArguments(); + + return new IncludeNode($expr, $variables, $only, $ignoreMissing, $token->getLine(), $this->getTag()); + } + + protected function parseArguments() + { + $stream = $this->parser->getStream(); + + $ignoreMissing = false; + if ($stream->nextIf(/* Token::NAME_TYPE */ 5, 'ignore')) { + $stream->expect(/* Token::NAME_TYPE */ 5, 'missing'); + + $ignoreMissing = true; + } + + $variables = null; + if ($stream->nextIf(/* Token::NAME_TYPE */ 5, 'with')) { + $variables = $this->parser->getExpressionParser()->parseExpression(); + } + + $only = false; + if ($stream->nextIf(/* Token::NAME_TYPE */ 5, 'only')) { + $only = true; + } + + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + return [$variables, $only, $ignoreMissing]; + } + + public function getTag(): string + { + return 'include'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/MacroTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/MacroTokenParser.php new file mode 100644 index 00000000..f584927e --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/MacroTokenParser.php @@ -0,0 +1,66 @@ + + * {% endmacro %} + * + * @internal + */ +final class MacroTokenParser extends AbstractTokenParser +{ + public function parse(Token $token): Node + { + $lineno = $token->getLine(); + $stream = $this->parser->getStream(); + $name = $stream->expect(/* Token::NAME_TYPE */ 5)->getValue(); + + $arguments = $this->parser->getExpressionParser()->parseArguments(true, true); + + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + $this->parser->pushLocalScope(); + $body = $this->parser->subparse([$this, 'decideBlockEnd'], true); + if ($token = $stream->nextIf(/* Token::NAME_TYPE */ 5)) { + $value = $token->getValue(); + + if ($value != $name) { + throw new SyntaxError(sprintf('Expected endmacro for macro "%s" (but "%s" given).', $name, $value), $stream->getCurrent()->getLine(), $stream->getSourceContext()); + } + } + $this->parser->popLocalScope(); + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + $this->parser->setMacro($name, new MacroNode($name, new BodyNode([$body]), $arguments, $lineno, $this->getTag())); + + return new Node(); + } + + public function decideBlockEnd(Token $token): bool + { + return $token->test('endmacro'); + } + + public function getTag(): string + { + return 'macro'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/SandboxTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/SandboxTokenParser.php new file mode 100644 index 00000000..c919556e --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/SandboxTokenParser.php @@ -0,0 +1,66 @@ +parser->getStream(); + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + $body = $this->parser->subparse([$this, 'decideBlockEnd'], true); + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + // in a sandbox tag, only include tags are allowed + if (!$body instanceof IncludeNode) { + foreach ($body as $node) { + if ($node instanceof TextNode && ctype_space($node->getAttribute('data'))) { + continue; + } + + if (!$node instanceof IncludeNode) { + throw new SyntaxError('Only "include" tags are allowed within a "sandbox" section.', $node->getTemplateLine(), $stream->getSourceContext()); + } + } + } + + return new SandboxNode($body, $token->getLine(), $this->getTag()); + } + + public function decideBlockEnd(Token $token): bool + { + return $token->test('endsandbox'); + } + + public function getTag(): string + { + return 'sandbox'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/SetTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/SetTokenParser.php new file mode 100644 index 00000000..2fbdfe09 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/SetTokenParser.php @@ -0,0 +1,73 @@ +getLine(); + $stream = $this->parser->getStream(); + $names = $this->parser->getExpressionParser()->parseAssignmentExpression(); + + $capture = false; + if ($stream->nextIf(/* Token::OPERATOR_TYPE */ 8, '=')) { + $values = $this->parser->getExpressionParser()->parseMultitargetExpression(); + + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + if (\count($names) !== \count($values)) { + throw new SyntaxError('When using set, you must have the same number of variables and assignments.', $stream->getCurrent()->getLine(), $stream->getSourceContext()); + } + } else { + $capture = true; + + if (\count($names) > 1) { + throw new SyntaxError('When using set with a block, you cannot have a multi-target.', $stream->getCurrent()->getLine(), $stream->getSourceContext()); + } + + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + $values = $this->parser->subparse([$this, 'decideBlockEnd'], true); + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + } + + return new SetNode($capture, $names, $values, $lineno, $this->getTag()); + } + + public function decideBlockEnd(Token $token): bool + { + return $token->test('endset'); + } + + public function getTag(): string + { + return 'set'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/TokenParserInterface.php b/Sources/vendor/twig/twig/src/TokenParser/TokenParserInterface.php new file mode 100644 index 00000000..bb8db3e5 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/TokenParserInterface.php @@ -0,0 +1,46 @@ + + */ +interface TokenParserInterface +{ + /** + * Sets the parser associated with this token parser. + */ + public function setParser(Parser $parser): void; + + /** + * Parses a token and returns a node. + * + * @return Node + * + * @throws SyntaxError + */ + public function parse(Token $token); + + /** + * Gets the tag name associated with this token parser. + * + * @return string + */ + public function getTag(); +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/UseTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/UseTokenParser.php new file mode 100644 index 00000000..3cdbb98a --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/UseTokenParser.php @@ -0,0 +1,73 @@ +parser->getExpressionParser()->parseExpression(); + $stream = $this->parser->getStream(); + + if (!$template instanceof ConstantExpression) { + throw new SyntaxError('The template references in a "use" statement must be a string.', $stream->getCurrent()->getLine(), $stream->getSourceContext()); + } + + $targets = []; + if ($stream->nextIf('with')) { + while (true) { + $name = $stream->expect(/* Token::NAME_TYPE */ 5)->getValue(); + + $alias = $name; + if ($stream->nextIf('as')) { + $alias = $stream->expect(/* Token::NAME_TYPE */ 5)->getValue(); + } + + $targets[$name] = new ConstantExpression($alias, -1); + + if (!$stream->nextIf(/* Token::PUNCTUATION_TYPE */ 9, ',')) { + break; + } + } + } + + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + $this->parser->addTrait(new Node(['template' => $template, 'targets' => new Node($targets)])); + + return new Node(); + } + + public function getTag(): string + { + return 'use'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenParser/WithTokenParser.php b/Sources/vendor/twig/twig/src/TokenParser/WithTokenParser.php new file mode 100644 index 00000000..7d8cbe26 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenParser/WithTokenParser.php @@ -0,0 +1,56 @@ + + * + * @internal + */ +final class WithTokenParser extends AbstractTokenParser +{ + public function parse(Token $token): Node + { + $stream = $this->parser->getStream(); + + $variables = null; + $only = false; + if (!$stream->test(/* Token::BLOCK_END_TYPE */ 3)) { + $variables = $this->parser->getExpressionParser()->parseExpression(); + $only = (bool) $stream->nextIf(/* Token::NAME_TYPE */ 5, 'only'); + } + + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + $body = $this->parser->subparse([$this, 'decideWithEnd'], true); + + $stream->expect(/* Token::BLOCK_END_TYPE */ 3); + + return new WithNode($body, $variables, $only, $token->getLine(), $this->getTag()); + } + + public function decideWithEnd(Token $token): bool + { + return $token->test('endwith'); + } + + public function getTag(): string + { + return 'with'; + } +} diff --git a/Sources/vendor/twig/twig/src/TokenStream.php b/Sources/vendor/twig/twig/src/TokenStream.php new file mode 100644 index 00000000..1eac11a0 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TokenStream.php @@ -0,0 +1,132 @@ + + */ +final class TokenStream +{ + private $tokens; + private $current = 0; + private $source; + + public function __construct(array $tokens, Source $source = null) + { + $this->tokens = $tokens; + $this->source = $source ?: new Source('', ''); + } + + public function __toString() + { + return implode("\n", $this->tokens); + } + + public function injectTokens(array $tokens) + { + $this->tokens = array_merge(\array_slice($this->tokens, 0, $this->current), $tokens, \array_slice($this->tokens, $this->current)); + } + + /** + * Sets the pointer to the next token and returns the old one. + */ + public function next(): Token + { + if (!isset($this->tokens[++$this->current])) { + throw new SyntaxError('Unexpected end of template.', $this->tokens[$this->current - 1]->getLine(), $this->source); + } + + return $this->tokens[$this->current - 1]; + } + + /** + * Tests a token, sets the pointer to the next one and returns it or throws a syntax error. + * + * @return Token|null The next token if the condition is true, null otherwise + */ + public function nextIf($primary, $secondary = null) + { + if ($this->tokens[$this->current]->test($primary, $secondary)) { + return $this->next(); + } + } + + /** + * Tests a token and returns it or throws a syntax error. + */ + public function expect($type, $value = null, string $message = null): Token + { + $token = $this->tokens[$this->current]; + if (!$token->test($type, $value)) { + $line = $token->getLine(); + throw new SyntaxError(sprintf('%sUnexpected token "%s"%s ("%s" expected%s).', + $message ? $message.'. ' : '', + Token::typeToEnglish($token->getType()), + $token->getValue() ? sprintf(' of value "%s"', $token->getValue()) : '', + Token::typeToEnglish($type), $value ? sprintf(' with value "%s"', $value) : ''), + $line, + $this->source + ); + } + $this->next(); + + return $token; + } + + /** + * Looks at the next token. + */ + public function look(int $number = 1): Token + { + if (!isset($this->tokens[$this->current + $number])) { + throw new SyntaxError('Unexpected end of template.', $this->tokens[$this->current + $number - 1]->getLine(), $this->source); + } + + return $this->tokens[$this->current + $number]; + } + + /** + * Tests the current token. + */ + public function test($primary, $secondary = null): bool + { + return $this->tokens[$this->current]->test($primary, $secondary); + } + + /** + * Checks if end of stream was reached. + */ + public function isEOF(): bool + { + return /* Token::EOF_TYPE */ -1 === $this->tokens[$this->current]->getType(); + } + + public function getCurrent(): Token + { + return $this->tokens[$this->current]; + } + + /** + * Gets the source associated with this stream. + * + * @internal + */ + public function getSourceContext(): Source + { + return $this->source; + } +} diff --git a/Sources/vendor/twig/twig/src/TwigFilter.php b/Sources/vendor/twig/twig/src/TwigFilter.php new file mode 100644 index 00000000..8993026c --- /dev/null +++ b/Sources/vendor/twig/twig/src/TwigFilter.php @@ -0,0 +1,134 @@ + + * + * @see https://twig.symfony.com/doc/templates.html#filters + */ +final class TwigFilter +{ + private $name; + private $callable; + private $options; + private $arguments = []; + + /** + * @param callable|array{class-string, string}|null $callable A callable implementing the filter. If null, you need to overwrite the "node_class" option to customize compilation. + */ + public function __construct(string $name, $callable = null, array $options = []) + { + $this->name = $name; + $this->callable = $callable; + $this->options = array_merge([ + 'needs_environment' => false, + 'needs_context' => false, + 'is_variadic' => false, + 'is_safe' => null, + 'is_safe_callback' => null, + 'pre_escape' => null, + 'preserves_safety' => null, + 'node_class' => FilterExpression::class, + 'deprecated' => false, + 'alternative' => null, + ], $options); + } + + public function getName(): string + { + return $this->name; + } + + /** + * Returns the callable to execute for this filter. + * + * @return callable|array{class-string, string}|null + */ + public function getCallable() + { + return $this->callable; + } + + public function getNodeClass(): string + { + return $this->options['node_class']; + } + + public function setArguments(array $arguments): void + { + $this->arguments = $arguments; + } + + public function getArguments(): array + { + return $this->arguments; + } + + public function needsEnvironment(): bool + { + return $this->options['needs_environment']; + } + + public function needsContext(): bool + { + return $this->options['needs_context']; + } + + public function getSafe(Node $filterArgs): ?array + { + if (null !== $this->options['is_safe']) { + return $this->options['is_safe']; + } + + if (null !== $this->options['is_safe_callback']) { + return $this->options['is_safe_callback']($filterArgs); + } + + return null; + } + + public function getPreservesSafety(): ?array + { + return $this->options['preserves_safety']; + } + + public function getPreEscape(): ?string + { + return $this->options['pre_escape']; + } + + public function isVariadic(): bool + { + return $this->options['is_variadic']; + } + + public function isDeprecated(): bool + { + return (bool) $this->options['deprecated']; + } + + public function getDeprecatedVersion(): string + { + return \is_bool($this->options['deprecated']) ? '' : $this->options['deprecated']; + } + + public function getAlternative(): ?string + { + return $this->options['alternative']; + } +} diff --git a/Sources/vendor/twig/twig/src/TwigFunction.php b/Sources/vendor/twig/twig/src/TwigFunction.php new file mode 100644 index 00000000..d910d1fd --- /dev/null +++ b/Sources/vendor/twig/twig/src/TwigFunction.php @@ -0,0 +1,122 @@ + + * + * @see https://twig.symfony.com/doc/templates.html#functions + */ +final class TwigFunction +{ + private $name; + private $callable; + private $options; + private $arguments = []; + + /** + * @param callable|array{class-string, string}|null $callable A callable implementing the function. If null, you need to overwrite the "node_class" option to customize compilation. + */ + public function __construct(string $name, $callable = null, array $options = []) + { + $this->name = $name; + $this->callable = $callable; + $this->options = array_merge([ + 'needs_environment' => false, + 'needs_context' => false, + 'is_variadic' => false, + 'is_safe' => null, + 'is_safe_callback' => null, + 'node_class' => FunctionExpression::class, + 'deprecated' => false, + 'alternative' => null, + ], $options); + } + + public function getName(): string + { + return $this->name; + } + + /** + * Returns the callable to execute for this function. + * + * @return callable|array{class-string, string}|null + */ + public function getCallable() + { + return $this->callable; + } + + public function getNodeClass(): string + { + return $this->options['node_class']; + } + + public function setArguments(array $arguments): void + { + $this->arguments = $arguments; + } + + public function getArguments(): array + { + return $this->arguments; + } + + public function needsEnvironment(): bool + { + return $this->options['needs_environment']; + } + + public function needsContext(): bool + { + return $this->options['needs_context']; + } + + public function getSafe(Node $functionArgs): ?array + { + if (null !== $this->options['is_safe']) { + return $this->options['is_safe']; + } + + if (null !== $this->options['is_safe_callback']) { + return $this->options['is_safe_callback']($functionArgs); + } + + return []; + } + + public function isVariadic(): bool + { + return (bool) $this->options['is_variadic']; + } + + public function isDeprecated(): bool + { + return (bool) $this->options['deprecated']; + } + + public function getDeprecatedVersion(): string + { + return \is_bool($this->options['deprecated']) ? '' : $this->options['deprecated']; + } + + public function getAlternative(): ?string + { + return $this->options['alternative']; + } +} diff --git a/Sources/vendor/twig/twig/src/TwigTest.php b/Sources/vendor/twig/twig/src/TwigTest.php new file mode 100644 index 00000000..3769ec16 --- /dev/null +++ b/Sources/vendor/twig/twig/src/TwigTest.php @@ -0,0 +1,100 @@ + + * + * @see https://twig.symfony.com/doc/templates.html#test-operator + */ +final class TwigTest +{ + private $name; + private $callable; + private $options; + private $arguments = []; + + /** + * @param callable|array{class-string, string}|null $callable A callable implementing the test. If null, you need to overwrite the "node_class" option to customize compilation. + */ + public function __construct(string $name, $callable = null, array $options = []) + { + $this->name = $name; + $this->callable = $callable; + $this->options = array_merge([ + 'is_variadic' => false, + 'node_class' => TestExpression::class, + 'deprecated' => false, + 'alternative' => null, + 'one_mandatory_argument' => false, + ], $options); + } + + public function getName(): string + { + return $this->name; + } + + /** + * Returns the callable to execute for this test. + * + * @return callable|array{class-string, string}|null + */ + public function getCallable() + { + return $this->callable; + } + + public function getNodeClass(): string + { + return $this->options['node_class']; + } + + public function setArguments(array $arguments): void + { + $this->arguments = $arguments; + } + + public function getArguments(): array + { + return $this->arguments; + } + + public function isVariadic(): bool + { + return (bool) $this->options['is_variadic']; + } + + public function isDeprecated(): bool + { + return (bool) $this->options['deprecated']; + } + + public function getDeprecatedVersion(): string + { + return \is_bool($this->options['deprecated']) ? '' : $this->options['deprecated']; + } + + public function getAlternative(): ?string + { + return $this->options['alternative']; + } + + public function hasOneMandatoryArgument(): bool + { + return (bool) $this->options['one_mandatory_argument']; + } +} diff --git a/Sources/vendor/twig/twig/src/Util/DeprecationCollector.php b/Sources/vendor/twig/twig/src/Util/DeprecationCollector.php new file mode 100644 index 00000000..378b666b --- /dev/null +++ b/Sources/vendor/twig/twig/src/Util/DeprecationCollector.php @@ -0,0 +1,77 @@ + + */ +final class DeprecationCollector +{ + private $twig; + + public function __construct(Environment $twig) + { + $this->twig = $twig; + } + + /** + * Returns deprecations for templates contained in a directory. + * + * @param string $dir A directory where templates are stored + * @param string $ext Limit the loaded templates by extension + * + * @return array An array of deprecations + */ + public function collectDir(string $dir, string $ext = '.twig'): array + { + $iterator = new \RegexIterator( + new \RecursiveIteratorIterator( + new \RecursiveDirectoryIterator($dir), \RecursiveIteratorIterator::LEAVES_ONLY + ), '{'.preg_quote($ext).'$}' + ); + + return $this->collect(new TemplateDirIterator($iterator)); + } + + /** + * Returns deprecations for passed templates. + * + * @param \Traversable $iterator An iterator of templates (where keys are template names and values the contents of the template) + * + * @return array An array of deprecations + */ + public function collect(\Traversable $iterator): array + { + $deprecations = []; + set_error_handler(function ($type, $msg) use (&$deprecations) { + if (\E_USER_DEPRECATED === $type) { + $deprecations[] = $msg; + } + }); + + foreach ($iterator as $name => $contents) { + try { + $this->twig->parse($this->twig->tokenize(new Source($contents, $name))); + } catch (SyntaxError $e) { + // ignore templates containing syntax errors + } + } + + restore_error_handler(); + + return $deprecations; + } +} diff --git a/Sources/vendor/twig/twig/src/Util/TemplateDirIterator.php b/Sources/vendor/twig/twig/src/Util/TemplateDirIterator.php new file mode 100644 index 00000000..3bef14be --- /dev/null +++ b/Sources/vendor/twig/twig/src/Util/TemplateDirIterator.php @@ -0,0 +1,36 @@ + + */ +class TemplateDirIterator extends \IteratorIterator +{ + /** + * @return mixed + */ + #[\ReturnTypeWillChange] + public function current() + { + return file_get_contents(parent::current()); + } + + /** + * @return mixed + */ + #[\ReturnTypeWillChange] + public function key() + { + return (string) parent::key(); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/LICENSE b/Sources/vendor/vlucas/phpdotenv/LICENSE new file mode 100644 index 00000000..922c5522 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/LICENSE @@ -0,0 +1,30 @@ +BSD 3-Clause License + +Copyright (c) 2014, Graham Campbell. +Copyright (c) 2013, Vance Lucas. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/Sources/vendor/vlucas/phpdotenv/composer.json b/Sources/vendor/vlucas/phpdotenv/composer.json new file mode 100644 index 00000000..fb972d75 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/composer.json @@ -0,0 +1,60 @@ +{ + "name": "vlucas/phpdotenv", + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": ["env", "dotenv", "environment"], + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" + } + ], + "require": { + "php": "^7.2.5 || ^8.0", + "ext-pcre": "*", + "graham-campbell/result-type": "^1.1.2", + "phpoption/phpoption": "^1.9.2", + "symfony/polyfill-ctype": "^1.24", + "symfony/polyfill-mbstring": "^1.24", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "ext-filter": "*", + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit":"^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Dotenv\\Tests\\": "tests/Dotenv/" + } + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "config": { + "allow-plugins": { + "bamarni/composer-bin-plugin": true + }, + "preferred-install": "dist" + }, + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "5.6-dev" + } + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Dotenv.php b/Sources/vendor/vlucas/phpdotenv/src/Dotenv.php new file mode 100644 index 00000000..0460ced2 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Dotenv.php @@ -0,0 +1,267 @@ +store = $store; + $this->parser = $parser; + $this->loader = $loader; + $this->repository = $repository; + } + + /** + * Create a new dotenv instance. + * + * @param \Dotenv\Repository\RepositoryInterface $repository + * @param string|string[] $paths + * @param string|string[]|null $names + * @param bool $shortCircuit + * @param string|null $fileEncoding + * + * @return \Dotenv\Dotenv + */ + public static function create(RepositoryInterface $repository, $paths, $names = null, bool $shortCircuit = true, string $fileEncoding = null) + { + $builder = $names === null ? StoreBuilder::createWithDefaultName() : StoreBuilder::createWithNoNames(); + + foreach ((array) $paths as $path) { + $builder = $builder->addPath($path); + } + + foreach ((array) $names as $name) { + $builder = $builder->addName($name); + } + + if ($shortCircuit) { + $builder = $builder->shortCircuit(); + } + + return new self($builder->fileEncoding($fileEncoding)->make(), new Parser(), new Loader(), $repository); + } + + /** + * Create a new mutable dotenv instance with default repository. + * + * @param string|string[] $paths + * @param string|string[]|null $names + * @param bool $shortCircuit + * @param string|null $fileEncoding + * + * @return \Dotenv\Dotenv + */ + public static function createMutable($paths, $names = null, bool $shortCircuit = true, string $fileEncoding = null) + { + $repository = RepositoryBuilder::createWithDefaultAdapters()->make(); + + return self::create($repository, $paths, $names, $shortCircuit, $fileEncoding); + } + + /** + * Create a new mutable dotenv instance with default repository with the putenv adapter. + * + * @param string|string[] $paths + * @param string|string[]|null $names + * @param bool $shortCircuit + * @param string|null $fileEncoding + * + * @return \Dotenv\Dotenv + */ + public static function createUnsafeMutable($paths, $names = null, bool $shortCircuit = true, string $fileEncoding = null) + { + $repository = RepositoryBuilder::createWithDefaultAdapters() + ->addAdapter(PutenvAdapter::class) + ->make(); + + return self::create($repository, $paths, $names, $shortCircuit, $fileEncoding); + } + + /** + * Create a new immutable dotenv instance with default repository. + * + * @param string|string[] $paths + * @param string|string[]|null $names + * @param bool $shortCircuit + * @param string|null $fileEncoding + * + * @return \Dotenv\Dotenv + */ + public static function createImmutable($paths, $names = null, bool $shortCircuit = true, string $fileEncoding = null) + { + $repository = RepositoryBuilder::createWithDefaultAdapters()->immutable()->make(); + + return self::create($repository, $paths, $names, $shortCircuit, $fileEncoding); + } + + /** + * Create a new immutable dotenv instance with default repository with the putenv adapter. + * + * @param string|string[] $paths + * @param string|string[]|null $names + * @param bool $shortCircuit + * @param string|null $fileEncoding + * + * @return \Dotenv\Dotenv + */ + public static function createUnsafeImmutable($paths, $names = null, bool $shortCircuit = true, string $fileEncoding = null) + { + $repository = RepositoryBuilder::createWithDefaultAdapters() + ->addAdapter(PutenvAdapter::class) + ->immutable() + ->make(); + + return self::create($repository, $paths, $names, $shortCircuit, $fileEncoding); + } + + /** + * Create a new dotenv instance with an array backed repository. + * + * @param string|string[] $paths + * @param string|string[]|null $names + * @param bool $shortCircuit + * @param string|null $fileEncoding + * + * @return \Dotenv\Dotenv + */ + public static function createArrayBacked($paths, $names = null, bool $shortCircuit = true, string $fileEncoding = null) + { + $repository = RepositoryBuilder::createWithNoAdapters()->addAdapter(ArrayAdapter::class)->make(); + + return self::create($repository, $paths, $names, $shortCircuit, $fileEncoding); + } + + /** + * Parse the given content and resolve nested variables. + * + * This method behaves just like load(), only without mutating your actual + * environment. We do this by using an array backed repository. + * + * @param string $content + * + * @throws \Dotenv\Exception\InvalidFileException + * + * @return array + */ + public static function parse(string $content) + { + $repository = RepositoryBuilder::createWithNoAdapters()->addAdapter(ArrayAdapter::class)->make(); + + $phpdotenv = new self(new StringStore($content), new Parser(), new Loader(), $repository); + + return $phpdotenv->load(); + } + + /** + * Read and load environment file(s). + * + * @throws \Dotenv\Exception\InvalidPathException|\Dotenv\Exception\InvalidEncodingException|\Dotenv\Exception\InvalidFileException + * + * @return array + */ + public function load() + { + $entries = $this->parser->parse($this->store->read()); + + return $this->loader->load($this->repository, $entries); + } + + /** + * Read and load environment file(s), silently failing if no files can be read. + * + * @throws \Dotenv\Exception\InvalidEncodingException|\Dotenv\Exception\InvalidFileException + * + * @return array + */ + public function safeLoad() + { + try { + return $this->load(); + } catch (InvalidPathException $e) { + // suppressing exception + return []; + } + } + + /** + * Required ensures that the specified variables exist, and returns a new validator object. + * + * @param string|string[] $variables + * + * @return \Dotenv\Validator + */ + public function required($variables) + { + return (new Validator($this->repository, (array) $variables))->required(); + } + + /** + * Returns a new validator object that won't check if the specified variables exist. + * + * @param string|string[] $variables + * + * @return \Dotenv\Validator + */ + public function ifPresent($variables) + { + return new Validator($this->repository, (array) $variables); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php b/Sources/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php new file mode 100644 index 00000000..1e80f531 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php @@ -0,0 +1,12 @@ + + */ + public function load(RepositoryInterface $repository, array $entries) + { + return \array_reduce($entries, static function (array $vars, Entry $entry) use ($repository) { + $name = $entry->getName(); + + $value = $entry->getValue()->map(static function (Value $value) use ($repository) { + return Resolver::resolve($repository, $value); + }); + + if ($value->isDefined()) { + $inner = $value->get(); + if ($repository->set($name, $inner)) { + return \array_merge($vars, [$name => $inner]); + } + } else { + if ($repository->clear($name)) { + return \array_merge($vars, [$name => null]); + } + } + + return $vars; + }, []); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php b/Sources/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php new file mode 100644 index 00000000..275d98e8 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php @@ -0,0 +1,20 @@ + + */ + public function load(RepositoryInterface $repository, array $entries); +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Loader/Resolver.php b/Sources/vendor/vlucas/phpdotenv/src/Loader/Resolver.php new file mode 100644 index 00000000..36d7a4b9 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Loader/Resolver.php @@ -0,0 +1,65 @@ +getVars(), static function (string $s, int $i) use ($repository) { + return Str::substr($s, 0, $i).self::resolveVariable($repository, Str::substr($s, $i)); + }, $value->getChars()); + } + + /** + * Resolve a single nested variable. + * + * @param \Dotenv\Repository\RepositoryInterface $repository + * @param string $str + * + * @return string + */ + private static function resolveVariable(RepositoryInterface $repository, string $str) + { + return Regex::replaceCallback( + '/\A\${([a-zA-Z0-9_.]+)}/', + static function (array $matches) use ($repository) { + return Option::fromValue($repository->get($matches[1])) + ->getOrElse($matches[0]); + }, + $str, + 1 + )->success()->getOrElse($str); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Parser/Entry.php b/Sources/vendor/vlucas/phpdotenv/src/Parser/Entry.php new file mode 100644 index 00000000..7570f587 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Parser/Entry.php @@ -0,0 +1,59 @@ +name = $name; + $this->value = $value; + } + + /** + * Get the entry name. + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Get the entry value. + * + * @return \PhpOption\Option<\Dotenv\Parser\Value> + */ + public function getValue() + { + /** @var \PhpOption\Option<\Dotenv\Parser\Value> */ + return Option::fromValue($this->value); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Parser/EntryParser.php b/Sources/vendor/vlucas/phpdotenv/src/Parser/EntryParser.php new file mode 100644 index 00000000..e286840a --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Parser/EntryParser.php @@ -0,0 +1,300 @@ + + */ + public static function parse(string $entry) + { + return self::splitStringIntoParts($entry)->flatMap(static function (array $parts) { + [$name, $value] = $parts; + + return self::parseName($name)->flatMap(static function (string $name) use ($value) { + /** @var Result */ + $parsedValue = $value === null ? Success::create(null) : self::parseValue($value); + + return $parsedValue->map(static function (?Value $value) use ($name) { + return new Entry($name, $value); + }); + }); + }); + } + + /** + * Split the compound string into parts. + * + * @param string $line + * + * @return \GrahamCampbell\ResultType\Result + */ + private static function splitStringIntoParts(string $line) + { + /** @var array{string,string|null} */ + $result = Str::pos($line, '=')->map(static function () use ($line) { + return \array_map('trim', \explode('=', $line, 2)); + })->getOrElse([$line, null]); + + if ($result[0] === '') { + /** @var \GrahamCampbell\ResultType\Result */ + return Error::create(self::getErrorMessage('an unexpected equals', $line)); + } + + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create($result); + } + + /** + * Parse the given variable name. + * + * That is, strip the optional quotes and leading "export" from the + * variable name. We wrap the answer in a result type. + * + * @param string $name + * + * @return \GrahamCampbell\ResultType\Result + */ + private static function parseName(string $name) + { + if (Str::len($name) > 8 && Str::substr($name, 0, 6) === 'export' && \ctype_space(Str::substr($name, 6, 1))) { + $name = \ltrim(Str::substr($name, 6)); + } + + if (self::isQuotedName($name)) { + $name = Str::substr($name, 1, -1); + } + + if (!self::isValidName($name)) { + /** @var \GrahamCampbell\ResultType\Result */ + return Error::create(self::getErrorMessage('an invalid name', $name)); + } + + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create($name); + } + + /** + * Is the given variable name quoted? + * + * @param string $name + * + * @return bool + */ + private static function isQuotedName(string $name) + { + if (Str::len($name) < 3) { + return false; + } + + $first = Str::substr($name, 0, 1); + $last = Str::substr($name, -1, 1); + + return ($first === '"' && $last === '"') || ($first === '\'' && $last === '\''); + } + + /** + * Is the given variable name valid? + * + * @param string $name + * + * @return bool + */ + private static function isValidName(string $name) + { + return Regex::matches('~(*UTF8)\A[\p{Ll}\p{Lu}\p{M}\p{N}_.]+\z~', $name)->success()->getOrElse(false); + } + + /** + * Parse the given variable value. + * + * This has the effect of stripping quotes and comments, dealing with + * special characters, and locating nested variables, but not resolving + * them. Formally, we run a finite state automaton with an output tape: a + * transducer. We wrap the answer in a result type. + * + * @param string $value + * + * @return \GrahamCampbell\ResultType\Result<\Dotenv\Parser\Value,string> + */ + private static function parseValue(string $value) + { + if (\trim($value) === '') { + /** @var \GrahamCampbell\ResultType\Result<\Dotenv\Parser\Value,string> */ + return Success::create(Value::blank()); + } + + return \array_reduce(\iterator_to_array(Lexer::lex($value)), static function (Result $data, string $token) { + return $data->flatMap(static function (array $data) use ($token) { + return self::processToken($data[1], $token)->map(static function (array $val) use ($data) { + return [$data[0]->append($val[0], $val[1]), $val[2]]; + }); + }); + }, Success::create([Value::blank(), self::INITIAL_STATE]))->flatMap(static function (array $result) { + /** @psalm-suppress DocblockTypeContradiction */ + if (in_array($result[1], self::REJECT_STATES, true)) { + /** @var \GrahamCampbell\ResultType\Result<\Dotenv\Parser\Value,string> */ + return Error::create('a missing closing quote'); + } + + /** @var \GrahamCampbell\ResultType\Result<\Dotenv\Parser\Value,string> */ + return Success::create($result[0]); + })->mapError(static function (string $err) use ($value) { + return self::getErrorMessage($err, $value); + }); + } + + /** + * Process the given token. + * + * @param int $state + * @param string $token + * + * @return \GrahamCampbell\ResultType\Result + */ + private static function processToken(int $state, string $token) + { + switch ($state) { + case self::INITIAL_STATE: + if ($token === '\'') { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create(['', false, self::SINGLE_QUOTED_STATE]); + } elseif ($token === '"') { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create(['', false, self::DOUBLE_QUOTED_STATE]); + } elseif ($token === '#') { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create(['', false, self::COMMENT_STATE]); + } elseif ($token === '$') { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create([$token, true, self::UNQUOTED_STATE]); + } else { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create([$token, false, self::UNQUOTED_STATE]); + } + case self::UNQUOTED_STATE: + if ($token === '#') { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create(['', false, self::COMMENT_STATE]); + } elseif (\ctype_space($token)) { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create(['', false, self::WHITESPACE_STATE]); + } elseif ($token === '$') { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create([$token, true, self::UNQUOTED_STATE]); + } else { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create([$token, false, self::UNQUOTED_STATE]); + } + case self::SINGLE_QUOTED_STATE: + if ($token === '\'') { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create(['', false, self::WHITESPACE_STATE]); + } else { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create([$token, false, self::SINGLE_QUOTED_STATE]); + } + case self::DOUBLE_QUOTED_STATE: + if ($token === '"') { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create(['', false, self::WHITESPACE_STATE]); + } elseif ($token === '\\') { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create(['', false, self::ESCAPE_SEQUENCE_STATE]); + } elseif ($token === '$') { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create([$token, true, self::DOUBLE_QUOTED_STATE]); + } else { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create([$token, false, self::DOUBLE_QUOTED_STATE]); + } + case self::ESCAPE_SEQUENCE_STATE: + if ($token === '"' || $token === '\\') { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create([$token, false, self::DOUBLE_QUOTED_STATE]); + } elseif ($token === '$') { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create([$token, false, self::DOUBLE_QUOTED_STATE]); + } else { + $first = Str::substr($token, 0, 1); + if (\in_array($first, ['f', 'n', 'r', 't', 'v'], true)) { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create([\stripcslashes('\\'.$first).Str::substr($token, 1), false, self::DOUBLE_QUOTED_STATE]); + } else { + /** @var \GrahamCampbell\ResultType\Result */ + return Error::create('an unexpected escape sequence'); + } + } + case self::WHITESPACE_STATE: + if ($token === '#') { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create(['', false, self::COMMENT_STATE]); + } elseif (!\ctype_space($token)) { + /** @var \GrahamCampbell\ResultType\Result */ + return Error::create('unexpected whitespace'); + } else { + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create(['', false, self::WHITESPACE_STATE]); + } + case self::COMMENT_STATE: + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create(['', false, self::COMMENT_STATE]); + default: + throw new \Error('Parser entered invalid state.'); + } + } + + /** + * Generate a friendly error message. + * + * @param string $cause + * @param string $subject + * + * @return string + */ + private static function getErrorMessage(string $cause, string $subject) + { + return \sprintf( + 'Encountered %s at [%s].', + $cause, + \strtok($subject, "\n") + ); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Parser/Lexer.php b/Sources/vendor/vlucas/phpdotenv/src/Parser/Lexer.php new file mode 100644 index 00000000..981af24f --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Parser/Lexer.php @@ -0,0 +1,58 @@ + + */ + public static function lex(string $content) + { + static $regex; + + if ($regex === null) { + $regex = '(('.\implode(')|(', self::PATTERNS).'))A'; + } + + $offset = 0; + + while (isset($content[$offset])) { + if (!\preg_match($regex, $content, $matches, 0, $offset)) { + throw new \Error(\sprintf('Lexer encountered unexpected character [%s].', $content[$offset])); + } + + $offset += \strlen($matches[0]); + + yield $matches[0]; + } + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Parser/Lines.php b/Sources/vendor/vlucas/phpdotenv/src/Parser/Lines.php new file mode 100644 index 00000000..64979932 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Parser/Lines.php @@ -0,0 +1,127 @@ +map(static function () use ($line) { + return self::looksLikeMultilineStop($line, true) === false; + })->getOrElse(false); + } + + /** + * Determine if the given line can be the start of a multiline variable. + * + * @param string $line + * @param bool $started + * + * @return bool + */ + private static function looksLikeMultilineStop(string $line, bool $started) + { + if ($line === '"') { + return true; + } + + return Regex::occurrences('/(?=([^\\\\]"))/', \str_replace('\\\\', '', $line))->map(static function (int $count) use ($started) { + return $started ? $count > 1 : $count >= 1; + })->success()->getOrElse(false); + } + + /** + * Determine if the line in the file is a comment or whitespace. + * + * @param string $line + * + * @return bool + */ + private static function isCommentOrWhitespace(string $line) + { + $line = \trim($line); + + return $line === '' || (isset($line[0]) && $line[0] === '#'); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Parser/Parser.php b/Sources/vendor/vlucas/phpdotenv/src/Parser/Parser.php new file mode 100644 index 00000000..2d30dfd6 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Parser/Parser.php @@ -0,0 +1,53 @@ +mapError(static function () { + return 'Could not split into separate lines.'; + })->flatMap(static function (array $lines) { + return self::process(Lines::process($lines)); + })->mapError(static function (string $error) { + throw new InvalidFileException(\sprintf('Failed to parse dotenv file. %s', $error)); + })->success()->get(); + } + + /** + * Convert the raw entries into proper entries. + * + * @param string[] $entries + * + * @return \GrahamCampbell\ResultType\Result<\Dotenv\Parser\Entry[],string> + */ + private static function process(array $entries) + { + /** @var \GrahamCampbell\ResultType\Result<\Dotenv\Parser\Entry[],string> */ + return \array_reduce($entries, static function (Result $result, string $raw) { + return $result->flatMap(static function (array $entries) use ($raw) { + return EntryParser::parse($raw)->map(static function (Entry $entry) use ($entries) { + /** @var \Dotenv\Parser\Entry[] */ + return \array_merge($entries, [$entry]); + }); + }); + }, Success::create([])); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Parser/ParserInterface.php b/Sources/vendor/vlucas/phpdotenv/src/Parser/ParserInterface.php new file mode 100644 index 00000000..17cc42ad --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Parser/ParserInterface.php @@ -0,0 +1,19 @@ +chars = $chars; + $this->vars = $vars; + } + + /** + * Create an empty value instance. + * + * @return \Dotenv\Parser\Value + */ + public static function blank() + { + return new self('', []); + } + + /** + * Create a new value instance, appending the characters. + * + * @param string $chars + * @param bool $var + * + * @return \Dotenv\Parser\Value + */ + public function append(string $chars, bool $var) + { + return new self( + $this->chars.$chars, + $var ? \array_merge($this->vars, [Str::len($this->chars)]) : $this->vars + ); + } + + /** + * Get the string representation of the parsed value. + * + * @return string + */ + public function getChars() + { + return $this->chars; + } + + /** + * Get the locations of the variables in the value. + * + * @return int[] + */ + public function getVars() + { + $vars = $this->vars; + + \rsort($vars); + + return $vars; + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php new file mode 100644 index 00000000..5604398a --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php @@ -0,0 +1,15 @@ + + */ + public static function create(); +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php new file mode 100644 index 00000000..af0aae11 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php @@ -0,0 +1,89 @@ + + */ + public static function create() + { + if (self::isSupported()) { + /** @var \PhpOption\Option */ + return Some::create(new self()); + } + + return None::create(); + } + + /** + * Determines if the adapter is supported. + * + * This happens if PHP is running as an Apache module. + * + * @return bool + */ + private static function isSupported() + { + return \function_exists('apache_getenv') && \function_exists('apache_setenv'); + } + + /** + * Read an environment variable, if it exists. + * + * @param non-empty-string $name + * + * @return \PhpOption\Option + */ + public function read(string $name) + { + /** @var \PhpOption\Option */ + return Option::fromValue(apache_getenv($name))->filter(static function ($value) { + return \is_string($value) && $value !== ''; + }); + } + + /** + * Write to an environment variable, if possible. + * + * @param non-empty-string $name + * @param string $value + * + * @return bool + */ + public function write(string $name, string $value) + { + return apache_setenv($name, $value); + } + + /** + * Delete an environment variable, if possible. + * + * @param non-empty-string $name + * + * @return bool + */ + public function delete(string $name) + { + return apache_setenv($name, ''); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php new file mode 100644 index 00000000..df64cf6d --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php @@ -0,0 +1,80 @@ + + */ + private $variables; + + /** + * Create a new array adapter instance. + * + * @return void + */ + private function __construct() + { + $this->variables = []; + } + + /** + * Create a new instance of the adapter, if it is available. + * + * @return \PhpOption\Option<\Dotenv\Repository\Adapter\AdapterInterface> + */ + public static function create() + { + /** @var \PhpOption\Option */ + return Some::create(new self()); + } + + /** + * Read an environment variable, if it exists. + * + * @param non-empty-string $name + * + * @return \PhpOption\Option + */ + public function read(string $name) + { + return Option::fromArraysValue($this->variables, $name); + } + + /** + * Write to an environment variable, if possible. + * + * @param non-empty-string $name + * @param string $value + * + * @return bool + */ + public function write(string $name, string $value) + { + $this->variables[$name] = $value; + + return true; + } + + /** + * Delete an environment variable, if possible. + * + * @param non-empty-string $name + * + * @return bool + */ + public function delete(string $name) + { + unset($this->variables[$name]); + + return true; + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php new file mode 100644 index 00000000..9eb19477 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php @@ -0,0 +1,89 @@ + + */ + public static function create() + { + /** @var \PhpOption\Option */ + return Some::create(new self()); + } + + /** + * Read an environment variable, if it exists. + * + * @param non-empty-string $name + * + * @return \PhpOption\Option + */ + public function read(string $name) + { + /** @var \PhpOption\Option */ + return Option::fromArraysValue($_ENV, $name) + ->filter(static function ($value) { + return \is_scalar($value); + }) + ->map(static function ($value) { + if ($value === false) { + return 'false'; + } + + if ($value === true) { + return 'true'; + } + + /** @psalm-suppress PossiblyInvalidCast */ + return (string) $value; + }); + } + + /** + * Write to an environment variable, if possible. + * + * @param non-empty-string $name + * @param string $value + * + * @return bool + */ + public function write(string $name, string $value) + { + $_ENV[$name] = $value; + + return true; + } + + /** + * Delete an environment variable, if possible. + * + * @param non-empty-string $name + * + * @return bool + */ + public function delete(string $name) + { + unset($_ENV[$name]); + + return true; + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php new file mode 100644 index 00000000..fed8b9ba --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php @@ -0,0 +1,85 @@ +writer = $writer; + $this->allowList = $allowList; + } + + /** + * Write to an environment variable, if possible. + * + * @param non-empty-string $name + * @param string $value + * + * @return bool + */ + public function write(string $name, string $value) + { + // Don't set non-allowed variables + if (!$this->isAllowed($name)) { + return false; + } + + // Set the value on the inner writer + return $this->writer->write($name, $value); + } + + /** + * Delete an environment variable, if possible. + * + * @param non-empty-string $name + * + * @return bool + */ + public function delete(string $name) + { + // Don't clear non-allowed variables + if (!$this->isAllowed($name)) { + return false; + } + + // Set the value on the inner writer + return $this->writer->delete($name); + } + + /** + * Determine if the given variable is allowed. + * + * @param non-empty-string $name + * + * @return bool + */ + private function isAllowed(string $name) + { + return \in_array($name, $this->allowList, true); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php new file mode 100644 index 00000000..399e6f9b --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php @@ -0,0 +1,110 @@ + + */ + private $loaded; + + /** + * Create a new immutable writer instance. + * + * @param \Dotenv\Repository\Adapter\WriterInterface $writer + * @param \Dotenv\Repository\Adapter\ReaderInterface $reader + * + * @return void + */ + public function __construct(WriterInterface $writer, ReaderInterface $reader) + { + $this->writer = $writer; + $this->reader = $reader; + $this->loaded = []; + } + + /** + * Write to an environment variable, if possible. + * + * @param non-empty-string $name + * @param string $value + * + * @return bool + */ + public function write(string $name, string $value) + { + // Don't overwrite existing environment variables + // Ruby's dotenv does this with `ENV[key] ||= value` + if ($this->isExternallyDefined($name)) { + return false; + } + + // Set the value on the inner writer + if (!$this->writer->write($name, $value)) { + return false; + } + + // Record that we have loaded the variable + $this->loaded[$name] = ''; + + return true; + } + + /** + * Delete an environment variable, if possible. + * + * @param non-empty-string $name + * + * @return bool + */ + public function delete(string $name) + { + // Don't clear existing environment variables + if ($this->isExternallyDefined($name)) { + return false; + } + + // Clear the value on the inner writer + if (!$this->writer->delete($name)) { + return false; + } + + // Leave the variable as fair game + unset($this->loaded[$name]); + + return true; + } + + /** + * Determine if the given variable is externally defined. + * + * That is, is it an "existing" variable. + * + * @param non-empty-string $name + * + * @return bool + */ + private function isExternallyDefined(string $name) + { + return $this->reader->read($name)->isDefined() && !isset($this->loaded[$name]); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php new file mode 100644 index 00000000..0cfda6f6 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php @@ -0,0 +1,48 @@ +readers = $readers; + } + + /** + * Read an environment variable, if it exists. + * + * @param non-empty-string $name + * + * @return \PhpOption\Option + */ + public function read(string $name) + { + foreach ($this->readers as $reader) { + $result = $reader->read($name); + if ($result->isDefined()) { + return $result; + } + } + + return None::create(); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php new file mode 100644 index 00000000..15a9d8fd --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php @@ -0,0 +1,64 @@ +writers = $writers; + } + + /** + * Write to an environment variable, if possible. + * + * @param non-empty-string $name + * @param string $value + * + * @return bool + */ + public function write(string $name, string $value) + { + foreach ($this->writers as $writers) { + if (!$writers->write($name, $value)) { + return false; + } + } + + return true; + } + + /** + * Delete an environment variable, if possible. + * + * @param non-empty-string $name + * + * @return bool + */ + public function delete(string $name) + { + foreach ($this->writers as $writers) { + if (!$writers->delete($name)) { + return false; + } + } + + return true; + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php new file mode 100644 index 00000000..6d017cdb --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php @@ -0,0 +1,91 @@ + + */ + public static function create() + { + if (self::isSupported()) { + /** @var \PhpOption\Option */ + return Some::create(new self()); + } + + return None::create(); + } + + /** + * Determines if the adapter is supported. + * + * @return bool + */ + private static function isSupported() + { + return \function_exists('getenv') && \function_exists('putenv'); + } + + /** + * Read an environment variable, if it exists. + * + * @param non-empty-string $name + * + * @return \PhpOption\Option + */ + public function read(string $name) + { + /** @var \PhpOption\Option */ + return Option::fromValue(\getenv($name), false)->filter(static function ($value) { + return \is_string($value); + }); + } + + /** + * Write to an environment variable, if possible. + * + * @param non-empty-string $name + * @param string $value + * + * @return bool + */ + public function write(string $name, string $value) + { + \putenv("$name=$value"); + + return true; + } + + /** + * Delete an environment variable, if possible. + * + * @param non-empty-string $name + * + * @return bool + */ + public function delete(string $name) + { + \putenv($name); + + return true; + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php new file mode 100644 index 00000000..306a63fc --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php @@ -0,0 +1,17 @@ + + */ + public function read(string $name); +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php new file mode 100644 index 00000000..98c0f041 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php @@ -0,0 +1,104 @@ + + */ + private $seen; + + /** + * Create a new replacement writer instance. + * + * @param \Dotenv\Repository\Adapter\WriterInterface $writer + * @param \Dotenv\Repository\Adapter\ReaderInterface $reader + * + * @return void + */ + public function __construct(WriterInterface $writer, ReaderInterface $reader) + { + $this->writer = $writer; + $this->reader = $reader; + $this->seen = []; + } + + /** + * Write to an environment variable, if possible. + * + * @param non-empty-string $name + * @param string $value + * + * @return bool + */ + public function write(string $name, string $value) + { + if ($this->exists($name)) { + return $this->writer->write($name, $value); + } + + // succeed if nothing to do + return true; + } + + /** + * Delete an environment variable, if possible. + * + * @param non-empty-string $name + * + * @return bool + */ + public function delete(string $name) + { + if ($this->exists($name)) { + return $this->writer->delete($name); + } + + // succeed if nothing to do + return true; + } + + /** + * Does the given environment variable exist. + * + * Returns true if it currently exists, or existed at any point in the past + * that we are aware of. + * + * @param non-empty-string $name + * + * @return bool + */ + private function exists(string $name) + { + if (isset($this->seen[$name])) { + return true; + } + + if ($this->reader->read($name)->isDefined()) { + $this->seen[$name] = ''; + + return true; + } + + return false; + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php new file mode 100644 index 00000000..f93b6e5e --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php @@ -0,0 +1,89 @@ + + */ + public static function create() + { + /** @var \PhpOption\Option */ + return Some::create(new self()); + } + + /** + * Read an environment variable, if it exists. + * + * @param non-empty-string $name + * + * @return \PhpOption\Option + */ + public function read(string $name) + { + /** @var \PhpOption\Option */ + return Option::fromArraysValue($_SERVER, $name) + ->filter(static function ($value) { + return \is_scalar($value); + }) + ->map(static function ($value) { + if ($value === false) { + return 'false'; + } + + if ($value === true) { + return 'true'; + } + + /** @psalm-suppress PossiblyInvalidCast */ + return (string) $value; + }); + } + + /** + * Write to an environment variable, if possible. + * + * @param non-empty-string $name + * @param string $value + * + * @return bool + */ + public function write(string $name, string $value) + { + $_SERVER[$name] = $value; + + return true; + } + + /** + * Delete an environment variable, if possible. + * + * @param non-empty-string $name + * + * @return bool + */ + public function delete(string $name) + { + unset($_SERVER[$name]); + + return true; + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php new file mode 100644 index 00000000..4cb3d61f --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php @@ -0,0 +1,27 @@ +reader = $reader; + $this->writer = $writer; + } + + /** + * Determine if the given environment variable is defined. + * + * @param string $name + * + * @return bool + */ + public function has(string $name) + { + return '' !== $name && $this->reader->read($name)->isDefined(); + } + + /** + * Get an environment variable. + * + * @param string $name + * + * @throws \InvalidArgumentException + * + * @return string|null + */ + public function get(string $name) + { + if ('' === $name) { + throw new InvalidArgumentException('Expected name to be a non-empty string.'); + } + + return $this->reader->read($name)->getOrElse(null); + } + + /** + * Set an environment variable. + * + * @param string $name + * @param string $value + * + * @throws \InvalidArgumentException + * + * @return bool + */ + public function set(string $name, string $value) + { + if ('' === $name) { + throw new InvalidArgumentException('Expected name to be a non-empty string.'); + } + + return $this->writer->write($name, $value); + } + + /** + * Clear an environment variable. + * + * @param string $name + * + * @throws \InvalidArgumentException + * + * @return bool + */ + public function clear(string $name) + { + if ('' === $name) { + throw new InvalidArgumentException('Expected name to be a non-empty string.'); + } + + return $this->writer->delete($name); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php new file mode 100644 index 00000000..a042f9a1 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php @@ -0,0 +1,272 @@ +readers = $readers; + $this->writers = $writers; + $this->immutable = $immutable; + $this->allowList = $allowList; + } + + /** + * Create a new repository builder instance with no adapters added. + * + * @return \Dotenv\Repository\RepositoryBuilder + */ + public static function createWithNoAdapters() + { + return new self(); + } + + /** + * Create a new repository builder instance with the default adapters added. + * + * @return \Dotenv\Repository\RepositoryBuilder + */ + public static function createWithDefaultAdapters() + { + $adapters = \iterator_to_array(self::defaultAdapters()); + + return new self($adapters, $adapters); + } + + /** + * Return the array of default adapters. + * + * @return \Generator<\Dotenv\Repository\Adapter\AdapterInterface> + */ + private static function defaultAdapters() + { + foreach (self::DEFAULT_ADAPTERS as $adapter) { + $instance = $adapter::create(); + if ($instance->isDefined()) { + yield $instance->get(); + } + } + } + + /** + * Determine if the given name if of an adapterclass. + * + * @param string $name + * + * @return bool + */ + private static function isAnAdapterClass(string $name) + { + if (!\class_exists($name)) { + return false; + } + + return (new ReflectionClass($name))->implementsInterface(AdapterInterface::class); + } + + /** + * Creates a repository builder with the given reader added. + * + * Accepts either a reader instance, or a class-string for an adapter. If + * the adapter is not supported, then we silently skip adding it. + * + * @param \Dotenv\Repository\Adapter\ReaderInterface|string $reader + * + * @throws \InvalidArgumentException + * + * @return \Dotenv\Repository\RepositoryBuilder + */ + public function addReader($reader) + { + if (!(\is_string($reader) && self::isAnAdapterClass($reader)) && !($reader instanceof ReaderInterface)) { + throw new InvalidArgumentException( + \sprintf( + 'Expected either an instance of %s or a class-string implementing %s', + ReaderInterface::class, + AdapterInterface::class + ) + ); + } + + $optional = Some::create($reader)->flatMap(static function ($reader) { + return \is_string($reader) ? $reader::create() : Some::create($reader); + }); + + $readers = \array_merge($this->readers, \iterator_to_array($optional)); + + return new self($readers, $this->writers, $this->immutable, $this->allowList); + } + + /** + * Creates a repository builder with the given writer added. + * + * Accepts either a writer instance, or a class-string for an adapter. If + * the adapter is not supported, then we silently skip adding it. + * + * @param \Dotenv\Repository\Adapter\WriterInterface|string $writer + * + * @throws \InvalidArgumentException + * + * @return \Dotenv\Repository\RepositoryBuilder + */ + public function addWriter($writer) + { + if (!(\is_string($writer) && self::isAnAdapterClass($writer)) && !($writer instanceof WriterInterface)) { + throw new InvalidArgumentException( + \sprintf( + 'Expected either an instance of %s or a class-string implementing %s', + WriterInterface::class, + AdapterInterface::class + ) + ); + } + + $optional = Some::create($writer)->flatMap(static function ($writer) { + return \is_string($writer) ? $writer::create() : Some::create($writer); + }); + + $writers = \array_merge($this->writers, \iterator_to_array($optional)); + + return new self($this->readers, $writers, $this->immutable, $this->allowList); + } + + /** + * Creates a repository builder with the given adapter added. + * + * Accepts either an adapter instance, or a class-string for an adapter. If + * the adapter is not supported, then we silently skip adding it. We will + * add the adapter as both a reader and a writer. + * + * @param \Dotenv\Repository\Adapter\WriterInterface|string $adapter + * + * @throws \InvalidArgumentException + * + * @return \Dotenv\Repository\RepositoryBuilder + */ + public function addAdapter($adapter) + { + if (!(\is_string($adapter) && self::isAnAdapterClass($adapter)) && !($adapter instanceof AdapterInterface)) { + throw new InvalidArgumentException( + \sprintf( + 'Expected either an instance of %s or a class-string implementing %s', + WriterInterface::class, + AdapterInterface::class + ) + ); + } + + $optional = Some::create($adapter)->flatMap(static function ($adapter) { + return \is_string($adapter) ? $adapter::create() : Some::create($adapter); + }); + + $readers = \array_merge($this->readers, \iterator_to_array($optional)); + $writers = \array_merge($this->writers, \iterator_to_array($optional)); + + return new self($readers, $writers, $this->immutable, $this->allowList); + } + + /** + * Creates a repository builder with mutability enabled. + * + * @return \Dotenv\Repository\RepositoryBuilder + */ + public function immutable() + { + return new self($this->readers, $this->writers, true, $this->allowList); + } + + /** + * Creates a repository builder with the given allow list. + * + * @param string[]|null $allowList + * + * @return \Dotenv\Repository\RepositoryBuilder + */ + public function allowList(array $allowList = null) + { + return new self($this->readers, $this->writers, $this->immutable, $allowList); + } + + /** + * Creates a new repository instance. + * + * @return \Dotenv\Repository\RepositoryInterface + */ + public function make() + { + $reader = new MultiReader($this->readers); + $writer = new MultiWriter($this->writers); + + if ($this->immutable) { + $writer = new ImmutableWriter($writer, $reader); + } + + if ($this->allowList !== null) { + $writer = new GuardedWriter($writer, $this->allowList); + } + + return new AdapterRepository($reader, $writer); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Repository/RepositoryInterface.php b/Sources/vendor/vlucas/phpdotenv/src/Repository/RepositoryInterface.php new file mode 100644 index 00000000..d9b18a40 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Repository/RepositoryInterface.php @@ -0,0 +1,51 @@ + + */ + public static function read(array $filePaths, bool $shortCircuit = true, string $fileEncoding = null) + { + $output = []; + + foreach ($filePaths as $filePath) { + $content = self::readFromFile($filePath, $fileEncoding); + if ($content->isDefined()) { + $output[$filePath] = $content->get(); + if ($shortCircuit) { + break; + } + } + } + + return $output; + } + + /** + * Read the given file. + * + * @param string $path + * @param string|null $encoding + * + * @throws \Dotenv\Exception\InvalidEncodingException + * + * @return \PhpOption\Option + */ + private static function readFromFile(string $path, string $encoding = null) + { + /** @var Option */ + $content = Option::fromValue(@\file_get_contents($path), false); + + return $content->flatMap(static function (string $content) use ($encoding) { + return Str::utf8($content, $encoding)->mapError(static function (string $error) { + throw new InvalidEncodingException($error); + })->success(); + }); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Store/FileStore.php b/Sources/vendor/vlucas/phpdotenv/src/Store/FileStore.php new file mode 100644 index 00000000..43f6135c --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Store/FileStore.php @@ -0,0 +1,72 @@ +filePaths = $filePaths; + $this->shortCircuit = $shortCircuit; + $this->fileEncoding = $fileEncoding; + } + + /** + * Read the content of the environment file(s). + * + * @throws \Dotenv\Exception\InvalidEncodingException|\Dotenv\Exception\InvalidPathException + * + * @return string + */ + public function read() + { + if ($this->filePaths === []) { + throw new InvalidPathException('At least one environment file path must be provided.'); + } + + $contents = Reader::read($this->filePaths, $this->shortCircuit, $this->fileEncoding); + + if (\count($contents) > 0) { + return \implode("\n", $contents); + } + + throw new InvalidPathException( + \sprintf('Unable to read any of the environment file(s) at [%s].', \implode(', ', $this->filePaths)) + ); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Store/StoreBuilder.php b/Sources/vendor/vlucas/phpdotenv/src/Store/StoreBuilder.php new file mode 100644 index 00000000..304117fc --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Store/StoreBuilder.php @@ -0,0 +1,141 @@ +paths = $paths; + $this->names = $names; + $this->shortCircuit = $shortCircuit; + $this->fileEncoding = $fileEncoding; + } + + /** + * Create a new store builder instance with no names. + * + * @return \Dotenv\Store\StoreBuilder + */ + public static function createWithNoNames() + { + return new self(); + } + + /** + * Create a new store builder instance with the default name. + * + * @return \Dotenv\Store\StoreBuilder + */ + public static function createWithDefaultName() + { + return new self([], [self::DEFAULT_NAME]); + } + + /** + * Creates a store builder with the given path added. + * + * @param string $path + * + * @return \Dotenv\Store\StoreBuilder + */ + public function addPath(string $path) + { + return new self(\array_merge($this->paths, [$path]), $this->names, $this->shortCircuit, $this->fileEncoding); + } + + /** + * Creates a store builder with the given name added. + * + * @param string $name + * + * @return \Dotenv\Store\StoreBuilder + */ + public function addName(string $name) + { + return new self($this->paths, \array_merge($this->names, [$name]), $this->shortCircuit, $this->fileEncoding); + } + + /** + * Creates a store builder with short circuit mode enabled. + * + * @return \Dotenv\Store\StoreBuilder + */ + public function shortCircuit() + { + return new self($this->paths, $this->names, true, $this->fileEncoding); + } + + /** + * Creates a store builder with the specified file encoding. + * + * @param string|null $fileEncoding + * + * @return \Dotenv\Store\StoreBuilder + */ + public function fileEncoding(string $fileEncoding = null) + { + return new self($this->paths, $this->names, $this->shortCircuit, $fileEncoding); + } + + /** + * Creates a new store instance. + * + * @return \Dotenv\Store\StoreInterface + */ + public function make() + { + return new FileStore( + Paths::filePaths($this->paths, $this->names), + $this->shortCircuit, + $this->fileEncoding + ); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php b/Sources/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php new file mode 100644 index 00000000..6f5b9862 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php @@ -0,0 +1,17 @@ +content = $content; + } + + /** + * Read the content of the environment file(s). + * + * @return string + */ + public function read() + { + return $this->content; + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Util/Regex.php b/Sources/vendor/vlucas/phpdotenv/src/Util/Regex.php new file mode 100644 index 00000000..52c15780 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Util/Regex.php @@ -0,0 +1,112 @@ + + */ + public static function matches(string $pattern, string $subject) + { + return self::pregAndWrap(static function (string $subject) use ($pattern) { + return @\preg_match($pattern, $subject) === 1; + }, $subject); + } + + /** + * Perform a preg match all, wrapping up the result. + * + * @param string $pattern + * @param string $subject + * + * @return \GrahamCampbell\ResultType\Result + */ + public static function occurrences(string $pattern, string $subject) + { + return self::pregAndWrap(static function (string $subject) use ($pattern) { + return (int) @\preg_match_all($pattern, $subject); + }, $subject); + } + + /** + * Perform a preg replace callback, wrapping up the result. + * + * @param string $pattern + * @param callable $callback + * @param string $subject + * @param int|null $limit + * + * @return \GrahamCampbell\ResultType\Result + */ + public static function replaceCallback(string $pattern, callable $callback, string $subject, int $limit = null) + { + return self::pregAndWrap(static function (string $subject) use ($pattern, $callback, $limit) { + return (string) @\preg_replace_callback($pattern, $callback, $subject, $limit ?? -1); + }, $subject); + } + + /** + * Perform a preg split, wrapping up the result. + * + * @param string $pattern + * @param string $subject + * + * @return \GrahamCampbell\ResultType\Result + */ + public static function split(string $pattern, string $subject) + { + return self::pregAndWrap(static function (string $subject) use ($pattern) { + /** @var string[] */ + return (array) @\preg_split($pattern, $subject); + }, $subject); + } + + /** + * Perform a preg operation, wrapping up the result. + * + * @template V + * + * @param callable(string):V $operation + * @param string $subject + * + * @return \GrahamCampbell\ResultType\Result + */ + private static function pregAndWrap(callable $operation, string $subject) + { + $result = $operation($subject); + + if (\preg_last_error() !== \PREG_NO_ERROR) { + /** @var \GrahamCampbell\ResultType\Result */ + return Error::create(\preg_last_error_msg()); + } + + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create($result); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Util/Str.php b/Sources/vendor/vlucas/phpdotenv/src/Util/Str.php new file mode 100644 index 00000000..087e236a --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Util/Str.php @@ -0,0 +1,98 @@ + + */ + public static function utf8(string $input, string $encoding = null) + { + if ($encoding !== null && !\in_array($encoding, \mb_list_encodings(), true)) { + /** @var \GrahamCampbell\ResultType\Result */ + return Error::create( + \sprintf('Illegal character encoding [%s] specified.', $encoding) + ); + } + $converted = $encoding === null ? + @\mb_convert_encoding($input, 'UTF-8') : + @\mb_convert_encoding($input, 'UTF-8', $encoding); + /** + * this is for support UTF-8 with BOM encoding + * @see https://en.wikipedia.org/wiki/Byte_order_mark + * @see https://github.com/vlucas/phpdotenv/issues/500 + */ + if (\substr($converted, 0, 3) == "\xEF\xBB\xBF") { + $converted = \substr($converted, 3); + } + /** @var \GrahamCampbell\ResultType\Result */ + return Success::create($converted); + } + + /** + * Search for a given substring of the input. + * + * @param string $haystack + * @param string $needle + * + * @return \PhpOption\Option + */ + public static function pos(string $haystack, string $needle) + { + /** @var \PhpOption\Option */ + return Option::fromValue(\mb_strpos($haystack, $needle, 0, 'UTF-8'), false); + } + + /** + * Grab the specified substring of the input. + * + * @param string $input + * @param int $start + * @param int|null $length + * + * @return string + */ + public static function substr(string $input, int $start, int $length = null) + { + return \mb_substr($input, $start, $length, 'UTF-8'); + } + + /** + * Compute the length of the given string. + * + * @param string $input + * + * @return int + */ + public static function len(string $input) + { + return \mb_strlen($input, 'UTF-8'); + } +} diff --git a/Sources/vendor/vlucas/phpdotenv/src/Validator.php b/Sources/vendor/vlucas/phpdotenv/src/Validator.php new file mode 100644 index 00000000..0c04ab62 --- /dev/null +++ b/Sources/vendor/vlucas/phpdotenv/src/Validator.php @@ -0,0 +1,209 @@ +repository = $repository; + $this->variables = $variables; + } + + /** + * Assert that each variable is present. + * + * @throws \Dotenv\Exception\ValidationException + * + * @return \Dotenv\Validator + */ + public function required() + { + return $this->assert( + static function (?string $value) { + return $value !== null; + }, + 'is missing' + ); + } + + /** + * Assert that each variable is not empty. + * + * @throws \Dotenv\Exception\ValidationException + * + * @return \Dotenv\Validator + */ + public function notEmpty() + { + return $this->assertNullable( + static function (string $value) { + return Str::len(\trim($value)) > 0; + }, + 'is empty' + ); + } + + /** + * Assert that each specified variable is an integer. + * + * @throws \Dotenv\Exception\ValidationException + * + * @return \Dotenv\Validator + */ + public function isInteger() + { + return $this->assertNullable( + static function (string $value) { + return \ctype_digit($value); + }, + 'is not an integer' + ); + } + + /** + * Assert that each specified variable is a boolean. + * + * @throws \Dotenv\Exception\ValidationException + * + * @return \Dotenv\Validator + */ + public function isBoolean() + { + return $this->assertNullable( + static function (string $value) { + if ($value === '') { + return false; + } + + return \filter_var($value, \FILTER_VALIDATE_BOOLEAN, \FILTER_NULL_ON_FAILURE) !== null; + }, + 'is not a boolean' + ); + } + + /** + * Assert that each variable is amongst the given choices. + * + * @param string[] $choices + * + * @throws \Dotenv\Exception\ValidationException + * + * @return \Dotenv\Validator + */ + public function allowedValues(array $choices) + { + return $this->assertNullable( + static function (string $value) use ($choices) { + return \in_array($value, $choices, true); + }, + \sprintf('is not one of [%s]', \implode(', ', $choices)) + ); + } + + /** + * Assert that each variable matches the given regular expression. + * + * @param string $regex + * + * @throws \Dotenv\Exception\ValidationException + * + * @return \Dotenv\Validator + */ + public function allowedRegexValues(string $regex) + { + return $this->assertNullable( + static function (string $value) use ($regex) { + return Regex::matches($regex, $value)->success()->getOrElse(false); + }, + \sprintf('does not match "%s"', $regex) + ); + } + + /** + * Assert that the callback returns true for each variable. + * + * @param callable(?string):bool $callback + * @param string $message + * + * @throws \Dotenv\Exception\ValidationException + * + * @return \Dotenv\Validator + */ + public function assert(callable $callback, string $message) + { + $failing = []; + + foreach ($this->variables as $variable) { + if ($callback($this->repository->get($variable)) === false) { + $failing[] = \sprintf('%s %s', $variable, $message); + } + } + + if (\count($failing) > 0) { + throw new ValidationException(\sprintf( + 'One or more environment variables failed assertions: %s.', + \implode(', ', $failing) + )); + } + + return $this; + } + + /** + * Assert that the callback returns true for each variable. + * + * Skip checking null variable values. + * + * @param callable(string):bool $callback + * @param string $message + * + * @throws \Dotenv\Exception\ValidationException + * + * @return \Dotenv\Validator + */ + public function assertNullable(callable $callback, string $message) + { + return $this->assert( + static function (?string $value) use ($callback) { + if ($value === null) { + return true; + } + + return $callback($value); + }, + $message + ); + } +}