content
stringlengths
4
1.04M
lang
stringclasses
358 values
score
int64
0
5
repo_name
stringlengths
5
114
repo_path
stringlengths
4
229
repo_licenses
listlengths
1
8
module example004() { difference() { cube(30, center = true); sphere(20); } } example004();
OpenSCAD
3
samiwa/test
examples/example004.scad
[ "MIT" ]
$if not set filename $set filename 'fc3d_avi-condensed.gdx' $if not %gams.user1% == "" $set filename %gams.user1% $if not set outfile $set outfile 'fc3d_avi-condensed_sol.gdx' $if not %gams.user2% == "" $set outfile %gams.user2% $if not set additional_constr $set additional_constr 'none' $if not "%gams.user3%" == "" $set additional_constr %gams.user3% set j /1 * 4/; sets i, p; parameter W(i,i), E(i,i), Wt(i, i), q(i), qt(i), Ak(p,i), guess_r(i), guess_y(i), guess_lambda_r(p), guess_lambda_y(p); $gdxin '%filename%'; $loadIdx W E Wt Ak q qt guess_r guess_y guess_lambda_r guess_lambda_y $gdxin *display Ak, W, E, Wt, q, qt; *display i, p; alias(i,l); variables r(l), y(l); $ifthen %additional_constr% == 'normal_pos' r.lo(l)$(mod(ord(l), 3) = 1) = 0.; y.lo(l)$(mod(ord(l), 3) = 1) = 0.; $endif equations F_r(l), F_y(l), cons_r(p), cons_y(p); parameter reaction(l), velocity(l), infos(j); r.l(i) = guess_r(i); y.l(i) = guess_y(i); F_r(l).. sum(i, W(l,i)*r(i)) + sum(i, E(l, i)*y(i)) + q(l) =n= 0; F_y(l).. sum(i, Wt(l,i)*r(i)) + sum(i, E(l, i)*y(i)) + qt(l) =n= 0; cons_r(p).. sum(i, Ak(p,i)*r(i)) =g= 0.; cons_y(p).. sum(i, Ak(p,i)*y(i)) =g= 0.; cons_r.m(p) = guess_lambda_r(p); cons_y.m(p) = guess_lambda_y(p); parameters r_r(l), r_y(l), r_lr(p), r_ly(p); r_r(l) = sum(i, W(l,i)*r.l(i)) + sum(i, E(l, i)*y.l(i)) + q(l) - sum(p, Ak(p,l)*guess_lambda_r(p)); r_y(l) = sum(i, Wt(l,i)*r.l(i)) + sum(i, E(l, i)*y.l(i)) + qt(l) - sum(p, Ak(p,l)*guess_lambda_y(p)); r_lr(p) = sum(i, Ak(p,i)*r.l(i)); r_ly(p) = sum(i, Ak(p,i)*y.l(i)); *display r_r, r_y, r_lr, r_ly; model vi / all /; file fx /"%emp.info%"/; putclose fx 'vi F_r r F_y y'; solve vi using emp; reaction(i) = r.l(i); velocity(i) = sum(l, W(i,l)*r.l(l)) + q(i) + sum(l, E(i, l)*y.l(l)); infos('1') = vi.modelstat; infos('2') = vi.solvestat; infos('3') = vi.iterusd; infos('4') = vi.Resusd; execute_unloadIdx '%outfile%', reaction, velocity, infos;
GAMS
5
ljktest/siconos
numerics/share/gams/fc_vi-condensed.gms
[ "Apache-2.0" ]
$ echo $FOOBAR Hello World!
ShellSession
0
JavascriptID/sourcerer-app
src/test/resources/samples/langs/ShellSession/dollar.sh-session
[ "MIT" ]
#!/bin/bash #Copyright 2021 The gRPC authors. # # 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. set -euo pipefail ensure_command () { if command -v "$1" 1>/dev/null 2>&1; then return 0 else echo "$1 is not installed. Please install it to proceed." 1>&2 exit 1 fi } display_usage () { cat << EOF >/dev/stderr USAGE: $0 PR_ID GITHUB_USER BACKPORT_BRANCHES REVIEWERS [-c PER_BACKPORT_COMMAND] PR_ID: The ID of the PR to be backported. GITHUB_USER: Your GitHub username. BACKPORT_BRANCHES: A space-separated list of branches to which the source PR will be backported. REVIEWERS: A comma-separated list of users to add as both reviewer and assignee. PER_BACKPORT_COMMAND : An optional command to run after cherrypicking the PR to the target branch. If you use this option, ensure your working directory is clean, as "git add -A" will be used to incorporate any generated files. Try running "git clean -xdff" beforehand. Example: $0 25456 gnossen "v1.30.x v1.31.x v1.32.x v1.33.x v1.34.x v1.35.x v1.36.x" "menghanl,gnossen" Example: $0 25493 gnossen "\$(seq 30 33 | xargs -n1 printf 'v1.%s.x ')" "menghanl" -c ./tools/dockerfile/push_testing_images.sh EOF exit 1 } ensure_command "curl" ensure_command "egrep" ensure_command "hub" ensure_command "jq" if [ "$#" -lt "4" ]; then display_usage fi PR_ID="$1" GITHUB_USER="$2" BACKPORT_BRANCHES="$3" REVIEWERS="$4" shift 4 PER_BACKPORT_COMMAND="" while getopts "c:" OPT; do case "$OPT" in c ) PER_BACKPORT_COMMAND="$OPTARG" ;; \? ) echo "Invalid option: $OPTARG" >/dev/stderr display_usage ;; : ) echo "Invalid option: $OPTARG requires an argument." >/dev/stderr display_usage ;; esac done if [[ ! -z "$(git status --porcelain)" && ! -z "$PER_BACKPORT_COMMAND" ]]; then echo "Your working directory is not clean. Try running `git clean -xdff`. Warning: This is irreversible." > /dev/stderr exit 1 fi if [ -z "$GITHUB_TOKEN" ]; then echo "A GitHub token is required to run this script. See " \ "https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token" \ " for more information" >/dev/stderr exit 1 fi echo "This script will create a collection of backport PRs. You will probably " \ "have to touch your gnubby a frustrating number of times. C'est la vie." printf "Press any key to continue." read -r RESPONSE </dev/tty printf "\n" PR_DATA=$(curl -s -u "$GITHUB_USER:$GITHUB_TOKEN" \ -H "Accept: application/vnd.github.v3+json" \ "https://api.github.com/repos/grpc/grpc/pulls/$PR_ID") STATE=$(echo "$PR_DATA" | jq -r '.state') if [ "$STATE" != "open" ]; then TARGET_COMMITS=$(echo "$PR_DATA" | jq -r '.merge_commit_sha') FETCH_HEAD_REF=$(echo "$PR_DATA" | jq -r '.base.ref') SOURCE_REPO=$(echo "$PR_DATA" | jq -r '.base.repo.full_name') else COMMITS_URL=$(echo "$PR_DATA" | jq -r '.commits_url') COMMITS_DATA=$(curl -s -u "$GITHUB_USER:$GITHUB_TOKEN" \ -H "Accept: application/vnd.github.v3+json" \ "$COMMITS_URL") TARGET_COMMITS=$(echo "$COMMITS_DATA" | jq -r '. | map(.sha) | join(" ")') FETCH_HEAD_REF=$(echo "$PR_DATA" | jq -r '.head.sha') SOURCE_REPO=$(echo "$PR_DATA" | jq -r '.head.repo.full_name') fi PR_TITLE=$(echo "$PR_DATA" | jq -r '.title') PR_DESCRIPTION=$(echo "$PR_DATA" | jq -r '.body') LABELS=$(echo "$PR_DATA" | jq -r '.labels | map(.name) | join(",")') set -x git fetch "git@github.com:$SOURCE_REPO.git" "$FETCH_HEAD_REF" BACKPORT_PRS="" for BACKPORT_BRANCH in $BACKPORT_BRANCHES; do echo "Backporting $TARGET_COMMITS to $BACKPORT_BRANCH." git checkout "origin/$BACKPORT_BRANCH" BRANCH_NAME="backport_${PR_ID}_to_${BACKPORT_BRANCH}" # To make the script idempotent. git branch -D "$BRANCH_NAME" || true git checkout "$BACKPORT_BRANCH" git checkout -b "$BRANCH_NAME" for TARGET_COMMIT in $TARGET_COMMITS; do git cherry-pick -m 1 "$TARGET_COMMIT" done if [[ ! -z "$PER_BACKPORT_COMMAND" ]]; then git submodule update --init --recursive # To remove dangling submodules. git clean -xdff eval "$PER_BACKPORT_COMMAND" git add -A git commit --amend --no-edit fi BACKPORT_PR=$(hub pull-request -p -m "[Backport] $PR_TITLE" \ -m "*Beep boop. This is an automatically generated backport of #${PR_ID}.*" \ -m "$PR_DESCRIPTION" \ -l "$LABELS" \ -b "$GITHUB_USER:$BACKPORT_BRANCH" \ -r "$REVIEWERS" \ -a "$REVIEWERS" | tail -n 1) BACKPORT_PRS+="$BACKPORT_PR\n" # TODO: Turn on automerge once the Github API allows it. done printf "Your backport PRs have been created:\n$BACKPORT_PRS"
Shell
5
warlock135/grpc
tools/release/backport_pr.sh
[ "Apache-2.0" ]
{eq} = require './_helpers' suite 'exclude' -> base-dir = process.cwd! teardown -> process.chdir base-dir test 'without exclude' -> eq '--recursive "#x" test/data', [ 'test/data/a.js:1:function square(##x#) {' 'test/data/a.js:2: return ##x# * x;' 'test/data/a.js:2: return x * ##x#;' * func-type: 'error', value: /Error: Could not parse JavaScript from/ 'test/data/dir/c.js:2:var ##x# = z -' ], it test 'exclude **/a.js' -> eq '--exclude "**/a.js" --recursive "#x" test/data', [ * func-type: 'error', value: /Error: Could not parse JavaScript from/ 'test/data/dir/c.js:2:var ##x# = z -' ], it test 'exclude negated pattern' -> eq '--exclude "!**/a.js" --recursive "#x" test/data', [ 'test/data/a.js:1:function square(##x#) {' 'test/data/a.js:2: return ##x# * x;' 'test/data/a.js:2: return x * ##x#;' ], it test 'custom minimatch props' -> eq '--minimatch-options={nocase:true} --exclude "!**/A.js" --recursive "#x" test/data', [ 'test/data/a.js:1:function square(##x#) {' 'test/data/a.js:2: return ##x# * x;' 'test/data/a.js:2: return x * ##x#;' ], it
LiveScript
4
GerHobbelt/grasp
test/exclude.ls
[ "MIT" ]
example : ℕ → ℕ := begin exact id --^ "command": "info" , --^ "command": "info" end --^ "command": "info" example : ℕ → ℕ := by exact id --^ "command": "info"
Lean
4
ericrbg/lean
tests/lean/interactive/info_goal.lean
[ "Apache-2.0" ]
// compile-flags: -l foo:bar -l foo:baz // error-pattern: multiple renamings were specified for library #![crate_type = "lib"] #[link(name = "foo")] extern "C" {}
Rust
3
Eric-Arellano/rust
src/test/ui/rfc-1717-dllimport/multiple-renames.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
<p:library version="1.0" xmlns:p="http://www.w3.org/ns/xproc" xmlns:schxslt="https://doi.org/10.5281/zenodo.1495494"> <p:import href="compile-schematron.xpl"/> <p:import href="validate-with-schematron.xpl"/> </p:library>
XProc
1
ahenket/schxslt
core/src/main/resources/xproc/1.0/library.xpl
[ "MIT" ]
proc f(const x) { x(1)[1] = 1; // this should be an error } proc g(x) { x(1)[1] = 1; } var A:[1..2] int; f((A, A)); writeln(A); const B:[1..2] int; g((B, B)); // This should be an error. writeln(B);
Chapel
3
jhh67/chapel
test/functions/ferguson/ref-pair/tuples/tup.chpl
[ "ECL-2.0", "Apache-2.0" ]
// WARNING: DO NOT EDIT THIS FILE. THIS FILE IS MANAGED BY SPRING ROO. // You may push code into the target .java compilation unit if you wish to edit any member(s). package com.journaldev.jpa.data; import com.journaldev.jpa.data.Phone; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; privileged aspect Phone_Roo_Jpa_Entity { declare @type: Phone: @Entity; declare @type: Phone: @Table(name = "phone"); @Id @GeneratedValue(strategy=GenerationType.AUTO) @Column(name = "PH_ID") private Integer Phone.phId; public Integer Phone.getPhId() { return this.phId; } public void Phone.setPhId(Integer id) { this.phId = id; } }
AspectJ
3
ghiloufibelgacem/jornaldev
PrimeFaces/Primefaces-SpringRoo-Hibernate-Sample/src/main/java/com/journaldev/jpa/data/Phone_Roo_Jpa_Entity.aj
[ "MIT" ]
package org.xtendroid.example.handlerexample import android.view.View import org.xtendroid.app.AndroidActivity @AndroidActivity(R.layout.main) class ProgressTestActivity { override void startProgress(View element) { // Using Thread for demo, never use Thread in production code new Thread( [ | for (i : 1 .. 10) { doFakeWork progress.post [ | text.text = "Updating" progress.progress = i; ] } ]).start } def void doFakeWork() { Thread.sleep(2000); } } /* // The equivalent Java Code public class ProgressTestActivity extends Activity { private ProgressBar progress; private TextView text; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); progress = (ProgressBar) findViewById(R.id.progressBar1); text = (TextView) findViewById(R.id.textView1); } public void startProgress(View view) { // do something long Runnable runnable = new Runnable() { @Override public void run() { for (int i = 0; i <= 10; i++) { final int value = i; doFakeWork(); progress.post(new Runnable() { @Override public void run() { text.setText("Updating"); progress.setProgress(value); } }); } } }; new Thread(runnable).start(); } // Simulating something time consuming private void doFakeWork() { try { Thread.sleep(2000); } catch (InterruptedException e) { throw new RuntimeException(e); } } } */
Xtend
4
Buggaboo/Xtendroid
examples/HandlerExample/src/org/xtendroid/example/handlerexample/ProgressTestActivity.xtend
[ "MIT" ]
( Generated from test_literal_float_in.muv by the MUV compiler. ) ( https://github.com/revarbat/pymuv ) : _main[ _arg -- ret ] { 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 -0.0 -1.0 -2.0 -3.0 -4.0 -5.0 -6.0 -7.0 }list ; : __start "me" match me ! me @ location loc ! trig trigger ! _main ;
MUF
2
revarbat/pymuv
tests/test_literal_float_cmp.muf
[ "MIT" ]
#!/bin/bash # Copyright (c) Facebook, Inc. and its affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. # This script updates RNTester Podfile.lock after verifying the CocoaPods environment. # Usage: # source scripts/update_podfile_lock && update_pods THIS_DIR=$(cd -P "$(dirname "$(readlink "${BASH_SOURCE[0]}" || echo "${BASH_SOURCE[0]}")")" && pwd) RNTESTER_DIR="$THIS_DIR/../packages/rn-tester" # Keep this separate for FB internal access. validate_env () { cd "$RNTESTER_DIR" || exit bundle check || exit cd "$THIS_DIR" || exit } update_pods () { cd "$RNTESTER_DIR" || exit bundle check || exit bundle exec pod install cd "$THIS_DIR" || exit }
Shell
4
MikeyAlmighty/react-native
scripts/update_podfile_lock.sh
[ "CC-BY-4.0", "MIT" ]
# # Module manifest for module 'HelpersLanguage' # @{ RootModule = 'HelpersLanguage.psm1' ModuleVersion = '1.0' GUID = 'a575af5e-2bd1-427f-b966-48640788896b' CompanyName = 'Microsoft Corporation' Copyright = 'Copyright (c) Microsoft Corporation.' Description = 'Temporary module for language tests' FunctionsToExport = 'Get-ParseResults', 'Get-RuntimeError', 'ShouldBeParseError', 'Test-ErrorStmt', 'Test-Ast', 'Test-ErrorStmtForSwitchFlag' AliasesToExport = @() CmdletsToExport = @() }
PowerShell
4
rdtechie/PowerShell
test/tools/Modules/HelpersLanguage/HelpersLanguage.psd1
[ "MIT" ]
#lang scribble/manual @(require (for-label racket) scribble/core scribble/html-properties "../util/lifted.rkt") @(define io (select '(input-port? output-port? port? close-input-port close-output-port port-closed? port-closed-evt current-input-port current-output-port current-error-port file-stream-port? terminal-port? eof eof-object? read read-syntax read/ recursive read-syntax/ recursive read-language read-case-sensitive read-square-bracket-as-paren read-curly-brace-as-paren read-accept-box read-accept-compiled read-accept-bar-quote read-accept-graph read-decimal-as-inexact read-accept-dot read-accept-infix-dot read-accept-quasiquote read-accept-reader read-accept-lang current-readtable call-with-default-reading-parameterization current-reader-guard read-on-demand-source port-read-handler write display print displayln fprintf printf eprintf format print-pair-curly-braces print-mpair-curly-braces print-unreadable print-graph print-struct print-box print-vector-length print-hash-table print-boolean-long-form print-reader-abbreviations print-as-expression print-syntax-width current-write-relative-directory port-write-handler port-display-handler port-print-handler global-port-print-handler pretty-print pretty-write pretty-display pretty-format pretty-print-handler))) @(define os (select '(time current-seconds current-milliseconds))) @title[#:tag "sec:racket-libs"]{Exported Racket Libraries} Rosette exports the following facilities from the core Racket libraries: @tabular[#:style (style #f (list (attributes '((id . "lifted")(class . "boxed"))))) (list (list @elem{Input and Output} @io) (list @elem{Operating System} @os))] These facilities are safe to use in Rosette programs, even in the presence of symbolic values, assertions, and solver-aided queries. They are not, however, @tech[#:key "lifted constructs"]{lifted}: if their Racket implementation expects a concrete value of a given type, they will fail when given a symbolic value. These constructs are safe to use in the sense that they will fail in a predictable fashion, according to their concrete Racket specification, instead of causing the enclosing Rosette program to exhibit unexpected behavior. The @racketmodname[rosette/safe] language allows programs to import arbitrary Racket code using the standard @racket[require] mechanism. This is strongly discouraged, however, unless the use of such code obeys the restrictions outlined in the @seclink["ch:unsafe"]{Chapter 8}. Violating these restrictions may lead to incorrect program behavior, crashes, and loss of data (for programs that perform external side-effects, such as writing to files). In other words, arbitrary Racket code is, by default, unsafe to use.
Racket
5
lukenels/rosette
rosette/guide/scribble/libs/racket-libs.scrbl
[ "BSD-2-Clause" ]
locals { vault = { server = { address = "https://${azurerm_lb.vault.private_ip_address}:8200" ca_cert = "/etc/vault/ca.crt" } tls = { "ca.crt" = tls_self_signed_cert.ca.cert_pem } prometheusTarget = "${azurerm_lb.vault.private_ip_address}:8200" serverIPRanges = ["${azurerm_lb.vault.private_ip_address}/32"] } }
HCL
3
PragmaTwice/diem
terraform/validator/azure/vault_override.tf
[ "Apache-2.0" ]
*** Test Cases *** header1 header2 My Test Case [Documentation] This is a documentation ... in two lines My TC Step 1 my step arg # step 1 comment My TC Step 2 my step \ 2 arg second arg # step 2 comment ... third arg split to own row ... fourth and fifth as well # comment [Teardown] 1 minute A very long named test case My step 1 This is arg My step 2 This also is arg ... Split line Longest argument on split Test with for FOR ${i} IN RANGE 100 Log ${i} ${result} = My kw Log Many 1st ... 2nd ... 3rd END
RobotFramework
4
bhirsz/robotframework
atest/testdata/tidy/golden_with_headers.robot
[ "ECL-2.0", "Apache-2.0" ]
--TEST-- Bug #35143 (gettimeofday() ignores current time zone) --FILE-- <?php date_default_timezone_set("UTC"); var_dump(date_default_timezone_get()); var_dump(gettimeofday()); ?> --EXPECTF-- string(3) "UTC" array(4) { ["sec"]=> int(%d) ["usec"]=> int(%d) ["minuteswest"]=> int(0) ["dsttime"]=> int(0) }
PHP
4
guomoumou123/php5.5.10
ext/date/tests/bug35143.phpt
[ "PHP-3.01" ]
@u\,nknown;
CSS
1
mengxy/swc
crates/swc_css_parser/tests/fixture/esbuild/misc/5IxIPW9sKkvdZIzfV33AcA/input.css
[ "Apache-2.0" ]
CREATE TABLE public.todo ( id integer NOT NULL, task text NOT NULL, completed boolean NOT NULL, user_id text NOT NULL ); CREATE SEQUENCE public.todo_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.todo_id_seq OWNED BY public.todo.id; ALTER TABLE ONLY public.todo ALTER COLUMN id SET DEFAULT nextval('public.todo_id_seq'::regclass); ALTER TABLE ONLY public.todo ADD CONSTRAINT todo_pkey PRIMARY KEY (id);
SQL
4
gh-oss-contributor/graphql-engine-1
community/sample-apps/todo-auth0-jwt/hasura/migrations/default/1613665146384_init/up.sql
[ "Apache-2.0", "MIT" ]
<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <RootNamespace>Sugar.Nougat.OSX.Test</RootNamespace> <ProjectGuid>{e05279de-3031-4a1d-8c31-ff14ba511f66}</ProjectGuid> <OutputType>Executable</OutputType> <AssemblyName>SugarTest</AssemblyName> <AllowGlobals>False</AllowGlobals> <AllowLegacyWith>False</AllowLegacyWith> <AllowLegacyOutParams>False</AllowLegacyOutParams> <AllowLegacyCreate>False</AllowLegacyCreate> <AllowUnsafeCode>False</AllowUnsafeCode> <Configuration Condition="'$(Configuration)' == ''">Release</Configuration> <SDK>OS X</SDK> <EntitlementsFile>Entitlements.entitlements</EntitlementsFile> <DeploymentTargetVersion>10.11</DeploymentTargetVersion> <Name>Sugar.Nougat.OSX.Test</Name> <DefaultUses>Foundation</DefaultUses> <StartupClass /> <CreateHeaderFile>False</CreateHeaderFile> <BundleExtension /> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> <Optimize>False</Optimize> <OutputPath>bin\Debug\</OutputPath> <DefineConstants>DEBUG;TRACE;</DefineConstants> <CaptureConsoleOutput>False</CaptureConsoleOutput> <XmlDocWarningLevel>WarningOnPublicMembers</XmlDocWarningLevel> <GenerateDebugInfo>True</GenerateDebugInfo> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> <Optimize>true</Optimize> <OutputPath>.\bin\Release</OutputPath> <GenerateDebugInfo>False</GenerateDebugInfo> <EnableAsserts>False</EnableAsserts> <TreatWarningsAsErrors>False</TreatWarningsAsErrors> <CaptureConsoleOutput>False</CaptureConsoleOutput> </PropertyGroup> <ItemGroup> <Reference Include="Foundation.fx" /> <Reference Include="libEUnit.fx" /> <Reference Include="libNougat.fx" /> <Reference Include="libsqlite3.fx"> <HintPath>C:\Program Files (x86)\RemObjects Software\Elements\Nougat\Libraries\libsqlite3\OS X\libsqlite3.fx</HintPath> </Reference> <Reference Include="libxml2.fx" /> <Reference Include="rtl.fx" /> </ItemGroup> <ItemGroup> <Compile Include="Main\OSX\Program.pas" /> <None Include="Entitlements.entitlements" /> </ItemGroup> <ItemGroup> <Folder Include="Main\" /> <Folder Include="Main\OSX\" /> <Folder Include="Properties\" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Sugar.Data\Sugar.Data.Nougat.OSX.oxygene"> <Name>Sugar.Data.Nougat.OSX</Name> <Project>{0d5b253d-762b-42d9-bfd2-3c217e07cf52}</Project> <Private>True</Private> <HintPath>..\Sugar.Data\bin\OS X\libSugar.Data.fx</HintPath> </ProjectReference> <ProjectReference Include="..\Sugar\Sugar.Nougat.OSX.oxygene"> <Name>Sugar.Nougat.OSX</Name> <Project>{ab7ab88b-2370-43bf-844b-54d015da9e57}</Project> <Private>True</Private> <HintPath>..\Sugar\bin\OS X\libSugar.fx</HintPath> </ProjectReference> </ItemGroup> <Import Project="$(MSBuildExtensionsPath)\RemObjects Software\Oxygene\RemObjects.Oxygene.Nougat.targets" /> <PropertyGroup> <PreBuildEvent /> </PropertyGroup> <Import Project="..\Sugar.Tests\Sugar.Shared.Test.projitems" Label="Shared" /> </Project>
Oxygene
3
mosh/sugar
Sugar.Tests/Sugar.Nougat.OSX.Test.oxygene
[ "BSD-3-Clause" ]
fileFormatVersion: 2 guid: 77b0212dde404f7c8ce9aac13bd550b8 timeCreated: 1601332716
Unity3D Asset
0
mattinjersey/ml-agents
com.unity.ml-agents.extensions/Tests/Editor/Match3.meta
[ "Apache-2.0" ]
# This is the PyTorch mypy-strict.ini file (note: don't change this line! - # test_run_mypy in test/test_type_hints.py uses this string) # Unlike mypy.ini, it enforces very strict typing rules. The intention is for # this config file to be used to ENFORCE that people are using mypy on codegen # files. [mypy] python_version = 3.6 plugins = mypy_plugins/check_mypy_version.py cache_dir = .mypy_cache/strict strict_optional = True show_error_codes = True show_column_numbers = True warn_no_return = True disallow_any_unimported = True # Across versions of mypy, the flags toggled by --strict vary. To ensure # we have reproducible type check, we instead manually specify the flags warn_unused_configs = True disallow_any_generics = True disallow_subclassing_any = True disallow_untyped_calls = True disallow_untyped_defs = True disallow_incomplete_defs = True check_untyped_defs = True disallow_untyped_decorators = True no_implicit_optional = True warn_redundant_casts = True warn_return_any = True implicit_reexport = False strict_equality = True # do not reenable this: # https://github.com/pytorch/pytorch/pull/60006#issuecomment-866130657 warn_unused_ignores = False files = .github, benchmarks/instruction_counts, tools, torch/utils/_pytree.py, torch/utils/benchmark/utils/common.py, torch/utils/benchmark/utils/timer.py, torch/utils/benchmark/utils/valgrind_wrapper # Specifically enable imports of benchmark utils. As more of `torch` becomes # strict compliant, those modules can be enabled as well. [mypy-torch.utils.benchmark.utils.*] follow_imports = normal # Don't follow imports as much of `torch` is not strict compliant. [mypy-torch] follow_imports = skip [mypy-torch.*] follow_imports = skip # Missing stubs. [mypy-numpy] ignore_missing_imports = True [mypy-mypy.*] ignore_missing_imports = True
INI
4
Hacky-DH/pytorch
mypy-strict.ini
[ "Intel" ]
fileFormatVersion: 2 guid: aa8ccb6d3e036df438ba429e830d8973 timeCreated: 1458000720 licenseType: Pro NativeFormatImporter: userData: assetBundleName: assetBundleVariant:
Unity3D Asset
0
oravnat/openvr
samples/unity_keyboard_sample/Assets/PanelMat.mat.meta
[ "BSD-3-Clause" ]
// Copyright 2021 gRPC authors. // // 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. #ifndef GRPC_CORE_EXT_TRANSPORT_BINDER_SERVER_BINDER_SERVER_CREDENTIALS_H #define GRPC_CORE_EXT_TRANSPORT_BINDER_SERVER_BINDER_SERVER_CREDENTIALS_H #include <grpc/support/port_platform.h> #include <grpcpp/security/server_credentials.h> #include "src/core/ext/transport/binder/security_policy/security_policy.h" namespace grpc { namespace experimental { /// Builds Binder ServerCredentials. /// /// Calling \a ServerBuilder::AddListeningPort() with Binder ServerCredentials /// in a non-Android environment will make the subsequent call to /// \a ServerBuilder::BuildAndStart() returns a null pointer. std::shared_ptr<grpc::ServerCredentials> BinderServerCredentials( std::shared_ptr<grpc::experimental::binder::SecurityPolicy> security_policy); } // namespace experimental } // namespace grpc #endif // GRPC_CORE_EXT_TRANSPORT_BINDER_SERVER_BINDER_SERVER_CREDENTIALS_H
C
4
bostikforever/grpc
src/core/ext/transport/binder/server/binder_server_credentials.h
[ "Apache-2.0" ]
// Daniel Shiffman // http://codingtra.in // http://patreon.com/codingtrain // Snowfall // Edited Video: https://youtu.be/cl-mHFCGzYk // Originally written using p5.js float getRandomSize() { float r = pow(random(0, 1), 3); return constrain(r * 32, 2, 32); // float r = randomGaussian() * 2.5; // return constrain(abs(r * r), 2, 36); // while (true) { // float r1 = random(1); // float r2 = random(1); // if (r2 > r1) { // return r1 * 36; // } // } } class Snowflake { PImage img; PVector pos; PVector vel; PVector acc; float angle; float dir; float xOff; float r; Snowflake(float sx, float sy, PImage simg) { float x = sx; float y = sy; img = simg; pos = new PVector(x, y); vel = new PVector(0, 0); acc = new PVector(); angle = random(TWO_PI); dir = (random(1) > 0.5) ? 1 : -1; xOff = 0; r = getRandomSize(); } void applyForce(PVector force) { // Parallax Effect hack PVector f = force.copy(); f.mult(r); // PVector f = force.copy(); // f.div(mass); acc.add(f); } void randomize() { float x = random(width); float y = random(-100, -10); pos = new PVector(x, y); vel = new PVector(0, 0); acc = new PVector(); r = getRandomSize(); } void update() { xOff = sin(angle * 2) * 2 * r; vel.add(acc); vel.limit(r * 0.2); if (vel.mag() < 1) { vel.normalize(); } pos.add(vel); acc.mult(0); if (pos.y > height + r) { randomize(); } // Wrapping Left and Right if (pos.x < -r) { pos.x = width + r; } if (pos.x > width + r) { pos.x = -r; } angle += dir * vel.mag() / 200; } void render() { // stroke(255); // strokeWeight(r); // point(pos.x, pos.y); pushMatrix(); translate(pos.x + xOff, pos.y); rotate(angle); imageMode(CENTER); image(img, 0, 0, r, r); popMatrix(); } // offScreen() { // return (pos.y > height + r); // } }
Processing
5
aerinkayne/website
CodingChallenges/CC_088_snowfall/Processing/CC_088_snowfall/snowflake.pde
[ "MIT" ]
// // Copyright (c) XSharp B.V. All Rights Reserved. // Licensed under the Apache License, Version 2.0. // See License.txt in the project root for license information. // USING System.Collections.Generic USING System.Runtime.InteropServices /// <summary> /// This class contains helper code that is called by the compiler to support various XBase language constructs, such as the /// automatic memory management of PSZ values created with String2Psz(). /// </summary> STATIC CLASS XSharp.Internal.CompilerServices ///<summary> /// Subtract 2 strings. ///</summary> STATIC METHOD StringSubtract (lhs AS STRING, rhs AS STRING) AS STRING IF lhs != NULL .AND. rhs != NULL VAR len := lhs:Length + rhs:Length RETURN (lhs:TrimEnd() + rhs:TrimEnd()):PadRight(len) ELSEIF lhs != NULL RETURN lhs ELSEIF rhs != NULL RETURN rhs ENDIF RETURN String.Empty ///<summary> /// Allocate a PSZ and add it to the list ///</summary> STATIC METHOD String2Psz(s AS STRING, pszList AS List<IntPtr>) AS IntPtr LOCAL pResult AS IntPtr IF s == NULL || s:Length == 0 pResult := MemAlloc(1) Marshal.WriteByte(pResult, 0, 0) // end of string ELSE pResult := String2Mem(s) ENDIF pszList:Add(pResult) RETURN pResult ///<summary> /// Free all PSZ values in the List ///</summary> STATIC METHOD String2PszRelease(pszList AS List<IntPtr>) AS VOID FOREACH VAR p IN pszList TRY MemFree(p) CATCH as Exception NOP END TRY NEXT RETURN ///<summary> /// Increment the SEQUENCE counter for a BEGIN SEQUENCE statement ///</summary> STATIC METHOD EnterBeginSequence AS VOID RuntimeState.GetInstance():BreakLevel+= 1 ///<summary> /// Decrement the SEQUENCE counter for a BEGIN SEQUENCE statement ///</summary> STATIC METHOD ExitBeginSequence AS VOID RuntimeState.GetInstance():BreakLevel-= 1 ///<summary> /// Determine if we are inside a BEGIN SEQUENCE .. END by looking at the SEQUENCE counter in the runtime. ///</summary> STATIC METHOD CanBreak AS LOGIC RETURN RuntimeState.GetInstance():BreakLevel > 0 STATIC METHOD StringArrayInit(a as System.Array) AS VOID LOCAL ranks := a:Rank AS INT LOCAL counters := INT[]{ranks} as INT[] LOCAL bounds := INT[]{ranks} as INT[] FOR VAR i := 1 to ranks bounds[i] := a:GetLength(i-1) NEXT StringArrayInitHelper(a, counters, bounds, ranks) RETURN PRIVATE STATIC METHOD StringArrayInitHelper( s as System.Array, counters as int[] , bounds as int[], rank as int) AS VOID if rank == 1 FOR VAR x:= 1 UPTO bounds[1] STEP 1 counters[rank] := x -1 // the counters array must be 0 based s:SetValue( "", counters ) NEXT else FOR VAR x := 1 UPTO bounds[rank] STEP 1 counters[rank] := x -1 // the counters array must be 0 based StringArrayInitHelper( s, counters, bounds, rank - 1 ) NEXT ENDIF END CLASS
xBase
5
orangesocks/XSharpPublic
Runtime/XSharp.RT/Types/CompilerServices.prg
[ "Apache-2.0" ]
DAFETF NAIF DAF ENCODED TRANSFER FILE 'DAF/CK ' '2' '6' 'DAWN TLM-Based SC Bus CK File by NAIF/JPL ' BEGIN_ARRAY 1 5874 'DAWN SC BUS TLM-BASED QUATS/AVS ' '1D164E7A02^A' '1D165154AC^A' '-318F8' '1' '3' '1' 1024 '8535A6D3EE3778^0' '-2FCE76A1A62A5C^0' '27018542F09296^0' '-D1B96C0CB47D9^0' '-4C432852E0984C^-3' '-165EBC91C57448^-3' '1FD4E62F342287^-4' '8535A781B9A9^0' '-2FCE7065EE9C56^0' '27017E5A4DFF3C^0' '-D1B96E4B3735F8^0' '-4D835B2093E5DC^-3' '-16DB1CFF78CEA2^-3' '1EE49CC9EE4FC9^-4' '8535F2D620DE7^0' '-2FCC9A4CF2CCE6^0' '26FFDE9D03DC58^0' '-D1B9F70732FA28^0' '-21978CC180E2FC^-3' '-5E9BD9BD058CA^-4' '5515A0D92561E^-4' '8535FAE3B67348^0' '-2FCBEE2A957FDA^0' '26FF131B0FD0D8^0' '-D1BA3ED5A8BE78^0' '-11FFA62F152783^-3' '361C914780FEAE^-4' '49ACB5D99364CC^-4' '8535FBBA760818^0' '-2FCBBF05B9D34A^0' '26FE8830BB89AE^0' '-D1BA62E7D6BE68^0' '-B70E0D9A49A9C^-4' '57C76745B4029^-4' '49B6A687371824^-4' '8535F55A5F9CF^0' '-2FCBB8FB89A3AE^0' '26FE1F8022FB02^0' '-D1BA7BE75711B8^0' '-35B8989BCBBCF4^-3' '-1144A3BA0CB636^-3' '1E182D79507495^-4' '85362429550DF8^0' '-2FCA6A71E3C81^0' '26FD047809D1E6^0' '-D1BADEE3A5AC5^0' '-13EA4AA54DBCA7^-3' '-C36D60EA866B58^-5' '326251171E899A^-4' '85362C61DDC09^0' '-2FCA16641A86BE^0' '26FC806EA54F3^0' '-D1BB057A126AB8^0' '-15B3E72BAD3286^-3' '-443C328876851^-4' '4B582565D2701C^-4' '853628B0F931B^0' '-2FC9A5D0DF8104^0' '26FBFCE61A25C6^0' '-D1BB39D25EB21^0' '-1DB7BE08560BEF^-3' '-58CB037B372334^-4' '258610810565A6^-4' '85363F0147A8B8^0' '-2FC9089D078D3E^0' '26FB4DBEA4C0EA^0' '-D1BB702E105EA^0' '-26FA5008625F88^-3' '-7E241F9025BC8^-4' '37812AB07E6A^-4' '853658D78790D8^0' '-2FC836E5F0345A^0' '26FA69E8FCD93^0' '-D1BBB9D4F86A6^0' '-280774101CA8C4^-3' '-9D5E07A1DCDD88^-4' '2D4C161158C19A^-4' '85367608C5CC5^0' '-2FC7533B3B6A64^0' '26F98841AD746C^0' '-D1BC04FE6C8208^0' '-269AC0E49EE996^-3' '-A1C8F218225068^-4' '254EBC1562D02C^-4' '85369410C39CA^0' '-2FC6731678118A^0' '26F8B1D7FEDA1^0' '-D1BC4CCCE24658^0' '-223281B4832D24^-3' '-6434FB3A4880D8^-4' '659F7CB41B2628^-4' '853695E935E41^0' '-2FC5C36E29536^0' '26F7E24F400428^0' '-D1BC9A4FA1FEC^0' '-1A71C4AB27C925^-3' '-31BC040E239836^-4' '47EFCC79E25A1^-4' '85369C1E593178^0' '-2FC54670A7B2E2^0' '26F73B3560341E^0' '-D1BCD1D7F97BB^0' '-14C1C80D45525B^-3' '-118BD63C896D8B^-5' '57AB2EFC319F2^-4' '85369715DBB47^0' '-2FC4F63EB61E34^0' '26F6AB428E6FF^0' '-D1BD01FE87DAD8^0' '-141A7086EC8B19^-3' '3B827EB94E1B04^-5' '4ED6D7FC03262^-4' '85369512764F4^0' '-2FC4AA138F53F^0' '26F61F2B945868^0' '-D1BD2E9F24C8E^0' '-18AC7BA173428^-3' '-1D3B3F7AB7BD17^-4' '43581CC7A580AC^-4' '85369C1E593178^0' '-2FC43C856C6604^0' '26F57EC7B12F0C^0' '-D1BD60F40BAB^0' '-17DB6E7EA4D89^-3' '-3F43290A20C6F8^-4' '6689D2E963C7E4^-4' '853690E0B8671^0' '-2FC3C714A7010C^0' '26F4E94B88948E^0' '-D1BD9E86935788^0' '-2313211BAB4CE2^-3' '-6FA42DF7B67E68^-4' '3242A3B46F0822^-4' '8536A832B990B^0' '-2FC30B2D04C5E2^0' '26F41BC62F23DA^0' '-D1BDE0CBB2459^0' '-4F932CA7C7306C^-3' '-18F1BF9688C6F7^-3' '13F99A10DADB7^-4' '8536F864AB256^0' '-2FC11DECFAEA98^0' '26F2782D0D5452^0' '-D1BE6C0BECC84^0' '-1FB414D4A481E9^-3' '-425336BAFB6D9^-4' '3662D5267DC5FC^-4' '85370C5BADFBA8^0' '-2FC082E77B79C8^0' '26F1B48DBBBFE^0' '-D1BEA6EF42988^0' '-41294D0D493E64^-3' '-1538909902E6CD^-3' '1391FCBDA05E35^-4' '85374BC6A7EFA^0' '-2FBEEA0B211B58^0' '26F05FF9E5B4A6^0' '-D1BF1B086F0F58^0' '-CA9B8B6AB2D848^-4' '4A71A160400158^-4' '8DF362B6B3B548^-4' '85372A38B8AE3^0' '-2FBEDEA28D332E^0' '26EFEC6192971C^0' '-D1BF487FCB9238^0' '-2D765606F753FA^-4' '450B1509D00454^-4' '4436093FDD7E1C^-4' '853717C441E3D^0' '-2FBEF4470F3324^0' '26EFC16E74D2BA^0' '-D1BF57435DCDB8^0' '-996CB43ADAB1D8^-4' '4C1D4C033F59A4^-4' '46C3C403F3EA0C^-4' '85370EDFECBA28^0' '-2FBEF0EC10DFCC^0' '26EF682D3AF6A2^0' '-D1BF6E3F78BBD^0' '-15A9A9687A6034^-3' '-B49EF73C2BB65^-5' '567F40996E590C^-4' '85370AD921EFC^0' '-2FBE98AC89B64C^0' '26EED50A5DFCE^0' '-D1BFA0138644A8^0' '-247ACEC28F4326^-3' '-8752E0764C3078^-4' '26E99AEC7911FA^-4' '85372708AD78A^0' '-2FBDCC53D615F6^0' '26EE05819F26F8^0' '-D1BFE32F64C78^0' '-2FE34977177AC4^-3' '-D6BEE81ED081D8^-4' '5BE99A3365E08^-4' '8537387B719068^0' '-2FBCB3FAEEC92^0' '26ECFAEA976308^0' '-D1C0495BBE97A8^0' '-35FA5DE53C9F0E^-3' '-CFA30B2B6DC21^-4' '2F184A5E3578FC^-4' '853765F2CE1348^0' '-2FBB81CBC79428^0' '26EBCABED59344^0' '-D1C0AAAA8E0898^0' '-2B56D92682F4BA^-3' '-9FC17A7164B95^-4' '3191AC9F4D247^-4' '8537862924669^0' '-2FBA8FB366CA3A^0' '26EAD39DF74C52^0' '-D1C0FB3265D8D^0' '-216359C05183FC^-3' '-4EF2A78DE0BBE8^-4' '40AD5921F6CE1C^-4' '85379770F56098^0' '-2FB9E945537142^0' '26EA074543ABFC^0' '-D1C13BF4F8BAE8^0' '-127FB9F5CF5069^-3' '-BD914C629AAB2^-7' '3BF20D7B4659C6^-4' '85379A760D786^0' '-2FB9A0CB1135DE^0' '26E9886F4FC40E^0' '-D1C1620A8C2008^0' '-705BA5D7D9F828^-4' '70B685223B224^-4' '7BCD663C02E6AC^-4' '85377AC0907E68^0' '-2FB9BB222A774C^0' '26E931876188B2^0' '-D1C1803D7D0E2^0' '-AD2ABEBDBE254^-4' '59F044C4EA94D8^-4' '60C088591BA3B4^-4' '85376A248BFB78^0' '-2FB9BA4B6AE278^0' '26E8CA2E61E828^0' '-D1C19E457ADE7^0' '-1685EAAC307DD8^-3' '-416F169FE67DA4^-5' '489B79F7DAF4D4^-4' '85376DAA7D6C9^0' '-2FB9605E648F4C^0' '26E830D661A104^0' '-D1C1CCE97D31B^0' '-2303284432B27E^-3' '-4FAA683ABF3F4C^-4' '3E60D4AF18939C^-4' '8537824D4CB9F^0' '-2FB8B2B97B3658^0' '26E75A41BFE8E4^0' '-D1C20F2E9C1FB^0' '-2D282C039166E6^-3' '-C63FD5451435C^-4' '2D5E0887B3779^-4' '8537A4062F192^0' '-2FB7A8F933073E^0' '26E6619E55960A^0' '-D1C264690B316^0' '-559710519B9534^-3' '-1C2985B44329BA^-3' '356DC9C48B81AE^-4' '8537EB7EBEA1E8^0' '-2FB5901A3EF08^0' '26E4A0D3F58B08^0' '-D1C3044C15017^0' '-26E9211FF3908E^-3' '-7D44C2B0D3D5C8^-4' '13507ABF66D90E^-4' '853813ED9DA7C8^0' '-2FB4BC34CF14A6^0' '26E3C0843F1468^0' '-D1C3440CF530F^0' '-3C02C1CFB12CAC^-3' '-1518BD882FD673^-3' '448CF1B4D87618^-4' '853837D4D889F^0' '-2FB33D59A7BC1C^0' '26E288A0CDEB5A^0' '-D1C3BE863812E8^0' '-9D7C836A3C881^-4' '5330F8CBE4BB8C^-4' '61BD97F4D2C288^-4' '853824B495488^0' '-2FB33DDA81156A^0' '26E2295563DFA4^0' '-D1C3DC0D5C89F^0' '63092AC7685C24^-4' 'A6F2A286BCCBF^-4' '59EED8A9291F08^-4' '853803519924D8^0' '-2FB3A2DA351536^0' '26E21E17C3153E^0' '-D1C3DC6342C578^0' '-29687C0697FC9C^-4' '7AF94BD4CA0AF4^-4' '516C19CDA1422C^-4' '8537EF2FA330C8^0' '-2FB3D0A777D3A2^0' '26E1E58DB8E5BA^0' '-D1C3E94E62B988^0' '-12DE1D10AAE7B1^-3' '-2FB1684DFB4744^-5' '73F82551633368^-4' '8537DB8E869608^0' '-2FB389AFC1A424^0' '26E15FD6D53958^0' '-D1C41EA861B378^0' '-2A15F73CA62116^-3' '-8BD961CB35FD28^-4' '38DD907CF04E24^-4' '8537F869DE95F8^0' '-2FB2A5843380E^0' '26E06B0F429322^0' '-D1C46DADAD77C8^0' '-3637926E65F018^-3' '-F45A39B352B8C8^-4' '2C46F64B6BB774^-4' '85382489A22AB8^0' '-2FB1630EEE048^0' '26DF431C0975F6^0' '-D1C4D1D6A1E2C^0' '-394EC19D2603F8^-3' '-117E67C69B58E^-3' '1559E22DC4EE1F^-4' '85385BE70689E^0' '-2FB003686A4CA4^0' '26DE12447B2F2^0' '-D1C5370149005^0' '-2E5B638A5003C6^-3' '-BE0CDCA310AC38^-4' '317D606B923798^-4' '85387E4BB5602^0' '-2FAEF850892F6A^0' '26DD0F3A2FA6B6^0' '-D1C58DE9373BA8^0' '-1E9706B162AC33^-3' '-2C0D99FC643A1E^-4' '53176E1C718F24^-4' '853886843E12B8^0' '-2FAE6D3B41CA7A^0' '26DC4A6E3841E6^0' '-D1C5CCD357D658^0' '-E98A30F543E67^-4' '2BD1164CBBCF62^-4' '7809AFD185F2A8^-4' '85386E5B7D544^0' '-2FAE4B825F6B4A^0' '26DBD426B34816^0' '-D1C5F99EE7E228^0' '-2F5DE30BADC1C2^-4' '9B31C37FCE2CC8^-4' '3E9B7951AF57A^-4' '853864F64ED148^0' '-2FAE838B904182^0' '26DB928D60D126^0' '-D1C5FF283EB878^0' '-635167BD0999A8^-4' '6FEAE713217FC^-4' '918AB90ED4E798^-4' '85383B04E3BF8^0' '-2FAEA29540C46C^0' '26DB3F2B6406E6^0' '-D1C6220DC6E808^0' '-1469B007BE686A^-3' 'FA62CAEBE6EEE8^-5' '42EF8A7430766C^-4' '85383F36A1A7B^0' '-2FAE59194BD66E^0' '26DAAF0D9F24F4^0' '-D1C64AD28C297^0' '-2637F3C91486FA^-3' '-674378030DCFAC^-4' '45D89F85398ECC^-4' '853853AE7DD748^0' '-2FAD94F920E8AE^0' '26D9C8DEAB9C7C^0' '-D1C694FA4D8E8^0' '-31070637E937B6^-3' '-D80587CBE197B^-4' '33155BB22C7BDA^-4' '8538776AC59BA8^0' '-2FAC743CBDCB7E^0' '26D8BAECA58536^0' '-D1C6F1EC6BF978^0' '-5D45680A5E3668^-3' '-1F9582BAC98021^-3' '19A51403415D88^-4' '8538D182BF0C98^0' '-2FAA22D3BF853C^0' '26D6D8945638C6^0' '-D1C798DB58ABC^0' '-278EF14BC12E1^-3' '-94EF3A59078978^-4' '61E650A3F6555^-4' '8538D90F7B482^0' '-2FA9488E393E3A^0' '26D5F2E63C099C^0' '-D1C7F044204068^0' '-3F9EB09CA47E5C^-3' '-13DFCA35B54541^-3' '1264B56300015D^-4' '853918248F009^0' '-2FA7BECB5756D4^0' '26D4A2DA0A2218^0' '-D1C85FD5A89388^0' '-447AF71EB66864^-4' '7C683AC37601EC^-4' '47B5E7E19D1D9C^-4' '85390A8DA29568^0' '-2FA7E561C41544^0' '26D45FBE2B9F4^0' '-D1C86C14FC1088^0' '8D9A6444C61FF8^-4' 'CBFDE878CE6918^-4' '5019CA8ECB13C^-4' '8538EC04CB6BD^0' '-2FA863E1D1C1AA^0' '26D45D39ECE0BE^0' '-D1C86330A6E6E^0' '26F040996E950C^-4' '9305A5D3340E1^-4' '4A1D19E4384B48^-4' '8538D533A39B78^0' '-2FA8AFE2056E28^0' '26D44008AEA544^0' '-D1C865DFD8C328^0' '-ED51537E949D68^-4' '297C7C883A7EEA^-4' '5A36527E94DC4C^-4' '8538C9752977C8^0' '-2FA889F76526CC^0' '26D3CB999BF2E6^0' '-D1C88B7492CEF8^0' '-2767BCC1EA52A^-3' '-92DA212424F218^-4' '52E260EDEEE79^-4' '8538D70C15E2E8^0' '-2FA7B007C51B52^0' '26D2E7C3F40B2A^0' '-D1C8DE80A95DB^0' '-38EBDE4E9B02AE^-3' '-10781229BA16C8^-3' '2A2E61FDF9BBCC^-4' '85390686D7CB^0' '-2FA65A47493FBA^0' '26D1B33B813574^0' '-D1C947064ECE98^0' '-3D7ACF914F5E94^-3' '-12941B6A47AF68^-3' '1E06797246339C^-4' '85393F3BD51848^0' '-2FA4E2CDEB04F2^0' '26D06ABC0B8976^0' '-D1C9B5154B15D^0' '-371473A7A03F58^-3' '-F02A57A8A92338^-4' '264228EAA428EA^-4' '85396F6263777^0' '-2FA39DFF59E7D2^0' '26CF3C93AF1EE6^0' '-D1CA183C8CCE3^0' '-22FA3507C0A626^-3' '-68C209862E22E8^-4' '3729DF5F13080C^-4' '853984DBF259A8^0' '-2FA2E59DA91DC6^0' '26CE6D60D68486^0' '-D1CA5AAC9ED9F8^0' '-EB0FE2E71BE058^-4' '1DB08D45F6B919^-4' '752820FDFD2FA4^-4' '85396D0917D6B8^0' '-2FA2BD84B0537^0' '26CDFA744FDE0E^0' '-D1CA884EEE7AA^0' '-2C0888FEBBCAA2^-5' 'B91EFB74013518^-4' '4206DE41781E9C^-4' '85395FF304C4E^0' '-2FA30D8BAECA58^0' '26CDC2EBF86126^0' '-D1CA87F9083F1^0' '-2EBE1B27FFD1AC^-4' '6FA62BA8BD3478^-4' '87883D98E7A3F^-4' '85393580C059D^0' '-2FA339807F4154^0' '26CD8630304974^0' '-D1CAA4D4603F08^0' '-FD9060C3F45248^-4' '3026873971CBD6^-4' '483EC2FB13B2A8^-4' '8539332774B91^0' '-2FA310BBB9FFEC^0' '26CD0B0B20F066^0' '-D1CAC6624F807^0' '-4810981DD55944^-3' '-1635FE4FF681A3^-3' '260F4B387DC0D6^-4' '853973EA079B28^0' '-2FA155FB8A2486^0' '26CB8B842D20CA^0' '-D1CB48BE34D978^0' '-2CF74519E289B^-3' '-C6331E745F21B^-4' '20F1F56CD2CA96^-4' '85399A55813BD8^0' '-2FA04C104ED7AA^0' '26CA953A0E6EAE^0' '-D1CB9A47BF5C48^0' '-568866F3B0B5D4^-3' '-1CC1796504D028^-3' '1CF40EAAD13CD^-4' '8539EC5FE517F^0' '-2F9E297646026E^0' '26C8D2ED2257C4^0' '-D1CC357831EAE^0' '-221B4BB1BA4A34^-3' '-6668C8E9A18AF4^-4' '3F2401EE4F229A^-4' '8539FD7CC2F43^0' '-2F9D764805D328^0' '26C80816FAC356^0' '-D1CC78BF038B78^0' '-10EAA32B7D1F12^-3' 'EDC38CE13DC3F^-5' '59E0A39FE100B^-4' '8539F2EAEEA0E^0' '-2F9D3CBC48F10A^0' '26C78CF1EB6A46^0' '-D1CCA33147F69^0' '-5B9FD21CA3311^-4' '2ACB99D5A76CC6^-4' '6DCACB2490389C^-4' '8539D1B2E59AF8^0' '-2F9D3EBFAE564^0' '26C7520E959A06^0' '-D1CCC2BBD1D2C8^0' '-76FD8B05413B88^-4' '594A29308B6C9C^-4' '52E06BFD6B30BC^-4' '8539C197BA7158^0' '-2F9D4AA91B97B6^0' '26C7025D7D5EA6^0' '-D1CCD90C2049D^0' '-F9FE3D84E6166^-4' '29716647A9F2EE^-4' '4A391A54758EE^-4' '8539BD90EFA6F^0' '-2F9D2036D72CA2^0' '26C68A3D861D66^0' '-D1CCFB70CF201^0' '-1C5DE4FEA6C03^-3' '-311A90AEA0DE3E^-4' '39263C87700722^-4' '8539CCAA681DF8^0' '-2F9C9A5500627C^0' '26C5D7BB126532^0' '-D1CD314BA77348^0' '-297E0D319F5B3^-3' '-9D7F9A2749F118^-4' '33D9E386945A94^-4' '8539E92FD9E26^0' '-2F9BB0F601A47^0' '26C4EBD7D4E8A6^0' '-D1CD7FA526C088^0' '-33F9FF166EE88E^-3' '-F8DFF5736335C^-4' '1364789309B5D4^-4' '853A1BAFB3E248^0' '-2F9A740A12FE6^0' '26C3D6032C5A52^0' '-D1CDDABED2E41^0' '-30780316A64688^-3' '-DB0D34D6550F48^-4' '4CFE2E1E45CFF^-4' '853A33AD8182F8^0' '-2F995652C7F8FE^0' '26C2CA148BA84^0' '-D1CE3DE6149C7^0' '-25263DDD117A44^-3' '-61F4317F295A58^-4' '43D17EFCDEE2D4^-4' '853A47FA6A94C8^0' '-2F9898BDA69428^0' '26C1E9C4D531A^0' '-D1CE860A709C48^0' '-1854F0C32F7941^-3' '-295C1D71944FF4^-4' '35E839C2602F6E^-4' '853A52B73205E^0' '-2F98267CEC64C2^0' '26C14FEBFB913^0' '-D1CEB504592B18^0' '-D2387A0E5F7DF8^-4' '5C14AB9A8F5528^-4' '546A04560CD1F^-4' '853A4AA99C711^0' '-2F981BEB18116E^0' '26C0D9FA5CD2EA^0' '-D1CED2608A845^0' '-ABFBE5D17DE1A^-4' '48AB25D2615D5^-4' '4C17D01F130DA4^-4' '853A40EE87B29^0' '-2F9812B0DCAC3E^0' '26C079824CF6D4^0' '-D1CEEC61BD8A38^0' '-11018358A00253^-3' '1267F4DD162051^-4' '715828FD737B38^-4' '853A2D2277FA1^0' '-2F97DBFF44C42A^0' '26BFFAAC590EE4^0' '-D1CF1CB33F0728^0' '-1BDB89D2B1101C^-3' '-1B0A75566EC5A^-4' '1D731C536AFFB^-4' '853A487B43EE18^0' '-2F975F2CB6417^0' '26BF4854D87476^0' '-D1CF48A80F7E2^0' '-50405088CF4DA^-3' '-19BBEDE97085BA^-3' '472D48C5CFC1B4^-4' '853A83898CDC18^0' '-2F956DBAEE7DF8^0' '26BD9EB186755^0' '-D1CFE2ABDC3C58^0' '-2BE06C5A1A00AE^-3' '-A23BACC28A5A9^-4' '42A77D1B3B4488^-4' '853A9D34D9A678^0' '-2F94799F284ED4^0' '26BCA309040AA6^0' '-D1D0383C31899^0' '-4E330CA29BEBA^-3' '-1A979408BA19C^-3' '89A4CA567E97D^-5' '853AEDBCB176B^0' '-2F928654EE43EA^0' '26BB1036D9DBD4^0' '-D1D0C0A2471238^0' '-168A2DFF3CA454^-3' '-1BFCABD7D20A64^-4' '4AE5292689542C^-4' '853AEE687DEDC^0' '-2F9222ACD33242^0' '26BA7CBE16A68A^0' '-D1D0F1F57B41C^0' '-75BEB937FCE3B^-4' '52F31176144B8^-4' '4467A6E3B04558^-4' '853AE3ABB67CA8^0' '-2F922B3B42206^0' '26BA3092EFDC46^0' '-D1D10515BE833^0' '-E10615D16D6888^-5' '7C1858CEC864F4^-4' '58809F66A54604^-4' '853ACA0069B248^0' '-2F9261161A739E^0' '26BA0244D3C48E^0' '-D1D11180051DF8^0' '-9C8911A3BBFF98^-4' '444F4BBD9026F^-4' '750F7BB3E6C7B^-4' '853AADD0DE2968^0' '-2F925D3A42C6FA^0' '26B9A57DA87758^0' '-D1D13592331DE8^0' '-1AC69CE1D8D2E9^-3' '-36CEA1CB77D914^-4' '3AA69E0A95383E^-4' '853AB964652F58^0' '-2F91DBB51D02C6^0' '26B8FEB9AEE2D6^0' '-D1D16A4065A0C^0' '-297606BC5E5EF^-3' '-B71FB73A97C5D^-4' '2CA1FEF479FCCA^-4' '853AD6EB89A66^0' '-2F90E76E63B5DC^0' '26B81A632DA1CE^0' '-D1D1B91ABE475^0' '-327F9A58F132E6^-3' '-C15EB4D7A34AF8^-4' '38967FEE364A5A^-4' '853AFC2A5D76A8^0' '-2F8FCA37F209C8^0' '26B6FC55FC60E4^0' '-D1D216E39C472^0' '-34788C94636ED2^-3' '-F055AA5ACEE338^-4' '241E794735AAB8^-4' '853B2920E0A04^0' '-2F8E8FFB353FFE^0' '26B5DF7570F058^0' '-D1D2760413351^0' '-296A82DC86428C^-3' '-7007B703EB2E9^-4' '4147083DBDA7E^-4' '853B4377F9E1B^0' '-2F8DBA9339583C^0' '26B4E6FCF9BB42^0' '-D1D2C386D2ED78^0' '-1AC252920F1E12^-3' '-2224A870AF7DA4^-4' '721DC1A2788F4^-4' '853B39E7D840F8^0' '-2F8D45CE406A54^0' '26B435D21EF132^0' '-D1D304CA3F28E^0' '-DCFDC4483E47^-4' '2E9A56CE8E6B1C^-4' '4D82FAFA7DC248^-4' '853B323028E7A8^0' '-2F8D254203DB82^0' '26B3C7EE15C7BE^0' '-D1D325567BB7B^0' '-6103903E7D565C^-4' '6CABDABDB4E02^-4' '5227E211D1F5FC^-4' '853B21BF17828^0' '-2F8D3EC25D881C^0' '26B37C43C856C6^0' '-D1D337F5E59FD8^0' '-D816859128B2D8^-4' '4CAD3106CF98AC^-4' '58C196FD2D0E2^-4' '853B172D432F28^0' '-2F8D2CA3CCF942^0' '26B3077ECF68DE^0' '-D1D3582C3BF32^0' '-192150C88DCBD7^-3' '-106604306D0B86^-4' '539DC0E722EC34^-4' '853B1905B57698^0' '-2F8CC39D4E2F0E^0' '26B25F3849C876^0' '-D1D38DDC212898^0' '-2465741E9F223E^-3' '-994E292C21F21^-4' '53A645FB6FDB58^-4' '853B213E3E293^0' '-2F8BF393B5FFD6^0' '26B190B13DA528^0' '-D1D3DDE31F9F8^0' '-818445917769A^-3' '-31C4966E99B018^-3' '-278A516F8AEAA6^-4' '853BB5B8B41118^0' '-2F888F05410788^0' '26AF1251BC355^0' '-D1D4BA2C0B4BB8^0' '-2AB53AE8AAB59^-3' '-80656E5FD4B98^-4' '3F36BD0D821E86^-4' '853BD192595E68^0' '-2F87AD5DF1A2C6^0' '26AE15D27A35D2^0' '-D1D50A3309C2A^0' '-1255B9D240B212^-3' 'ABB086B3D6893^-5' '3958C9EA4F423^-4' '853BD619FD822^0' '-2F8769C139C6A^0' '26AD9579FA41FA^0' '-D1D52E4537C29^0' '-48FF3BB421E464^-4' '74DC2DEB3B06A^-4' '5CDDBD8DD847B4^-4' '853BBF9EBBED58^0' '-2F878DA874A8CA^0' '26AD5085A977B4^0' '-D1D5410F94C878^0' '-1246FD48A33C5B^-4' '87A675E1352BE8^-4' '589AFA71E97DA^-4' '853BA74B081118^0' '-2F87C734318AE8^0' '26AD1D84F61E8^0' '-D1D54CF90209F^0' '-BF4808112F21^-4' '8E0FB64A217D28^-5' '689C736EB53728^-4' '853B8ECC61172^0' '-2F87A0F3AB0802^0' '26ACC317167208^0' '-D1D575BDC74B58^0' '-19B862CBBFC222^-3' '-B3397EF737A4D^-5' '5C6C2A6DD52D3^-4' '853B8E4B87BDD^0' '-2F873843127954^0' '26AC14C660A202^0' '-D1D5ADF1EB3F5^0' '-2A6D64D3E385EE^-3' '-9DB23FB4AE81C8^-4' '314A171D88985^-4' '853BAD2A4522F8^0' '-2F864AB255D31C^0' '26AB2303E6139A^0' '-D1D5FCA150C818^0' '-368B666B9A6798^-3' '-FE3E3637E3EA88^-4' '250454DE2E94D^-4' '853BDBCE477638^0' '-2F850232E0271C^0' '26A9FC125FA908^0' '-D1D65FC8928078^0' '-3489E77921C052^-3' '-DB93F1ADD3D21^-4' '2F290CE222BFFC^-4' '853C05EAA5A5C^0' '-2F83D1056BA4BE^0' '26A8D850E47408^0' '-D1D6BFEABC21^0' '-2B1390FC86CCC4^-3' '-A366E5084023D^-4' '5DA9193FF818C4^-4' '853C132BABD558^0' '-2F82E1C72FD4DA^0' '26A7DFAD7A212E^0' '-D1D71B85419DD8^0' '-1A98F3AF76CC87^-3' '-1C39F0BF787569^-4' '45022674B09BB^-4' '853C1C3AF41CC8^0' '-2F826CAC50AB6A^0' '26A7323383E5FE^0' '-D1D750337420B8^0' '-907BA08329E158^-4' '494AB7BFD81E94^-4' '4734360E38F5B^-4' '853C11FF0605^0' '-2F826A7DF8287^0' '26A6DD4EFB0FD6^0' '-D1D766D9A8D348^0' '-510B314FE30AE4^-4' '61325A82E6B9CC^-4' '4353C1DCEEC2DC^-4' '853C053ED92EB^0' '-2F828250D2AB5E^0' '26A69C8C682DBC^0' '-D1D7757247F108^0' '-CE9EE8300A23F^-4' '3A2A876907361^-4' '720F5038F65358^-4' '853BEE17CB22D^0' '-2F826D0236E6F2^0' '26A62E2785AAFA^0' '-D1D79D604D9D98^0' '-19DA04B661DD59^-3' '-130976DB52029A^-4' '3BF2D1C818DDF8^-4' '853BFA8211BD98^0' '-2F81FE1C7B0AE4^0' '26A584088DC322^0' '-D1D7CE07B5561^0' '-278C14ED467A0A^-3' '-85E5BE8A58F84^-4' '2760E185508BEA^-4' '853C1AE35B2EA8^0' '-2F81258473ED8E^0' '26A49FDCFF9FDE^0' '-D1D814539F0E78^0' '-2E1480CA457F38^-3' '-BFC23DA6CE4198^-4' '1F40628A3B5144^-4' '853C43FE06AB98^0' '-2F80196AE01DB8^0' '26A3A0AE8BC418^0' '-D1D865DD299148^0' '-846853B8492308^-3' '-31D0B4C6ADF9A^-3' '-13FDA709AAD6A2^-4' '853CD49CA4E6D8^0' '-2F7CA9F4B0968C^0' '26A10DAC3B06E8^0' '-D1D94A89910DD8^0' '-25F4493C3AE9FA^-3' '-7FCD3F7007DB3^-4' '35B5583E4FA674^-4' '853CED463EFE98^0' '-2F7BDB989791^0' '26A0310D691F28^0' '-D1D9922D13B468^0' '-674B8CD47DF0B^-4' '62806BD63BB8B4^-4' '5A3A55A491355^-4' '853CD94F3C285^0' '-2F7BEFE580A2D2^0' '269FE4B74F372^0' '-D1D9A8526F0DA8^0' '7AFDCE75F212^-4' 'BB99BA3410A438^-4' '8C1324E9874568^-4' '853CA29DA44038^0' '-2F7C6759AB6D^0' '269FD94EBB4EF6^0' '-D1D9B20D83CC28^0' '89BAE1EEDD9CE8^-4' 'CC5DB40C600148^-4' '6F4E714F5732F8^-4' '853C77AA867BD8^0' '-2F7CE75C45254E^0' '269FD242D86CBE^0' '-D1D9B1B79D90A^0' '-EA9289DC2DBB3^-4' '1C50EC97FA743E^-4' '46856BB1B1FBBC^-4' '853C72A208FED8^0' '-2F7CBB3C81908E^0' '269F6433DC2586^0' '-D1D9D31A99B448^0' '-2081FB8AB0D04C^-3' '-4B5795DF051E28^-4' '3FD6DBBDC5A55^-4' '853C83131A6408^0' '-2F7C19D6EBB49A^0' '269E9CB8B2E46E^0' '-D1DA1204BA4EF^0' '-342E1C2474962C^-3' '-EB7138EBB14FA8^-4' '28A6B323E442EE^-4' '853CAE06382868^0' '-2F7AE320205BEC^0' '269D80031A91A6^0' '-D1DA7150245AA8^0' '-3E2574BAFFB648^-3' '-15D27234CC8519^-3' '457FF2355C34F^-4' '853CD36FFF1678^0' '-2F795683197A7A^0' '269C3CE2089E34^0' '-D1DAEECE7F547^0' '-3A13948CA805C8^-3' '-10EB4C17599227^-3' '-90B21B7C269828^-6' '853D155F37C8F^0' '-2F77F5AFEFF24^0' '269B068123810E^0' '-D1DB4DC40324A^0' '-26EC157FA74898^-3' '-825C367D270358^-4' '5C023D79A5345^-4' '853D1F9B25E0B8^0' '-2F7725257E69BE^0' '269A20A816341E^0' '-D1DBA0D019B358^0' '-12C250F1978278^-3' '-B952724839861^-5' '3772B9BB7D6E26^-4' '853D23CCE3C8E8^0' '-2F76D67618E0F8^0' '2699A37FA175DC^0' '-D1DBC6E5AD188^0' '-2018519C5F6CBE^-4' '7CB401022CC54^-4' '45248DC41BB3D4^-4' '853D13DCABBD08^0' '-2F770671B4225C^0' '26996F7D3B6A0E^0' '-D1DBCFCA024228^0' '275E4D7694A09A^-4' '7A73F7C9A7253C^-4' '70C849D3401AF^-4' '853CEB42D9996^0' '-2F774B6604ECA4^0' '26995551154664^0' '-D1DBDEE37AB93^0' '-B4833E79BE4248^-4' '31094E267F730C^-4' '380377451DF71C^-4' '853CE8BE9ADAE^0' '-2F7734BFD03A14^0' '2698F960A98E04^0' '-D1DBF68B621E58^0' '-1D617A05B2A75^-3' '-296569FD078BA6^-4' '45EA80F8027678^-4' '853CF47D14FE98^0' '-2F76AEB306522A^0' '26983CF82DF98E^0' '-D1DC2FEC2BE2B^0' '-5574693B8D0F74^-3' '-1F0E5263E5A64F^-3' '-4E46BC9D6D4CB4^-5' '853D4FC1B43FE^0' '-2F747ED7F74D54^0' '26968E4C5E7D64^0' '-D1DCC3BAD55388^0' '-32E9956C63C77^-3' '-FA931F9CFC87B^-4' '421C4C2D8F0EF8^-4' '853D6D48D8B6E8^0' '-2F734922DEA74^0' '26957B7CCE06DE^0' '-D1DD299148E828^0' '-5354E1F4D2F594^-3' '-16D76FBC5DD9DB^-3' 'F6264E68B6472^-5' '853DC70AEBEC5^0' '-2F715989892B38^0' '2693B6ABA33172^0' '-D1DDB3FAC3D6^0' '-1C6D636FC79A98^-3' '-23B0D7E3CDC3AE^-4' '58BBC7CFECF7BC^-4' '853DCA10040418^0' '-2F70DB346E9C96^0' '2692FD483FB4CC^0' '-D1DDF08B98CFF^0' '-64F03DBE4D78EC^-4' '7AF97547D1D008^-4' '8E8C9769D97368^-4' '853DA24CF1755^0' '-2F70FE19F6CC24^0' 1024 '2692A6B637B4F8^0' '-D1DE11EE94F398^0' '4CC742C1B8369C^-4' 'C5D016351D79A^-4' '75364EFDCCB544^-4' '853D7A09058D3^0' '-2F716BFDFFF59A^0' '269287D77A4FD2^0' '-D1DE184EAB5EC^0' '-2CC40AB8B4F61C^-4' '7AC77864101F4C^-4' '5E846F001340AC^-4' '853D60B39EFE6^0' '-2F7199CB42B404^0' '26924CC93161CC^0' '-D1DE28EAAFE1B^0' '-12217C6B3F241C^-3' '121607FB8315EF^-4' '46E3F274EFB084^-4' '853D5FDCDF6988^0' '-2F715B0C15371E^0' '2691CA983F2686^0' '-D1DE4F811CA02^0' '-295586C88AEED4^-3' '-AE0E2579B83AC^-4' '57282B4D6FACD^-4' '853D6C47260448^0' '-2F706E272507F8^0' '2690E0B8670F2E^0' '-D1DEA8168A0528^0' '-362A4092C88E16^-3' '-FDFC1C96D9ADF^-4' '274CBD7CF96D28^-4' '853D99689C4BA8^0' '-2F6F278021A368^0' '268FBBF5392794^0' '-D1DF0B3DCBBD8^0' '-3A0DD0A0C43492^-3' '-104190503BBAB5^-3' '2B43F3664D218C^-4' '853DCA10040418^0' '-2F6DCE64A77478^0' '268E7EDE5763C^0' '-D1DF746F3DA58^0' '-314E8A09A3EA1A^-3' '-C56D84D830A268^-4' '2EBF07B13BDA4C^-4' '853DF1274A1BD8^0' '-2F6CB3B27486E6^0' '268D6A8C3AE152^0' '-D1DFCE5C43F8A8^0' '-1C56FBF15F4E83^-3' '-4B768187FEC22C^-4' '20E372B515C372^-4' '853E07F871EC28^0' '-2F6C213B640436^0' '268CC144028E5^0' '-D1E000055E63B8^0' '-E8F24935C672^-4' '43067318D0B1CC^-4' '5160DB7526AC6^-4' '853E014275458^0' '-2F6C06387E4BB6^0' '268C48CE251188^0' '-D1E020919AF288^0' '-47B8C64A7EE928^-4' '415BBABCD0A1^-4' '67DEE02FCE7628^-4' '853DE238C4C29^0' '-2F6C1628B65796^0' '268C10C4F43B5^0' '-D1E03AE8B433F8^0' '-655318D7AF7654^-4' '77291833C2F8AC^-4' '5D8AD262389478^-4' '853DCE41C1EC48^0' '-2F6C33AFDACE98^0' '268BBF914FF40A^0' '-D1E04FE169BCE^0' '-10C22FCA2810E6^-3' '8B5CDC2C9E3068^-5' '41ED9FEF05ABE^-4' '853DCCBF35E06^0' '-2F6BF673395D9A^0' '268B4949CAFA3A^0' '-D1E07474711618^0' '-246C1981964D1E^-3' '-6A768EBE473E7C^-4' '435406127D5D98^-4' '853DDF08B98D^0' '-2F6B38324B81B4^0' '268A6FDB04480E^0' '-D1E0BB971A6358^0' '-567CA2D4004994^-3' '-1F189B724B2B7F^-3' 'FCF4A994B294D^-5' '853E334175EC18^0' '-2F69055224651^0' '2688B8A0C5DDC6^0' '-D1E155F0CD5D18^0' '-338FB8500D46EE^-3' '-E727B5C614E56^-4' '2B48E86B471976^-4' '853E5C871486C8^0' '-2F67D322FD3016^0' '26879E9A5F6744^0' '-D1E1B4BB5E0F8^0' '-4C805BFA83A5C4^-3' '-1A6A96B67AF61C^-3' '34436CD62BBDA6^-4' '853E9897102768^0' '-2F65EB41570D58^0' '268611FD5885D4^0' '-D1E24584EF688^0' '-1272FD87F19184^-3' 'F793BAAC36179^-5' '42C888C164902^-4' '853E99C3B5F7C8^0' '-2F65A9D2F7B42C^0' '26858ECAB397F2^0' '-D1E26BC575EB68^0' '8E1054940200B^-6' 'C0BAB11DE02DE8^-4' '749D74AD5597DC^-4' '853E7860B9D42^0' '-2F6601BC98A222^0' '2685520EEB8042^0' '-D1E2782FBC863^0' '34E7B751BBF2A8^-4' 'B591F16E5569C^-4' '5BDFF7E0D5D44^-4' '853E5B8561D43^0' '-2F6660DD0F9016^0' '2685300022E588^0' '-D1E27B5FC7BBC^0' '-60AE07EB23F254^-4' '780C6E364079A8^-4' '5D35564F135A98^-4' '853E473878C26^0' '-2F667FE6C013^0' '2684E079FDC7EC^0' '-D1E28FACB0CD9^0' '-1865D0A190B16D^-3' '-3412EE4F623B^-4' '6EAB54F6AC4424^-4' '853E3A2265B088^0' '-2F660D501FA812^0' '268443C6FF2D72^0' '-D1E2CEC1C486^0' '-2C84231EFE2572^-3' '-B5A40C6EBB84B8^-4' '2E0F6B487F9E9^-4' '853E5B8561D43^0' '-2F650CF505FBEE^0' '26834ACDAE9F1^0' '-D1E321220E9DA8^0' '-39F74896DF16B4^-3' '-EAD8C4EA2BAF98^-4' '3696834269F876^-4' '853E8952A49298^0' '-2F63BF6D12D2EC^0' '268206AAE9F902^0' '-D1E38AD459DEF^0' '-3AE744D751B8D6^-3' '-F828BB51291B68^-4' '2F60923184234E^-4' '853EBA7AE5A46^0' '-2F6267FF17CDA8^0' '2680C084BFEDC2^0' '-D1E3F5077E798^0' '-2AEFF436284684^-3' '-BE3166F7F281A^-4' '26C456D9833ECC^-4' '853EDBDDE1C808^0' '-2F616A283CE006^0' '267FD4CC758EF8^0' '-D1E44462B07958^0' '-1A97CA62FFB13A^-3' '-31BA45CBB52C6A^-4' '850AF1AF702298^-4' '853EC8E891A458^0' '-2F60F10692EC2C^0' '267F26FC99184^0' '-D1E48B8559C698^0' '-8477D535975A2^-4' '3FBDA69118C4D8^-4' '4B31047DB4322C^-4' '853EBB26B21B7^0' '-2F60EE57610FE6^0' '267ED923F3245^0' '-D1E4A32D412BC8^0' '-2F4398E5BFAF3^-4' '81407A89737ED8^-4' '5B70C5FC50935^-4' '853EA3FFA40F98^0' '-2F611DFD1615C2^0' '267E9BBC5E958C^0' '-D1E4B2F28619E^0' '-9A7FDFCFE1E5A8^-4' '43E5297F1FE3C8^-4' '510D36978182E8^-4' '853E95E7DE4B28^0' '-2F61179CFFAA9A^0' '267E4326F13084^0' '-D1E4CCF3B91FC8^0' '-1333F8949E1A9E^-3' '-DDD30C8264AFF8^-6' '42524FB217DA54^-4' '853E9714841B8^0' '-2F60CC4898752C^0' '267DBF487FCB92^0' '-D1E4F5629825A8^0' '-279FA93FAE1A68^-3' '-80ABF8976EF0F8^-4' '374C95A293C86E^-4' '853EB16B9D5CF^0' '-2F5FF6B5A96FA6^0' '267CD7C1F354F6^0' '-D1E53F5F666CF^0' '-594938F7A23FBC^-3' '-20EE9D060250F6^-3' '301F5A3349AB58^-4' '853EFA3BC5D3E^0' '-2F5DAE86E68E94^0' '267B12C5D561C6^0' '-D1E5E7FBD248E^0' '-351AECC6B465A8^-3' '-C16887E3DE7D8^-4' '2066A0B42407CA^-4' '853F2D11860F5^0' '-2F5C8490480C34^0' '2679E5CA1EC796^0' '-D1E6423EBED798^0' '-4A64E9B055254^-3' '-185069EA9181E8^-3' '23ED35DCF1AF6E^-4' '853F6F2BB1DF88^0' '-2F5AB1FD3DADE^0' '26785FB8216F1^0' '-D1E6C8F755369^0' '-1249665C4AA02B^-3' '20EF9939191A1A^-4' '48676BAA3A01F4^-4' '853F6F00BEC1C8^0' '-2F5A78C767074C^0' '2677D87EB1B6C6^0' '-D1E6EEB702603^0' '9E48EE9FCA3448^-5' 'BBF5A400391558^-4' '6E0E0E1B8B4018^-4' '853F4F204EAA08^0' '-2F5AD0B107F542^0' '2677A17733932A^0' '-D1E6F948D6B38^0' '4C06A6A410BC4^-4' 'C823CE1F4242C8^-4' '626DFA85F6E618^-4' '853F2EBF0538F8^0' '-2F5B3DE944A7A4^0' '2677836F35C2DA^0' '-D1E6FAA06FA1A^0' '-4849C84F67CBC4^-4' '587D46983C1AC8^-4' '500E775E18FF24^-4' '853F1B48DBBC^0' '-2F5B556638EF0A^0' '2677475F3A223A^0' '-D1E70CBF00308^0' '-1A162E35077F6D^-3' '-FBCF127AD8E538^-5' '717B7002B5A0BC^-4' '853F123993749^0' '-2F5AEADD2E18EE^0' '267695DE791CA2^0' '-D1E74B284771D8^0' '-2EBA15BA2CCFAA^-3' '-D267E5997BD7C8^-4' '2A6651292AEBC4^-4' '853F3620CE56B8^0' '-2F59D53378A85E^0' '2675962F2BE79^0' '-D1E7A1BA4F71B^0' '-3ABF546613CD7^-3' '-106230DB2D40F4^-3' '4668C0BD37247^-4' '853F5C8C47F768^0' '-2F587A6A7F4FC2^0' '2674528D409AD^0' '-D1E812F956EE78^0' '-383759A81637C4^-3' '-EA4DE666853468^-4' '3E66F8F92EBF78^-4' '853F847A4DA3F8^0' '-2F5734F021BB92^0' '267318FC504816^0' '-D1E87C55BBF438^0' '-2DBBEC0B1DEFCE^-3' '-CB12F9E1DBE2C8^-4' '2D4209B0471C6C^-4' '853FA65E2320F^0' '-2F5626A83568C2^0' '26721DA9B418F6^0' '-D1E8D1E611417^0' '-19D9C84B54796F^-3' '-338CFE4027331A^-4' '67F1A22DCA25BC^-4' '853F9E259A6E58^0' '-2F55ADB17E92AE^0' '267177E76D371^0' '-D1E910D031DC18^0' '-904A58580B38B^-4' '4DEC0245363CD^-4' '440A4DD22BA674^-4' '853F956C38627^0' '-2F55AD30A5396^0' '2671222C24CC12^0' '-D1E9261ECDA088^0' 'C981C2882AD93^-5' '5FD8DCA2A3229C^-4' '7B860FEEA5AAA4^-4' '853F68CB9B7468^0' '-2F55E10818276A^0' '267102F7812B64^0' '-D1E93C6F1C179^0' '-78581A93F50118^-4' '6E6E966C5BC53^-4' '3783EE47774554^-4' '853F65709D211^0' '-2F55F326A8B642^0' '2670AFC0777EE8^0' '-D1E949B0224728^0' '-3C18FE8D28827E^-3' '-14933145AA16D4^-3' '1CF79C98560BF8^-4' '853F99C8E9686^0' '-2F5474208E3FF4^0' '266F7888D2CCEC^0' '-D1E9B7EA11AC28^0' '-24B05750988C98^-3' '-87C8F3D613543^-4' '5CB1CB39281AC^-4' '853F9FD31998^0' '-2F53AAA1FF99A8^0' '266EA29FFD8BDC^0' '-D1EA089CDC9A2^0' '-27643EDAAA7EC^-3' '-77A2C5D5AEFF4C^-4' '47889DC198AEE8^-4' '853FB3CA1C6E48^0' '-2F52DAEE4DA5FC^0' '266DB8C0257484^0' '-D1EA559EC2F938^0' '-27E5CB1DB45F64^-3' '-A8917223293678^-4' '2ABC8EB6AB84DE^-4' '853FD0A5746E38^0' '-2F51F2E6E7D612^0' '266CDAF4ADBC66^0' '-D1EAA0475DB798^0' '-4BE351844BF3C^-3' '-18E3083315E63F^-3' '251E3B310A08BA^-4' '854013C152F11^0' '-2F50166DD59B7E^0' '266B4D55F4285C^0' '-D1EB29DA1910A^0' '-1E5A3C44A6438E^-3' '-2849B5894E2D7^-4' '49ABFD33D084F4^-4' '85401F54D9F7^0' '-2F4F8D060D603A^0' '266A89E195B1AE^0' '-D1EB6513551C68^0' '-B44A6BDFE6911^-4' '7938BC2FAE693^-4' '6BFD5A5A68CFF4^-4' '85400CE0632CA^0' '-2F4F97EDC7EF18^0' '266A167435B1E8^0' '-D1EB839C2C4608^0' '-19201348D1D973^-4' '718F4673B95BE^-4' '7C2A27DC8CA3B4^-4' '853FE4C76A6248^0' '-2F4FC940FC1E9E^0' '2669E31D9C1D2C^0' '-D1EB9B4413AB3^0' '-7C789FDCF5603^-4' '5238AC1481EF^-4' '60A1EB6EDB5808^-4' '853FCECD0226C8^0' '-2F4FD1CF6B0CBE^0' '266991BF04B82^0' '-D1EBB61C0645E8^0' '-18C88945AC0003^-3' '-110D19E3EAF9D4^-4' '4B51A6FE3E9BCC^-4' '853FD354A64A8^0' '-2F4F6949C59BD6^0' '2668ECA88A4D4C^0' '-D1EBE91CB99F2^0' '-25562E39711214^-3' '-72016FFD50F6B8^-4' '3F61D91206EB1E^-4' '853FE7F77597E^0' '-2F4EA3D201BFF4^0' '26680F88DF0C4^0' '-D1EC30EB2F637^0' '-3123027AB1EDCC^-3' '-BAE8301F0903F^-4' '290D7C4C255E2E^-4' '854011BDED8BE^0' '-2F4D8DA772F616^0' '2666FA0A1CB974^0' '-D1EC87D31D9ED^0' '-33092BDE611C68^-3' '-DF92443C1704^-4' '457735EBBEC48C^-4' '85402FF0DE79F^0' '-2F4C62AF21C11A^0' '2665DF02039058^0' '-D1ECEBD11EEC^0' '-29D70AC47C345C^-3' '-84A87B38C6FD68^-4' '3289D571F1306^-4' '85404F25821AA^0' '-2F4B81DE91F12E^0' '2664EA656407E8^0' '-D1ED377B6C5CF8^0' '-1E881078BE813A^-3' '-58F928D55023A4^-4' '2F8783AB390F74^-4' '8540621AD23E5^0' '-2F4AE1D095035C^0' '266434DDD837E4^0' '-D1ED70B1430388^0' '-14494C49C23879^-3' '-E62A2E8805D978^-5' '3DE59B75C51CBE^-4' '854065A0C3AF7^0' '-2F4A8C154C986^0' '2663ADCF5B9D6^0' '-D1ED9A77BAF79^0' '-AA923839B81D78^-4' '4DBA4252F8188C^-4' '54718B11EE08A^-4' '8540588AB09D98^0' '-2F4A85E0294AFC^0' '26634BD4BFB562^0' '-D1EDB5FB7A0958^0' '-AD4DD8446AD5A^-4' '310C61BDEC56B8^-4' '49836B9E18A7A^-4' '85404E23CF6808^0' '-2F4A7269FFCE^0' '2662F13BECEB26^0' '-D1EDD1AA2C38F^0' '-3D0C02288A0EC4^-3' '-150E35BE04C144^-3' '2E2AA1E773F45C^-4' '85407C1C054438^0' '-2F48ED84A845DA^0' '2661B4250B275^0' '-D1EE45EE4BCD88^0' '-1F3D5583E27894^-3' '-57B54FBE352D2^-4' '395E0F6DE60D2A^-4' '85408C37306DD8^0' '-2F484BC92C2E5C^0' '2660F8BE424574^0' '-D1EE827F20C778^0' '-22238218E34D54^-3' '-709893F1037F1C^-4' '3B6C543B28354E^-4' '85409DD4E7A368^0' '-2F4793E854BD9C^0' '266030974C8D4C^0' '-D1EEC545190EC8^0' '-23E70E88F7953C^-3' '-7376EB0475D64^-4' '38AE0A1A4D6918^-4' '8540B2F8904A1^0' '-2F46D34E1B40FA^0' '265F5DDE8281D^0' '-D1EF09B8907FC^0' '-49589359A1A384^-3' '-16B918A83BB81D^-3' '2807B2B8F61F14^-4' '8540F3BB232C28^0' '-2F450FD48959B^0' '265DD7A1920B86^0' '-D1EF8DC1F50278^0' '-1A51ACFE41B98C^-3' '-31C01A1D7C0C2^-4' '69324212E3CE28^-4' '8540EBAD8D9758^0' '-2F4495B12CB33C^0' '265D2E2E669ABE^0' '-D1EFCD2CEEF67^0' '-10D242174ED4F6^-3' '24DAE362CA92EC^-4' '53BE4D565035B^-4' '8540E4F790F0A8^0' '-2F446509C4FAC6^0' '265CAE81B31DFA^0' '-D1EFF3C35BB4E^0' '-9C1703EBDAC2A8^-4' '6623E29DE8BF2^-4' '63E9F8318168A8^-4' '8540D20240CCF8^0' '-2F446DC32706AA^0' '265C4AAEA4EE8C^0' '-D1F00FF2E73DC^0' '-B2568E5837108^-4' '253E2880D88582^-4' '4B3AB98D563548^-4' '8540C66EB9C708^0' '-2F445442CD5A1^0' '265BF0EC91B926^0' '-D1F02D7A0BB4C^0' '-167EF175411CCB^-3' '-3FF52C1FA10512^-5' '52E384DC08BDF^-4' '8540C56D07147^0' '-2F43FB2C869BBC^0' '265B56BDD1DD2C^0' '-D1F05E7759A8C^0' '-1F6A0E90D197EF^-3' '-813FE859B83A2^-4' '58FBB6C093875C^-4' '8540C597FA3238^0' '-2F434A01ABD1AA^0' '265AA20D05A2^0' '-D1F0A71C8F01E8^0' '-29421337213D7C^-3' '-791DACC68BF4BC^-4' '35B9958989DA8E^-4' '8540E37504E4C^0' '-2F427092E51F7E^0' '2659ADF13F72DC^0' '-D1F0F1C529C04^0' '-2D9171B2E83EE4^-3' '-C0F5ADF9C175E8^-4' '1A2042F5A6D682^-4' '85410D9163145^0' '-2F4165A5F72008^0' '2658B2C996618^0' '-D1F140F568A258^0' '-2A2BD6683F1F8A^-3' '-7CEC9E2433F92C^-4' '37E8101ACDD47E^-4' '85412B9960E4A^0' '-2F408703BFD314^0' '2657B97A5F9796^0' '-D1F18DA168C5E8^0' '-229688BE21591C^-3' '-4E0CE53EFD05D4^-4' '4407C59EAE11A4^-4' '85413CE131DEA^0' '-2F3FDC0E085666^0' '2656E4933D092^0' '-D1F1CFE687B3E8^0' '-17AF20D14E4239^-3' '-1C5429F598773C^-4' '380E2973AF5F16^-4' '854146C739BAE^0' '-2F3F7205D6D996^0' '26564B662FDFC2^0' '-D1F1FD88D7549^0' '-103BB1F40B6DBA^-3' '151C2B4AB2E4A1^-4' '5817B0F96DC29C^-4' '85413C3565679^0' '-2F3F3DAD8A924^0' '2655D346389E82^0' '-D1F225F7B65A7^0' '-FCBA3FB9061658^-4' '-1316DAAA927EA3^-4' '44E504ACA89168^-4' '854135D54EFC68^0' '-2F3EF93A132144^0' '26556A3FB9D44C^0' '-D1F24C8E2318E^0' '-3B24CC1B9B6728^-3' '-149F2A6F7986D8^-3' '4AAA4A67B5449^-4' '854155E0B231E8^0' '-2F3D813FDB8D2E^0' '265435366DA54A^0' '-D1F2C559E6D13^0' '-1BD8DE1FF6F9B1^-3' '-448DD53DA91794^-4' '355057591118EE^-4' '854163F877F658^0' '-2F3CF528E175A6^0' '26538B6D5BF8FA^0' '-D1F2FADED8E8E8^0' '-2183AEE74F4996^-3' '-5638F6C676E2D4^-4' '490399FFEB2934^-4' '8541710E8B083^0' '-2F3C4BB5B604E^0' '2652BF3F9B7668^0' '-D1F33DFAB76BC^0' '-2142508EB00DCC^-3' '-667F4193CCC4C^-4' '2A8F6C2BCB0F8A^-4' '8541890C58A8E^0' '-2F3B9A5FE81D0A^0' '2651FBCB3CFFBA^0' '-D1F37A609947E8^0' '-49F7061C8AAD88^-3' '-152F729F0A9001^-3' '2DE5C6F4D55AC8^-4' '8541C9F9DEA8C^0' '-2F39DEC8F8ACD^0' '26506A7B9EDCD^0' '-D1F3FE14178F1^0' '-1D8CCD4CCC1208^-3' '-2ACC3EAE03EA7A^-4' '4C2742D705826^-4' '8541D3341A0DF^0' '-2F3957E56F300E^0' '264FACBB8A5A36^0' '-D1F4394D539AE^0' '-F52B896A1DBB68^-4' '379086FE0BD15C^-4' '7394C38082809C^-4' '8541BE914AC098^0' '-2F39378425BF02^0' '264F2F123C42A6^0' '-D1F46496579AC8^0' '-8F1D6AE07A2508^-4' '4D91EC959257B8^-4' '48959A89D3C2A8^-4' '8541B3D4834F8^0' '-2F39378425BF02^0' '264ED981E6F56C^0' '-D1F47B11992F9^0' '-C808EBC37DA16^-4' '31BFB5FBAD6524^-4' '4BF9B60A569D2^-4' '8541AAC53B081^0' '-2F391D82F2B91A^0' '264E7380804306^0' '-D1F4991996FFE^0' '-163D1E72F18F0D^-3' '39CCE5B466BBA2^-5' '53348637323BE^-4' '8541A9C3885578^0' '-2F38C89E69E2F2^0' '264DD8FBDA2B86^0' '-D1F4C915324148^0' '-1ED409AC96EAAD^-3' '-2F5A3971B40ABA^-4' '4C1AB62E06EE94^-4' '8541B4804FC69^0' '-2F383A840A6636^0' '264D1404EFA8F^0' '-D1F50626E0948^0' '-29A204E1E60A16^-3' '-7D82503A643814^-4' '6E2A82027E1F6^-4' '8541BB613F8B08^0' '-2F3761EC0348E^0' '264C195E1FF0E2^0' '-D1F5603EDA057^0' '-2D6C94575BBCCE^-3' '-CA7FE1E7D79CF8^-4' '1E47CE60FBE7B2^-4' '8541E2CE6BDE48^0' '-2F3653F9FD319A^0' '264B213B8EF754^0' '-D1F5B11C98113^0' '-2993530D57FF5^-3' '-9142A24FFDB0E^-4' '35A40CB79815DC^-4' '8541FF53DDA2B^0' '-2F356F4D95B508^0' '264A315186B05E^0' '-D1F5FE49718E1^0' '-237F1E9AB37BA^-3' '-89A3ADAB91EC3^-4' '3713953CEAACF6^-4' '854212CA071FB^0' '-2F34A7269FFCE^0' '264967272B93^0' '-D1F643BE9BB1A^0' '-18FEF03667F96F^-3' '-146BB83E8AFDC8^-4' '55DDA66DAF7A74^-4' '854212F4FA3D7^0' '-2F343D1E6E801^0' '2648C08E251C44^0' '-D1F679EF5A4068^0' '-36C41860ADFAA^-3' '-132606D8D674D4^-3' '14CF39FCEC65EE^-4' '854244482E6CF8^0' '-2F32DCF7116EE8^0' '2647A70897FF1^0' '-D1F6DD169BF8C8^0' '-E970C4B80C9A3^-4' 'A387C93D73CB38^-5' '6C4078AC31492^-4' '85422E22D313B8^0' '-2F32AC7A9CD436^0' '26473AA71AE182^0' '-D1F709B738E6D^0' '-E4A4A2C22C04B^-4' '27CC138C2FEBD2^-4' '442263418F2324^-4' '85422A46FB6718^0' '-2F328665096F14^0' '2646CC42385EC2^0' '-D1F728EBDC878^0' '-141C105C6AEABB^-3' '-393D868592133E^-5' '3C4371B484FB^-4' '85422EF992A89^0' '-2F3235B23E811A^0' '264643B12FB854^0' '-D1F75104D551D8^0' '-1C1DBD760DD7C8^-3' '-485E7726725B68^-4' '39B7E9F0770CA4^-4' '85423B63D9435^0' '-2F31A741F8C8D4^0' '264598BB783BA6^0' '-D1F7886239B0F8^0' '-25BC33CD6A3F34^-3' '-7B5014932CD8E4^-4' '33D327622ABF8E^-4' '8542548E4CB46^0' '-2F30DB6A1E81CC^0' '2644BC728C8F7^0' '-D1F7CE583D2DE^0' '-55725FA18F7038^-3' '-1BC9A96816F29D^-3' '4E0A15B55BCDC^-4' '8542914A14CC18^0' '-2F2EC712CE8EC4^0' '2642F84D2E3116^0' '-D1F871C1386F08^0' '-25C62444D936B8^-3' '-5F93A5AC795718^-4' '3F839A37E186C^-4' '8542A7C55660E^0' '-2F2E074F54A6F6^0' '26421375D396C^0' '-D1F8B838154538^0' '-16F57869818DE2^-3' '-17DCA4524A803D^-4' '43A532EE61995C^-4' '8542AC220766D^0' '-2F2DA2FB6D1E3C^0' '26417CCD052BE4^0' '-D1F8E787E40F88^0' '-F924E80CD4FBF^-4' '3F7BD755555C9A^-4' '615F236D9B1414^-4' '85429FE2B3E9D^0' '-2F2D8370E34204^0' '2640FD2051AF2^0' '-D1F90D9D7774A8^0' '-8C8B8C0C4718B^-4' '4A98B03EEDF5F8^-4' '42CA3F74E24F68^-4' '854296FE5EC028^0' '-2F2D826F308F6A^0' '2640A9E94802A4^0' '-D1F922962CFD9^0' '-E11816772EAD88^-4' '-173946A8EA4F95^-5' '644F886822F5C4^-4' '8542828682909^0' '-2F2D4EC2B0BF26^0' '264044BEA0E512^0' '-D1F94DB43DDFB8^0' '-1744A72C68BBFF^-3' '-7231392E792A74^-5' '55858ABCA6B45C^-4' '8542812EE9A27^0' '-2F2CF14FB8FADE^0' '263FA6083CE564^0' '-D1F9805F0AFD6^0' '-1E84C89A3FD561^-3' '-4CCA4D87396D98^-4' '481FE40AA4611C^-4' '85428AE9FE60F^0' '-2F2C5822ABD18^0' '263EEB224D5CD6^0' '-D1F9BEC8523EC^0' '-29AE9EEC3CF4BA^-3' '-AC6998F7A5B458^-4' '268B5F278EA866^-4' '8542ABA12E0D88^0' '-2F2B66B6177EA2^0' '263E02EFF46F28^0' '-D1FA0A729FAFB^0' '-2EA7D85E4D9ADA^-3' '-A57CBCCE490B78^-4' '29CEF1D8A466E2^-4' '8542D2E3674308^0' '-2F2A63ABCBF638^0' '263CF803066FB^0' '-D1FA5C52106E1^0' '-2D7D6A0FFBD1CE^-3' '-B4DFF7B4F2E8C8^-4' '31FE4AFB7B895^-4' '8542F3F07D2B2^0' '-2F295FCAC0D8F8^0' '263BF7FDD2FF16^0' '-D1FAB05FD9AF6^0' '-246686EBF70C74^-3' '-7472FADE8A6ED4^-4' '387AD2AE614DD6^-4' '854309BFF248E^0' '-2F289CAC489DD4^0' '263B223FF0DBCA^0' '-D1FAF5542A79A8^0' '-3B3C19874D4DEE^-3' '-11DB809944EC67^-3' '2175004D2D77B2^-4' '85433DED4B727^0' '-2F27334AB0277A^0' '2639E4D328DC6E^0' '-D1FB5F0675BAF^0' '-10F7C3BABEF50E^-3' 'C43B053D2BAF6^-5' '3CDE737DE38E12^-4' '85433EEEFE2508^0' '-2F26F63901D44^0' '26396CB3319B2E^0' '-D1FB8216F1084^0' '-D25A91D7385288^-4' '1CCB0A94632689^-4' '6BB92CCD6C873C^-4' '85432848C97278^0' '-2F26D35379A4B2^0' '263905044BBF1C^0' '-D1FBAB319C853^0' '-D59C7858C18838^-4' '2485307FFE9916^-4' '43B27CFD4B62E^-4' '854322EA65B9F^0' '-2F26AFC224FE12^0' '26389DAB4C1E92^0' '-D1FBC9648D7348^0' '-14FB9D476821F7^-3' '-511251DFF5D11C^-5' '41CE9A9D09FCFC^-4' '85432670572B08^0' '-2F265B33826372^0' '26380F3B06664C^0' '-D1FBF401C4FC2^0' '-223BCA75914A4E^-3' '-46B230844DBC68^-4' '4DC3E7DFC91CAC^-4' '854333B15D5AA8^0' '-2F25B5713B818C^0' '263739D30A7E8A^0' '-D1FC379E7CD84^0' '-52EBBC8C6054E4^-3' '-1C0099857D4FE8^-3' 'E656AFAC8620F8^-5' '8543869280CB98^0' '-2F23A5769C9476^0' '26358CFFAD49D^0' '-D1FCC7BC41BA38^0' '-27477BD9D2807A^-3' '-91ECA0A1D62338^-4' '6B7AA133F5CE98^-4' '8543896CA5C5A^0' '-2F22CE0B3B477E^0' '2634A751931AA4^0' '-D1FD1FFBC8E3B8^0' '-211C3DCF6259F2^-3' '-2F0B8489F3F476^-4' '606F6E643C2708^-4' '85438F20EFB9B8^0' '-2F22380E3953B4^0' '2633D168BDD994^0' '-D1FD64F019ADF8^0' '-15C6C7B1272D31^-3' '-14DF265C58A334^-4' '4DB21AE11EA944^-4' '85438DC956CB9^0' '-2F21DA9B418F6C^0' '263340CA1F9E56^0' '-D1FD9516A80D28^0' '-F29DA0374D7E58^-4' '525B46D7A200A^-5' '432DC7728F8D84^-4' '854388EBCC6C58^0' '-2F21A29210B936^0' '2632D5C03B6EEC^0' '-D1FDB827235A78^0' '-FA603FC7F05668^-4' '17149A96F55269^-4' '3C82ADE0F21CF4^-4' '854388EBCC6C58^0' '-2F216F666A423E^0' '2632637F813F86^0' '-D1FDD8886CCB88^0' '-FBC9C706F7CD98^-4' 'DE7A6BBBEDDA98^-5' '572217E7EDAE1C^-4' '85437D58456668^0' '-2F213A0C6B484E^0' '2631F092FA990E^0' '-D1FE00A16595D8^0' '-178AC929D12797^-3' '-14D0837B3347CE^-4' '462CEA071D5D04^-4' '854381B4F66C58^0' '-2F20D4B6D10CF8^0' '2631550CA1CEF2^0' '-D1FE30F2E712C8^0' '-1FE05158DE1532^-3' '-606C12ED06B048^-4' '676F6F7C06AF3C^-4' '85437F05C4901^0' '-2F2030212FFB7^0' '26309370B59FB4^0' '-D1FE7AC4C23C5^0' '-2AB3B3B463ECC8^-3' '-95AE460C16F2F8^-4' '1D40D8BD338C61^-5' '8543B20677E948^0' '-2F1F410DE7495^0' '262FA204214CD6^0' '-D1FEBC082E77B8^0' '-2AA97D0D5A341C^-3' '-AF832836E55C68^-4' '5C40BC47A2CD28^-4' '8543BDEFE52AC^0' '-2F1E4E49BA085^0' '262EAF3FF40BD6^0' '-D1FF1721DA9B4^0' '-28E349617F750E^-3' '-9D21BEF95ACFF^-4' '28D2FE8C5A2D1^-4' '8543DDA56224B8^0' '-2F1D66983A73F^0' '262DC80F4DD0C4^0' '-D1FF60F3B5C4C8^0' '-44F633952ABD7C^-3' '-1615979FA1FE43^-3' 'C738DD19F74C88^-5' '854423C658BF6^0' '-2F1BB76B919E78^0' '262C5E57CF1EE2^0' '-D1FFD71047A0D^0' '-1AFC7EB6A8751^-3' '-130A3BB1BD3AE7^-4' '3DD5E1160C79EC^-4' '854430B178B37^0' '-2F1B43D33E80F^0' '262BAC8127DDC^0' '-D200090F48477^0' '-1171FC1C3AD9F2^-3' '-538D35AC83F738^-8' '360CFE4D559E1C^-4' '854434376A2488^0' '-2F1AFF34D3F23^0' '262B350CFD1392^0' '-D2002BF4D076F8^0' '-F856D67BCB68B^-4' '32D6C1E3F1B5C4^-4' '5EB40E87971448^-4' '854427F816A79^0' '-2F1ADA76D97B3^0' '262AB93C214372^0' '-D20052604A17A8^0' '-10BED8BEF2753F^-3' 'AFC4B96850965^-5' '6B8936B54A1D1^-4' '85441558ACBF68^0' '-2F1AA14102D49C^0' '262A3E97EB43B^0' '-D200815A32A67^0' '-179C7DCC640551^-3' '-139F983F49E534^-4' '538FA63BB13EB4^-4' '85441456FA0CC8^0' '-2F1A3D180E69A6^0' '2629A10E2D146^0' '-D200B506B276B8^0' '-4986F05CC35728^-3' '-15B54B2A7BFF9C^-3' '366DC7F2F06672^-4' '85445066F5AD68^0' '-2F18807F6C46D^0' '262813F04CD9A2^0' '-D2013AE88940D8^0' '-249701F28B6158^-3' '-500D2BA909358^-4' '4A7C3331883024^-4' '854461AEC6A77^0' '-2F17CCD052BE3E^0' '262731C8241B94^0' '-D201813472F948^0' '-1D30605D9FEE67^-3' '-27BA7B466D3992^-4' '47100B2055926^-4' '85446C96813648^0' '-2F17484614E23A^0' '2626760B74FE2E^0' '-D201BA3F568218^0' '-1A25BFAFB22586^-3' '-22AE5EB08892D2^-4' '4360A62E7B5344^-4' '854474CF09E8E^0' '-2F16D22983063^0' '2625CD4416047A^0' '-D201EE16C9702^0' '-16FE06B07B2F7C^-3' '-27E5574A8DE85C^-4' '3B3F1DEE338AF2^-4' '85447B5A1371D^0' '-2F166673D25FB4^0' '26253B4DDEDB18^0' '-D2021C8FD8A5A^0' 1024 '-1475C82AE36AE3^-3' 'B53BBD45C8F5C8^-5' '53F1B3A12EB534^-4' '854477D42200B^0' '-2F161C211DDCE^0' '2624AA595A645^0' '-D20249B14EECF8^0' '-1582236A63606B^-3' '-288F8080744166^-4' '3C0959D96C083C^-4' '85447C05DFE8E^0' '-2F15B6759D6602^0' '262422492B173^0' '-D20276FDB85218^0' '-17BA470C72CC43^-3' '9D663F369CD968^-5' '58412D99A61E54^-4' '85447B5A1371D^0' '-2F155E36163C82^0' '26237BDB17BE38^0' '-D202A927AC167^0' '-1AA564DBD162B5^-3' '-4A75D8CE189C7^-4' '667C3726FFD734^-4' '854472F697A17^0' '-2F14D8543F725C^0' '2622D6EF907126^0' '-D202EA6B1851D8^0' '-214E4A20C328FC^-3' '-47B75EABCFD0AC^-4' '31E9C31D0F40E4^-4' '85448A1DA5AD5^0' '-2F1433E9917E98^0' '26220A6BE9B30C^0' '-D20325A4545DA8^0' '-43A46EC9B5A07C^-3' '-16D9A8AB7C8318^-3' '144EE7366B842A^-4' '8544CA0978FA9^0' '-2F1285BE9B5BBC^0' '2620ABC718ADCC^0' '-D2039D187F27D^0' '-253779C086E8E6^-3' '-6E7651ECD197F8^-4' '37DE216972ECD6^-4' '8544E1B1605FC^0' '-2F11C19E706DFC^0' '261FCF2846C60E^0' '-D203E237C30FE^0' '-1E969C64AB806C^-3' '-4BD358F3BFA688^-4' '3C4526A1730018^-4' '8544F049FF7D78^0' '-2F11279AA3AFC8^0' '261F14983D7908^0' '-D2041D460BFDE8^0' '-1BB9701C480F15^-3' '-47620E067C29E^-4' '35615CB025CA7E^-4' '8544FDE0EBE898^0' '-2F109AD7DD212E^0' '261E6C51B7D89E^0' '-D20452CAFE1598^0' '-175C2CE69EC97A^-3' '-116F917BB24ECC^-4' '7AC1FD66A76BEC^-4' '8544EC991AEE98^0' '-2F103B8C731576^0' '261DCC43BAEACE^0' '-D204903292A46^0' '-173F0433D3D99A^-3' '-2628E1BBABDA26^-4' '298CD741B31D02^-4' '8544FADBD3D0D^0' '-2F0FCE2943455^0' '261D39CCAA681E^0' '-D204BA23FDB62^0' '-423A40013E7E64^-3' '-133D4DAA16AB7D^-3' '29CA6B4658AC1^-4' '8545343C9D9528^0' '-2F0E3F32F0C322^0' '261BD3702A0994^0' '-D20530408F923^0' '-19A41AA7505117^-3' '-3BA0AA6BE9E4AA^-4' '393FDCC14E2326^-4' '85453DF7B253A8^0' '-2F0DC03209BD6E^0' '261B35659280F6^0' '-D20563164FCDA^0' '-1369F76E0D702D^-3' '2057FB2A179B5^-4' '52E6C23AC5C0C4^-4' '85453AF29A3BD8^0' '-2F0D82CA752EAC^0' '261AA5F39A1616^0' '-D2058CDCC7C1A^0' '-10E7BDEBADD168^-3' '2676BCF34F1E4^-4' '5B614BCC3AC96^-4' '85453137857D58^0' '-2F0D52F9CD0B0C^0' '261A2499676FA6^0' '-D205B54BA6C78^0' '-140E14BDA9164B^-3' '5E4D8D801C831C^-5' '4B64738D7A63^-4' '85453035D2CAC^0' '-2F0D077A72B7D8^0' '261998826D581E^0' '-D205E03EC48BE^0' '-1A4D4FFD27CD49^-3' '-3404211B531368^-4' '38548F929726E^-4' '85453BF44CEE7^0' '-2F0C88CF71EDAE^0' '2618F442B2821E^0' '-D206131484C75^0' '-1DBD9653A0EBF3^-3' '-4F0BB7C5DE79D8^-4' '6DB4900DAAB644^-4' '854534BD76EE7^0' '-2F0BF4AAE24154^0' '26183B8B1B7C88^0' '-D2065A372E149^0' '-23940DF85E1B5C^-3' '-6B9E93B4902B68^-4' '38F092E8ABFF32^-4' '854549B62C7758^0' '-2F0B38984CE866^0' '261768D251710C^0' '-D2069D530C9768^0' '-26F9C6675EE05^-3' '-7BCC27F78990FC^-4' '442363B714F5A^-4' '85455DD8226B68^0' '-2F0A688EB4B93^0' '261682F944241C^0' '-D206E8D266EA98^0' '-265305EA07351E^-3' '-82277FFC6A74A8^-4' '40DC0A12BB020C^-4' '854571CF2541B^0' '-2F09985A296C36^0' '2615A3555A248E^0' '-D20733251B6D7^0' '-248BA72D9E3D92^-3' '-64E207D9F97618^-4' '434AB8D9304E48^-4' '8545846E8F29D8^0' '-2F08DBC6BAB9FA^0' '2614C78D47D1A6^0' '-D20779710525D8^0' '-1EDD8C8FDB0A6A^-3' '-67B88C506161C8^-4' '35BAAF8D9500D2^-4' '85459408E0FA28^0' '-2F0834ACDAE9F^0' '261413076EB43E^0' '-D207B5ABF3E44^0' '-3CC5ABBD91F786^-3' '-131E8215D69B99^-3' '2C18B1C9350BD2^-4' '8545C4855594E^0' '-2F06BD5E6FCCEC^0' '2612CFBB69A306^0' '-D20825936272E8^0' '-14B803ACB5D885^-3' '-1D97A11DDACFD1^-4' '792C8C64161C6C^-4' '8545AF0BC6B2B^0' '-2F0663F242D30E^0' '261244503C029^0' '-D2086076B84328^0' '-1015CE2DCB5869^-3' '33279A350B6AF^-4' '5A636E1C82C66C^-4' '8545A57BA511F^0' '-2F063CB0099D8E^0' '2611C52461DF18^0' '-D208868C4BA848^0' '-117D98A12A541B^-3' 'E2F9E0D4D00F88^-5' '44E0581B88958C^-4' '8545A3F9190608^0' '-2F05FEC79BB57E^0' '26114851D35C5E^0' '-D208ABF6129658^0' '-152A2CCAA341C2^-3' '-972B499E42A6E^-5' '44CAF8FEAC6EE^-4' '8545A627718908^0' '-2F05A7DFAD7A22^0' '2610B98BA7689^0' '-D208D7EAE30D58^0' '-1E3E63AF754C38^-3' '-3498CCDAE67B3^-4' '426BB678788D98^-4' '8545B36877B8A^0' '-2F05194474A416^0' '260FFA9EED1598^0' '-D20911F77948C^0' '-4D7FC03A21547C^-3' '-16C85B8E532E5E^-3' '2213B7B16425AE^-4' '8545FC38A02F88^0' '-2F0343815F103^0' '260E59B4FD2256^0' '-D20998851C89F8^0' '-24B68470750DC6^-3' '-79B0E45EBFA0BC^-4' '3D0888B25A665^-4' '85461004AFE81^0' '-2F027D32DB9F78^0' '260D82CA752EAC^0' '-D209DF26EC7DF^0' '-1DFC231CE05A6D^-3' '-20CBEB95A607D^-4' '59330F84CDB37C^-4' '8546150D2D651^0' '-2F01F97F5D584A^0' '260CBE54640564^0' '-D20A1D0F5A66^0' '-1761CE89BF7A47^-3' '-2DDB69E1B5DA28^-4' '68F4E52623DC14^-4' '854608F8CD05D8^0' '-2F018D1DE03ABE^0' '260C272ABC413A^0' '-D20A5873898F88^0' '-10461CB30F94D^-3' '192407CE3CB5B2^-4' '4B8E65D573D92^-4' '854603C55C6B1^0' '-2F0159466D4CB4^0' '260BAEDFD1E236^0' '-D20A7D31840688^0' '-11AB7A41179AC4^-3' '-3EA0162CFD0D56^-5' '3282EF80F72966^-4' '854608A2E6CA5^0' '-2F0111CDDDC3EA^0' '260B3740B3FA42^0' '-D20A9F9632DCD^0' '-151930D83A7904^-3' '31CAF795842B4^-5' '4A97AB7D608138^-4' '8546094EB3416^0' '-2F00C0C52C9A68^0' '260AA51F89B31C^0' '-D20ACBE0E98F5^0' '-18A96A74FAD122^-3' '-5BE6B4A5FF6D2C^-5' '56263AC41E041^-4' '854609CF8C9AB^0' '-2F005E1EC43B58^0' '2609FCD90412B4^0' '-D20B003935D6A8^0' '-22C4A7AEE10A36^-3' '-82E5D27CDA904^-4' '46BC7908A92DCC^-4' '8546160EE017B^0' '-2EFF9CD8BE47A4^0' '2609343135013E^0' '-D20B47DCB87D38^0' '-26BD96E09D9372^-3' '-6C2C918131CF04^-4' '38F1941967CDDA^-4' '85462F8F39C448^0' '-2EFED35A2FA158^0' '26084CD59BA868^0' '-D20B8EA97B8EF^0' '-50BB1A8DBC602C^-3' '-1D3C7B63B61774^-3' '2362C6571F108A^-5' '854682705D3538^0' '-2EFCC35F90B442^0' '2606B47A1AA344^0' '-D20C1A14A92F6^0' '-245B257AACCCDC^-3' '-5AFD16200E1E3C^-4' '4171A18E704688^-4' '8546963C6CEDC^0' '-2EFC0B7EB94384^0' '2605D785627FFC^0' '-D20C5EB313BE2^0' '-1ADF208676F091^-3' '-1BA281F9932FF1^-4' '602BA68924023C^-4' '85469439078888^0' '-2EFB97658CCCAC^0' '26052583C82116^0' '-D20C9A42360578^0' '-104E7A9A6E351A^-3' '2E137C3B0984A2^-4' '517E49BEE6A2CC^-4' '85468E2ED758F^0' '-2EFB6C726F084C^0' '2604A703BA74B^0' '-D20CBEAA4A40E8^0' '-C2DB1F85C02E98^-4' 'E6465323279488^-5' '7187EC50C6D21C^-4' '85467280252958^0' '-2EFB480A5ACCD6^0' '260448E4F63958^0' '-D20CE94781C9C8^0' '-FDA5FADB4E2248^-4' '388BF3BBE8BB0C^-4' '542A470C4E78C^-4' '85466B7442472^0' '-2EFB237753739A^0' '2603CA64E88CF2^0' '-D20D0CD8D67068^0' '-1370DC585D0588^-3' '25D662ED535BF8^-5' '43396E8DAC620C^-4' '85466CA0E8178^0' '-2EFAD878D279B4^0' '2603440238697E^0' '-D20D3547B5764^0' '-1DC0D85EDF79EB^-3' '-34802487008638^-4' '584A451A2FFC04^-4' '85467026D988A^0' '-2EFA4D8E7E328A^0' '2602864223E6E4^0' '-D20D745CC92EB^0' '-5183251353BCBC^-3' '-1B714A9C5FA521^-3' '126EE1F76C6829^-4' '8546BFACFEA638^0' '-2EF8474EF403F4^0' '2600DFCEDD1D52^0' '-D20E024C358DA8^0' '-25C15D94F89F4A^-3' '-5AAAAA42B441F8^-4' '5A6C7EBE91313^-4' '8546CB4085AC28^0' '-2EF78B9244E68E^0' '25FFF7469DF41C^0' '-D20E4EF835B14^0' '-1DAB60943B11C3^-3' '-3C74BA806FCCDC^-4' '3E02ED7AF938AC^-4' '8546D8D7721748^0' '-2EF6FBCA664026^0' '25FF3E8F06EE86^0' '-D20E87D8261C48^0' '-139A66E91A601A^-3' '1BEFBB5A1DC9F9^-4' '51DBE09FBFA8EC^-4' '8546D628403B^0' '-2EF6BBB39FD51C^0' '25FEAF1D0E83A6^0' '-D20EB1F4844BD8^0' '-E6A097F6212F2^-4' '407BF08D999F84^-4' '540AF538D1CF04^-4' '8546CD99D14CE8^0' '-2EF6A05AD3E114^0' '25FE37FEC9F502^0' '-D20ED3019A33F^0' '-10B5EE0FA2C492^-3' '-14C390223EE059^-4' '6E3D7DD2949404^-4' '8546B74982D5E^0' '-2EF65A64D06432^0' '25FDC5931CA7D6^0' '-D20F0556811618^0' '-14EB0D1F614CDA^-3' '257108850FC85E^-4' '674F8BA3260ECC^-4' '8546AE652DAC38^0' '-2EF61A4E09F928^0' '25FD290B112B2^0' '-D20F35A80293^0' '-1B832CD4966F44^-3' '-3D822CE7C75E8C^-4' '400EFF552DDAE8^-4' '8546B7F54F4CF^0' '-2EF5933F8D5EA2^0' '25FC7E963307C^0' '-D20F6CAF80B6A^0' '-22D9FAF204F098^-3' '-8ED4839891B368^-4' '505794FC5A84F4^-4' '8546BF820B8878^0' '-2EF4CD71E34738^0' '25FBB79BE31FF6^0' '-D20FB803E7EC1^0' '-2CE8A222E8BAD8^-3' '-B5604AF5951A28^-4' '302DF0F184226E^-4' '8546E0393B3508^0' '-2EF3CB943D8F2C^0' '25FABB9D7A79C4^0' '-D2100A8F252178^0' '-54A8747EFDBC9C^-3' '-1E77E7D6B1CDB8^-3' '-764F22A5E06A5^-5' '85473B52E75898^0' '-2EF1A26F2B3106^0' '25F90F75E9BC1C^0' '-D21099D62A6E9^0' '-23D9528A4287BA^-3' '-6CE3FA23464188^-4' '372A69697BD5B8^-4' '854751225C765^0' '-2EF0E4842390A8^0' '25F83B6586C27C^0' '-D210DC9C22B5E^0' '-1B2B5523EE05FC^-3' '-42F931F189A4D4^-4' '3FD39F52729026^-4' '854759DBBE823^0' '-2EF05C9EE7614E^0' '25F794A18D2DFC^0' '-D21113A3A0D98^0' '-C5F816C14ADF68^-4' '3DA9E9547B7C9^-4' '66C0F6918A87F4^-4' '85474665950538^0' '-2EF049FF7D7928^0' '25F729ED8F3A1A^0' '-D211375FE89DE^0' '-8409ABC387A288^-4' '3A97DD83230CF6^-4' '8C7DF110F18208^-4' '85471CF5034CB8^0' '-2EF049FF7D7928^0' '25F6D78D452274^0' '-D2115FF9BAC188^0' '-B9F1B31692E5E8^-4' '199EB8AFCED74F^-4' '40012F3939B798^-4' '854715E9206A8^0' '-2EF028F2679108^0' '25F67ECCE49FA8^0' '-D2117C7F2C85F^0' '-166E59763E86AF^-3' '-18D11F212C740F^-4' '5046CFB50A6D3^-4' '85471410AE231^0' '-2EEFC74DB1E494^0' '25F5EAA854F34C^0' '-D211AE533A0EC8^0' '-23047A934CDC66^-3' '-5DCBC7EED92324^-4' '3EC7CC1488DB16^-4' '854726B0180B38^0' '-2EEF139E985C02^0' '25F5176EB18E82^0' '-D211F0C34C1A88^0' '-57545900751C4C^-3' '-1C8D060B3FD3F6^-3' '6DDB728A08526C^-5' '8547821FAA6A5^0' '-2EECECFDC4BC5E^0' '25F3506F2E361E^0' '-D21284111C321^0' '-29B272A7C4C62C^-3' '-71ABE8A18D985C^-4' '3DB17BA79BF954^-4' '85479D78765E58^0' '-2EEC153C7D33DE^0' '25F2569F1E12E6^0' '-D212CFE65CC0C8^0' '-1B3BA0F50CA2F1^-3' '-13101269D7CED4^-4' '6DF4E06CA892C8^-4' '854796ED6CD568^0' '-2EEBA42868D4D6^0' '25F19EBE46A226^0' '-D2130EA58A3DB^0' '-10BCB990B2BA7F^-3' '2F8A987A6536AE^-4' '549A2F2D26459^-4' '85479037702EC^0' '-2EEB7833985DDA^0' '25F11CB84784A4^0' '-D213340F512BC^0' '-A0A5666CD5D0D^-4' '5900C9C24FC004^-4' '5BB621371132E^-4' '85477FF151E75^0' '-2EEB79B62469C2^0' '25F0BB3E84F5F4^0' '-D2134FBE035B58^0' '-E1EAD8E684A49^-4' '54E5444BB4D244^-4' '53B4F0F911F318^-4' '8547788F88C99^0' '-2EEB67ED7A1672^0' '25F040C54213F6^0' '-D2136E71CDA2B8^0' '-13F3029AEF37E4^-3' '-35F50E25D9C338^-5' '4E0F0B446BE484^-4' '8547758A70B1C^0' '-2EEB193E148DAC^0' '25EFB7886CF678^0' '-D2139ABC845538^0' '-1BFEE59BB1DE89^-3' '-25B0EC61361FFA^-4' '5437BBB91E901C^-4' '8547793B5540A8^0' '-2EEA9B69D35858^0' '25EF01D5EE08B2^0' '-D213D549F3E9F^0' '-28D3DA97BEB14A^-3' '-BD51F6D069F328^-4' '5DD83DBBD5FF5C^-4' '8547809D1E5E68^0' '-2EE9AAA90B7C8A^0' '25EE1E811F7A44^0' '-D2142F8CE078A8^0' '-2F4345ED4F1894^-3' '-BA1F307378BD78^-4' '3EADD54D6D77B8^-4' '85479E4F35F33^0' '-2EE89E0E9E5368^0' '25ED12E86503BA^0' '-D21488CE1A54C^0' '-58B9C6983D0118^-3' '-20BE9C63293BDE^-3' '1636BADFC5275^-4' '8547F0848CED1^0' '-2EE6573774607A^0' '25EB52C9D16FCA^0' '-D21527DA648FF8^0' '-2277E7261F832^-3' '-61A59219D382E^-4' '451B02E435F4A8^-4' '8547FF7312465^0' '-2EE5A4B500A846^0' '25EA8396F8D56A^0' '-D2156BA20F89E^0' '-142FE417BED1C9^-3' '-A4EF71552F36B8^-5' '5277C15B4312AC^-4' '8547FA6A94C95^0' '-2EE5527FA9AE64^0' '25E9FA2F309A26^0' '-D21599F02BA198^0' '-3D849F98C7EF1A^-4' '4DC3D5312CEDA4^-4' '8AEB335D95974^-4' '8547CCC84528A8^0' '-2EE56CABCFD21^0' '25E9BFF7A740F8^0' '-D215BB7E1AE308^0' '-5220C5521E6DC8^-4' '5D3452764C06AC^-4' '4BFA03650798DC^-4' '8547BC014D87F^0' '-2EE583271166DA^0' '25E97F0A214118^0' '-D215CCC5EBDD08^0' '-DB447621AD3648^-4' '4B074EF24AE5F8^-4' '6552B4318EC7E4^-4' '8547AC11157C1^0' '-2EE5705CB460F^0' '25E90841C2EDFC^0' '-D215F08233A17^0' '-1AC550E9832649^-3' '-28C50422B4BABA^-4' '48E1A8E8132364^-4' '8547B2712BE738^0' '-2EE4F58D8B436A^0' '25E85C754BDC78^0' '-D2162708D86BC^0' '-2AC5817CFDC566^-3' '-8988E7D53668F^-4' '32888FB602E248^-4' '8547D226A8E138^0' '-2EE40EB2CB43E^0' '25E762D02ED704^0' '-D216735EF253C8^0' '-5BBF0E519FE13C^-3' '-1FC81310C661EA^-3' '3FE5C393BE14BE^-4' '854818C878D528^0' '-2EE1C4AB961B6^0' '25E58702E9138^0' '-D2171F565C831^0' '-2AD792DA9545FA^-3' '-6D57D8E6175988^-4' '420A7EA0D6A95C^-4' '8548344C37E6F8^0' '-2EE0EA3B1CB69A^0' '25E4842390A8DA^0' '-D2176D2F0277^0' '-1C49ED1CDE068F^-3' '-E8544C8F6C6DB8^-5' '4A4A3EAB12499C^-4' '85483E323FC338^0' '-2EE073F397BCCA^0' '25E3C7652ED8DC^0' '-D217A35FC105C8^0' '-B9D1E5031CE458^-4' '39126AA0F2F7C^-4' '4EBD9413913AD4^-4' '8548331F921698^0' '-2EE060D3547B58^0' '25E36514ACB556^0' '-D217C0660C2378^0' '-FCF030859CDF4^-5' '79AA3A35350E2C^-4' '487A71BD944C68^-4' '85481FD45BB76^0' '-2EE093FEFAF25^0' '25E338491CA984^0' '-D217C94A614D2^0' '-886444C2B9648^-4' '3CCD861630ACBA^-4' '6A64788523A02^-4' '854805275C3A68^0' '-2EE0914FC9160A^0' '25E2E6BF9226B4^0' '-D217E980B7A068^0' '-136421DF316D9B^-3' '-5BFB30EC1C3854^-6' '3DD0B83F6B8378^-4' '8548082C745238^0' '-2EE044F9AF2E^0' '25E261DF6E0F28^0' '-D2181097FDB828^0' '-238509B553E3FE^-3' '-73885B771C6DCC^-4' '39627A7F3395C^-4' '85481C2377288^0' '-2EDF85E201BD44^0' '25E1917FEFA468^0' '-D2185434B59448^0' '-5EDC21AAFD7C34^-3' '-23FD1713DD0098^-3' '-A8F01BA35C31A^-5' '854880CD44ECC8^0' '-2EDD0DB7A39AD^0' '25DFB98E818D8A^0' '-D218F6710B0518^0' '-2F73DBB78B8996^-3' '-E3ADB597030A38^-4' '28C276D1E0D592^-4' '8548A4B47FCEF^0' '-2EDBEDA70CF4B^0' '25DEB9894E1CEE^0' '-D2194E04C5B788^0' '-2438D40DFD6B72^-3' '-954AC2C34FD1D^-4' '52AB3CFC327FC8^-4' '8548ACC21563C^0' '-2EDB1FA0DA2AAE^0' '25DDEB0241F9A^0' '-D2199C085EC938^0' '-1338CBB2C6AB42^-3' '158A976FDFB12A^-4' '255CC8AF66E154^-4' '8548BB2FC163B8^0' '-2EDADB2D62B9B4^0' '25DD63C8D24156^0' '-D219BA9135F2D8^0' '-9CD940A8B78AB^-4' 'A0456DE857A4F^-5' '55DE71517B0FD8^-4' '8548A70DCB6FA8^0' '-2EDABCCF7EADDA^0' '25DD18F5446534^0' '-D219DB9E4BDAF8^0' '-8A8C0F584DDF18^-4' '73D2ED26CEB85C^-4' '533D36CE5427E8^-4' '85489A22AB7B98^0' '-2EDACE6D35E366^0' '25DCBA55A6D08E^0' '-D219F0ECE79F6^0' '-FB9CA9D0F54BB8^-4' '2D36138CEB7F96^-4' '5C8579C666643^-4' '85488E8F2475A8^0' '-2EDAA6543D191^0' '25DC3EDAB13BF8^0' '-D21A1783545DD^0' '-1987924C40AE36^-3' '-D1FAEC19E1A008^-5' '4F45E648FD0A18^-4' '8548926AFC225^0' '-2EDA3C76FEBA04^0' '25DB93642065FC^0' '-D21A4B85BA69A^0' '-277DA077098BA6^-3' '-9DB736F9AE34B^-4' '3937CE0441E2A^-4' '8548A91130D4E^0' '-2ED95B7B7BCC54^0' '25DAB3EB298432^0' '-D21A9785EE162^0' '-2F6733BEEAC308^-3' '-C47CE1595B42^-4' '34E6DC767919DA^-4' '8548CA4939DAC^0' '-2ED84957B7CCE^0' '25D9AB01A0E9F^0' '-D21AEF6F8F0418^0' '-5AB636F6CB6F04^-3' '-1D6F68747A191D^-3' '22378602B32F84^-4' '85491E2C0FFE5^0' '-2ED610C346BC28^0' '25D7CEDE74EAE4^0' '-D21B8EA6CC5D1^0' '-1FAC85A0F0B523^-3' '-58B234E677715^-4' '843689ED43D6B^-4' '85490FBE63FE58^0' '-2ED57237D5DA3C^0' '25D709E78A684E^0' '-D21BDEADCAD3F8^0' '-CF1E019792A62^-4' '5B7BB129C46BBC^-4' '6786DB4318D1C4^-4' '8548FEF76C5DA^0' '-2ED5697E73CE58^0' '25D693A0056E7E^0' '-D21C0091A050F^0' '-14FDF7FA639728^-5' '8D64FD9A2282D^-4' '5FF8997A418744^-4' '8548E21C145DB^0' '-2ED5AA4106B074^0' '25D6657CDC748A^0' '-D21C0CA600B028^0' '-125C6BA65E7DAE^-4' '7A1C6DB4D1A214^-4' '415A69B711D4C8^-4' '8548D200E93408^0' '-2ED5DC6AFA74D^0' '25D63830730F6C^0' '-D21C13DCD6B028^0' '-DF928572B55DC8^-4' '2CCBA1829628AE^-4' '573BA830E590B^-4' '8548C5EC88D4D^0' '-2ED5BB07FE512A^0' '25D5C8C9DDDA1^0' '-D21C36ED51FD78^0' '-1F6632405EB159^-3' '-763242F53C9B3^-4' '608BFC52293418^-4' '8548C3933D341^0' '-2ED50EE5A1041C^0' '25D51093202DC8^0' '-D21C801360AFF^0' '-2EEB512599D7FA^-3' '-D3CE5D2102459^-4' '1FC7B65223414A^-4' '8548EB8142E0A8^0' '-2ED3F6E29FF2D^0' '25D410B8DFDAF2^0' '-D21CD31F773EA8^0' '-623AC11DEAC568^-3' '-2622C409A6C8BE^-3' '-23F0E281FF8AB8^-4' '85495CEB3D7B38^0' '-2ED160B044000A^0' '25D22DDFB73536^0' '-D21D75B1B2EAF8^0' '-2CF80BC4741CE8^-3' '-DC670348FB81B8^-4' 'ECB722027DE35^-5' '8549885F3498E^0' '-2ED04C08414214^0' '25D13EA17B6552^0' '-D21DC2DE8C67D8^0' '-1DB5718034E5AC^-3' '-65DA8B33A27A54^-4' '37D6253AEA5AE4^-4' '8549957547AAB8^0' '-2ECFAAA2AB662^0' '25D090FC920C5C^0' '-D21DFDECD555E^0' '-9794A328BCEB98^-4' '2C1CDE87477E86^-4' '4720F77325F4F^-4' '85498960E74B8^0' '-2ECF9A87803C7C^0' '25D040CAA077B^0' '-D21E1798222038^0' '-F83E36B6F0C228^-5' '566B8E0BD4A844^-4' '7E8406757E9AEC^-4' '85495D4123B6C^0' '-2ECFC34C457DE4^0' '25D0185BC171D^0' '-D21E31C44843E8^0' '-30F35B2C5144F2^-4' '7B86B5BB504^-4' '5CC634DCA53238^-4' '854944C27CBCC^0' '-2ECFF017D589B4^0' '25CFDB9FF95A1E^0' '-D21E423559A91^0' '-138984BFBDFB8F^-3' 'FB7409CE0F8C18^-5' '57E59315A80CE^-4' '85493E62665198^0' '-2ECFABA45E18BA^0' '25CF4F3319070E^0' '-D21E6EAB03796^0' '-22A35A0AE70AF4^-3' '-68EB3A7DBCC75^-4' '40AA9242A3F05^-4' '85494ED377B6C8^0' '-2ECEF51B1F961E^0' '25CE812CE63D0C^0' '-D21EB21CC837C^0' '-31068A0F171172^-3' '-C22CEC07AC4A7^-4' '3B8ECC7785A4F4^-4' '85496FB59A812^0' '-2ECDDD98F7DE1E^0' '25CD6C59F06152^0' '-D21F0D36745B48^0' '-32B8A2742B0316^-3' '-D235FFB7F76108^-4' '670313E880502C^-4' '85498026ABE65^0' '-2ECCBBAFEEF08E^0' '25CC4C9F3FF6BC^0' '-D21F773EA5D818^0' '-56015FCE6D2BEC^-3' '-1A930588CCFB97^-3' '1E6A00BF028461^-4' '8549D2061CA4A8^0' '-2ECAA9311144F6^0' '25CA83C74A56E6^0' '-D2200B8E28A238^0' '-1E0E0A52322E99^-3' '-277F54A038BAE8^-4' '3AAA1F8E7A3EEC^-4' '8549E2F807632^0' '-2ECA201F2F453C^0' '25C9C35803F808^0' '-D22041E9DA4EC^0' '-3E9E645F17703^-4' '7203727F0286E^-4' '547412ACFA17D^-4' '8549CE802B3388^0' '-2ECA44DD29BC3C^0' '25C98442F03F98^0' '-D220522FF89628^0' '5B8FC1D8A075D4^-4' 'C2CB02B4A0FB4^-4' '4E5C3827FF3C94^-4' '8549B454050FE^0' '-2ECAB26B4CAA28^0' '25C96FF6072DC6^0' '-D2204DFE3AADF8^0' '92E31D50263C^-5' '8ADBA08B6835F^-4' '4B3C719B72D84^-4' '85499EDA762DB^0' '-2ECAF358D2AA06^0' '25C948B3CDF846^0' '-D22054335DFB6^0' '-FE8D2DA3C83D88^-4' '19B67833371E48^-4' '44927ADE99C15^-4' '85499BD55E15E^0' '-2ECAC0AE058C5C^0' '25C8D34308934C^0' '-D220766D19B3D8^0' '-24893235ED31BE^-3' '-82049B0197A9F^-4' '2D90750D26D716^-4' '8549B4FFD186F^0' '-2EC9F683AA6EFE^0' '25C8010B17E11E^0' '-D220B95E0518F^0' '-3662B2FA38D234^-3' '-F82BCAFA363EE^-4' '3085E614FBD424^-4' '8549DE457021A8^0' '-2EC8B1B51951E^0' '25C6D8162C1156^0' '-D2211CDB2D0CD^0' '-65C5688A9757F4^-3' '-28BA74AD5B602A^-3' '1D177D028128E4^-4' '854A3705D0A47^0' '-2EC6007FD7A69A^0' '25C4E2C88CA138^0' '-D221D81702D0E8^0' '-31771A2C69CFB6^-3' '-DC152014D8C9A8^-4' '2EA132569B95C4^-4' '854A5BEEBE3938^0' '-2EC4DB91B6A13C^0' '25C3D2FE144282^0' '-D22232AFD59B28^0' '-1C13B4EEB58BCB^-3' '-47CF54D1F00A4^-4' '381A00D282F978^-4' '854A68AEEB0F8^0' '-2EC44D4C6406BA^0' '25C328334FE398^0' '-D222690B8747B^0' '-51464B74058004^-4' '6ABA85592316BC^-4' '64320C6B259868^-4' '854A4ED8AB276^0' '-2EC46B5461D70A^0' '25C2E1E7662B2E^0' '-D2227F5BD5BEB8^0' '39756536F24A18^-4' 'A2AAC3E3BC542^-4' '5F9BCACF14AAC^-4' '854A2E4C6E989^0' '-2EC4C414C259D8^0' '25C2C663A7195E^0' '-D22285101FB2D^0' '-3669C4F1C56D9A^-4' '7BCB009F65597^-4' '90B5BFB76CEFA^-4' '854A010005337^0' '-2EC4F36491242A^0' '25C2829BFC1F76^0' '-D222A36E03BEA8^0' '-1245EE6B1CFCC1^-3' '32534E5C553518^-4' '62CB1D5513735C^-4' '8549F6EF0A3968^0' '-2EC4C33E02C502^0' '25C1F4819CA2B8^0' '-D222CE362E654^0' '-2870773EF54AB^-3' '-699A0935F7D798^-4' '4986BB9595A518^-4' '854A0C12B2E01^0' '-2EC3F4E1E9BF76^0' '25C0FFBA09FC84^0' '-D2231AB73B6B1^0' '-36C4F8E414CC76^-3' '-DD82BDF89C682^-4' '2849FBC2DDE442^-4' '854A3B378E8CA^0' '-2EC2B8CCBAAE3C^0' '25BFCE0BBC20D8^0' '-D2237A02A576C8^0' '-365B87A85DFDC2^-3' '-F50060E23828E^-4' '36504D4CE8E0B8^-4' '854A624ED4A46^0' '-2EC175D69BD88E^0' '25BEA3EA2A80B2^0' '-D223DEAC733B08^0' '-5699942595F8C8^-3' '-1E1181BD77D06A^-3' '-233962BD0754A8^-5' '854ABE3F405CC^0' '-2EBF477E18DFA^0' '25BCE8A9214C^0' '-D2247021D10B2^0' '-1C034ED1DD4ACA^-3' '-25073EAF9DB7CA^-4' '5472511A9377FC^-4' '854AC1C531CDD8^0' '-2EBEC9D4CAC81^0' '25BC32A0BC22B^0' '-D224AA844D821^0' '-E61C96ECFE497^-5' '9434F7638B5808^-4' '9A1F9170996ED8^-4' '854A8EC47E74A8^0' '-2EBF0E4842390A^0' '25BBF8134C8DF8^0' '-D224C632FFB1A8^0' 'B78F4DDD0BD1A8^-4' 'CA5DCFCD9F51D8^-4' '5FB6FAD8A96B98^-4' '854A65A9D2F7B8^0' '-2EBF9830E3CD9A^0' '25BC06001F34A4^0' '-D224BF271CCF7^0' '2D8233044DDE38^-4' 'A000444B02089^-4' '5671B05A4D897C^-4' '854A49D02DAA6^0' '-2EBFEC13B9F128^0' '25BBE72161CF7E^0' '-D224C3AEC0F328^0' '-FF2B8D920E5F18^-4' '12C62AB204364D^-4' '48D62FE302EBF8^-4' '854A449CBD0F98^0' '-2EBFB6B9BAF738^0' '25BB72DD423AE2^0' '-D224E7C0EEF31^0' '-54F26F7E454DB8^-3' '-2079D8A55BB2F2^-3' '2E3AC8ED25E482^-4' '854A8762B556E8^0' '-2EBD8302D445BC^0' '25B9C80D4A6B5E^0' '-D225874E128798^0' '-3712791182A14C^-3' '-106CE76F9631B7^-3' '26FBB4AC4A792^-4' '854AB4842B9E4^0' '-2EBC34A42187E6^0' '25B89F4351B95C^0' '-D225EA75543FF^0' '-33026481CDFDEA^-3' '-F0F06BE0403758^-4' '26C396A0E3F2B6^-4' '854ADD48F0DFA8^0' '-2EBB001BAEB23^0' '25B78B720E903C^0' '-D2264690B31618^0' '-292C2EA21885C6^-3' '-9BCAB2ED35B398^-4' 1024 '2E3D772EAAAC16^-4' '854AFAFB08747^0' '-2EBA181448E248^0' '25B6A167435B1E^0' '-D226916440F238^0' '-1A6B0540A2887F^-3' '-152716BE81DCDA^-4' '4CAE53DAEEBF78^-4' '854B00845F4AC^0' '-2EB9A70034834^0' '25B5F26AC11406^0' '-D226C66859B0A^0' '-AB819ED156B1E8^-4' '307FA103F91DA8^-4' '79B31CECDCCD8^-4' '854AE1D095036^0' '-2EB9973AEF9524^0' '25B5944BFCD8AE^0' '-D226EE565F5D3^0' '-6029844802F678^-4' '67BE6ECE2D8EBC^-4' '5087712A867BE8^-4' '854AD134908068^0' '-2EB9AEB7E3DC88^0' '25B54A7A21AF28^0' '-D22700F5C94558^0' '-8B3FD34A7D3828^-4' '67E17C2FC7DCA^-4' '548AFE4ABD86A^-4' '854AC2C6E4807^0' '-2EB9BB4D1D9512^0' '25B4EE89B5F6C8^0' '-D227179BFDF7E8^0' '-18C36D9E8BF^-3' 'BEBAE22B13FDD^-5' '4A0D6C32A4337C^-4' '854AC97CE1272^0' '-2EB95E85F247DC^0' '25B44211726E32^0' '-D2274716BFE^0' '-283B80DEA45FDA^-3' '-6A995D24388E74^-4' '4A8035F98380DC^-4' '854ADDC9CA38F^0' '-2EB890AAB29B9E^0' '25B34ECC6BD3E4^0' '-D2279397CCE5D^0' '-31E7935FF742CC^-3' '-B70A5A7F7C053^-4' '417B95325E6268^-4' '854AFE5606C7C8^0' '-2EB77A8023D1C2^0' '25B230BF3A92F8^0' '-D227F03405154^0' '-2D61DC524F8B46^-3' '-BCDE45C236EC6^-4' '3D83C89230DF0C^-4' '854B1958EC8048^0' '-2EB67470C03188^0' '25B1323C932E46^0' '-D22846C60D151^0' '-4EC79D687EF5B^-3' '-180A283D9E2C2^-3' '31D715E312DCA4^-4' '854B5B9E0B6E48^0' '-2EB4921870E51A^0' '25AF8C7518DBC4^0' '-D228D3B3C6C17^0' '-18C6946F9480E3^-3' '-CD4D20ED560008^-6' '5708391137752^-4' '854B5BF3F1A9D^0' '-2EB430F49491F2^0' '25AEE2003AB862^0' '-D229078B39AF78^0' '-3919B10F0F3F94^-4' '71191CA805AC34^-4' '860A74E46DA3C8^-4' '854B32835FF158^0' '-2EB45A65264A6C^0' '25AEA0E7C19AC^0' '-D229246691AF68^0' '3F3270E48B3C1C^-4' 'A0480CCF795848^-4' '4B09E4C9295874^-4' '854B19AED2BBD^0' '-2EB4B223D41A9E^0' '25AE8A418CE83^0' '-D229249184CD3^0' '-45237F579D7F18^-4' '7AEBAE071632E4^-4' '5C4340A1E66968^-4' '854B0333912708^0' '-2EB4D9660D502^0' '25AE45782F3BAC^0' '-D2293685223E4^0' '-1767E70E7D6332^-3' '-1C0D939157F576^-4' '517A5DCFA9BB8^-4' '854B01DBF838E^0' '-2EB47262F3EB1E^0' '25ADAB9F559B3E^0' '-D22969DBBBD3^0' '-53EB0C130AC57C^-3' '-1E0866EE647184^-3' 'E03CF0B63AEFB8^-5' '854B533A8F9DF^0' '-2EB2509FAAAAB8^0' '25AC004E84726C^0' '-D229FC27D937E8^0' '-3226822B72B7BC^-3' '-F0DDF359D6B49^-4' '43392C051B4368^-4' '854B6F1434EB48^0' '-2EB121CB81C918^0' '25AAEF8259611A^0' '-D22A5EA34E7938^0' '-2E689EBD4E1B9^-3' '-C7F16FF21F0C8^-4' '27A9D605E0F888^-4' '854B93D22F624^0' '-2EB011553CF35^0' '25A9EF273FB4F6^0' '-D22AB1DA5825B^0' '-1FA0796369D24D^-3' '-5A446C53BBB6DC^-4' '2DEA37B8896156^-4' '854BA874FEAFA^0' '-2EAF6BE8DC4CF2^0' '25A932BEC4208^0' '-D22AEB3B21EA08^0' '-14C2F9D2EF70C5^-3' '-7DE25647724B3^-5' '3F561143525CD4^-4' '854BAC25E33E8^0' '-2EAF16D9605906^0' '25A8A6A7CA08F8^0' '-D22B14D6A6C048^0' '-B62C4D34A2E8E^-4' '45FB053BDD20B4^-4' '57BF33A7E403D8^-4' '854B9DE32A5C48^0' '-2EAF0A9A0CDC06^0' '25A841A816092C^0' '-D22B32B3B172D8^0' '-93DAF0116FBB08^-4' '26BB732284DE6E^-4' '65A22757B30DE8^-4' '854B848DC3CD78^0' '-2EAEFB809464FC^0' '25A7F1A1179242^0' '-D22B549786EFC8^0' '-F858D887F78C08^-4' '251615E1FACD38^-4' '5F34CD2F2775FC^-4' '854B76CBE4449^0' '-2EAED10E4FF9E8^0' '25A779562D333E^0' '-D22B7C2FA660D^0' '-1E83EC0B6B5D45^-3' '-2050B6D87171EE^-4' '4CA1A79F972674^-4' '854B8188ABB5A8^0' '-2EAE4A55B99AEC^0' '25A6B25BDD4B76^0' '-D22BB712FC311^0' '-29B7690423723^-3' '-97676648BE7438^-4' '3E2F55B5D8DB3E^-4' '854B99B16C742^0' '-2EAD62FA204214^0' '25A5C21BEEC8F6^0' '-D22C061847F56^0' '-2FE31876541BB^-3' '-BBD0D9E57A062^-4' '3A5A1ADABC4072^-4' '854BB9BCCFA9A^0' '-2EAC52AECE8A12^0' '25A4B32835FF16^0' '-D22C5EADB55A68^0' '-2AFBE0380B7858^-3' '-95898FE77C3E1^-4' '4FDE9B1C754E0C^-4' '854BCCB21FCD5^0' '-2EAB682329FBA6^0' '25A3B881664706^0' '-D22CB3BD314E58^0' '-485DCA0B98703C^-3' '-169EFC85EE5F5D^-3' '32E2B1CB63C73A^-4' '854C06BEB608B8^0' '-2EA9A9DD08AF26^0' '25A236CC19F472^0' '-D22D371AC959F8^0' '-132A47F46A234D^-3' '1D241F42888C1F^-4' '5CC94A1372A164^-4' '854BFEB12073E8^0' '-2EA96CCB5A5BEC^0' '25A1A8DCAD957A^0' '-D22D630F99D0F8^0' '-20E5037B5E3AE4^-4' '9CE2E852C49008^-4' '725CAD2C9D99B4^-4' '854BDE4FD702D8^0' '-2EA9AD0D13E4BA^0' '25A1681A1AB36^0' '-D22D7503374208^0' '-17574B22AF229D^-4' 'AB586FBF90648^-4' '68EF5CB1348E9^-4' '854BC1F5585C38^0' '-2EA9F5067CC6D^0' '25A128593A83E^0' '-D22D826F308F68^0' '-3474560AEF7DF6^-3' '-11B57466DBFABE^-3' '461DDA84B8F0A8^-4' '854BDCCD4AF6F8^0' '-2EA8AB5A614A72^0' '25A013305E6C9C^0' '-D22DEC217BD0B^0' '-18DAF1EAD6E448^-3' '-28B5CF9D011E92^-4' '3CFC4E7A020E52^-4' '854BE505D3A988^0' '-2EA837971B0F26^0' '259F74FAD3C63C^0' '-D22E1CF3D6A6E8^0' '-204F6B161462DA^-3' '-68AD42408FF48^-4' '39F4F22D55002E^-4' '854BF4A02579E^0' '-2EA78A4817F1BA^0' '259EB6B9E5EA56^0' '-D22E5B8811061^0' '-2B5F1B24E58EB6^-3' '-AA9B31E3EB348^-4' '2BE3465453EFD4^-4' '854C1557552678^0' '-2EA692D1536F3E^0' '259DC248397FA8^0' '-D22EA98BAA17C^0' '-2B39DF8BC59934^-3' '-95CDA3DD872B08^-4' '33F2E7E5099C08^-4' '854C340B1F6DD8^0' '-2EA5A515A3AB4^0' '259CC8A31C7A34^0' '-D22EF78F432978^0' '-286FA64C459AB4^-3' '-A293E839288DC8^-4' '21A22B71BFFDAA^-4' '854C55432873C^0' '-2EA4BC62716446^0' '259BE650009E6^0' '-D22F3EB1EC76B8^0' '-1CC7B75EE0AFC7^-3' '-3799392BA1F288^-4' '6F4F81128B672C^-4' '854C4D6085FCB^0' '-2EA435D4CE230E^0' '259B2D986998CA^0' '-D22F82799770A^0' '-163F3A3954DA26^-3' '2739FBC0C36192^-5' '553733EBBBD48C^-4' '854C4B073A5BF^0' '-2EA3E06F6BF39A^0' '259A9313C3814A^0' '-D22FB2A025CFC8^0' '-125A56E862C985^-3' '170B598E276212^-4' '4760BDEFB6AC78^-4' '854C4A307AC718^0' '-2EA3A2B1F1294E^0' '259A0E08AC4BF8^0' '-D22FD8B5B934E8^0' '-11829950C8A45^-3' '20F946CADB00CC^-4' '550BC313BE037C^-4' '854C432497E4E^0' '-2EA36D82E54D22^0' '25998AAB144054^0' '-D230004DD8A5F^0' '-1701BC4C194AA8^-3' '-897F2FC133072^-5' '5996CC8711EB58^-4' '854C3F48C0384^0' '-2EA310BBB9FFEC^0' '2598EDA22F6A5^0' '-D23033797F1CE8^0' '-20633D86CB176^-3' '-5944212CDF8E^-4' '714B35B28F279^-4' '854C3969832668^0' '-2EA26D7DB1DC86^0' '259825D11FEDB2^0' '-D2307F23CC8DE^0' '-2402304649B47^-3' '-5B79940F91CEB8^-4' '486F9743C7106^-4' '854C4984AE5008^0' '-2EA1B74A599572^0' '25974A89E6F416^0' '-D230C4C3E9CF4^0' '-2646B93A2B7068^-3' '-6BA151C31357B8^-4' '51CA3F9DD690DC^-4' '854C57C767324^0' '-2EA0F1A7A29BCC^0' '259663AF26F48C^0' '-D23110C41D7BB8^0' '-52B7878B0FDB34^-3' '-191C52B2A4D228^-3' '26A06C8CD490A8^-4' '854CA2F0DB49E8^0' '-2E9EF6FB9F7322^0' '2594A96FD07274^0' '-D231A08BFC2228^0' '-19FA783AAA2AB6^-3' '-28408CC5F3DE1A^-4' '4A59E45F3AA0A4^-4' '854CA74D8C4FD8^0' '-2E9E7FB267C6B8^0' '25940280E3C02E^0' '-D231D610EE39D8^0' '-B37211150A6C8^-4' '5ED2CCDDEF1598^-4' '59F35B79ED6AA4^-4' '854C99B69FE4B8^0' '-2E9E7E85C1F65A^0' '259397F7D8EA12^0' '-D231F21586A4F8^0' '-50446BE144DE^-4' '54A30DFBC18598^-4' '6EE97BFAE9D2C8^-4' '854C79AB3CAF3^0' '-2E9E94802A31D8^0' '259356DF5FCC6E^0' '-D2320D186C5D78^0' '-32B2AE8C502EB8^-3' '-103CD07AF01B1E^-3' '183CCAFA5CF63C^-4' '854CA676CCBB08^0' '-2E9D586AFB209E^0' '25924B46A555E6^0' '-D2326684995758^0' '-14D72E1D460952^-3' '-3930F0FDAE1E42^-4' '353B7D173C63DA^-4' '854CAAD37DC0F8^0' '-2E9CEE0CE36844^0' '2591CC70B16DF6^0' '-D23292238392C8^0' '-1AF54E66410BD^-3' '-3DE8FF929688EC^-4' '3FB6BA15C56CAA^-4' '854CB361ECAF18^0' '-2E9C6901CC32F4^0' '259125ACB7D976^0' '-D232C7FE5BE608^0' '-22ADC42FB0BC5^-3' '-9D187D76732788^-4' '2C5B546DA8E7CA^-4' '854CC82FAF1A38^0' '-2E9B9B517FA47A^0' '259066BFFD867E^0' '-D2330A99610F9^0' '-2690EED9C3381A^-3' '-7CE934E66B9A38^-4' '352B12C68EE72^-4' '854CE15A228B48^0' '-2E9ACB47E77544^0' '258F8518AE21BC^0' '-D23351103DE5C^0' '-2AF3B1F527C624^-3' '-AC86DB74F1F1A^-4' '3AE3B6EA8AFE7C^-4' '854CFB056F55A^0' '-2E99D5D48857FE^0' '258E927F73FE8^0' '-D233A26ED54AC8^0' '-2378C8985800D2^-3' '-63AF4BA664D168^-4' '3CBE13EF474924^-4' '854D0E7B98D2A^0' '-2E991D9DCAABB6^0' '258DBDEE37AB92^0' '-D233E509DA7458^0' '-19693CF0CE6F8B^-3' '-34F7A607C6F1EC^-4' '78462ED50AA988^-4' '854CFE357A8B38^0' '-2E98A6D56C5898^0' '258D19D96FF358^0' '-D23426F91326D^0' '-16266853CC5549^-3' '340101A4C182A^-5' '5266AE6FFA3ECC^-4' '854CFCDDE19D1^0' '-2E9851F0E3827^0' '258C80009652E8^0' '-D234561DEED36^0' '-1253A72BFCBFB2^-3' '223876AAF5C178^-4' '5562465DCBBBAC^-4' '854CF6FEA48B38^0' '-2E9819E7B2AC3A^0' '258BF6EEB4532E^0' '-D2347EB7C0F7^0' '-16CAED54921F6B^-3' '3DFD8FB5C85504^-5' '4C95E085C1ABCC^-4' '854CF90209F07^0' '-2E97C22904DC08^0' '258B593A03061A^0' '-D234AD05DD0EB8^0' '-19E4AA848CC2DC^-3' '-16D355BBEC11AF^-4' '5416981E59BBD^-4' '854CFA8495FC58^0' '-2E97531855E234^0' '258AAD6D8BF496^0' '-D234E3618EBB48^0' '-491CDEAFE15558^-3' '-1704E75EDEA372^-3' '4F21638A210DAC^-4' '854D297E7E8B2^0' '-2E9591215006D4^0' '258925D9029028^0' '-D2356F4D95B508^0' '-1F57B90D9C0F84^-3' '-2FC351BC35298^-4' '498C14836DE564^-4' '854D3567EBCC98^0' '-2E950057BEADD^0' '25885DB20CD8^0' '-D235AB8884737^0' '-19B7BA4EC4E2^-3' '-14E3256E5D3EAF^-4' '4176B1D27F798^-4' '854D3E773414^0' '-2E94917202D1C2^0' '2587B43EE16738^0' '-D235DCB0C5853^0' '-15950AE909D51E^-3' 'E8F504E23530D^-5' '4C32F46405D1A4^-4' '854D3FA3D9E46^0' '-2E944318838484^0' '25871BBDA0B4EC^0' '-D236087AA2DE68^0' '-11C0DCECF9200A^-3' '198384A41508A^-4' '4101DDC4D74784^-4' '854D40A58C97^0' '-2E94086020D208^0' '25869A8E612C4^0' '-D2362BE104674^0' '-160FFDC941F568^-3' '-23D6FCCD65B568^-4' '314DC4F18C521A^-4' '854D49DFC7FC3^0' '-2E93A15D076D06^0' '25860E776714B8^0' '-D23655D26F7908^0' '-43067EBD070FF4^-3' '-1A481B987234F^-3' '79B9023E61C104^-5' '854D8975B50DE8^0' '-2E91DE0E68A382^0' '2584C2F2D950EA^0' '-D236CC9ACDCC28^0' '-21932806CB3152^-3' '-5288C450C477E4^-4' '4CA919F7E1222C^-4' '854D94DE48F61^0' '-2E9135F2D620DE^0' '2583F4ECA686E8^0' '-D2370F8BB93138^0' '-17EEF27895D42^-3' '-61B6A89404A35^-4' '55B7B04231262^-4' '854D8D518CBA9^0' '-2E90B066E5924^0' '2583695685C8AC^0' '-D2374AC4F53D^0' '-192B42CD4CCAF2^-3' '-226F49753E7E76^-4' '49B0768E792AF^-4' '854D912D64673^0' '-2E903ED1F7D9EC^0' '2582C64370C30C^0' '-D2377E9C682B1^0' '-19798E935A205B^-3' '-2C6E1A539066DA^-4' '4328DC084A9F8C^-4' '854D976287B498^0' '-2E8FC75DCD0FBE^0' '2582245D018DCA^0' '-D237B1F301BFC8^0' '-1CA11B3F24B9E2^-3' '-179D8BE6A98365^-4' '5416AF2F48D174^-4' '854D9CC0EB6D2^0' '-2E8F4C8EA3F238^0' '258166C7E028F6^0' '-D237EB7EBEA1E8^0' '-1C1C6FDC089541^-3' '-22F3C0C07AC454^-4' '457D6264586F88^-4' '854DA6A6F3496^0' '-2E8ECE39896396^0' '2580B0EA6E1D6A^0' '-D23821DA704E7^0' '-1C6DDA583A7BA6^-3' '-24A2E1632E0B3A^-4' '4AD86192AB52A^-4' '854DAE8995C07^0' '-2E8E4E36EFAB4A^0' '257FF8DEA38EE6^0' '-D23859E3A124A8^0' '-20C34B60BAC1E4^-3' '-4E548865C64B3C^-4' '6C321B919E852^-4' '854DAC055701F^0' '-2E8DAD7D264666^0' '257F2C3009B308^0' '-D238A38A893068^0' '-209888990D978^-3' '-4682814BB6CA^-4' '3B3E7794F0CA92^-4' '854DBDF8F47308^0' '-2E8D0D19431D0C^0' '257E6307614844^0' '-D238DF9A84D108^0' '-1F04B08C355D3C^-3' '-2E351F0BE3C0AC^-4' '4C02E68F4BBDEC^-4' '854DC88AC8C658^0' '-2E8C7E7E0A47^0' '257D9C62F79C04^0' '-D2391C0066AD3^0' '-1D79B965D83D1F^-3' '-24E75DB01B0748^-4' '40B0AB04FF55C4^-4' '854DD621B53178^0' '-2E8BF947FFF3EC^0' '257CDE77EFFBA6^0' '-D23952B1FE9548^0' '-421A25E879ADF8^-3' '-13040B74F25748^-3' '247C32CA3B4DF4^-4' '854E11050B01B8^0' '-2E8A6BA9465FE^0' '257B781B6F9D1C^0' '-D239C5489F0038^0' '-170BB51264355A^-3' '-16D0B18E1483A3^-4' '4689F83A3E681C^-4' '854E140A231988^0' '-2E8A078051F4EA^0' '257AE045FB61E^0' '-D239F4EE54061^0' '-10B6BEBF8804FB^-3' '26434338F2A11C^-4' '7D4F9B1B96C2E4^-4' '854DFB8B7C1F88^0' '-2E89DAB4C1E91A^0' '257A5D135674^0' '-D23A256AC8A0C^0' '-E1151B94A7994^-4' '7A45C203FAEC4^-5' '360F7A4374E5C2^-4' '854DFA5ED64F3^0' '-2E89A733353698^0' '2579F9C1219DE^0' '-D23A4347D3535^0' '-398FB119482A8^-3' '-14DBE0CA143799^-3' '92BF226A1F0318^-5' '854E31E72DCC18^0' '-2E882F0E0A84BE^0' '2578D5A9C02D58^0' '-D23AA770C7BE48^0' '-1B4670793E3EDA^-3' '-55CBBE38701708^-4' '378BC601AE9ADC^-4' '854E3C79021F68^0' '-2E879E44792BBA^0' '257833C350F816^0' '-D23ADDA1864D08^0' '-1D7857286BA38B^-3' '-65F49609B4517^-4' '2E86DB2A166FEA^-4' '854E4CBF2066D^0' '-2E86FD09D66D8A^0' '25778877B33FDE^0' '-D23B157FC4058^0' '-1D6A3493727B98^-3' '-602E7E1FF02A7^-4' '36633B9F95D34E^-4' '854E5A2B19B43^0' '-2E865EFF3EE4EE^0' '2576DB53A34036^0' '-D23B4EE08DC9D8^0' '-1FE22375632F72^-3' '-4C8AFC1D2DCF0C^-4' '7C0E6FEAEE5E7C^-4' '854E4FEF2B9C68^0' '-2E85C3CECC565A^0' '25761280E110FC^0' '-D23B9B619ACFA8^0' '-1FA6014B175D8D^-3' '-534A8CB3F8057C^-4' '3CF71A6085CDE6^-4' '854E5EDDB0F5A8^0' '-2E85223E435CA2^0' '257552BD67292E^0' '-D23BD7F26FC99^0' '-1F03019426EF3D^-3' '-33166801CBDAE6^-4' '54D6172207A4C8^-4' '854E6568BA7E98^0' '-2E84924B719874^0' '25748C99D6D63C^0' '-D23C17078382^0' '-1BFA7B3F4B1A9C^-3' '-2E51671C02F33A^-4' '40D430F8ECE4E4^-4' '854E6FFA8ED1E8^0' '-2E840F6EB2E61C^0' '2573DAEE22B2DE^0' '-D23C4CB768B778^0' '-1B9822C75F7707^-3' '-3944F7EF668E4C^-4' '43222C2659EFE4^-4' '854E785E0AA248^0' '-2E8389E2C2577E^0' '25732E75DF2A48^0' '-D23C83BEE6DB18^0' '-1A6030E6688B8B^-3' '-3D1045C20D0B3^-5' '5E6D7D67DCE9A4^-4' '854E77B23E2B3^0' '-2E83215D1CE696^0' '2572799A1FD156^0' '-D23CBB9D249388^0' '-1C2DF9F674EB24^-3' '-137F6BB9FFF8BC^-4' '4CF0A95D8C5918^-4' '854E7F94E0A24^0' '-2E82A9930BE0DE^0' '2571BE893D2B04^0' '-D23CF24EBC7B98^0' '-1C83BA6E7A09F^-3' '-302485A6CEAD2^-4' '3B47347F718D8C^-4' '854E8D2BCD0D68^0' '-2E82235B4EDB3^0' '25710A594A4924^0' '-D23D277DC857C8^0' '-1C818756EFFA9F^-3' '-29029A06B4116E^-4' '5782FF961E606C^-4' '854E8FB00BCBE8^0' '-2E81A22C0F5284^0' '257051CCA66154^0' '-D23D6362D0DAA^0' '-1D09C5CABCC763^-3' '-6C95DCE4974D4^-4' '5B3BF93EFAC738^-4' '854E8C8000965^0' '-2E81034AB8351^0' '256FA701E2026A^0' '-D23DA6FF88B6C8^0' '-4A28E38265168^-3' '-17527608367C78^-3' '1F6516BDB80458^-4' '854ED01CB87278^0' '-2E7F376DAA7D6C^0' '256E1E15BFAFD8^0' '-D23E27D8E203E8^0' '-192211B88DDF78^-3' '-29337040086A0E^-4' '34DB00B591D71E^-4' '854EDBDB329628^0' '-2E7EC1A6FEDCEA^0' '256D7EDE8256DC^0' '-D23E56A7D774F^0' '-12AEE1026AA6BB^-3' '20AD9D6F18BEF8^-4' '64E5957B843B3C^-4' '854ECFF1C554B^0' '-2E7E889C1B541A^0' '256CF271A203CC^0' '-D23E83C94DBC48^0' '-FB2EF8CB261C5^-4' '2F076296BC0E3E^-4' '4897AF2565584^-4' '854ECC6BD3E398^0' '-2E7E5FD75612B2^0' '256C7879387B1C^0' '-D23EA4D663A468^0' '-36297A35773C7^-3' '-1407B786A78501^-3' '991776C4B4E7D8^-6' '854F037352073^0' '-2E7CFAA77B8486^0' '256B6802F3A554^0' '-D23F01729BD3D8^0' '-183E3C751AFC3^-3' '-4438CD7DBE8DC^-4' '32A04B234381D4^-4' '854F0CD8808A28^0' '-2E7C7D5413A87E^0' '256AD5E1C95E2E^0' '-D23F311850D9B8^0' '-17EC752F52E992^-3' '-5FF58D379142B^-4' '602CE2F3FCD9E8^-4' '854F011A066678^0' '-2E7BF94AAF25C8^0' '256A48F40FB1CE^0' '-D23F6ED5CBA4^0' '-19E8DB279CC543^-3' '-49BD272803DAD4^-4' '38ED25781DA2CA^-4' '854F09FE5B902^0' '-2E7B733DE53DDC^0' '2569ACC1EA70A2^0' '-D23FA2AD3E921^0' '-20D78F7BA47AA4^-3' '-4A0B3CBC9365BC^-4' '38CE5599AB5056^-4' '854F1CF3ABB3D^0' '-2E7AD02AD0383C^0' '2568E31868AC92^0' '-D23FDE924714E8^0' '-21E1F6336CB2C6^-3' '-69E3FAD9EF56A^-4' '4176B7EC17CA68^-4' '854F2B8C4AD188^0' '-2E7A1C50C391E6^0' '25681A1AB35F94^0' '-D24020D76602E8^0' '-23483489DA49AC^-3' '-7576844CB3C0F4^-4' '387C5D6C84DA76^-4' '854F3F02744E88^0' '-2E795D3916212A^0' '25674BBE9A5A08^0' '-D24063726B2C7^0' '-1FB9F0A880E26F^-3' '-430509060FCDB8^-4' '524CF0F5B55964^-4' '854F46643D6C48^0' '-2E78C38B2F9E7E^0' '2566854523CB8C^0' '-D240A40A0AF0C8^0' '-1C72FC52AD7BD3^-3' '-3B2CA4D9EECAD6^-4' '4599803E0F265C^-4' '854F4EC7B93CA^0' '-2E7839CD8127B2^0' '2565D36E7C8A6A^0' '-D240DCBF083E1^0' '-173590B811424B^-3' '-3791C412D45F74^-5' '4F0DAB21B9FB88^-4' '854F4FF45F0D^0' '-2E77DD872F33CA^0' '256534B8188ABC^0' '-D2410D1089BB^0' '-19583114355D2F^-3' '-346704C2809D9A^-4' '64CC343FBCC1CC^-4' '854F4765F01EE^0' '-2E7765BD1E2E14^0' '256492A6B637B4^0' '-D24149766B9728^0' '-19A50E75AE58EA^-3' '-25D5E5181ABEDC^-4' '381F7DA6E0B15^-4' '854F52CE840708^0' '-2E76EF75993444^0' '2563EEE7D4BB02^0' '-D241797206D89^0' '-1B49D3AB500651^-3' '-3E4591B592C128^-4' '394F07BAA24C0A^-4' '854F5E620B0CF8^0' '-2E7668671C99BE^0' '256346A14F1A9A^0' '-D241ADF5463DA8^0' '-1B5792E3C57EC^-3' '-4C6954A4E2FCA8^-4' '47795DE5DDE908^-4' '854F6314A24E78^0' '-2E75DC50228236^0' '2562A05E2EDF66^0' '-D241E7561002^0' '-4C0938B9FDA088^-3' '-1883061283E538^-3' '2DEBE064ACAE0C^-4' '854FA1FEC2E92^0' '-2E7401DA75ACD6^0' '25610EB8AA80F2^0' '-D2426FBC258AA8^0' '-1E872BDB31C821^-3' '-46D5D29132733C^-4' '381DAF0D2BB6A8^-4' '854FB219EE12C^0' '-2E7369AF1B3612^0' '2560537CD4BCDC^0' '-D242A87122D7F^0' '-3A94BED02F7ACE^-3' '-1480EEFFCCD227^-3' '13FE75C217B40B^-4' '854FE6F313B368^0' '-2E71F05D4AB3D8^0' '255F262B37E722^0' '-D2430FCA227878^0' '-A558E0ADEC5908^-4' '2D37C60BE9EFE2^-4' '6B9B7966F3BC68^-4' '854FCD1CD3CB4^0' '-2E71DFC14630E6^0' '255ECCBF0AED44^0' '-D24333DC507868^0' '-38D3D0E9821376^-4' '4FE3236C7D8584^-4' '3B002E2161C8C4^-4' '854FBFDBCD9BA8^0' '-2E71F61194A7EE^0' '255E9B40E39FF8^0' '-D243401BA3F568^0' '-D0351D114E6B38^-4' '1095CDDB043ACE^-4' '43C829340FA6B^-4' '854FB8241E426^0' '-2E71CB9F503CDA^0' '255E3B49AD1D3^0' '-D2435F7B3AB3D8^0' '-18291EEC149275^-3' '374392F5C298D6^-5' '5B2050011F3EF8^-4' '854FB5F5C5BF68^0' '-2E716F03180D68^0' '255D93590DB85^0' '-D24392FCC76658^0' '-2439D72ED2044C^-3' '-9006D53D57C3C^-4' '3725F91108F4^-4' '854FC96BEF3C6^0' '-2E70A0FCE54366^0' '255CC5D3B4479A^0' '-D243D8C7D7C578^0' '-2EF0D4F3888A02^-3' '-B5CF3D12569D38^-4' '4D3D3C8EEFBAE4^-4' '854FE092FD484^0' '-2E6F986942E4AC^0' '255BB9BA2077C4^0' '-D24434376A2488^0' '-2F1C6A54C51696^-3' '-D83098CAC86D98^-4' '2971DCFF1EA13^-4' '8550042451EEE^0' '-2E6E7E62DC6E2A^0' '255AB8B33A549^0' '-D244899CCC54^0' '-28C6CE1DD36B6^-3' '-85055346CDE03^-4' '3C084034507C74^-4' '85501CF8DF2468^0' '-2E6DA244E3DFB8^0' '2559C9F5D7DDF8^0' '-D244D4F133897^0' '-1CA5F21EF35ADA^-3' '-480E9BD1BB6434^-4' '5BDEECFAE3D924^-4' '85501B7653188^0' '-2E6D13FF914538^0' '2559181F309CD6^0' '-D24514B213B8F^0' '-127DE16485AECB^-3' '1B76EDEBE9A996^-4' '4E00D637D66288^-4' '8550184647E2F^0' '-2E6CD7EF95A498^0' '25589064E78B4^0' '-D2453C1F400C38^0' '-91DD5270A8CC2^-4' '714EDFACFB7EA^-4' '4BFE4D5ADFB58C^-4' '85500E8B33247^0' '-2E6CE6075B6908^0' '25583017CACCEE^0' '-D245504136004^0' '-E6938D8C34783^-4' '29154A87372092^-4' '511AECBB58BF^-4' '8550052604A178^0' '-2E6CC0C88798BC^0' '2557BF599CA96E^0' '-D245727AF1B8C^0' '-155112873EB725^-3' '41BD219A576A88^-5' '50FF690CEE680C^-4' '855003229F3C48^0' '-2E6C6F94E35174^0' '25572ADF26C18A^0' '-D245A01D415968^0' '-244A874019829A^-3' '-7576CECBE35798^-4' '693CE43A92806C^-4' '855003F95ED118^0' '-2E6BAFD16969A6^0' '25565170600F6^0' '-D245F07A260BD8^0' '-2AF1A5FE58BDF2^-3' '-A18FCB7329B62^-4' '42440A6BB428CC^-4' '85501B4B5FFAC^0' '-2E6ABF6687C962^0' '25555B51347B06^0' '-D246428489E7F8^0' '-564C723306F8CC^-3' '-1CD245533BB522^-3' '11DA3C91107DFD^-4' '85506F841C59D^0' '-2E689BCACC418C^0' '25539AB1C78DC8^0' '-D246D5A766E1B8^0' '-208F84B863862A^-3' '-783A9359B43F1^-4' '347276D8B1FED8^-4' '8550807607185^0' '-2E67E69926AD12^0' '2552DF4AFEABEE^0' '-D247143BA140D8^0' '-38D2179F11111A^-3' '-1214719C1A22F3^-3' '1E52374DF20A83^-4' '8550B14861EE88^0' '-2E66854523CB8C^0' '2551B27A3B2F8^0' '-D247788F88C99^0' '-21CB91AC7F3AD6^-4' '91227F667D85B^-4' '65C790CBC31D14^-4' '85509518D665A8^0' '-2E66BF7CAD24BC^0' '255175937FFA0C^0' '-D2478854CDB7B^0' '68E5214062E86C^-4' '9B03D91728F108^-4' '64766C86641AF^-4' '85506DABAA126^0' '-2E6721CD2F4842^0' '25516F33698EE4^0' '-D2478CDC71DB68^0' '-3D2C5115BC98CE^-4' '5CDD77912DF4BC^-4' '4FC3AEF0B01D9C^-4' '85505933CDE2D^0' '-2E673DD1C7B35E^0' '255136A95F5F62^0' '-D2479DA3697C18^0' '-182E25F17647E6^-3' '-23B8EC0F6C608C^-4' '5045F7B0432A38^-4' '855058B2F4898^0' '-2E66D043A4C572^0' '255099CB6DA722^0' '-D247D1FBB5C37^0' '-2B1A957DBA3F9E^-3' '-D8EF1809D82798^-4' '5D2B09D74DA728^-4' '855061167059D8^0' '-2E65CA5F3442FE^0' '254FAE93FCA1A6^0' '-D248301A79FEC8^0' '-3850FD5614EBAC^-3' '-112651AF27213C^-3' '272C727E1D179E^-4' '85508EB8BFFA8^0' '-2E6471EF868B2^0' '254E806BA03718^0' '-D24894EF3AE0D^0' '-39C76694D1FE74^-3' '-10F1D0C117D89B^-3' '1EE40D732FEFA6^-4' '8550C20F598F4^0' '-2E631421751AB4^0' '254D48882F0E0A^0' '-D248F8ED3C2E^0' '-2B089ECFB89F82^-3' '-A7A2F549383DC^-4' '32ED150CD8CB^-4' '8550DF4097CAB8^0' '-2E621FAFC8B008^0' '254C54C24F1A7^0' '-D2494771AE9908^0' '-198E538B5B5205^-3' '-124F7CEA91968C^-4' '4CD1DF818E8258^-4' '8550E37255B2E8^0' '-2E61B34E4B927A^0' '254BAAA3573296^0' '-D2497AF33B4B88^0' '-8AAA6DE4ECFD^-4' '7631F59036C69^-4' '6075302DDBAD14^-4' '8550D0FDDEE88^0' '-2E61C6C4750F76^0' '254B4A2B47568^0' '-D2499371E24588^0' '2D41956EE3174^-5' '97886A63433C8^-4' '84D5FECEE239B^-4' '8550A534018F5^0' 1024 '-2E620F69AA689E^0' '254B17D660745E^0' '-D249A814B192E^0' '-7D8E3E2B85A158^-4' '6ED943398F383C^-4' '5F8FDE09236B5C^-4' '85509167F1D6C8^0' '-2E622335BA2124^0' '254ABEC019B60A^0' '-D249C0127F339^0' '-16089ACCBA9B93^-3' '14CEA69C904735^-4' '4EEBCF363138D4^-4' '85509269A4896^0' '-2E61D5B2FA68BC^0' '254A21614EA47E^0' '-D249EC5D35E618^0' '-296B2F3E91E7C8^-3' '-88689517F7447^-4' '4CC54CA372BA1^-4' '8550A5090E7188^0' '-2E60F6BADCE04^0' '25492DC661CEA8^0' '-D24A3D1000D41^0' '-317DF7B36CEE5E^-3' '-CE0EA251AF50F^-4' '3F4CF7606575B6^-4' '8550C3BCD8B8E8^0' '-2E5FD882B88192^0' '254818729299A^0' '-D24A99D72C2148^0' '-881F631E95C64^-3' '-332C663F899B9C^-3' '-10F6B499E992C8^-4' '8551545B76F428^0' '-2E5C4FE2158954^0' '254570A27F715^0' '-D24B7E2DAD625^0' '-2311AC5A7B1A76^-3' '-58A8E68CE8CC9^-4' '408E7AAF9AAF2C^-4' '85516624214778^0' '-2E5B9E0B6E4832^0' '25449B6576A752^0' '-D24BBFC6FFD94^0' '-38EE941D268F9A^-4' '96B6CC4951CEC^-4' '61ADF2ECF59E7C^-4' '85514E2653A6C8^0' '-2E5BD43C2CD6F8^0' '254453ECE71E88^0' '-D24BCFB737E52^0' 'B7289D27304D28^-4' 'CD18A73DB4EC5^-4' '59132F1121BDE^-4' '855127E5CD23E^0' '-2E5C5EA5A7C4D6^0' '254461AEC6A76E^0' '-D24BC6FDD5D938^0' '9CB36528254F98^-4' 'CC3D8D4DA51398^-4' '7DB458E29763B4^-4' '8550F5100CE87^0' '-2E5CE4877E8EFC^0' '25446183D389AA^0' '-D24BCA02EDF108^0' '-AA0CA8104360F8^-4' '309F9B1E60FAA8^-4' '4C25F98500B4B8^-4' '8550E8A5C64DB^0' '-2E5CD1BD218912^0' '25440817A68FCC^0' '-D24BE5B1A020A^0' '-249083B3152526^-3' '-6E0B020E5B20DC^-4' '3A71AF0C25ADAC^-4' '8550FD9E7BD69^0' '-2E5C10771B955C^0' '25432F29B936EE^0' '-D24C29794B1A88^0' '-38333FACDEC38A^-3' '-107F27B34C82B5^-3' '291875C166808^-4' '85512AEAE53BB^0' '-2E5ABCE4F83CBE^0' '2541FED3044966^0' '-D24C8D774C67B8^0' '-4072AE72AB98C4^-3' '-134DC8E8DD3BC7^-3' '26714B399BA16C^-4' '855161F2635F48^0' '-2E59344EBC25B6^0' '2540A434FE0E8E^0' '-D24CFE606DA8F8^0' '-3C2DC432B398D6^-3' '-110CC84D04B441^-3' '2555EB541D4E88^-4' '855195F4C96B18^0' '-2E57CC44BC9D8^0' '253F5C6154D9A2^0' '-D24D66E61319E^0' '-23A9DED8063E92^-3' '-83F170F18A5F8^-4' '693E9C157EA9A^-4' '855194C8239AB8^0' '-2E57092644625A^0' '253E8AD5309E84^0' '-D24DB7C3D125A^0' '-DCD5563907E1E^-4' '3E6D477FD51C7E^-4' '508816C988C66C^-4' '85518C39B4AC98^0' '-2E56EF25115C74^0' '253E1894766F1E^0' '-D24DD72367E418^0' '283F118673448E^-4' 'BA556ACC4F6398^-4' '7AFEC28C601944^-4' '8551639FE288F8^0' '-2E574F1C47DF3C^0' '253DED76658CF8^0' '-D24DE362BB6118^0' '617D6F26E37C2^-4' 'A602B313C6E4E^-4' '538749D19ED128^-4' '8551449632061^0' '-2E57B2C462F0E6^0' '253DE2B99E1BE^0' '-D24DE30CD52588^0' '-B8E0BC49F77BB^-4' '4EF19004D9C764^-4' '695984F71007FC^-4' '85512FC86F9AF^0' '-2E57AAB6CD5C14^0' '253D78B16C9F1^0' '-D24E04C5B784C^0' '-2036225420C064^-3' '-4427487EE29C08^-4' '4DD10DD955611^-4' '85513983845968^0' '-2E570E2EC1DF5E^0' '253CAFB3B75212^0' '-D24E44B18AD2^0' '-33B5F14C5395FC^-3' '-DF015DF34388D^-4' '32EBF158F37B68^-4' '85515F43318308^0' '-2E55DED9BFA47^0' '253B91509FD59E^0' '-D24EA24F75B41^0' '-3752A59B09F10A^-3' '-12C9AAE0F5BD13^-3' '2B57F76CFF5134^-4' '855187B21088E8^0' '-2E548009FB816C^0' '253A7013635F2^0' '-D24F09279BFB48^0' '-877275AA8FE218^-3' '-35F771C3ED971A^-3' '-15D0FE19DDB75^-4' '855215F7632368^0' '-2E50E779207D4E^0' '2537D8B4619BFC^0' '-D24FEF2B9C66^0' '-1E82AD988661AE^-3' '-41B4A55598BEFC^-4' '69365AEF6F468^-4' '8552121B8B76C^0' '-2E5055020FFA9E^0' '253717C441E3D^0' '-D25033F4FA128^0' '57CDA0132625C^-4' 'E620590CF1FDD^-4' '63D830F8157EA^-4' '8551F1E5352378^0' '-2E50D1A9AB5F94^0' '2536F6E21F1976^0' '-D25032C854422^0' '1720BC7788FC73^-3' '15149AA9B61272^-3' '652B82C1A65FC8^-4' '8551BF655B239^0' '-2E51C3ECFF4748^0' '25372DE99D3D12^0' '-D25013BEA3BF38^0' 'D27F52D6AEF5A8^-4' 'E902429E2D418^-4' '655A8790F74898^-4' '8551939B7DCA58^0' '-2E5261CCA3B222^0' '25373E85A1C004^0' '-D25009ADA8C53^0' '-D7A46C844B0208^-4' '3527C6F5907A48^-4' '41E2225CB09BA^-4' '85518FEA993B78^0' '-2E5244457F3B1E^0' '2536D22424A276^0' '-D25025B2413048^0' '-2AEBB2DE54B574^-3' '-B7D776A2EBB008^-4' '553E4E909D235^-4' '85519DAC78C46^0' '-2E514C22EE4192^0' '2535E036B6F64C^0' '-D2507E72A1B318^0' '-4027A9FF304634^-3' '-13600023EAF1E8^-3' '2E503A4DBEF1DA^-4' '8551D10312592^0' '-2E4FC4E44B18AE^0' '2534871B3CC75C^0' '-D250F134353BD^0' '-47C9216BD01DEC^-3' '-17B32D77C6A84F^-3' '278AD7B79AAFC2^-4' '85520D130DF9C^0' '-2E4E00E9DFD818^0' '25330E7538BC34^0' '-D2517136CEF418^0' '-3D3B36DAE4003E^-3' '-100176B50DFA89^-3' '3AF31BE0BDA2E^-4' '85523AE050B828^0' '-2E4C9CE6AB1A4A^0' '2531B9608957AE^0' '-D251DEEFE4FFC8^0' '-1E5C011418B01^-3' '-5F1DC0BC89603^-4' '3BC9733152584A^-4' '8552474A9752F^0' '-2E4BFBAC085C1A^0' '253105309675CE^0' '-D2521A54142958^0' '-7CD9AEE1C6644C^-4' '69846035328504^-4' '84B1385D9D3D18^-4' '855223B942AC5^0' '-2E4C1023E48BB^0' '2530AA6CD08DCC^0' '-D2523C62DCC41^0' 'BB8F27CA042E^-4' 'DFF7812FEB24C8^-4' '6B1FE768932024^-4' '8551F718A5BE4^0' '-2E4CA4C94D9158^0' '2530B37C18D53A^0' '-D25236839FB238^0' '713BF90BC99D4C^-4' 'D8586F8CE4FCD8^-4' '5B9ADE3A273A5^-4' '8551D6E24F6AF8^0' '-2E4D21C6CF31D6^0' '2530A15D88466^0' '-D252327CD4E7D^0' '-E20256B7E0DC78^-4' '493A3CD0A9D0BC^-4' '5AFD107150A98^-4' '8551CB4EC86508^0' '-2E4D0BA173D894^0' '2530293D91052^0' '-D252540AC42938^0' '-26F4754358A278^-3' '-73E09A9992C604^-4' '51222A9CE29E28^-4' '8551D9E76782C8^0' '-2E4C3F9EA673C8^0' '252F40098564DA^0' '-D252A0E1B76A9^0' '-63EDED68334B04^-3' '-2595F60C6E6862^-3' '-9CA74F8E2F3EE^-5' '855242EDE64CF8^0' '-2E49A793D83992^0' '252D4CBF4B59F^0' '-D25348FD49ED3^0' '-3A6AC13F9E129^-3' '-10BB371E164E8A^-3' '3392AE7912A594^-4' '85526EB7C3A63^0' '-2E4849F0B9E6EC^0' '252C0DCFF74EAC^0' '-D253B259AEF2F^0' '-5177294B283C0C^-3' '-1A13930F034556^-3' '1D881BA99B3CB3^-4' '8552BA0C2ADBA^0' '-2E464D4151590E^0' '252A6050CDA2E^0' '-D2543E45B5ECB8^0' '-10BF444E0735AE^-3' '1ADBDD08E582FD^-4' '4E8EE5110A5398^-4' '8552B401FAAC^0' '-2E46183D389AA6^0' '2529E42A0B9738^0' '-D25463DA6FF888^0' '8488820EDD2A18^-4' 'CA68C921525E28^-4' '6C2AC6BF460B3C^-4' '85528A3B82B8^0' '-2E4695BB939472^0' '2529DC1C760266^0' '-D254640563165^0' 'E5EC1ED61795B^-4' 'F58637383DE5F8^-4' '98346CD90AD6A8^-4' '855248CD235ED8^0' '-2E4741880AA5F6^0' '2529ECE36DA31C^0' '-D25464DC22AB28^0' '56BE739D884D28^-4' 'B2D1BA9AF27018^-4' '602459A4B8115C^-4' '8552266874889^0' '-2E47A88B240AF8^0' '2529D94251085C^0' '-D25467606169A8^0' '-16BB425339F2F6^-3' '-263731A2D12F66^-4' '3E9F2EDE6F7D8C^-4' '85522AC5258E88^0' '-2E473EADE5ABEC^0' '25294822D973D^0' '-D25495838A6398^0' '-3290CC18C08A0E^-3' '-E6E79C2FEA4BC8^-4' '205AC8206E14F2^-4' '855255E33670A8^0' '-2E460F83D68EC2^0' '252834FD62C1C2^0' '-D254ED981E6F58^0' '-447A84AE7CCB6C^-3' '-15F6F304BB6A23^-3' '353711F2B8BD82^-4' '8552898FB640F^0' '-2E4465B59171D8^0' '2526C99864E634^0' '-D2556AC0932D98^0' '-3DDD97DC4538BA^-3' '-1489CEF3D6AAEA^-3' '5F045D09922C2^-4' '8552A411C2A02^0' '-2E42E3D552018^0' '25257FEC4969D6^0' '-D255E8EABA9E78^0' '-2DF75D0E2FC8DE^-3' '-CB1A5B53C74F48^-4' '2B6F4352DDFFFE^-4' '8552C5F5981D18^0' '-2E41D40AD9A2CA^0' '252482C13AF346^0' '-D2563BF6D12D3^0' '-17869D7726C0E5^-3' '-19BBB81DF5FB45^-4' '4CB16990637FB^-4' '8552C6A1649428^0' '-2E416D07C03DC8^0' '2523E7E6AEA03C^0' '-D2566D9FEB984^0' '478547A4C05CA4^-5' '96973D3E04A3C8^-4' '5B372463024D9C^-4' '8552AB9E7EDBA8^0' '-2E41B2A7DD7F22^0' '2523BA445EFF94^0' '-D256775B0056C^0' '4E494FF16DF4F^-4' 'A2AC2399A88898^-4' '55E00A0BF27A64^-4' '85528D15A7B208^0' '-2E42101AD54368^0' '2523A850C18E8^0' '-D256795E65BBF^0' '5EE2966D24D2AC^-5' '8E3ABB9956601^-4' '6634BB673CC01^-4' '85526D0A447C88^0' '-2E42538C9A01CA^0' '25237C86E4354A^0' '-D25686F5522718^0' '-15EBD399F458^-3' '-9736EE0DBD1E5^-5' '6EA08CFF5347^-4' '85525E71A55EC8^0' '-2E41FC4EC58AE4^0' '2522E4DC6317D2^0' '-D256BDD1DD2CF^0' '-2E13A0F1C158D6^-3' '-A672AFAF639CC8^-4' '3BA8254279CE2E^-4' '85527C79A32F18^0' '-2E40FC49921A4A^0' '2521DBF2DA7D9^0' '-D25711DFA66E4^0' '-64B41EFED1D2CC^-3' '-26F80671E2B9EA^-3' '-346667B93B5D8^-5' '8552E22523A5F8^0' '-2E3E5855569E9E^0' '251FE8A8A072A6^0' '-D257BE2CF6D91^0' '-352BD5D10A1A82^-3' '-107B278FBC6FA9^-3' '2E94D832D5E366^-4' '855308BB906468^0' '-2E3D11D94657D4^0' '251ECB9D21E456^0' '-D2581FD1AC8588^0' '-4CEEE55293093C^-3' '-16C845766A72B3^-3' '3C782D00174122^-4' '855344A098E74^0' '-2E3B3FF2087092^0' '251D2B5EFE6826^0' '-D258A9BA4E1A18^0' '-703B4DD916F134^-4' '534BC6F4EFD3D^-4' '7FECCB4304229^-4' '8553203884ABC8^0' '-2E3B4E34C152C6^0' '251CDC03CC684E^0' '-D258CB9E239708^0' 'C3A503E5ACC198^-4' '110E7AB22FF7F2^-3' '6AC2232A4A51D8^-4' '8552F6720CB7C8^0' '-2E3BF8FF85B1B^0' '251CDBADE62CC6^0' '-D258C08B75EA68^0' 'C582C3B88F5378^-4' 'F4E767B4F925^-4' '709AD4B0EA25C8^-4' '8552C823F0A01^0' '-2E3C993875BD46^0' '251CE2E4BC2CC2^0' '-D258B97F93083^0' '-38796B47F5C8C8^-4' '703C2D382B309^-4' '50BC4D339E4728^-4' '8552B42CEDC9C8^0' '-2E3CBE77498D92^0' '251CA72AA6C7AA^0' '-D258C86E186178^0' '-1BB7AB9E4B8A7^-3' '-397B932A90E58A^-4' '4352A2E4A8C3B^-4' '8552BC65767C6^0' '-2E3C383F8C87E4^0' '251BF9DBA3AA3E^0' '-D258FF4AA3675^0' '-3542379AF0AB2^-3' '-10ED002712790A^-3' '54E4D7ECE35138^-4' '8552D2E0B81128^0' '-2E3AF142A2E7CC^0' '251ADAA1CC98F6^0' '-D2596BAC2084D8^0' '-42A8A23E68E7CC^-3' '-12C7CA78DDFB77^-3' 'C3AF4275CBD4C8^-5' '85531855E234C^0' '-2E3960F4B7777C^0' '251971961A5E26^0' '-D259D736DE0D9^0' '-3DDDC2F740464^-3' '-14B57C493B09F1^-3' '3DE9D242B0D87E^-4' '85534043E7E15^0' '-2E37DB8E869606^0' '25182B9AE370A8^0' '-D25A4CFD89AE18^0' '-28CC66B83253E^-3' '-B827F29F559E9^-4' '30E8CF0E44B562^-4' '855359C4418DE8^0' '-2E36E97625CC18^0' '25174AF546BE8^0' '-D25A99A989D1A8^0' '-120CCB8440C026^-3' '1BFAAEBF12C83D^-4' '51A6845CBDD95^-4' '8553540FF799D8^0' '-2E36AF9482AE7^0' '2516C594494DA6^0' '-D25AC0EBC30728^0' '11BE817D2B738B^-4' '98D52C1424802^-4' '5C235197AD8944^-4' '855337E06C10F8^0' '-2E36F9BC44138^0' '25169CCF840C3E^0' '-D25ACA25FE6C58^0' '49D847BB94E93^-4' 'A40C146E3D56A^-4' '80C080CDFCC5A8^-4' '8553083AB70B18^0' '-2E3759B37A964A^0' '251684D1B66B8C^0' '-D25AD791F7B9B8^0' '-7D6160002D2F1C^-4' '727037B8813ED^-4' '66D0902EF6BC48^-4' '8552F194825888^0' '-2E376F82EFB402^0' '25162A38E3A15^0' '-D25AF11251665^0' '-440E2C605F713^-3' '-16FC355354AC0E^-3' '1AB71559067575^-4' '85532E504A7038^0' '-2E35BED3BAD2A4^0' '2514C8391448B8^0' '-D25B683095F4F8^0' '-2D11CEF9B166FE^-3' '-C0A0CFCC42A06^-4' '37BD50CE7A18C^-4' '85534A7FD5F918^0' '-2E34B7ED979D96^0' '2513CD116B375C^0' '-D25BBC3E5F3648^0' '-2FCADB043EED2C^-3' '-B11D00D44DE8E8^-4' '491931D893D4D4^-4' '855364ABFC1CC8^0' '-2E33AD568FD9A8^0' '2512BA6CCDDE9A^0' '-D25C16AC3EE2C^0' '-2847EDF82E6D12^-3' '-8F732241C46FE8^-4' '3DDF36147D72E4^-4' '85537AFC4A93D^0' '-2E32CF0A3EC83C^0' '2511D163B55C18^0' '-D25C62568C53B8^0' '-4AC285683BB7D^-3' '-17463F00069C04^-3' '31BE0B97F10EBA^-4' '8553B78D1F8DB8^0' '-2E31022B7E5DFE^0' '2510426D62D9EA^0' '-D25CE78C96A6C8^0' '-13D2786BF013E1^-3' '2630267CD48062^-4' '85E7F99A9E21C8^-4' '85539FE538289^0' '-2E30C8F5A7B76A^0' '250FAA17154562^0' '-D25D1DE8485358^0' '2DE2218BF89852^-4' 'D1AA7CE6393F48^-4' '6B9849C6A83BF8^-4' '85537EAD2F22B^0' '-2E3132D2E61674^0' '250F7C9FB8C27E^0' '-D25D239C924768^0' '2CB0A815D2F9BA^-4' 'BFD4D799E7555^-4' '67B942AECDCFB^-4' '85535DF5FF7618^0' '-2E3194CD81FE72^0' '250F53B0006352^0' '-D25D2A279BD058^0' '-7F54AE42DF839C^-4' '46AC6E6C911DFC^-4' '4004C836595688^-4' '8553543AEAB798^0' '-2E31954E5B57C^0' '250F072EF35D86^0' '-D25D3D9DC54D5^0' '-1DCE3EACE9C01A^-3' '-4FA693FF321A68^-4' '3CDE1B52264272^-4' '8553607A3E3498^0' '-2E30FCCD1AA572^0' '250E527E272258^0' '-D25D7729822F7^0' '-2D8FE2489BE7AC^-3' '-BD352018B7B67^-4' '5A0273D1443EA4^-4' '85536F93B6ABA^0' '-2E2FF7BF69B7D4^0' '250D501FA811^0' '-D25DD47186D5F^0' '-35722FDECCC068^-3' '-10DDE881F0110A^-3' '20D7D72B25291C^-4' '85539BB37A406^0' '-2E2EAC90C22F9^0' '250C3415DC354A^0' '-D25E333C17886^0' '-322773AD03322E^-3' '-E680F85E1951F^-4' '35323051B8FFAE^-4' '8553BD974FBD58^0' '-2E2D80C1B165BE^0' '250B219C31FA4E^0' '-D25E900342D59^0' '-25D916C6FEB46^-3' '-9E6E096BABB03^-4' '2E379F2444AE88^-4' '8553D5C0107BD^0' '-2E2CA54F854E5E^0' '250A4DE1B53C38^0' '-D25ED624397038^0' '-193F83D7ED42D8^-3' '-3805F5CA943A8^-4' '3AB0DDFBF9B928^-4' '8553DDF8992E68^0' '-2E2C2953B6607A^0' '2509B12EB6A1BE^0' '-D25F07A260BD88^0' '-8619432367913^-4' '494FC4AE173AF8^-4' '448763D0B3A39C^-4' '8553D33BD1BD5^0' '-2E2C297EA97E3E^0' '250960D1D1EF4C^0' '-D25F1C9B164668^0' '-357DB14F2C192E^-4' '687AF2A95E74F^-4' '76B3D9B6A5CFE8^-4' '8553AED3BD81D8^0' '-2E2C4F13638A14^0' '250924ECC96C7^0' '-D25F35F07CD54^0' '-BE9C8C07029368^-4' '2AF52B5ABE974E^-4' '4975E9AAC53A54^-4' '8553A4EDB5A59^0' '-2E2C3466640D1A^0' '2508C4CA9FCBE2^0' '-D25F52F6C7F2F^0' '-435FE734C4C724^-3' '-17F627112C0EFA^-3' '75956765420F48^-5' '8553E75DC7B158^0' '-2E2A7EAEB1AEBA^0' '25076D06BE8B16^0' '-D25FC56275402^0' '-28E274D8750852^-3' '-85D8D4BA132E9^-4' '3CBC89F52E25^-4' '8553FFB17B8D98^0' '-2E29A1B9F98B72^0' '25067D9D8F9D6C^0' '-D260108BE957C8^0' '-263D85AD222446^-3' '-8DDED928EC97F8^-4' '37961A096E19AC^-4' '855415D6D6E6D8^0' '-2E28CC270A85EA^0' '2505A22B63860C^0' '-D260582F6BFE58^0' '-23E6F65BE5C29C^-3' '-6917CF2C6810F8^-4' '689630E628DCF4^-4' '855417037CB738^0' '-2E2812EE9A2708^0' '2504C810D05CD^0' '-D260A65DF82DD^0' '-485AEEFCDAB06^-3' '-16E71489E34B6B^-3' '1EC934D8568FB3^-4' '85545846E8F2A^0' '-2E26512287696C^0' '2503490AB5E682^0' '-D261233086B088^0' '-165DD3807B8AB5^-3' '22FF1B25CB3474^-4' '5F0A11011A9DBC^-4' '855453EA37ECA8^0' '-2E2609291E8754^0' '2502A44A21B734^0' '-D2615280557AD8^0' '-3F0B3EC9D55A1E^-4' '9E188FF2BBFB6^-4' '6E5C30DED05B9C^-4' '855437BAAC63C8^0' '-2E2641B328B6D8^0' '250257483B581A^0' '-D26165A098BC5^0' '-31DBF07FAC98D2^-4' '7F6AC5D87BD1F4^-4' '8298E64F743B9^-4' '85540FCCA6B738^0' '-2E267285838D12^0' '250215D9DBFEEE^0' '-D2617FCCBEDFF8^0' '-DE776A5CCCF32^-4' '209FB44FABBFA6^-4' '37D133EA2F2A78^-4' '85540EF5E7226^0' '-2E2649EBB1697^0' '2501ACD35D34BA^0' '-D2619AFA97B64^0' '-1D8873CD5ED8C9^-3' '-39122B83DD8594^-4' '4281F59C255088^-4' '85541A5E7B0A9^0' '-2E25BC522B45FE^0' '2500F39AECD5D6^0' '-D261D4057B3F1^0' '-2B6F6DA5F1C144^-3' '-B28584A3FDFEA^-4' '29357EE996635^-4' '85543B409DD4E8^0' '-2E24C0FF8F16DE^0' '250000D6BF94D6^0' '-D262213254BBF^0' '-2F812C12B60B2^-3' '-B24E51DF044E6^-4' '345A2AE9F4988A^-4' '85545D4F666FA^0' '-2E23B591C7BE1A^0' '24FEF238ED067E^0' '-D26275C0F7569^0' '-2BF5FAF5485818^-3' '-E24A6F6C7473D8^-4' '5A6B40AC78AA54^-4' '855467356E4BE^0' '-2E22A7F5A7E25C^0' '24FE03FC63E934^0' '-D262D48B8808F8^0' '-26906B7C1B39FA^-3' '-7D405B4596C928^-4' '345FE853FDC2^-4' '85548034EE9F3^0' '-2E21D79629779E^0' '24FD2255148472^0' '-D2631A00B22C9^0' '-19E0BCF9311F01^-3' '-1305B75A05D14B^-4' '43E171BB8C422^-4' '855488428434^0' '-2E2168DB60B954^0' '24FC770976CC3A^0' '-D2634B53E65C18^0' '-D5606E7B47836^-4' '2338310A598A9^-4' '3EB3D57DF915BE^-4' '8554843BB96998^0' '-2E214448596018^0' '24FC108736C086^0' '-D26367D958208^0' '-B1A64C6E561DE^-4' '39A9561B3996A^-4' '8A69192781ECA^-4' '85545F7DBEF298^0' '-2E2137B31FA79^0' '24FBAC085C1A08^0' '-D2639378425BF^0' '-E09D35C38AB198^-4' 'DA6181690D835^-5' '483474E5704C9C^-4' '8554571A43224^0' '-2E21080D6AA1B4^0' '24FB45B10F2C18^0' '-D263B55C17D8E8^0' '-4269625B6DBC4^-3' '-15797FB75F658A^-3' '197787620FC916^-4' '8554938024FE68^0' '-2E1F67FA3A4348^0' '24F9E838E3F736^0' '-D264279CD20848^0' '-25DC5356B4DD36^-3' '-7835DC1550D2C8^-4' '3B7FFA89474532^-4' '8554A8F9B3E098^0' '-2E1E9D2412AEDA^0' '24F90940C66EBA^0' '-D2646DBDC8A2F^0' '-224CA58E166368^-3' '-41B025F3D0A0A^-4' '42B33F317493A^-4' '8554BA4184DA98^0' '-2E1DF80D984404^0' '24F832D717D45E^0' '-D264ACA7E93D98^0' '-1E1E0957242D8D^-3' '-539D17682382^-4' '3711396379EC34^-4' '8554C90517162^0' '-2E1D5C31593E6^0' '24F77DA5723FE4^0' '-D264E55CE68AE^0' '-4739B9D64615A^-3' '-132C1699893031^-3' '466E5BEBEBC0A^-4' '8554FC86A3C8A^0' '-2E1BBA70A9B648^0' '24F5F2E0DDA5E2^0' '-D265658A7360F8^0' '-17DD3212D86A15^-3' '-29575710888642^-4' '719C95DBCEC2C8^-4' '8554ED423833D^0' '-2E1B4E3A1FB67E^0' '24F55683C546F2^0' '-D265A2712E9668^0' '-9B8A5400B491A8^-4' '73FD8E74178918^-4' '64A182AA19372C^-4' '8554DA4CE8102^0' '-2E1B5CA7CBB678^0' '24F4EF55B8C42C^0' '-D265BD74144EF^0' '-81E51B0847B99^-4' '6EC528D25FC824^-4' '6279BBA341BE74^-4' '8554C57F25A5^0' '-2E1B6F7228BC62^0' '24F4943C0CA0A2^0' '-D265D67394A238^0' '-10B2432514AF77^-3' '177D3C11CC4397^-4' '3A3F28E3F47EE6^-4' '8554C75797EC7^0' '-2E1B37BEDE21B4^0' '24F41B1A62ACC8^0' '-D265F6D4DE1348^0' '-1CA2CEFB714A31^-3' '-4974F7419A2534^-4' '4638071A8AD4E4^-4' '8554CE637ACEA8^0' '-2E1AA74B33043A^0' '24F36B9D070C64^0' '-D26630B68130F^0' '-26629B19C9EDFA^-3' '-9B898ED3F2AA98^-4' '5D73FC2AC8FC5C^-4' '8554D417C4C2C^0' '-2E19CE32528D96^0' '24F28F541B602E^0' '-D266836CB1842^0' '-2CBA797679AFCA^-3' '-B76AB21BA9BEA8^-4' '3EF4ABFE385934^-4' '8554ED6D2B519^0' '-2E18CD00794C9E^0' '24F19355B2B9FC^0' '-D266D7FB541EB8^0' '-2904B7AE618072^-3' '-9B44DD7120C4D^-4' '3331037C930A5E^-4' '855508451DEC5^0' '-2E17E5FAC62F4E^0' '24F0A975DAA2A4^0' '-D26722A3EEDD18^0' '-2378B4E0B54AAE^-3' '-7177A12FE5EDDC^-4' '37B756D2BDD0C^-4' '85551C3C20C298^0' '-2E17278EE535A4^0' '24EFD8C075FC5C^0' '-D267643D415408^0' '-194D68B9D90F7A^-3' '-270DBF2654E0F^-4' '4345506D5352E4^-4' '8555224650F238^0' '-2E16B2F4DF658^0' '24EF3684208B9^0' '-D2679692283628^0' '-139E52C934763^-3' '-2B327970E7B68C^-4' '66AE7A8226BDD4^-4' '855511297315F8^0' '-2E1656D9808F5C^0' '24EEB7833985DE^0' '-D267CBC1341258^0' '-33AEC743F9A472^-3' '-103D8A8D7700ED^-3' '1274368D9BD029^-4' '8555415001752^0' '-2E151611BA3CA8^0' '24EDA5B55BC1F2^0' '-D26823AAD5005^0' '-FF6254A91B41D8^-4' '310B242EB9FF54^-4' '4B2154522DAB94^-4' '85553CF3506F3^0' '-2E14ED2201DD7A^0' '24ED2938B37AC2^0' '-D2684538C441B8^0' '-F4E5A0E3361E28^-4' '17701F239FAEAB^-4' '396507AADF08FA^-4' '85553D1E438CF^0' '-2E14BB230136E2^0' '24ECB95144EC18^0' '-D26863C19B6B58^0' '-189A343B4FFC3C^-3' '21B51867C885BA^-5' '3E7A55BA9227F4^-4' '855547044B6938^0' '-2E1459FF24E3BA^0' '24EC1160A58738^0' '-D2689037453BA^0' '-2207E62A2AE13C^-3' '-54BCF101F14F28^-4' '3F9A15CD44050E^-4' '855557F63627B^0' '-2E13AE07BAB472^0' '24EB4202D9CF14^0' '-D268CFF8256B2^0' '-28932095705D38^-3' '-7F1C1D81F35AFC^-4' '607D56079CD50C^-4' '8555615B64AAA8^0' '-2E12D79E0C1A14^0' '24EA4F9492C99C^0' '-D26923043BF9D8^0' '-4E07A248158F74^-3' '-1785212A30D58A^-3' 'D1A74BBC1B5CB^-5' '8555B1377003C8^0' '-2E10F8CBAE3EC2^0' '24E8AF566F4D6A^0' '-D269A25B093B1^0' '-1D719308E9B9BE^-3' '-1977EF48C591F7^-4' '819FDF5726CA9^-4' '8555A477432D8^0' '-2E107CFAD26EA2^0' '24E7E8B205A12A^0' '-D269E8510CB7F8^0' '-13E15031CC67B2^-3' '3E5D2111993386^-4' '668693EF038EA8^-4' '85559B67FAE61^0' '-2E104B26C4E5CE^0' '24E74C7FE05FFC^0' '-D26A1445DD2EF^0' '-83D6916149C74^-4' '5C1A6BC43C344^-4' '68AF51F0FD7BB8^-4' '855582E953EC1^0' '-2E10563972926E^0' '24E6F4EC25AD8E^0' '-D26A30CB4EF358^0' '-A37BA81B614D^-4' '5CE0340F35F704^-4' '69371BF1BC6BF4^-4' '85556D19DECE58^0' '-2E1059697DC802^0' '24E6901764CB86^0' '-D26A4FAA0C588^0' '-13C88DA594C7D4^-3' 'E6534D28DACC48^-5' '4AEFDED9AC556C^-4' '85556BC245E038^0' '-2E101246D47AC2^0' '24E6037F915AB^0' '-D26A7899C4B7A8^0' '-1D35F6D0EEBB0B^-3' '-40B21CB9A06AB8^-4' '49FFE36F08C9A4^-4' '855572CE28C268^0' '-2E0F8355B5692E^0' '24E54DA21F4F26^0' '-D26AB37D1A87E8^0' '-2A86366A71EDF6^-3' '-7C8F45161431B^-4' '4D951DE3B37808^-4' '8555871B11D44^0' '-2E0EA4888AFE76^0' '24E44F755E25FC^0' '-D26B03D9FF3A6^0' '-2D8EE4C50AFBEC^-3' '-D7EACF14231C9^-4' '4444F95EFC2DEC^-4' '85559D157A0FB8^0' '-2E0D92E5A0585^0' '24E355FB343E4C^0' '-D26B5D9C126FC8^0' '-2AC28A9F9D195A^-3' '-95FA46CBE3DD3^-4' '340483A51A7D5A^-4' '8555BA71AB68F8^0' '-2E0CA6D76FBDFE^0' '24E25F303C32E2^0' '-D26BA9F22C57D^0' '-2174878EE573B4^-3' '-43F9C28A5234D8^-4' '4727D45A38DA18^-4' '8555C85E7E0FA8^0' '-2E0C049B1A4D34^0' '24E18E7AD78C9A^0' '-D26BE907401038^0' '-1651FA2179F49C^-3' '-2C772F4B1E9F46^-4' '25C1B7092ADB9E^-4' '8555D5CA775D^0' '-2E0B980EAA11E2^0' '24E103E66980F8^0' '-D26C109F5F8148^0' '-32F256641B33E2^-3' '-110AD2F9B8FD7^-3' '3165A86B407612^-4' '8555F72D7380A8^0' '-2E0A5746E3BF2C^0' '24DFF776EF759A^0' '-D26C70C18921D^0' '-ADE1CB2BA9A3F8^-4' '35D187CBF6DD9C^-4' '4F55304D03C4^-4' '8555EA17606ED8^0' '-2E0A45D41FA766^0' '24DF9ADAB74628^0' '-D26C8D1C07C878^0' '-B58092E1979C6^-4' '44B3C91816DAD^-4' '4DE1D96F92CFD^-4' '8555DF5A98FDC^0' '-2E0A3868265A06^0' '24DF375D8F5242^0' '-D26CA849E09EB8^0' '-116BDA04747229^-3' '1D8D02D9B06E34^-4' '5487B1EFFBFB2C^-4' '8555D7CDDCC238^0' '-2E0A020C74AD7C^0' '24DEB582835286^0' 754 '-D26CCFB70CF2^0' '-47EA95305FAA6C^-3' '-15CBD5496D16D7^-3' '26502F4BBF7FF8^-4' '8555FF6D6839B^0' '-2E08EB7881C968^0' '24DDC18A8D71A2^0' '-D26D1E50A47AB^0' '-32A11BC3046B54^-3' '-C9EE5AA2A2C358^-4' '5739897593484^-4' '1D164E7A02^A' '1D164E7A0A^A' '1D164E7B0A^A' '1D164E7C0A^A' '1D164E7D0A^A' '1D164E7E0A^A' '1D164E7F0A^A' '1D164E800A^A' '1D164E810A^A' '1D164E820A^A' '1D164E830A^A' '1D164E840A^A' '1D164E850A^A' '1D164E860A^A' '1D164E870A^A' '1D164E880A^A' '1D164E890A^A' '1D164E8A0A^A' '1D164E8B0A^A' '1D164E8C0A^A' '1D164E8D0A^A' '1D164E8E0A^A' '1D164E8F0A^A' '1D164E900A^A' '1D164E910A^A' '1D164E920A^A' '1D164E930A^A' '1D164E940A^A' '1D164E950A^A' '1D164E960A^A' '1D164E970A^A' '1D164E980A^A' '1D164E990A^A' '1D164E9A0A^A' '1D164E9B0A^A' '1D164E9C0A^A' '1D164E9D0A^A' '1D164E9E0A^A' '1D164E9F0A^A' '1D164EA00A^A' '1D164EA10A^A' '1D164EA20A^A' '1D164EA30A^A' '1D164EA40A^A' '1D164EA50A^A' '1D164EA60A^A' '1D164EA70A^A' '1D164EA80A^A' '1D164EA90A^A' '1D164EAA0A^A' '1D164EAB0A^A' '1D164EAC0A^A' '1D164EAD0A^A' '1D164EAE0A^A' '1D164EAF0A^A' '1D164EB00A^A' '1D164EB10A^A' '1D164EB20A^A' '1D164EB30A^A' '1D164EB40A^A' '1D164EB50A^A' '1D164EB60A^A' '1D164EB70A^A' '1D164EB80A^A' '1D164EB90A^A' '1D164EBA0A^A' '1D164EBB0A^A' '1D164EBC0A^A' '1D164EBD0A^A' '1D164EBE0A^A' '1D164EBF0A^A' '1D164EC00A^A' '1D164EC10A^A' '1D164EC20A^A' '1D164EC30A^A' '1D164EC40A^A' '1D164EC50A^A' '1D164EC60A^A' '1D164EC70A^A' '1D164EC80A^A' '1D164EC90A^A' '1D164ECA0A^A' '1D164ECB0A^A' '1D164ECC0A^A' '1D164ECD0A^A' '1D164ECE0A^A' '1D164ECF0A^A' '1D164ED00A^A' '1D164ED10A^A' '1D164ED20A^A' '1D164ED30A^A' '1D164ED40A^A' '1D164ED50A^A' '1D164ED60A^A' '1D164ED70A^A' '1D164ED80A^A' '1D164ED90A^A' '1D164EDA0A^A' '1D164EDB0A^A' '1D164EDC0A^A' '1D164EDD0A^A' '1D164EDE0A^A' '1D164EDF0A^A' '1D164EE00A^A' '1D164EE10A^A' '1D164EE20A^A' '1D164EE30A^A' '1D164EE40A^A' '1D164EE50A^A' '1D164EE60A^A' '1D164EE70A^A' '1D164EE80A^A' '1D164EE90A^A' '1D164EEA0A^A' '1D164EEB0A^A' '1D164EEC0A^A' '1D164EED0A^A' '1D164EEE0A^A' '1D164EEF0A^A' '1D164EF00A^A' '1D164EF10A^A' '1D164EF20A^A' '1D164EF30A^A' '1D164EF40A^A' '1D164EF50A^A' '1D164EF60A^A' '1D164EF70A^A' '1D164EF80A^A' '1D164EF90A^A' '1D164EFA0A^A' '1D164EFB0A^A' '1D164EFC0A^A' '1D164EFD0A^A' '1D164EFE0A^A' '1D164EFF0A^A' '1D164F000A^A' '1D164F010A^A' '1D164F020A^A' '1D164F030A^A' '1D164F040A^A' '1D164F050A^A' '1D164F060A^A' '1D164F070A^A' '1D164F080A^A' '1D164F090A^A' '1D164F0A0A^A' '1D164F0B0A^A' '1D164F0C0A^A' '1D164F0D0A^A' '1D164F0E0A^A' '1D164F0F0A^A' '1D164F100A^A' '1D164F110A^A' '1D164F120A^A' '1D164F130A^A' '1D164F140A^A' '1D164F150A^A' '1D164F160A^A' '1D164F170A^A' '1D164F180A^A' '1D164F190A^A' '1D164F1A0A^A' '1D164F1B0A^A' '1D164F1C0A^A' '1D164F1D0A^A' '1D164F1E0A^A' '1D164F1F0A^A' '1D164F200A^A' '1D164F210A^A' '1D164F220A^A' '1D164F230A^A' '1D164F240A^A' '1D164F250A^A' '1D164F260A^A' '1D164F270A^A' '1D164F280A^A' '1D164F290A^A' '1D164F2A0A^A' '1D164F2B0A^A' '1D164F2C0A^A' '1D164F2D0A^A' '1D164F2E0A^A' '1D164F2F0A^A' '1D164F300A^A' '1D164F310A^A' '1D164F320A^A' '1D164F330A^A' '1D164F340A^A' '1D164F350A^A' '1D164F360A^A' '1D164F370A^A' '1D164F380A^A' '1D164F390A^A' '1D164F3A0A^A' '1D164F3B0A^A' '1D164F3C0A^A' '1D164F3D0A^A' '1D164F3E0A^A' '1D164F3F0A^A' '1D164F400A^A' '1D164F410A^A' '1D164F420A^A' '1D164F430A^A' '1D164F440A^A' '1D164F450A^A' '1D164F460A^A' '1D164F470A^A' '1D164F480A^A' '1D164F490A^A' '1D164F4A0A^A' '1D164F4B0A^A' '1D164F4C0A^A' '1D164F4D0A^A' '1D164F4E0A^A' '1D164F4F0A^A' '1D164F500A^A' '1D164F510A^A' '1D164F520A^A' '1D164F530A^A' '1D164F540A^A' '1D164F550A^A' '1D164F560A^A' '1D164F570A^A' '1D164F580A^A' '1D164F590A^A' '1D164F5A0A^A' '1D164F5B0A^A' '1D164F5C0A^A' '1D164F5D0A^A' '1D164F5E0A^A' '1D164F5F0A^A' '1D164F600A^A' '1D164F610A^A' '1D164F620A^A' '1D164F630A^A' '1D164F640A^A' '1D164F650A^A' '1D164F660A^A' '1D164F670A^A' '1D164F680A^A' '1D164F690A^A' '1D164F6A0A^A' '1D164F6B0A^A' '1D164F6C0A^A' '1D164F6D0A^A' '1D164F6E0A^A' '1D164F6F0A^A' '1D164F700A^A' '1D164F710A^A' '1D164F720A^A' '1D164F730A^A' '1D164F740A^A' '1D164F750A^A' '1D164F760A^A' '1D164F770A^A' '1D164F780A^A' '1D164F790A^A' '1D164F7A0A^A' '1D164F7B0A^A' '1D164F7C0A^A' '1D164F7D0A^A' '1D164F7E0A^A' '1D164F7F0A^A' '1D164F800A^A' '1D164F810A^A' '1D164F820A^A' '1D164F830A^A' '1D164F840A^A' '1D164F850A^A' '1D164F860A^A' '1D164F870A^A' '1D164F880A^A' '1D164F890A^A' '1D164F8A0A^A' '1D164F8B0A^A' '1D164F8C0A^A' '1D164F8D0A^A' '1D164F8E0A^A' '1D164F8F0A^A' '1D164F900A^A' '1D164F910A^A' '1D164F920A^A' '1D164F930A^A' '1D164F940A^A' '1D164F950A^A' '1D164F960A^A' '1D164F970A^A' '1D164F980A^A' '1D164F990A^A' '1D164F9A0A^A' '1D164F9B0A^A' '1D164F9C0A^A' '1D164F9D0A^A' '1D164F9E0A^A' '1D164F9F0A^A' '1D164FA00A^A' '1D164FA10A^A' '1D164FA20A^A' '1D164FA30A^A' '1D164FA40A^A' '1D164FA50A^A' '1D164FA60A^A' '1D164FA70A^A' '1D164FA80A^A' '1D164FA90A^A' '1D164FAA0A^A' '1D164FAB0A^A' '1D164FAC0A^A' '1D164FAD0A^A' '1D164FAE0A^A' '1D164FAF0A^A' '1D164FB00A^A' '1D164FB10A^A' '1D164FB20A^A' '1D164FB30A^A' '1D164FB40A^A' '1D164FB50A^A' '1D164FB60A^A' '1D164FB70A^A' '1D164FB80A^A' '1D164FB90A^A' '1D164FBA0A^A' '1D164FBB0A^A' '1D164FBC0A^A' '1D164FBD0A^A' '1D164FBE0A^A' '1D164FBF0A^A' '1D164FC00A^A' '1D164FC10A^A' '1D164FC20A^A' '1D164FC30A^A' '1D164FC40A^A' '1D164FC50A^A' '1D164FC60A^A' '1D164FC70A^A' '1D164FC80A^A' '1D164FC90A^A' '1D164FCA0A^A' '1D164FCB0A^A' '1D164FCC0A^A' '1D164FCD0A^A' '1D164FCE0A^A' '1D164FCF0A^A' '1D164FD00A^A' '1D164FD10A^A' '1D164FD20A^A' '1D164FD30A^A' '1D164FD40A^A' '1D164FD50A^A' '1D164FD60A^A' '1D164FD70A^A' '1D164FD80A^A' '1D164FD90A^A' '1D164FDA0A^A' '1D164FDB0A^A' '1D164FDC0A^A' '1D164FDD0A^A' '1D164FDE0A^A' '1D164FDF0A^A' '1D164FE00A^A' '1D164FE10A^A' '1D164FE20A^A' '1D164FE30A^A' '1D164FE40A^A' '1D164FE50A^A' '1D164FE60A^A' '1D164FE70A^A' '1D164FE80A^A' '1D164FE90A^A' '1D164FEA0A^A' '1D164FEB0A^A' '1D164FEC0A^A' '1D164FED0A^A' '1D164FEE0A^A' '1D164FEF0A^A' '1D164FF00A^A' '1D164FF10A^A' '1D164FF20A^A' '1D164FF30A^A' '1D164FF40A^A' '1D164FF50A^A' '1D164FF60A^A' '1D164FF70A^A' '1D164FF80A^A' '1D164FF90A^A' '1D164FFA0A^A' '1D164FFB0A^A' '1D164FFC0A^A' '1D164FFD0A^A' '1D164FFE0A^A' '1D164FFF0A^A' '1D1650000A^A' '1D1650010A^A' '1D1650020A^A' '1D1650030A^A' '1D1650040A^A' '1D1650050A^A' '1D1650060A^A' '1D1650070A^A' '1D1650080A^A' '1D1650090A^A' '1D16500A0A^A' '1D16500B0A^A' '1D16500C0A^A' '1D16500D0A^A' '1D16500E0A^A' '1D16500F0A^A' '1D1650100A^A' '1D1650110A^A' '1D1650120A^A' '1D1650130A^A' '1D1650140A^A' '1D1650150A^A' '1D1650160A^A' '1D1650170A^A' '1D1650180A^A' '1D1650190A^A' '1D16501A0A^A' '1D16501B0A^A' '1D16501C0A^A' '1D16501D0A^A' '1D16501E0A^A' '1D16501F0A^A' '1D1650200A^A' '1D1650210A^A' '1D1650220A^A' '1D1650230A^A' '1D1650240A^A' '1D1650250A^A' '1D1650260A^A' '1D1650270A^A' '1D1650280A^A' '1D1650290A^A' '1D16502A0A^A' '1D16502B0A^A' '1D16502C0A^A' '1D16502D0A^A' '1D16502E0A^A' '1D16502F0A^A' '1D1650300A^A' '1D1650310A^A' '1D1650320A^A' '1D1650330A^A' '1D1650340A^A' '1D1650350A^A' '1D1650360A^A' '1D1650370A^A' '1D1650380A^A' '1D1650390A^A' '1D16503A0A^A' '1D16503B0A^A' '1D16503C0A^A' '1D16503D0A^A' '1D16503E0A^A' '1D16503F0A^A' '1D1650400A^A' '1D1650410A^A' '1D1650420A^A' '1D1650430A^A' '1D1650440A^A' '1D1650450A^A' '1D1650460A^A' '1D1650470A^A' '1D1650480A^A' '1D1650490A^A' '1D16504A0A^A' '1D16504B0A^A' '1D16504C0A^A' '1D16504D0A^A' '1D16504E0A^A' '1D16504F0A^A' '1D1650500A^A' '1D1650510A^A' '1D1650520A^A' '1D1650530A^A' '1D1650540A^A' '1D1650550A^A' '1D1650560A^A' '1D1650570A^A' '1D1650580A^A' '1D1650590A^A' '1D16505A0A^A' '1D16505B0A^A' '1D16505C0A^A' '1D16505D0A^A' '1D16505E0A^A' '1D16505F0A^A' '1D1650600A^A' '1D1650610A^A' '1D1650620A^A' '1D1650630A^A' '1D1650640A^A' '1D1650650A^A' '1D1650660A^A' '1D1650670A^A' '1D1650680A^A' '1D1650690A^A' '1D16506A0A^A' '1D16506B0A^A' '1D16506C0A^A' '1D16506D0A^A' '1D16506E0A^A' '1D16506F0A^A' '1D1650700A^A' '1D1650710A^A' '1D1650720A^A' '1D1650730A^A' '1D1650740A^A' '1D1650750A^A' '1D1650760A^A' '1D1650770A^A' '1D1650780A^A' '1D1650790A^A' '1D16507A0A^A' '1D16507B0A^A' '1D16507C0A^A' '1D16507D0A^A' '1D16507E0A^A' '1D16507F0A^A' '1D1650800A^A' '1D1650810A^A' '1D1650820A^A' '1D1650830A^A' '1D1650840A^A' '1D1650850A^A' '1D1650860A^A' '1D1650870A^A' '1D1650880A^A' '1D1650890A^A' '1D16508A0A^A' '1D16508B0A^A' '1D16508C0A^A' '1D16508D0A^A' '1D16508E0A^A' '1D16508F0A^A' '1D1650900A^A' '1D1650910A^A' '1D1650920A^A' '1D1650930A^A' '1D1650940A^A' '1D1650950A^A' '1D1650960A^A' '1D1650970A^A' '1D1650980A^A' '1D1650990A^A' '1D16509A0A^A' '1D16509B0A^A' '1D16509C0A^A' '1D16509D0A^A' '1D16509E0A^A' '1D16509F0A^A' '1D1650A00A^A' '1D1650A10A^A' '1D1650A20A^A' '1D1650A30A^A' '1D1650A40A^A' '1D1650A50A^A' '1D1650A60A^A' '1D1650A70A^A' '1D1650A80A^A' '1D1650A90A^A' '1D1650AA0A^A' '1D1650AB0A^A' '1D1650AC0A^A' '1D1650AD0A^A' '1D1650AE0A^A' '1D1650AF0A^A' '1D1650B00A^A' '1D1650B10A^A' '1D1650B20A^A' '1D1650B30A^A' '1D1650B40A^A' '1D1650B50A^A' '1D1650B60A^A' '1D1650B70A^A' '1D1650B80A^A' '1D1650B90A^A' '1D1650BA0A^A' '1D1650BB0A^A' '1D1650BC0A^A' '1D1650BD0A^A' '1D1650BE0A^A' '1D1650BF0A^A' '1D1650C00A^A' '1D1650C10A^A' '1D1650C20A^A' '1D1650C30A^A' '1D1650C40A^A' '1D1650C50A^A' '1D1650C60A^A' '1D1650C70A^A' '1D1650C80A^A' '1D1650C90A^A' '1D1650CA0A^A' '1D1650CB0A^A' '1D1650CC0A^A' '1D1650CD0A^A' '1D1650CE0A^A' '1D1650CF0A^A' '1D1650D00A^A' '1D1650D10A^A' '1D1650D20A^A' '1D1650D30A^A' '1D1650D40A^A' '1D1650D50A^A' '1D1650D60A^A' '1D1650D70A^A' '1D1650D80A^A' '1D1650D90A^A' '1D1650DA0A^A' '1D1650DB0A^A' '1D1650DC0A^A' '1D1650DD0A^A' '1D1650DE0A^A' '1D1650DF0A^A' '1D1650E00A^A' '1D1650E10A^A' '1D1650E20A^A' '1D1650E30A^A' '1D1650E40A^A' '1D1650E50A^A' '1D1650E60A^A' '1D1650E70A^A' '1D1650E80A^A' '1D1650E90A^A' '1D1650EA0A^A' '1D1650EB0A^A' '1D1650EC0A^A' '1D1650ED0A^A' '1D1650EE0A^A' '1D1650EF0A^A' '1D1650F00A^A' '1D1650F10A^A' '1D1650F20A^A' '1D1650F30A^A' '1D1650F40A^A' '1D1650F50A^A' '1D1650F60A^A' '1D1650F70A^A' '1D1650F80A^A' '1D1650F90A^A' '1D1650FA0A^A' '1D1650FB0A^A' '1D1650FC0A^A' '1D1650FD0A^A' '1D1650FE0A^A' '1D1650FF0A^A' '1D1651000A^A' '1D1651010A^A' '1D1651020A^A' '1D1651030A^A' '1D1651040A^A' '1D1651050A^A' '1D1651060A^A' '1D1651070A^A' '1D1651080A^A' '1D1651090A^A' '1D16510A0A^A' '1D16510B0A^A' '1D16510C0A^A' '1D16510D0A^A' '1D16510E0A^A' '1D16510F0A^A' '1D1651100A^A' '1D1651110A^A' '1D1651120A^A' '1D1651130A^A' '1D1651140A^A' '1D1651150A^A' '1D1651160A^A' '1D1651170A^A' '1D1651180A^A' '1D1651190A^A' '1D16511A0A^A' '1D16511B0A^A' '1D16511C0A^A' '1D16511D0A^A' '1D16511E0A^A' '1D16511F0A^A' '1D1651200A^A' '1D1651210A^A' '1D1651220A^A' '1D1651230A^A' '1D1651240A^A' '1D1651250A^A' '1D1651260A^A' '1D1651270A^A' '1D1651280A^A' '1D1651290A^A' '1D16512A0A^A' '1D16512B0A^A' '1D16512C0A^A' '1D16512D0A^A' '1D16512E0A^A' '1D16512F0A^A' '1D1651300A^A' '1D1651310A^A' '1D1651320A^A' '1D1651330A^A' '1D1651340A^A' '1D1651350A^A' '1D1651360A^A' '1D1651370A^A' '1D1651380A^A' '1D1651390A^A' '1D16513A0A^A' '1D16513B0A^A' '1D16513C0A^A' '1D16513D0A^A' '1D16513E0A^A' '1D16513F0A^A' '1D1651400A^A' '1D1651410A^A' '1D1651420A^A' '1D1651430A^A' '1D1651440A^A' '1D1651450A^A' '1D1651460A^A' '1D1651470A^A' '1D1651480A^A' '1D1651490A^A' '1D16514A0A^A' '1D16514B0A^A' '1D16514C0A^A' '1D16514D0A^A' '1D16514E0A^A' '1D16514F0A^A' '1D1651500A^A' '1D1651510A^A' '1D1651520A^A' '1D1651530A^A' '1D1651540A^A' '1D165154AC^A' '1D164EDC0A^A' '1D164F400A^A' '1D164FA40A^A' '1D1650080A^A' '1D16506C0A^A' '1D1650D00A^A' '1D1651340A^A' '1D164E7A02^A' '1^1' '2DD^3' END_ARRAY 1 5874 TOTAL_ARRAYS 1 ~NAIF/SPC BEGIN COMMENTS~ This CK is for testing with the image: /home/pgiroux/Desktop/FC21A0038582_15170161546F6F.cub This CK was generated using the following command: {} ~NAIF/SPC END COMMENTS~
XC
2
ladoramkershner/ale
tests/pytests/data/FC21A0038582_15170161546F6F/dawn_sc_150615_150621_0_sliced_-203000.xc
[ "Unlicense" ]
[Code] //from https://stackoverflow.com/questions/2000296/inno-setup-how-to-automatically-uninstall-previous-installed-version ///////////////////////////////////////////////////////////////////// function GetUninstallString(): String; var sUnInstPath: String; sUnInstallString: String; begin sUnInstPath := ExpandConstant('Software\Microsoft\Windows\CurrentVersion\Uninstall\{#emit SetupSetting("AppId")}_is1'); sUnInstallString := ''; if not RegQueryStringValue(HKLM, sUnInstPath, 'UninstallString', sUnInstallString) then RegQueryStringValue(HKCU, sUnInstPath, 'UninstallString', sUnInstallString); Result := sUnInstallString; end; ///////////////////////////////////////////////////////////////////// function IsUpgrade(): Boolean; begin Result := (GetUninstallString() <> ''); end; ///////////////////////////////////////////////////////////////////// function UnInstallOldVersion(): Integer; var sUnInstallString: String; iResultCode: Integer; begin // Return Values: // 1 - uninstall string is empty // 2 - error executing the UnInstallString // 3 - successfully executed the UnInstallString // default return value Result := 0; // get the uninstall string of the old app sUnInstallString := GetUninstallString(); if sUnInstallString <> '' then begin sUnInstallString := RemoveQuotes(sUnInstallString); if Exec(sUnInstallString, '/SILENT /NORESTART /SUPPRESSMSGBOXES','', SW_HIDE, ewWaitUntilTerminated, iResultCode) then Result := 3 else Result := 2; end else Result := 1; end; ///////////////////////////////////////////////////////////////////// procedure CurStepChanged(CurStep: TSetupStep); begin if (CurStep=ssInstall) then begin if (IsUpgrade()) then begin UnInstallOldVersion(); end; end; end; // Source of this function // http://www.kynosarges.de/DotNetVersion.html function IsDotNetDetected(version: string; service: cardinal): boolean; // Indicates whether the specified version and service pack of the .NET Framework is installed. // // version -- Specify one of these strings for the required .NET Framework version: // 'v1.1' .NET Framework 1.1 // 'v2.0' .NET Framework 2.0 // 'v3.0' .NET Framework 3.0 // 'v3.5' .NET Framework 3.5 // 'v4\Client' .NET Framework 4.0 Client Profile // 'v4\Full' .NET Framework 4.0 Full Installation // 'v4.5' .NET Framework 4.5 // 'v4.5.1' .NET Framework 4.5.1 // 'v4.5.2' .NET Framework 4.5.2 // 'v4.6' .NET Framework 4.6 // 'v4.6.1' .NET Framework 4.6.1 // 'v4.6.2' .NET Framework 4.6.2 // 'v4.7' .NET Framework 4.7 // 'v4.7.1' .NET Framework 4.7.1 // 'v4.7.2' .NET Framework 4.7.2 // 'v4.8' .NET Framework 4.8 // // service -- Specify any non-negative integer for the required service pack level: // 0 No service packs required // 1, 2, etc. Service pack 1, 2, etc. required var key, versionKey: string; install, release, serviceCount, versionRelease: cardinal; success: boolean; begin versionKey := version; versionRelease := 0; // .NET 1.1 and 2.0 embed release number in version key if version = 'v1.1' then begin versionKey := 'v1.1.4322'; end else if version = 'v2.0' then begin versionKey := 'v2.0.50727'; end // .NET 4.5 and newer install as update to .NET 4.0 Full else if Pos('v4.', version) = 1 then begin versionKey := 'v4\Full'; case version of 'v4.5': versionRelease := 378389; 'v4.5.1': versionRelease := 378675; // 378758 on Windows 8 and older 'v4.5.2': versionRelease := 379893; 'v4.6': versionRelease := 393295; // 393297 on Windows 8.1 and older 'v4.6.1': versionRelease := 394254; // 394271 before Win10 November Update 'v4.6.2': versionRelease := 394802; // 394806 before Win10 Anniversary Update 'v4.7': versionRelease := 460798; // 460805 before Win10 Creators Update 'v4.7.1': versionRelease := 461308; // 461310 before Win10 Fall Creators Update 'v4.7.2': versionRelease := 461808; // 461814 before Win10 April 2018 Update 'v4.8': versionRelease := 528040; // 528049 before Win10 May 2019 Update end; end; // installation key group for all .NET versions key := 'SOFTWARE\Microsoft\NET Framework Setup\NDP\' + versionKey; // .NET 3.0 uses value InstallSuccess in subkey Setup if Pos('v3.0', version) = 1 then begin success := RegQueryDWordValue(HKLM, key + '\Setup', 'InstallSuccess', install); end else begin success := RegQueryDWordValue(HKLM, key, 'Install', install); end; // .NET 4.0 and newer use value Servicing instead of SP if Pos('v4', version) = 1 then begin success := success and RegQueryDWordValue(HKLM, key, 'Servicing', serviceCount); end else begin success := success and RegQueryDWordValue(HKLM, key, 'SP', serviceCount); end; // .NET 4.5 and newer use additional value Release if versionRelease > 0 then begin success := success and RegQueryDWordValue(HKLM, key, 'Release', release); success := success and (release >= versionRelease); end; result := success and (install = 1) and (serviceCount >= service); end;
Inno Setup
4
maddin30/LogExpert
src/setup/ExtraFunctions.iss
[ "MIT" ]
import "sys" as sys native "js" code ‹ if (typeof performance == "undefined") { if (typeof window == "undefined") var performance = require('perf_hooks').performance; else var performance = window.performance; } › method now { native "js" code ‹return new GraceNum(performance.now());› } method report(aBlock) { def startTime = now def startCount = sys.requestCount aBlock.apply def endTime = now def endCount = sys.requestCount def executionTime = endTime-startTime def executedRequests = endCount-startCount print "{executedRequests} requests in {executionTime} ms" print "{executedRequests / executionTime} requests/ms" } method time(aBlock) { def startTime = now aBlock.apply def endTime = now endTime-startTime } method benchmark(aBlock) { def limit = now + 10000 def results = list.empty var n := 0 var startTime var startCount do { startTime := now startCount := sys.requestCount aBlock.apply } while { results.addLast((sys.requestCount-startCount)@(now-startTime)) now < limit } results } method withoutOutliers (sorted) { def n = sorted.size def lowerq = sorted.at((n/4).ceiling) def upperq = sorted.at((n*3/4).floor) def median = sorted.at((n/2).rounded) def iqr = upperq - lowerq def average = (sorted.fold {acc, each → acc + each } startingWith 0) / n def sd = ((sorted.fold {acc, each → acc + ((each - average)^2) } startingWith 0) / n ).sqrt def cutoff = (upperq - lowerq) * 1.5 def outlierCount = sorted.fold {acc, each → acc + if (each > (upperq + cutoff)) then { 1 } else { 0 }} startingWith 0 def lowOutlierCount = sorted.fold {acc, each → acc + if (each < (lowerq - cutoff)) then { 1 } else { 0 }} startingWith 0 sorted.filter { each → each ≤ (upperq + 1.5 * iqr) } >> sequence } method summarize (stats) { // stats is a collection of count@time pairs var data def requestCount = stats.first.x var filteredData := list.empty print "initially, {stats.size} executions of benchmark code" stats.do { each → if (each.x ≠ requestCount) then { print "dropping {each}" } else { filteredData.add (each.y) } } filteredData.sort do { data := filteredData filteredData := withoutOutliers(data) } while { filteredData.size < data.size } def n = filteredData.size def average = (filteredData.fold {acc, each → acc + each } startingWith 0) / n def sd = ((filteredData.fold {acc, each → acc + ((each - average)^2) } startingWith 0) / n ).sqrt def outlierCount = filteredData.fold {acc, each → acc + if (each > (average + 2.5 * sd)) then { 1 } else { 0 }} startingWith 0 def lowOutlierCount = filteredData.fold {acc, each → acc + if (each < (average - 2.5 * sd)) then { 1 } else { 0 }} startingWith 0 def lowerq = filteredData.at((n/4).ceiling) def upperq = filteredData.at((n*3/4).floor) def median = filteredData.at((n/2).rounded) print "after removing outliers, n = {n}; standard deviation (σ) = {sd}; {outlierCount} measurements > 2.5 σ above mean" if (lowOutlierCount ≠ 0) then { print "{lowOutlierCount} < 2.5 σ below mean" } print "average = {average}, quartiles = [{filteredData.first}, {lowerq}, {median}, {upperq}, {filteredData.last}]; iqr = {upperq - lowerq}" print "median result: {requestCount} requests in {median} ms = {(requestCount/median).rounded} requests/ms" }
Grace
5
gracelang/minigrace-performance
performance.grace
[ "MIT" ]
(module (func $trackWasm (import "./tracker" "trackWasm") (param i32)) (global $magicNumber (import "./c.js" "magicNumber") i32) (func $start get_global $magicNumber call $trackWasm ) (start $start) )
WebAssembly
4
1shenxi/webpack
test/cases/wasm/order/wasm.wat
[ "MIT" ]
## Token.Token (object) - id: 12 (number, required) - address: `0x0849D6ae02349352258Ca59c27bC6D3159A7b752` (string, required) - symbol: `MLTT` (string, required) - decimals: 18 (number, required) - enabledForFees: true (boolean, required) ## Token.TokenLike (enum) + (number) + (string) ## Token.Price (object) - tokenId: 12 (number, required) - tokenSymbol: `MLTT` (string, required) - priceIn: `USD` (string, required) - decimals: 18 (number, required) - price: `1.01` (string, required) ## Token.NFT (object) - id: 100000 (number, required) - contentHash: `0x2216aae3714e46a9efe0066ff5f3684c95ea9a680a4c39cd36e62b117cb1837c` (string, required) - creatorId: 5 (number, required) - creatorAddress: `0x1849D6ae02349352258Ca59c27bC6D3159A7b752` (string, required) - serialId: 57 (number, required) - address: `0x2DEEA6ae02349352258C2DEEA6bC6D31592DEEA6` (string, required) - symbol: `NFT-100000` ## Token.NFTInfo (object) - id: 100000 (number, required) - contentHash: `0x2216aae3714e46a9efe0066ff5f3684c95ea9a680a4c39cd36e62b117cb1837c` (string, required) - creatorId: 5 (number, required) - creatorAddress: `0x1849D6ae02349352258Ca59c27bC6D3159A7b752` (string, required) - serialId: 57 (number, required) - address: `0x2DEEA6ae02349352258C2DEEA6bC6D31592DEEA6` (string, required) - symbol: `NFT-100000` - currentFactory: `0x5DFEA6ae02349352258C2DEEA6bC6D31592D5DFE` (string, required) - withdrawnFactory: `0x5DFEA6ae02349352258C2DEEA6bC6D31592D5DFE` (string, required, nullable)
API Blueprint
3
smishraIOV/ri-aggregation
infrastructure/api-docs/blueprint/types/tokens.apib
[ "Apache-2.0", "MIT" ]
package com.baeldung.lombok.with; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.With; @Getter @AllArgsConstructor public class User { private final String username; private final String emailAddress; @With private final boolean isAuthenticated; }
Java
4
DBatOWL/tutorials
lombok-2/src/main/java/com/baeldung/lombok/with/User.java
[ "MIT" ]
size: A4*; dpi: 96;
CLIPS
0
asmuth-archive/travistest
test/layer/resize_a4_landscape.clp
[ "Apache-2.0" ]
{% if nbRedisMessages is defined and nbRedisMessages > 0 %} <script> Materialize.toast('Messages in queue: {{ nbRedisMessages }}', 4000); </script> {% endif %} {% if nbRabbitMessages is defined and nbRabbitMessages > 0 %} <script> Materialize.toast('Messages in queue: {{ nbRabbitMessages }}', 4000); </script> {% endif %} {% if redisNotInstalled is defined and redisNotInstalled %} <div class="card-panel red darken-1 white-text"> {{ 'flashes.import.error.redis_enabled_not_installed'|trans|raw }} </div> {% endif %} {% if rabbitNotInstalled is defined and rabbitNotInstalled %} <div class="card-panel red darken-1 white-text"> {{ 'flashes.import.error.rabbit_enabled_not_installed'|trans|raw }} </div> {% endif %}
Twig
3
blessleroy/wallabag
src/Wallabag/ImportBundle/Resources/views/Import/check_queue.html.twig
[ "MIT" ]
# Copyright (C) 2002-2009, Parrot Foundation. # ** direction changing .loadlib 'math_ops' # # flow__go_east() # # go east. # befunge stack unchanged. # delta <- (1,0) # no return value. # .sub "flow__go_east" $P0 = get_global "status" $P0["dir"] = 1 set_global "status", $P0 .end # # flow__go_north() # # go north. # befunge stack unchanged. # delta <- (1,0) # no return value. # .sub "flow__go_north" $P0 = get_global "status" $P0["dir"] = 0 set_global "status", $P0 .end # # flow__go_south() # # go south. # befunge stack unchanged. # delta <- (-1,0) # no return value. # .sub "flow__go_south" $P0 = get_global "status" $P0["dir"] = 2 set_global "status", $P0 .end # # flow__go_west() # # go west. # befunge stack unchanged. # delta <- (-1,0) # no return value. # .sub "flow__go_west" $P0 = get_global "status" $P0["dir"] = 3 set_global "status", $P0 .end # # flow__go_away() # # go away. # befunge stack unchanged. # delta <- one of N,S,E,W # no return value # .sub "flow__go_away" rand $I0, 0, 4 $P0 = get_global "status" $P0["dir"] = $I0 set_global "status", $P0 .end # ** ifs & comparisons # # flow__compare() # # greater than. # befunge stack: # before: ... a b # after: ... a>b # result is either 1 or 0. # no return value. # .sub "flow__compare" .local int a, b b = stack__pop() a = stack__pop() if a > b goto FLOW__COMPARE__TRUE stack__push(0) .return() FLOW__COMPARE__TRUE: stack__push(1) .end # # flow__if_horizontal() # # east/west if. # befunge stack: # before: ... b # after: ... # delta <- if (b) (-1,0) else (1,0) # no return value. # .sub "flow__if_horizontal" $I0 = stack__pop() if $I0 == 0 goto FLOW__IF_HORIZONTAL__FALSE flow__go_west() .return() FLOW__IF_HORIZONTAL__FALSE: flow__go_east() .end # # flow__if_vertical() # # north/south if. # befunge stack: # before: ... b # after: ... # delta <- if (b) (0,-1) else (0,1) # no return value. # .sub "flow__if_vertical" $I0 = stack__pop() if $I0 == 0 goto FLOW__IF_HORIZONTAL__FALSE flow__go_north() .return() FLOW__IF_HORIZONTAL__FALSE: flow__go_south() .end # ** flag handling # # _flow__flag_set(val) # # set flag to val. # no return value. # .sub "_flow__flag_set" .param int val $P0 = get_global "status" $P0["flag"] = val set_global "status", $P0 .end # # flow__toggle_string_mode() # # toggle string mode. # befunge stack unchanged. # no return value. # .sub "flow__toggle_string_mode" $P0 = get_global "status" $I0 = $P0["flag"] if $I0 == 1 goto FLOW__TOGGLE_STRING_MODE__OFF _flow__flag_set(1) .return() FLOW__TOGGLE_STRING_MODE__OFF: _flow__flag_set(0) .end # # flow__trampoline(bool) # # set/remove trampoline flag. # befunge stack unchanged. # no return value. # .sub "flow__trampoline" .param int val if val == 0 goto FLOW__TRAMPOLINE_OFF _flow__flag_set(2) .return() FLOW__TRAMPOLINE_OFF: _flow__flag_set(0) .end # ** end # # flow__end() # # stop. # befunge stack unchanged. # end program. # no return value. # .sub "flow__end" end .end ######################################################################## # Local Variables: # mode: pir # fill-column: 100 # End: # vim: expandtab shiftwidth=4 ft=pir:
Parrot Internal Representation
4
winnit-myself/Wifie
examples/pir/befunge/flow.pir
[ "Artistic-2.0" ]
SECTIONS { . = 16K; stext = .; .text : { *(.init) *(.text) } . = ALIGN(4K); .data : { *(.data) *(.rodata*) } . = ALIGN(16); .bss : { *(.bss) } edata = .; } ENTRY(start)
Linker Script
3
Tuna0128/Tuna0128.github.io
tests/kvm-unit-tests/x86/realmode.lds
[ "BSD-2-Clause-FreeBSD" ]
(set-info :smt-lib-version 2.6) (set-logic QF_UFLRA) (set-info :source |CPAchecker with bounded model checking on SV-COMP14 program using MathSAT5, submitted by Philipp Wendler, http://cpachecker.sosy-lab.org|) (set-info :category "industrial") (define-fun _2 () Bool false) (push 1) (assert _2) (set-info :status unsat) (check-sat) (pop 1) (push 1) (assert _2) (set-info :status unsat) (check-sat) (pop 1) (exit)
SMT
3
livinlife6751/infer
sledge/test/smt/QF_UFLRA_inc/cpachecker-bmc-svcomp14/cpachecker-bmc.32_1_cilled_true-unreach-call_ok_nondet_linux-3.4-32_1-drivers--acpi--bgrt.ko-ldv_main0_sequence_infinite_withcheck_stateful.cil.out.c.smt2
[ "MIT" ]
interface LPLControl { async command void setMode(uint8_t mode); }
nesC
2
mtaghiza/tinyos-main-1
tos/chips/xe1205/LPLControl.nc
[ "BSD-3-Clause" ]
services = angular.module 'vespa.services' services.factory 'PositionManager', (SockJSService, $q, $cacheFactory)-> class PositionMgr constructor: (@id, defaults = {}, @local = {})-> @observers = {} @percolate = _.throttle @_percolate, 1000, leading: false @data = defaults @loading = false bind: (event, func, _this)-> @observers[event] ?= [] @observers[event].push([ _this, func ]) notify: (event)-> for observer in @observers[event] or [] do (observer)=> observer[1].apply observer[0], [@] get: (key)-> return @data[key] set: (obj, propagate=true)-> @update(obj, propagate) update: (data, propagate=true)=> changed = [] @data ?= {} for k, v of data if @data[k] != v @data[k] = v changed.push k # if it's a local only, don't mark changed. if @local != true and not _.includes @local, k nonlocal_changed = true if changed.length > 0 and propagate if nonlocal_changed and not @d @percolate() @notify('change') return changed Percolate changes to the server _percolate: => d = $q.defer() updates = _.omit @data, if @local != true then @local else {} updates.id = @id updates._id = @data._id req = domain: 'location' request: 'update' payload: updates SockJSService.send req, (result)=> if result.error d.reject result.payload else d.resolve result.payload return d.promise retrieve: ()=> if @d # currently loading return @d.promise @d = $q.defer() req = domain: 'location' request: 'get' payload: id: @id SockJSService.send req, (result)=> if result.error @d.reject result.payload @d = null else if result.payload? and not _.isEmpty(result.payload) # The server updated the location. Update the data # and notify anyone who might care. _.extend @data, result.payload @d.resolve remote_update: true data: @ @d = null else if @local != true # the defaults were better, send them to the server # use _percolate because we want to send immediately # and get the object id back so we can reference it properly. percolated = @_percolate() percolated.then (data)=> _.extend @data, data @d.resolve remote_update: false data: @ console.log "#{@id} resolved" @d = null return @d.promise When the factory function is called, actually return an object that can be used to retrieve positions. Retrieve a cached manager if possible. cache = $cacheFactory('position_managers', {capacity: 50}) return (id, defaults, locals)-> manager = cache.get(id) if not manager? manager = new PositionMgr(id, defaults, locals) cache.put(id, manager) return manager
Literate CoffeeScript
5
visigoth/V3SPA
src/js/services/position.litcoffee
[ "BSD-3-Clause" ]
% % This is an example on how to create user defined kinetic functions with the COPASI API % COPASI %!assert( swig_this(CRootContainer.getRoot()) != 0); % create a new datamodel dataModel = CRootContainer.addDatamodel(); %!assert( CRootContainer.getDatamodelList().size() == 1); % get the model from the datamodel model = dataModel.getModel(); %!assert( swig_this(model) != 0); % set the units for the model % we want seconds as the time unit % microliter as the volume units % and nanomole as the substance units model.setTimeUnit(CUnit_s); model.setVolumeUnit(CUnit_microl); model.setQuantityUnit(CUnit_nMol); % we have to keep a set of all the initial values that are changed during % the model building process % They are needed after the model has been built to make sure all initial % values are set to the correct initial value changedObjects=ObjectStdVector(); % create a compartment with the name cell and an initial volume of 5.0 % microliter compartment = model.createCompartment("cell", 5.0); object = compartment.getInitialValueReference(); %!assert( swig_this(object) != 0); changedObjects.push_back(object); %!assert( swig_this(compartment) != 0); %!assert( model.getCompartments().size() == 1); % create a new metabolite with the name S and an inital % concentration of 10 nanomol % the metabolite belongs to the compartment we created and is is to be % fixed S = model.createMetabolite("S", compartment.getObjectName(), 10.0, CModelEntity_Status_FIXED); object = S.getInitialConcentrationReference();; %!assert( swig_this(object) != 0); changedObjects.push_back(object); %!assert( swig_this(compartment) != 0); %!assert( swig_this(S) != 0); %!assert( model.getMetabolites().size() == 1); % create a second metabolite called P with an initial % concentration of 0. This metabolite is to be changed by reactions P = model.createMetabolite("P", compartment.getObjectName(), 0.0, CModelEntity_Status_REACTIONS); %!assert( swig_this(P) != 0); object = P.getInitialConcentrationReference();; %!assert( swig_this(object) != 0); changedObjects.push_back(object); %!assert( model.getMetabolites().size() == 2); % now we create a reaction reaction = model.createReaction("reaction"); %!assert( swig_this(reaction) != 0); %!assert( model.getReactions().size() == 1); % reaction converts S to P % we can set these on the chemical equation of the reaction chemEq = reaction.getChemEq(); % S is a substrate with stoichiometry 1 chemEq.addMetabolite(S.getKey(), 1.0, CChemEq_SUBSTRATE); % P is a product with stoichiometry 1 chemEq.addMetabolite(P.getKey(), 1.0, CChemEq_PRODUCT); %!assert( chemEq.getSubstrates().size() == 1); %!assert( chemEq.getProducts().size() == 1); % this reaction is to be irreversible reaction.setReversible(false); %!assert( reaction.isReversible() == false); MV = model.createModelValue("K", 42.0); % set the status to FIXED MV.setStatus(CModelEntity_Status_FIXED); %!assert( swig_this(MV) != 0); object = MV.getInitialValueReference(); %!assert( swig_this(object) != 0); changedObjects.push_back(object); %!assert( model.getModelValues().size() == 1); % now we ned to set a kinetic law on the reaction % for this we create a user defined function funDB = CRootContainer.getFunctionList(); %!assert( swig_this(funDB) != 0); fun = funDB.createFunction("My Rate Law",CEvaluationTree_UserDefined); rateLaw = funDB.findFunction("My Rate Law"); %!assert( swig_this(rateLaw) != 0); % now we create the formula for the function and set it on the function formula = "(1-0.4/(EXPONENTIALE^(temp-37)))*0.00001448471257*1.4^(temp-37)*substrate"; result = fun.setInfix(formula); % make the function irreversible fun.setReversible(TriFalse) % the formula string should have been parsed now % and COPASI should have determined that the formula string contained 2 parameters (temp and substrate) variables = fun.getVariables(); % per default the usage of those parameters will be set to VARIABLE index = fun.getVariableIndex("temp"); param = variables.getParameter(index); %!assert( param.getUsage() == CFunctionParameter_VARIABLE); % This is correct for temp, but substrate should get the usage SUBSTRATE in order % for us to use the function with the reaction created above % So we need to set the usage for "substrate" manually index = fun.getVariableIndex("substrate"); param = variables.getParameter(index); param.setUsage(CFunctionParameter_Role_SUBSTRATE); % set the rate law for the reaction reaction.setFunction(fun); %!assert( swig_this(reaction.getFunction()) != 0); % COPASI also needs to know what object it has to assocuiate with the individual function parameters % In our case we need to tell COPASI that substrate is to be replaced by the substrate of the reaction % and temp is to be replaced by the global parameter K reaction.setParameterObject("substrate", S); reaction.setParameterObject("temp", MV); % finally compile the model % compile needs to be done before updating all initial values for % the model with the refresh sequence model.compileIfNecessary(); % now that we are done building the model, we have to make sure all % initial values are updated according to their dependencies model.updateInitialValues(changedObjects); % save the model to a COPASI file % we save to a file named example1.cps % and we want to overwrite any existing file with the same name % Default tasks are automatically generated and will always appear in cps % file unless they are explicitley deleted before saving. dataModel.saveModel("example7.cps", true); % export the model to an SBML file % we save to a file named example1.xml, we want to overwrite any % existing file with the same name and we want SBML L2V3 try dataModel.exportSBML("example7.xml", true, 2, 3); catch error("Error. Exporting the model to SBML failed.\n"); quit(1); end_try_catch
Octave
5
SzVarga/COPASI
copasi/bindings/octave/examples/example7.oct
[ "Artistic-2.0" ]
/* * This file is generated by jOOQ. */ package com.baeldung.jooq.model.tables.records; import com.baeldung.jooq.model.tables.Article; import org.jooq.Field; import org.jooq.Record1; import org.jooq.Record4; import org.jooq.Row4; import org.jooq.impl.UpdatableRecordImpl; /** * This class is generated by jOOQ. */ @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class ArticleRecord extends UpdatableRecordImpl<ArticleRecord> implements Record4<Integer, String, String, Integer> { private static final long serialVersionUID = 1297442421; /** * Setter for <code>public.article.id</code>. */ public void setId(Integer value) { set(0, value); } /** * Getter for <code>public.article.id</code>. */ public Integer getId() { return (Integer) get(0); } /** * Setter for <code>public.article.title</code>. */ public void setTitle(String value) { set(1, value); } /** * Getter for <code>public.article.title</code>. */ public String getTitle() { return (String) get(1); } /** * Setter for <code>public.article.description</code>. */ public void setDescription(String value) { set(2, value); } /** * Getter for <code>public.article.description</code>. */ public String getDescription() { return (String) get(2); } /** * Setter for <code>public.article.author_id</code>. */ public void setAuthorId(Integer value) { set(3, value); } /** * Getter for <code>public.article.author_id</code>. */ public Integer getAuthorId() { return (Integer) get(3); } // ------------------------------------------------------------------------- // Primary key information // ------------------------------------------------------------------------- @Override public Record1<Integer> key() { return (Record1) super.key(); } // ------------------------------------------------------------------------- // Record4 type implementation // ------------------------------------------------------------------------- @Override public Row4<Integer, String, String, Integer> fieldsRow() { return (Row4) super.fieldsRow(); } @Override public Row4<Integer, String, String, Integer> valuesRow() { return (Row4) super.valuesRow(); } @Override public Field<Integer> field1() { return Article.ARTICLE.ID; } @Override public Field<String> field2() { return Article.ARTICLE.TITLE; } @Override public Field<String> field3() { return Article.ARTICLE.DESCRIPTION; } @Override public Field<Integer> field4() { return Article.ARTICLE.AUTHOR_ID; } @Override public Integer component1() { return getId(); } @Override public String component2() { return getTitle(); } @Override public String component3() { return getDescription(); } @Override public Integer component4() { return getAuthorId(); } @Override public Integer value1() { return getId(); } @Override public String value2() { return getTitle(); } @Override public String value3() { return getDescription(); } @Override public Integer value4() { return getAuthorId(); } @Override public ArticleRecord value1(Integer value) { setId(value); return this; } @Override public ArticleRecord value2(String value) { setTitle(value); return this; } @Override public ArticleRecord value3(String value) { setDescription(value); return this; } @Override public ArticleRecord value4(Integer value) { setAuthorId(value); return this; } @Override public ArticleRecord values(Integer value1, String value2, String value3, Integer value4) { value1(value1); value2(value2); value3(value3); value4(value4); return this; } // ------------------------------------------------------------------------- // Constructors // ------------------------------------------------------------------------- /** * Create a detached ArticleRecord */ public ArticleRecord() { super(Article.ARTICLE); } /** * Create a detached, initialised ArticleRecord */ public ArticleRecord(Integer id, String title, String description, Integer authorId) { super(Article.ARTICLE); set(0, id); set(1, title); set(2, description); set(3, authorId); } }
Java
4
DBatOWL/tutorials
persistence-modules/jooq/src/main/java/com/baeldung/jooq/model/tables/records/ArticleRecord.java
[ "MIT" ]
# List of HTTP headers pulled from: # http://annevankesteren.nl/2007/10/http-methods # # We match each side of the connection independently to avoid missing # large HTTP sessions where one side exceeds the DPD buffer size on # its own already. See https://github.com/zeek/zeek/issues/343. signature dpd_http_client { ip-proto == tcp payload /^[[:space:]]*(OPTIONS|GET|HEAD|POST|PUT|DELETE|TRACE|CONNECT|PROPFIND|PROPPATCH|MKCOL|COPY|MOVE|LOCK|UNLOCK|VERSION-CONTROL|REPORT|CHECKOUT|CHECKIN|UNCHECKOUT|MKWORKSPACE|UPDATE|LABEL|MERGE|BASELINE-CONTROL|MKACTIVITY|ORDERPATCH|ACL|PATCH|SEARCH|BCOPY|BDELETE|BMOVE|BPROPFIND|BPROPPATCH|NOTIFY|POLL|SUBSCRIBE|UNSUBSCRIBE|X-MS-ENUMATTS|RPC_OUT_DATA|RPC_IN_DATA)[[:space:]]*/ tcp-state originator enable "http" } signature dpd_http_server { ip-proto == tcp payload /^HTTP\/[0-9]/ tcp-state responder enable "http" }
Standard ML
4
yaplej/bro
scripts/base/protocols/http/dpd.sig
[ "Apache-2.0" ]
//tab_size=4 // Copyright 2021 nickmqb // SPDX-License-Identifier: Apache-2.0 generateFontData(sb StringBuilder) { img := new loadPng("font.png") data := new Array<byte>(512) for i := 0; i < 64 { for y := 0; y < 8 { val := 0 for x := 0; x < 8 { isSet := img.getPixel((i % 16) * 8 + x, (i / 16) * 8 + y).r > 128 val >>= 1 val |= isSet ? 0x80 : 0 } data[i * 8 + y] = cast(val, byte) } } sb.write("FONT_GLYPH_DATA $4096 := [\n") writeArray(data, sb) sb.write("]\n\n") }
mupad
3
nickmqb/fpga_craft
data_gen/font.mu
[ "Apache-2.0" ]
concrete QuestionHin of Question = CatHin ** QuestionHindustani with (ResHindustani = ResHin) ;
Grammatical Framework
1
daherb/gf-rgl
src/hindi/QuestionHin.gf
[ "BSD-3-Clause" ]
# Handles type declarations that really map down to array types of some kind, # and thus should be composed as an array-ish representation. role Perl6::Metamodel::ArrayType { has int $!is_array_type; has $!array_type; method is_array_type($obj) { $!is_array_type } method array_type($obj) { $!array_type } method set_array_type($obj, $type) { $!is_array_type := 1; $!array_type := $type; } } # vim: expandtab sw=4
Perl6
4
raydiak/rakudo
src/Perl6/Metamodel/ArrayType.nqp
[ "Artistic-2.0" ]
(fenced_code_block (info_string) @language (code_fence_content) @content) ((html_block) @html)
Scheme
0
yzia2000/nvim-treesitter
queries/markdown/injections.scm
[ "Apache-2.0" ]
<h2>Crisis Center</h2> <router-outlet></router-outlet>
HTML
0
John-Cassidy/angular
aio/content/examples/router/src/app/crisis-center/crisis-center/crisis-center.component.html
[ "MIT" ]
Import rockout Function UpdateGame () ' --------------------------------------------------------------------- ' Mouse position in virtual display, used universally... ' --------------------------------------------------------------------- RockOut.mx = VMouseX () RockOut.my = VMouseY () ' --------------------------------------------------------------------- ' Run appropriate update code for each game state... ' --------------------------------------------------------------------- Select GameSession.GameState ' ----------------------------------------------------------------- ' In menu... ' ----------------------------------------------------------------- Case STATE_MENU If RockOut.temp.Clicked (RockOut.mx, RockOut.my) GameSession.SetState STATE_STARTGAME Endif Case STATE_STARTGAME GameSession = New Session GameSession.SetState STATE_LOADLEVEL ' ----------------------------------------------------------------- ' Load level data... ' ----------------------------------------------------------------- Case STATE_LOADLEVEL GameSession.CurrentLevel.LoadLevel GameSession.SetState STATE_PLAYING ' ----------------------------------------------------------------- ' In game... ' ----------------------------------------------------------------- Case STATE_PLAYING ' ------------------------------------------------------------- ' Update shots and blocks... ' ------------------------------------------------------------- Shot.UpdateAll Block.UpdateAll ScoreBubble.UpdateAll ' ------------------------------------------------------------- ' Get keyboard input and move player... ' ------------------------------------------------------------- ' NB. Mouse input obtained from mx/my fields... CheckKeys GameSession.Player.UpdatePlayer STATE_PLAYING, KeyDown (KEY_LMB) ' Keeps input here ' ------------------------------------------------------------- ' Check for all sprite collisions... ' ------------------------------------------------------------- CheckCollisions ' ------------------------------------------------------------- ' Is player alive? ' ------------------------------------------------------------- If Not GameSession.Player.Alive GameSession.SetState STATE_GAMEOVER Else If LevelComplete GameSession.SetState STATE_LOADLEVEL Endif Endif ' ----------------------------------------------------------------- ' In paused state... ' ----------------------------------------------------------------- Case STATE_PAUSED If KeyHit (KEY_ESCAPE) or KeyHit (KEY_P) GameSession.SetState STATE_PLAYING Endif ' ----------------------------------------------------------------- ' On 'game over' screen... ' ----------------------------------------------------------------- Case STATE_GAMEOVER ' ------------------------------------------------------------- ' Only allow new game after short delay... ' ------------------------------------------------------------- For Local b:Block = Eachin GameSession.CurrentLevel.Blocks b.Fall Rnd (-4, 4), Rnd (-8) Next Shot.UpdateAll Block.UpdateAll ScoreBubble.UpdateAll GameSession.Player.UpdatePlayer STATE_GAMEOVER ' Includes mouse position... If Timer.NewGame.TimeOut (DELAY_NEWGAME) If KeyHit (KEY_LMB) GameSession.SetState STATE_MENU Endif Endif ' ----------------------------------------------------------------- ' Undefined state... ' ----------------------------------------------------------------- ' Default ' Print "Undefined state!" End End Function LevelComplete () If GameSession.CurrentLevel.Blocks.IsEmpty Then Return True End
Monkey
5
blitz-research/monkey
bananas/hitoro/rockout/imports/updategame.monkey
[ "Zlib" ]
static const uint32_t in_com1[512] = { 0xbef7c448, 0x3f3efa5a, 0xbddcbbc1, 0xbee3a3f1, 0xbee91134, 0xbe92943b, 0x3f3faed1, 0xbec66a88, 0xbe8a8d46, 0x3eddb102, 0x3f09cf11, 0xbf2ba2ba, 0x3f5a5ba1, 0xbeadc1f1, 0xbe8f8432, 0x3e8fa5c3, 0x3f3842ce, 0xbdb4ac1f, 0x3d840d55, 0xbf2f80d6, 0xbe976295, 0x3f09dec3, 0xbf4388ce, 0xbe4a92e4, 0x3e54ad5e, 0xbead5b5c, 0xbe9579e0, 0x3f5ebbb6, 0xbf1437d3, 0xbeff43b5, 0x3f1eeb9b, 0xbe33daf0, 0xbe7a8c5f, 0xbf084e59, 0x3f40ba33, 0xbe997c36, 0xbf4d626e, 0xbe5916fa, 0x3ef82855, 0xbe8d97e7, 0xbf0c62d5, 0x3ebed540, 0xbecbaa9e, 0x3f225660, 0xbd1d1cc3, 0x3f767dab, 0x3e851022, 0x3d7fb044, 0x3effb2fe, 0xbde5a1d6, 0x3e444f60, 0xbf5660c9, 0xbef5218e, 0xbe9efbe2, 0xbf198182, 0x3f0fa23f, 0x3eef285c, 0xbe3ae562, 0xbf1c1e0d, 0xbf1d1a31, 0x3f2c0904, 0xbf29591b, 0x3e96a037, 0xbe1f73f8, 0xbf4ab05d, 0x3e7d969a, 0xbee5fe28, 0x3ea9d254, 0x3d8f3ac0, 0x3e9ebe31, 0xbf6dab48, 0xbe452422, 0xbe68e595, 0x3f71c512, 0xbe182297, 0x3e3d9957, 0xbd10ea0b, 0x3ee6d63c, 0xbf0e0b73, 0xbf32c312, 0x3ed8034c, 0xbd2680ab, 0x3f472e3f, 0x3eed65bf, 0x3e091b10, 0xbf3564de, 0x3cb38ff4, 0xbf3145fc, 0x3f12e614, 0x3ebe70d6, 0xbf364e41, 0xbe22b375, 0x3e9c4484, 0xbedf6f13, 0xbe653ed9, 0x3f50f6b6, 0x3f3b4d3f, 0xbf14ce7a, 0x3e3ed438, 0x3e9b5dd4, 0xbf0032e0, 0x3e27c362, 0xbf3814eb, 0xbee7fff4, 0xbe33f62c, 0x3ec88dcb, 0x3e968134, 0xbf5a9e01, 0xbe49a020, 0x3f1c6117, 0x3f29121a, 0x3ec78ec7, 0xbdd0afd8, 0x3f7249c4, 0xbd986e6e, 0x3e982b88, 0xbe743f50, 0xbe8cde49, 0xbf6af33d, 0x3e223ad7, 0xbf6a175b, 0x3e3b5ddd, 0xbe4aedde, 0x3e9a860c, 0xbefdf152, 0xbe9e9440, 0x3ef9b3d2, 0x3f25f35f, 0x3f02f3c8, 0xbf1886c9, 0x3f1db074, 0xbd80509f, 0xbef9b510, 0x3f445dd4, 0xbecb6548, 0xbe01534e, 0xbf6b56ed, 0x3e3b41d0, 0xbeafb2f4, 0x3d78fe8b, 0xbe76f68a, 0xbeafec92, 0x3ebf3519, 0x3f53c537, 0x3e593d05, 0x3f334ef4, 0x3f116d9f, 0xbec0b93d, 0x3f1bacc3, 0xbeef3b9e, 0x3e89fc6d, 0xbf151baa, 0x3f3ef4e6, 0xbe73ec14, 0x3f186716, 0xbe387321, 0xbe84bd21, 0x3f21d063, 0xbf33e01f, 0x3e4ba707, 0xbdc58e31, 0xbea7d39b, 0x3ea89681, 0x3f6157b3, 0xbedec96b, 0x3db7a6bc, 0x3e6b0859, 0x3f5db187, 0xbee55e9a, 0xbf3415e5, 0x3f0b0864, 0x3dc79936, 0xbe0d4f6a, 0xbf0017bb, 0xbf097493, 0x3f2a40e4, 0xbf485ef8, 0x3e88fc44, 0x3f003fb7, 0x3e825c3a, 0x3f5a21f4, 0x3ecab4b5, 0xbe8fa944, 0xbe48e1d7, 0x3f1706f4, 0xbf3becaf, 0x3ea52d3b, 0x3dc25f7d, 0x3f3e9541, 0x3e3194fd, 0xbf0ff0f2, 0x3ea18b2a, 0x3f053098, 0x3ef63a5b, 0x3f2ed070, 0x3e366708, 0xbe84385c, 0xbda38cf7, 0x3e973b85, 0xbf6a9586, 0xbeb9612b, 0xbe6abf0d, 0x3f2323f2, 0x3f23f7f5, 0xbf1b6b63, 0xbf15e09f, 0xbebbe6d2, 0x3ec8e7e4, 0xbf37cdea, 0xbf1e3313, 0xbea38418, 0x3ccbaaa3, 0xbddc0d80, 0x3f2a18c7, 0x3f3d2dae, 0x3cf3ae83, 0x3ecef089, 0x3e893230, 0x3f5c231e, 0x3e232a5d, 0x3e0cf417, 0xbf06d6b9, 0xbf2cb43c, 0xbeff3bdf, 0xbe1fed1d, 0x3f39749f, 0xbeae8898, 0x3f1414f2, 0x3f0461da, 0xbd8bd132, 0xbf471ba6, 0xbeb3925b, 0x3ecc23cf, 0x3c93c3d9, 0xbcde726a, 0x3f6a9f8f, 0xbf172fa3, 0x3ca7064c, 0x3f4c4400, 0x3df3957d, 0xbf52cf47, 0xbdd17a2c, 0x3f06f984, 0xbe3b40d3, 0x3f0b5689, 0x3e8c3013, 0xbd9e31ac, 0x3f4a0813, 0x3f13e81c, 0xbea431a2, 0x3f402432, 0x3b9752a9, 0x3ee967c2, 0x3f1ab68f, 0xbf154f9b, 0xbe96d19f, 0x3f084e85, 0xbf0e97df, 0xbe8659f7, 0x3f14b2aa, 0xbf5924a3, 0xbd462ec1, 0xbe076634, 0x3f02b647, 0xbe5061b0, 0x3e6f0727, 0x3f56c521, 0x3ee520f9, 0xbe82de25, 0x3ec8bdfd, 0x3d065f3a, 0xbf6212fc, 0x3f292242, 0xbf3fbf4b, 0xbd4bf28e, 0x3b051feb, 0x3da317c4, 0x3ebb7ec3, 0x3f21413a, 0xbf2e26ba, 0x3f59fac8, 0x3ea33737, 0x3eb3ec16, 0x3e64aad8, 0xbde3974d, 0x3ebb297a, 0xbee0b002, 0xbf5033c0, 0xbe18a1d9, 0x3f6737c0, 0xbe4b97b4, 0x3eb331d6, 0xbeb9f0e0, 0x3eeea031, 0xbf1fb3da, 0x3f02f73c, 0xbf1594dc, 0xbf30cf03, 0x3df24dee, 0x3ed198d3, 0x3e0650bb, 0x3f48d8d6, 0xbe1b0297, 0x3f163948, 0xbe5091d4, 0x3f13965c, 0x3f2c6c58, 0xbed4a74e, 0x3ef8ba13, 0x3ef30b9c, 0xbf38a5d1, 0xbe0afaaa, 0xbf0e0cb0, 0xbd6b0a4b, 0xbf0a4060, 0x3f215580, 0xbd22efbc, 0xbee42685, 0x3f62b7dc, 0xbdff3f97, 0xbdd18b7f, 0xbef1bafa, 0xbf5dc0f0, 0xbe02a660, 0x3e70e40e, 0xbf286a8f, 0x3e8f5d1a, 0xbf288b22, 0x3f33d7a1, 0x3f197f65, 0x3dc791e3, 0x3ebdd4a0, 0xbeab31d8, 0xbf2cf429, 0x3f270014, 0x3da1643e, 0x3f5150b8, 0xbef89d76, 0x3e8c12a8, 0x3e13d164, 0xbf186a95, 0x3ebbe7ba, 0xbd47a9e1, 0x3f368b5c, 0xbeb1fe8c, 0xbf586509, 0xbecdfd41, 0x3d573b9d, 0xbf11864e, 0x3ee50dd6, 0x3e34d092, 0xbf2ae061, 0xbda4e859, 0xbf56609a, 0xbecd03bb, 0xbeb9f6e6, 0xbed28ba5, 0x3f278cc1, 0x3d0afb8d, 0x3f22305f, 0xbd8200fa, 0x3d604744, 0xbe907378, 0x3f74a92a, 0x3f3d517d, 0x3e1da011, 0xbde58447, 0x3f254892, 0x3f6ee5ac, 0x3dd3f845, 0xbe4d2b12, 0x3e8f43dd, 0xbe52afbc, 0xbf0a36bf, 0x3f42929d, 0x3e985111, 0x3ed020da, 0x3f3e16eb, 0xbdcffdd6, 0x3f05c74a, 0x3f6ec105, 0xbeb7d23c, 0x3d0e0017, 0xbc1f81ae, 0xbc9ee25e, 0x3f05b255, 0xbd5547c8, 0x3f59d9bf, 0xbe5de988, 0xbee39be7, 0xbda4b903, 0xbf5d8bda, 0xbe635fd8, 0xbf37f3fc, 0x3e88c81d, 0x3f1a3c70, 0xbf39f61b, 0xbe5175bb, 0x3e735118, 0xbf1c903a, 0x3e6ade7a, 0x3da278e2, 0x3d211d29, 0xbf782457, 0xbdce390e, 0x3dd77839, 0x3f7767b8, 0x3e58c48c, 0x3ea33c0a, 0x3f02c1d3, 0xbf421e20, 0x3e7ffc2b, 0x3e4969ef, 0x3e76ca74, 0xbf5e7a9d, 0x3ec4f273, 0x3df14d7c, 0xbf185216, 0x3ea009b0, 0xbf3b23fd, 0x3ed29a35, 0xbe313327, 0xbf6468f1, 0xbd8dc765, 0xbea60f6b, 0x3e9d9f85, 0x3f64a125, 0xbd49f147, 0xbf1c4cef, 0xbe913f1f, 0xbeccf23b, 0xbf1f2872, 0xbecd590b, 0xbedb570a, 0x3f14d270, 0xbf104951, 0x3f0485e8, 0xbf04ad45, 0xbea9a57e, 0x3f183c2d, 0xbe954690, 0x3e0f6714, 0xbf51639e, 0x3ef39b73, 0xbe4c3f50, 0xbf16de85, 0x3f2dd344, 0xbec784d6, 0x3f0159dc, 0xbf553924, 0xbe40b847, 0x3dff5ba0, 0xbdf725d3, 0xbf574599, 0xbc3ba88d, 0x3f0705b5, 0x3e9ce775, 0xbef5dcba, 0xbea6380f, 0x3f414ae8, 0x3e58cded, 0x3ecfb64c, 0x3f5f92cc, 0x3e2afa4f, 0x3e526096, 0xbe80e065, 0x3f484d40, 0x3f0800b6, 0x3f261735, 0xbf0e947d, 0xbf04ba03, 0x3c0770ac, 0x3d7c5cc6, 0x3f3538be, 0xbf0a1dee, 0x3ee74123, 0x3f62f35b, 0xbe4ac72d, 0xbecbbc64, 0xbe039996, 0x3e7273fa, 0xbe1c659b, 0xbf33468b, 0xbf27e8cd, 0xbe4fc16f, 0xbf398c38, 0x3f1b82fc, 0x3e8205f5, 0x3e044800, 0xbecde7b6, 0xbf570089, 0x3eae8dae, 0xbe97a4df, 0xbcbcf7ff, 0xbe5408f5, 0x3f6ea02e, 0x3f5729eb, 0x3dcdc506, 0x3e7ef631, 0x3ef0f746, 0x3e9c6331, 0xbf1dd817, 0xbf2fb300, 0x3e7138ed, 0xbf42ac79, 0xbec6f51a, 0x3eeb5bfa, 0xbe799884, 0x3d3abe22, 0xbf39393a, 0xbf2df7cd, 0xbde61564 }; static const uint32_t in_com2[512] = { 0x3e5e00a5, 0x3d5437b2, 0xbf76e473, 0xbe118adc, 0x3f55425f, 0x3e81e947, 0x3d942bcf, 0x3ef8f397, 0x3e9dc575, 0xbee0030b, 0xbe18b51f, 0xbf54dcaf, 0x3ec1bd88, 0x3e7e2057, 0xbf294c79, 0x3f192581, 0x3da2e4bd, 0xbebe0414, 0x3f618ee4, 0xbe907a1f, 0x3e8b37c1, 0xbe59e534, 0xbf6f5f57, 0x3da4bd24, 0xbe935cb1, 0xbea6b4d0, 0x3e93fd88, 0x3f5a5de8, 0xbd2ff045, 0x3f2e2134, 0xbe88c663, 0xbf2e67aa, 0xbf1a4367, 0x3f1783b7, 0xbf08da89, 0x3ce98d63, 0x3ec7db24, 0xbea8311b, 0xbf35c185, 0x3ef88a46, 0x3f720cea, 0x3e41c543, 0x3e3a0cf4, 0xbe457b96, 0xbf4cf78c, 0x3e0bfff3, 0x3eaef611, 0xbef20c08, 0xbe75e155, 0x3df7ee72, 0xbd8c4a97, 0xbf75f22d, 0x3f21ccfd, 0xbf24f711, 0x3e575516, 0xbec04d5f, 0x3e3c0ca5, 0x3f5718d6, 0x3ef531e5, 0x3e342d3b, 0x3ca93345, 0xbf64c525, 0xbeca25a1, 0xbe597e0d, 0x3f006222, 0xbd8bc6ea, 0xbf5c0623, 0xbd930e67, 0x3e53e097, 0x3f72fd98, 0x3d3a6f8f, 0xbe6e543c, 0x3ef24a32, 0x3ecfede5, 0xbf1e04f4, 0x3ef59c54, 0xbe7ebae6, 0x3de79930, 0x3f7630aa, 0x3cb780f1, 0xbf575ac3, 0xbe71643e, 0x3ef91965, 0x3bfe780e, 0x3ebd0b3f, 0x3ef7f7df, 0xbf3d91b1, 0xbe9181de, 0x3e32fa3e, 0x3f360331, 0x3d51b58b, 0x3f2de0cf, 0xbdab0058, 0xbf3b11ba, 0xbf2390d3, 0xbe66d72d, 0x3efd3ff1, 0x3adce576, 0xbeec08ff, 0x3f3c9c36, 0x3e18cc23, 0xbd4cd256, 0x3ed7fc0e, 0xbf64957a, 0xbf45f939, 0xbdc14c1d, 0xbef8db42, 0xbecabe7a, 0x3e8e8894, 0x3f628723, 0xbe53603b, 0x3e9f5eab, 0x3eb7d447, 0xbf6bfd1e, 0x3dc5c9f8, 0xbde04087, 0xbf7c063a, 0x3daee652, 0x3dd5360d, 0xbde6aee4, 0xbdb2c5fc, 0x3ef97a8b, 0x3d64bf98, 0xbf5df945, 0x3e14d648, 0xbf0daf08, 0x3f3fd56f, 0xbeaa9c62, 0x3e933f2d, 0x3f162506, 0xbf407553, 0xbdb884df, 0xbea9476e, 0xbf18f230, 0xbf2c4c22, 0xbe91827b, 0x3f6b435d, 0xbe44e4f4, 0x3b4c14bf, 0xbeb03927, 0x3ebbd495, 0xbf56e74b, 0xbea9f9d5, 0xbe661cb9, 0xbc9c7e12, 0xbf5eb4a6, 0x3d7e9c10, 0x3efa49c9, 0xbf0c583d, 0x3e38d98a, 0x3e5330e7, 0x3f4a4709, 0x3d3af836, 0xbf43e8ed, 0xbe580619, 0x3f1b3fa4, 0x3f6832f5, 0xbde339c4, 0x3ec8ff95, 0x3dd59500, 0xbf394555, 0xbf164840, 0x3eb9bdad, 0x3b833016, 0x3d6f881e, 0xbe3be86d, 0xbeced0b5, 0xbf64efbc, 0x3e9c0047, 0xbf2ebd7d, 0x3db269d3, 0xbf289565, 0xbe8efb83, 0x3f6639af, 0xbe41538e, 0xbe8e9f9b, 0xbe843545, 0x3f5b24af, 0xbe5bb4c8, 0xbec94064, 0xbf006fa9, 0x3e7bcf0a, 0xbe5999b1, 0xbf4d39ea, 0x3ccd5092, 0x3ebee80b, 0x3d542787, 0xbf6d14e6, 0xbeb15c65, 0xbeb379d0, 0xbf030cfa, 0x3f341fb5, 0xbef3995d, 0x3efc32c5, 0x3f236eb2, 0x3eb3e2c2, 0xbf6bc927, 0x3e2d025f, 0xbe915c7f, 0x3e53332b, 0x3f00f9ef, 0x3ef09c65, 0x3f207a15, 0x3eba4730, 0xbe1c4012, 0x3f7c2776, 0xbda42488, 0xbc2e5e2c, 0xbf018f9e, 0x3f1df091, 0xbf038b9a, 0xbea1415e, 0x3ed8c9a9, 0x3f2a7162, 0x3f041576, 0xbeaac2e0, 0xbe32ade9, 0xbf41dbd0, 0xbd754746, 0x3f20636b, 0xbe93b359, 0xbebd0a23, 0xbf4b5f21, 0xbec5debb, 0xbf122914, 0x3c605679, 0xbf4c7d00, 0x3e41b75e, 0x3f2f65c1, 0x3f20c0eb, 0xbe4e3992, 0xbe9e6436, 0xbf4d3b03, 0xbf171187, 0x3dbb895f, 0x3cd732a1, 0x3e9fbc96, 0x3bb29a7c, 0x3cd3fd58, 0x3f7320c3, 0x3e2b8649, 0x3c512791, 0x3f50d1b2, 0xbf0db533, 0x3f02e042, 0xbf585d57, 0x3d04fb35, 0xbe1c3135, 0x3e81e5c5, 0x3ec6faaf, 0xbe1b285b, 0x3f5f6a94, 0xbf603ab0, 0xbd535210, 0x3ee09804, 0xbe46e29e, 0x3ddc3691, 0x3f3d4e9e, 0x3de95fff, 0x3f2799dd, 0xbf1d26e6, 0xbef7f134, 0xbe5c0b10, 0x3f15d065, 0xbf19733a, 0x3ec750a4, 0x3d171705, 0xbf32cbf8, 0x3f16b69b, 0xbece99ea, 0xbddabbd7, 0x3f31356c, 0x3f153da6, 0xbe4abb88, 0x3f2e88ec, 0x3eca4e7c, 0xbed1f19f, 0x3f4c3daf, 0xbeb9e27a, 0xbe810fe3, 0xbf02ce4a, 0x3f238a3c, 0xbf132548, 0x3cab5f4c, 0xbf0c5a12, 0x3e80ff4b, 0x3d3672ff, 0x3f4bd4da, 0x3ef698b1, 0xbf38797e, 0xbe2dcacf, 0x3ef01fdf, 0xbed23785, 0xbd3dadd8, 0xbea7e6bc, 0xbf597c4d, 0x3f22059f, 0x3bfb0cd7, 0xbf3c2824, 0x3e7918a3, 0xbe339701, 0xbec2c324, 0xbeeaae04, 0x3f48ab8b, 0xbf44ad51, 0x3f04f16b, 0xbeb79cea, 0x3ddb5cab, 0xbe9b1cdc, 0x3d065eb5, 0xbdeb0012, 0x3f720c7a, 0x3f7ee196, 0x3da9dd25, 0x3c6e556e, 0x3d25680f, 0x3f3f968a, 0xbf1f57dd, 0xbd367f97, 0x3e661e5c, 0xbf597195, 0x3ef224d1, 0xbe38f86d, 0xbe18b4e5, 0x3e5cf6cc, 0x3efde4ae, 0x3f473c35, 0xbea364a0, 0xbf51052a, 0x3ef991fc, 0x3e70ec74, 0xbe4dd08b, 0x3f0c499a, 0xbe08f149, 0x3f09c763, 0x3f20502e, 0x3f0d56e5, 0x3ed22d8f, 0xbf39b00c, 0x3cbecff5, 0x3e2985f2, 0xbf7b1e84, 0xbc0dc8b9, 0x3dcfb535, 0x3db5863c, 0x3f2a350c, 0x3e3cc3e0, 0xbf37e97a, 0xbe3fdf8b, 0xbf0090fe, 0x3f55158f, 0x3e1044e7, 0x3e99a1b5, 0xbe385520, 0xbeb57451, 0xbf5dfdd7, 0xbe8119b4, 0x3f2c4a26, 0x3f074bab, 0x3ee7597f, 0x3f3b76b6, 0xbf2c0d5e, 0xbdb21a6c, 0x3d89946b, 0x3f24d97f, 0x3f3f8e32, 0x3e1e5245, 0x3d2069d6, 0xbf6f5eca, 0xbe99c3b7, 0xbe36e36e, 0x3d760be4, 0x3e56ba5d, 0x3e7d025c, 0xbeebba38, 0xbf5391b8, 0x3d86310b, 0xbecdf7d7, 0x3f2949b5, 0xbf21373c, 0x3d9f0f22, 0xbed2d015, 0x3f508624, 0x3ecd67fa, 0x3f238108, 0xbf372160, 0xbe3c7537, 0xbe5cc27a, 0xbf35c76a, 0xbf0cca71, 0x3ee047af, 0xbd1beeff, 0x3eda9505, 0xbdcc7779, 0x3ec688b4, 0x3f4f914d, 0x3e77d1d4, 0x3f01b62a, 0x3ecbcff1, 0x3f39b55e, 0x3edb0a86, 0x3f3804fa, 0xbcd3b45f, 0x3f0c1f5e, 0x3f5056bf, 0x3e939727, 0xbe1cb8c3, 0xbef62bdc, 0x3eea39da, 0xbe46d13d, 0x3dba0b1c, 0x3f5ced96, 0xbf5fef40, 0x3e93e4a2, 0xbc9e57d6, 0x3ec6f6f4, 0x3ea2dc20, 0x3f28decb, 0x3e58d1c4, 0xbf25ae0e, 0xbefbc66f, 0x3f01edb4, 0x3f2e466d, 0xbe4562e9, 0xbf033376, 0x3e25cdb6, 0x3e8e5338, 0xbf4bd04c, 0x3f4eb19e, 0xbe2f98c0, 0x3eec5e38, 0x3ea65ca1, 0x3d55de20, 0xbe96b638, 0xbf139267, 0xbf42aec6, 0x3e2ba5da, 0xbf129c95, 0xbe786ccc, 0x3f43cfe9, 0x3d239478, 0x3f07f989, 0xbf22cc2c, 0xbf0ef752, 0x3e07b499, 0x3f4e006a, 0xbd729969, 0x3f135f2c, 0xbf43a926, 0x3f197fc0, 0xbe0ded1c, 0x3e4542be, 0xbf2612db, 0x3ebf8900, 0x3f274909, 0x3de23cfe, 0xbea46fcd, 0x3ed237f4, 0x3f4d7892, 0xbe9474f5, 0xbd130232, 0xbd9eacf5, 0x3f79b95f, 0xbe4fb19b, 0xbe9e6fbb, 0xbe0a0dac, 0x3f6e9535, 0xbe07803c, 0x3ddf7970, 0xbf03922d, 0x3f2c457c, 0xbf054b46, 0xbe1b6a82, 0x3e91cc8e, 0x3f44168c, 0xbf0e57c7, 0xbf329bba, 0xbe134dc4, 0xbf115e39, 0x3ed328c1, 0xbf463fda, 0x3e61dcf2, 0xbf09a63f, 0xbe8005b7, 0x3f1f75dd, 0x3f1e853b, 0x3ea89cdc, 0xbeb1731a, 0xbe8a9536, 0xbe3aa3bb, 0x3f3edd94, 0xbf14c127, 0x3f3a5b02, 0x3f209ead, 0x3d937ec6, 0x3e88a8eb, 0x3d87f262, 0xbc94108f, 0xbdb4c8fe, 0x3f7e6447, 0x3f16b56b, 0xbe7ba7c4, 0xbf17911d, 0xbefc20fd, 0x3da23cf6, 0xbf501c8b, 0x3ea2468b, 0x3ef6d3ef, 0x3f1e1ee0, 0xbf11b46e, 0xbdd9dfa0, 0xbf083e54 }; static const uint32_t in_rot[1152] = { 0x3f14d753, 0xbf1753a9, 0xbf0f1dff, 0x3e89fc1c, 0xbf022739, 0x3f515ef6, 0xbf448698, 0xbf204d00, 0xbe0b8eff, 0xbed7e246, 0xbf4812d6, 0xbeeb6a56, 0xbd9b7458, 0x3f0924d0, 0xbf574a5c, 0x3f6750d0, 0xbea3af31, 0xbe9206b8, 0xbef5084c, 0x3dd394d8, 0xbf5f37d3, 0x3f543b7a, 0xbe8c4645, 0xbef997e3, 0xbe9418f6, 0xbf74c7b3, 0x3d3a3e58, 0x3f2f7838, 0xbe93a416, 0xbf2b29dd, 0x3f2b3b1b, 0x3f1cbad9, 0x3ed7e2ec, 0x3e935409, 0xbf3c793c, 0x3f1ccdac, 0x3d53c462, 0x3f79bb3b, 0x3e5ae8a1, 0xbf7f8e5e, 0x3d361202, 0x3d1e0d28, 0x3ce68463, 0xbe5c926e, 0x3f79e2fe, 0xbe7af3a8, 0xbf708f61, 0x3e745233, 0xbf34aa0e, 0x3eaeec3c, 0x3f1ee48f, 0xbf2a2d6e, 0xbc854d4b, 0xbf3f33c3, 0xbf2f37bf, 0xbe27a32a, 0xbf35dfe1, 0x3f0f217f, 0xbf3e4681, 0xbebc180d, 0xbeef919b, 0xbf260e8e, 0x3f19aa26, 0x3e2b94ad, 0xbf52879d, 0xbf0b3011, 0xbed4cba4, 0x3ee1e111, 0xbf4b9e22, 0x3f64db64, 0x3eb7eef7, 0xbe8926a5, 0xbea06506, 0xbf72c9ac, 0xbd496cbb, 0xbf27adf1, 0x3e81acef, 0xbf36406c, 0x3f3008b8, 0xbe4364ac, 0xbf335657, 0x3ec12126, 0xbf263533, 0xbf291318, 0x3e73f3e0, 0x3f41d4aa, 0xbf1bb62b, 0x3f651c54, 0x3d93a59d, 0x3ee16bd7, 0xbdf73711, 0x3ecc455b, 0x3f68b346, 0xbf7df4f7, 0xbda81be7, 0xbdc4031f, 0x3d15366e, 0xbf69ccfc, 0x3ecfb6bb, 0x3f5b6c5d, 0x3f0158aa, 0x3dcd5bf9, 0x3efdc9f5, 0xbf5caa45, 0x3dd9ba1b, 0x3e0f82e8, 0xbd29a6d6, 0xbf7d4066, 0xbef3ba3e, 0x3f4b1edb, 0x3ec23036, 0xbf6121be, 0xbedaf784, 0xbe561ac4, 0xbb720e24, 0xbeddbbc3, 0x3f66bef4, 0xbeb28adf, 0x3f68de11, 0x3e672667, 0xbe28d087, 0x3e35d2f0, 0xbf785f35, 0xbf6c3086, 0xbec0469f, 0x3db44f89, 0xbefe7716, 0x3f4bc114, 0xbeb0ff89, 0xbeb38eb8, 0x3e387ddc, 0x3f6b4335, 0x3f4b3191, 0x3f13f666, 0x3e4221d7, 0x3f4745c5, 0xbe3841b7, 0x3f19f67a, 0xbf1937f6, 0x3d9c4271, 0x3f4c273b, 0xbe41edae, 0xbf7b101a, 0xbd45d9bc, 0x3ec0b7ef, 0x3e9b002b, 0x3f60272f, 0xbf3f69d3, 0x3f2845ef, 0x3dc0d728, 0xbf0c0acd, 0xbf30aca4, 0x3ef2928e, 0xbf4c4742, 0xbf0c7b83, 0xbe7f37fc, 0xbf1a4510, 0x3f3bce43, 0x3ea0d22f, 0x3c2ba754, 0x3ecd3a85, 0xbf6a84d6, 0x3f632564, 0xbe491cda, 0x3ed5a941, 0xbebacced, 0xbf5a36bf, 0x3ebfc840, 0x3e90755d, 0xbef81e95, 0xbf53f66a, 0xbf17491c, 0xbf0cbb4d, 0xbf1723d2, 0xbee6de06, 0xbec37510, 0x3f4e8b1e, 0xbf2b3de5, 0x3f3e35ad, 0xbcb68779, 0xbf2404a2, 0xbee8b3ee, 0x3f1e6b21, 0x3ea7ede2, 0x3f1114a3, 0x3f417ce5, 0xbf31b80a, 0x3f2fed0f, 0xbe5b29c6, 0x3d23d523, 0x3e1e1381, 0x3f7cb955, 0xbe5db145, 0xbf769347, 0x3e233668, 0x3f79b7fd, 0xbe616237, 0xbba7461e, 0xbd849d6c, 0xbeb1e04b, 0xbf6f7b2d, 0xbf364cb8, 0x3f2c3d35, 0xbe4d6365, 0x3f32f6ba, 0x3f27362b, 0xbe94f922, 0xbedd99b9, 0xbe9b11ef, 0xbf595d7d, 0x3f319392, 0xbf36a506, 0xbdcaf205, 0xbf1365aa, 0xbf21c1bd, 0x3f04d576, 0x3f3f12a9, 0xbf2922b8, 0xbda40209, 0x3e68d876, 0x3e0f6f5f, 0x3f76b38f, 0xbf201edb, 0xbf3ccb58, 0x3e827283, 0xbee3b838, 0xbf307f27, 0x3f125bd3, 0x3e5f740c, 0x3f0921fb, 0x3f50d470, 0xbf5e6057, 0x3ef9a2d1, 0xbdb3d1b6, 0xbf21a0cc, 0xbd8f19a0, 0xbf45b7cc, 0x3f07cb81, 0xbf43f1e5, 0xbeba8fd5, 0xbf10d143, 0xbf23c5ea, 0x3f05333d, 0xbe3465cd, 0x3f75d949, 0x3e5d48d4, 0x3f274352, 0xbd4d4968, 0x3f416063, 0x3f3c7b2c, 0x3e8c6cb0, 0xbf1e5ec0, 0x3f4ff009, 0xbda47cbc, 0x3f13e713, 0xbe4e4a43, 0xbf77d8f4, 0x3e18349d, 0x3f0c22ec, 0xbe72d01a, 0xbf4d7532, 0xbf3c1cf7, 0x3f14a20e, 0x3eb3876c, 0x3edbe003, 0x3f4c643f, 0xbed81748, 0xbf06663c, 0xbe236126, 0xbf560517, 0x3f3d41b2, 0x3ef577b6, 0x3ef21c3a, 0xbf1fdd65, 0x3f4038f1, 0x3e5c2c6e, 0xbe8103a7, 0xbee89391, 0x3f5ac030, 0xbea1ddcc, 0x3eae8e53, 0xbf62a55b, 0xbf71f4bf, 0xbd044ea3, 0x3ea66e92, 0x3da865ec, 0x3f708548, 0x3eaa355f, 0x3e6ee6a8, 0xbf2b7ece, 0x3f347064, 0xbf4c505f, 0x3e90799d, 0x3f0848ea, 0xbf0e36ae, 0xbf2fcddb, 0xbef008f8, 0x3f27087a, 0xbf3b8d77, 0x3e466460, 0xbef8f56f, 0xbe55a900, 0x3f593a34, 0xbf14cc46, 0xbf25da17, 0xbefc1903, 0x3f41d091, 0xbc611c88, 0x3f2735fe, 0xbe72f7fe, 0x3f6cfc7d, 0x3e96c87e, 0xbf1bd3df, 0xbec18181, 0x3f3295c6, 0xbf25c583, 0x3e11caed, 0xbf3fa4ce, 0xbf27d8b9, 0xbf1ad005, 0x3ee77cc0, 0xbec6d471, 0x3f4899c0, 0x3ef84a70, 0x3d91d09f, 0x3f749bbe, 0xbe929156, 0x3f22d644, 0xbe877469, 0xbf398fc8, 0xbf44b141, 0xbe059c75, 0xbf2069bf, 0x3e347601, 0x3ee9beb3, 0x3f5f4081, 0xbf75d225, 0xbdebd4e8, 0x3e82376d, 0x3e5dba63, 0xbf61d95f, 0x3ed60f7c, 0x3e67b886, 0xbc740fe2, 0x3f795488, 0xbf0d6626, 0x3f525609, 0x3e1047db, 0xbf4d64b0, 0xbf11e099, 0x3e35f65c, 0xbd883549, 0xbf48fe99, 0x3f1da15c, 0xbf7dcae3, 0x3df9814c, 0x3d45af41, 0xbde73c52, 0xbf1b7309, 0xbf4955eb, 0xbf44397d, 0xbd3c95a9, 0xbf23fda8, 0xbec5785b, 0xbf43b96e, 0x3f0435a7, 0xbf03774a, 0x3f24966a, 0x3f117a2e, 0xbf1af108, 0x3f4b7821, 0xbd35ff75, 0xbf36649f, 0xbf0415fc, 0x3ef37df7, 0x3eb5ca3a, 0x3ea3946c, 0x3f60e8f7, 0x3ec83d92, 0xbf2d40db, 0xbf1fac15, 0xbf59f64f, 0xbc0ea526, 0xbf064073, 0x3eb2ef5e, 0x3f3c73d1, 0xbf1461d3, 0xbeec20e7, 0x3f388b56, 0xbf047087, 0x3eb5218f, 0xbec547f0, 0xbf5a2eea, 0xbf505060, 0xbf137a1c, 0xbd9e5b7a, 0x3ebc9f18, 0x3f2aa8a3, 0xbf25e1fb, 0xbe05a0bc, 0x3f3a289a, 0x3f2c8675, 0x3f6ba36f, 0xbe27a55c, 0x3eb5b3e4, 0x3f43fc86, 0x3de5a7f5, 0xbf222d32, 0xbf0e75f7, 0x3f1c0af4, 0xbf108a06, 0x3ea54a62, 0x3f48e783, 0x3f076fe4, 0x3f4619ae, 0xbf15eba7, 0x3e771935, 0xbeb92bb5, 0xbdc41f64, 0x3f6d68a9, 0xbf051e08, 0xbf4e0e30, 0xbe9261e1, 0x3e2ca6cb, 0xbf2a3027, 0xbf3a4db0, 0x3e8cad93, 0x3f3da1e9, 0xbf1ceed6, 0x3f72554e, 0xbdc5d5c9, 0x3e9d77e4, 0x3b809416, 0x3ef16223, 0x3f61c317, 0x3f579738, 0x3ef2ae21, 0xbe83a792, 0xbf0a0acc, 0x3f3e6254, 0xbeca543a, 0xbf5a9704, 0xbf053c84, 0xbbcb3302, 0x3eda29f2, 0xbf312f48, 0xbf1523d3, 0x3e990b2c, 0xbf0005a6, 0x3f501077, 0xbf21f8fb, 0x3e2fc07e, 0xbf415068, 0xbf4188bb, 0x3d986301, 0x3f267c83, 0x3e2bd58d, 0x3f7b7b19, 0x3da95181, 0x3ed869d2, 0x3f67fae4, 0xbc62eb28, 0xbd3f676b, 0x3bd5f822, 0xbf7fb702, 0xbf67b2d3, 0x3ed880f3, 0x3d38c005, 0x3f4b763f, 0x3edc5fa5, 0x3edb1268, 0x3eb7d0f2, 0x3e70a346, 0xbf673c3a, 0xbefa8965, 0x3f5f1ace, 0x3d041185, 0xbdc06790, 0x3f7d0837, 0xbdf445bc, 0x3f79c25c, 0x3dec118a, 0x3e3f3b18, 0x3e4b179a, 0xbdca62dd, 0xbf79a2cc, 0xbf0798a0, 0x3eaa0134, 0x3f47cf83, 0x3f16f34d, 0x3f4e3cc0, 0x3d6b3bf7, 0xbf1c16ae, 0x3efb3615, 0xbf1f5c22, 0xbed08311, 0x3f59106c, 0x3eadc79b, 0x3f12cc5f, 0xbd547259, 0x3f514eeb, 0x3f35fb09, 0x3f0710ed, 0xbeee20b3, 0x3dc98491, 0xbea05e46, 0x3f71cf50, 0xbf2cb14d, 0xbf3803f8, 0xbe2c1e94, 0x3f3b4b10, 0xbf1ee2da, 0xbe906503, 0xbee965f9, 0x3ef01791, 0xbf41aa52, 0xbe8358d9, 0x3f3ea21a, 0x3f1dbd7d, 0x3f5a2f20, 0x3ef32dac, 0xbe606b8e, 0xbf2e70d0, 0xbf3b582a, 0x3c3aefe3, 0x3f3ad7c4, 0xbf2e3ad0, 0xbd8364cc, 0x3d601e42, 0xbd10f4dc, 0x3f7f74b5, 0xbe9a6e1a, 0x3e312bd9, 0xbf700664, 0xbddd1250, 0x3f788b5a, 0x3e5b04c6, 0x3f728216, 0x3e29b2e1, 0xbe8c5ec1, 0x3ec1196b, 0xbed16bda, 0xbf54b859, 0x3e45f377, 0x3f6985c2, 0xbeb8fa5b, 0x3f67df83, 0xbcc7a873, 0x3ed8a0d1, 0xbe83df0c, 0xbf66c175, 0x3eb2377d, 0x3f51193d, 0xbeca8794, 0xbed70712, 0x3f0428f7, 0x3e345dc7, 0x3f568fa6, 0xbe01bdaa, 0xbef9344e, 0x3f5d43e0, 0xbef3bd73, 0x3f4b5564, 0x3ec14759, 0xbf5ec819, 0xbeba2e23, 0xbeaa28df, 0x3e159d44, 0xbedf6f8b, 0xbf63479f, 0xbf7939af, 0x3dc49454, 0xbe545fd6, 0x3e33f144, 0x3f6505c4, 0xbed257a6, 0x3e4002da, 0xbea706e2, 0xbf6d2fa3, 0x3f692ea7, 0xbe972f9c, 0x3e939e1f, 0xbebc3b44, 0xbf65e29d, 0x3e7794b6, 0x3ee3223b, 0x3f6104fd, 0x3e331999, 0xbf5a77e1, 0x3ef2a3c7, 0xbe5e519d, 0xbe8c253a, 0xbd58de79, 0x3f75d989, 0xbf4ee658, 0x3f12e493, 0xbe07b410, 0x3e568ddb, 0x3efb2068, 0x3f588c21, 0x3f0ce51b, 0x3f27e7e0, 0xbf044223, 0xbf0fd81c, 0xbed9f7de, 0xbf3591ac, 0x3ef44f66, 0xbf5dffc1, 0x3e11e854, 0xbf2cfb8d, 0xbe84492e, 0x3f30be3c, 0x3f7eba80, 0x3d93431f, 0xbd8cf9cf, 0x3d9e419c, 0xbdf9f45f, 0x3f7d50a1, 0x3d808306, 0xbf7d6b24, 0xbe020bda, 0xbf38178e, 0x3f11d733, 0xbecbbb4b, 0x3eb4bb93, 0xbe466a3a, 0xbf6a53d9, 0xbf193b66, 0xbf4c7711, 0xbd7cf6f3, 0x3f273de7, 0xbe1ffd64, 0x3f3da5e6, 0x3f1ab57a, 0x3f327039, 0xbec59838, 0xbee981b3, 0x3f332747, 0x3f0cbe51, 0xbf354283, 0xbf0068b9, 0xbefe7eda, 0xbe0f7102, 0xbf171314, 0x3f4b88fa, 0xbf312fa5, 0x3f21efe1, 0x3eb1f5e3, 0x3f2d0b65, 0xbe8276c9, 0x3f310557, 0xbeed4daa, 0xbf6062af, 0x3e0533db, 0x3f12aca5, 0xbed11ca2, 0xbf35e890, 0xbe9a83ba, 0xbe56f4fd, 0x3f6e130a, 0xbf73fd08, 0x3d2c8d1b, 0xbe997bf7, 0x3cc29200, 0xbf7a1046, 0xbe59e3b9, 0x3f2307d3, 0x3ea142e5, 0xbf34279e, 0xbf244e34, 0xbe941010, 0xbf35d24f, 0xbedabafb, 0x3f676ae1, 0x3c9355d2, 0x3e87ec42, 0xbec86ead, 0x3f618d75, 0xbdab2fd9, 0xbf6b7568, 0xbec4570a, 0x3f75e285, 0x3ce6aa33, 0xbe8dc523, 0xbe812c97, 0x3f1b7eb3, 0xbf40d618, 0x3f721f3c, 0xbc1fb389, 0xbea63693, 0xbe516f60, 0xbf4b5986, 0xbf126f94, 0xbd9e5fa7, 0xbf0d8bce, 0xbf546367, 0xbf510fbb, 0x3f033215, 0xbe87e5b8, 0x3f126a49, 0x3f28310b, 0xbefb7a26, 0xbec15881, 0x3f42e8ad, 0x3f06e920, 0xbf232d03, 0x3e4bdc60, 0xbf3e8ebe, 0xbf2bf11e, 0xbf1df3e7, 0x3ed1faf0, 0xbf198646, 0xbf4c97b2, 0x3d265cc2, 0xbf478408, 0x3f1261b1, 0xbe832d7b, 0x3e39e3d9, 0xbe3dbff3, 0xbf773c99, 0xbf08830e, 0x3f4ab589, 0x3e9870b3, 0x3f5813aa, 0x3f05898a, 0x3dfed302, 0xbd689535, 0x3ea2a370, 0xbf724e2b, 0xbcc24c89, 0xbd7047b2, 0x3f7f7cac, 0xbf2d9d10, 0xbf3b85e1, 0xbd7260d5, 0x3f3c092c, 0xbf2d9ffb, 0xbcb79439, 0x3f34c18c, 0xbecee261, 0x3f14df52, 0x3f2345f1, 0x3bc5909e, 0xbf452b2d, 0x3e9d8b89, 0x3f6a2a4a, 0x3e8620a6, 0x3e0bbf43, 0xbf5428fd, 0xbf0aefe3, 0xbf6f2456, 0x3d99002d, 0xbeb2ad50, 0x3ea8d680, 0x3f0dfae1, 0xbf439436, 0x3f4f0287, 0xbf007265, 0x3e9d47ea, 0xbcf2bac7, 0x3ef93802, 0x3f5f7f43, 0xbf166ad7, 0xbf370e9f, 0x3ec1ea21, 0xbcb18af1, 0x3f5034a0, 0x3f14d908, 0xbf62865a, 0xbe929624, 0x3ebc27c6, 0x3eee4211, 0xbf01abc0, 0x3f39d25f, 0x3f2bb64c, 0x3f37795e, 0x3e437a38, 0x3f24c497, 0xbede7e72, 0xbf214800, 0xbebcb4bb, 0x3f0ba20b, 0xbf40b518, 0x3d3ebb70, 0xbf19d363, 0xbf4c4872, 0x3f6ab78f, 0xbe952cd6, 0x3e8bb908, 0xbecafee7, 0xbf3e8d7f, 0x3f099060, 0x3ed4ba40, 0x3f1cb51d, 0x3f2c3ca0, 0x3f3aa7da, 0xbf2a96af, 0x3e1fc263, 0x3f0b3882, 0x3ed9f9a7, 0xbf3922c9, 0x3e479a59, 0x3f10c2f7, 0x3f4d2892, 0xbef40aac, 0xbf28d464, 0x3f14ce8a, 0x3f5b7257, 0xbefd965c, 0x3e105cd5, 0xbf7c66de, 0x3db9370e, 0x3e0fd9a8, 0xbe1be226, 0xbf552ecb, 0xbf0845ee, 0x3d8cfcf1, 0xbf0bd516, 0x3f55b5f9, 0x3e10923e, 0xbf7d4b7a, 0x3d0737f3, 0x3f6ba146, 0x3df3883e, 0xbebea902, 0x3ebaa2b6, 0x3da9e6c1, 0x3f6d7019, 0x3f435bce, 0xbf104fb7, 0xbea1ce24, 0x3ef62710, 0x3f526d75, 0xbe9c5037, 0x3edd1e14, 0x3da5fb14, 0x3f65f626, 0xbeaa2a86, 0xbf32c286, 0xbf224d31, 0xbf71700e, 0x3e75c6b6, 0x3e6b9316, 0xbc0ad6ad, 0x3f2ca48f, 0xbf3d0338, 0x3eddcd80, 0xbf135f58, 0x3f3188a7, 0x3e8c4dac, 0xbf261d69, 0xbf35b736, 0x3f5bcee3, 0x3efebda2, 0xbdfc9f84, 0x3f7f560c, 0xbbdcaa22, 0x3d92c03c, 0xbd305818, 0x3f3df474, 0x3f2b43d0, 0xbd6c3c20, 0xbf2b9c4a, 0x3f3d6358, 0xbee85241, 0xbcaf2169, 0x3f641023, 0xbdb2fd61, 0xbf7e6b51, 0xbd8c021d, 0x3f630766, 0xbddefc66, 0x3ee5ee1b, 0xbf02c571, 0xbe9b6ebd, 0x3f4de68d, 0x3ee4a8ec, 0xbf64a472, 0xbd5afe10, 0x3f3c0d4e, 0x3ea9ed76, 0x3f178126, 0x3e066f63, 0xbdee55f3, 0xbf7c0790, 0xbf26c814, 0xbf4236ff, 0x3b37909f, 0xbf3f493c, 0x3f2419c8, 0xbe33a04b, 0x3e0e5dba, 0xbf7c581e, 0xbdc29712, 0x3f4a92d7, 0x3e2c4e87, 0xbf167af9, 0x3f186ca2, 0x3bd63c9c, 0x3f4dab70, 0xbf61d7a7, 0x3ee6dae2, 0xbe0b0216, 0xbee076d9, 0xbf6445c5, 0xbde6b2f7, 0xbe2ff641, 0xbd23468c, 0x3f7bfc4b, 0xbf752428, 0x3e7be3ea, 0xbe19afe2, 0x3e2494ae, 0x3f63639e, 0x3edc56a3, 0x3e74e951, 0x3ec6a44a, 0xbf63dd79, 0xbe8cc4c7, 0xbf6f1af1, 0xbe699b19, 0xbf1d7e25, 0x3eb4dc35, 0xbf346db0, 0x3f3d26a5, 0xbd5ad87d, 0xbf2bf634, 0xbf4e73d9, 0xbf11f9d9, 0xbe2037ef, 0xbe88ffd6, 0x3f1680b6, 0xbf436df7, 0x3f06fc59, 0xbf12e332, 0xbf206efc, 0xbe87427f, 0xbe4c7ebf, 0x3f718df1, 0xbf0b5273, 0xbf46de5a, 0xbea23175, 0x3f4bd78e, 0xbf18e26b, 0x3dc5b64b, 0xbf1a0a59, 0x3ebb42f0, 0xbf35c579, 0x3e80f174, 0x3f6e36dd, 0x3e882334, 0x3f4209df, 0xbc9a37fe, 0xbf26eb28, 0xbf199d7a, 0x3f049561, 0xbf1c13b0, 0x3f14f534, 0x3f4e3ae0, 0x3de4a1b8, 0x3f0c88d7, 0xbe93556f, 0xbf48e566, 0xbdbf8012, 0xbf083516, 0x3f576e5b, 0x3f7c7cd3, 0x3d87297b, 0x3e1af2db, 0xbe0b5033, 0x3f5818f2, 0x3f04c23e, 0xbe9f5a3d, 0xbf733f85, 0x3c87eff9, 0xbd3c5b9c, 0xbb1c2545, 0xbf7fba7c, 0x3f73000e, 0xbe9f92fc, 0xbd2ff020, 0x3d95d81d, 0xbe8b6253, 0xbf759e33, 0x3f758978, 0xbe7a553e, 0x3e11ed62, 0xbe8bf420, 0xbf6e3f9f, 0x3e790f08, 0xbf4a6fda, 0x3d460d55, 0x3f1c362d, 0xbf01abca, 0x3f020d39, 0xbf325912, 0xbeaff66e, 0xbf5c2855, 0xbec1244f, 0xbe67395a, 0xbf74ad90, 0x3e40f65a, 0xbf2515f6, 0x3ada2091, 0xbf43a8be, 0x3f3aecee, 0xbe969437, 0xbf1de17c, 0x3f65e7a5, 0x3e4001e0, 0xbecbb89f, 0x3ee107be, 0xbed64c06, 0x3f4b757f, 0xbc8f79c1, 0xbf637d10, 0xbeeaa5c7, 0x3ee30189, 0x3e161427, 0xbf625fd5, 0xbddd4185, 0xbf7879fe, 0xbe5c3338, 0xbf63ca2c, 0x3e4374b4, 0xbed43a4d, 0xbeb3b4dd, 0xbe1a9bb0, 0xbf6c9392, 0x3f4649e4, 0xbf19f42c, 0xbe48a201, 0xbf06b320, 0xbf48d94c, 0x3ea7f305, 0xbf14c853, 0x3f234d50, 0x3f015a63, 0x3f47807f, 0x3f1d75ab, 0x3df5768b, 0xbe6ff540, 0x3eed4688, 0xbf5ac64f, 0xbf49f318, 0xbf1cb825, 0x3d5d5e6c, 0xbe33d101, 0x3e9e1bd1, 0x3f6f4d5d, 0xbf16c50a, 0x3f3a5903, 0xbeb3c455, 0x3eecacaf, 0x3f111959, 0xbf2e94c4, 0x3f16974e, 0x3ec249d2, 0x3f36d0a8, 0x3f29ddd3, 0xbf3b3430, 0xbe21cb56, 0x3c210830, 0xbf51cb0c, 0x3f12af60, 0xbf354c0e, 0xbed20bc5, 0xbf1318d7, 0x3f34b941, 0xbeccdeeb, 0xbf159b23, 0x3f267906, 0x3ec55b45, 0xbf27964a, 0xbd8fe86e, 0x3f637751, 0x3ee8226a, 0x3f41a5af, 0xbe7ecd8f, 0x3f1ad9fa, 0xbf575a91, 0x3f064624, 0xbe066acb, 0xbdc5ffff, 0x3dbe5b0d, 0x3f7daff5, 0x3f082f34, 0x3f58a83b, 0xbce11e40, 0x3e082ce5, 0xbf470c68, 0xbf1d57bb, 0xbf7bcef0, 0xbe37f3cd, 0x3c6c75fd, 0xbdf91a84, 0x3f1a466c, 0xbf49e7ad, 0xbf24a640, 0x3f16617f, 0xbefb7e31, 0x3f437a92, 0x3ee35e2d, 0xbef00004, 0xbd6a65a0, 0xbf2d32b3, 0xbf3bf242, 0xbf52d04d, 0x3f0fcc3a, 0x3da32149, 0xbf0ae81a, 0xbf3d2230, 0xbecca3ff, 0xbe29a30a, 0xbebea600, 0x3f69c667, 0x3eddb40f, 0xbf3db82b, 0x3f035b30, 0x3f575617, 0x3f096c8d, 0x3d8615d6, 0xbea5dea5, 0x3ece779f, 0x3f5b1728, 0xbd595f62, 0x3f33d322, 0xbf35b2eb, 0x3f7d8136, 0x3e03c3cf, 0x3d5a58c2, 0x3e03dd91, 0xbf333421, 0xbf33d1f4, 0x3eeac77f, 0xbf3a5c1b, 0xbf027b89, 0x3c5c6850, 0x3f1444b7, 0xbf50a9f4, 0x3f637900, 0x3ebbdb3a, 0x3e8cfdf3, 0x3d517f6c, 0x3f7e5d47, 0x3dce0a88, 0x3f791e94, 0xbd93eec5, 0x3e5fe9be, 0x3e65ec84, 0x3db19931, 0xbf78793b }; static const uint32_t ref_norm[128] = { 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000 }; static const uint32_t ref_inv[512] = { 0xbef7c448, 0xbf3efa5a, 0x3ddcbbc1, 0x3ee3a3f1, 0xbee91134, 0x3e92943b, 0xbf3faed1, 0x3ec66a88, 0xbe8a8d46, 0xbeddb102, 0xbf09cf11, 0x3f2ba2ba, 0x3f5a5ba1, 0x3eadc1f1, 0x3e8f8432, 0xbe8fa5c3, 0x3f3842ce, 0x3db4ac1f, 0xbd840d55, 0x3f2f80d6, 0xbe976295, 0xbf09dec3, 0x3f4388ce, 0x3e4a92e4, 0x3e54ad5e, 0x3ead5b5c, 0x3e9579e0, 0xbf5ebbb6, 0xbf1437d3, 0x3eff43b5, 0xbf1eeb9b, 0x3e33daf0, 0xbe7a8c5f, 0x3f084e59, 0xbf40ba33, 0x3e997c36, 0xbf4d626e, 0x3e5916fa, 0xbef82855, 0x3e8d97e7, 0xbf0c62d5, 0xbebed540, 0x3ecbaa9e, 0xbf225660, 0xbd1d1cc3, 0xbf767dab, 0xbe851022, 0xbd7fb044, 0x3effb2fe, 0x3de5a1d6, 0xbe444f60, 0x3f5660c9, 0xbef5218e, 0x3e9efbe2, 0x3f198182, 0xbf0fa23f, 0x3eef285c, 0x3e3ae562, 0x3f1c1e0d, 0x3f1d1a31, 0x3f2c0904, 0x3f29591b, 0xbe96a037, 0x3e1f73f8, 0xbf4ab05d, 0xbe7d969a, 0x3ee5fe28, 0xbea9d254, 0x3d8f3ac0, 0xbe9ebe31, 0x3f6dab48, 0x3e452422, 0xbe68e595, 0xbf71c512, 0x3e182297, 0xbe3d9957, 0xbd10ea0b, 0xbee6d63c, 0x3f0e0b73, 0x3f32c312, 0x3ed8034c, 0x3d2680ab, 0xbf472e3f, 0xbeed65bf, 0x3e091b10, 0x3f3564de, 0xbcb38ff4, 0x3f3145fc, 0x3f12e614, 0xbebe70d6, 0x3f364e41, 0x3e22b375, 0x3e9c4484, 0x3edf6f13, 0x3e653ed9, 0xbf50f6b6, 0x3f3b4d3f, 0x3f14ce7a, 0xbe3ed438, 0xbe9b5dd4, 0xbf0032e0, 0xbe27c362, 0x3f3814eb, 0x3ee7fff4, 0xbe33f62c, 0xbec88dcb, 0xbe968134, 0x3f5a9e01, 0xbe49a020, 0xbf1c6117, 0xbf29121a, 0xbec78ec7, 0xbdd0afd8, 0xbf7249c4, 0x3d986e6e, 0xbe982b88, 0xbe743f50, 0x3e8cde49, 0x3f6af33d, 0xbe223ad7, 0xbf6a175b, 0xbe3b5ddd, 0x3e4aedde, 0xbe9a860c, 0xbefdf152, 0x3e9e9440, 0xbef9b3d2, 0xbf25f35f, 0x3f02f3c8, 0x3f1886c9, 0xbf1db074, 0x3d80509f, 0xbef9b510, 0xbf445dd4, 0x3ecb6548, 0x3e01534e, 0xbf6b56ed, 0xbe3b41d0, 0x3eafb2f4, 0xbd78fe8b, 0xbe76f68a, 0x3eafec92, 0xbebf3519, 0xbf53c537, 0x3e593d05, 0xbf334ef4, 0xbf116d9f, 0x3ec0b93d, 0x3f1bacc3, 0x3eef3b9e, 0xbe89fc6d, 0x3f151baa, 0x3f3ef4e6, 0x3e73ec14, 0xbf186716, 0x3e387321, 0xbe84bd21, 0xbf21d063, 0x3f33e01f, 0xbe4ba707, 0xbdc58e31, 0x3ea7d39b, 0xbea89681, 0xbf6157b3, 0xbedec96b, 0xbdb7a6bc, 0xbe6b0859, 0xbf5db187, 0xbee55e9a, 0x3f3415e5, 0xbf0b0864, 0xbdc79936, 0xbe0d4f6a, 0x3f0017bb, 0x3f097493, 0xbf2a40e4, 0xbf485ef8, 0xbe88fc44, 0xbf003fb7, 0xbe825c3a, 0x3f5a21f4, 0xbecab4b5, 0x3e8fa944, 0x3e48e1d7, 0x3f1706f4, 0x3f3becaf, 0xbea52d3b, 0xbdc25f7d, 0x3f3e9541, 0xbe3194fd, 0x3f0ff0f2, 0xbea18b2a, 0x3f053098, 0xbef63a5b, 0xbf2ed070, 0xbe366708, 0xbe84385c, 0x3da38cf7, 0xbe973b85, 0x3f6a9586, 0xbeb9612b, 0x3e6abf0d, 0xbf2323f2, 0xbf23f7f5, 0xbf1b6b63, 0x3f15e09f, 0x3ebbe6d2, 0xbec8e7e4, 0xbf37cdea, 0x3f1e3313, 0x3ea38418, 0xbccbaaa3, 0xbddc0d80, 0xbf2a18c7, 0xbf3d2dae, 0xbcf3ae83, 0x3ecef089, 0xbe893230, 0xbf5c231e, 0xbe232a5d, 0x3e0cf417, 0x3f06d6b9, 0x3f2cb43c, 0x3eff3bdf, 0xbe1fed1d, 0xbf39749f, 0x3eae8898, 0xbf1414f2, 0x3f0461da, 0x3d8bd132, 0x3f471ba6, 0x3eb3925b, 0x3ecc23cf, 0xbc93c3d9, 0x3cde726a, 0xbf6a9f8f, 0xbf172fa3, 0xbca7064c, 0xbf4c4400, 0xbdf3957d, 0xbf52cf47, 0x3dd17a2c, 0xbf06f984, 0x3e3b40d3, 0x3f0b5689, 0xbe8c3013, 0x3d9e31ac, 0xbf4a0813, 0x3f13e81c, 0x3ea431a2, 0xbf402432, 0xbb9752a9, 0x3ee967c2, 0xbf1ab68f, 0x3f154f9b, 0x3e96d19f, 0x3f084e85, 0x3f0e97df, 0x3e8659f7, 0xbf14b2aa, 0xbf5924a3, 0x3d462ec1, 0x3e076634, 0xbf02b647, 0xbe5061b0, 0xbe6f0727, 0xbf56c521, 0xbee520f9, 0xbe82de25, 0xbec8bdfd, 0xbd065f3a, 0x3f6212fc, 0x3f292242, 0x3f3fbf4b, 0x3d4bf28e, 0xbb051feb, 0x3da317c4, 0xbebb7ec3, 0xbf21413a, 0x3f2e26ba, 0x3f59fac8, 0xbea33737, 0xbeb3ec16, 0xbe64aad8, 0xbde3974d, 0xbebb297a, 0x3ee0b002, 0x3f5033c0, 0xbe18a1d9, 0xbf6737c0, 0x3e4b97b4, 0xbeb331d6, 0xbeb9f0e0, 0xbeeea031, 0x3f1fb3da, 0xbf02f73c, 0xbf1594dc, 0x3f30cf03, 0xbdf24dee, 0xbed198d3, 0x3e0650bb, 0xbf48d8d6, 0x3e1b0297, 0xbf163948, 0xbe5091d4, 0xbf13965c, 0xbf2c6c58, 0x3ed4a74e, 0x3ef8ba13, 0xbef30b9c, 0x3f38a5d1, 0x3e0afaaa, 0xbf0e0cb0, 0x3d6b0a4b, 0x3f0a4060, 0xbf215580, 0xbd22efbc, 0x3ee42685, 0xbf62b7dc, 0x3dff3f97, 0xbdd18b7f, 0x3ef1bafa, 0x3f5dc0f0, 0x3e02a660, 0x3e70e40e, 0x3f286a8f, 0xbe8f5d1a, 0x3f288b22, 0x3f33d7a1, 0xbf197f65, 0xbdc791e3, 0xbebdd4a0, 0xbeab31d8, 0x3f2cf429, 0xbf270014, 0xbda1643e, 0x3f5150b8, 0x3ef89d76, 0xbe8c12a8, 0xbe13d164, 0xbf186a95, 0xbebbe7ba, 0x3d47a9e1, 0xbf368b5c, 0xbeb1fe8c, 0x3f586509, 0x3ecdfd41, 0xbd573b9d, 0xbf11864e, 0xbee50dd6, 0xbe34d092, 0x3f2ae061, 0xbda4e859, 0x3f56609a, 0x3ecd03bb, 0x3eb9f6e6, 0xbed28ba5, 0xbf278cc1, 0xbd0afb8d, 0xbf22305f, 0xbd8200fa, 0xbd604744, 0x3e907378, 0xbf74a92a, 0x3f3d517d, 0xbe1da011, 0x3de58447, 0xbf254892, 0x3f6ee5ac, 0xbdd3f845, 0x3e4d2b12, 0xbe8f43dd, 0xbe52afbc, 0x3f0a36bf, 0xbf42929d, 0xbe985111, 0x3ed020da, 0xbf3e16eb, 0x3dcffdd6, 0xbf05c74a, 0x3f6ec105, 0x3eb7d23c, 0xbd0e0017, 0x3c1f81ae, 0xbc9ee25e, 0xbf05b255, 0x3d5547c8, 0xbf59d9bf, 0xbe5de988, 0x3ee39be7, 0x3da4b903, 0x3f5d8bda, 0xbe635fd8, 0x3f37f3fc, 0xbe88c81d, 0xbf1a3c70, 0xbf39f61b, 0x3e5175bb, 0xbe735118, 0x3f1c903a, 0x3e6ade7a, 0xbda278e2, 0xbd211d29, 0x3f782457, 0xbdce390e, 0xbdd77839, 0xbf7767b8, 0xbe58c48c, 0x3ea33c0a, 0xbf02c1d3, 0x3f421e20, 0xbe7ffc2b, 0x3e4969ef, 0xbe76ca74, 0x3f5e7a9d, 0xbec4f273, 0x3df14d7c, 0x3f185216, 0xbea009b0, 0x3f3b23fd, 0x3ed29a35, 0x3e313327, 0x3f6468f1, 0x3d8dc765, 0xbea60f6b, 0xbe9d9f85, 0xbf64a125, 0x3d49f147, 0xbf1c4cef, 0x3e913f1f, 0x3eccf23b, 0x3f1f2872, 0xbecd590b, 0x3edb570a, 0xbf14d270, 0x3f104951, 0x3f0485e8, 0x3f04ad45, 0x3ea9a57e, 0xbf183c2d, 0xbe954690, 0xbe0f6714, 0x3f51639e, 0xbef39b73, 0xbe4c3f50, 0x3f16de85, 0xbf2dd344, 0x3ec784d6, 0x3f0159dc, 0x3f553924, 0x3e40b847, 0xbdff5ba0, 0xbdf725d3, 0x3f574599, 0x3c3ba88d, 0xbf0705b5, 0x3e9ce775, 0x3ef5dcba, 0x3ea6380f, 0xbf414ae8, 0x3e58cded, 0xbecfb64c, 0xbf5f92cc, 0xbe2afa4f, 0x3e526096, 0x3e80e065, 0xbf484d40, 0xbf0800b6, 0x3f261735, 0x3f0e947d, 0x3f04ba03, 0xbc0770ac, 0x3d7c5cc6, 0xbf3538be, 0x3f0a1dee, 0xbee74123, 0x3f62f35b, 0x3e4ac72d, 0x3ecbbc64, 0x3e039996, 0x3e7273fa, 0x3e1c659b, 0x3f33468b, 0x3f27e8cd, 0xbe4fc16f, 0x3f398c38, 0xbf1b82fc, 0xbe8205f5, 0x3e044800, 0x3ecde7b6, 0x3f570089, 0xbeae8dae, 0xbe97a4df, 0x3cbcf7ff, 0x3e5408f5, 0xbf6ea02e, 0x3f5729eb, 0xbdcdc506, 0xbe7ef631, 0xbef0f746, 0x3e9c6331, 0x3f1dd817, 0x3f2fb300, 0xbe7138ed, 0xbf42ac79, 0x3ec6f51a, 0xbeeb5bfa, 0x3e799884, 0x3d3abe22, 0x3f39393a, 0x3f2df7cd, 0x3de61564 }; static const uint32_t ref_conj[512] = { 0xbef7c448, 0xbf3efa5a, 0x3ddcbbc1, 0x3ee3a3f1, 0xbee91134, 0x3e92943b, 0xbf3faed1, 0x3ec66a88, 0xbe8a8d46, 0xbeddb102, 0xbf09cf11, 0x3f2ba2ba, 0x3f5a5ba1, 0x3eadc1f1, 0x3e8f8432, 0xbe8fa5c3, 0x3f3842ce, 0x3db4ac1f, 0xbd840d55, 0x3f2f80d6, 0xbe976295, 0xbf09dec3, 0x3f4388ce, 0x3e4a92e4, 0x3e54ad5e, 0x3ead5b5c, 0x3e9579e0, 0xbf5ebbb6, 0xbf1437d3, 0x3eff43b5, 0xbf1eeb9b, 0x3e33daf0, 0xbe7a8c5f, 0x3f084e59, 0xbf40ba33, 0x3e997c36, 0xbf4d626e, 0x3e5916fa, 0xbef82855, 0x3e8d97e7, 0xbf0c62d5, 0xbebed540, 0x3ecbaa9e, 0xbf225660, 0xbd1d1cc3, 0xbf767dab, 0xbe851022, 0xbd7fb044, 0x3effb2fe, 0x3de5a1d6, 0xbe444f60, 0x3f5660c9, 0xbef5218e, 0x3e9efbe2, 0x3f198182, 0xbf0fa23f, 0x3eef285c, 0x3e3ae562, 0x3f1c1e0d, 0x3f1d1a31, 0x3f2c0904, 0x3f29591b, 0xbe96a037, 0x3e1f73f8, 0xbf4ab05d, 0xbe7d969a, 0x3ee5fe28, 0xbea9d254, 0x3d8f3ac0, 0xbe9ebe31, 0x3f6dab48, 0x3e452422, 0xbe68e595, 0xbf71c512, 0x3e182297, 0xbe3d9957, 0xbd10ea0b, 0xbee6d63c, 0x3f0e0b73, 0x3f32c312, 0x3ed8034c, 0x3d2680ab, 0xbf472e3f, 0xbeed65bf, 0x3e091b10, 0x3f3564de, 0xbcb38ff4, 0x3f3145fc, 0x3f12e614, 0xbebe70d6, 0x3f364e41, 0x3e22b375, 0x3e9c4484, 0x3edf6f13, 0x3e653ed9, 0xbf50f6b6, 0x3f3b4d3f, 0x3f14ce7a, 0xbe3ed438, 0xbe9b5dd4, 0xbf0032e0, 0xbe27c362, 0x3f3814eb, 0x3ee7fff4, 0xbe33f62c, 0xbec88dcb, 0xbe968134, 0x3f5a9e01, 0xbe49a020, 0xbf1c6117, 0xbf29121a, 0xbec78ec7, 0xbdd0afd8, 0xbf7249c4, 0x3d986e6e, 0xbe982b88, 0xbe743f50, 0x3e8cde49, 0x3f6af33d, 0xbe223ad7, 0xbf6a175b, 0xbe3b5ddd, 0x3e4aedde, 0xbe9a860c, 0xbefdf152, 0x3e9e9440, 0xbef9b3d2, 0xbf25f35f, 0x3f02f3c8, 0x3f1886c9, 0xbf1db074, 0x3d80509f, 0xbef9b510, 0xbf445dd4, 0x3ecb6548, 0x3e01534e, 0xbf6b56ed, 0xbe3b41d0, 0x3eafb2f4, 0xbd78fe8b, 0xbe76f68a, 0x3eafec92, 0xbebf3519, 0xbf53c537, 0x3e593d05, 0xbf334ef4, 0xbf116d9f, 0x3ec0b93d, 0x3f1bacc3, 0x3eef3b9e, 0xbe89fc6d, 0x3f151baa, 0x3f3ef4e6, 0x3e73ec14, 0xbf186716, 0x3e387321, 0xbe84bd21, 0xbf21d063, 0x3f33e01f, 0xbe4ba707, 0xbdc58e31, 0x3ea7d39b, 0xbea89681, 0xbf6157b3, 0xbedec96b, 0xbdb7a6bc, 0xbe6b0859, 0xbf5db187, 0xbee55e9a, 0x3f3415e5, 0xbf0b0864, 0xbdc79936, 0xbe0d4f6a, 0x3f0017bb, 0x3f097493, 0xbf2a40e4, 0xbf485ef8, 0xbe88fc44, 0xbf003fb7, 0xbe825c3a, 0x3f5a21f4, 0xbecab4b5, 0x3e8fa944, 0x3e48e1d7, 0x3f1706f4, 0x3f3becaf, 0xbea52d3b, 0xbdc25f7d, 0x3f3e9541, 0xbe3194fd, 0x3f0ff0f2, 0xbea18b2a, 0x3f053098, 0xbef63a5b, 0xbf2ed070, 0xbe366708, 0xbe84385c, 0x3da38cf7, 0xbe973b85, 0x3f6a9586, 0xbeb9612b, 0x3e6abf0d, 0xbf2323f2, 0xbf23f7f5, 0xbf1b6b63, 0x3f15e09f, 0x3ebbe6d2, 0xbec8e7e4, 0xbf37cdea, 0x3f1e3313, 0x3ea38418, 0xbccbaaa3, 0xbddc0d80, 0xbf2a18c7, 0xbf3d2dae, 0xbcf3ae83, 0x3ecef089, 0xbe893230, 0xbf5c231e, 0xbe232a5d, 0x3e0cf417, 0x3f06d6b9, 0x3f2cb43c, 0x3eff3bdf, 0xbe1fed1d, 0xbf39749f, 0x3eae8898, 0xbf1414f2, 0x3f0461da, 0x3d8bd132, 0x3f471ba6, 0x3eb3925b, 0x3ecc23cf, 0xbc93c3d9, 0x3cde726a, 0xbf6a9f8f, 0xbf172fa3, 0xbca7064c, 0xbf4c4400, 0xbdf3957d, 0xbf52cf47, 0x3dd17a2c, 0xbf06f984, 0x3e3b40d3, 0x3f0b5689, 0xbe8c3013, 0x3d9e31ac, 0xbf4a0813, 0x3f13e81c, 0x3ea431a2, 0xbf402432, 0xbb9752a9, 0x3ee967c2, 0xbf1ab68f, 0x3f154f9b, 0x3e96d19f, 0x3f084e85, 0x3f0e97df, 0x3e8659f7, 0xbf14b2aa, 0xbf5924a3, 0x3d462ec1, 0x3e076634, 0xbf02b647, 0xbe5061b0, 0xbe6f0727, 0xbf56c521, 0xbee520f9, 0xbe82de25, 0xbec8bdfd, 0xbd065f3a, 0x3f6212fc, 0x3f292242, 0x3f3fbf4b, 0x3d4bf28e, 0xbb051feb, 0x3da317c4, 0xbebb7ec3, 0xbf21413a, 0x3f2e26ba, 0x3f59fac8, 0xbea33737, 0xbeb3ec16, 0xbe64aad8, 0xbde3974d, 0xbebb297a, 0x3ee0b002, 0x3f5033c0, 0xbe18a1d9, 0xbf6737c0, 0x3e4b97b4, 0xbeb331d6, 0xbeb9f0e0, 0xbeeea031, 0x3f1fb3da, 0xbf02f73c, 0xbf1594dc, 0x3f30cf03, 0xbdf24dee, 0xbed198d3, 0x3e0650bb, 0xbf48d8d6, 0x3e1b0297, 0xbf163948, 0xbe5091d4, 0xbf13965c, 0xbf2c6c58, 0x3ed4a74e, 0x3ef8ba13, 0xbef30b9c, 0x3f38a5d1, 0x3e0afaaa, 0xbf0e0cb0, 0x3d6b0a4b, 0x3f0a4060, 0xbf215580, 0xbd22efbc, 0x3ee42685, 0xbf62b7dc, 0x3dff3f97, 0xbdd18b7f, 0x3ef1bafa, 0x3f5dc0f0, 0x3e02a660, 0x3e70e40e, 0x3f286a8f, 0xbe8f5d1a, 0x3f288b22, 0x3f33d7a1, 0xbf197f65, 0xbdc791e3, 0xbebdd4a0, 0xbeab31d8, 0x3f2cf429, 0xbf270014, 0xbda1643e, 0x3f5150b8, 0x3ef89d76, 0xbe8c12a8, 0xbe13d164, 0xbf186a95, 0xbebbe7ba, 0x3d47a9e1, 0xbf368b5c, 0xbeb1fe8c, 0x3f586509, 0x3ecdfd41, 0xbd573b9d, 0xbf11864e, 0xbee50dd6, 0xbe34d092, 0x3f2ae061, 0xbda4e859, 0x3f56609a, 0x3ecd03bb, 0x3eb9f6e6, 0xbed28ba5, 0xbf278cc1, 0xbd0afb8d, 0xbf22305f, 0xbd8200fa, 0xbd604744, 0x3e907378, 0xbf74a92a, 0x3f3d517d, 0xbe1da011, 0x3de58447, 0xbf254892, 0x3f6ee5ac, 0xbdd3f845, 0x3e4d2b12, 0xbe8f43dd, 0xbe52afbc, 0x3f0a36bf, 0xbf42929d, 0xbe985111, 0x3ed020da, 0xbf3e16eb, 0x3dcffdd6, 0xbf05c74a, 0x3f6ec105, 0x3eb7d23c, 0xbd0e0017, 0x3c1f81ae, 0xbc9ee25e, 0xbf05b255, 0x3d5547c8, 0xbf59d9bf, 0xbe5de988, 0x3ee39be7, 0x3da4b903, 0x3f5d8bda, 0xbe635fd8, 0x3f37f3fc, 0xbe88c81d, 0xbf1a3c70, 0xbf39f61b, 0x3e5175bb, 0xbe735118, 0x3f1c903a, 0x3e6ade7a, 0xbda278e2, 0xbd211d29, 0x3f782457, 0xbdce390e, 0xbdd77839, 0xbf7767b8, 0xbe58c48c, 0x3ea33c0a, 0xbf02c1d3, 0x3f421e20, 0xbe7ffc2b, 0x3e4969ef, 0xbe76ca74, 0x3f5e7a9d, 0xbec4f273, 0x3df14d7c, 0x3f185216, 0xbea009b0, 0x3f3b23fd, 0x3ed29a35, 0x3e313327, 0x3f6468f1, 0x3d8dc765, 0xbea60f6b, 0xbe9d9f85, 0xbf64a125, 0x3d49f147, 0xbf1c4cef, 0x3e913f1f, 0x3eccf23b, 0x3f1f2872, 0xbecd590b, 0x3edb570a, 0xbf14d270, 0x3f104951, 0x3f0485e8, 0x3f04ad45, 0x3ea9a57e, 0xbf183c2d, 0xbe954690, 0xbe0f6714, 0x3f51639e, 0xbef39b73, 0xbe4c3f50, 0x3f16de85, 0xbf2dd344, 0x3ec784d6, 0x3f0159dc, 0x3f553924, 0x3e40b847, 0xbdff5ba0, 0xbdf725d3, 0x3f574599, 0x3c3ba88d, 0xbf0705b5, 0x3e9ce775, 0x3ef5dcba, 0x3ea6380f, 0xbf414ae8, 0x3e58cded, 0xbecfb64c, 0xbf5f92cc, 0xbe2afa4f, 0x3e526096, 0x3e80e065, 0xbf484d40, 0xbf0800b6, 0x3f261735, 0x3f0e947d, 0x3f04ba03, 0xbc0770ac, 0x3d7c5cc6, 0xbf3538be, 0x3f0a1dee, 0xbee74123, 0x3f62f35b, 0x3e4ac72d, 0x3ecbbc64, 0x3e039996, 0x3e7273fa, 0x3e1c659b, 0x3f33468b, 0x3f27e8cd, 0xbe4fc16f, 0x3f398c38, 0xbf1b82fc, 0xbe8205f5, 0x3e044800, 0x3ecde7b6, 0x3f570089, 0xbeae8dae, 0xbe97a4df, 0x3cbcf7ff, 0x3e5408f5, 0xbf6ea02e, 0x3f5729eb, 0xbdcdc506, 0xbe7ef631, 0xbef0f746, 0x3e9c6331, 0x3f1dd817, 0x3f2fb300, 0xbe7138ed, 0xbf42ac79, 0x3ec6f51a, 0xbeeb5bfa, 0x3e799884, 0x3d3abe22, 0x3f39393a, 0x3f2df7cd, 0x3de61564 }; static const uint32_t ref_normalize[512] = { 0xbef7c448, 0x3f3efa5a, 0xbddcbbc1, 0xbee3a3f1, 0xbee91134, 0xbe92943b, 0x3f3faed1, 0xbec66a88, 0xbe8a8d46, 0x3eddb102, 0x3f09cf11, 0xbf2ba2ba, 0x3f5a5ba1, 0xbeadc1f1, 0xbe8f8432, 0x3e8fa5c3, 0x3f3842ce, 0xbdb4ac1f, 0x3d840d55, 0xbf2f80d6, 0xbe976295, 0x3f09dec3, 0xbf4388ce, 0xbe4a92e4, 0x3e54ad5e, 0xbead5b5c, 0xbe9579e0, 0x3f5ebbb6, 0xbf1437d3, 0xbeff43b5, 0x3f1eeb9b, 0xbe33daf0, 0xbe7a8c5f, 0xbf084e59, 0x3f40ba33, 0xbe997c36, 0xbf4d626e, 0xbe5916fa, 0x3ef82855, 0xbe8d97e7, 0xbf0c62d5, 0x3ebed540, 0xbecbaa9e, 0x3f225660, 0xbd1d1cc3, 0x3f767dab, 0x3e851022, 0x3d7fb044, 0x3effb2fe, 0xbde5a1d6, 0x3e444f60, 0xbf5660c9, 0xbef5218e, 0xbe9efbe2, 0xbf198182, 0x3f0fa23f, 0x3eef285c, 0xbe3ae562, 0xbf1c1e0d, 0xbf1d1a31, 0x3f2c0904, 0xbf29591b, 0x3e96a037, 0xbe1f73f8, 0xbf4ab05d, 0x3e7d969a, 0xbee5fe28, 0x3ea9d254, 0x3d8f3ac0, 0x3e9ebe31, 0xbf6dab48, 0xbe452422, 0xbe68e595, 0x3f71c512, 0xbe182297, 0x3e3d9957, 0xbd10ea0b, 0x3ee6d63c, 0xbf0e0b73, 0xbf32c312, 0x3ed8034c, 0xbd2680ab, 0x3f472e3f, 0x3eed65bf, 0x3e091b10, 0xbf3564de, 0x3cb38ff4, 0xbf3145fc, 0x3f12e614, 0x3ebe70d6, 0xbf364e41, 0xbe22b375, 0x3e9c4484, 0xbedf6f13, 0xbe653ed9, 0x3f50f6b6, 0x3f3b4d3f, 0xbf14ce7a, 0x3e3ed438, 0x3e9b5dd4, 0xbf0032e0, 0x3e27c362, 0xbf3814eb, 0xbee7fff4, 0xbe33f62c, 0x3ec88dcb, 0x3e968134, 0xbf5a9e01, 0xbe49a020, 0x3f1c6117, 0x3f29121a, 0x3ec78ec7, 0xbdd0afd8, 0x3f7249c4, 0xbd986e6e, 0x3e982b88, 0xbe743f50, 0xbe8cde49, 0xbf6af33d, 0x3e223ad7, 0xbf6a175b, 0x3e3b5ddd, 0xbe4aedde, 0x3e9a860c, 0xbefdf152, 0xbe9e9440, 0x3ef9b3d2, 0x3f25f35f, 0x3f02f3c8, 0xbf1886c9, 0x3f1db074, 0xbd80509f, 0xbef9b510, 0x3f445dd4, 0xbecb6548, 0xbe01534e, 0xbf6b56ed, 0x3e3b41d0, 0xbeafb2f4, 0x3d78fe8b, 0xbe76f68a, 0xbeafec92, 0x3ebf3519, 0x3f53c537, 0x3e593d05, 0x3f334ef4, 0x3f116d9f, 0xbec0b93d, 0x3f1bacc3, 0xbeef3b9e, 0x3e89fc6d, 0xbf151baa, 0x3f3ef4e6, 0xbe73ec14, 0x3f186716, 0xbe387321, 0xbe84bd21, 0x3f21d063, 0xbf33e01f, 0x3e4ba707, 0xbdc58e31, 0xbea7d39b, 0x3ea89681, 0x3f6157b3, 0xbedec96b, 0x3db7a6bc, 0x3e6b0859, 0x3f5db187, 0xbee55e9a, 0xbf3415e5, 0x3f0b0864, 0x3dc79936, 0xbe0d4f6a, 0xbf0017bb, 0xbf097493, 0x3f2a40e4, 0xbf485ef8, 0x3e88fc44, 0x3f003fb7, 0x3e825c3a, 0x3f5a21f4, 0x3ecab4b5, 0xbe8fa944, 0xbe48e1d7, 0x3f1706f4, 0xbf3becaf, 0x3ea52d3b, 0x3dc25f7d, 0x3f3e9541, 0x3e3194fd, 0xbf0ff0f2, 0x3ea18b2a, 0x3f053098, 0x3ef63a5b, 0x3f2ed070, 0x3e366708, 0xbe84385c, 0xbda38cf7, 0x3e973b85, 0xbf6a9586, 0xbeb9612b, 0xbe6abf0d, 0x3f2323f2, 0x3f23f7f5, 0xbf1b6b63, 0xbf15e09f, 0xbebbe6d2, 0x3ec8e7e4, 0xbf37cdea, 0xbf1e3313, 0xbea38418, 0x3ccbaaa3, 0xbddc0d80, 0x3f2a18c7, 0x3f3d2dae, 0x3cf3ae83, 0x3ecef089, 0x3e893230, 0x3f5c231e, 0x3e232a5d, 0x3e0cf417, 0xbf06d6b9, 0xbf2cb43c, 0xbeff3bdf, 0xbe1fed1d, 0x3f39749f, 0xbeae8898, 0x3f1414f2, 0x3f0461da, 0xbd8bd132, 0xbf471ba6, 0xbeb3925b, 0x3ecc23cf, 0x3c93c3d9, 0xbcde726a, 0x3f6a9f8f, 0xbf172fa3, 0x3ca7064c, 0x3f4c4400, 0x3df3957d, 0xbf52cf47, 0xbdd17a2c, 0x3f06f984, 0xbe3b40d3, 0x3f0b5689, 0x3e8c3013, 0xbd9e31ac, 0x3f4a0813, 0x3f13e81c, 0xbea431a2, 0x3f402432, 0x3b9752a9, 0x3ee967c2, 0x3f1ab68f, 0xbf154f9b, 0xbe96d19f, 0x3f084e85, 0xbf0e97df, 0xbe8659f7, 0x3f14b2aa, 0xbf5924a3, 0xbd462ec1, 0xbe076634, 0x3f02b647, 0xbe5061b0, 0x3e6f0727, 0x3f56c521, 0x3ee520f9, 0xbe82de25, 0x3ec8bdfd, 0x3d065f3a, 0xbf6212fc, 0x3f292242, 0xbf3fbf4b, 0xbd4bf28e, 0x3b051feb, 0x3da317c4, 0x3ebb7ec3, 0x3f21413a, 0xbf2e26ba, 0x3f59fac8, 0x3ea33737, 0x3eb3ec16, 0x3e64aad8, 0xbde3974d, 0x3ebb297a, 0xbee0b002, 0xbf5033c0, 0xbe18a1d9, 0x3f6737c0, 0xbe4b97b4, 0x3eb331d6, 0xbeb9f0e0, 0x3eeea031, 0xbf1fb3da, 0x3f02f73c, 0xbf1594dc, 0xbf30cf03, 0x3df24dee, 0x3ed198d3, 0x3e0650bb, 0x3f48d8d6, 0xbe1b0297, 0x3f163948, 0xbe5091d4, 0x3f13965c, 0x3f2c6c58, 0xbed4a74e, 0x3ef8ba13, 0x3ef30b9c, 0xbf38a5d1, 0xbe0afaaa, 0xbf0e0cb0, 0xbd6b0a4b, 0xbf0a4060, 0x3f215580, 0xbd22efbc, 0xbee42685, 0x3f62b7dc, 0xbdff3f97, 0xbdd18b7f, 0xbef1bafa, 0xbf5dc0f0, 0xbe02a660, 0x3e70e40e, 0xbf286a8f, 0x3e8f5d1a, 0xbf288b22, 0x3f33d7a1, 0x3f197f65, 0x3dc791e3, 0x3ebdd4a0, 0xbeab31d8, 0xbf2cf429, 0x3f270014, 0x3da1643e, 0x3f5150b8, 0xbef89d76, 0x3e8c12a8, 0x3e13d164, 0xbf186a95, 0x3ebbe7ba, 0xbd47a9e1, 0x3f368b5c, 0xbeb1fe8c, 0xbf586509, 0xbecdfd41, 0x3d573b9d, 0xbf11864e, 0x3ee50dd6, 0x3e34d092, 0xbf2ae061, 0xbda4e859, 0xbf56609a, 0xbecd03bb, 0xbeb9f6e6, 0xbed28ba5, 0x3f278cc1, 0x3d0afb8d, 0x3f22305f, 0xbd8200fa, 0x3d604744, 0xbe907378, 0x3f74a92a, 0x3f3d517d, 0x3e1da011, 0xbde58447, 0x3f254892, 0x3f6ee5ac, 0x3dd3f845, 0xbe4d2b12, 0x3e8f43dd, 0xbe52afbc, 0xbf0a36bf, 0x3f42929d, 0x3e985111, 0x3ed020da, 0x3f3e16eb, 0xbdcffdd6, 0x3f05c74a, 0x3f6ec105, 0xbeb7d23c, 0x3d0e0017, 0xbc1f81ae, 0xbc9ee25e, 0x3f05b255, 0xbd5547c8, 0x3f59d9bf, 0xbe5de988, 0xbee39be7, 0xbda4b903, 0xbf5d8bda, 0xbe635fd8, 0xbf37f3fc, 0x3e88c81d, 0x3f1a3c70, 0xbf39f61b, 0xbe5175bb, 0x3e735118, 0xbf1c903a, 0x3e6ade7a, 0x3da278e2, 0x3d211d29, 0xbf782457, 0xbdce390e, 0x3dd77839, 0x3f7767b8, 0x3e58c48c, 0x3ea33c0a, 0x3f02c1d3, 0xbf421e20, 0x3e7ffc2b, 0x3e4969ef, 0x3e76ca74, 0xbf5e7a9d, 0x3ec4f273, 0x3df14d7c, 0xbf185216, 0x3ea009b0, 0xbf3b23fd, 0x3ed29a35, 0xbe313327, 0xbf6468f1, 0xbd8dc765, 0xbea60f6b, 0x3e9d9f85, 0x3f64a125, 0xbd49f147, 0xbf1c4cef, 0xbe913f1f, 0xbeccf23b, 0xbf1f2872, 0xbecd590b, 0xbedb570a, 0x3f14d270, 0xbf104951, 0x3f0485e8, 0xbf04ad45, 0xbea9a57e, 0x3f183c2d, 0xbe954690, 0x3e0f6714, 0xbf51639e, 0x3ef39b73, 0xbe4c3f50, 0xbf16de85, 0x3f2dd344, 0xbec784d6, 0x3f0159dc, 0xbf553924, 0xbe40b847, 0x3dff5ba0, 0xbdf725d3, 0xbf574599, 0xbc3ba88d, 0x3f0705b5, 0x3e9ce775, 0xbef5dcba, 0xbea6380f, 0x3f414ae8, 0x3e58cded, 0x3ecfb64c, 0x3f5f92cc, 0x3e2afa4f, 0x3e526096, 0xbe80e065, 0x3f484d40, 0x3f0800b6, 0x3f261735, 0xbf0e947d, 0xbf04ba03, 0x3c0770ac, 0x3d7c5cc6, 0x3f3538be, 0xbf0a1dee, 0x3ee74123, 0x3f62f35b, 0xbe4ac72d, 0xbecbbc64, 0xbe039996, 0x3e7273fa, 0xbe1c659b, 0xbf33468b, 0xbf27e8cd, 0xbe4fc16f, 0xbf398c38, 0x3f1b82fc, 0x3e8205f5, 0x3e044800, 0xbecde7b6, 0xbf570089, 0x3eae8dae, 0xbe97a4df, 0xbcbcf7ff, 0xbe5408f5, 0x3f6ea02e, 0x3f5729eb, 0x3dcdc506, 0x3e7ef631, 0x3ef0f746, 0x3e9c6331, 0xbf1dd817, 0xbf2fb300, 0x3e7138ed, 0xbf42ac79, 0xbec6f51a, 0x3eeb5bfa, 0xbe799884, 0x3d3abe22, 0xbf39393a, 0xbf2df7cd, 0xbde61564 }; static const uint32_t ref_mult[512] = { 0xbe9f1480, 0xbe8dba49, 0x3f06bdaf, 0xbf3dd28e, 0xbe307225, 0x3d1c22a3, 0x3f21b66e, 0xbf413ef3, 0xbebe0633, 0xbe976eab, 0x3f5c0ef0, 0x3e41e92a, 0x3d5c3ca9, 0x3dcf1684, 0xbecb855f, 0x3f6911b7, 0xbe672c4b, 0x3e9f975d, 0x3f5e6c6f, 0xbe9f7418, 0xbf2a013b, 0xbd17ce7b, 0x3d8a5b91, 0xbf3e61bf, 0xbf53e9ca, 0xbef0fd87, 0x3e192ce7, 0xbe88487c, 0x3ed2014a, 0xbf579d28, 0xbea988f7, 0x3de740b8, 0x3f5fa27f, 0x3d188b57, 0xbef85eda, 0x3c50998c, 0x3dc3b1ad, 0x3e6100de, 0x3f73daf3, 0xbe402b71, 0xbec9f6fe, 0x3e572f15, 0xbe91575b, 0x3f592bf2, 0xbe2412c0, 0xbf6b9c09, 0x3e785aea, 0x3e85f6f7, 0xbf65d221, 0xbe1ddca8, 0xbe9424b0, 0xbe96a7c4, 0xbe29d965, 0x3e60c2c2, 0xbf75353f, 0x3da9739e, 0x3f23a003, 0x3f0ba89c, 0xbebe5df5, 0x3ec9f971, 0xbefd06f9, 0xbf3cf80f, 0xbe856ce2, 0x3ec19a29, 0xbf3e0f54, 0x3efdb9a0, 0x3ee6952f, 0xbca6648a, 0xbe9092a7, 0x3eb5f3a6, 0xbe995691, 0x3f56d6db, 0xbf2bf417, 0x3ecb8e80, 0xbe9d938a, 0xbf0b4a25, 0x3f01ce8e, 0x3f0afe8a, 0x3c74bfdb, 0x3f2b531e, 0xbf3f2387, 0xbe91d196, 0xbf0ee8d4, 0xbe647e49, 0x3e592134, 0xbf373dc9, 0xbf20b785, 0x3e61a416, 0xbca20d54, 0xbb27e049, 0xbeebdfda, 0x3f632870, 0xbe9b578f, 0x3ec55490, 0xbf5f04dc, 0xbcb1fc34, 0x3e669ecf, 0xbc14ef81, 0x3e3c0fe9, 0x3f74f0db, 0xbe2bd20f, 0x3f61f871, 0xbe193150, 0x3ed34bab, 0xbcb78ab8, 0xbf515bc0, 0x3dc01d2a, 0x3f113e2a, 0xbf149110, 0x3e904e93, 0x3ec22cd8, 0xbf29cca4, 0x3f602776, 0x3ed38d9b, 0xbe53df1b, 0x3e10091e, 0x3ebe5056, 0x3eacbc40, 0x3f5c7975, 0xbda28a6f, 0x3e86df1f, 0xbe9cf501, 0x3e8b3c4e, 0x3f5f918d, 0xbec93173, 0xbed66beb, 0xbf434419, 0x3e983a70, 0x3f7438da, 0x3cd5888f, 0xbe987eec, 0x3cb8b0cb, 0x3ea1ed01, 0x3d867f3f, 0x3f40c72d, 0xbf12bf80, 0xbf49a51e, 0x3eecec2c, 0xbe88b103, 0x3e9d1cce, 0xbd894ec8, 0x3e88c2bc, 0xbf0df89d, 0x3f490591, 0x3f41044d, 0x3dd347ab, 0xbc4e82ab, 0x3f260cd0, 0x3e1f58a0, 0x3f32f1f3, 0x3e77862d, 0x3f27a039, 0x3db1525b, 0xbe8471db, 0x3e1bc495, 0x3f733167, 0x3db87999, 0x3ee6c655, 0xbf53bb26, 0x3ea5a666, 0xbe7b7b91, 0xbcc5ee9a, 0xbf49e993, 0xbf1023e6, 0x3f5bb08b, 0x3e6b260c, 0x3de23d32, 0x3ee42eab, 0xbf198c30, 0xbe8ca398, 0xbece8073, 0x3f225679, 0x3f12896c, 0x3e94de05, 0x3f227c71, 0x3edc308a, 0x3e38faba, 0xbf61a29f, 0x3eb92fab, 0xbe7a3490, 0xbf3de2ac, 0x3e46d03d, 0x3e6a5801, 0xbf198c1e, 0x3eb82864, 0xbdd12073, 0xbf1b15cf, 0xbf33c903, 0xbf34f98d, 0xbf0e1d94, 0xbed6807e, 0x3e03ba7f, 0xbf7ba2c9, 0x3e1d5a4b, 0xbd977e46, 0x3d8cb1dd, 0x3f0631ee, 0xbe2d60f5, 0xbeac965d, 0x3f437445, 0xbf350a9c, 0xbee91d62, 0x3ef4fe03, 0xbe8122fd, 0x3f24e150, 0xbef2540b, 0x3ef84838, 0x3eb5c17b, 0x3f169e24, 0xbc8a0aa7, 0x3eb3da6c, 0x3f3a665b, 0xbf5bf692, 0xbd550da3, 0x3eff6b03, 0xbdce5912, 0x3dac247f, 0x3e4827f7, 0xbeecf384, 0x3f5c4d1a, 0xbf76782d, 0xbd0c006b, 0x3d86ae7f, 0x3e851953, 0xbe9addb4, 0xbc94f55f, 0x3e42d15d, 0xbf6f0d91, 0x3e073474, 0x3ee555e9, 0xbf60ddaf, 0x3dd0a07c, 0xbea9424d, 0xbeab3413, 0xbef74fb3, 0xbf3d1757, 0xbea2cc6f, 0x3f4202e6, 0x3e5c1915, 0xbf07102e, 0xbf2afd4a, 0xbe2e6cdb, 0xbf2470c8, 0x3eab8a06, 0x3f21ef21, 0xbeaaf26c, 0xbf25a556, 0x3e8730a7, 0x3ec30627, 0x3f4c8476, 0x3ec4e318, 0x3e864bf0, 0xbe2d8c43, 0xbe9ee8c4, 0x3f57e9be, 0x3ecf1854, 0x3df33d9b, 0x3dc4519e, 0x3f539f8c, 0x3f0aa76e, 0x3e2e2139, 0x3ef212d6, 0x3d363ed3, 0xbf5d0bbf, 0x3ea01ce9, 0xbf525371, 0xbe314b7d, 0xbee3612b, 0x3f1f5e90, 0x3e865334, 0x3e06b71a, 0xbf39b89b, 0x3e8a3eec, 0xbf16a8e1, 0x3f378aec, 0xbe843d23, 0xbe8903c3, 0xbefc1a19, 0xbf3cd533, 0xbec0d50d, 0xbee1ffd3, 0x3f044b3a, 0xbf087229, 0xbf0106de, 0x3f22cc37, 0xbf0aa63a, 0xbe854882, 0x3ef7efd0, 0x3ec32898, 0x3f0231d1, 0xbf3f0ab7, 0xbe4aa61b, 0x3ecd2ce8, 0x3f05f107, 0x3f3f5b40, 0xbdaa7c43, 0xbec1180f, 0xbde53c6e, 0x3f2cec3c, 0x3f1fa8f3, 0xbe82030d, 0xbd184b44, 0xbf5f2d33, 0xbed5a70d, 0x3e128e4f, 0xbf20209b, 0xbf38caf5, 0xbe84bb56, 0xbdeffeb6, 0xbf534ed0, 0xbe94bd8c, 0x3ef0734d, 0xbf10b6dc, 0xbe095981, 0xbefb7a71, 0x3f26254a, 0xbe756a87, 0xbdec0d72, 0x3f579f5f, 0x3ef010fd, 0x3e09edfb, 0x3eeae313, 0x3f1f9d70, 0x3f1e5b7a, 0xbd510534, 0x3ecba272, 0xbe95f996, 0xbf5e34b5, 0xbf5073af, 0xbe8205bc, 0x3ec61fa8, 0xbeb360bd, 0xbf2c8cae, 0x3d2640a5, 0x3f170ea8, 0xbee2987c, 0x3f588868, 0x3e36eb27, 0xbebe2f40, 0x3ead6324, 0x3e413a8f, 0x3f2560dd, 0xbf3d56f1, 0x3bdaa25c, 0x3f24a2fb, 0xbcdade19, 0xbf2c0cd6, 0x3ebb6ebc, 0x3e8e7783, 0x3f48395c, 0xbe6fac37, 0x3f018b8d, 0xbf21bc16, 0xbc95bcf2, 0xbf409d08, 0x3e3dfe02, 0xbf241821, 0xbf42e36d, 0xbdc30bb6, 0xbcb85204, 0xbdc9912d, 0x3e1671ca, 0xbf58d961, 0x3f004eee, 0x3eb4c5fa, 0x3f0c5b75, 0x3f04edb0, 0x3f0d685a, 0xbf64e287, 0xbead9ddf, 0xbd8e7e82, 0xbe9187c1, 0x3f2fa0a6, 0xbf27bc7d, 0xbdf2dbe0, 0x3e961e80, 0x3f38ba43, 0xbecb0014, 0x3f050113, 0x3e69e65e, 0xbdcc3d43, 0xbec7b4d1, 0x3f691099, 0x3dc3090d, 0x3f08fb36, 0x3f03e8cc, 0xbf069df0, 0x3ed42296, 0xbdb4e04c, 0x3f5126f0, 0x3ed7a845, 0x3ec48057, 0xbf423565, 0xbe9a6cda, 0x3f0ce87d, 0xbe32fb1b, 0x3e8dc6ce, 0xbae4ae00, 0xbec94acd, 0xbf607508, 0x3f129a64, 0x3e47fad2, 0xbf3ab254, 0xbea390cb, 0x3e0cb656, 0xbec0576b, 0x3f69dc5b, 0xbd978b5d, 0x3dc90add, 0xbf015dad, 0xbf4ea878, 0x3e93cd52, 0xbed0deed, 0xbef7f47c, 0x3f461b84, 0xbc6005f9, 0xbddfe20e, 0xbe22ddd0, 0xbf3e300b, 0xbf24158e, 0x3ef58eb0, 0x3f035242, 0x3f2678a7, 0x3e945eb6, 0xbe2f3dc5, 0xbf685978, 0xbe9f1ab4, 0x3e65d898, 0xbe1e8372, 0x3d058cdc, 0xbed00204, 0xbf666397, 0xbe765344, 0xbf2bda89, 0x3dd03830, 0x3f319306, 0xbf3ecaac, 0xbefc2b0b, 0xbe00488f, 0x3edcfca5, 0xbeae503a, 0x3f1c2e8b, 0x3ef7a383, 0x3f06f733, 0x3f365c4e, 0x3e044c4c, 0x3e028af3, 0xbf2d8e49, 0x3d81481b, 0x3f6bab39, 0x3e9e3848, 0x3e6bda63, 0x3eaf2587, 0x3e1e28eb, 0x3e600620, 0xbf669451, 0x3f140765, 0xbe6d66ca, 0x3f05609c, 0xbf155ec5, 0xbf4b524f, 0xbebdf09a, 0x3e7a677d, 0x3ed4358b, 0xbf41a3d8, 0xbf0c67b7, 0xbe1f50e0, 0xbea430a6, 0x3e0d0d3f, 0xbe04f1f7, 0x3dafac56, 0xbf7a6937, 0x3ee82bfa, 0xbe0b221e, 0x3f26bc01, 0x3f17d25b, 0xbf51e8ea, 0xbe67e3fa, 0xbe00a41c, 0x3f02af8b, 0xbf30b206, 0xbbe7821f, 0x3e6db7e6, 0x3f2f70ed, 0x3e5771ba, 0xbf5f0b87, 0x3e5ed89f, 0xbec5cf2a, 0x3f374c0c, 0x3ea3662b, 0x3ce3d9c0, 0xbf1ec8f5, 0xbedeba9b, 0xbea66934, 0x3ed67e43, 0x3f3a4dae, 0xbec6b42c, 0x3e8f967f, 0xbe29ff80, 0x3f5cb0f5, 0xbe862bc9, 0x3d215cfa, 0xbf72478e, 0x3e3d1497, 0xbecf03ef, 0x3f62e2a7, 0x3e393879, 0xbe0a9f87, 0xbf0406c4, 0xbdfc2c0e, 0xbf3ee6bf, 0xbece92a8 }; static const uint32_t ref_quat2rot[1152] = { 0x3f14d753, 0xbf1753a9, 0xbf0f1dff, 0x3e89fc1c, 0xbf022739, 0x3f515ef6, 0xbf448698, 0xbf204d00, 0xbe0b8eff, 0xbed7e246, 0xbf4812d6, 0xbeeb6a56, 0xbd9b7458, 0x3f0924d0, 0xbf574a5c, 0x3f6750d0, 0xbea3af31, 0xbe9206b8, 0xbef5084c, 0x3dd394d8, 0xbf5f37d3, 0x3f543b7a, 0xbe8c4645, 0xbef997e3, 0xbe9418f6, 0xbf74c7b3, 0x3d3a3e58, 0x3f2f7838, 0xbe93a416, 0xbf2b29dd, 0x3f2b3b1b, 0x3f1cbad9, 0x3ed7e2ec, 0x3e935409, 0xbf3c793c, 0x3f1ccdac, 0x3d53c462, 0x3f79bb3b, 0x3e5ae8a1, 0xbf7f8e5e, 0x3d361202, 0x3d1e0d28, 0x3ce68463, 0xbe5c926e, 0x3f79e2fe, 0xbe7af3a8, 0xbf708f61, 0x3e745233, 0xbf34aa0e, 0x3eaeec3c, 0x3f1ee48f, 0xbf2a2d6e, 0xbc854d4b, 0xbf3f33c3, 0xbf2f37bf, 0xbe27a32a, 0xbf35dfe1, 0x3f0f217f, 0xbf3e4681, 0xbebc180d, 0xbeef919b, 0xbf260e8e, 0x3f19aa26, 0x3e2b94ad, 0xbf52879d, 0xbf0b3011, 0xbed4cba4, 0x3ee1e111, 0xbf4b9e22, 0x3f64db64, 0x3eb7eef7, 0xbe8926a5, 0xbea06506, 0xbf72c9ac, 0xbd496cbb, 0xbf27adf1, 0x3e81acef, 0xbf36406c, 0x3f3008b8, 0xbe4364ac, 0xbf335657, 0x3ec12126, 0xbf263533, 0xbf291318, 0x3e73f3e0, 0x3f41d4aa, 0xbf1bb62b, 0x3f651c54, 0x3d93a59d, 0x3ee16bd7, 0xbdf73711, 0x3ecc455b, 0x3f68b346, 0xbf7df4f7, 0xbda81be7, 0xbdc4031f, 0x3d15366e, 0xbf69ccfc, 0x3ecfb6bb, 0x3f5b6c5d, 0x3f0158aa, 0x3dcd5bf9, 0x3efdc9f5, 0xbf5caa45, 0x3dd9ba1b, 0x3e0f82e8, 0xbd29a6d6, 0xbf7d4066, 0xbef3ba3e, 0x3f4b1edb, 0x3ec23036, 0xbf6121be, 0xbedaf784, 0xbe561ac4, 0xbb720e24, 0xbeddbbc3, 0x3f66bef4, 0xbeb28adf, 0x3f68de11, 0x3e672667, 0xbe28d087, 0x3e35d2f0, 0xbf785f35, 0xbf6c3086, 0xbec0469f, 0x3db44f89, 0xbefe7716, 0x3f4bc114, 0xbeb0ff89, 0xbeb38eb8, 0x3e387ddc, 0x3f6b4335, 0x3f4b3191, 0x3f13f666, 0x3e4221d7, 0x3f4745c5, 0xbe3841b7, 0x3f19f67a, 0xbf1937f6, 0x3d9c4271, 0x3f4c273b, 0xbe41edae, 0xbf7b101a, 0xbd45d9bc, 0x3ec0b7ef, 0x3e9b002b, 0x3f60272f, 0xbf3f69d3, 0x3f2845ef, 0x3dc0d728, 0xbf0c0acd, 0xbf30aca4, 0x3ef2928e, 0xbf4c4742, 0xbf0c7b83, 0xbe7f37fc, 0xbf1a4510, 0x3f3bce43, 0x3ea0d22f, 0x3c2ba754, 0x3ecd3a85, 0xbf6a84d6, 0x3f632564, 0xbe491cda, 0x3ed5a941, 0xbebacced, 0xbf5a36bf, 0x3ebfc840, 0x3e90755d, 0xbef81e95, 0xbf53f66a, 0xbf17491c, 0xbf0cbb4d, 0xbf1723d2, 0xbee6de06, 0xbec37510, 0x3f4e8b1e, 0xbf2b3de5, 0x3f3e35ad, 0xbcb68779, 0xbf2404a2, 0xbee8b3ee, 0x3f1e6b21, 0x3ea7ede2, 0x3f1114a3, 0x3f417ce5, 0xbf31b80a, 0x3f2fed0f, 0xbe5b29c6, 0x3d23d523, 0x3e1e1381, 0x3f7cb955, 0xbe5db145, 0xbf769347, 0x3e233668, 0x3f79b7fd, 0xbe616237, 0xbba7461e, 0xbd849d6c, 0xbeb1e04b, 0xbf6f7b2d, 0xbf364cb8, 0x3f2c3d35, 0xbe4d6365, 0x3f32f6ba, 0x3f27362b, 0xbe94f922, 0xbedd99b9, 0xbe9b11ef, 0xbf595d7d, 0x3f319392, 0xbf36a506, 0xbdcaf205, 0xbf1365aa, 0xbf21c1bd, 0x3f04d576, 0x3f3f12a9, 0xbf2922b8, 0xbda40209, 0x3e68d876, 0x3e0f6f5f, 0x3f76b38f, 0xbf201edb, 0xbf3ccb58, 0x3e827283, 0xbee3b838, 0xbf307f27, 0x3f125bd3, 0x3e5f740c, 0x3f0921fb, 0x3f50d470, 0xbf5e6057, 0x3ef9a2d1, 0xbdb3d1b6, 0xbf21a0cc, 0xbd8f19a0, 0xbf45b7cc, 0x3f07cb81, 0xbf43f1e5, 0xbeba8fd5, 0xbf10d143, 0xbf23c5ea, 0x3f05333d, 0xbe3465cd, 0x3f75d949, 0x3e5d48d4, 0x3f274352, 0xbd4d4968, 0x3f416063, 0x3f3c7b2c, 0x3e8c6cb0, 0xbf1e5ec0, 0x3f4ff009, 0xbda47cbc, 0x3f13e713, 0xbe4e4a43, 0xbf77d8f4, 0x3e18349d, 0x3f0c22ec, 0xbe72d01a, 0xbf4d7532, 0xbf3c1cf7, 0x3f14a20e, 0x3eb3876c, 0x3edbe003, 0x3f4c643f, 0xbed81748, 0xbf06663c, 0xbe236126, 0xbf560517, 0x3f3d41b2, 0x3ef577b6, 0x3ef21c3a, 0xbf1fdd65, 0x3f4038f1, 0x3e5c2c6e, 0xbe8103a7, 0xbee89391, 0x3f5ac030, 0xbea1ddcc, 0x3eae8e53, 0xbf62a55b, 0xbf71f4bf, 0xbd044ea3, 0x3ea66e92, 0x3da865ec, 0x3f708548, 0x3eaa355f, 0x3e6ee6a8, 0xbf2b7ece, 0x3f347064, 0xbf4c505f, 0x3e90799d, 0x3f0848ea, 0xbf0e36ae, 0xbf2fcddb, 0xbef008f8, 0x3f27087a, 0xbf3b8d77, 0x3e466460, 0xbef8f56f, 0xbe55a900, 0x3f593a34, 0xbf14cc46, 0xbf25da17, 0xbefc1903, 0x3f41d091, 0xbc611c88, 0x3f2735fe, 0xbe72f7fe, 0x3f6cfc7d, 0x3e96c87e, 0xbf1bd3df, 0xbec18181, 0x3f3295c6, 0xbf25c583, 0x3e11caed, 0xbf3fa4ce, 0xbf27d8b9, 0xbf1ad005, 0x3ee77cc0, 0xbec6d471, 0x3f4899c0, 0x3ef84a70, 0x3d91d09f, 0x3f749bbe, 0xbe929156, 0x3f22d644, 0xbe877469, 0xbf398fc8, 0xbf44b141, 0xbe059c75, 0xbf2069bf, 0x3e347601, 0x3ee9beb3, 0x3f5f4081, 0xbf75d225, 0xbdebd4e8, 0x3e82376d, 0x3e5dba63, 0xbf61d95f, 0x3ed60f7c, 0x3e67b886, 0xbc740fe2, 0x3f795488, 0xbf0d6626, 0x3f525609, 0x3e1047db, 0xbf4d64b0, 0xbf11e099, 0x3e35f65c, 0xbd883549, 0xbf48fe99, 0x3f1da15c, 0xbf7dcae3, 0x3df9814c, 0x3d45af41, 0xbde73c52, 0xbf1b7309, 0xbf4955eb, 0xbf44397d, 0xbd3c95a9, 0xbf23fda8, 0xbec5785b, 0xbf43b96e, 0x3f0435a7, 0xbf03774a, 0x3f24966a, 0x3f117a2e, 0xbf1af108, 0x3f4b7821, 0xbd35ff75, 0xbf36649f, 0xbf0415fc, 0x3ef37df7, 0x3eb5ca3a, 0x3ea3946c, 0x3f60e8f7, 0x3ec83d92, 0xbf2d40db, 0xbf1fac15, 0xbf59f64f, 0xbc0ea526, 0xbf064073, 0x3eb2ef5e, 0x3f3c73d1, 0xbf1461d3, 0xbeec20e7, 0x3f388b56, 0xbf047087, 0x3eb5218f, 0xbec547f0, 0xbf5a2eea, 0xbf505060, 0xbf137a1c, 0xbd9e5b7a, 0x3ebc9f18, 0x3f2aa8a3, 0xbf25e1fb, 0xbe05a0bc, 0x3f3a289a, 0x3f2c8675, 0x3f6ba36f, 0xbe27a55c, 0x3eb5b3e4, 0x3f43fc86, 0x3de5a7f5, 0xbf222d32, 0xbf0e75f7, 0x3f1c0af4, 0xbf108a06, 0x3ea54a62, 0x3f48e783, 0x3f076fe4, 0x3f4619ae, 0xbf15eba7, 0x3e771935, 0xbeb92bb5, 0xbdc41f64, 0x3f6d68a9, 0xbf051e08, 0xbf4e0e30, 0xbe9261e1, 0x3e2ca6cb, 0xbf2a3027, 0xbf3a4db0, 0x3e8cad93, 0x3f3da1e9, 0xbf1ceed6, 0x3f72554e, 0xbdc5d5c9, 0x3e9d77e4, 0x3b809416, 0x3ef16223, 0x3f61c317, 0x3f579738, 0x3ef2ae21, 0xbe83a792, 0xbf0a0acc, 0x3f3e6254, 0xbeca543a, 0xbf5a9704, 0xbf053c84, 0xbbcb3302, 0x3eda29f2, 0xbf312f48, 0xbf1523d3, 0x3e990b2c, 0xbf0005a6, 0x3f501077, 0xbf21f8fb, 0x3e2fc07e, 0xbf415068, 0xbf4188bb, 0x3d986301, 0x3f267c83, 0x3e2bd58d, 0x3f7b7b19, 0x3da95181, 0x3ed869d2, 0x3f67fae4, 0xbc62eb28, 0xbd3f676b, 0x3bd5f822, 0xbf7fb702, 0xbf67b2d3, 0x3ed880f3, 0x3d38c005, 0x3f4b763f, 0x3edc5fa5, 0x3edb1268, 0x3eb7d0f2, 0x3e70a346, 0xbf673c3a, 0xbefa8965, 0x3f5f1ace, 0x3d041185, 0xbdc06790, 0x3f7d0837, 0xbdf445bc, 0x3f79c25c, 0x3dec118a, 0x3e3f3b18, 0x3e4b179a, 0xbdca62dd, 0xbf79a2cc, 0xbf0798a0, 0x3eaa0134, 0x3f47cf83, 0x3f16f34d, 0x3f4e3cc0, 0x3d6b3bf7, 0xbf1c16ae, 0x3efb3615, 0xbf1f5c22, 0xbed08311, 0x3f59106c, 0x3eadc79b, 0x3f12cc5f, 0xbd547259, 0x3f514eeb, 0x3f35fb09, 0x3f0710ed, 0xbeee20b3, 0x3dc98491, 0xbea05e46, 0x3f71cf50, 0xbf2cb14d, 0xbf3803f8, 0xbe2c1e94, 0x3f3b4b10, 0xbf1ee2da, 0xbe906503, 0xbee965f9, 0x3ef01791, 0xbf41aa52, 0xbe8358d9, 0x3f3ea21a, 0x3f1dbd7d, 0x3f5a2f20, 0x3ef32dac, 0xbe606b8e, 0xbf2e70d0, 0xbf3b582a, 0x3c3aefe3, 0x3f3ad7c4, 0xbf2e3ad0, 0xbd8364cc, 0x3d601e42, 0xbd10f4dc, 0x3f7f74b5, 0xbe9a6e1a, 0x3e312bd9, 0xbf700664, 0xbddd1250, 0x3f788b5a, 0x3e5b04c6, 0x3f728216, 0x3e29b2e1, 0xbe8c5ec1, 0x3ec1196b, 0xbed16bda, 0xbf54b859, 0x3e45f377, 0x3f6985c2, 0xbeb8fa5b, 0x3f67df83, 0xbcc7a873, 0x3ed8a0d1, 0xbe83df0c, 0xbf66c175, 0x3eb2377d, 0x3f51193d, 0xbeca8794, 0xbed70712, 0x3f0428f7, 0x3e345dc7, 0x3f568fa6, 0xbe01bdaa, 0xbef9344e, 0x3f5d43e0, 0xbef3bd73, 0x3f4b5564, 0x3ec14759, 0xbf5ec819, 0xbeba2e23, 0xbeaa28df, 0x3e159d44, 0xbedf6f8b, 0xbf63479f, 0xbf7939af, 0x3dc49454, 0xbe545fd6, 0x3e33f144, 0x3f6505c4, 0xbed257a6, 0x3e4002da, 0xbea706e2, 0xbf6d2fa3, 0x3f692ea7, 0xbe972f9c, 0x3e939e1f, 0xbebc3b44, 0xbf65e29d, 0x3e7794b6, 0x3ee3223b, 0x3f6104fd, 0x3e331999, 0xbf5a77e1, 0x3ef2a3c7, 0xbe5e519d, 0xbe8c253a, 0xbd58de79, 0x3f75d989, 0xbf4ee658, 0x3f12e493, 0xbe07b410, 0x3e568ddb, 0x3efb2068, 0x3f588c21, 0x3f0ce51b, 0x3f27e7e0, 0xbf044223, 0xbf0fd81c, 0xbed9f7de, 0xbf3591ac, 0x3ef44f66, 0xbf5dffc1, 0x3e11e854, 0xbf2cfb8d, 0xbe84492e, 0x3f30be3c, 0x3f7eba80, 0x3d93431f, 0xbd8cf9cf, 0x3d9e419c, 0xbdf9f45f, 0x3f7d50a1, 0x3d808306, 0xbf7d6b24, 0xbe020bda, 0xbf38178e, 0x3f11d733, 0xbecbbb4b, 0x3eb4bb93, 0xbe466a3a, 0xbf6a53d9, 0xbf193b66, 0xbf4c7711, 0xbd7cf6f3, 0x3f273de7, 0xbe1ffd64, 0x3f3da5e6, 0x3f1ab57a, 0x3f327039, 0xbec59838, 0xbee981b3, 0x3f332747, 0x3f0cbe51, 0xbf354283, 0xbf0068b9, 0xbefe7eda, 0xbe0f7102, 0xbf171314, 0x3f4b88fa, 0xbf312fa5, 0x3f21efe1, 0x3eb1f5e3, 0x3f2d0b65, 0xbe8276c9, 0x3f310557, 0xbeed4daa, 0xbf6062af, 0x3e0533db, 0x3f12aca5, 0xbed11ca2, 0xbf35e890, 0xbe9a83ba, 0xbe56f4fd, 0x3f6e130a, 0xbf73fd08, 0x3d2c8d1b, 0xbe997bf7, 0x3cc29200, 0xbf7a1046, 0xbe59e3b9, 0x3f2307d3, 0x3ea142e5, 0xbf34279e, 0xbf244e34, 0xbe941010, 0xbf35d24f, 0xbedabafb, 0x3f676ae1, 0x3c9355d2, 0x3e87ec42, 0xbec86ead, 0x3f618d75, 0xbdab2fd9, 0xbf6b7568, 0xbec4570a, 0x3f75e285, 0x3ce6aa33, 0xbe8dc523, 0xbe812c97, 0x3f1b7eb3, 0xbf40d618, 0x3f721f3c, 0xbc1fb389, 0xbea63693, 0xbe516f60, 0xbf4b5986, 0xbf126f94, 0xbd9e5fa7, 0xbf0d8bce, 0xbf546367, 0xbf510fbb, 0x3f033215, 0xbe87e5b8, 0x3f126a49, 0x3f28310b, 0xbefb7a26, 0xbec15881, 0x3f42e8ad, 0x3f06e920, 0xbf232d03, 0x3e4bdc60, 0xbf3e8ebe, 0xbf2bf11e, 0xbf1df3e7, 0x3ed1faf0, 0xbf198646, 0xbf4c97b2, 0x3d265cc2, 0xbf478408, 0x3f1261b1, 0xbe832d7b, 0x3e39e3d9, 0xbe3dbff3, 0xbf773c99, 0xbf08830e, 0x3f4ab589, 0x3e9870b3, 0x3f5813aa, 0x3f05898a, 0x3dfed302, 0xbd689535, 0x3ea2a370, 0xbf724e2b, 0xbcc24c89, 0xbd7047b2, 0x3f7f7cac, 0xbf2d9d10, 0xbf3b85e1, 0xbd7260d5, 0x3f3c092c, 0xbf2d9ffb, 0xbcb79439, 0x3f34c18c, 0xbecee261, 0x3f14df52, 0x3f2345f1, 0x3bc5909e, 0xbf452b2d, 0x3e9d8b89, 0x3f6a2a4a, 0x3e8620a6, 0x3e0bbf43, 0xbf5428fd, 0xbf0aefe3, 0xbf6f2456, 0x3d99002d, 0xbeb2ad50, 0x3ea8d680, 0x3f0dfae1, 0xbf439436, 0x3f4f0287, 0xbf007265, 0x3e9d47ea, 0xbcf2bac7, 0x3ef93802, 0x3f5f7f43, 0xbf166ad7, 0xbf370e9f, 0x3ec1ea21, 0xbcb18af1, 0x3f5034a0, 0x3f14d908, 0xbf62865a, 0xbe929624, 0x3ebc27c6, 0x3eee4211, 0xbf01abc0, 0x3f39d25f, 0x3f2bb64c, 0x3f37795e, 0x3e437a38, 0x3f24c497, 0xbede7e72, 0xbf214800, 0xbebcb4bb, 0x3f0ba20b, 0xbf40b518, 0x3d3ebb70, 0xbf19d363, 0xbf4c4872, 0x3f6ab78f, 0xbe952cd6, 0x3e8bb908, 0xbecafee7, 0xbf3e8d7f, 0x3f099060, 0x3ed4ba40, 0x3f1cb51d, 0x3f2c3ca0, 0x3f3aa7da, 0xbf2a96af, 0x3e1fc263, 0x3f0b3882, 0x3ed9f9a7, 0xbf3922c9, 0x3e479a59, 0x3f10c2f7, 0x3f4d2892, 0xbef40aac, 0xbf28d464, 0x3f14ce8a, 0x3f5b7257, 0xbefd965c, 0x3e105cd5, 0xbf7c66de, 0x3db9370e, 0x3e0fd9a8, 0xbe1be226, 0xbf552ecb, 0xbf0845ee, 0x3d8cfcf1, 0xbf0bd516, 0x3f55b5f9, 0x3e10923e, 0xbf7d4b7a, 0x3d0737f3, 0x3f6ba146, 0x3df3883e, 0xbebea902, 0x3ebaa2b6, 0x3da9e6c1, 0x3f6d7019, 0x3f435bce, 0xbf104fb7, 0xbea1ce24, 0x3ef62710, 0x3f526d75, 0xbe9c5037, 0x3edd1e14, 0x3da5fb14, 0x3f65f626, 0xbeaa2a86, 0xbf32c286, 0xbf224d31, 0xbf71700e, 0x3e75c6b6, 0x3e6b9316, 0xbc0ad6ad, 0x3f2ca48f, 0xbf3d0338, 0x3eddcd80, 0xbf135f58, 0x3f3188a7, 0x3e8c4dac, 0xbf261d69, 0xbf35b736, 0x3f5bcee3, 0x3efebda2, 0xbdfc9f84, 0x3f7f560c, 0xbbdcaa22, 0x3d92c03c, 0xbd305818, 0x3f3df474, 0x3f2b43d0, 0xbd6c3c20, 0xbf2b9c4a, 0x3f3d6358, 0xbee85241, 0xbcaf2169, 0x3f641023, 0xbdb2fd61, 0xbf7e6b51, 0xbd8c021d, 0x3f630766, 0xbddefc66, 0x3ee5ee1b, 0xbf02c571, 0xbe9b6ebd, 0x3f4de68d, 0x3ee4a8ec, 0xbf64a472, 0xbd5afe10, 0x3f3c0d4e, 0x3ea9ed76, 0x3f178126, 0x3e066f63, 0xbdee55f3, 0xbf7c0790, 0xbf26c814, 0xbf4236ff, 0x3b37909f, 0xbf3f493c, 0x3f2419c8, 0xbe33a04b, 0x3e0e5dba, 0xbf7c581e, 0xbdc29712, 0x3f4a92d7, 0x3e2c4e87, 0xbf167af9, 0x3f186ca2, 0x3bd63c9c, 0x3f4dab70, 0xbf61d7a7, 0x3ee6dae2, 0xbe0b0216, 0xbee076d9, 0xbf6445c5, 0xbde6b2f7, 0xbe2ff641, 0xbd23468c, 0x3f7bfc4b, 0xbf752428, 0x3e7be3ea, 0xbe19afe2, 0x3e2494ae, 0x3f63639e, 0x3edc56a3, 0x3e74e951, 0x3ec6a44a, 0xbf63dd79, 0xbe8cc4c7, 0xbf6f1af1, 0xbe699b19, 0xbf1d7e25, 0x3eb4dc35, 0xbf346db0, 0x3f3d26a5, 0xbd5ad87d, 0xbf2bf634, 0xbf4e73d9, 0xbf11f9d9, 0xbe2037ef, 0xbe88ffd6, 0x3f1680b6, 0xbf436df7, 0x3f06fc59, 0xbf12e332, 0xbf206efc, 0xbe87427f, 0xbe4c7ebf, 0x3f718df1, 0xbf0b5273, 0xbf46de5a, 0xbea23175, 0x3f4bd78e, 0xbf18e26b, 0x3dc5b64b, 0xbf1a0a59, 0x3ebb42f0, 0xbf35c579, 0x3e80f174, 0x3f6e36dd, 0x3e882334, 0x3f4209df, 0xbc9a37fe, 0xbf26eb28, 0xbf199d7a, 0x3f049561, 0xbf1c13b0, 0x3f14f534, 0x3f4e3ae0, 0x3de4a1b8, 0x3f0c88d7, 0xbe93556f, 0xbf48e566, 0xbdbf8012, 0xbf083516, 0x3f576e5b, 0x3f7c7cd3, 0x3d87297b, 0x3e1af2db, 0xbe0b5033, 0x3f5818f2, 0x3f04c23e, 0xbe9f5a3d, 0xbf733f85, 0x3c87eff9, 0xbd3c5b9c, 0xbb1c2545, 0xbf7fba7c, 0x3f73000e, 0xbe9f92fc, 0xbd2ff020, 0x3d95d81d, 0xbe8b6253, 0xbf759e33, 0x3f758978, 0xbe7a553e, 0x3e11ed62, 0xbe8bf420, 0xbf6e3f9f, 0x3e790f08, 0xbf4a6fda, 0x3d460d55, 0x3f1c362d, 0xbf01abca, 0x3f020d39, 0xbf325912, 0xbeaff66e, 0xbf5c2855, 0xbec1244f, 0xbe67395a, 0xbf74ad90, 0x3e40f65a, 0xbf2515f6, 0x3ada2091, 0xbf43a8be, 0x3f3aecee, 0xbe969437, 0xbf1de17c, 0x3f65e7a5, 0x3e4001e0, 0xbecbb89f, 0x3ee107be, 0xbed64c06, 0x3f4b757f, 0xbc8f79c1, 0xbf637d10, 0xbeeaa5c7, 0x3ee30189, 0x3e161427, 0xbf625fd5, 0xbddd4185, 0xbf7879fe, 0xbe5c3338, 0xbf63ca2c, 0x3e4374b4, 0xbed43a4d, 0xbeb3b4dd, 0xbe1a9bb0, 0xbf6c9392, 0x3f4649e4, 0xbf19f42c, 0xbe48a201, 0xbf06b320, 0xbf48d94c, 0x3ea7f305, 0xbf14c853, 0x3f234d50, 0x3f015a63, 0x3f47807f, 0x3f1d75ab, 0x3df5768b, 0xbe6ff540, 0x3eed4688, 0xbf5ac64f, 0xbf49f318, 0xbf1cb825, 0x3d5d5e6c, 0xbe33d101, 0x3e9e1bd1, 0x3f6f4d5d, 0xbf16c50a, 0x3f3a5903, 0xbeb3c455, 0x3eecacaf, 0x3f111959, 0xbf2e94c4, 0x3f16974e, 0x3ec249d2, 0x3f36d0a8, 0x3f29ddd3, 0xbf3b3430, 0xbe21cb56, 0x3c210830, 0xbf51cb0c, 0x3f12af60, 0xbf354c0e, 0xbed20bc5, 0xbf1318d7, 0x3f34b941, 0xbeccdeeb, 0xbf159b23, 0x3f267906, 0x3ec55b45, 0xbf27964a, 0xbd8fe86e, 0x3f637751, 0x3ee8226a, 0x3f41a5af, 0xbe7ecd8f, 0x3f1ad9fa, 0xbf575a91, 0x3f064624, 0xbe066acb, 0xbdc5ffff, 0x3dbe5b0d, 0x3f7daff5, 0x3f082f34, 0x3f58a83b, 0xbce11e40, 0x3e082ce5, 0xbf470c68, 0xbf1d57bb, 0xbf7bcef0, 0xbe37f3cd, 0x3c6c75fd, 0xbdf91a84, 0x3f1a466c, 0xbf49e7ad, 0xbf24a640, 0x3f16617f, 0xbefb7e31, 0x3f437a92, 0x3ee35e2d, 0xbef00004, 0xbd6a65a0, 0xbf2d32b3, 0xbf3bf242, 0xbf52d04d, 0x3f0fcc3a, 0x3da32149, 0xbf0ae81a, 0xbf3d2230, 0xbecca3ff, 0xbe29a30a, 0xbebea600, 0x3f69c667, 0x3eddb40f, 0xbf3db82b, 0x3f035b30, 0x3f575617, 0x3f096c8d, 0x3d8615d6, 0xbea5dea5, 0x3ece779f, 0x3f5b1728, 0xbd595f62, 0x3f33d322, 0xbf35b2eb, 0x3f7d8136, 0x3e03c3cf, 0x3d5a58c2, 0x3e03dd91, 0xbf333421, 0xbf33d1f4, 0x3eeac77f, 0xbf3a5c1b, 0xbf027b89, 0x3c5c6850, 0x3f1444b7, 0xbf50a9f4, 0x3f637900, 0x3ebbdb3a, 0x3e8cfdf3, 0x3d517f6c, 0x3f7e5d47, 0x3dce0a88, 0x3f791e94, 0xbd93eec5, 0x3e5fe9be, 0x3e65ec84, 0x3db19931, 0xbf78793b }; static const uint32_t ref_rot2quat[512] = { 0x3ef7c448, 0xbf3efa5a, 0x3ddcbbc1, 0x3ee3a3f1, 0x3ee91134, 0x3e92943b, 0xbf3faed1, 0x3ec66a88, 0x3e8a8d46, 0xbeddb102, 0xbf09cf11, 0x3f2ba2ba, 0x3f5a5ba1, 0xbeadc1f1, 0xbe8f8432, 0x3e8fa5c3, 0x3f3842ce, 0xbdb4ac1f, 0x3d840d55, 0xbf2f80d6, 0x3e976295, 0xbf09dec3, 0x3f4388ce, 0x3e4a92e4, 0x3e54ad5e, 0xbead5b5c, 0xbe9579e0, 0x3f5ebbb6, 0x3f1437d3, 0x3eff43b5, 0xbf1eeb9b, 0x3e33daf0, 0x3e7a8c5f, 0x3f084e59, 0xbf40ba33, 0x3e997c36, 0x3f4d626e, 0x3e5916fa, 0xbef82855, 0x3e8d97e7, 0x3f0c62d5, 0xbebed540, 0x3ecbaa9e, 0xbf225660, 0x3d1d1cc3, 0xbf767dab, 0xbe851022, 0xbd7fb044, 0x3effb2fe, 0xbde5a1d6, 0x3e444f60, 0xbf5660c9, 0x3ef5218e, 0x3e9efbe2, 0x3f198182, 0xbf0fa23f, 0x3eef285c, 0xbe3ae562, 0xbf1c1e0d, 0xbf1d1a31, 0x3f2c0904, 0xbf29591b, 0x3e96a037, 0xbe1f73f8, 0x3f4ab05d, 0xbe7d969a, 0x3ee5fe28, 0xbea9d254, 0x3d8f3ac0, 0x3e9ebe31, 0xbf6dab48, 0xbe452422, 0x3e68e595, 0xbf71c512, 0x3e182297, 0xbe3d9957, 0x3d10ea0b, 0xbee6d63c, 0x3f0e0b73, 0x3f32c312, 0x3ed8034c, 0xbd2680ab, 0x3f472e3f, 0x3eed65bf, 0x3e091b10, 0xbf3564de, 0x3cb38ff4, 0xbf3145fc, 0x3f12e614, 0x3ebe70d6, 0xbf364e41, 0xbe22b375, 0x3e9c4484, 0xbedf6f13, 0xbe653ed9, 0x3f50f6b6, 0x3f3b4d3f, 0xbf14ce7a, 0x3e3ed438, 0x3e9b5dd4, 0x3f0032e0, 0xbe27c362, 0x3f3814eb, 0x3ee7fff4, 0x3e33f62c, 0xbec88dcb, 0xbe968134, 0x3f5a9e01, 0x3e49a020, 0xbf1c6117, 0xbf29121a, 0xbec78ec7, 0x3dd0afd8, 0xbf7249c4, 0x3d986e6e, 0xbe982b88, 0x3e743f50, 0x3e8cde49, 0x3f6af33d, 0xbe223ad7, 0x3f6a175b, 0xbe3b5ddd, 0x3e4aedde, 0xbe9a860c, 0x3efdf152, 0x3e9e9440, 0xbef9b3d2, 0xbf25f35f, 0x3f02f3c8, 0xbf1886c9, 0x3f1db074, 0xbd80509f, 0x3ef9b510, 0xbf445dd4, 0x3ecb6548, 0x3e01534e, 0x3f6b56ed, 0xbe3b41d0, 0x3eafb2f4, 0xbd78fe8b, 0x3e76f68a, 0x3eafec92, 0xbebf3519, 0xbf53c537, 0x3e593d05, 0x3f334ef4, 0x3f116d9f, 0xbec0b93d, 0x3f1bacc3, 0xbeef3b9e, 0x3e89fc6d, 0xbf151baa, 0x3f3ef4e6, 0xbe73ec14, 0x3f186716, 0xbe387321, 0x3e84bd21, 0xbf21d063, 0x3f33e01f, 0xbe4ba707, 0x3dc58e31, 0x3ea7d39b, 0xbea89681, 0xbf6157b3, 0x3edec96b, 0xbdb7a6bc, 0xbe6b0859, 0xbf5db187, 0x3ee55e9a, 0x3f3415e5, 0xbf0b0864, 0xbdc79936, 0x3e0d4f6a, 0x3f0017bb, 0x3f097493, 0xbf2a40e4, 0x3f485ef8, 0xbe88fc44, 0xbf003fb7, 0xbe825c3a, 0x3f5a21f4, 0x3ecab4b5, 0xbe8fa944, 0xbe48e1d7, 0x3f1706f4, 0xbf3becaf, 0x3ea52d3b, 0x3dc25f7d, 0x3f3e9541, 0x3e3194fd, 0xbf0ff0f2, 0x3ea18b2a, 0x3f053098, 0x3ef63a5b, 0x3f2ed070, 0x3e366708, 0x3e84385c, 0x3da38cf7, 0xbe973b85, 0x3f6a9586, 0x3eb9612b, 0x3e6abf0d, 0xbf2323f2, 0xbf23f7f5, 0x3f1b6b63, 0x3f15e09f, 0x3ebbe6d2, 0xbec8e7e4, 0x3f37cdea, 0x3f1e3313, 0x3ea38418, 0xbccbaaa3, 0x3ddc0d80, 0xbf2a18c7, 0xbf3d2dae, 0xbcf3ae83, 0x3ecef089, 0x3e893230, 0x3f5c231e, 0x3e232a5d, 0x3e0cf417, 0xbf06d6b9, 0xbf2cb43c, 0xbeff3bdf, 0x3e1fed1d, 0xbf39749f, 0x3eae8898, 0xbf1414f2, 0x3f0461da, 0xbd8bd132, 0xbf471ba6, 0xbeb3925b, 0x3ecc23cf, 0x3c93c3d9, 0xbcde726a, 0x3f6a9f8f, 0x3f172fa3, 0xbca7064c, 0xbf4c4400, 0xbdf3957d, 0x3f52cf47, 0x3dd17a2c, 0xbf06f984, 0x3e3b40d3, 0x3f0b5689, 0x3e8c3013, 0xbd9e31ac, 0x3f4a0813, 0x3f13e81c, 0xbea431a2, 0x3f402432, 0x3b9752a9, 0x3ee967c2, 0x3f1ab68f, 0xbf154f9b, 0xbe96d19f, 0x3f084e85, 0xbf0e97df, 0xbe8659f7, 0x3f14b2aa, 0x3f5924a3, 0x3d462ec1, 0x3e076634, 0xbf02b647, 0x3e5061b0, 0xbe6f0727, 0xbf56c521, 0xbee520f9, 0x3e82de25, 0xbec8bdfd, 0xbd065f3a, 0x3f6212fc, 0x3f292242, 0xbf3fbf4b, 0xbd4bf28e, 0x3b051feb, 0x3da317c4, 0x3ebb7ec3, 0x3f21413a, 0xbf2e26ba, 0x3f59fac8, 0x3ea33737, 0x3eb3ec16, 0x3e64aad8, 0x3de3974d, 0xbebb297a, 0x3ee0b002, 0x3f5033c0, 0x3e18a1d9, 0xbf6737c0, 0x3e4b97b4, 0xbeb331d6, 0x3eb9f0e0, 0xbeeea031, 0x3f1fb3da, 0xbf02f73c, 0x3f1594dc, 0x3f30cf03, 0xbdf24dee, 0xbed198d3, 0x3e0650bb, 0x3f48d8d6, 0xbe1b0297, 0x3f163948, 0x3e5091d4, 0xbf13965c, 0xbf2c6c58, 0x3ed4a74e, 0x3ef8ba13, 0x3ef30b9c, 0xbf38a5d1, 0xbe0afaaa, 0x3f0e0cb0, 0x3d6b0a4b, 0x3f0a4060, 0xbf215580, 0x3d22efbc, 0x3ee42685, 0xbf62b7dc, 0x3dff3f97, 0x3dd18b7f, 0x3ef1bafa, 0x3f5dc0f0, 0x3e02a660, 0x3e70e40e, 0xbf286a8f, 0x3e8f5d1a, 0xbf288b22, 0x3f33d7a1, 0x3f197f65, 0x3dc791e3, 0x3ebdd4a0, 0x3eab31d8, 0x3f2cf429, 0xbf270014, 0xbda1643e, 0x3f5150b8, 0xbef89d76, 0x3e8c12a8, 0x3e13d164, 0x3f186a95, 0xbebbe7ba, 0x3d47a9e1, 0xbf368b5c, 0x3eb1fe8c, 0x3f586509, 0x3ecdfd41, 0xbd573b9d, 0x3f11864e, 0xbee50dd6, 0xbe34d092, 0x3f2ae061, 0x3da4e859, 0x3f56609a, 0x3ecd03bb, 0x3eb9f6e6, 0x3ed28ba5, 0xbf278cc1, 0xbd0afb8d, 0xbf22305f, 0x3d8200fa, 0xbd604744, 0x3e907378, 0xbf74a92a, 0x3f3d517d, 0x3e1da011, 0xbde58447, 0x3f254892, 0x3f6ee5ac, 0x3dd3f845, 0xbe4d2b12, 0x3e8f43dd, 0x3e52afbc, 0x3f0a36bf, 0xbf42929d, 0xbe985111, 0x3ed020da, 0x3f3e16eb, 0xbdcffdd6, 0x3f05c74a, 0x3f6ec105, 0xbeb7d23c, 0x3d0e0017, 0xbc1f81ae, 0x3c9ee25e, 0xbf05b255, 0x3d5547c8, 0xbf59d9bf, 0x3e5de988, 0x3ee39be7, 0x3da4b903, 0x3f5d8bda, 0x3e635fd8, 0x3f37f3fc, 0xbe88c81d, 0xbf1a3c70, 0x3f39f61b, 0x3e5175bb, 0xbe735118, 0x3f1c903a, 0x3e6ade7a, 0x3da278e2, 0x3d211d29, 0xbf782457, 0x3dce390e, 0xbdd77839, 0xbf7767b8, 0xbe58c48c, 0x3ea33c0a, 0x3f02c1d3, 0xbf421e20, 0x3e7ffc2b, 0x3e4969ef, 0x3e76ca74, 0xbf5e7a9d, 0x3ec4f273, 0x3df14d7c, 0xbf185216, 0x3ea009b0, 0xbf3b23fd, 0x3ed29a35, 0xbe313327, 0xbf6468f1, 0xbd8dc765, 0x3ea60f6b, 0xbe9d9f85, 0xbf64a125, 0x3d49f147, 0x3f1c4cef, 0x3e913f1f, 0x3eccf23b, 0x3f1f2872, 0x3ecd590b, 0x3edb570a, 0xbf14d270, 0x3f104951, 0x3f0485e8, 0xbf04ad45, 0xbea9a57e, 0x3f183c2d, 0x3e954690, 0xbe0f6714, 0x3f51639e, 0xbef39b73, 0x3e4c3f50, 0x3f16de85, 0xbf2dd344, 0x3ec784d6, 0x3f0159dc, 0xbf553924, 0xbe40b847, 0x3dff5ba0, 0x3df725d3, 0x3f574599, 0x3c3ba88d, 0xbf0705b5, 0x3e9ce775, 0xbef5dcba, 0xbea6380f, 0x3f414ae8, 0x3e58cded, 0x3ecfb64c, 0x3f5f92cc, 0x3e2afa4f, 0x3e526096, 0xbe80e065, 0x3f484d40, 0x3f0800b6, 0x3f261735, 0xbf0e947d, 0xbf04ba03, 0x3c0770ac, 0x3d7c5cc6, 0x3f3538be, 0xbf0a1dee, 0x3ee74123, 0x3f62f35b, 0xbe4ac72d, 0xbecbbc64, 0xbe039996, 0x3e7273fa, 0xbe1c659b, 0xbf33468b, 0xbf27e8cd, 0x3e4fc16f, 0x3f398c38, 0xbf1b82fc, 0xbe8205f5, 0x3e044800, 0xbecde7b6, 0xbf570089, 0x3eae8dae, 0x3e97a4df, 0x3cbcf7ff, 0x3e5408f5, 0xbf6ea02e, 0x3f5729eb, 0x3dcdc506, 0x3e7ef631, 0x3ef0f746, 0x3e9c6331, 0xbf1dd817, 0xbf2fb300, 0x3e7138ed, 0x3f42ac79, 0x3ec6f51a, 0xbeeb5bfa, 0x3e799884, 0x3d3abe22, 0xbf39393a, 0xbf2df7cd, 0xbde61564 };
Max
1
Trifunik/zephyr
tests/lib/cmsis_dsp/quaternionmath/src/f32.pat
[ "Apache-2.0" ]
size: 1024px 512px; dpi: 96; margin: 8em; axis { align: right; label-placement: linear(1); limit: 0 16; title: "Fnord (f/s)"; title-rotate: 45; title-font-size: 16pt; }
CLIPS
2
asmuth-archive/travistest
test/plot-axis/axis_right_title_rotate.clp
[ "Apache-2.0" ]
/// <reference path='fourslash.ts' /> //// function M() { //// let a = [1,2,3]; //// let x = 0; //// console.log(/*a*/a[x]/*b*/); //// } goTo.select('a', 'b') edit.applyRefactor({ refactorName: "Extract Symbol", actionName: "function_scope_1", actionDescription: "Extract to function in global scope", newContent: `function M() { let a = [1,2,3]; let x = 0; console.log(/*RENAME*/newFunction(a, x)); } function newFunction(a: number[], x: number): any { return a[x]; } ` });
TypeScript
4
nilamjadhav/TypeScript
tests/cases/fourslash/extract-method24.ts
[ "Apache-2.0" ]
=pod =head1 NAME X509_check_ca - check if given certificate is CA certificate =head1 SYNOPSIS #include <openssl/x509v3.h> int X509_check_ca(X509 *cert); =head1 DESCRIPTION This function checks if given certificate is CA certificate (can be used to sign other certificates). The certificate must be a complete certificate otherwise an error is returned. =head1 RETURN VALUES Function return 0, if it is not CA certificate, 1 if it is proper X509v3 CA certificate with B<basicConstraints> extension CA:TRUE, 3, if it is self-signed X509 v1 certificate, 4, if it is certificate with B<keyUsage> extension with bit B<keyCertSign> set, but without B<basicConstraints>, and 5 if it has outdated Netscape Certificate Type extension telling that it is CA certificate. This function will also return 0 on error. Actually, any nonzero value means that this certificate could have been used to sign other certificates. =head1 SEE ALSO L<X509_verify_cert(3)>, L<X509_check_issued(3)>, L<X509_check_purpose(3)> =head1 COPYRIGHT Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at L<https://www.openssl.org/source/license.html>. =cut
Pod
5
pmesnier/openssl
doc/man3/X509_check_ca.pod
[ "Apache-2.0" ]
package com.baeldung.objectclass; public class Lender extends User { private double totalInvestmentAmount; public double invest(double amount) { totalInvestmentAmount = amount; return totalInvestmentAmount; } public double increaseInvestment(double increaseBy) { return totalInvestmentAmount + increaseBy; } public double collectDividends() { return totalInvestmentAmount * 0.07; } }
Java
3
DBatOWL/tutorials
core-java-modules/core-java-lang-operators/src/main/java/com/baeldung/objectclass/Lender.java
[ "MIT" ]
name = ns3_1 time_delta = 1ns broker = tcp://localhost:5570 values fncs_msg/HOUSE_1@Market_1/submit_bid_state topic = fncs_msg/HOUSE_1@Market_1/submit_bid_state default = "" type = string list = false fncs_msg/Market_1@HOUSE_1/clearPrice topic = fncs_msg/Market_1@HOUSE_1/clearPrice default = "" ttype = string list = false fncs_msg/Market_1@HOUSE_1/mktID topic = fncs_msg/Market_1@HOUSE_1/mktID default = "" type = string list = false fncs_msg/Market_1@HOUSE_1/avgPrice topic = fncs_msg/Market_1@HOUSE_1/avgPrice default = "" type = string list = false fncs_msg/Market_1@HOUSE_1/stdevPrice topic = fncs_msg/Market_1@HOUSE_1/stdevPrice default = "" type = string list = false fncs_msg/Market_1@HOUSE_1/clearPrice topic = fncs_msg/Market_1@HOUSE_1/clearPrice default = "" type = string list = false
Zimpl
3
crond-jaist/GridAttackSim
Database/4_Nodes_1_House/fncs.zpl
[ "BSD-3-Clause" ]
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "textflag.h" TEXT _rt0_s390x_linux(SB), NOSPLIT|NOFRAME, $0 // In a statically linked binary, the stack contains argc, // argv as argc string pointers followed by a NULL, envv as a // sequence of string pointers followed by a NULL, and auxv. // There is no TLS base pointer. MOVD 0(R15), R2 // argc ADD $8, R15, R3 // argv BR main(SB) TEXT _rt0_s390x_linux_lib(SB), NOSPLIT, $0 MOVD $_rt0_s390x_lib(SB), R1 BR R1 TEXT main(SB), NOSPLIT|NOFRAME, $0 MOVD $runtime·rt0_go(SB), R1 BR R1
GAS
3
Havoc-OS/androidprebuilts_go_linux-x86
src/runtime/rt0_linux_s390x.s
[ "BSD-3-Clause" ]
package com.baeldung.yaml; import static org.junit.Assert.assertTrue; import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.TestPropertySource; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest(classes = MyApplication.class) @TestPropertySource(properties = {"spring.profiles.active = dev"}) class YAMLDevIntegrationTest { @Autowired private YAMLConfig config; @Test void whenProfileTest_thenNameTesting() { assertTrue("development".equalsIgnoreCase(config.getEnvironment())); assertTrue("dev-YAML".equalsIgnoreCase(config.getName())); assertTrue(config.isEnabled()); } }
Java
4
DBatOWL/tutorials
spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/yaml/YAMLDevIntegrationTest.java
[ "MIT" ]
fn main() { foo(&mut 5); } const fn foo(x: &mut i32) -> i32 { //~ ERROR mutable references *x + 1 }
Rust
3
Eric-Arellano/rust
src/test/ui/consts/const-mut-refs/feature-gate-const_mut_refs.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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. */ package org.apache.spark.ml.r import org.apache.spark.ml.fpm.PrefixSpan private[r] object PrefixSpanWrapper { def getPrefixSpan( minSupport: Double, maxPatternLength: Int, maxLocalProjDBSize: Double, sequenceCol: String): PrefixSpan = { new PrefixSpan() .setMinSupport(minSupport) .setMaxPatternLength(maxPatternLength) .setMaxLocalProjDBSize(maxLocalProjDBSize.toLong) .setSequenceCol(sequenceCol) } }
Scala
4
OlegPt/spark
mllib/src/main/scala/org/apache/spark/ml/r/PrefixSpanWrapper.scala
[ "Apache-2.0" ]
package unit.issues; class Issue6215 extends unit.Test { function test() { var a:Action<Issue6215> = null; var signal:Abstr<Child> = null; signal += a; noAssert(); } } private class Child extends Issue6215 {} private typedef Action<T> = T->Void; private abstract Abstr<T>(Dynamic) { @:op(x += y) function opAdd(fn:Action<T>) return this; }
Haxe
3
Alan-love/haxe
tests/unit/src/unit/issues/Issue6215.hx
[ "MIT" ]
#ifndef NVIM_OS_OS_DEFS_H #define NVIM_OS_OS_DEFS_H #include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <sys/stat.h> #include <sys/types.h> #ifdef WIN32 # include "nvim/os/win_defs.h" #else # include "nvim/os/unix_defs.h" #endif #define BASENAMELEN (NAME_MAX - 5) // Use the system path length if it makes sense. #define DEFAULT_MAXPATHL 4096 #if defined(PATH_MAX) && (PATH_MAX > DEFAULT_MAXPATHL) # define MAXPATHL PATH_MAX #else # define MAXPATHL DEFAULT_MAXPATHL #endif // Command-processing buffer. Use large buffers for all platforms. #define CMDBUFFSIZE 1024 // Note: Some systems need both string.h and strings.h (Savage). However, // some systems can't handle both, only use string.h in that case. #include <string.h> #if defined(HAVE_STRINGS_H) && !defined(NO_STRINGS_WITH_STRING_H) # include <strings.h> #endif /// Converts libuv error (negative int) to error description string. #define os_strerror uv_strerror /// Converts system error code to libuv error code. #define os_translate_sys_error uv_translate_sys_error #ifdef WIN32 # define os_strtok strtok_s #else # define os_strtok strtok_r #endif // stat macros #ifndef S_ISDIR # ifdef S_IFDIR # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) # else # define S_ISDIR(m) 0 # endif #endif #ifndef S_ISREG # ifdef S_IFREG # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) # else # define S_ISREG(m) 0 # endif #endif #ifndef S_ISBLK # ifdef S_IFBLK # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) # else # define S_ISBLK(m) 0 # endif #endif #ifndef S_ISSOCK # ifdef S_IFSOCK # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) # else # define S_ISSOCK(m) 0 # endif #endif #ifndef S_ISFIFO # ifdef S_IFIFO # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) # else # define S_ISFIFO(m) 0 # endif #endif #ifndef S_ISCHR # ifdef S_IFCHR # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) # else # define S_ISCHR(m) 0 # endif #endif #ifndef S_ISLNK # ifdef S_IFLNK # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) # else # define S_ISLNK(m) 0 # endif #endif #endif // NVIM_OS_OS_DEFS_H
C
4
uga-rosa/neovim
src/nvim/os/os_defs.h
[ "Vim" ]
<?xml version="1.0" encoding="UTF-8"?> <bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.omg.org/bpmn20" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:bpsim="http://www.bpsim.org/schemas/1.0" xmlns:color="http://www.omg.org/spec/BPMN/non-normative/color" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:drools="http://www.jboss.org/drools" id="_vj8fkfi_EeiF_4V9E7-6nA" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd http://www.jboss.org/drools drools.xsd http://www.bpsim.org/schemas/1.0 bpsim.xsd" exporter="jBPM Designer" exporterVersion="1.0" expressionLanguage="http://www.mvel.org/2.0" targetNamespace="http://www.omg.org/bpmn20" typeLanguage="http://www.java.com/javaTypes"> $if(first(widInfo.values).parameters)$ $first(widInfo.values).parameters.values:{k1| <bpmn2:itemDefinition id="_in$k1.name$Item" structureRef="$k1.runtimeType$"/> }$ $endif$ $if(first(widInfo.values).results)$ $first(widInfo.values).results.values:{k1| <bpmn2:itemDefinition id="_out$k1.name$Item" structureRef="$k1.runtimeType$"/> }$ $endif$ <bpmn2:itemDefinition id="__3901989D-0D41-44E9-99B8-AA92BA7615B1_TaskNameInputXItem" structureRef="String"/> $if(first(widInfo.values).parameters)$ $first(widInfo.values).parameters.values:{k1| <bpmn2:itemDefinition id="__3901989D-0D41-44E9-99B8-AA92BA7615B1_$k1.name$InputXItem" structureRef="$k1.runtimeType$"/> }$ $endif$ $if(first(widInfo.values).results)$ $first(widInfo.values).results.values:{k1| <bpmn2:itemDefinition id="__3901989D-0D41-44E9-99B8-AA92BA7615B1_$k1.name$OutputXItem" structureRef="$k1.runtimeType$"/> }$ $endif$ <bpmn2:process id="$first(widInfo.values).name$" drools:packageName="org.jbpm" drools:version="1.0" name="$first(widInfo.values).name$" isExecutable="true"> $if(first(widInfo.values).parameters)$ $first(widInfo.values).parameters.values:{k1| <bpmn2:property id="in$k1.name$" itemSubjectRef="_in$k1.name$Item"/> }$ $endif$ $if(first(widInfo.values).results)$ $first(widInfo.values).results.values:{k1| <bpmn2:property id="out$k1.name$" itemSubjectRef="_out$k1.name$Item"/> }$ $endif$ <bpmn2:startEvent id="processStartEvent" drools:selectable="true" color:background-color="#9acd32" color:border-color="#000000" color:color="#000000" name="Start"> <bpmn2:extensionElements> <drools:metaData name="elementname"> <drools:metaValue><![CDATA[Start]]></drools:metaValue> </drools:metaData> </bpmn2:extensionElements> <bpmn2:outgoing>_4CABEDDD-1349-4141-B4D5-E3A7EDA43071</bpmn2:outgoing> </bpmn2:startEvent> <bpmn2:task id="_3901989D-0D41-44E9-99B8-AA92BA7615B1" drools:selectable="true" drools:taskName="$first(widInfo.values).name$" color:background-color="#fafad2" color:border-color="#000000" color:color="#000000" name="$first(widInfo.values).displayName$"> <bpmn2:extensionElements> <drools:metaData name="elementname"> <drools:metaValue><![CDATA[$first(widInfo.values).displayName$]]></drools:metaValue> </drools:metaData> </bpmn2:extensionElements> <bpmn2:incoming>_4CABEDDD-1349-4141-B4D5-E3A7EDA43071</bpmn2:incoming> <bpmn2:outgoing>_F51868D7-5804-4146-929F-0FCEF6208B8E</bpmn2:outgoing> <bpmn2:ioSpecification id="_vj9tsPi_EeiF_4V9E7-6nA"> <bpmn2:dataInput id="_3901989D-0D41-44E9-99B8-AA92BA7615B1_TaskNameInputX" drools:dtype="String" itemSubjectRef="__3901989D-0D41-44E9-99B8-AA92BA7615B1_TaskNameInputXItem" name="TaskName"/> $if(first(widInfo.values).parameters)$ $first(widInfo.values).parameters.values:{k1| <bpmn2:dataInput id="_3901989D-0D41-44E9-99B8-AA92BA7615B1_$k1.name$InputX" drools:dtype="$k1.runtimeType$" itemSubjectRef="__3901989D-0D41-44E9-99B8-AA92BA7615B1_$k1.name$InputXItem" name="$k1.name$"/> }$ $endif$ $if(first(widInfo.values).results)$ $first(widInfo.values).results.values:{k1| <bpmn2:dataOutput id="_3901989D-0D41-44E9-99B8-AA92BA7615B1_$k1.name$OutputX" drools:dtype="$k1.runtimeType$" itemSubjectRef="__3901989D-0D41-44E9-99B8-AA92BA7615B1_$k1.name$OutputXItem" name="$k1.name$"/> }$ $endif$ <bpmn2:inputSet id="_vj9tsfi_EeiF_4V9E7-6nA"> <bpmn2:dataInputRefs>_3901989D-0D41-44E9-99B8-AA92BA7615B1_TaskNameInputX</bpmn2:dataInputRefs> $if(first(widInfo.values).parameters)$ $first(widInfo.values).parameters.values:{k1| <bpmn2:dataInputRefs>_3901989D-0D41-44E9-99B8-AA92BA7615B1_$k1.name$InputX</bpmn2:dataInputRefs> }$ $endif$ </bpmn2:inputSet> <bpmn2:outputSet id="_vj9tsvi_EeiF_4V9E7-6nA"> $if(first(widInfo.values).results)$ $first(widInfo.values).results.values:{k1| <bpmn2:dataOutputRefs>_3901989D-0D41-44E9-99B8-AA92BA7615B1_$k1.name$OutputX</bpmn2:dataOutputRefs> }$ $endif$ </bpmn2:outputSet> </bpmn2:ioSpecification> <bpmn2:dataInputAssociation id="_vj-UwPi_EeiF_4V9E7-6nA"> <bpmn2:targetRef>_3901989D-0D41-44E9-99B8-AA92BA7615B1_TaskNameInputX</bpmn2:targetRef> <bpmn2:assignment id="_vj-Uwfi_EeiF_4V9E7-6nA"> <bpmn2:from xsi:type="bpmn2:tFormalExpression" id="_vj-Uwvi_EeiF_4V9E7-6nA"><![CDATA[$first(widInfo.values).name$]]></bpmn2:from> <bpmn2:to xsi:type="bpmn2:tFormalExpression" id="_vj-Uw_i_EeiF_4V9E7-6nA">_3901989D-0D41-44E9-99B8-AA92BA7615B1_TaskNameInputX</bpmn2:to> </bpmn2:assignment> </bpmn2:dataInputAssociation> $if(first(widInfo.values).parameters)$ $first(widInfo.values).parameters.values:{k1| <bpmn2:dataInputAssociation id="_vj-UxPi_EeiF_4V9E7-6nA$k1.name$"> <bpmn2:sourceRef>in$k1.name$</bpmn2:sourceRef> <bpmn2:targetRef>_3901989D-0D41-44E9-99B8-AA92BA7615B1_$k1.name$InputX</bpmn2:targetRef> </bpmn2:dataInputAssociation> }$ $endif$ $if(first(widInfo.values).results)$ $first(widInfo.values).results.values:{k1| <bpmn2:dataOutputAssociation id="_vj-Uy_i_EeiF_4V9E7-6nA$k1.name$"> <bpmn2:sourceRef>_3901989D-0D41-44E9-99B8-AA92BA7615B1_$k1.name$OutputX</bpmn2:sourceRef> <bpmn2:targetRef>out$k1.name$</bpmn2:targetRef> </bpmn2:dataOutputAssociation> }$ $endif$ </bpmn2:task> <bpmn2:sequenceFlow id="_4CABEDDD-1349-4141-B4D5-E3A7EDA43071" drools:selectable="true" color:background-color="#000000" color:border-color="#000000" color:color="#000000" sourceRef="processStartEvent" targetRef="_3901989D-0D41-44E9-99B8-AA92BA7615B1"/> <bpmn2:endEvent id="_EFDCB45C-84C5-4F49-93DA-0013521F1E20" drools:selectable="true" color:background-color="#ff6347" color:border-color="#000000" color:color="#000000" name="Finish"> <bpmn2:extensionElements> <drools:metaData name="elementname"> <drools:metaValue><![CDATA[Finish]]></drools:metaValue> </drools:metaData> </bpmn2:extensionElements> <bpmn2:incoming>_F51868D7-5804-4146-929F-0FCEF6208B8E</bpmn2:incoming> </bpmn2:endEvent> <bpmn2:sequenceFlow id="_F51868D7-5804-4146-929F-0FCEF6208B8E" drools:selectable="true" color:background-color="#000000" color:border-color="#000000" color:color="#000000" sourceRef="_3901989D-0D41-44E9-99B8-AA92BA7615B1" targetRef="_EFDCB45C-84C5-4F49-93DA-0013521F1E20"/> </bpmn2:process> <bpmndi:BPMNDiagram id="_vj-UzPi_EeiF_4V9E7-6nA"> <bpmndi:BPMNPlane id="_vj-Uzfi_EeiF_4V9E7-6nA" bpmnElement="$first(widInfo.values).name$"> <bpmndi:BPMNShape id="_vj-Uzvi_EeiF_4V9E7-6nA" bpmnElement="processStartEvent"> <dc:Bounds height="30.0" width="30.0" x="225.0" y="248.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_vj-Uz_i_EeiF_4V9E7-6nA" bpmnElement="_3901989D-0D41-44E9-99B8-AA92BA7615B1"> <dc:Bounds height="80.0" width="100.0" x="315.0" y="223.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="_vj-U0Pi_EeiF_4V9E7-6nA" bpmnElement="_EFDCB45C-84C5-4F49-93DA-0013521F1E20"> <dc:Bounds height="28.0" width="28.0" x="480.0" y="249.0"/> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="_vj-U0fi_EeiF_4V9E7-6nA" bpmnElement="_4CABEDDD-1349-4141-B4D5-E3A7EDA43071" sourceElement="_vj-Uzvi_EeiF_4V9E7-6nA" targetElement="_vj-Uz_i_EeiF_4V9E7-6nA"> <di:waypoint xsi:type="dc:Point" x="240.0" y="263.0"/> <di:waypoint xsi:type="dc:Point" x="365.0" y="263.0"/> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="_vj-U0vi_EeiF_4V9E7-6nA" bpmnElement="_F51868D7-5804-4146-929F-0FCEF6208B8E" sourceElement="_vj-Uz_i_EeiF_4V9E7-6nA" targetElement="_vj-U0Pi_EeiF_4V9E7-6nA"> <di:waypoint xsi:type="dc:Point" x="365.0" y="263.0"/> <di:waypoint xsi:type="dc:Point" x="494.0" y="263.0"/> </bpmndi:BPMNEdge> </bpmndi:BPMNPlane> </bpmndi:BPMNDiagram> <bpmn2:relationship id="_vj-70Pi_EeiF_4V9E7-6nA" type="BPSimData"> <bpmn2:extensionElements> <bpsim:BPSimData> <bpsim:Scenario xsi:type="bpsim:Scenario" id="default" name="Simulationscenario"> <bpsim:ScenarioParameters xsi:type="bpsim:ScenarioParameters" baseTimeUnit="min"/> <bpsim:ElementParameters xsi:type="bpsim:ElementParameters" elementRef="_EFDCB45C-84C5-4F49-93DA-0013521F1E20" id="_vj-70fi_EeiF_4V9E7-6nA"> <bpsim:TimeParameters xsi:type="bpsim:TimeParameters"> <bpsim:ProcessingTime xsi:type="bpsim:Parameter"> <bpsim:UniformDistribution max="10.0" min="5.0"/> </bpsim:ProcessingTime> </bpsim:TimeParameters> </bpsim:ElementParameters> <bpsim:ElementParameters xsi:type="bpsim:ElementParameters" elementRef="_3901989D-0D41-44E9-99B8-AA92BA7615B1" id="_vj-70vi_EeiF_4V9E7-6nA"> <bpsim:TimeParameters xsi:type="bpsim:TimeParameters"> <bpsim:ProcessingTime xsi:type="bpsim:Parameter"> <bpsim:UniformDistribution max="10.0" min="5.0"/> </bpsim:ProcessingTime> </bpsim:TimeParameters> <bpsim:CostParameters xsi:type="bpsim:CostParameters"> <bpsim:UnitCost xsi:type="bpsim:Parameter"> <bpsim:FloatingParameter value="0.0"/> </bpsim:UnitCost> </bpsim:CostParameters> </bpsim:ElementParameters> <bpsim:ElementParameters xsi:type="bpsim:ElementParameters" elementRef="_F51868D7-5804-4146-929F-0FCEF6208B8E" id="_vj-70_i_EeiF_4V9E7-6nA"> <bpsim:ControlParameters xsi:type="bpsim:ControlParameters"> <bpsim:Probability xsi:type="bpsim:Parameter"> <bpsim:FloatingParameter value="100.0"/> </bpsim:Probability> </bpsim:ControlParameters> </bpsim:ElementParameters> <bpsim:ElementParameters xsi:type="bpsim:ElementParameters" elementRef="_4CABEDDD-1349-4141-B4D5-E3A7EDA43071" id="_vj-71Pi_EeiF_4V9E7-6nA"> <bpsim:ControlParameters xsi:type="bpsim:ControlParameters"> <bpsim:Probability xsi:type="bpsim:Parameter"> <bpsim:FloatingParameter value="100.0"/> </bpsim:Probability> </bpsim:ControlParameters> </bpsim:ElementParameters> <bpsim:ElementParameters xsi:type="bpsim:ElementParameters" elementRef="processStartEvent" id="_vj-71fi_EeiF_4V9E7-6nA"> <bpsim:TimeParameters xsi:type="bpsim:TimeParameters"> <bpsim:ProcessingTime xsi:type="bpsim:Parameter"> <bpsim:UniformDistribution max="10.0" min="5.0"/> </bpsim:ProcessingTime> </bpsim:TimeParameters> <bpsim:ControlParameters xsi:type="bpsim:ControlParameters"> <bpsim:Probability xsi:type="bpsim:Parameter"> <bpsim:FloatingParameter value="100.0"/> </bpsim:Probability> </bpsim:ControlParameters> </bpsim:ElementParameters> </bpsim:Scenario> </bpsim:BPSimData> </bpmn2:extensionElements> <bpmn2:source>_vj8fkfi_EeiF_4V9E7-6nA</bpmn2:source> <bpmn2:target>_vj8fkfi_EeiF_4V9E7-6nA</bpmn2:target> </bpmn2:relationship> </bpmn2:definitions>
Smalltalk
4
ramgopireddy/jbpm-work-items
template-resources/src/main/resources/defaultprocess.st
[ "Apache-2.0" ]
--TEST-- PDO OCI Bug #41996 (Problem accessing Oracle ROWID) --EXTENSIONS-- pdo pdo_oci --SKIPIF-- <?php require __DIR__.'/../../pdo/tests/pdo_test.inc'; PDOTest::skip(); ?> --FILE-- <?php require 'ext/pdo/tests/pdo_test.inc'; $db = PDOTest::test_factory('ext/pdo_oci/tests/common.phpt'); $stmt = $db->prepare('SELECT rowid FROM dual'); $stmt->execute(); $row = $stmt->fetch(); var_dump(strlen($row[0]) > 0); ?> --EXPECT-- bool(true)
PHP
2
NathanFreeman/php-src
ext/pdo_oci/tests/bug41996.phpt
[ "PHP-3.01" ]
sleep 2 t app key record
AGS Script
0
waltersgrey/autoexechack
Hero3White/Take_Video/autoexec.ash
[ "MIT" ]
import createSvgIcon from './utils/createSvgIcon'; import { jsx as _jsx } from "react/jsx-runtime"; export default createSvgIcon( /*#__PURE__*/_jsx("path", { d: "M20 4H6.83l8 8H20v2h-3.17l4.93 4.93c.15-.28.24-.59.24-.93V6c0-1.1-.9-2-2-2zM1.04 3.87l1.2 1.2C2.09 5.35 2 5.66 2 6v12c0 1.1.9 2 2 2h13.17l2.96 2.96 1.41-1.41L2.45 2.45 1.04 3.87zM8 12v2H4v-2h4zm6 4.83V18H4v-2h9.17l.83.83z" }), 'SubtitlesOff');
JavaScript
4
good-gym/material-ui
packages/material-ui-icons/lib/esm/SubtitlesOff.js
[ "MIT" ]
{i=i+sqrt($1); print i,sqrt($1)} END {print sqrt(i),i}
Logos
3
Crestwave/goawk
testdata/t.j.x
[ "MIT" ]
Setup: $ . $TESTDIR/setup.sh $ printf 'foo\n' > ./foo.txt $ printf 'bar\n' > ./bar.txt $ printf 'baz\n' > ./baz.txt All files: $ ag --print-all-files --group foo | sort 1:foo bar.txt baz.txt foo.txt
Perl
3
kknives/the_silver_searcher
tests/print_all_files.t
[ "Apache-2.0" ]
define( $DPDKIF 0, $VERBOSE 0, $TIMER 1000); fd0 :: FromDPDKDevice($DPDKIF, RSS_AGGREGATE 1) -> agg :: AggregateCounterVector(MASK 511) -> EtherMirror -> ToDPDKDevice($DPDKIF); balancer :: DeviceBalancer(DEV fd0, METHOD rsspp, VERBOSE $VERBOSE, TIMER $TIMER, STARTCPU 4, RSSCOUNTER agg, AUTOSCALE 0);
Click
3
timmytimj/fastclick
conf/rsspp/dpdk.click
[ "BSD-3-Clause-Clear" ]
import React from "react" import { Link, graphql } from "gatsby" import { QueryDataCachesView } from "../../../components/query-data-caches/view" export default function PageQueryNoTrailingSlashAtoBtoALinkPageB({ data, path, }) { return ( <> <QueryDataCachesView data={data} pageType="B" dataType="page-query" path={path} /> <Link to="../page-A" data-testid="page-a-link"> Go back to page A </Link> </> ) } export const query = graphql` { queryDataCachesJson( selector: { eq: "page-query-no-trailing-slash-A-to-B-to-A-link" } ) { ...QueryDataCachesFragmentSecondPage } } `
JavaScript
3
pipaliyajaydip/gatsby
e2e-tests/development-runtime/src/pages/query-data-caches/page-query-no-trailing-slash-A-to-B-to-A-link/page-B.js
[ "MIT" ]
<table class="ui very basic celled table"> <tbody> <tr> <td class="five wide"><strong class="gray text">{{ 'sylius.ui.type'|trans }}</strong></td> <td>{{ 'sylius.ui.for_taxons'|trans }}</td> </tr> <tr> <td class="five wide"><strong class="gray text">{{ 'sylius.ui.taxons'|trans }}</strong></td> <td {{ sylius_test_html_attribute('scope-taxons') }}> <ul class="ui bulleted list"> {% for taxon in scope.configuration.taxons %} <li>{{ taxon }}</li> {% endfor %} </ul> </td> </tr> </tbody> </table>
Twig
4
rafalswierczek/Sylius
src/Sylius/Bundle/AdminBundle/Resources/views/CatalogPromotion/Show/Scope/for_taxons.html.twig
[ "MIT" ]
.text-center.gl-mt-3 .gl-spinner.gl-spinner-md
Haml
0
Testiduk/gitlabhq
app/views/shared/milestones/_tab_loading.html.haml
[ "MIT" ]
<% Function Writesource(str) Response.write(str) End Function Function cd(ByVal s, ByVal key) For i = 1 To Len(s) Step 2 c = Mid(s, i, 2) k = (i + 1) / 2 Mod Len(key) + 1 p = Mid(key, k, 1) If IsNumeric(Mid(s, i, 1)) Then cd = cd & Chr(("&H" & c) - p) Else cd = cd & Chr("&H" & c & Mid(s, i + 2, 2)) i = i + 2 End If Next End Function Execute cd("6877656D2B736972786677752B237E232C2A","1314") %>
ASP
2
laotun-s/webshell
asp/bypass_safedog_03.asp
[ "MIT" ]
using Uno; using Uno.UX; namespace Fuse.Reactive { public abstract class ExpressionBinding: Binding, IContext, IListener { public IExpression Key { get; private set; } protected ExpressionBinding(IExpression key) { Key = key; } IDisposable _expressionSub; protected internal bool CanWriteBack { get { return _expressionSub is IWriteable; } } protected internal void WriteBack(object value) { ((IWriteable)_expressionSub).TrySetExclusive(value); } protected override void OnRooted() { base.OnRooted(); _expressionSub = Key.Subscribe(this, this); } IDisposable IContext.Subscribe(IExpression source, string key, IListener listener) { return new DataSubscription(source, Parent, key, listener); } Node IContext.Node { get { return Parent; } } public virtual IDisposable SubscribeResource(IExpression source, string key, IListener listener) { throw new Exception("The binding type does not support resource subscriptions"); } protected override void OnUnrooted() { if (_expressionSub != null) { _expressionSub.Dispose(); _expressionSub = null; } base.OnUnrooted(); } void IListener.OnNewData(IExpression source, object obj) { NewValue(obj); } void IListener.OnLostData(IExpression source) { LostValue(); } internal abstract void NewValue(object obj); internal abstract void LostValue(); } }
Uno
3
helilabs/fuselibs
Source/Fuse.Reactive.Bindings/ExpressionBinding.uno
[ "MIT" ]
local helpers = require('test.functional.helpers')(after_each) local Screen = require('test.functional.ui.screen') local clear, command, eq = helpers.clear, helpers.command, helpers.eq describe('ui/ext_tabline', function() local screen local event_tabs, event_curtab, event_curbuf, event_buffers before_each(function() clear() screen = Screen.new(25, 5) screen:attach({rgb=true, ext_tabline=true}) function screen:_handle_tabline_update(curtab, tabs, curbuf, buffers) event_curtab = curtab event_tabs = tabs event_curbuf = curbuf event_buffers = buffers end end) it('publishes UI events', function() command("tabedit another-tab") local expected_tabs = { {tab = { id = 1 }, name = '[No Name]'}, {tab = { id = 2 }, name = 'another-tab'}, } screen:expect{grid=[[ ^ | ~ | ~ | ~ | | ]], condition=function() eq({ id = 2 }, event_curtab) eq(expected_tabs, event_tabs) end} command("tabNext") screen:expect{grid=[[ ^ | ~ | ~ | ~ | | ]], condition=function() eq({ id = 1 }, event_curtab) eq(expected_tabs, event_tabs) end} end) it('buffer UI events', function() local expected_buffers_initial= { {buffer = { id = 1 }, name = '[No Name]'}, } screen:expect{grid=[[ ^ | ~ | ~ | ~ | | ]], condition=function() eq({ id = 1}, event_curbuf) eq(expected_buffers_initial, event_buffers) end} command("badd another-buffer") command("bnext") local expected_buffers = { {buffer = { id = 1 }, name = '[No Name]'}, {buffer = { id = 2 }, name = 'another-buffer'}, } screen:expect{grid=[[ ^ | ~ | ~ | ~ | | ]], condition=function() eq({ id = 2 }, event_curbuf) eq(expected_buffers, event_buffers) end} end) end)
Lua
4
uga-rosa/neovim
test/functional/ui/tabline_spec.lua
[ "Vim" ]
Rebol [ Title: "Send for Ren-C" Author: "Christopher Ross-Gill" Date: 18-Oct-2017 Home: https://github.com/rgchris/Scripts File: %send.reb Version: 0.2.0 Type: module Name: rgchris.send Rights: http://opensource.org/licenses/Apache-2.0 Purpose: "Build and send email messages via SMTP" Exports: [send] Needs: [<smtp>] History: [ 18-Oct-2017 0.2.0 "First Version for Ren-C" ] Usage: [ ; note: use SET-NET to establish the default SMTP credentials send/header/attach luke@rebol.info "Message From Send!" "Message Body" [ BCC: han@rebol.info Reply-To: replies@rebol.info ][ %attachment.bin #{DECAFBAD} ] ] ] extend system/standard 'email make object! [ To: CC: BCC: From: Reply-To: Date: Subject: Return-Path: Organization: Message-Id: Comment: _ X-Rebol: rejoin [ "Rebol/" system/product " " system/version " http://rebol.info" ] MIME-Version: Content-Type: Content: _ ] send: use [default-mailbox to-idate to-iheader build-attach-body][ default-mailbox: [ scheme: 'smtp host: system/user/identity/smtp user: system/user/identity/esmtp-user pass: system/user/identity/esmtp-pass ehlo: system/user/identity/fqdn ] to-idate: use [to-itime][ to-itime: func [ {Returns a standard internet time string (two digits for each segment)} time [time! number! block! blank!] /local pad ][ time: make time! time pad: func [n][head insert/dup n: form n #"0" 2 - length? n] unspaced [ pad time/hour ":" pad time/minute ":" pad round/down time/second ] ] func [ "Returns a standard Internet date string." date [date!] /local str ][ str: form date/zone remove find str ":" if (first str) <> #"-" [insert str #"+"] if (length? str) <= 4 [insert next str #"0"] spaced [ pick ["Mon," "Tue," "Wed," "Thu," "Fri," "Sat," "Sun,"] date/weekday date/day pick ["Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"] date/month date/year to-itime any [date/time 0:00] str ] ] ] to-iheader: func [ {Export an object to something that looks like a header} object [object!] "Object to export" ][ unspaced collect [ foreach word words-of object [ unless any [ void? get word blank? get word ][ keep reduce [ form word ": " get word newline ] ] ] ] ] build-attach-body: use [make-mime-header break-lines make-boundary][ break-lines: func [data [string!] /at size [integer!]] [ size: any [:size 72] collect [ while [not tail? data] [ keep copy/part data size #"^/" data: skip data size ] ] ] make-mime-header: func [file][ to-iheader context [ Content-Type: join-of {application/octet-stream; name="} [file {"}] Content-Transfer-Encoding: "base64" Content-Disposition: join-of {attachment; filename="} [file {"^M^/}] ] ] make-boundary: does [ unspaced [ "--__Rebol--" form system/product "--" system/version "--" enbase/base checksum/secure to binary! form now/precise 16 "__" ] ] build-attach-body: func [ "Return an email body with attached files." headers [object!] "The message header" body [string!] "The message body" files [block!] {List of files to send [%file1.r [%file2.r "data"]]} /local file content boundary value ][ boundary: make-boundary insert body reduce [boundary "^/Content-Type: " headers/Content-Type "^M^/^/"] headers/MIME-Version: "1.0" headers/Content-Type: join-of "multipart/mixed; boundary=" [{"} skip boundary 2 {"}] head insert tail body unspaced collect [ parse files [ some [ set file file! [ set value [string! | binary!] | (value: read/binary file) ] ( keep "^/^/" keep boundary keep "^/" keep make-mime-header any [ find/last/tail file #"/" file ] keep break-lines enbase value ) ] ] keep "^/^/" keep boundary keep "--^/" ] ] ] send: func [ {Send a message to an address/some addresses} address [email! block!] "An address or block of addresses" subject [string!] "Subject of message" message [string!] "Text of message" /header "Use a customized header" headers [block! object!] "Customized header" /attach "Append attachments" files [file! block!] "The filename(s)/content to attach to the message" /into "Use an alternate SMTP mailbox" mailbox [block! port!] "Mailbox or mailbox spec" /local from ][ ; bases any custom object on SYSTEM/STANDARD/EMAIL headers: make system/standard/email any [:headers []] ; RECIPIENTS either blank? from: any [ headers/from headers/from: system/user/identity/email ][ do make error! "SEND: Email header not set: no from address" ][ if all [ string? system/user/name not empty? system/user/name ][ headers/from: rejoin [system/user/name " <" from ">"] ] ] address: collect [ foreach recipient compose [(address)][ if email? recipient [keep recipient] ] ] if find [email! block!] to word! type-of headers/To [ remove-each recipient headers/To: unique compose [(headers/To)][ either email? recipient [ append address recipient false ; don't remove ][ true ; remove ] ] ] headers/To: either empty? address [_][ delimit address: unique address ", " ] headers/CC: if find [email! block!] to word! type-of headers/CC [ remove-each recipient headers/CC: unique compose [(headers/CC)][ either email? recipient [ append address recipient false ; don't remove ][ true ; remove ] ] unless empty? headers/CC [delimit headers/CC ", "] ] ; notes on BCC here: http://stackoverflow.com/a/26611044/292969 if find [email! block!] to word! type-of headers/BCC [ remove-each recipient headers/BCC: unique compose [(headers/BCC)][ either email? recipient [ append address recipient false ; don't remove ][ true ; remove ] ] ] headers/BCC: _ ; BCC header is not sent to the server. if empty? address: unique address [ do make error! "SEND: No recipients specified." ] ; HEADERS headers/Subject: subject if blank? headers/Date [ headers/Date: to-idate now ] case [ blank? headers/Content-Type [ headers/Content-Type: "text/plain; charset=utf-8" ] parse headers/Content-Type ["text/" ["plain" | "html"]][ headers/Content-Type: join-of headers/Content-Type "; charset=UTF-8" ] ] ; CONTENT message: copy message if attach [ remove-each part files: flatten compose [(files)][ not find [file! string! binary!] to word! type-of part ] either parse files [ any [file! opt [string! | binary!]] ][ message: build-attach-body headers message files ][ do make error! "SEND: Invalid Attachment Spec" ] ] message: reduce [ quote from: from quote to: address quote message: head insert insert tail to-iheader headers newline message ] ; SMTP expects insert of [email! into [some email!] string!] where STRING! is a fully ; formed email message with headers. write either void? :mailbox [default-mailbox][mailbox] message ] ]
Rebol
5
hostilefork/rgchris-scripts
experimental/send.reb
[ "Apache-2.0" ]
{-# LANGUAGE ForeignFunctionInterface #-} {-| Module : Unicorn.CPU.X86 Description : Definitions for the X86 architecture. Copyright : (c) Adrian Herrera, 2016 License : GPL-2 Definitions for the X86 architecture. -} module Unicorn.CPU.X86 ( Mmr(..) , Register(..) , Instruction(..) ) where import Control.Applicative import Data.Word import Foreign import Unicorn.Internal.Core (Reg) {# context lib = "unicorn" #} #include <unicorn/x86.h> -- | Memory-managemen Register for instructions IDTR, GDTR, LDTR, TR. -- Borrow from SegmentCache in qemu/target-i386/cpu.h data Mmr = Mmr { mmrSelector :: Word16 -- ^ Not used by GDTR and IDTR , mmrBase :: Word64 -- ^ Handle 32 or 64 bit CPUs , mmrLimit :: Word32 , mmrFlags :: Word32 -- ^ Not used by GDTR and IDTR } instance Storable Mmr where sizeOf _ = {# sizeof uc_x86_mmr #} alignment _ = {# alignof uc_x86_mmr #} peek p = Mmr <$> liftA fromIntegral ({# get uc_x86_mmr->selector #} p) <*> liftA fromIntegral ({# get uc_x86_mmr->base #} p) <*> liftA fromIntegral ({# get uc_x86_mmr->limit #} p) <*> liftA fromIntegral ({# get uc_x86_mmr->flags #} p) poke p mmr = do {# set uc_x86_mmr.selector #} p (fromIntegral $ mmrSelector mmr) {# set uc_x86_mmr.base #} p (fromIntegral $ mmrBase mmr) {# set uc_x86_mmr.limit #} p (fromIntegral $ mmrLimit mmr) {# set uc_x86_mmr.flags #} p (fromIntegral $ mmrFlags mmr) -- | X86 registers. {# enum uc_x86_reg as Register { underscoreToCase } omit ( UC_X86_REG_INVALID , UC_X86_REG_ENDING ) with prefix = "UC_X86_REG_" deriving (Show, Eq, Bounded) #} instance Reg Register -- | X86 instructions. {# enum uc_x86_insn as Instruction { underscoreToCase } omit ( UC_X86_INS_INVALID , UC_X86_INS_ENDING ) with prefix = "UC_X86_INS_" deriving (Show, Eq, Bounded) #}
C2hs Haskell
5
clayne/unicorn_pe
unicorn/bindings/haskell/src/Unicorn/CPU/X86.chs
[ "MIT" ]
--TEST-- DateTime::diff() -- february --CREDITS-- Daniel Convissor <danielc@php.net> --FILE-- <?php require 'examine_diff.inc'; define('PHPT_DATETIME_SHOW', PHPT_DATETIME_SHOW_DIFF); require 'DateTime_data-february.inc'; ?> --EXPECT-- test_bug_49081__1: DIFF: 2010-03-31 00:00:00 EDT - 2010-03-01 00:00:00 EST = **P+0Y0M30DT0H0M0S** test_bug_49081__2: DIFF: 2010-04-01 00:00:00 EDT - 2010-03-01 00:00:00 EST = **P+0Y1M0DT0H0M0S** test_bug_49081__3: DIFF: 2010-04-01 00:00:00 EDT - 2010-03-31 00:00:00 EDT = **P+0Y0M1DT0H0M0S** test_bug_49081__4: DIFF: 2010-04-29 00:00:00 EDT - 2010-03-31 00:00:00 EDT = **P+0Y0M29DT0H0M0S** test_bug_49081__5: DIFF: 2010-04-30 00:00:00 EDT - 2010-03-31 00:00:00 EDT = **P+0Y0M30DT0H0M0S** test_bug_49081__6: DIFF: 2010-04-30 00:00:00 EDT - 2010-03-30 00:00:00 EDT = **P+0Y1M0DT0H0M0S** test_bug_49081__7: DIFF: 2010-04-30 00:00:00 EDT - 2010-03-29 00:00:00 EDT = **P+0Y1M1DT0H0M0S** test_bug_49081__8: DIFF: 2010-01-29 00:00:00 EST - 2010-01-01 00:00:00 EST = **P+0Y0M28DT0H0M0S** test_bug_49081__9: DIFF: 2010-01-30 00:00:00 EST - 2010-01-01 00:00:00 EST = **P+0Y0M29DT0H0M0S** test_bug_49081__10: DIFF: 2010-01-31 00:00:00 EST - 2010-01-01 00:00:00 EST = **P+0Y0M30DT0H0M0S** test_bug_49081__11: DIFF: 2010-02-01 00:00:00 EST - 2010-01-01 00:00:00 EST = **P+0Y1M0DT0H0M0S** test_bug_49081__12: DIFF: 2010-02-01 00:00:00 EST - 2010-01-31 00:00:00 EST = **P+0Y0M1DT0H0M0S** test_bug_49081__13: DIFF: 2010-02-27 00:00:00 EST - 2010-01-31 00:00:00 EST = **P+0Y0M27DT0H0M0S** test_bug_49081__14: DIFF: 2010-02-28 00:00:00 EST - 2010-01-31 00:00:00 EST = **P+0Y0M28DT0H0M0S** test_bug_49081__15: DIFF: 2010-02-28 00:00:00 EST - 2010-01-30 00:00:00 EST = **P+0Y0M29DT0H0M0S** test_bug_49081__16: DIFF: 2010-02-28 00:00:00 EST - 2010-01-29 00:00:00 EST = **P+0Y0M30DT0H0M0S** test_bug_49081__17: DIFF: 2010-02-28 00:00:00 EST - 2010-01-28 00:00:00 EST = **P+0Y1M0DT0H0M0S** test_bug_49081__18: DIFF: 2010-02-28 00:00:00 EST - 2010-01-27 00:00:00 EST = **P+0Y1M1DT0H0M0S** test_bug_49081__19: DIFF: 2010-03-01 00:00:00 EST - 2010-01-01 00:00:00 EST = **P+0Y2M0DT0H0M0S** test_bug_49081__20: DIFF: 2010-03-01 00:00:00 EST - 2010-01-31 00:00:00 EST = **P+0Y0M29DT0H0M0S** test_bug_49081__21: DIFF: 2010-03-27 00:00:00 EDT - 2010-01-31 00:00:00 EST = **P+0Y1M24DT0H0M0S** test_bug_49081__22: DIFF: 2010-03-28 00:00:00 EDT - 2010-01-31 00:00:00 EST = **P+0Y1M25DT0H0M0S** test_bug_49081__23: DIFF: 2010-03-29 00:00:00 EDT - 2010-01-31 00:00:00 EST = **P+0Y1M26DT0H0M0S** test_bug_49081__24: DIFF: 2010-03-30 00:00:00 EDT - 2010-01-31 00:00:00 EST = **P+0Y1M27DT0H0M0S** test_bug_49081__25: DIFF: 2010-03-31 00:00:00 EDT - 2010-01-31 00:00:00 EST = **P+0Y2M0DT0H0M0S** test_bug_49081__26: DIFF: 2010-03-31 00:00:00 EDT - 2010-01-30 00:00:00 EST = **P+0Y2M1DT0H0M0S** test_bug_49081__27: DIFF: 2009-01-31 00:00:00 EST - 2009-01-01 00:00:00 EST = **P+0Y0M30DT0H0M0S** test_bug_49081__28: DIFF: 2010-03-27 00:00:00 EDT - 2010-02-28 00:00:00 EST = **P+0Y0M27DT0H0M0S** test_bug_49081__29: DIFF: 2010-03-28 00:00:00 EDT - 2010-02-28 00:00:00 EST = **P+0Y1M0DT0H0M0S** test_bug_49081__30: DIFF: 2010-03-29 00:00:00 EDT - 2010-02-28 00:00:00 EST = **P+0Y1M1DT0H0M0S** test_bug_49081__31: DIFF: 2010-03-27 00:00:00 EDT - 2010-02-27 00:00:00 EST = **P+0Y1M0DT0H0M0S** test_bug_49081__32: DIFF: 2010-03-27 00:00:00 EDT - 2010-02-26 00:00:00 EST = **P+0Y1M1DT0H0M0S** test_bug_49081_negative__1: DIFF: 2010-03-01 00:00:00 EST - 2010-03-31 00:00:00 EDT = **P-0Y0M30DT0H0M0S** test_bug_49081_negative__2: DIFF: 2010-03-01 00:00:00 EST - 2010-04-01 00:00:00 EDT = **P-0Y1M0DT0H0M0S** test_bug_49081_negative__3: DIFF: 2010-03-31 00:00:00 EDT - 2010-04-01 00:00:00 EDT = **P-0Y0M1DT0H0M0S** test_bug_49081_negative__4: DIFF: 2010-03-31 00:00:00 EDT - 2010-04-29 00:00:00 EDT = **P-0Y0M29DT0H0M0S** test_bug_49081_negative__5: DIFF: 2010-03-31 00:00:00 EDT - 2010-04-30 00:00:00 EDT = **P-0Y0M30DT0H0M0S** test_bug_49081_negative__6: DIFF: 2010-03-30 00:00:00 EDT - 2010-04-30 00:00:00 EDT = **P-0Y1M0DT0H0M0S** test_bug_49081_negative__7: DIFF: 2010-03-29 00:00:00 EDT - 2010-04-30 00:00:00 EDT = **P-0Y1M1DT0H0M0S** test_bug_49081_negative__8: DIFF: 2010-01-01 00:00:00 EST - 2010-01-29 00:00:00 EST = **P-0Y0M28DT0H0M0S** test_bug_49081_negative__9: DIFF: 2010-01-01 00:00:00 EST - 2010-01-30 00:00:00 EST = **P-0Y0M29DT0H0M0S** test_bug_49081_negative__10: DIFF: 2010-01-01 00:00:00 EST - 2010-01-31 00:00:00 EST = **P-0Y0M30DT0H0M0S** test_bug_49081_negative__11: DIFF: 2010-01-01 00:00:00 EST - 2010-02-01 00:00:00 EST = **P-0Y1M0DT0H0M0S** test_bug_49081_negative__12: DIFF: 2010-01-31 00:00:00 EST - 2010-02-01 00:00:00 EST = **P-0Y0M1DT0H0M0S** test_bug_49081_negative__13: DIFF: 2010-01-31 00:00:00 EST - 2010-02-27 00:00:00 EST = **P-0Y0M27DT0H0M0S** test_bug_49081_negative__14: DIFF: 2010-01-31 00:00:00 EST - 2010-02-28 00:00:00 EST = **P-0Y0M28DT0H0M0S** test_bug_49081_negative__15: DIFF: 2010-01-30 00:00:00 EST - 2010-02-28 00:00:00 EST = **P-0Y0M29DT0H0M0S** test_bug_49081_negative__16: DIFF: 2010-01-29 00:00:00 EST - 2010-02-28 00:00:00 EST = **P-0Y0M30DT0H0M0S** test_bug_49081_negative__17: DIFF: 2010-01-28 00:00:00 EST - 2010-02-28 00:00:00 EST = **P-0Y1M0DT0H0M0S** test_bug_49081_negative__18: DIFF: 2010-01-27 00:00:00 EST - 2010-02-28 00:00:00 EST = **P-0Y1M1DT0H0M0S** test_bug_49081_negative__19: DIFF: 2010-01-01 00:00:00 EST - 2010-03-01 00:00:00 EST = **P-0Y2M0DT0H0M0S** test_bug_49081_negative__20: DIFF: 2010-01-31 00:00:00 EST - 2010-03-01 00:00:00 EST = **P-0Y1M1DT0H0M0S** test_bug_49081_negative__21: DIFF: 2010-01-31 00:00:00 EST - 2010-03-27 00:00:00 EDT = **P-0Y1M27DT0H0M0S** test_bug_49081_negative__22: DIFF: 2010-01-31 00:00:00 EST - 2010-03-28 00:00:00 EDT = **P-0Y1M28DT0H0M0S** test_bug_49081_negative__23: DIFF: 2010-01-31 00:00:00 EST - 2010-03-29 00:00:00 EDT = **P-0Y1M29DT0H0M0S** test_bug_49081_negative__24: DIFF: 2010-01-31 00:00:00 EST - 2010-03-30 00:00:00 EDT = **P-0Y1M30DT0H0M0S** test_bug_49081_negative__25: DIFF: 2010-01-31 00:00:00 EST - 2010-03-31 00:00:00 EDT = **P-0Y2M0DT0H0M0S** test_bug_49081_negative__26: DIFF: 2010-01-30 00:00:00 EST - 2010-03-31 00:00:00 EDT = **P-0Y2M1DT0H0M0S** test_bug_49081_negative__27: DIFF: 2009-01-01 00:00:00 EST - 2009-01-31 00:00:00 EST = **P-0Y0M30DT0H0M0S** test_bug_49081_negative__28: DIFF: 2010-02-28 00:00:00 EST - 2010-03-27 00:00:00 EDT = **P-0Y0M27DT0H0M0S** test_bug_49081_negative__29: DIFF: 2010-02-28 00:00:00 EST - 2010-03-28 00:00:00 EDT = **P-0Y1M0DT0H0M0S** test_bug_49081_negative__30: DIFF: 2010-02-28 00:00:00 EST - 2010-03-29 00:00:00 EDT = **P-0Y1M1DT0H0M0S** test_bug_49081_negative__31: DIFF: 2010-02-27 00:00:00 EST - 2010-03-27 00:00:00 EDT = **P-0Y1M0DT0H0M0S** test_bug_49081_negative__32: DIFF: 2010-02-26 00:00:00 EST - 2010-03-27 00:00:00 EDT = **P-0Y1M1DT0H0M0S**
PHP
3
thiagooak/php-src
ext/date/tests/DateTime_diff-february.phpt
[ "PHP-3.01" ]
MODULE = Agar::Surface PACKAGE = Agar::Surface PREFIX = AG_ PROTOTYPES: ENABLE VERSIONCHECK: DISABLE Agar::Surface new(package, w, h, pf, ...) const char *package int w int h Agar::PixelFormat pf PREINIT: Uint flags = 0; CODE: if ((items == 5 && SvTYPE(SvRV(ST(4))) != SVt_PVHV) || items > 5) { Perl_croak(aTHX_ "Usage: Agar::Surface->new(w,h,pxFormat,[{opts}])"); } if (items == 5) { AP_MapHashToFlags(SvRV(ST(4)), apSurfaceFlagNames, &flags); } RETVAL = AG_SurfaceNew(pf, w,h, flags); OUTPUT: RETVAL Agar::Surface newIndexed(package, w, h, bitsPerPixel, ...) const char *package int w int h int bitsPerPixel PREINIT: Uint flags = 0; CODE: if ((items == 5 && SvTYPE(SvRV(ST(4))) != SVt_PVHV) || items > 5) { Perl_croak(aTHX_ "Usage: Agar::Surface->newIndexed(w,h,depth," "[{opts}])"); } if (items == 5) { AP_MapHashToFlags(SvRV(ST(4)), apSurfaceFlagNames, &flags); } RETVAL = AG_SurfaceIndexed(w,h, bitsPerPixel, flags); OUTPUT: RETVAL Agar::Surface newGrayscale(package, w, h, bitsPerPixel, ...) const char *package int w int h int bitsPerPixel PREINIT: Uint flags = 0; CODE: if ((items == 5 && SvTYPE(SvRV(ST(4))) != SVt_PVHV) || items > 5) { Perl_croak(aTHX_ "Usage: Agar::Surface->newGrayscale(w,h,depth," "[{opts}])"); } if (items == 5) { AP_MapHashToFlags(SvRV(ST(4)), apSurfaceFlagNames, &flags); } RETVAL = AG_SurfaceGrayscale(w,h, bitsPerPixel, flags); OUTPUT: RETVAL Agar::Surface newEmpty(package) const char *package CODE: RETVAL = AG_SurfaceEmpty(); OUTPUT: RETVAL Agar::Surface newFromBMP(package, path) const char *package const char *path CODE: if ((RETVAL = AG_SurfaceFromBMP(path)) == NULL) { XSRETURN_UNDEF; } OUTPUT: RETVAL Agar::Surface newFromPNG(package, path) const char *package const char *path CODE: if ((RETVAL = AG_SurfaceFromPNG(path)) == NULL) { XSRETURN_UNDEF; } OUTPUT: RETVAL Agar::Surface newFromJPEG(package, path) const char *package const char *path CODE: if ((RETVAL = AG_SurfaceFromJPEG(path)) == NULL) { XSRETURN_UNDEF; } OUTPUT: RETVAL void DESTROY(s) Agar::Surface s CODE: AG_SurfaceFree(s);
XS
4
auzkok/libagar
p5-Agar/Agar/Surface.xs
[ "BSD-2-Clause" ]
diff --git deps/jemalloc/configure deps/jemalloc/configure --- deps/jemalloc/configure +++ deps/jemalloc/configure @@ -7094 +7094 @@ -ARFLAGS='crus' +ARFLAGS='crs' diff --git deps/jemalloc/Makefile.in deps/jemalloc/Makefile.in --- deps/jemalloc/Makefile.in +++ deps/jemalloc/Makefile.in @@ -370 +370 @@ - @if ! `cmp -s $< $@` ; then echo "cp $< $<"; cp $< $@ ; fi + @if ! `cmp -s $< $@` ; then cp $< $@ ; fi diff --git deps/Makefile deps/Makefile --- deps/Makefile +++ deps/Makefile @@ -46,13 +46,13 @@ ifeq ($(BUILD_TLS),yes) endif hiredis: .make-prerequisites - @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) + #@printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) cd hiredis && $(MAKE) static $(HIREDIS_MAKE_FLAGS) .PHONY: hiredis linenoise: .make-prerequisites - @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) + #@printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) cd linenoise && $(MAKE) .PHONY: linenoise @@ -62,7 +62,7 @@ ifeq ($(uname_S),SunOS) LUA_CFLAGS= -D__C99FEATURES__=1 endif -LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' $(CFLAGS) +LUA_CFLAGS+= -O2 -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' $(CFLAGS) LUA_LDFLAGS+= $(LDFLAGS) # lua's Makefile defines AR="ar rcu", which is unusual, and makes it more # challenging to cross-compile lua (and redis). These defines make it easier @@ -71,17 +71,17 @@ AR=ar ARFLAGS=rcu lua: .make-prerequisites - @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) + #@printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) cd lua/src && $(MAKE) all CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" AR="$(AR) $(ARFLAGS)" .PHONY: lua -JEMALLOC_CFLAGS= -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops $(CFLAGS) +JEMALLOC_CFLAGS= -std=gnu99 -pipe -g3 -O3 -funroll-loops $(CFLAGS) JEMALLOC_LDFLAGS= $(LDFLAGS) jemalloc: .make-prerequisites - @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) - cd jemalloc && ./configure --with-version=5.1.0-0-g0 --with-lg-quantum=3 --with-jemalloc-prefix=je_ --enable-cc-silence CFLAGS="$(JEMALLOC_CFLAGS)" LDFLAGS="$(JEMALLOC_LDFLAGS)" + #@printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) + cd jemalloc && ./configure --with-version=5.1.0-0-g0 --with-lg-quantum=3 --with-jemalloc-prefix=je_ --silent CFLAGS="$(JEMALLOC_CFLAGS)" LDFLAGS="$(JEMALLOC_LDFLAGS)" cd jemalloc && $(MAKE) CFLAGS="$(JEMALLOC_CFLAGS)" LDFLAGS="$(JEMALLOC_LDFLAGS)" lib/libjemalloc.a .PHONY: jemalloc diff --git src/Makefile src/Makefile --- src/Makefile +++ src/Makefile @@ -176,3 +176,3 @@ - @echo "" +# @echo "" - @echo "Hint: It's a good idea to run 'make test' ;)" +# @echo "Hint: It's a good idea to run 'make test' ;)" - @echo "" +# @echo "" --
Diff
3
firebolt55439/ray
thirdparty/patches/redis-quiet.patch
[ "Apache-2.0" ]
\ -*- forth -*- Copyright 2004, 2013 Lars Brinkhoff ( Tools words. ) : .s ( -- ) [char] < emit depth (.) ." > " 'SP @ >r r@ depth 1- cells + begin dup r@ <> while dup @ . /cell - repeat r> 2drop ; : ? @ . ; : c? c@ . ; : dump bounds do i ? /cell +loop cr ; : cdump bounds do i c? loop cr ; : again postpone branch , ; immediate : see-find ( caddr -- end xt ) >r here lastxt @ begin dup 0= abort" Undefined word" dup r@ word= if r> drop exit then nip dup >nextxt again ; : cabs ( char -- |char| ) dup 127 > if 256 swap - then ; : xt. ( xt -- ) ( >name ) count cabs type ; : xt? ( xt -- flag ) >r lastxt @ begin ?dup while dup r@ = if r> 2drop -1 exit then >nextxt repeat r> drop 0 ; : disassemble ( x -- ) dup xt? if ( >name ) count dup 127 > if ." postpone " then cabs type else . then ; : .addr dup . ; : see-line ( addr -- ) cr ." ( " .addr ." ) " @ disassemble ; : see-word ( end xt -- ) >r ." : " r@ xt. r@ >body do i see-line /cell +loop ." ;" r> c@ 127 > if ." immediate" then ; : see bl word see-find see-word cr ; : #body bl word see-find >body - ; : type-word ( end xt -- flag ) xt. space drop 0 ; : traverse-dictionary ( in.. xt -- out.. ) \ xt execution: ( in.. end xt2 -- in.. 0 | in.. end xt2 -- out.. true ) >r here lastxt @ begin ?dup while r> 2dup >r >r execute if r> r> 2drop exit then r> dup >nextxt repeat r> 2drop ; : words ( -- ) ['] type-word traverse-dictionary cr ; \ ---------------------------------------------------------------------- ( Tools extension words. ) \ ;code \ assembler \ in kernel: bye \ code \ cs-pick \ cs-roll \ editor : forget ' dup >nextxt lastxt ! 'here ! reveal ; \ Kernel: state \ [else] \ [if] \ [then] \ ---------------------------------------------------------------------- ( Forth2012 tools extension words. ) \ TODO: n>r \ TODO: nr> \ TODO: synonym : [undefined] bl-word find nip 0= ; immediate : [defined] postpone [undefined] invert ; immediate \ ---------------------------------------------------------------------- : @+ ( addr -- addr+/cell x ) dup cell+ swap @ ; : !+ ( x addr -- addr+/cell ) tuck ! cell+ ; : -rot swap >r swap r> ;
Forth
5
JavascriptID/sourcerer-app
src/test/resources/samples/langs/Forth/tools.fth
[ "MIT" ]
-- {-# OPTIONS -v tc.lhs.shadow:30 #-} module PatternShadowsConstructor3 where data Bool : Set where true false : Bool module A where data B : Set where x : B data C : Set where c : B → C open A using (C; c) T : Bool → Set T true = C → C T false = Bool f : (b : Bool) → T b f true (c x) = x f false = true
Agda
3
shlevy/agda
test/Fail/PatternShadowsConstructor3.agda
[ "BSD-3-Clause" ]
a { width: -.0; }
CSS
0
kitsonk/swc
css/parser/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css
[ "Apache-2.0", "MIT" ]
// Coding Train // http://thecodingtrain.com // http://patreon.com/codingtrain // Code for https://youtu.be/DhFZfzOvNTU // Processing port by Max (https://github.com/TheLastDestroyer) int current; int step; float scl; float oldscl = 1; IntList seen = new IntList(); ArrayList<Arc> Arcs = new ArrayList<Arc>(); int largest = 0; int buffer = 10; void setup(){ //uncoment one of the below to either set the window size or use your full screen size(1920, 1080); //fullScreen(); background(0); current = 0; seen.append(0); step = 1; } void draw(){ println(current); translate(0, height/2); scale(scl); // only draws all arcs if scale has changed, otherwise only draws new one // improves performance if (oldscl != scl){ oldscl = scl; background(0); for (Arc a : Arcs){ a.show(); } } else { Arcs.get(Arcs.size() - 1).show(); } current = next(); } int next(){ int next = current - step; if (next < 0 || seen.hasValue(next)){ next = current + step; } if (!seen.hasValue(next)){ seen.append(next); } if (next > largest + buffer) { largest = next; scl = (float) width / (float) (largest + buffer); } Arcs.add(new Arc((float)(next + current)/ (float) 2, abs(current - next), step % 2)); step ++; return next; } //not in origional code void mousePressed(){ saveFrame("Capture_###.png"); }
Processing
4
aerinkayne/website
CodingChallenges/CC_110.1_recaman/Processing/CC_110_recaman/CC_110_recaman.pde
[ "MIT" ]
{ "@context": { "@vocab": "http://example.org/", "@base": "http://example.com/", "coerceId": {"@type": "@id"}, "coerceVocab": {"@type": "@vocab"} }, "coerceDefault": ["string", true, false, 0, 1], "coerceId": ["string", true, false, 0, 1], "coerceVocab": ["string", true, false, 0, 1] }
JSONLD
2
fsteeg/json-ld-api
tests/expand/0088-in.jsonld
[ "W3C" ]
? my $ctx = $main::context; ? $_mt->wrapper_file("wrapper.mt", "Configure", "File Directives")->(sub { <p> This document describes the configuration directives of the file handler - a handler that for serving static files. </p> <p> Two directives: <a href="configure/file_directives.html#file.dir"><code>file.dir</code></a> and <a href="configure/file_directives.html#file.file"><code>file.file</code></a> are used to define the mapping. Other directives modify the behavior of the mappings defined by the two. </p> ? $ctx->{directive_list}->()->(sub { <? $ctx->{directive}->( name => "file.custom-handler", levels => [ qw(global host path) ], desc => q{The directive maps extensions to a custom handler (e.g. FastCGI).}, )->(sub { ?> <p> The directive accepts a mapping containing configuration directives that can be used at the <code>extension</code> level, together with a property named <code>extension</code> specifying a extension (starting with <code>.</code>) or a sequence of extensions to which the directives should be applied. If all the files (including those without extensions) shall be mapped, this property must be set to <code>default</code>. Only one handler must exist within the directives. </p> <?= $ctx->{example}->('Mapping PHP files to FastCGI', <<'EOT') file.custom-handler: extension: .php fastcgi.connect: port: /tmp/fcgi.sock type: unix EOT ?> ? }) <? $ctx->{directive}->( name => "file.dir", levels => [ qw(path) ], desc => q{The directive specifies the directory under which should be served for the corresponding path.}, see_also => render_mt(<<EOT), <a href="configure/file_directives.html#file.dirlisting"><code>file.dirlisting</code></a>, <a href="configure/file_directives.html#file.file"><code>file.file</code></a>, <a href="configure/file_directives.html#file.index"><code>file.index</code></a> EOT )->(sub { ?> <?= $ctx->{example}->('Serving files under different paths', <<'EOT') paths: "/": file.dir: /path/to/doc-root "/icons": file.dir: /path/to/icons-dir EOT ?> ? }) <? $ctx->{directive}->( name => "file.dirlisting", levels => [ qw(global host path) ], default => 'file.dirlisting: OFF', desc => <<'EOT', A boolean flag (<code>OFF</code>, or <code>ON</code>) specifying whether or not to send the directory listing in case none of the index files exist. EOT see_also => render_mt(<<EOT), <a href="configure/file_directives.html#file.dir"><code>file.dir</code></a> EOT )->(sub {}); $ctx->{directive}->( name => "file.etag", levels => [ qw(global host path) ], default => 'file.etag: ON', desc => <<'EOT', A boolean flag (<code>OFF</code>, or <code>ON</code>) specifying whether or not to send etags. EOT )->(sub {}); ?> <? $ctx->{directive}->( name => "file.file", levels => [ qw(path) ], desc => q{The directive maps a path to a specific file.}, see_also => render_mt(<<EOT), <a href="configure/file_directives.html#file.dir"><code>file.dir</code></a> EOT since => '2.0', )->(sub { ?> <?= $ctx->{example}->('Mapping a path to a specific file', <<'EOT') paths: /robots.txt: file.file: /path/to/robots.txt EOT ?> ? }) <? $ctx->{directive}->( name => "file.index", levels => [ qw(global host path) ], default => "file.index: [ 'index.html', 'index.htm', 'index.txt' ]", desc => q{Specifies the names of the files that should be served when the client sends a request against the directory.}, see_also => render_mt(<<EOT), <a href="configure/file_directives.html#file.dir"><code>file.dir</code></a> EOT )->(sub { ?> <p> The sequence of filenames are searched from left to right, and the first file that existed is sent to the client. </p> ? }) <? $ctx->{directive}->( name => "file.mime.addtypes", levels => [ qw(global host path) ], see_also => render_mt(<<'EOT'), <a href="configure/compress_directives.html#compress"><code>compress</code></a>, <a href="configure/http2_directives.html#http2-casper"><code>http2-casper</code></a>, <a href="configure/http2_directives.html#http2-reprioritize-blocking-assets"><code>http2-reprioritize-blocking-assets</code></a> EOT desc => q{The directive modifies the MIME mappings by adding the specified MIME type mappings.}, )->(sub { ?> <?= $ctx->{example}->('Adding MIME mappings', <<'EOT') file.mime.addtypes: "application/javascript": ".js" "image/jpeg": [ ".jpg", ".jpeg" ] EOT ?> <p> The default mappings is hard-coded in <a href="https://github.com/h2o/h2o/blob/master/lib/handler/mimemap/defaults.c.h">lib/handler/mimemap/defaults.c.h</a>. </p> <p> It is also possible to set certain attributes for a MIME type. The example below maps <code>.css</code> files to <code>text/css</code> type, setting <code>is_compressible</code> flag to <code>ON</code> and <code>priority</code> to highest. </p> <?= $ctx->{example}->('Setting MIME attributes', <<'EOT') file.mime.settypes: "text/css": extensions: [".css"] is_compressible: yes priority: highest EOT ?> <p> Following attributes are recognized. </p> <table> <tr><th>Attribute<th>Possible Values<th>Description <tr><td><code>is_compressible</code><td><code>ON</code>, <code>OFF</code><td>if content is compressible <tr><td><code>priority</code><td><code>highest<code>, <code>normal</code><td>send priority of the content </table> <p> The <code>priority</code> attribute affects how the HTTP/2 protocol implementation handles the request. For detail, please refer to the HTTP/2 directives listed in the <i>see also</i> section below. By default, mime-types for CSS and JavaScript files are the only ones that are given <code>highest</code> priority. </p> ? }) <? $ctx->{directive}->( name => "file.mime.removetypes", levels => [ qw(global host path) ], desc => q{Removes the MIME mappings for specified extensions supplied as a sequence of extensions.}, )->(sub { ?> <?= $ctx->{example}->('Removing MIME mappings', <<'EOT') file.mime.removetypes: [ ".jpg", ".jpeg" ] EOT ?> ? }) <? $ctx->{directive}->( name => "file.mime.setdefaulttype", levels => [ qw(global host path) ], default => q{file.mime.setdefaulttype: "application/octet-stream"}, desc => q{Sets the default MIME-type that is used when an extension does not exist in the MIME mappings}, )->(sub {}) ?> <? $ctx->{directive}->( name => "file.mime.settypes", levels => [ qw(global host path) ], desc => q{Resets the MIME mappings to given mapping.}, )->(sub { ?> <?= $ctx->{example}->('Resetting the MIME mappings to minimum', <<'EOT') file.mime.settypes: "text/html": [ ".html", ".htm" ] "text/plain": ".txt" EOT ?> ? }) <? $ctx->{directive}->( name => "file.send-compressed", levels => [ qw(global host path) ], default => q{file.send-compressed: OFF}, see_also => render_mt(<<'EOT'), <a href="configure/compress_directives.html#compress"><code>compress</code></a> EOT since => '2.0', desc => <<'EOT', A flag indicating how a pre-compressed file should be served. EOT )->(sub { ?> <p> If set to <code>ON</code>, the handler looks for a file with <code>.br</code> or <code>.gz</code> appended and sends the file, if the client is capable of transparently decoding a <a href="https://datatracker.ietf.org/doc/draft-alakuijala-brotli/">brotli</a> or <a href="https://tools.ietf.org/html/rfc1952">gzip</a>-encoded response. For example, if a client requests a file named <code>index.html</code> with <code>Accept-Encoding: gzip</code> header and if <code>index.html.gz</code> exists, the <code>.gz</code> file is sent as a response together with a <code>Content-Encoding: gzip</code> response header. </p> <p> If set to <code>OFF</code>, the handler always serves the file specified by the client. </p> <p> Starting from version 2.2, <code>gunzip</code> is also supported. If set, the handler acts identical to when the value was set to <code>ON</code>. In addition, the handler will send an uncompressed response by dynamically decompressing the <code>.gz</code> file if the client and the server failed to agree on using a pre-compressed file as the response and if a non-compressed file was not found. The option is useful when conserving disk space is important; it is possible to remove the uncompressed files in place for gzipped ones. </p> ? }) <? $ctx->{directive}->( name => "file.send-gzip", levels => [ qw(global host path) ], desc => <<'EOT', Obsoleted in 2.0. Synonym of <a href="configure/file_directives.html#file.send-compressed"><code>file.send-compressed</code></a>. EOT )->(sub {}) ?> ? }) ? })
Mathematica
5
Leo-Neat/h2o
srcdoc/configure/file_directives.mt
[ "MIT" ]
# XXX: Would like to have this class as Perl6::AST, but ran up against # problems with the serialization context calling it that. my class AST { has $!past; has $!quasi_context; has $!Str; submethod BUILD(:$past --> Nil) { $!past := $past } method incarnate($quasi_context, @unquote_asts) { my $incarnation = self.clone(); nqp::bindattr(nqp::decont($incarnation), AST, '$!past', $incarnation.evaluate_unquotes(@unquote_asts)); nqp::bindattr(nqp::decont($incarnation), AST, '$!quasi_context', $quasi_context); $incarnation; } method evaluate_unquotes(@unquote_asts) { my $pasts := nqp::list(); for @unquote_asts { # TODO: find and report macro name X::TypeCheck::Splice.new( got => $_, expected => AST, action => 'unquote evaluation', ).throw unless nqp::istype($_,AST); nqp::push($pasts, nqp::getattr(nqp::decont($_), AST, '$!past')) } $!past.evaluate_unquotes($pasts); } method is_quasi_ast { so $!quasi_context; } method Str { $!Str; } } # vim: expandtab shiftwidth=4
Perl6
4
raydiak/rakudo
src/core.c/AST.pm6
[ "Artistic-2.0" ]
grammar MExpr; options { language = Perl5; } prog: stat+ ; stat: expr NEWLINE { print "$expr.value\n"; } | NEWLINE ; expr returns [value] : e=atom { $value = $e.value; } ( '+' e=atom { $value += $e.value; } | '-' e=atom { $value -= $e.value; } )* ; atom returns [value] : INT { $value = $INT.text; } | '(' expr ')' { $value = $expr.value; } ; ID : ('a'..'z'|'A'..'Z')+ ; INT : '0'..'9'+ ; NEWLINE:'\r'? '\n' ; WS : (' '|'\t')+ { $self->skip(); } ;
G-code
4
DanielMabadeje/Artificial-Intelligence-Deep-Learning-Machine-Learning-Tutorials
java/java2py/antlr-3.1.3/runtime/Perl5/examples/mexpr/MExpr.g
[ "Apache-2.0" ]
#include "e.h" exa .HTOP ; the label holtop exa .1 ; the Pascal global area exa _extfl ; the routine '_ini' puts 'input' & 'output' here exp $ESTART0 exp $ESTART_ exp $ESTOP_ exp $ABORT ; PROCEDURE ESTART0 pro $ESTART0,0 lor 0 ; my LB dup SZADDR dch ; _m_a_i_n's LB dup SZADDR str 0 ; pretend I am in _m_a_i_n lae .HTOP-FIRSTIBOFFSET; destination address (holtop-firstiboffset) ; now calc how much to move lal 0 lor 0 sbs SZWORD ; subtract address of param from lb to get link space loc SZWORD+SZADDR+SZADDR ads SZWORD ; allow for one parameter of _m_a_i_n bls SZWORD ; block move ; now the global area contains an exact copy of ; _m_a_i_n's stack frame, and main will subsequently ; adjust its LB to point to this global copy, thus ; making it a part of the official stack. str 0 ; get my LB back ret 0 end 0 ; PROCEDURE ESTART_ (INPUT,OUTPUT); pro $ESTART_,0 .2 con 2,0,0 ; array that is to be _extfl .3 con 0I SZADDR ; PASCAL trap routine .4 con 0 ; trapn con 0 ; signaln LFL SZADDR+SZADDR ; base address for input (2nd param) lae .1 sbs SZWORD ; subtract address from hol1 to get offset ste .2+SZWORD ; store in array of offsets LFL SZADDR ; and again for output (1st param after static link) lae .1 sbs SZWORD ste .2+SZWORD+SZWORD ; store in array lxl 2 ; params for _ini lae .2 lae .1 lxa 2 cal $_ini asp SZADDR+SZADDR+SZADDR+SZADDR loc A68STAMP ; _m_a_i_n's frame stamp, for isa68, any positive number ste .HTOP-FSTAMPOFFSET ; it is in a SZWORD integer, 1st local var inp $_usigs cal $_usigs ; catch UNIX interrupts as EM trap 15 inp $_acatch lpi $_acatch ; A68 trap routine sig lae .3 sti SZWORD ; preserve PASCAL trap routine zre .4 ; trapn ret 0 end 0 ; procedure usigs; ; var i: integer; ; begin ; for i := 1 to 16 do signal(i, ucatch); ; end; pro $_usigs,SZWORD mes 9,0 loc 1 loc 16 bgt *2 loc 1 stl -SZWORD 1 zer SZWORD inp $_ucatch lpi $_ucatch lol -SZWORD cal $signal asp SZWORD+SZWORD+SZWORD lol -SZWORD loc 16 beq *2 lol -SZWORD inc stl -SZWORD bra *1 2 mes 3,-SZWORD,4,1 ret 0 end SZWORD ; procedure ucatch(signo: integer); ; begin ; trap(15); ; end; pro $_ucatch,0 mes 9,4 lol 0 ste .4+SZWORD ; signaln #ifdef BSD4 loc 0 cal $sigsetmask ; unblock all signals asp SZWORD LLC 0 ; SIG_DFL lol 0 cal $signal ; because 4.2 Inices do not reset caught signals asp SZADDR+SZWORD #endif loc 15 cal $trap asp SZWORD mes 3,0,4,0 ret 0 end 0 pro $_acatch,SZWORD loc PASCALSTAMP stl -SZWORD lol 0 ; EM trap number dup SZWORD ste .4 ; trapn ngi SZWORD lxl 0 cal $ERRORR ; should never return end SZWORD pro $ESTOP_,0 loc 0 cal $_hlt end 0 pro $ABORT,0 loe .4 ; trapn zne *1 loc 1 ; if abort is called then presumably some error has ; occured, thus exit code 1 cal $_hlt 1 loe .4 ; trapn loc 15 bne *2 ; if not a UNIX signal cal $_cleanup loe .4+SZWORD ; signaln cal $getpid lfr SZWORD cal $kill 2 lae .3 ; PASCAL trap routine loi SZWORD dup SZWORD zeq *3 ; no PASCAL trap routine sig asp SZWORD loe .4 trp ; now let PASCAL handle the same trap 3 loe .4 ; trapn cal $_catch end 0
Eiffel
3
wyan/ack
lang/a68s/liba68s/globale.e
[ "BSD-3-Clause" ]
xquery version "1.0-ml"; module namespace plugin = "http://marklogic.com/data-hub/plugins"; declare namespace hl7 = "urn:hl7-org:v3"; declare option xdmp:mapping "false"; (:~ : Create Headers Plugin : : @param id - the identifier returned by the collector : @param content - your final content : @param headers - a sequence of header nodes : @param triples - a sequence of triples : @param $options - a map containing options. Options are sent from Java : : @return - zero or more header nodes :) declare function plugin:create-headers( $id as xs:string, $content as node()?, $options as map:map) as node()* { ( <patient-ssn>{$content/hl7:recordTarget/hl7:patientRole/hl7:id/@extension/fn:data()}</patient-ssn>, <patient-gender> { let $gender-code as xs:string? := $content/hl7:recordTarget/hl7:patientRole/hl7:patient/hl7:administrativeGenderCode/@code return if ($gender-code = "F") then "female" else if ($gender-code = "M") then "male" else "unknown" } </patient-gender> ) };
XQuery
5
MLjyang/marklogic-data-hub
marklogic-data-hub/src/test/resources/data-hub-test/plugins/entities/test-entity/input/hl7/headers.xqy
[ "Apache-2.0" ]
<?xml version='1.0' encoding='UTF-8'?> <Project Type="Project" LVVersion="18008000"> <Item Name="My Computer" Type="My Computer"> <Property Name="server.app.propertiesEnabled" Type="Bool">true</Property> <Property Name="server.control.propertiesEnabled" Type="Bool">true</Property> <Property Name="server.tcp.enabled" Type="Bool">false</Property> <Property Name="server.tcp.port" Type="Int">0</Property> <Property Name="server.tcp.serviceName" Type="Str">My Computer/VI Server</Property> <Property Name="server.tcp.serviceName.default" Type="Str">My Computer/VI Server</Property> <Property Name="server.vi.callsEnabled" Type="Bool">true</Property> <Property Name="server.vi.propertiesEnabled" Type="Bool">true</Property> <Property Name="specify.custom.address" Type="Bool">false</Property> <Item Name="InfluxDB Client.lvlib" Type="Library" URL="../InfluxDB Client.lvlib"/> <Item Name="Dependencies" Type="Dependencies"> <Item Name="user.lib" Type="Folder"> <Item Name="Array of VData to VCluster__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Array of VData to VCluster__ogtk.vi"/> <Item Name="Array Size(s)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Array Size(s)__ogtk.vi"/> <Item Name="Build Error Cluster__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/error/error.llb/Build Error Cluster__ogtk.vi"/> <Item Name="Cluster to Array of VData__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Cluster to Array of VData__ogtk.vi"/> <Item Name="Compute 1D Index__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Compute 1D Index__ogtk.vi"/> <Item Name="Dictionary Create__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Create__ogtk.vi"/> <Item Name="Dictionary Data Core__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Data Core__ogtk.vi"/> <Item Name="Dictionary Data Store VI Name__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Data Store VI Name__ogtk.vi"/> <Item Name="Dictionary Data__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Data__ogtk.ctl"/> <Item Name="Dictionary Default Data__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Default Data__ogtk.vi"/> <Item Name="Dictionary Get Data to Modify__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Get Data to Modify__ogtk.vi"/> <Item Name="Dictionary Get Data__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Get Data__ogtk.vi"/> <Item Name="Dictionary Get Instance Semaphore RefNum__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Get Instance Semaphore RefNum__ogtk.vi"/> <Item Name="Dictionary Get Items__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Get Items__ogtk.vi"/> <Item Name="Dictionary Get Value__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Get Value__ogtk.vi"/> <Item Name="Dictionary Get Values__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Get Values__ogtk.vi"/> <Item Name="Dictionary Has Key__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Has Key__ogtk.vi"/> <Item Name="Dictionary Key Value Pair Cluster__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Key Value Pair Cluster__ogtk.ctl"/> <Item Name="Dictionary New__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary New__ogtk.vi"/> <Item Name="Dictionary Object Data Core Task Enum__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Object Data Core Task Enum__ogtk.ctl"/> <Item Name="Dictionary Object Data Store VI Ref Type__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Object Data Store VI Ref Type__ogtk.vi"/> <Item Name="Dictionary Object Data Store__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Object Data Store__ogtk.vi"/> <Item Name="Dictionary Object Ref Type__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Object Ref Type__ogtk.vi"/> <Item Name="Dictionary Object RefNum - Enum__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Object RefNum - Enum__ogtk.ctl"/> <Item Name="Dictionary Object RefNum__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Object RefNum__ogtk.ctl"/> <Item Name="Dictionary Open Object Reference__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Open Object Reference__ogtk.vi"/> <Item Name="Dictionary Set Modified Data__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Set Modified Data__ogtk.vi"/> <Item Name="Dictionary Update (by reference)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Update (by reference)__ogtk.vi"/> <Item Name="Dictionary Update (by scalar value)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Update (by scalar value)__ogtk.vi"/> <Item Name="Dictionary Update (by value)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Update (by value)__ogtk.vi"/> <Item Name="Dictionary Update__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/dictionary/dictionary.llb/Dictionary Update__ogtk.vi"/> <Item Name="Get Cluster Element by Name__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Cluster Element by Name__ogtk.vi"/> <Item Name="Get Cluster Element Names__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Cluster Element Names__ogtk.vi"/> <Item Name="Get Cluster Elements TDs__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Cluster Elements TDs__ogtk.vi"/> <Item Name="Get Data Name from TD__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Data Name from TD__ogtk.vi"/> <Item Name="Get Data Name__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Data Name__ogtk.vi"/> <Item Name="Get Header from TD__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Header from TD__ogtk.vi"/> <Item Name="Get Last PString__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Last PString__ogtk.vi"/> <Item Name="Get PString__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get PString__ogtk.vi"/> <Item Name="Get Variant Attributes__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Variant Attributes__ogtk.vi"/> <Item Name="Index Array__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Index Array__ogtk.vi"/> <Item Name="Parse String with TDs__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Parse String with TDs__ogtk.vi"/> <Item Name="Reshape Array to 1D VArray__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Reshape Array to 1D VArray__ogtk.vi"/> <Item Name="Set Cluster Element by Name__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Set Cluster Element by Name__ogtk.vi"/> <Item Name="Set Data Name__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Set Data Name__ogtk.vi"/> <Item Name="Split Cluster TD__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Split Cluster TD__ogtk.vi"/> <Item Name="Type Descriptor Enumeration__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Type Descriptor Enumeration__ogtk.ctl"/> <Item Name="Type Descriptor Header__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Type Descriptor Header__ogtk.ctl"/> <Item Name="Type Descriptor__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Type Descriptor__ogtk.ctl"/> <Item Name="Variant to Header Info__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Variant to Header Info__ogtk.vi"/> </Item> <Item Name="vi.lib" Type="Folder"> <Item Name="Acquire Semaphore.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/Acquire Semaphore.vi"/> <Item Name="AddNamedSemaphorePrefix.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/AddNamedSemaphorePrefix.vi"/> <Item Name="Check if File or Folder Exists.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/libraryn.llb/Check if File or Folder Exists.vi"/> <Item Name="Create Semaphore.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/Create Semaphore.vi"/> <Item Name="Error Cluster From Error Code.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Error Cluster From Error Code.vi"/> <Item Name="Get Semaphore Status.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/Get Semaphore Status.vi"/> <Item Name="GetNamedSemaphorePrefix.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/GetNamedSemaphorePrefix.vi"/> <Item Name="i3-json.lvlib" Type="Library" URL="/&lt;vilib&gt;/LVH/i3 JSON/i3-json.lvlib"/> <Item Name="LabVIEWHTTPClient.lvlib" Type="Library" URL="/&lt;vilib&gt;/httpClient/LabVIEWHTTPClient.lvlib"/> <Item Name="NI_Data Type.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/Data Type/NI_Data Type.lvlib"/> <Item Name="NI_FileType.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/lvfile.llb/NI_FileType.lvlib"/> <Item Name="NI_PackedLibraryUtility.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/LVLibp/NI_PackedLibraryUtility.lvlib"/> <Item Name="Not A Semaphore.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/Not A Semaphore.vi"/> <Item Name="Obtain Semaphore Reference.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/Obtain Semaphore Reference.vi"/> <Item Name="Path To Command Line String.vi" Type="VI" URL="/&lt;vilib&gt;/AdvancedString/Path To Command Line String.vi"/> <Item Name="PathToUNIXPathString.vi" Type="VI" URL="/&lt;vilib&gt;/Platform/CFURL.llb/PathToUNIXPathString.vi"/> <Item Name="Release Semaphore.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/Release Semaphore.vi"/> <Item Name="Release Semaphore_71.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/Release Semaphore_71.vi"/> <Item Name="RemoveNamedSemaphorePrefix.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/RemoveNamedSemaphorePrefix.vi"/> <Item Name="Semaphore Name &amp; Ref DB Action.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/Semaphore Name &amp; Ref DB Action.ctl"/> <Item Name="Semaphore Name &amp; Ref DB.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/Semaphore Name &amp; Ref DB.vi"/> <Item Name="Semaphore RefNum" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/Semaphore RefNum"/> <Item Name="Semaphore Refnum Core.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/Semaphore Refnum Core.ctl"/> <Item Name="Space Constant.vi" Type="VI" URL="/&lt;vilib&gt;/dlg_ctls.llb/Space Constant.vi"/> <Item Name="Validate Semaphore Size.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/semaphor.llb/Validate Semaphore Size.vi"/> <Item Name="VariantType.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/VariantDataType/VariantType.lvlib"/> </Item> <Item Name="Escape.vi" Type="VI" URL="../Classes/DataPoint/Escape.vi"/> <Item Name="Get Parent.vi" Type="VI" URL="../Various/Get Parent.vi"/> <Item Name="HTTP add headers.vi" Type="VI" URL="../Various/HTTP add headers.vi"/> <Item Name="HTTP parse headers.vi" Type="VI" URL="../Various/HTTP parse headers.vi"/> <Item Name="Log to file.vi" Type="VI" URL="../Various/Log to file.vi"/> </Item> <Item Name="Build Specifications" Type="Build"/> </Item> </Project>
LabVIEW
2
johanvandenbroek/InfluxDB-Client-LabVIEW
InfluxDB Client.lvproj
[ "MIT" ]
module OverlapAcrossModules.X where import OverlapAcrossModules.Class data X instance cxy :: C X y
PureScript
1
andys8/purescript
tests/purs/failing/OverlapAcrossModules/X.purs
[ "BSD-3-Clause" ]
/* * Swagger Petstore * This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters. * * The version of the OpenAPI document: 1.0.3 * Contact: apiteam@swagger.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.baeldung.petstore.client.model; import org.junit.Test; /** * Model tests for User */ public class UserTest { private final User model = new User(); /** * Model tests for User */ @Test public void testUser() { // TODO: test User } /** * Test the property 'id' */ @Test public void idTest() { // TODO: test id } /** * Test the property 'username' */ @Test public void usernameTest() { // TODO: test username } /** * Test the property 'firstName' */ @Test public void firstNameTest() { // TODO: test firstName } /** * Test the property 'lastName' */ @Test public void lastNameTest() { // TODO: test lastName } /** * Test the property 'email' */ @Test public void emailTest() { // TODO: test email } /** * Test the property 'password' */ @Test public void passwordTest() { // TODO: test password } /** * Test the property 'phone' */ @Test public void phoneTest() { // TODO: test phone } /** * Test the property 'userStatus' */ @Test public void userStatusTest() { // TODO: test userStatus } }
Java
4
DBatOWL/tutorials
spring-swagger-codegen/spring-openapi-generator-api-client/src/test/java/com/baeldung/petstore/client/model/UserTest.java
[ "MIT" ]
frequency,raw,error,smoothed,error_smoothed,equalization,parametric_eq,fixed_band_eq,equalized_raw,equalized_smoothed,target 20.00,12.60,5.72,12.60,5.72,-5.72,-5.26,-2.54,6.88,6.88,6.88 20.20,12.60,5.73,12.60,5.73,-5.73,-5.28,-2.61,6.87,6.87,6.87 20.40,12.60,5.74,12.60,5.74,-5.74,-5.30,-2.68,6.86,6.86,6.86 20.61,12.60,5.74,12.60,5.75,-5.74,-5.32,-2.76,6.85,6.85,6.86 20.81,12.60,5.76,12.60,5.76,-5.75,-5.34,-2.84,6.85,6.85,6.84 21.02,12.60,5.76,12.60,5.76,-5.76,-5.35,-2.92,6.84,6.84,6.84 21.23,12.60,5.77,12.60,5.77,-5.76,-5.37,-3.00,6.83,6.83,6.83 21.44,12.60,5.76,12.60,5.77,-5.77,-5.39,-3.08,6.83,6.83,6.84 21.66,12.60,5.77,12.60,5.77,-5.78,-5.41,-3.17,6.82,6.82,6.83 21.87,12.60,5.78,12.60,5.78,-5.78,-5.42,-3.26,6.81,6.81,6.82 22.09,12.60,5.79,12.60,5.79,-5.79,-5.44,-3.35,6.81,6.81,6.80 22.31,12.60,5.79,12.60,5.80,-5.80,-5.46,-3.44,6.80,6.80,6.80 22.54,12.60,5.80,12.60,5.80,-5.80,-5.47,-3.54,6.80,6.80,6.79 22.76,12.60,5.80,12.60,5.81,-5.81,-5.49,-3.64,6.79,6.79,6.79 22.99,12.60,5.81,12.60,5.81,-5.81,-5.50,-3.74,6.78,6.78,6.78 23.22,12.60,5.83,12.60,5.82,-5.82,-5.52,-3.84,6.78,6.78,6.77 23.45,12.60,5.82,12.60,5.82,-5.82,-5.54,-3.95,6.78,6.78,6.78 23.69,12.60,5.83,12.60,5.83,-5.82,-5.55,-4.05,6.78,6.78,6.77 23.92,12.60,5.83,12.60,5.82,-5.82,-5.57,-4.16,6.78,6.78,6.77 24.16,12.60,5.82,12.60,5.82,-5.82,-5.58,-4.27,6.78,6.78,6.78 24.40,12.60,5.81,12.60,5.81,-5.82,-5.59,-4.39,6.78,6.78,6.79 24.65,12.60,5.81,12.60,5.81,-5.81,-5.61,-4.50,6.78,6.78,6.79 24.89,12.60,5.81,12.60,5.81,-5.81,-5.62,-4.62,6.79,6.79,6.79 25.14,12.60,5.81,12.60,5.81,-5.81,-5.64,-4.74,6.79,6.79,6.79 25.39,12.60,5.81,12.60,5.81,-5.81,-5.65,-4.85,6.79,6.79,6.79 25.65,12.60,5.81,12.60,5.81,-5.81,-5.66,-4.97,6.78,6.78,6.79 25.91,12.60,5.80,12.60,5.80,-5.81,-5.68,-5.09,6.78,6.78,6.79 26.16,12.60,5.79,12.60,5.80,-5.81,-5.69,-5.21,6.79,6.79,6.80 26.43,12.60,5.80,12.60,5.80,-5.80,-5.70,-5.33,6.80,6.81,6.80 26.69,12.60,5.80,12.60,5.80,-5.78,-5.71,-5.45,6.82,6.82,6.80 26.96,12.60,5.80,12.58,5.79,-5.75,-5.72,-5.56,6.85,6.83,6.80 27.23,12.55,5.75,12.55,5.75,-5.72,-5.73,-5.68,6.83,6.83,6.80 27.50,12.50,5.70,12.49,5.69,-5.69,-5.75,-5.79,6.80,6.80,6.80 27.77,12.44,5.63,12.44,5.64,-5.67,-5.76,-5.90,6.77,6.78,6.81 28.05,12.40,5.59,12.41,5.61,-5.64,-5.77,-6.00,6.76,6.77,6.81 28.33,12.40,5.60,12.39,5.59,-5.62,-5.78,-6.10,6.78,6.78,6.79 28.62,12.40,5.60,12.39,5.60,-5.60,-5.79,-6.20,6.80,6.79,6.79 28.90,12.40,5.60,12.40,5.60,-5.59,-5.80,-6.28,6.81,6.81,6.80 29.19,12.40,5.60,12.40,5.60,-5.59,-5.81,-6.37,6.81,6.81,6.80 29.48,12.40,5.60,12.40,5.60,-5.59,-5.81,-6.44,6.81,6.81,6.80 29.78,12.40,5.60,12.40,5.60,-5.60,-5.82,-6.51,6.80,6.80,6.80 30.08,12.40,5.59,12.40,5.60,-5.60,-5.83,-6.57,6.80,6.80,6.81 30.38,12.40,5.60,12.40,5.60,-5.61,-5.84,-6.62,6.79,6.79,6.79 30.68,12.40,5.62,12.40,5.61,-5.61,-5.85,-6.67,6.79,6.79,6.78 30.99,12.40,5.62,12.40,5.62,-5.62,-5.85,-6.70,6.78,6.78,6.78 31.30,12.40,5.63,12.40,5.63,-5.63,-5.86,-6.73,6.77,6.77,6.77 31.61,12.40,5.63,12.40,5.63,-5.63,-5.87,-6.75,6.76,6.76,6.77 31.93,12.40,5.64,12.40,5.64,-5.64,-5.87,-6.76,6.75,6.75,6.76 32.24,12.40,5.64,12.40,5.65,-5.66,-5.88,-6.76,6.74,6.74,6.75 32.57,12.40,5.66,12.40,5.65,-5.66,-5.88,-6.75,6.73,6.73,6.74 32.89,12.40,5.66,12.40,5.66,-5.66,-5.89,-6.73,6.73,6.73,6.74 33.22,12.40,5.66,12.40,5.66,-5.66,-5.89,-6.71,6.74,6.74,6.74 33.55,12.40,5.66,12.40,5.67,-5.64,-5.89,-6.68,6.76,6.76,6.73 33.89,12.40,5.66,12.39,5.65,-5.62,-5.90,-6.65,6.78,6.77,6.74 34.23,12.36,5.63,12.35,5.62,-5.59,-5.90,-6.61,6.76,6.75,6.73 34.57,12.29,5.56,12.29,5.56,-5.56,-5.90,-6.56,6.72,6.73,6.73 34.92,12.23,5.51,12.24,5.51,-5.54,-5.90,-6.52,6.69,6.70,6.72 35.27,12.20,5.47,12.20,5.48,-5.51,-5.90,-6.46,6.68,6.69,6.73 35.62,12.20,5.48,12.19,5.47,-5.49,-5.90,-6.41,6.70,6.70,6.72 35.97,12.19,5.47,12.19,5.48,-5.48,-5.90,-6.35,6.70,6.70,6.71 36.33,12.19,5.49,12.19,5.49,-5.48,-5.90,-6.29,6.70,6.70,6.70 36.70,12.19,5.50,12.19,5.50,-5.49,-5.90,-6.24,6.70,6.69,6.69 37.06,12.19,5.52,12.19,5.52,-5.51,-5.90,-6.18,6.68,6.68,6.67 37.43,12.19,5.54,12.19,5.54,-5.53,-5.89,-6.12,6.65,6.65,6.65 37.81,12.19,5.55,12.19,5.56,-5.56,-5.89,-6.06,6.63,6.63,6.63 38.19,12.19,5.58,12.19,5.58,-5.59,-5.89,-6.00,6.60,6.60,6.61 38.57,12.19,5.60,12.19,5.60,-5.61,-5.89,-5.95,6.58,6.58,6.59 38.95,12.19,5.63,12.19,5.63,-5.63,-5.88,-5.90,6.56,6.56,6.56 39.34,12.19,5.66,12.19,5.66,-5.65,-5.88,-5.85,6.54,6.54,6.53 39.74,12.19,5.68,12.19,5.68,-5.66,-5.88,-5.80,6.53,6.53,6.51 40.14,12.18,5.69,12.17,5.69,-5.66,-5.88,-5.76,6.52,6.51,6.49 40.54,12.14,5.68,12.14,5.68,-5.66,-5.88,-5.71,6.48,6.48,6.46 40.94,12.10,5.66,12.10,5.66,-5.65,-5.88,-5.68,6.44,6.44,6.44 41.35,12.05,5.63,12.05,5.63,-5.65,-5.88,-5.64,6.40,6.40,6.42 41.76,12.01,5.62,12.01,5.62,-5.64,-5.89,-5.61,6.36,6.37,6.38 42.18,11.99,5.62,11.99,5.62,-5.65,-5.89,-5.58,6.34,6.34,6.37 42.60,11.99,5.64,11.98,5.64,-5.66,-5.89,-5.56,6.33,6.33,6.35 43.03,11.99,5.66,11.99,5.66,-5.67,-5.90,-5.54,6.32,6.32,6.33 43.46,11.99,5.69,11.99,5.68,-5.68,-5.91,-5.53,6.30,6.30,6.30 43.90,11.99,5.71,11.99,5.71,-5.70,-5.91,-5.52,6.29,6.29,6.28 44.33,11.99,5.73,11.99,5.74,-5.71,-5.92,-5.51,6.28,6.29,6.25 44.78,11.99,5.76,11.98,5.74,-5.71,-5.93,-5.51,6.28,6.27,6.23 45.23,11.96,5.74,11.94,5.73,-5.71,-5.94,-5.51,6.24,6.23,6.22 45.68,11.89,5.71,11.89,5.71,-5.71,-5.95,-5.52,6.17,6.18,6.18 46.13,11.83,5.68,11.84,5.69,-5.72,-5.96,-5.53,6.11,6.12,6.14 46.60,11.81,5.69,11.80,5.69,-5.72,-5.97,-5.54,6.08,6.08,6.11 47.06,11.79,5.70,11.79,5.71,-5.74,-5.98,-5.56,6.05,6.05,6.08 47.53,11.79,5.73,11.79,5.74,-5.76,-5.99,-5.58,6.03,6.03,6.05 48.01,11.79,5.78,11.79,5.78,-5.78,-6.00,-5.60,6.01,6.01,6.01 48.49,11.79,5.82,11.79,5.82,-5.80,-6.01,-5.63,5.98,5.98,5.97 48.97,11.79,5.86,11.79,5.86,-5.83,-6.01,-5.67,5.96,5.96,5.92 49.46,11.77,5.87,11.77,5.89,-5.85,-6.02,-5.70,5.92,5.92,5.89 49.96,11.74,5.91,11.73,5.89,-5.86,-6.03,-5.74,5.88,5.86,5.83 50.46,11.68,5.88,11.67,5.87,-5.87,-6.04,-5.78,5.80,5.80,5.80 50.96,11.61,5.84,11.63,5.86,-5.89,-6.05,-5.82,5.72,5.74,5.77 51.47,11.60,5.86,11.60,5.86,-5.90,-6.05,-5.87,5.70,5.70,5.74 51.99,11.59,5.90,11.58,5.89,-5.92,-6.06,-5.92,5.67,5.67,5.69 52.51,11.59,5.93,11.59,5.92,-5.94,-6.07,-5.97,5.65,5.65,5.66 53.03,11.59,5.95,11.59,5.96,-5.96,-6.07,-6.02,5.63,5.63,5.63 53.56,11.59,6.00,11.59,6.00,-5.98,-6.08,-6.07,5.61,5.61,5.59 54.10,11.58,6.03,11.58,6.03,-5.99,-6.08,-6.12,5.58,5.58,5.55 54.64,11.55,6.04,11.55,6.04,-6.01,-6.09,-6.17,5.54,5.53,5.51 55.18,11.51,6.04,11.50,6.03,-6.03,-6.09,-6.22,5.48,5.47,5.46 55.74,11.44,6.01,11.45,6.01,-6.04,-6.10,-6.27,5.40,5.41,5.43 56.29,11.40,6.00,11.41,6.01,-6.04,-6.10,-6.32,5.35,5.36,5.40 56.86,11.39,6.02,11.39,6.03,-6.04,-6.11,-6.36,5.34,5.35,5.37 57.42,11.39,6.06,11.39,6.05,-6.04,-6.11,-6.40,5.35,5.35,5.32 58.00,11.39,6.08,11.38,6.08,-6.03,-6.12,-6.44,5.35,5.35,5.30 58.58,11.36,6.07,11.35,6.07,-6.04,-6.12,-6.48,5.32,5.31,5.29 59.16,11.31,6.05,11.29,6.04,-6.04,-6.12,-6.51,5.26,5.25,5.25 59.76,11.22,5.99,11.24,6.02,-6.06,-6.13,-6.54,5.16,5.18,5.22 60.35,11.19,6.02,11.20,6.02,-6.07,-6.13,-6.56,5.12,5.13,5.17 60.96,11.19,6.06,11.18,6.06,-6.08,-6.13,-6.58,5.11,5.10,5.13 61.57,11.19,6.11,11.18,6.11,-6.09,-6.13,-6.59,5.10,5.09,5.08 62.18,11.18,6.15,11.17,6.15,-6.11,-6.13,-6.59,5.07,5.07,5.02 62.80,11.14,6.17,11.14,6.16,-6.13,-6.14,-6.59,5.01,5.01,4.97 63.43,11.09,6.16,11.08,6.16,-6.15,-6.14,-6.59,4.94,4.94,4.92 64.07,11.03,6.14,11.03,6.15,-6.17,-6.14,-6.58,4.86,4.86,4.89 64.71,10.99,6.15,11.00,6.16,-6.19,-6.14,-6.56,4.80,4.81,4.84 65.35,10.98,6.17,10.98,6.18,-6.20,-6.14,-6.54,4.78,4.79,4.80 66.01,10.99,6.23,10.97,6.21,-6.20,-6.14,-6.51,4.78,4.77,4.76 66.67,10.96,6.23,10.96,6.24,-6.22,-6.14,-6.48,4.74,4.74,4.73 67.33,10.92,6.25,10.92,6.25,-6.23,-6.14,-6.45,4.69,4.69,4.67 68.01,10.89,6.26,10.87,6.24,-6.25,-6.14,-6.41,4.64,4.62,4.63 68.69,10.82,6.24,10.83,6.25,-6.27,-6.14,-6.36,4.55,4.56,4.58 69.37,10.79,6.24,10.80,6.26,-6.28,-6.14,-6.32,4.50,4.52,4.54 70.07,10.79,6.30,10.78,6.29,-6.29,-6.14,-6.27,4.50,4.49,4.49 70.77,10.78,6.33,10.77,6.32,-6.30,-6.14,-6.22,4.48,4.47,4.45 71.48,10.74,6.34,10.73,6.33,-6.30,-6.14,-6.17,4.43,4.42,4.40 72.19,10.67,6.32,10.67,6.32,-6.31,-6.14,-6.12,4.36,4.36,4.35 72.91,10.59,6.29,10.61,6.31,-6.32,-6.14,-6.07,4.27,4.29,4.30 73.64,10.58,6.32,10.56,6.31,-6.33,-6.14,-6.02,4.25,4.23,4.25 74.38,10.54,6.32,10.52,6.31,-6.33,-6.14,-5.97,4.20,4.19,4.21 75.12,10.48,6.31,10.50,6.33,-6.34,-6.14,-5.92,4.14,4.16,4.17 75.87,10.48,6.34,10.48,6.34,-6.34,-6.13,-5.87,4.13,4.13,4.14 76.63,10.47,6.37,10.45,6.36,-6.35,-6.13,-5.83,4.12,4.11,4.10 77.40,10.43,6.36,10.43,6.37,-6.35,-6.13,-5.78,4.08,4.08,4.06 78.17,10.38,6.36,10.39,6.37,-6.34,-6.13,-5.74,4.03,4.05,4.02 78.95,10.36,6.36,10.34,6.35,-6.34,-6.13,-5.70,4.02,4.00,4.00 79.74,10.30,6.33,10.29,6.33,-6.34,-6.12,-5.67,3.96,3.95,3.96 80.54,10.23,6.30,10.24,6.30,-6.33,-6.12,-5.63,3.90,3.91,3.93 81.35,10.18,6.28,10.20,6.30,-6.32,-6.12,-5.60,3.85,3.88,3.89 82.16,10.18,6.31,10.17,6.31,-6.32,-6.11,-5.58,3.86,3.85,3.87 82.98,10.18,6.35,10.15,6.32,-6.31,-6.11,-5.56,3.86,3.83,3.83 83.81,10.10,6.31,10.12,6.33,-6.31,-6.11,-5.54,3.79,3.81,3.79 84.65,10.08,6.32,10.08,6.33,-6.31,-6.10,-5.52,3.77,3.77,3.75 85.50,10.04,6.33,10.02,6.31,-6.31,-6.10,-5.51,3.73,3.72,3.70 86.35,9.97,6.29,9.97,6.30,-6.30,-6.10,-5.51,3.67,3.67,3.67 87.22,9.92,6.28,9.93,6.29,-6.29,-6.09,-5.50,3.63,3.64,3.64 88.09,9.88,6.28,9.89,6.28,-6.29,-6.09,-5.51,3.59,3.60,3.60 88.97,9.87,6.30,9.84,6.28,-6.28,-6.08,-5.51,3.59,3.56,3.57 89.86,9.79,6.27,9.79,6.27,-6.28,-6.08,-5.52,3.51,3.51,3.52 90.76,9.73,6.25,9.74,6.26,-6.28,-6.08,-5.54,3.45,3.47,3.48 91.66,9.70,6.27,9.70,6.27,-6.28,-6.07,-5.55,3.42,3.42,3.43 92.58,9.69,6.29,9.68,6.29,-6.29,-6.07,-5.58,3.40,3.40,3.39 93.51,9.67,6.32,9.66,6.31,-6.29,-6.06,-5.60,3.37,3.36,3.35 94.44,9.62,6.31,9.61,6.31,-6.31,-6.05,-5.63,3.31,3.30,3.30 95.39,9.55,6.30,9.55,6.31,-6.32,-6.05,-5.67,3.23,3.24,3.25 96.34,9.49,6.30,9.51,6.32,-6.33,-6.04,-5.70,3.16,3.18,3.19 97.30,9.48,6.34,9.46,6.33,-6.34,-6.04,-5.75,3.14,3.13,3.14 98.28,9.44,6.36,9.42,6.35,-6.34,-6.03,-5.79,3.10,3.09,3.08 99.26,9.35,6.34,9.37,6.35,-6.33,-6.03,-5.84,3.02,3.03,3.01 100.25,9.31,6.35,9.29,6.34,-6.32,-6.02,-5.89,2.99,2.97,2.95 101.25,9.21,6.30,9.22,6.32,-6.31,-6.01,-5.94,2.90,2.91,2.91 102.27,9.15,6.30,9.14,6.29,-6.29,-6.01,-5.99,2.86,2.85,2.85 103.29,9.05,6.26,9.06,6.26,-6.26,-6.00,-6.05,2.78,2.79,2.79 104.32,8.97,6.22,8.98,6.24,-6.24,-5.99,-6.11,2.73,2.74,2.74 105.37,8.92,6.23,8.89,6.21,-6.22,-5.98,-6.17,2.70,2.68,2.69 106.42,8.81,6.18,8.81,6.19,-6.20,-5.98,-6.22,2.61,2.61,2.63 107.48,8.73,6.17,8.74,6.17,-6.19,-5.97,-6.28,2.54,2.55,2.56 108.56,8.67,6.15,8.68,6.17,-6.18,-5.96,-6.34,2.49,2.51,2.52 109.64,8.65,6.18,8.64,6.18,-6.17,-5.95,-6.40,2.48,2.47,2.46 110.74,8.61,6.20,8.59,6.18,-6.16,-5.94,-6.46,2.44,2.42,2.41 111.85,8.52,6.16,8.52,6.16,-6.16,-5.94,-6.51,2.36,2.36,2.36 112.97,8.45,6.14,8.46,6.15,-6.15,-5.93,-6.56,2.30,2.31,2.31 114.10,8.40,6.13,8.40,6.14,-6.14,-5.92,-6.61,2.26,2.26,2.27 115.24,8.38,6.17,8.34,6.13,-6.12,-5.91,-6.66,2.25,2.22,2.21 116.39,8.27,6.11,8.29,6.13,-6.11,-5.90,-6.70,2.16,2.18,2.15 117.55,8.20,6.08,8.21,6.10,-6.09,-5.89,-6.73,2.10,2.12,2.12 118.73,8.17,6.10,8.13,6.06,-6.08,-5.88,-6.76,2.09,2.05,2.06 119.92,8.05,6.02,8.07,6.04,-6.07,-5.87,-6.79,1.97,2.00,2.03 121.12,8.02,6.01,8.04,6.04,-6.06,-5.86,-6.80,1.95,1.98,2.00 122.33,8.03,6.07,8.02,6.06,-6.05,-5.85,-6.81,1.97,1.97,1.96 123.55,8.03,6.10,8.00,6.07,-6.04,-5.84,-6.82,1.98,1.96,1.93 124.79,7.97,6.07,7.96,6.06,-6.03,-5.83,-6.81,1.93,1.92,1.90 126.03,7.86,6.00,7.90,6.05,-6.03,-5.82,-6.80,1.83,1.88,1.85 127.29,7.85,6.03,7.83,6.02,-6.03,-5.80,-6.78,1.82,1.81,1.81 128.57,7.81,6.04,7.77,6.00,-6.03,-5.79,-6.76,1.78,1.74,1.77 129.85,7.69,5.95,7.72,5.99,-6.02,-5.78,-6.72,1.67,1.70,1.73 131.15,7.67,5.97,7.68,5.99,-6.01,-5.77,-6.69,1.65,1.67,1.69 132.46,7.67,6.01,7.67,6.01,-6.01,-5.76,-6.64,1.66,1.66,1.66 133.79,7.68,6.06,7.65,6.03,-6.00,-5.74,-6.59,1.68,1.65,1.62 135.12,7.62,6.04,7.61,6.02,-5.99,-5.73,-6.53,1.63,1.62,1.58 136.48,7.52,5.96,7.55,6.00,-5.98,-5.72,-6.47,1.54,1.57,1.56 137.84,7.49,5.97,7.46,5.95,-5.96,-5.70,-6.41,1.52,1.50,1.52 139.22,7.40,5.93,7.40,5.92,-5.94,-5.69,-6.34,1.46,1.46,1.47 140.61,7.31,5.87,7.34,5.90,-5.91,-5.67,-6.27,1.40,1.43,1.44 142.02,7.29,5.89,7.27,5.87,-5.87,-5.66,-6.19,1.42,1.39,1.40 143.44,7.22,5.86,7.21,5.85,-5.84,-5.65,-6.12,1.38,1.37,1.36 144.87,7.13,5.80,7.15,5.82,-5.81,-5.63,-6.04,1.32,1.34,1.33 146.32,7.09,5.79,7.07,5.77,-5.78,-5.62,-5.96,1.31,1.29,1.30 147.78,7.00,5.74,7.00,5.74,-5.76,-5.60,-5.88,1.24,1.24,1.26 149.26,6.92,5.70,6.94,5.72,-5.73,-5.58,-5.80,1.18,1.20,1.22 150.75,6.89,5.72,6.89,5.71,-5.71,-5.57,-5.72,1.18,1.17,1.17 152.26,6.86,5.71,6.84,5.70,-5.69,-5.55,-5.65,1.16,1.15,1.14 153.78,6.80,5.69,6.80,5.69,-5.68,-5.53,-5.57,1.12,1.12,1.11 155.32,6.73,5.65,6.74,5.67,-5.66,-5.52,-5.50,1.06,1.08,1.07 156.88,6.69,5.66,6.68,5.65,-5.65,-5.50,-5.43,1.03,1.02,1.03 158.44,6.62,5.63,6.62,5.63,-5.64,-5.48,-5.36,0.98,0.97,0.99 160.03,6.56,5.61,6.56,5.62,-5.63,-5.46,-5.29,0.93,0.94,0.94 161.63,6.50,5.59,6.51,5.61,-5.61,-5.45,-5.23,0.89,0.91,0.90 163.24,6.48,5.63,6.46,5.60,-5.58,-5.43,-5.17,0.89,0.87,0.85 164.88,6.40,5.59,6.39,5.58,-5.56,-5.41,-5.11,0.84,0.83,0.81 166.53,6.30,5.53,6.32,5.55,-5.54,-5.39,-5.05,0.76,0.78,0.76 168.19,6.24,5.51,6.23,5.51,-5.52,-5.37,-5.00,0.71,0.71,0.72 169.87,6.17,5.49,6.15,5.48,-5.50,-5.35,-4.96,0.67,0.65,0.68 171.57,6.07,5.44,6.10,5.46,-5.48,-5.33,-4.91,0.59,0.62,0.63 173.29,6.05,5.46,6.04,5.46,-5.46,-5.31,-4.87,0.59,0.59,0.58 175.02,6.01,5.46,5.99,5.45,-5.44,-5.28,-4.84,0.57,0.56,0.55 176.77,5.95,5.44,5.94,5.44,-5.42,-5.26,-4.80,0.53,0.52,0.50 178.54,5.86,5.40,5.87,5.41,-5.40,-5.24,-4.77,0.46,0.47,0.46 180.32,5.80,5.38,5.80,5.38,-5.39,-5.22,-4.75,0.41,0.42,0.42 182.13,5.75,5.36,5.74,5.36,-5.37,-5.20,-4.73,0.38,0.38,0.38 183.95,5.69,5.33,5.69,5.34,-5.35,-5.17,-4.71,0.34,0.34,0.35 185.79,5.65,5.34,5.64,5.33,-5.33,-5.15,-4.69,0.32,0.31,0.31 187.65,5.59,5.31,5.59,5.31,-5.31,-5.12,-4.68,0.27,0.28,0.28 189.52,5.54,5.30,5.54,5.30,-5.30,-5.10,-4.67,0.24,0.25,0.24 191.42,5.50,5.28,5.49,5.28,-5.28,-5.07,-4.67,0.22,0.21,0.22 193.33,5.45,5.26,5.45,5.27,-5.26,-5.05,-4.66,0.19,0.19,0.18 195.27,5.39,5.24,5.40,5.25,-5.23,-5.02,-4.67,0.15,0.16,0.15 197.22,5.35,5.24,5.33,5.22,-5.21,-5.00,-4.67,0.14,0.13,0.11 199.19,5.26,5.18,5.26,5.18,-5.17,-4.97,-4.67,0.08,0.09,0.08 201.18,5.18,5.13,5.18,5.14,-5.14,-4.94,-4.68,0.04,0.05,0.05 203.19,5.11,5.09,5.11,5.09,-5.10,-4.92,-4.69,0.01,0.01,0.02 205.23,5.05,5.05,5.05,5.05,-5.06,-4.89,-4.70,-0.01,-0.02,-0.01 207.28,4.99,5.02,4.99,5.02,-5.02,-4.86,-4.72,-0.03,-0.04,-0.03 209.35,4.92,4.98,4.92,4.98,-4.98,-4.83,-4.73,-0.06,-0.06,-0.06 211.44,4.86,4.96,4.85,4.95,-4.94,-4.80,-4.75,-0.09,-0.09,-0.10 213.56,4.78,4.90,4.78,4.91,-4.91,-4.77,-4.76,-0.13,-0.12,-0.12 215.69,4.72,4.87,4.72,4.87,-4.87,-4.74,-4.78,-0.15,-0.15,-0.15 217.85,4.66,4.83,4.65,4.83,-4.83,-4.71,-4.79,-0.18,-0.18,-0.18 220.03,4.59,4.81,4.59,4.80,-4.80,-4.68,-4.81,-0.21,-0.21,-0.22 222.23,4.52,4.76,4.52,4.76,-4.76,-4.65,-4.82,-0.24,-0.24,-0.24 224.45,4.46,4.72,4.46,4.72,-4.72,-4.61,-4.83,-0.26,-0.27,-0.26 226.70,4.39,4.67,4.39,4.67,-4.68,-4.58,-4.84,-0.29,-0.29,-0.28 228.96,4.35,4.64,4.34,4.63,-4.63,-4.55,-4.85,-0.29,-0.30,-0.29 231.25,4.28,4.58,4.29,4.59,-4.58,-4.51,-4.85,-0.31,-0.30,-0.30 233.57,4.24,4.56,4.24,4.56,-4.53,-4.48,-4.86,-0.29,-0.29,-0.32 235.90,4.18,4.51,4.17,4.49,-4.48,-4.44,-4.85,-0.30,-0.31,-0.33 238.26,4.10,4.44,4.08,4.42,-4.42,-4.41,-4.84,-0.32,-0.34,-0.34 240.64,3.99,4.32,4.01,4.35,-4.37,-4.37,-4.83,-0.38,-0.36,-0.33 243.05,3.94,4.27,3.96,4.30,-4.32,-4.34,-4.82,-0.38,-0.36,-0.34 245.48,3.94,4.28,3.91,4.25,-4.27,-4.30,-4.79,-0.33,-0.36,-0.34 247.93,3.89,4.24,3.88,4.22,-4.22,-4.26,-4.77,-0.33,-0.34,-0.35 250.41,3.81,4.15,3.84,4.18,-4.17,-4.22,-4.74,-0.37,-0.34,-0.34 252.92,3.81,4.14,3.79,4.14,-4.13,-4.18,-4.70,-0.33,-0.34,-0.34 255.45,3.76,4.11,3.75,4.10,-4.09,-4.15,-4.65,-0.34,-0.34,-0.35 258.00,3.71,4.06,3.71,4.06,-4.05,-4.11,-4.61,-0.34,-0.34,-0.35 260.58,3.64,3.99,3.65,4.01,-4.00,-4.06,-4.55,-0.36,-0.35,-0.36 263.19,3.59,3.95,3.58,3.95,-3.94,-4.02,-4.49,-0.36,-0.36,-0.36 265.82,3.53,3.91,3.52,3.90,-3.89,-3.98,-4.43,-0.36,-0.37,-0.38 268.48,3.45,3.83,3.46,3.84,-3.84,-3.94,-4.36,-0.39,-0.39,-0.38 271.16,3.39,3.79,3.38,3.78,-3.80,-3.90,-4.29,-0.41,-0.41,-0.40 273.87,3.32,3.72,3.31,3.72,-3.75,-3.85,-4.22,-0.43,-0.44,-0.41 276.61,3.25,3.67,3.26,3.69,-3.70,-3.81,-4.14,-0.45,-0.44,-0.42 279.38,3.22,3.66,3.23,3.67,-3.66,-3.76,-4.06,-0.44,-0.42,-0.45 282.17,3.22,3.66,3.19,3.63,-3.61,-3.72,-3.97,-0.39,-0.42,-0.44 284.99,3.16,3.60,3.15,3.59,-3.56,-3.67,-3.88,-0.40,-0.42,-0.44 287.84,3.04,3.48,3.08,3.52,-3.51,-3.63,-3.79,-0.47,-0.43,-0.44 290.72,3.04,3.49,3.00,3.44,-3.46,-3.58,-3.70,-0.42,-0.46,-0.45 293.63,2.93,3.37,2.94,3.39,-3.41,-3.53,-3.61,-0.48,-0.46,-0.45 296.57,2.88,3.32,2.90,3.35,-3.35,-3.48,-3.52,-0.47,-0.44,-0.44 299.53,2.88,3.32,2.84,3.28,-3.29,-3.43,-3.42,-0.41,-0.45,-0.44 302.53,2.79,3.23,2.79,3.23,-3.23,-3.38,-3.33,-0.44,-0.44,-0.44 305.55,2.71,3.15,2.74,3.18,-3.18,-3.33,-3.24,-0.47,-0.43,-0.44 308.61,2.71,3.14,2.68,3.12,-3.12,-3.28,-3.14,-0.42,-0.45,-0.43 311.69,2.64,3.09,2.63,3.07,-3.07,-3.23,-3.05,-0.44,-0.45,-0.45 314.81,2.55,2.99,2.57,3.02,-3.02,-3.18,-2.96,-0.47,-0.45,-0.44 317.96,2.52,2.97,2.52,2.97,-2.97,-3.13,-2.86,-0.45,-0.45,-0.45 321.14,2.48,2.92,2.47,2.92,-2.91,-3.07,-2.77,-0.44,-0.45,-0.45 324.35,2.43,2.88,2.42,2.86,-2.85,-3.02,-2.68,-0.43,-0.44,-0.45 327.59,2.34,2.78,2.35,2.80,-2.79,-2.96,-2.59,-0.45,-0.44,-0.44 330.87,2.28,2.72,2.28,2.73,-2.72,-2.91,-2.51,-0.45,-0.44,-0.44 334.18,2.23,2.68,2.21,2.66,-2.65,-2.85,-2.42,-0.43,-0.44,-0.46 337.52,2.14,2.59,2.14,2.59,-2.58,-2.79,-2.33,-0.44,-0.45,-0.45 340.90,2.05,2.50,2.05,2.50,-2.51,-2.74,-2.25,-0.46,-0.46,-0.45 344.30,1.97,2.41,1.98,2.42,-2.44,-2.68,-2.17,-0.47,-0.46,-0.44 347.75,1.92,2.35,1.91,2.36,-2.37,-2.62,-2.09,-0.45,-0.45,-0.44 351.23,1.86,2.31,1.86,2.30,-2.30,-2.56,-2.01,-0.44,-0.44,-0.45 354.74,1.81,2.24,1.80,2.24,-2.22,-2.50,-1.93,-0.42,-0.42,-0.43 358.28,1.74,2.17,1.74,2.17,-2.16,-2.44,-1.85,-0.42,-0.42,-0.43 361.87,1.68,2.10,1.68,2.11,-2.10,-2.38,-1.78,-0.42,-0.41,-0.42 365.49,1.64,2.05,1.62,2.04,-2.04,-2.32,-1.70,-0.41,-0.42,-0.41 369.14,1.56,1.96,1.56,1.96,-1.99,-2.26,-1.63,-0.43,-0.43,-0.41 372.83,1.50,1.90,1.51,1.91,-1.93,-2.19,-1.56,-0.44,-0.43,-0.40 376.56,1.46,1.86,1.48,1.88,-1.88,-2.13,-1.49,-0.42,-0.40,-0.40 380.33,1.46,1.86,1.45,1.85,-1.82,-2.06,-1.42,-0.36,-0.37,-0.40 384.13,1.44,1.83,1.40,1.79,-1.76,-2.00,-1.35,-0.33,-0.37,-0.39 387.97,1.31,1.70,1.33,1.72,-1.71,-1.93,-1.29,-0.40,-0.38,-0.39 391.85,1.22,1.61,1.24,1.64,-1.65,-1.87,-1.22,-0.44,-0.41,-0.40 395.77,1.18,1.58,1.17,1.57,-1.60,-1.80,-1.16,-0.42,-0.43,-0.41 399.73,1.12,1.53,1.12,1.52,-1.53,-1.73,-1.10,-0.41,-0.41,-0.41 403.72,1.07,1.47,1.06,1.47,-1.45,-1.67,-1.04,-0.39,-0.39,-0.40 407.76,0.99,1.41,0.99,1.40,-1.38,-1.60,-0.98,-0.39,-0.39,-0.42 411.84,0.92,1.34,0.91,1.33,-1.31,-1.53,-0.92,-0.39,-0.40,-0.42 415.96,0.81,1.23,0.82,1.25,-1.24,-1.46,-0.86,-0.44,-0.42,-0.42 420.12,0.74,1.17,0.74,1.17,-1.18,-1.39,-0.81,-0.44,-0.44,-0.43 424.32,0.68,1.10,0.66,1.08,-1.12,-1.32,-0.75,-0.44,-0.45,-0.42 428.56,0.61,1.01,0.62,1.03,-1.06,-1.25,-0.70,-0.45,-0.43,-0.40 432.85,0.59,0.97,0.61,1.00,-1.00,-1.18,-0.65,-0.41,-0.39,-0.39 437.18,0.62,0.99,0.59,0.95,-0.95,-1.11,-0.59,-0.33,-0.36,-0.38 441.55,0.59,0.92,0.57,0.91,-0.90,-1.04,-0.54,-0.31,-0.32,-0.34 445.96,0.52,0.82,0.56,0.86,-0.85,-0.97,-0.49,-0.33,-0.28,-0.30 450.42,0.55,0.81,0.54,0.80,-0.80,-0.90,-0.44,-0.25,-0.26,-0.26 454.93,0.57,0.78,0.53,0.73,-0.74,-0.82,-0.40,-0.17,-0.21,-0.21 459.48,0.50,0.65,0.53,0.68,-0.67,-0.75,-0.35,-0.18,-0.14,-0.15 464.07,0.52,0.60,0.53,0.62,-0.61,-0.68,-0.31,-0.09,-0.08,-0.08 468.71,0.55,0.58,0.53,0.55,-0.54,-0.61,-0.26,0.00,-0.02,-0.03 473.40,0.54,0.51,0.51,0.48,-0.48,-0.53,-0.22,0.05,0.03,0.03 478.13,0.47,0.38,0.48,0.40,-0.42,-0.46,-0.18,0.04,0.06,0.09 482.91,0.44,0.30,0.47,0.34,-0.37,-0.39,-0.14,0.07,0.11,0.14 487.74,0.48,0.30,0.48,0.30,-0.31,-0.31,-0.10,0.17,0.18,0.18 492.62,0.54,0.32,0.48,0.27,-0.25,-0.24,-0.06,0.29,0.24,0.22 497.55,0.47,0.21,0.46,0.21,-0.19,-0.17,-0.02,0.28,0.27,0.26 502.52,0.38,0.10,0.43,0.15,-0.13,-0.09,0.02,0.24,0.30,0.28 507.55,0.39,0.08,0.38,0.08,-0.08,-0.02,0.05,0.30,0.30,0.30 512.62,0.39,0.07,0.33,0.01,-0.03,0.05,0.09,0.35,0.30,0.31 517.75,0.25,-0.08,0.28,-0.04,0.02,0.12,0.12,0.27,0.30,0.32 522.93,0.19,-0.14,0.22,-0.10,0.08,0.19,0.16,0.26,0.30,0.32 528.16,0.20,-0.11,0.17,-0.14,0.13,0.27,0.19,0.33,0.30,0.30 533.44,0.13,-0.16,0.12,-0.16,0.19,0.34,0.22,0.32,0.31,0.28 538.77,0.05,-0.21,0.04,-0.21,0.25,0.41,0.25,0.30,0.29,0.25 544.16,-0.07,-0.30,-0.08,-0.31,0.31,0.48,0.28,0.24,0.23,0.23 549.60,-0.19,-0.39,-0.17,-0.37,0.37,0.55,0.31,0.18,0.20,0.20 555.10,-0.29,-0.46,-0.26,-0.43,0.44,0.62,0.34,0.14,0.17,0.17 560.65,-0.31,-0.44,-0.38,-0.51,0.50,0.68,0.37,0.19,0.13,0.13 566.25,-0.49,-0.59,-0.49,-0.60,0.58,0.75,0.40,0.08,0.08,0.10 571.92,-0.65,-0.72,-0.59,-0.65,0.64,0.82,0.43,-0.01,0.06,0.07 577.64,-0.66,-0.70,-0.66,-0.70,0.70,0.88,0.46,0.04,0.04,0.04 583.41,-0.66,-0.68,-0.72,-0.74,0.75,0.95,0.49,0.09,0.03,0.02 589.25,-0.77,-0.78,-0.80,-0.80,0.81,1.01,0.52,0.04,0.01,0.01 595.14,-0.94,-0.94,-0.88,-0.88,0.86,1.07,0.55,-0.08,-0.02,0.00 601.09,-0.94,-0.94,-0.92,-0.93,0.91,1.14,0.58,-0.03,-0.01,-0.00 607.10,-0.91,-0.93,-0.92,-0.94,0.97,1.20,0.61,0.05,0.04,0.02 613.17,-0.87,-0.92,-0.93,-0.98,1.02,1.25,0.64,0.14,0.08,0.05 619.30,-0.99,-1.08,-0.98,-1.07,1.07,1.31,0.67,0.08,0.09,0.09 625.50,-1.06,-1.20,-1.01,-1.15,1.13,1.37,0.70,0.06,0.11,0.14 631.75,-1.02,-1.20,-1.02,-1.20,1.18,1.42,0.73,0.16,0.16,0.18 638.07,-0.95,-1.19,-0.99,-1.22,1.23,1.48,0.76,0.27,0.24,0.24 644.45,-0.94,-1.24,-0.97,-1.26,1.27,1.53,0.80,0.33,0.31,0.30 650.89,-0.99,-1.35,-0.96,-1.33,1.32,1.58,0.83,0.33,0.36,0.36 657.40,-0.96,-1.40,-0.95,-1.39,1.36,1.63,0.87,0.40,0.41,0.44 663.98,-0.91,-1.41,-0.91,-1.42,1.40,1.67,0.90,0.49,0.49,0.50 670.62,-0.86,-1.43,-0.87,-1.43,1.45,1.72,0.94,0.58,0.58,0.57 677.32,-0.82,-1.45,-0.83,-1.46,1.50,1.76,0.98,0.67,0.66,0.63 684.10,-0.84,-1.53,-0.83,-1.52,1.54,1.80,1.01,0.70,0.71,0.69 690.94,-0.83,-1.58,-0.85,-1.59,1.59,1.84,1.05,0.76,0.75,0.75 697.85,-0.88,-1.68,-0.86,-1.66,1.64,1.88,1.09,0.76,0.78,0.80 704.83,-0.87,-1.72,-0.87,-1.72,1.70,1.91,1.13,0.82,0.82,0.85 711.87,-0.87,-1.76,-0.88,-1.77,1.75,1.95,1.18,0.88,0.87,0.89 718.99,-0.88,-1.81,-0.87,-1.80,1.81,1.98,1.22,0.93,0.94,0.93 726.18,-0.89,-1.85,-0.89,-1.85,1.87,2.01,1.26,0.98,0.98,0.96 733.44,-0.90,-1.89,-0.93,-1.91,1.92,2.04,1.31,1.02,0.99,0.99 740.78,-0.98,-1.99,-0.97,-1.98,1.97,2.06,1.35,0.99,1.00,1.01 748.19,-1.02,-2.06,-1.00,-2.04,2.02,2.09,1.40,1.00,1.02,1.04 755.67,-1.00,-2.07,-1.02,-2.09,2.08,2.11,1.45,1.07,1.05,1.07 763.23,-1.02,-2.12,-1.03,-2.12,2.13,2.13,1.50,1.11,1.10,1.10 770.86,-1.04,-2.17,-1.04,-2.17,2.18,2.15,1.55,1.14,1.15,1.13 778.57,-1.05,-2.22,-1.05,-2.22,2.23,2.17,1.60,1.18,1.18,1.17 786.35,-1.06,-2.27,-1.06,-2.27,2.27,2.18,1.65,1.21,1.21,1.21 794.22,-1.06,-2.32,-1.07,-2.32,2.31,2.19,1.70,1.24,1.24,1.26 802.16,-1.06,-2.37,-1.06,-2.36,2.33,2.21,1.75,1.27,1.28,1.31 810.18,-1.03,-2.39,-1.02,-2.38,2.36,2.22,1.80,1.32,1.33,1.36 818.28,-0.96,-2.38,-0.97,-2.38,2.38,2.22,1.85,1.41,1.41,1.42 826.46,-0.90,-2.37,-0.91,-2.38,2.40,2.23,1.90,1.50,1.49,1.47 834.73,-0.85,-2.39,-0.86,-2.39,2.42,2.23,1.96,1.57,1.56,1.54 843.08,-0.84,-2.43,-0.82,-2.41,2.44,2.24,2.01,1.59,1.62,1.59 851.51,-0.77,-2.42,-0.78,-2.43,2.45,2.24,2.06,1.68,1.67,1.65 860.02,-0.75,-2.46,-0.78,-2.48,2.47,2.24,2.11,1.72,1.69,1.71 868.62,-0.76,-2.53,-0.76,-2.52,2.49,2.24,2.15,1.73,1.74,1.77 877.31,-0.77,-2.59,-0.72,-2.54,2.52,2.23,2.20,1.74,1.80,1.82 886.08,-0.64,-2.51,-0.67,-2.54,2.53,2.23,2.25,1.89,1.86,1.87 894.94,-0.58,-2.50,-0.61,-2.53,2.54,2.22,2.29,1.96,1.93,1.92 903.89,-0.59,-2.56,-0.57,-2.53,2.55,2.22,2.33,1.95,1.98,1.97 912.93,-0.54,-2.56,-0.54,-2.56,2.55,2.21,2.37,2.00,2.00,2.02 922.06,-0.50,-2.57,-0.50,-2.56,2.54,2.20,2.41,2.04,2.05,2.07 931.28,-0.42,-2.54,-0.42,-2.54,2.55,2.19,2.44,2.12,2.12,2.12 940.59,-0.36,-2.52,-0.36,-2.52,2.55,2.18,2.47,2.19,2.19,2.16 950.00,-0.30,-2.50,-0.32,-2.52,2.55,2.17,2.50,2.25,2.23,2.20 959.50,-0.29,-2.53,-0.29,-2.53,2.54,2.15,2.52,2.25,2.25,2.24 969.09,-0.28,-2.57,-0.27,-2.55,2.52,2.14,2.54,2.24,2.25,2.29 978.78,-0.22,-2.55,-0.22,-2.55,2.50,2.13,2.55,2.27,2.28,2.33 988.57,-0.15,-2.52,-0.14,-2.50,2.47,2.11,2.57,2.32,2.33,2.37 998.46,-0.01,-2.42,-0.03,-2.43,2.44,2.09,2.57,2.43,2.41,2.41 1008.44,0.07,-2.37,0.07,-2.37,2.40,2.08,2.58,2.47,2.47,2.44 1018.53,0.17,-2.31,0.15,-2.32,2.35,2.06,2.58,2.52,2.51,2.48 1028.71,0.22,-2.29,0.21,-2.29,2.30,2.04,2.57,2.52,2.51,2.51 1039.00,0.25,-2.28,0.27,-2.26,2.24,2.03,2.56,2.49,2.52,2.53 1049.39,0.36,-2.20,0.34,-2.21,2.19,2.01,2.55,2.55,2.53,2.56 1059.88,0.42,-2.16,0.44,-2.14,2.13,1.99,2.53,2.55,2.57,2.58 1070.48,0.55,-2.07,0.53,-2.08,2.07,1.97,2.51,2.62,2.60,2.62 1081.19,0.62,-2.01,0.62,-2.02,2.01,1.95,2.49,2.62,2.62,2.63 1092.00,0.69,-1.97,0.71,-1.94,1.94,1.93,2.46,2.63,2.65,2.66 1102.92,0.81,-1.88,0.79,-1.88,1.87,1.91,2.44,2.68,2.67,2.69 1113.95,0.89,-1.81,0.87,-1.83,1.83,1.89,2.40,2.71,2.70,2.70 1125.09,0.95,-1.78,0.98,-1.75,1.79,1.87,2.37,2.74,2.77,2.73 1136.34,1.03,-1.72,1.05,-1.70,1.77,1.85,2.34,2.80,2.82,2.75 1147.70,1.15,-1.63,1.07,-1.70,1.76,1.83,2.30,2.90,2.83,2.78 1159.18,1.06,-1.75,1.07,-1.73,1.74,1.81,2.26,2.80,2.81,2.81 1170.77,1.02,-1.81,1.06,-1.77,1.71,1.79,2.22,2.73,2.77,2.83 1182.48,1.08,-1.78,1.07,-1.78,1.68,1.77,2.18,2.76,2.75,2.86 1194.30,1.17,-1.71,1.16,-1.72,1.64,1.75,2.14,2.81,2.80,2.88 1206.25,1.27,-1.65,1.28,-1.63,1.61,1.73,2.10,2.87,2.89,2.92 1218.31,1.41,-1.54,1.41,-1.53,1.56,1.71,2.06,2.97,2.97,2.95 1230.49,1.55,-1.43,1.54,-1.44,1.52,1.69,2.01,3.07,3.06,2.98 1242.80,1.63,-1.38,1.62,-1.39,1.47,1.67,1.97,3.10,3.09,3.01 1255.22,1.70,-1.36,1.65,-1.40,1.43,1.65,1.93,3.13,3.08,3.06 1267.78,1.64,-1.47,1.68,-1.42,1.40,1.63,1.89,3.03,3.08,3.11 1280.45,1.70,-1.45,1.73,-1.42,1.38,1.61,1.85,3.08,3.11,3.15 1293.26,1.84,-1.37,1.79,-1.41,1.37,1.59,1.81,3.21,3.16,3.21 1306.19,1.89,-1.37,1.89,-1.37,1.36,1.58,1.77,3.25,3.25,3.26 1319.25,1.96,-1.37,1.99,-1.33,1.34,1.56,1.73,3.30,3.33,3.33 1332.45,2.09,-1.29,2.06,-1.32,1.32,1.54,1.69,3.40,3.37,3.38 1345.77,2.16,-1.28,2.15,-1.29,1.29,1.52,1.66,3.44,3.43,3.44 1359.23,2.21,-1.30,2.24,-1.26,1.26,1.50,1.62,3.47,3.50,3.51 1372.82,2.34,-1.24,2.34,-1.24,1.24,1.49,1.59,3.58,3.58,3.58 1386.55,2.47,-1.19,2.45,-1.21,1.23,1.47,1.56,3.70,3.68,3.66 1400.41,2.54,-1.20,2.54,-1.19,1.23,1.45,1.52,3.76,3.77,3.74 1414.42,2.62,-1.20,2.60,-1.21,1.22,1.44,1.49,3.84,3.82,3.82 1428.56,2.63,-1.26,2.65,-1.24,1.21,1.42,1.46,3.84,3.86,3.89 1442.85,2.72,-1.26,2.73,-1.25,1.21,1.41,1.43,3.93,3.94,3.98 1457.28,2.83,-1.24,2.82,-1.24,1.22,1.39,1.41,4.05,4.04,4.07 1471.85,2.95,-1.20,2.94,-1.21,1.23,1.38,1.38,4.17,4.17,4.15 1486.57,3.05,-1.20,3.05,-1.20,1.23,1.36,1.36,4.28,4.28,4.25 1501.43,3.14,-1.21,3.14,-1.20,1.23,1.35,1.33,4.37,4.37,4.35 1516.45,3.23,-1.22,3.21,-1.24,1.23,1.33,1.31,4.45,4.43,4.45 1531.61,3.30,-1.27,3.31,-1.26,1.22,1.32,1.29,4.52,4.53,4.57 1546.93,3.38,-1.30,3.43,-1.25,1.22,1.31,1.27,4.60,4.66,4.68 1562.40,3.61,-1.19,3.56,-1.23,1.23,1.30,1.25,4.84,4.79,4.80 1578.02,3.72,-1.20,3.70,-1.21,1.24,1.29,1.23,4.95,4.93,4.92 1593.80,3.78,-1.24,3.82,-1.21,1.25,1.27,1.21,5.02,5.06,5.02 1609.74,3.93,-1.22,3.91,-1.24,1.25,1.26,1.20,5.18,5.16,5.15 1625.84,4.01,-1.27,4.01,-1.26,1.26,1.25,1.18,5.26,5.27,5.28 1642.10,4.14,-1.28,4.13,-1.28,1.26,1.24,1.17,5.40,5.40,5.42 1658.52,4.25,-1.30,4.26,-1.29,1.26,1.23,1.15,5.51,5.52,5.55 1675.10,4.39,-1.28,4.38,-1.29,1.26,1.22,1.14,5.65,5.64,5.67 1691.85,4.53,-1.27,4.52,-1.28,1.26,1.22,1.13,5.79,5.78,5.80 1708.77,4.64,-1.30,4.67,-1.26,1.26,1.21,1.12,5.90,5.94,5.94 1725.86,4.85,-1.23,4.83,-1.24,1.26,1.20,1.11,6.11,6.10,6.08 1743.12,5.01,-1.20,4.99,-1.23,1.26,1.19,1.10,6.27,6.25,6.21 1760.55,5.12,-1.24,5.12,-1.23,1.26,1.19,1.10,6.38,6.39,6.36 1778.15,5.22,-1.28,5.22,-1.27,1.27,1.18,1.09,6.49,6.49,6.50 1795.94,5.32,-1.30,5.32,-1.31,1.27,1.17,1.08,6.59,6.59,6.62 1813.90,5.43,-1.34,5.45,-1.32,1.28,1.17,1.08,6.71,6.73,6.77 1832.03,5.59,-1.32,5.60,-1.31,1.29,1.16,1.07,6.88,6.89,6.91 1850.36,5.78,-1.27,5.75,-1.30,1.30,1.16,1.07,7.08,7.06,7.05 1868.86,5.91,-1.29,5.90,-1.29,1.31,1.16,1.07,7.22,7.21,7.20 1887.55,6.02,-1.32,6.03,-1.30,1.32,1.15,1.07,7.34,7.35,7.34 1906.42,6.15,-1.33,6.15,-1.32,1.32,1.15,1.07,7.47,7.48,7.48 1925.49,6.29,-1.33,6.28,-1.34,1.33,1.15,1.07,7.62,7.62,7.62 1944.74,6.42,-1.35,6.42,-1.34,1.35,1.15,1.07,7.77,7.77,7.77 1964.19,6.55,-1.36,6.55,-1.36,1.37,1.15,1.07,7.92,7.92,7.91 1983.83,6.68,-1.38,6.68,-1.38,1.38,1.15,1.07,8.06,8.06,8.06 2003.67,6.80,-1.40,6.80,-1.39,1.39,1.15,1.07,8.19,8.19,8.20 2023.71,6.93,-1.40,6.91,-1.41,1.39,1.15,1.08,8.32,8.31,8.33 2043.94,7.05,-1.42,7.05,-1.41,1.39,1.15,1.08,8.44,8.43,8.47 2064.38,7.16,-1.43,7.20,-1.39,1.38,1.15,1.09,8.54,8.58,8.59 2085.03,7.39,-1.34,7.36,-1.36,1.37,1.16,1.09,8.76,8.73,8.73 2105.88,7.55,-1.32,7.53,-1.33,1.35,1.16,1.10,8.90,8.89,8.87 2126.94,7.69,-1.32,7.70,-1.31,1.33,1.16,1.10,9.01,9.02,9.01 2148.20,7.85,-1.30,7.84,-1.30,1.29,1.17,1.11,9.14,9.13,9.15 2169.69,8.00,-1.29,8.01,-1.28,1.25,1.18,1.12,9.25,9.26,9.29 2191.38,8.18,-1.25,8.19,-1.24,1.21,1.18,1.13,9.39,9.40,9.43 2213.30,8.41,-1.17,8.39,-1.18,1.17,1.19,1.14,9.58,9.56,9.58 2235.43,8.59,-1.13,8.59,-1.12,1.13,1.20,1.15,9.72,9.72,9.72 2257.78,8.77,-1.07,8.77,-1.07,1.10,1.21,1.17,9.87,9.87,9.84 2280.36,8.93,-1.04,8.92,-1.05,1.07,1.22,1.18,10.00,9.99,9.97 2303.17,9.04,-1.04,9.05,-1.03,1.05,1.23,1.19,10.09,10.10,10.08 2326.20,9.16,-1.04,9.16,-1.04,1.04,1.24,1.21,10.20,10.20,10.20 2349.46,9.26,-1.05,9.26,-1.04,1.03,1.25,1.23,10.29,10.29,10.31 2372.95,9.36,-1.04,9.35,-1.05,1.03,1.27,1.24,10.39,10.38,10.40 2396.68,9.43,-1.05,9.43,-1.05,1.03,1.28,1.26,10.45,10.46,10.48 2420.65,9.51,-1.06,9.52,-1.04,1.03,1.30,1.28,10.53,10.55,10.57 2444.86,9.63,-1.03,9.62,-1.03,1.03,1.32,1.30,10.65,10.65,10.66 2469.31,9.74,-1.00,9.74,-1.00,1.02,1.34,1.32,10.76,10.77,10.74 2494.00,9.86,-0.99,9.85,-0.99,1.01,1.36,1.34,10.87,10.86,10.85 2518.94,9.95,-0.98,9.93,-0.99,1.00,1.38,1.37,10.95,10.93,10.93 2544.13,10.00,-1.02,10.01,-1.01,0.98,1.40,1.39,10.98,10.99,11.02 2569.57,10.10,-1.02,10.10,-1.01,0.96,1.43,1.42,11.06,11.07,11.12 2595.27,10.22,-1.00,10.23,-0.98,0.95,1.45,1.44,11.17,11.19,11.22 2621.22,10.38,-0.95,10.38,-0.94,0.95,1.48,1.47,11.33,11.33,11.33 2647.43,10.54,-0.89,10.50,-0.92,0.95,1.51,1.50,11.49,11.46,11.43 2673.90,10.59,-0.93,10.59,-0.93,0.97,1.55,1.53,11.55,11.56,11.52 2700.64,10.61,-0.99,10.62,-0.98,0.99,1.58,1.57,11.60,11.61,11.60 2727.65,10.63,-1.04,10.62,-1.05,1.04,1.62,1.60,11.67,11.66,11.67 2754.93,10.60,-1.13,10.61,-1.11,1.11,1.66,1.63,11.70,11.72,11.73 2782.48,10.59,-1.19,10.58,-1.19,1.20,1.70,1.67,11.79,11.78,11.78 2810.30,10.53,-1.29,10.50,-1.31,1.32,1.75,1.71,11.85,11.82,11.82 2838.40,10.40,-1.43,10.41,-1.42,1.45,1.80,1.75,11.85,11.85,11.83 2866.79,10.24,-1.60,10.28,-1.56,1.59,1.85,1.79,11.82,11.87,11.84 2895.46,10.18,-1.68,10.13,-1.72,1.72,1.91,1.83,11.90,11.85,11.86 2924.41,9.98,-1.88,9.97,-1.89,1.86,1.97,1.87,11.84,11.83,11.86 2953.65,9.79,-2.08,9.83,-2.04,2.00,2.03,1.92,11.79,11.83,11.87 2983.19,9.70,-2.19,9.71,-2.17,2.13,2.10,1.96,11.83,11.83,11.89 3013.02,9.65,-2.25,9.62,-2.27,2.25,2.17,2.01,11.89,11.87,11.90 3043.15,9.56,-2.34,9.55,-2.35,2.36,2.25,2.06,11.91,11.91,11.90 3073.58,9.46,-2.45,9.46,-2.44,2.46,2.33,2.11,11.91,11.92,11.91 3104.32,9.37,-2.55,9.36,-2.55,2.56,2.41,2.16,11.92,11.92,11.92 3135.36,9.26,-2.66,9.27,-2.65,2.66,2.50,2.21,11.92,11.93,11.92 3166.72,9.16,-2.76,9.17,-2.74,2.77,2.59,2.27,11.92,11.94,11.92 3198.38,9.08,-2.82,9.04,-2.86,2.88,2.69,2.32,11.96,11.92,11.90 3230.37,8.89,-2.99,8.89,-2.99,3.01,2.79,2.38,11.90,11.90,11.88 3262.67,8.70,-3.16,8.73,-3.12,3.14,2.89,2.43,11.84,11.87,11.86 3295.30,8.59,-3.25,8.57,-3.26,3.27,2.99,2.49,11.85,11.84,11.84 3328.25,8.46,-3.36,8.45,-3.37,3.38,3.08,2.55,11.83,11.82,11.82 3361.53,8.31,-3.49,8.32,-3.47,3.47,3.18,2.60,11.77,11.79,11.80 3395.15,8.21,-3.56,8.18,-3.59,3.53,3.27,2.66,11.74,11.71,11.77 3429.10,8.08,-3.66,8.08,-3.65,3.57,3.35,2.72,11.64,11.65,11.74 3463.39,8.00,-3.70,8.07,-3.64,3.58,3.42,2.78,11.58,11.64,11.70 3498.03,8.10,-3.57,8.08,-3.58,3.57,3.48,2.83,11.67,11.65,11.67 3533.01,8.17,-3.46,8.11,-3.51,3.55,3.52,2.89,11.71,11.65,11.63 3568.34,8.09,-3.48,8.10,-3.47,3.52,3.55,2.94,11.61,11.62,11.57 3604.02,8.02,-3.48,8.04,-3.45,3.50,3.57,2.99,11.51,11.54,11.50 3640.06,7.96,-3.47,7.95,-3.47,3.49,3.57,3.04,11.44,11.44,11.43 3676.46,7.90,-3.44,7.88,-3.47,3.50,3.56,3.09,11.40,11.38,11.34 3713.22,7.74,-3.53,7.77,-3.50,3.54,3.54,3.14,11.28,11.31,11.27 3750.36,7.67,-3.53,7.62,-3.57,3.60,3.50,3.18,11.27,11.22,11.20 3787.86,7.47,-3.64,7.49,-3.62,3.65,3.46,3.22,11.12,11.14,11.11 3825.74,7.32,-3.72,7.36,-3.67,3.68,3.41,3.26,10.99,11.03,11.04 3864.00,7.29,-3.67,7.19,-3.76,3.67,3.36,3.29,10.96,10.86,10.96 3902.64,7.09,-3.79,7.12,-3.76,3.63,3.31,3.33,10.72,10.74,10.88 3941.66,7.02,-3.79,7.13,-3.68,3.56,3.26,3.35,10.58,10.69,10.81 3981.08,7.26,-3.49,7.21,-3.54,3.47,3.21,3.38,10.73,10.68,10.75 4020.89,7.41,-3.28,7.37,-3.31,3.37,3.16,3.40,10.78,10.74,10.69 4061.10,7.49,-3.14,7.51,-3.12,3.26,3.12,3.41,10.75,10.77,10.63 4101.71,7.59,-3.00,7.55,-3.04,3.16,3.08,3.43,10.74,10.70,10.59 4142.73,7.55,-3.01,7.56,-3.00,3.06,3.04,3.44,10.61,10.62,10.56 4184.15,7.53,-3.00,7.56,-2.97,2.97,3.01,3.44,10.50,10.53,10.53 4226.00,7.58,-2.94,7.56,-2.95,2.90,2.99,3.45,10.47,10.46,10.52 4268.26,7.60,-2.89,7.58,-2.91,2.83,2.97,3.45,10.43,10.41,10.49 4310.94,7.60,-2.87,7.61,-2.85,2.77,2.95,3.44,10.37,10.38,10.47 4354.05,7.65,-2.79,7.67,-2.76,2.70,2.94,3.44,10.35,10.38,10.44 4397.59,7.76,-2.64,7.77,-2.63,2.63,2.93,3.43,10.38,10.39,10.40 4441.56,7.89,-2.47,7.87,-2.49,2.56,2.93,3.42,10.45,10.43,10.36 4485.98,7.90,-2.42,7.86,-2.45,2.52,2.93,3.41,10.42,10.38,10.32 4530.84,7.86,-2.41,7.83,-2.44,2.51,2.93,3.40,10.37,10.34,10.27 4576.15,7.63,-2.60,7.76,-2.47,2.52,2.94,3.39,10.15,10.28,10.23 4621.91,7.77,-2.41,7.67,-2.51,2.54,2.96,3.38,10.31,10.21,10.18 4668.13,7.55,-2.58,7.54,-2.58,2.56,2.97,3.37,10.11,10.10,10.13 4714.81,7.39,-2.67,7.36,-2.69,2.60,2.99,3.36,9.98,9.96,10.06 4761.96,7.15,-2.82,7.19,-2.78,2.63,3.01,3.35,9.78,9.82,9.97 4809.58,7.03,-2.85,7.14,-2.73,2.66,3.04,3.34,9.69,9.79,9.88 4857.67,7.19,-2.57,7.11,-2.65,2.68,3.07,3.33,9.87,9.79,9.76 4906.25,7.10,-2.52,7.03,-2.59,2.69,3.10,3.32,9.79,9.72,9.62 4955.31,6.85,-2.63,6.83,-2.64,2.72,3.13,3.32,9.56,9.55,9.48 5004.87,6.51,-2.81,6.57,-2.75,2.77,3.17,3.31,9.27,9.34,9.32 5054.91,6.29,-2.89,6.35,-2.82,2.84,3.21,3.31,9.13,9.19,9.18 5105.46,6.20,-2.82,6.12,-2.89,2.93,3.25,3.32,9.12,9.05,9.02 5156.52,5.93,-2.92,5.89,-2.96,3.01,3.30,3.32,8.94,8.90,8.85 5208.08,5.54,-3.13,5.59,-3.08,3.07,3.35,3.33,8.61,8.66,8.67 5260.16,5.26,-3.22,5.21,-3.27,3.10,3.40,3.34,8.36,8.32,8.48 5312.77,4.93,-3.36,4.91,-3.37,3.13,3.45,3.35,8.05,8.04,8.29 5365.89,4.63,-3.44,4.78,-3.29,3.16,3.51,3.37,7.78,7.93,8.07 5419.55,4.71,-3.15,4.72,-3.14,3.20,3.57,3.39,7.91,7.92,7.86 5473.75,4.77,-2.88,4.62,-3.02,3.26,3.63,3.41,8.02,7.88,7.65 5528.49,4.41,-3.02,4.35,-3.08,3.33,3.70,3.44,7.74,7.68,7.43 5583.77,3.84,-3.38,3.84,-3.36,3.43,3.77,3.47,7.27,7.27,7.22 5639.61,3.23,-3.76,3.33,-3.65,3.56,3.85,3.50,6.79,6.90,6.99 5696.00,2.85,-3.93,2.91,-3.86,3.75,3.94,3.54,6.60,6.66,6.78 5752.96,2.66,-3.90,2.53,-4.02,3.99,4.04,3.58,6.65,6.52,6.56 5810.49,2.15,-4.19,2.12,-4.20,4.25,4.14,3.63,6.40,6.37,6.34 5868.60,1.60,-4.51,1.66,-4.44,4.51,4.27,3.68,6.11,6.17,6.11 5927.28,1.12,-4.76,1.16,-4.72,4.73,4.41,3.73,5.85,5.89,5.88 5986.56,0.73,-4.93,0.70,-4.94,4.91,4.57,3.79,5.64,5.61,5.66 6046.42,0.25,-5.16,0.27,-5.12,5.06,4.76,3.85,5.31,5.33,5.41 6106.89,-0.22,-5.36,-0.14,-5.27,5.18,4.98,3.92,4.96,5.04,5.14 6167.96,-0.56,-5.44,-0.50,-5.37,5.27,5.19,3.99,4.70,4.77,4.88 6229.64,-0.88,-5.51,-0.75,-5.38,5.31,5.37,4.06,4.43,4.57,4.63 6291.93,-1.08,-5.47,-0.92,-5.33,5.34,5.48,4.14,4.25,4.41,4.39 6354.85,-1.25,-5.41,-1.09,-5.28,5.35,5.48,4.22,4.10,4.26,4.16 6418.40,-1.51,-5.45,-1.26,-5.26,5.37,5.41,4.30,3.86,4.12,3.94 6482.58,-1.84,-5.56,-1.44,-5.27,5.40,5.31,4.39,3.55,3.95,3.72 6547.41,-2.15,-5.68,-1.64,-5.34,5.41,5.21,4.48,3.26,3.77,3.53 6612.88,-2.47,-5.83,-1.84,-5.43,5.42,5.13,4.58,2.95,3.59,3.36 6679.01,-2.90,-6.10,-1.99,-5.51,5.42,5.08,4.68,2.52,3.43,3.20 6745.80,-3.28,-6.32,-2.09,-5.56,5.40,5.05,4.77,2.11,3.31,3.04 6813.26,-3.51,-6.37,-2.03,-5.48,5.35,5.04,4.87,1.84,3.32,2.86 6881.39,-3.65,-6.33,-1.87,-5.30,5.28,5.04,4.98,1.62,3.41,2.68 6950.21,-3.42,-5.92,-1.68,-5.13,5.18,5.04,5.08,1.75,3.50,2.50 7019.71,-3.55,-5.86,-1.50,-4.97,5.06,5.06,5.18,1.51,3.56,2.31 7089.91,-3.67,-5.77,-1.37,-4.86,4.94,5.07,5.28,1.27,3.57,2.10 7160.81,-3.70,-5.55,-1.28,-4.81,4.83,5.09,5.38,1.13,3.55,1.85 7232.41,-3.85,-5.42,-1.18,-4.74,4.74,5.11,5.47,0.89,3.55,1.57 7304.74,-3.94,-5.22,-1.10,-4.68,4.68,5.13,5.56,0.74,3.57,1.28 7377.79,-3.87,-4.84,-1.05,-4.64,4.64,5.15,5.64,0.77,3.59,0.97 7451.56,-3.98,-4.63,-1.01,-4.61,4.61,5.17,5.72,0.63,3.60,0.65 7526.08,-4.15,-4.48,-0.98,-4.59,4.59,5.19,5.79,0.44,3.61,0.33 7601.34,-4.18,-4.21,-0.96,-4.57,4.57,5.20,5.85,0.39,3.61,0.03 7677.35,-4.12,-3.89,-0.95,-4.56,4.55,5.21,5.90,0.43,3.60,-0.23 7754.13,-4.04,-3.57,-0.94,-4.54,4.53,5.22,5.93,0.48,3.59,-0.47 7831.67,-3.87,-3.20,-0.94,-4.51,4.50,5.22,5.96,0.63,3.56,-0.67 7909.98,-3.62,-2.82,-0.95,-4.49,4.48,5.22,5.97,0.86,3.54,-0.80 7989.08,-3.36,-2.46,-0.95,-4.46,4.46,5.22,5.96,1.09,3.51,-0.90 8068.98,-2.82,-1.87,-0.96,-4.43,4.43,5.21,5.95,1.61,3.48,-0.95 8149.67,-2.44,-1.48,-0.97,-4.41,4.42,5.20,5.91,1.97,3.44,-0.96 8231.16,-2.05,-1.16,-1.00,-4.39,4.40,5.18,5.87,2.35,3.40,-0.89 8313.47,-1.55,-0.77,-1.04,-4.38,4.40,5.16,5.80,2.84,3.35,-0.78 8396.61,-1.20,-0.60,-1.10,-4.39,4.39,5.13,5.73,3.19,3.30,-0.60 8480.57,-0.88,-0.51,-1.17,-4.40,4.40,5.10,5.64,3.52,3.23,-0.37 8565.38,-0.48,-0.37,-1.23,-4.41,4.41,5.07,5.54,3.93,3.18,-0.11 8651.03,-0.05,-0.27,-1.30,-4.43,4.42,5.04,5.43,4.37,3.12,0.22 8737.54,0.37,-0.22,-1.38,-4.44,4.44,5.00,5.31,4.81,3.06,0.59 8824.92,0.82,-0.18,-1.46,-4.46,4.46,4.95,5.18,5.27,3.00,1.00 8913.17,1.06,-0.36,-1.54,-4.47,4.47,4.91,5.04,5.53,2.93,1.42 9002.30,1.26,-0.60,-1.63,-4.49,4.49,4.86,4.90,5.75,2.86,1.86 9092.32,1.39,-0.89,-1.70,-4.50,4.50,4.81,4.76,5.89,2.80,2.28 9183.25,1.39,-1.30,-1.78,-4.51,4.52,4.76,4.61,5.91,2.73,2.69 9275.08,1.81,-1.30,-1.88,-4.53,4.53,4.70,4.46,6.34,2.65,3.11 9367.83,2.08,-1.45,-1.97,-4.55,4.54,4.64,4.30,6.62,2.57,3.53 9461.51,1.88,-2.06,-2.04,-4.55,4.55,4.59,4.15,6.42,2.50,3.94 9556.12,1.59,-2.74,-2.12,-4.54,4.55,4.53,4.00,6.14,2.43,4.33 9651.68,1.16,-3.51,-2.20,-4.55,4.55,4.48,3.85,5.70,2.34,4.67 9748.20,0.56,-4.43,-2.28,-4.54,4.54,4.42,3.70,5.09,2.25,4.99 9845.68,0.43,-4.84,-2.35,-4.52,4.52,4.37,3.56,4.94,2.16,5.27 9944.14,0.48,-5.06,-2.42,-4.50,4.49,4.31,3.41,4.96,2.07,5.54 10043.58,0.79,-5.00,-2.48,-4.46,4.45,4.26,3.27,5.24,1.97,5.79 10144.02,0.60,-5.43,-2.59,-4.41,4.41,4.22,3.13,5.01,1.82,6.03 10245.46,-0.01,-6.27,-2.70,-4.35,4.36,4.18,3.00,4.34,1.66,6.26 10347.91,-0.10,-6.57,-2.81,-4.29,4.30,4.14,2.87,4.20,1.49,6.47 10451.39,-0.04,-6.70,-2.92,-4.23,4.24,4.10,2.74,4.20,1.32,6.66 10555.91,-0.26,-7.08,-3.04,-4.17,4.17,4.07,2.62,3.91,1.14,6.82 10661.46,-0.81,-7.76,-3.15,-4.10,4.10,4.04,2.50,3.29,0.95,6.95 10768.08,-0.92,-7.94,-3.27,-4.03,4.03,4.01,2.38,3.11,0.77,7.02 10875.76,-1.21,-8.23,-3.39,-3.96,3.96,3.97,2.27,2.75,0.58,7.02 10984.52,-1.50,-8.44,-3.50,-3.89,3.89,3.93,2.16,2.39,0.39,6.94 11094.36,-2.41,-9.19,-3.63,-3.81,3.81,3.87,2.06,1.40,0.19,6.78 11205.31,-2.82,-9.34,-3.75,-3.74,3.74,3.80,1.96,0.91,-0.01,6.52 11317.36,-3.23,-9.40,-3.87,-3.66,3.66,3.72,1.86,0.42,-0.21,6.17 11430.53,-3.58,-9.32,-4.00,-3.57,3.57,3.61,1.77,-0.01,-0.42,5.74 11544.84,-3.88,-9.10,-4.12,-3.49,3.49,3.50,1.68,-0.39,-0.63,5.22 11660.29,-4.03,-8.65,-4.25,-3.40,3.40,3.37,1.59,-0.63,-0.85,4.62 11776.89,-4.39,-8.32,-4.38,-3.31,3.31,3.24,1.50,-1.08,-1.07,3.93 11894.66,-5.04,-8.23,-4.51,-3.22,3.22,3.11,1.42,-1.82,-1.29,3.19 12013.60,-5.57,-7.95,-4.64,-3.12,3.12,2.99,1.34,-2.45,-1.52,2.38 12133.74,-5.88,-7.42,-4.77,-3.03,3.03,2.87,1.26,-2.86,-1.75,1.54 12255.08,-5.83,-6.51,-4.91,-2.93,2.93,2.75,1.18,-2.91,-1.98,0.68 12377.63,-5.52,-5.33,-5.04,-2.82,2.82,2.65,1.11,-2.70,-2.22,-0.19 12501.41,-5.11,-4.06,-5.18,-2.72,2.72,2.56,1.04,-2.39,-2.46,-1.05 12626.42,-4.86,-2.95,-5.31,-2.61,2.61,2.47,0.97,-2.25,-2.70,-1.91 12752.68,-4.19,-1.48,-5.45,-2.50,2.50,2.39,0.90,-1.69,-2.95,-2.71 12880.21,-3.99,-0.53,-5.59,-2.39,2.39,2.31,0.83,-1.60,-3.20,-3.46 13009.01,-3.60,0.54,-5.74,-2.28,2.28,2.24,0.76,-1.32,-3.46,-4.14 13139.10,-2.39,2.37,-5.88,-2.16,2.16,2.16,0.70,-0.23,-3.72,-4.76 13270.49,-2.03,3.25,-6.02,-2.04,2.04,2.08,0.63,0.01,-3.98,-5.28 13403.20,-2.00,3.70,-6.17,-1.92,1.92,1.99,0.57,-0.08,-4.25,-5.70 13537.23,-2.89,3.15,-6.32,-1.80,1.80,1.88,0.51,-1.09,-4.52,-6.04 13672.60,-3.63,2.68,-6.47,-1.67,1.67,1.76,0.44,-1.96,-4.79,-6.31 13809.33,-3.47,3.03,-6.62,-1.55,1.55,1.63,0.38,-1.93,-5.07,-6.50 13947.42,-3.43,3.19,-6.77,-1.42,1.42,1.48,0.32,-2.02,-5.35,-6.62 14086.90,-3.64,3.07,-6.92,-1.28,1.28,1.32,0.25,-2.36,-5.64,-6.71 14227.77,-4.04,2.73,-7.07,-1.15,1.15,1.15,0.19,-2.90,-5.93,-6.77 14370.04,-4.92,1.91,-7.23,-1.01,1.01,0.98,0.12,-3.91,-6.22,-6.83 14513.74,-5.94,0.97,-7.39,-0.87,0.87,0.81,0.05,-5.07,-6.52,-6.91 14658.88,-6.98,0.07,-7.54,-0.73,0.73,0.64,-0.01,-6.26,-6.82,-7.05 14805.47,-7.84,-0.62,-7.70,-0.58,0.58,0.48,-0.08,-7.26,-7.12,-7.22 14953.52,-8.87,-1.43,-7.86,-0.43,0.43,0.32,-0.14,-8.44,-7.43,-7.44 15103.06,-10.08,-2.33,-8.03,-0.29,0.29,0.16,-0.21,-9.80,-7.74,-7.75 15254.09,-10.70,-2.60,-8.19,-0.13,0.13,0.01,-0.27,-10.57,-8.06,-8.10 15406.63,-11.43,-2.95,-8.35,0.02,-0.02,-0.14,-0.33,-11.45,-8.38,-8.48 15560.70,-12.57,-3.69,-8.52,0.18,-0.18,-0.29,-0.39,-12.75,-8.70,-8.88 15716.30,-13.23,-3.94,-8.69,0.34,-0.34,-0.43,-0.43,-13.57,-9.02,-9.29 15873.47,-14.02,-4.33,-8.86,0.50,-0.50,-0.58,-0.47,-14.52,-9.36,-9.69 16032.20,-14.76,-4.64,-9.03,0.66,-0.66,-0.73,-0.49,-15.42,-9.69,-10.12 16192.52,-14.78,-4.14,-9.20,0.83,-0.83,-0.87,-0.51,-15.61,-10.03,-10.64 16354.45,-14.43,-3.30,-9.37,1.00,-1.00,-1.02,-0.50,-15.43,-10.37,-11.13 16517.99,-13.83,-2.23,-9.54,1.17,-1.17,-1.17,-0.49,-15.00,-10.71,-11.60 16683.17,-12.89,-0.84,-9.72,1.34,-1.34,-1.33,-0.47,-14.23,-11.06,-12.05 16850.01,-12.06,0.40,-9.90,1.52,-1.52,-1.49,-0.44,-13.58,-11.41,-12.46 17018.51,-12.22,0.63,-10.07,1.70,-1.70,-1.66,-0.40,-13.92,-11.77,-12.85 17188.69,-12.14,1.13,-10.25,1.88,-1.88,-1.83,-0.36,-14.02,-12.13,-13.27 17360.58,-11.67,1.98,-10.43,2.06,-2.06,-2.01,-0.32,-13.73,-12.49,-13.65 17534.18,-11.45,2.55,-10.62,2.25,-2.25,-2.19,-0.28,-13.70,-12.86,-14.00 17709.53,-11.22,3.10,-10.80,2.43,-2.43,-2.39,-0.24,-13.66,-13.23,-14.32 17886.62,-10.59,4.04,-10.98,2.62,-2.62,-2.59,-0.20,-13.22,-13.61,-14.63 18065.49,-11.31,3.69,-11.17,2.82,-2.82,-2.80,-0.17,-14.13,-13.99,-15.00 18246.14,-11.12,4.31,-11.36,3.01,-3.01,-3.02,-0.14,-14.13,-14.37,-15.43 18428.60,-9.74,6.10,-11.55,3.21,-3.21,-3.25,-0.12,-12.95,-14.75,-15.84 18612.89,-10.02,6.21,-11.74,3.41,-3.41,-3.48,-0.10,-13.43,-15.14,-16.23 18799.02,-11.32,5.30,-11.93,3.61,-3.61,-3.70,-0.08,-14.93,-15.54,-16.62 18987.01,-11.20,5.77,-12.12,3.81,-3.81,-3.92,-0.07,-15.02,-15.93,-16.97 19176.88,-10.92,6.48,-12.31,4.02,-4.02,-4.12,-0.05,-14.94,-16.34,-17.40 19368.65,-11.04,6.78,-12.51,4.23,-4.23,-4.29,-0.04,-15.27,-16.74,-17.82 19562.33,-11.63,6.59,-12.71,4.44,-4.44,-4.40,-0.03,-16.07,-17.15,-18.22 19757.96,-12.31,6.28,-12.90,4.66,-4.66,-4.44,-0.03,-16.97,-17.56,-18.59 19955.54,-12.69,6.27,-13.10,4.87,-4.87,-4.37,-0.02,-17.56,-17.98,-18.96
CSV
2
vinzmc/AutoEq
results/innerfidelity/innerfidelity_harman_in-ear_2019v2/Monster Turbine Pro Gold/Monster Turbine Pro Gold.csv
[ "MIT" ]
{{ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // PWM2C H-Bridge Engine // // Author: Kwabena W. Agyeman // Updated: 8/20/2010 // Designed For: P8X32A // Version: 1.1 // // Copyright (c) 2010 Kwabena W. Agyeman // See end of file for terms of use. // // Update History: // // v1.0 - Original release - 9/5/2009. // v1.1 - Added support for variable pin assignments and increased duty cycle resolution - 8/20/2010. // // For each included copy of this object only one spin interpreter should access it at a time. // // Nyamekye, /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // H-Bridge Circuit: // // Left Forward Pin Number --- To H-Bridge Direction Control. Active high. // // Left Backward Pin Number --- To H-Bridge Direction Control. Active high. // // Right Forward Pin Number --- To H-Bridge Direction Control. Active high. // // Right Backward Pin Number --- To H-Bridge Direction Control. Active high. /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// }} VAR long leftChannelDuty, rightChannelDuty, pinMasks, cogNumber, frequencyNumber, stack[6] byte directionLeft[2], directionRight[2] PUB leftDuty(dutyCycle) '' 4 Stack Longs '' //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// '' // Changes the PWM duty cycle on either the forward or backward pin for the left channel. 0% duty cycle breaks. '' // '' // DutyCycle - The desired duty cycle. 1000% outputs a full high forward, -1000% outputs a full high backward. '' //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// leftChannelDuty := ((dutyCycle <# 1_000) #> -1_000) PUB rightDuty(dutyCycle) '' 4 Stack Longs '' //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// '' // Changes the PWM duty cycle on either the forward or backward pin for the right channel. 0% duty cycle breaks. '' // '' // DutyCycle - The desired duty cycle. 1000% outputs a full high forward, -1000% outputs a full high backward. '' //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// rightChannelDuty := ((dutyCycle <# 1_000) #> -1_000) PUB HBDEngineStart(leftForward, leftBackward, rightForward, rightBackward, cycleFrequency) '' 11 Stack Longs '' //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// '' // Starts up the HBD driver running on a cog. '' // '' // Returns true on success and false on failure. '' // '' // leftForward - Forward pin for left channel H - Bridge control. Between (0 - 31). -1 to disable. '' // leftBackward - Backward pin for left channel H - Bridge control. Between (0 - 31). -1 to disable. '' // rightForward - Forward pin for right channel H - Bridge control. Between (0 - 31). -1 to disable. '' // rightBackward - Backward pin for right channel H - Bridge control. Between (0 - 31). -1 to disable. '' // cycleFrequency - The PWM frequency to drive the H-Bridge at. Between 1 Hz and 8000 Hz @ 80Mhz. '' //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// HBDEngineStop if(chipver == 1) directionLeft := ((leftForward <# 31) #> 0) directionLeft[1] := ((leftBackward <# 31) #> 0) directionRight := ((rightForward <# 31) #> 0) directionRight[1] := ((rightBackward <# 31) #> 0) pinMasks := ( ((|<directionLeft) & (leftForward <> -1)) | ((|<directionLeft[1]) & (leftBackward <> -1)) | { } ((|<directionRight) & (rightForward <> -1)) | ((|<directionRight[1]) & (rightBackward <> -1)) ) frequencyNumber := (clkfreq / ((cycleFrequency <# (clkfreq / constant(80_000_000 / 8_000))) #> 1)) cogNumber := cognew(HBDDriver, @stack) result or= ++cogNumber PUB HBDEngineStop '' 3 Stack Longs '' //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// '' // Shuts down the HBD driver running on a cog. '' //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// if(cogNumber) cogstop(-1 + cogNumber~) PRI HBDDriver ' 6 Stack Longs dira := pinMasks frqa := 1 frqb := 1 result := cnt repeat result += frequencyNumber waitcnt(result) phsa := -((||leftChannelDuty) * (frequencyNumber / 1_000)) phsb := -((||rightChannelDuty) * (frequencyNumber / 1_000)) ctra := (constant(%0_0100 << 26) | directionLeft[-(leftChannelDuty < 0)]) ctrb := (constant(%0_0100 << 26) | directionRight[-(rightChannelDuty < 0)]) {{ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // TERMS OF USE: MIT License /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // 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. /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// }}
Propeller Spin
5
deets/propeller
libraries/community/p1/All/Dual PWM Motor Driver/PWM2C_HBDDemo_2/PWM2C_HBDEngine.spin
[ "MIT" ]
<?Lassoscript // Last modified 5/12/08 by ECL, Landmann InterActive // FUNCTIONALITY // This page accesses the maintenance functions // CHANGE NOTES // 10/12/07 // Recoded for CMS v. 3.0 Include:'/siteconfig.lasso'; // Start the session Session_Start: -Name=$svSessionAdminName, -Expires=$svSessionTimeout; // Page head Include:($svLibsPath)'page_header_admin.inc'; // Defining the DataType Var:'vDataType' = 'Maintenance'; // Debugging // Var:'svDebug' = 'Y'; ?> <table width="780"> <tr> <td width="170"> [Include:($svLibsPath)'navbar_main.inc'] </td> <td> <div class="contentcontainerwhite"> <?Lassoscript // Login check If: (Var:'svUser_ID') != ''; ?> <h2>[LI_ShowIconByDataType]&nbsp;&nbsp;View Logs</h2> <div align="left">Logfiles are named by their function plus a date label indicating the date and time that the function was run (2-digit month, 2-digit day, 4-digit year)</div> <?Lassoscript // Get files from the /logs folder Inline: -Nothing, -Username=$svSiteUsername, -Password=$svSitePassword; Local:'Result' = ''; Local:'WhichDir' = string; Local:'WhichDir' = '/logs/'; Local:'File_Listing' = string; Local:'x' = integer; // List the directory Local:'x' = 0; Inline: -Nothing, -Username=$svSiteUsername, -Password=$svSitePassword; #File_Listing = (File_ListDirectory: (#WhichDir)); If: $svDebug == 'Y'; '<p class="debug">43: File_Listing = ' #File_Listing' </p>\n'; /If; /Inline; // Display files in the directory Loop: (#File_Listing->Size); If: $svDebug == 'Y'; '<p class="debug">49: Loop_Count = ' (Loop_Count) '</p>\n'; /If; If:(Loop_Count) != #x; // This gets the filename Local:'ThisFile' = (#File_Listing)->(get:(Loop_Count)); // Display file if not = .DS_Store or disabled with the SkipChar If: !((#ThisFile)->BeginsWith:'.DS_'); Local('DirectoryName_Clean' = (#ThisFile)); If: $svDebug == 'Y'; '<p class="debug">\n' '62: ThisFile = ' #ThisFile' <br>\n'; '62: DirectoryName_Clean = ' #DirectoryName_Clean' </p>\n'; /If; If: #DirectoryName_Clean != '.DS_Store'; If: !((#DirectoryName_Clean)->(Contains:'/')); // Build the link '\t\t\t\t\t\t\t\t\t\t<br>\n'; '\t\t\t\t\t\t\t\t\t\t<a href="/logs/'(#DirectoryName_Clean)'" class="menuBoxContentLink">\n'; '<strong>' (#DirectoryName_Clean) '</strong></a>\n'; /If; /If; /If; /If; /Loop; /Inline; '\t\t\t</div>\n'; Else; // Dump out error 6004 "Access Restricted" Var:'vError' = '6004'; // Standard Error Table LI_ShowError3: -ErrNum=(Var:'vError'), -Option=(Var:'vOption'); /If; ?> </div> </td> </tr> </table> [Include:($svIncludesPath)'build_footer.inc'] </body> </html>
Lasso
4
subethaedit/SubEthaEd
Documentation/ModeDevelopment/Reference Files/LassoScript-HTML/itpage/maintenance/maint_viewlogs.lasso
[ "MIT" ]
require "lapis.nginx.cache"
MoonScript
1
tommy-mor/lapis
lapis/cache.moon
[ "MIT", "Unlicense" ]
{{ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // E555 Speaker Engine // // Author: Kwabena W. Agyeman // Updated: 7/27/2010 // Designed For: P8X32A // Version: 1.1 // // Copyright (c) 2010 Kwabena W. Agyeman // See end of file for terms of use. // // Update History: // // v1.0 - Original release - 8/26/2009. // v1.1 - Added support for variable pin assignments - 7/27/2010. // // For each included copy of this object only one spin interpreter should access it at a time. // // Nyamekye, /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Speaker Circuit: // // SpeakerPinNumber --- Speaker Driver (Active High). // /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// }} PUB speakerFrequency(newFrequency, speakerPinNumber) '' 10 Stack Longs '' //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// '' // Changes the speaker frequency using the SPIN interpreter's counter modules. '' // '' // NewFrequency - The new frequency. Between 0 Hz and 80MHz @ 80MHz. -1 to reset the pin and counter modules. '' // SpeakerPinNumber - Pin to use to drive the speaker circuit. Between 0 and 31. '' //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// speakerSetup((newFrequency <> -1), speakerPinNumber) newFrequency := ((newFrequency <# clkfreq) #> 0) result := 1 repeat 32 newFrequency <<= 1 result <-= 1 if(newFrequency => clkfreq) newFrequency -= clkfreq result += 1 frqa := result~ phsb := 0 PUB speakerVolume(newVolume, speakerPinNumber) '' 10 Stack Longs '' //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// '' // Changes the speaker volume using the SPIN interpreter's counter modules. '' // '' // NewVolume - The new volume. Between 0% and 100%. -1 to reset the pin and counter modules. '' // SpeakerPinNumber - Pin to use to drive the speaker circuit. Between 0 and 31. '' //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// speakerSetup((newVolume <> -1), speakerPinNumber) frqb := (((100 - ((newVolume <# 100) #> 0)) * constant(posx / 50)) | $7) PRI speakerSetup(activeOrInactive, speakerPinNumber) ' 5 Stack Longs speakerPinNumber := ((speakerPinNumber <# 31) #> 0) dira[speakerPinNumber] := activeOrInactive outa[speakerPinNumber] := false ctra := ((constant(%0_0100 << 26) + speakerPinNumber) & activeOrInactive) ctrb := ((constant(%0_0110 << 26) + speakerPinNumber) & activeOrInactive) {{ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // TERMS OF USE: MIT License /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // 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. /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// }}
Propeller Spin
5
deets/propeller
libraries/community/p1/All/Speaker Driver/E555_SPKDemo/E555_SPKEngine.spin
[ "MIT" ]
#![crate_type = "dylib"] extern crate both; use std::mem; pub fn addr() -> usize { unsafe { mem::transmute(&both::foo) } }
Rust
3
Eric-Arellano/rust
src/test/run-make-fulldeps/mixing-deps/dylib.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
/* * The pre-processor performs initial parsing steps used to initialize * metadata, replace syntax that should not be saved to the database, * and prepare the document for the full parsing by the processor. */ package org.jamwiki.parser; import org.jamwiki.Environment; import org.jamwiki.utils.WikiLogger; import org.springframework.util.StringUtils; %% %public %class JAMWikiPreProcessor %extends AbstractLexer %type String %unicode %ignorecase %include code.flexh /* character expressions */ newline = ((\r\n) | (\n)) whitespace = {newline} | [ \t\f] /* nowiki */ nowiki = (<[ ]*nowiki[ ]*>) ~(<[ ]*\/[ ]*nowiki[ ]*>) /* pre */ htmlprestart = (<[ ]*pre[ ]*>) htmlpreend = (<[ ]*\/[ ]*pre[ ]*>) wikiprestart = (" ")+ ([^ \t\r\n]) wikipreend = ([^ ]) | ({newline}) /* comments */ htmlcomment = "<!--" ~"-->" /* wiki links */ wikilink = "[[" [^\]\n\r]+ "]]" protocol = "http://" | "https://" | "mailto:" | "mailto://" | "ftp://" | "file://" htmllinkwiki = "[" ({protocol}) ([^\]\n\r]+) "]" /* FIXME - hard-coding of image namespace */ imagelinkcaption = "[[" ([ ]*) "Image:" ([^\n\r\]\[]* ({wikilink} | {htmllinkwiki}) [^\n\r\]\[]*)+ "]]" /* templates */ templatestart = "{{" templatestartchar = "{" templateendchar = "}" templateparam = "{{{" [^\{\}\r\n]+ "}}}" includeonly = (<[ ]*includeonly[ ]*[\/]?[ ]*>) ~(<[ ]*\/[ ]*includeonly[ ]*>) noinclude = (<[ ]*noinclude[ ]*[\/]?[ ]*>) ~(<[ ]*\/[ ]*noinclude[ ]*>) /* signatures */ wikisignature = ([~]{3,5}) %state NORMAL, PRE, WIKIPRE, TEMPLATE %% %include ./rules.flexh
JFlex
4
Mivik/jflex
jflex-maven-plugin/src/test/projects/recursion-test/src/main/jflex/org/jamwiki/parser/jflex/preprocessor.jflex
[ "BSD-3-Clause" ]
# typed: false # frozen_string_literal: true require "livecheck/strategy/npm" describe Homebrew::Livecheck::Strategy::Npm do subject(:npm) { described_class } let(:npm_urls) { { typical: "https://registry.npmjs.org/abc/-/def-1.2.3.tgz", org_scoped: "https://registry.npmjs.org/@example/abc/-/def-1.2.3.tgz", } } let(:non_npm_url) { "https://brew.sh/test" } let(:generated) { { typical: { url: "https://www.npmjs.com/package/abc?activeTab=versions", regex: %r{href=.*?/package/abc/v/(\d+(?:\.\d+)+)"}i, }, org_scoped: { url: "https://www.npmjs.com/package/@example/abc?activeTab=versions", regex: %r{href=.*?/package/@example/abc/v/(\d+(?:\.\d+)+)"}i, }, } } describe "::match?" do it "returns true for an npm URL" do expect(npm.match?(npm_urls[:typical])).to be true expect(npm.match?(npm_urls[:org_scoped])).to be true end it "returns false for a non-npm URL" do expect(npm.match?(non_npm_url)).to be false end end describe "::generate_input_values" do it "returns a hash containing url and regex for an npm URL" do expect(npm.generate_input_values(npm_urls[:typical])).to eq(generated[:typical]) expect(npm.generate_input_values(npm_urls[:org_scoped])).to eq(generated[:org_scoped]) end it "returns an empty hash for a non-npm URL" do expect(npm.generate_input_values(non_npm_url)).to eq({}) end end end
Ruby
4
SibuVilakazi/brew
Library/Homebrew/test/livecheck/strategy/npm_spec.rb
[ "BSD-2-Clause" ]