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 |
|---|---|---|---|---|---|
' Licensed to the .NET Foundation under one or more agreements.
' The .NET Foundation licenses this file to you under the MIT license.
' See the LICENSE file in the project root for more information.
Imports System.Threading
Imports Microsoft.CodeAnalysis.Text
Namespace Microsoft.CodeAnalysis.VisualBasic
Partial Friend Class VisualBasicSyntaxTreeFactoryServiceFactory
Partial Friend Class VisualBasicSyntaxTreeFactoryService
''' <summary>
''' Represents a syntax reference that was passed a null
''' reference to a node. In this case, we just hold onto the
''' weak tree reference and throw if any invalid properties
''' are accessed.
''' </summary>
Private Class NullSyntaxReference
Inherits SyntaxReference
Private ReadOnly _tree As SyntaxTree
Public Sub New(tree As SyntaxTree)
_tree = tree
End Sub
Public Overrides ReadOnly Property SyntaxTree As SyntaxTree
Get
Return _tree
End Get
End Property
Public Overrides Function GetSyntax(Optional cancellationToken As CancellationToken = Nothing) As SyntaxNode
Return Nothing
End Function
Public Overrides ReadOnly Property Span As TextSpan
Get
Throw New NotSupportedException("Cannot retrieve the Span of a null syntax reference.")
End Get
End Property
End Class
End Class
End Class
End Namespace
| Visual Basic | 4 | ffMathy/roslyn | src/Workspaces/VisualBasic/Portable/Workspace/LanguageServices/VisualBasicSyntaxTreeFactoryService.NullSyntaxReference.vb | [
"MIT"
] |
win32 {
LIBS += -luser32
}
# Optional dependency on Windows SDK 7
!contains(QMAKE_TARGET.arch, x86_64) {
win32:exists(C:\Program Files\Microsoft SDKs\Windows\v7.1\Include\Windows.h) {
LIBS += -L"C:\Program Files\Microsoft SDKs\Windows\v7.1\Lib" -ldwmapi
DEFINES += "USEWINSDK"
message(Using Windows SDK 7)
}
}
# Optional dependency on Windows SDK 10
contains(QMAKE_TARGET.arch, x86_64) {
WIN_SDK_VERSION = $$(WindowsSDKVersion)
!isEmpty(WIN_SDK_VERSION) {
!equals(WIN_SDK_VERSION, "\\") {
DEFINES += "USEWINSDK"
message(Using Windows SDK 10)
}
}
}
| QMake | 4 | boralv/chatterino2 | lib/winsdk.pri | [
"MIT"
] |
$! TOCSP.COM
$
$ cmd = "mcr ''exe_dir'openssl"
$ ocspdir = "ocsp-tests"
$ ! 17 December 2012 so we don't get certificate expiry errors.
$ check_time = "-attime 1355875200"
$
$ test_ocsp: subroutine
$ set noon
$ 'cmd' base64 -d -in [.'ocspdir']'p1' -out f.d
$ 'cmd' ocsp -respin f.d -partial_chain 'check_time' -
"-CAfile" [.'ocspdir']'p2' -verify_other [.'ocspdir']'p2' -
"-CApath" nul:
$ ! when ocsp exits with 0, VMS severity becomes 1
$ ! when ocsp exits with 1, VMS severity becomes 2
$ ! See the definition of EXIT(n) in the VMS sextion in e_os.h
$ if $severity .ne. 'p3'+1 then exit 2 ! severity error
$ exit 1
$ endsubroutine
$
$ on error then exit 2
$ write sys$output "=== VALID OCSP RESPONSES ==="
$ write sys$output "NON-DELEGATED; Intermediate CA -> EE"
$ call test_ocsp ND1.ors ND1_Issuer_ICA.pem 0
$ write sys$output "NON-DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp ND2.ors ND2_Issuer_Root.pem 0
$ write sys$output "NON-DELEGATED; Root CA -> EE"
$ call test_ocsp ND3.ors ND3_Issuer_Root.pem 0
$ write sys$output "DELEGATED; Intermediate CA -> EE"
$ call test_ocsp D1.ors D1_Issuer_ICA.pem 0
$ write sys$output "DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp D2.ors D2_Issuer_Root.pem 0
$ write sys$output "DELEGATED; Root CA -> EE"
$ call test_ocsp D3.ors D3_Issuer_Root.pem 0
$
$ write sys$output "=== INVALID SIGNATURE on the OCSP RESPONSE ==="
$ write sys$output "NON-DELEGATED; Intermediate CA -> EE"
$ call test_ocsp ISOP_ND1.ors ND1_Issuer_ICA.pem 1
$ write sys$output "NON-DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp ISOP_ND2.ors ND2_Issuer_Root.pem 1
$ write sys$output "NON-DELEGATED; Root CA -> EE"
$ call test_ocsp ISOP_ND3.ors ND3_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Intermediate CA -> EE"
$ call test_ocsp ISOP_D1.ors D1_Issuer_ICA.pem 1
$ write sys$output "DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp ISOP_D2.ors D2_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Root CA -> EE"
$ call test_ocsp ISOP_D3.ors D3_Issuer_Root.pem 1
$
$ write sys$output "=== WRONG RESPONDERID in the OCSP RESPONSE ==="
$ write sys$output "NON-DELEGATED; Intermediate CA -> EE"
$ call test_ocsp WRID_ND1.ors ND1_Issuer_ICA.pem 1
$ write sys$output "NON-DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp WRID_ND2.ors ND2_Issuer_Root.pem 1
$ write sys$output "NON-DELEGATED; Root CA -> EE"
$ call test_ocsp WRID_ND3.ors ND3_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Intermediate CA -> EE"
$ call test_ocsp WRID_D1.ors D1_Issuer_ICA.pem 1
$ write sys$output "DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp WRID_D2.ors D2_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Root CA -> EE"
$ call test_ocsp WRID_D3.ors D3_Issuer_Root.pem 1
$
$ write sys$output "=== WRONG ISSUERNAMEHASH in the OCSP RESPONSE ==="
$ write sys$output "NON-DELEGATED; Intermediate CA -> EE"
$ call test_ocsp WINH_ND1.ors ND1_Issuer_ICA.pem 1
$ write sys$output "NON-DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp WINH_ND2.ors ND2_Issuer_Root.pem 1
$ write sys$output "NON-DELEGATED; Root CA -> EE"
$ call test_ocsp WINH_ND3.ors ND3_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Intermediate CA -> EE"
$ call test_ocsp WINH_D1.ors D1_Issuer_ICA.pem 1
$ write sys$output "DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp WINH_D2.ors D2_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Root CA -> EE"
$ call test_ocsp WINH_D3.ors D3_Issuer_Root.pem 1
$
$ write sys$output "=== WRONG ISSUERKEYHASH in the OCSP RESPONSE ==="
$ write sys$output "NON-DELEGATED; Intermediate CA -> EE"
$ call test_ocsp WIKH_ND1.ors ND1_Issuer_ICA.pem 1
$ write sys$output "NON-DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp WIKH_ND2.ors ND2_Issuer_Root.pem 1
$ write sys$output "NON-DELEGATED; Root CA -> EE"
$ call test_ocsp WIKH_ND3.ors ND3_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Intermediate CA -> EE"
$ call test_ocsp WIKH_D1.ors D1_Issuer_ICA.pem 1
$ write sys$output "DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp WIKH_D2.ors D2_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Root CA -> EE"
$ call test_ocsp WIKH_D3.ors D3_Issuer_Root.pem 1
$
$ write sys$output "=== WRONG KEY in the DELEGATED OCSP SIGNING CERTIFICATE ==="
$ write sys$output "DELEGATED; Intermediate CA -> EE"
$ call test_ocsp WKDOSC_D1.ors D1_Issuer_ICA.pem 1
$ write sys$output "DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp WKDOSC_D2.ors D2_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Root CA -> EE"
$ call test_ocsp WKDOSC_D3.ors D3_Issuer_Root.pem 1
$
$ write sys$output "=== INVALID SIGNATURE on the DELEGATED OCSP SIGNING CERTIFICATE ==="
$ write sys$output "DELEGATED; Intermediate CA -> EE"
$ call test_ocsp ISDOSC_D1.ors D1_Issuer_ICA.pem 1
$ write sys$output "DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp ISDOSC_D2.ors D2_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Root CA -> EE"
$ call test_ocsp ISDOSC_D3.ors D3_Issuer_Root.pem 1
$
$ write sys$output "=== WRONG SUBJECT NAME in the ISSUER CERTIFICATE ==="
$ write sys$output "NON-DELEGATED; Intermediate CA -> EE"
$ call test_ocsp ND1.ors WSNIC_ND1_Issuer_ICA.pem 1
$ write sys$output "NON-DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp ND2.ors WSNIC_ND2_Issuer_Root.pem 1
$ write sys$output "NON-DELEGATED; Root CA -> EE"
$ call test_ocsp ND3.ors WSNIC_ND3_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Intermediate CA -> EE"
$ call test_ocsp D1.ors WSNIC_D1_Issuer_ICA.pem 1
$ write sys$output "DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp D2.ors WSNIC_D2_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Root CA -> EE"
$ call test_ocsp D3.ors WSNIC_D3_Issuer_Root.pem 1
$
$ write sys$output "=== WRONG KEY in the ISSUER CERTIFICATE ==="
$ write sys$output "NON-DELEGATED; Intermediate CA -> EE"
$ call test_ocsp ND1.ors WKIC_ND1_Issuer_ICA.pem 1
$ write sys$output "NON-DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp ND2.ors WKIC_ND2_Issuer_Root.pem 1
$ write sys$output "NON-DELEGATED; Root CA -> EE"
$ call test_ocsp ND3.ors WKIC_ND3_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Intermediate CA -> EE"
$ call test_ocsp D1.ors WKIC_D1_Issuer_ICA.pem 1
$ write sys$output "DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp D2.ors WKIC_D2_Issuer_Root.pem 1
$ write sys$output "DELEGATED; Root CA -> EE"
$ call test_ocsp D3.ors WKIC_D3_Issuer_Root.pem 1
$
$ write sys$output "=== INVALID SIGNATURE on the ISSUER CERTIFICATE ==="
$ !# Expect success, because we're explicitly trusting the issuer certificate.
$ write sys$output "NON-DELEGATED; Intermediate CA -> EE"
$ call test_ocsp ND1.ors ISIC_ND1_Issuer_ICA.pem 0
$ write sys$output "NON-DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp ND2.ors ISIC_ND2_Issuer_Root.pem 0
$ write sys$output "NON-DELEGATED; Root CA -> EE"
$ call test_ocsp ND3.ors ISIC_ND3_Issuer_Root.pem 0
$ write sys$output "DELEGATED; Intermediate CA -> EE"
$ call test_ocsp D1.ors ISIC_D1_Issuer_ICA.pem 0
$ write sys$output "DELEGATED; Root CA -> Intermediate CA"
$ call test_ocsp D2.ors ISIC_D2_Issuer_Root.pem 0
$ write sys$output "DELEGATED; Root CA -> EE"
$ call test_ocsp D3.ors ISIC_D3_Issuer_Root.pem 0
$
$ write sys$output "ALL OCSP TESTS SUCCESSFUL"
$ exit 1
| DIGITAL Command Language | 3 | madanagopaltcomcast/pxCore | examples/pxScene2d/external/openssl-1.0.2o/test/tocsp.com | [
"Apache-2.0"
] |
'===============================================================================
' Little Shooty Test Thing
' Code & Stuff by Richard Olpin (rik@olpin.net)
'==============================================================================
' Graphic Font
'==============================================================================
Type GFont
Global FontImg, f
Global TypeStr$
' ---------------------------------------------------------------------------
' Init() - Load Font Image
' ---------------------------------------------------------------------------
Function Init()
FontImg = LoadAnimImage("gfx/abduction.png",32,32,0,49, MASKEDIMAGE)
End Function
' ---------------------------------------------------------------------------
' DrawString(MsgX,MsgY,Message$)
' ---------------------------------------------------------------------------
Function DrawString(MsgX,MsgY,Message$,centrex, centrey)
Local MsgCount = Len(Message$)
SetBlend MASKBLEND
SetScale 1,1
SetAlpha 1
SetRotation 0
length =Len(message$)*30
x=msgx
If centrex=1 Then x=msgx-(length/2)
If centrex=-1 Then x=msgx-length
If centrey=1
y=msgy-16
Else
y=msgy
EndIf
For f=0 To MsgCount-1
FontChar = Asc(Lower$(Mid$(Message$,f+1,1)))
imgchar= sortchar(fontchar)
DrawImage FontImg,x+(f*30),MsgY,ImgChar
Next
End Function
' ---------------------------------------------------------------------------
' Sortchar
' ---------------------------------------------------------------------------
Function sortchar(char)
' Letters
If char>=97 And char<=122 Then c=char-97
' Numbers
If char>=48 And char<=57 Then c=char-22
' Special characters
Select Char
Case 63 c = 36
Case 46 c= 37
Case 44 c= 38
Case 39 c= 39
Case 34 c= 40
Case 33 c= 41
Case 40 c= 42
Case 41 c= 43
Case 45 c= 44
Case 58 c= 45
Case 59 c= 46
Case 32 c= 48
End Select
Return c
End Function
End Type | BlitzMax | 5 | jabdoa2/blitzmax | samples/shooter/gfont.bmx | [
"Zlib"
] |
[b = "c"] {} | CSS | 0 | mengxy/swc | crates/swc_css_parser/tests/fixture/esbuild/misc/_qcmYeHAxw35hMnF2IST8A/input.css | [
"Apache-2.0"
] |
using System;
using Uno;
using Uno.Collections;
using System.IO;
using Uno.Net;
using Uno.Net.Sockets;
namespace Outracks.Simulator
{
public class FailedToConnectToProxy : Exception
{
public readonly ImmutableList<Exception> InnerExceptions;
public FailedToConnectToProxy(IEnumerable<Exception> innerExceptions)
: base("Failed to connect to proxy:\n" + innerExceptions.ToIndentedLines()) // TODO: move this view logic away from here
{
InnerExceptions = innerExceptions.ToImmutableList();
}
}
public class DesignerNotRunning : Exception
{
}
public class ProxyClient
{
public static Task<IPEndPoint[]> GetSimulatorEndpoint(IEnumerable<IPEndPoint> proxyEndpoints, string project, IEnumerable<string> defines)
{
var tasks = new List<Task<IPEndPoint[]>>();
foreach (var endpoint in proxyEndpoints)
tasks.Add(
Tasks.Run<IPEndPoint[]>(
new GetSimulatorEndpoint(endpoint, project, defines.ToArray()).Execute));
return Tasks.WaitForFirstResult<IPEndPoint[]>(tasks, OnNoResult);
}
static IPEndPoint[] OnNoResult(IEnumerable<Exception> exceptions)
{
foreach (var exception in exceptions)
{
if (exception is DesignerNotRunning)
{
throw new DesignerNotRunning();
}
}
throw new FailedToConnectToProxy(exceptions);
}
}
class GetSimulatorEndpoint
{
readonly IPEndPoint proxy;
readonly string project;
readonly string[] defines;
public GetSimulatorEndpoint(IPEndPoint proxy, string project, string[] defines)
{
this.proxy = proxy;
this.project = project;
this.defines = defines;
}
public IPEndPoint[] Execute()
{
try
{
var socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
socket.Connect(proxy);
using (var stream = new NetworkStream(socket))
using (var writer = new BinaryWriter(stream))
using (var reader = new BinaryReader(stream))
{
writer.Write(project);
writer.Write(string.Join(" ", defines));
var initialState = reader.ReadString();
if ("DESIGNER_NOT_RUNNING".Equals(initialState))
throw new DesignerNotRunning();
if ("SUCCESS".Equals(initialState) == false)
throw new Exception("Failed to request host.");
var endpointCount = reader.ReadInt32();
var endpoints = new IPEndPoint[endpointCount];
for (int i = 0; i < endpoints.Length; i++)
{
var simulatorAddress = reader.ReadString();
var simulatorPort = reader.ReadInt32();
endpoints[i] = new IPEndPoint(IPAddress.Parse(simulatorAddress), simulatorPort);
}
try
{
socket.Shutdown(SocketShutdown.Both);
}
catch (Exception e)
{
// We may already be connected
}
return endpoints;
}
// UnoBug: this code is unreachable, but uno disagrees
throw new Exception("Call Tom Curise");
}
catch (DesignerNotRunning)
{
throw;
}
catch (Exception e)
{
throw new FailedToConnectToEndPoint(proxy, e);
}
}
}
} | Uno | 4 | mortend/fuse-studio | Source/Preview/Core/ProxyClient.uno | [
"MIT"
] |
@import './local.css';
.other {
color: green;
}
| CSS | 3 | johanberonius/parcel | packages/core/integration-tests/test/integration/glob-css/dir/other.css | [
"MIT"
] |
## ci.golo
function check = |context| {
context: info("{0}", "=== Jarvis-CI ===")
context: info("Repository {0}", context: repo(): name())
context: info("Current branch {0}", context: repo(): branchName())
let path = currentDir() + "/" + context: tmp_dir()
context: info("path: {0}", path)
# Stage: initialize
context: info("{0}", "1- initialize")
if context: sh("./npm_install.sh {0}", path): equals(0) {
context: success("{0}", "packages installation OK")
# Stage: tests
context: info("{0}", "2- tests")
if context: sh("./npm_run.sh {0} {1}", path, "test"): equals(0) {
context: success("{0}", "tests OK")
return DynamicObject(): initialize("ok"): tests("ok"): status("success"): description("you are the best!"): context("jarvis-ci")
} else {
context: warning("{0}", "tests KO")
return DynamicObject(): initialize("ok"): tests("ko"): status("failure"): description("ouch!"): context("jarvis-ci")
}
} else {
context: fail("{0}", "packages installation KO")
return DynamicObject(): initialize("ko"): tests("ko"): status("failure"): description("ouch!"): context("jarvis-ci")
}
} | Golo | 4 | ajnavarro/language-dataset | data/github.com/azim4gvm/fantastic-train/6b6f92775f260e3e7dc9d375962b0170fc5fb085/ci.golo | [
"MIT"
] |
// https://dom.spec.whatwg.org/#interface-comment
[Exposed=Window]
interface Comment : CharacterData {
constructor(optional DOMString data = "");
};
| WebIDL | 4 | Unique184/jsdom | lib/jsdom/living/nodes/Comment.webidl | [
"MIT"
] |
#include "script_component.hpp"
/*
Name: TFAR_static_radios_fnc_setSpeakers
Author: Dedmen
takes radio classnames and returns instanciated classnames (with _ID appended)
Arguments:
0: the weaponholder containing the radio <OBJECT>
1: speaker enabled <BOOL>
Return Value:
None
Example:
["TFAR_anprc_152_3",true] call TFAR_static_radios_fnc_setSpeakers;
Public: No
*/
params ["_radioContainer","_enabled"];
CBA_SETTINGS_GUARD(TFAR_static_radios_fnc_setSpeakers);
_radio_id = _radioContainer call TFAR_static_radios_fnc_instanciatedRadio;
if (_radio_id call TFAR_fnc_isLRRadio) then {
_radio_id = [_radio_id, "radio_settings"];
private _settings = _radio_id call TFAR_fnc_getLrSettings;
_settings set [TFAR_SW_SPEAKER_OFFSET, _enabled];
(_radio_id select 0) setVariable ["TFAR_LRSpeakersEnabled", _enabled];
[_radio_id, _settings] call TFAR_fnc_setLrSettings;
} else {
private _settings = _radio_id call TFAR_fnc_getSwSettings;
_settings set [TFAR_SW_SPEAKER_OFFSET, _enabled];
[_radio_id, _settings] call TFAR_fnc_setSwSettings;
}
| SQF | 4 | MrDj200/task-force-arma-3-radio | addons/static_radios/functions/fnc_setSpeakers.sqf | [
"RSA-MD"
] |
--**********************************************************************
-- Copyright (c) 2012-2014 by XESS Corp <http://www.xess.com>.
-- All rights reserved.
--
-- This library is free software; you can redistribute it and/or
-- modify it under the terms of the GNU Lesser General Public
-- License as published by the Free Software Foundation; either
-- version 3.0 of the License, or (at your option) any later version.
--
-- This library is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-- Lesser General Public License for more details.
--
-- You should have received a copy of the GNU Lesser General Public
-- License along with this library. If not, see
-- <http://www.gnu.org/licenses/>.
--**********************************************************************
--*********************************************************************
-- SD MEMORY CARD INTERFACE
--
-- Reads/writes a single or multiple blocks of data to/from an SD Flash card.
--
-- Based on XESS by by Steven J. Merrifield, June 2008:
-- http : //stevenmerrifield.com/tools/sd.vhd
--
-- Most of what I learned about interfacing to SD/SDHC cards came from here:
-- http://elm-chan.org/docs/mmc/mmc_e.html
--
-- OPERATION
--
-- Set-up:
-- First of all, you have to give the controller a clock signal on the clk_i
-- input with a higher frequency than the serial clock sent to the SD card
-- through the sclk_o output. You can set generic parameters for the
-- controller to tell it the master clock frequency (100 MHz), the SCLK
-- frequency for initialization (400 KHz), the SCLK frequency for normal
-- operation (25 MHz), the size of data sectors in the Flash memory (512 bytes),
-- and the type of card (either SD or SDHC). I typically use a 100 MHz
-- clock if I'm running an SD card with a 25 Mbps serial data stream.
--
-- Initialize it:
-- Pulsing the reset_i input high and then bringing it low again will make
-- the controller initialize the SD card so it will XESS in SPI mode.
-- Basically, it sends the card the commands CMD0, CMD8 and then ACMD41 (which
-- is CMD55 followed by CMD41). The busy_o output will be high during the
-- initialization and will go low once it is done.
--
-- After the initialization command sequence, the SD card will send back an R1
-- response byte. If only the IDLE bit of the R1 response is set, then the
-- controller will repeatedly re-try the ACMD41 command while busy_o remains
-- high.
--
-- If any other bit of the R1 response is set, then an error occurred. The
-- controller will stall, lower busy_o, and output the R1 response code on the
-- error_o bus. You'll have to pulse reset_i to unfreeze the controller.
--
-- If the R1 response is all zeroes (i.e., no errors occurred during the
-- initialization), then the controller will lower busy_o and wait for a
-- read or write operation from the host. The controller will only accept new
-- operations when busy_o is low.
--
-- Write data:
-- To write a data block to the SD card, the address of a block is placed
-- on the addr_i input bus and the wr_i input is raised. The address and
-- write strobe can be removed once busy_o goes high to indicate the write
-- operation is underway. The data to be written to the SD card is passed as
-- follows:
--
-- 1. The controller requests a byte of data by raising the hndShk_o output.
-- 2. The host applies the next byte to the data_i input bus and raises the
-- hndShk_i input.
-- 3. The controller accepts the byte and lowers the hndShk_o output.
-- 4. The host lowers the hndShk_i input.
--
-- This sequence of steps is repeated until all BLOCK_SIZE_G bytes of the
-- data block are passed from the host to the controller. Once all the data
-- is passed, the sector on the SD card will be written and the busy_o output
-- will be lowered.
--
-- Read data:
-- To read a block of data from the SD card, the address of a block is
-- placed on the addr_i input bus and the rd_i input is raised. The address
-- and read strobe can be removed once busy_o goes high to indicate the read
-- operation is underway. The data read from the SD card is passed to the
-- host as follows:
--
-- 1. The controller raises the hndShk_o output when the next data byte is available.
-- 2. The host reads the byte from the data_o output bus and raises the hndShk_i input.
-- 3. The controller lowers the hndShk_o output.
-- 4. The host lowers the hndShk_i input.
--
-- This sequence of steps is repeated until all BLOCK_SIZE_G bytes of the
-- data block are passed from the controller to the host. Once all the data
-- is read, the busy_o output will be lowered.
--
-- Handle errors:
-- If an error is detected during either a read or write operation, then the
-- controller will stall, lower busy_o, and output an error code on the
-- error_o bus. You'll have to pulse reset_i to unfreeze the controller. That
-- may seem a bit excessive, but it does guarantee that you can't ignore any
-- errors that occur.
--
-- TODO:
--
-- * Implement multi-block read and write commands.
-- * Allow host to send/receive SPI commands/data directly to
-- the SD card through the controller.
-- *********************************************************************
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;
package common is
type CardType_t is (SD_CARD_E, SDHC_CARD_E); -- Define the different types of SD cards.
constant YES : std_logic := '1';
constant NO : std_logic := '0';
constant HI : std_logic := '1';
constant LO : std_logic := '0';
constant ONE : std_logic := '1';
constant ZERO : std_logic := '0';
constant HIZ : std_logic := 'Z';
function IntMax(a : in integer; b : in integer) return integer;
end common;
package body common is
-- Find the maximum of two integers.
function IntMax(a : in integer; b : in integer) return integer is
begin
if a > b then
return a;
else
return b;
end if;
return a;
end function IntMax;
end package body;
library IEEE, XESS;
use IEEE.math_real.all;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;
--library IEEE, XESS;
--use IEEE.math_real.all;
--use IEEE.std_logic_1164.all;
--use IEEE.numeric_std.all;
use Work.common.all;
entity SdCardCtrl is
generic (
FREQ_G : real := 25.0; -- Master clock frequency (MHz).
INIT_SPI_FREQ_G : real := 0.25; -- Slow SPI clock freq. during initialization (MHz).
SPI_FREQ_G : real := 25.0; -- Operational SPI freq. to the SD card (MHz).
BLOCK_SIZE_G : natural := 512; -- Number of bytes in an SD card block or sector.
CARD_TYPE_G : CardType_t := SDHC_CARD_E -- Type of SD card connected to this controller.
);
port (
-- Host-side interface signals.
clk_i : in std_logic; -- Master clock.
reset_i : in std_logic := NO; -- active-high, synchronous reset.
rd_i : in std_logic := NO; -- active-high read block request.
wr_i : in std_logic := NO; -- active-high write block request.
continue_i : in std_logic := NO; -- If true, inc address and continue R/W.
addr_i : in std_logic_vector(31 downto 0) := x"00000000"; -- Block address.
data_i : in std_logic_vector(7 downto 0) := x"00"; -- Data to write to block.
data_o : out std_logic_vector(7 downto 0) := x"00"; -- Data read from block.
busy_o : out std_logic; -- High when controller is busy performing some operation.
hndShk_i : in std_logic; -- High when host has data to give or has taken data.
hndShk_o : out std_logic; -- High when controller has taken data or has data to give.
error_o : out std_logic_vector(15 downto 0) := (others => NO);
-- I/O signals to the external SD card.
cs_bo : out std_logic := HI; -- Active-low chip-select.
sclk_o : out std_logic := LO; -- Serial clock to SD card.
mosi_o : out std_logic := HI; -- Serial data output to SD card.
miso_i : in std_logic := ZERO; -- Serial data input from SD card.
state_o : out std_logic_vector(7 downto 0) := x"00"
);
end entity;
architecture arch of SdCardCtrl is
signal sclk_r : std_logic := ZERO; -- Register output drives SD card clock.
signal hndShk_r : std_logic := NO; -- Register output drives handshake output to host.
begin
process(clk_i) -- FSM process for the SD card controller.
type FsmState_t is ( -- States of the SD card controller FSM.
START_INIT, -- Send initialization clock pulses to the deselected SD card.
SEND_CMD0, -- Put the SD card in the IDLE state.
CHK_CMD0_RESPONSE, -- Check card's R1 response to the CMD0.
SEND_CMD8, -- This command is needed to initialize SDHC cards.
GET_CMD8_RESPONSE, -- Get the R7 response to CMD8.
SEND_CMD55, -- Send CMD55 to the SD card.
SEND_CMD41, -- Send CMD41 to the SD card.
CHK_ACMD41_RESPONSE, -- Check if the SD card has left the IDLE state.
WAIT_FOR_HOST_RW, -- Wait for the host to issue a read or write command.
RD_BLK, -- Read a block of data from the SD card.
WR_BLK, -- Write a block of data to the SD card.
WR_WAIT, -- Wait for SD card to finish writing the data block.
START_TX, -- Start sending command/data.
TX_BITS, -- Shift out remaining command/data bits.
GET_CMD_RESPONSE, -- Get the R1 response of the SD card to a command.
RX_BITS, -- Receive response/data from the SD card.
DESELECT, -- De-select the SD card and send some clock pulses (Must enter with sclk at zero.)
PULSE_SCLK, -- Issue some clock pulses. (Must enter with sclk at zero.)
REPORT_ERROR -- Report error and stall until reset.
);
variable state_v : FsmState_t := START_INIT; -- Current state of the FSM.
variable rtnState_v : FsmState_t; -- State FSM returns to when FSM subroutine completes.
-- Timing constants based on the master clock frequency and the SPI SCLK frequencies.
constant CLKS_PER_INIT_SCLK_C : real := FREQ_G / INIT_SPI_FREQ_G;
constant CLKS_PER_SCLK_C : real := FREQ_G / SPI_FREQ_G;
constant MAX_CLKS_PER_SCLK_C : real := realmax(CLKS_PER_INIT_SCLK_C, CLKS_PER_SCLK_C);
constant MAX_CLKS_PER_SCLK_PHASE_C : natural := integer(round(MAX_CLKS_PER_SCLK_C / 2.0));
constant INIT_SCLK_PHASE_PERIOD_C : natural := integer(round(CLKS_PER_INIT_SCLK_C / 2.0));
constant SCLK_PHASE_PERIOD_C : natural := integer(round(CLKS_PER_SCLK_C / 2.0));
constant DELAY_BETWEEN_BLOCK_RW_C : natural := SCLK_PHASE_PERIOD_C;
-- Registers for generating slow SPI SCLK from the faster master clock.
variable clkDivider_v : natural range 0 to MAX_CLKS_PER_SCLK_PHASE_C; -- Holds the SCLK period.
variable sclkPhaseTimer_v : natural range 0 to MAX_CLKS_PER_SCLK_PHASE_C; -- Counts down to zero, then SCLK toggles.
constant NUM_INIT_CLKS_C : natural := 160; -- Number of initialization clocks to SD card.
variable bitCnt_v : natural range 0 to NUM_INIT_CLKS_C; -- Tx/Rx bit counter.
constant CRC_SZ_C : natural := 2; -- Number of CRC bytes for read/write blocks.
-- When reading blocks of data, get 0xFE + [DATA_BLOCK] + [CRC].
constant RD_BLK_SZ_C : natural := 1 + BLOCK_SIZE_G + CRC_SZ_C;
-- When writing blocks of data, send 0xFF + 0xFE + [DATA BLOCK] + [CRC] then receive response byte.
constant WR_BLK_SZ_C : natural := 1 + 1 + BLOCK_SIZE_G + CRC_SZ_C + 1;
variable byteCnt_v : natural range 0 to IntMax(WR_BLK_SZ_C, RD_BLK_SZ_C); -- Tx/Rx byte counter.
-- Command bytes for various SD card operations.
subtype Cmd_t is std_logic_vector(7 downto 0);
constant CMD0_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 0, Cmd_t'length));
constant CMD8_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 8, Cmd_t'length));
constant CMD55_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 55, Cmd_t'length));
constant CMD41_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 41, Cmd_t'length));
constant READ_BLK_CMD_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 17, Cmd_t'length));
constant WRITE_BLK_CMD_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 24, Cmd_t'length));
-- Except for CMD0 and CMD8, SD card ops don't need a CRC, so use a fake one for that slot in the command.
constant FAKE_CRC_C : std_logic_vector(7 downto 0) := x"FF";
variable addr_v : unsigned(addr_i'range); -- Address of current block for R/W operations.
-- Maximum Tx to SD card consists of command + address + CRC. Data Tx is just a single byte.
variable tx_v : std_logic_vector(CMD0_C'length + addr_v'length + FAKE_CRC_C'length - 1 downto 0); -- Data/command to SD card.
alias txCmd_v is tx_v; -- Command transmission shift register.
alias txData_v is tx_v(tx_v'high downto tx_v'high - data_i'length + 1); -- Data byte transmission shift register.
variable rx_v : std_logic_vector(data_i'range); -- Data/response byte received from SD card.
-- Various response codes.
subtype Response_t is std_logic_vector(rx_v'range);
constant ACTIVE_NO_ERRORS_C : Response_t := "00000000"; -- Normal R1 code after initialization.
constant IDLE_NO_ERRORS_C : Response_t := "00000001"; -- Normal R1 code after CMD0.
constant DATA_ACCEPTED_C : Response_t := "---00101"; -- SD card accepts data block from host.
constant DATA_REJ_CRC_C : Response_t := "---01011"; -- SD card rejects data block from host due to CRC error.
constant DATA_REJ_WERR_C : Response_t := "---01101"; -- SD card rejects data block from host due to write error.
-- Various tokens.
subtype Token_t is std_logic_vector(rx_v'range);
constant NO_TOKEN_C : Token_t := x"FF"; -- Received before the SD card responds to a block read command.
constant START_TOKEN_C : Token_t := x"FE"; -- Starting byte preceding a data block.
-- Flags that are set/cleared to affect the operation of the FSM.
variable getCmdResponse_v : boolean; -- When true, get R1 response to command sent to SD card.
variable rtnData_v : boolean; -- When true, signal to host when a data byte arrives from SD card.
variable doDeselect_v : boolean; -- When true, de-select SD card after a command is issued.
begin
if rising_edge(clk_i) then
if reset_i = YES then -- Perform a reset.
state_v := START_INIT; -- Send the FSM to the initialization entry-point.
sclkPhaseTimer_v := 0; -- Don't delay the initialization right after reset.
busy_o <= YES; -- Busy while the SD card interface is being initialized.
elsif sclkPhaseTimer_v /= 0 then
-- Setting the clock phase timer to a non-zero value delays any further actions
-- and generates the slower SPI clock from the faster master clock.
sclkPhaseTimer_v := sclkPhaseTimer_v - 1;
-- Clock phase timer has reached zero, so check handshaking sync. between host and controller.
-- Handshaking lets the host control the flow of data to/from the SD card controller.
-- Handshaking between the SD card controller and the host proceeds as follows:
-- 1: Controller raises its handshake and waits.
-- 2: Host sees controller handshake and raises its handshake in acknowledgement.
-- 3: Controller sees host handshake acknowledgement and lowers its handshake.
-- 4: Host sees controller lower its handshake and removes its handshake.
--
-- Handshaking is bypassed when the controller FSM is initializing the SD card.
elsif state_v /= START_INIT and hndShk_r = HI and hndShk_i = LO then
null; -- Waiting for the host to acknowledge handshake.
elsif state_v /= START_INIT and hndShk_r = HI and hndShk_i = HI then
txData_v := data_i; -- Get any data passed from the host.
hndShk_r <= LO; -- The host acknowledged, so lower the controller handshake.
elsif state_v /= START_INIT and hndShk_r = LO and hndShk_i = HI then
null; -- Waiting for the host to lower its handshake.
elsif (state_v = START_INIT) or (hndShk_r = LO and hndShk_i = LO) then
-- Both handshakes are low, so the controller operations can proceed.
--busy_o <= YES; -- Busy by default. Only false when waiting for R/W from host or stalled by error.
case state_v is
when START_INIT => -- Deselect the SD card and send it a bunch of clock pulses with MOSI high.
--error_o <= (others => ZERO); -- Clear error flags.
clkDivider_v := INIT_SCLK_PHASE_PERIOD_C - 1; -- Use slow SPI clock freq during init.
sclkPhaseTimer_v := INIT_SCLK_PHASE_PERIOD_C - 1; -- and set the duration of the next clock phase.
sclk_r <= LO; -- Start with low clock to the SD card.
hndShk_r <= LO; -- Initialize handshake signal.
addr_v := (others => ZERO); -- Initialize address.
rtnData_v := false; -- No data is returned to host during initialization.
bitCnt_v := NUM_INIT_CLKS_C; -- Generate this many clock pulses.
state_v := DESELECT; -- De-select the SD card and pulse SCLK.
rtnState_v := SEND_CMD0; -- Then go to this state after the clock pulses are done.
state_o <= x"00";
when SEND_CMD0 => -- Put the SD card in the IDLE state.
busy_o <= YES;
cs_bo <= LO; -- Enable the SD card.
txCmd_v := CMD0_C & x"00000000" & x"95"; -- 0x95 is the correct CRC for this command.
bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command.
getCmdResponse_v := true; -- Sending a command that generates a response.
doDeselect_v := true; -- De-select SD card after this command finishes.
state_v := START_TX; -- Go to FSM subroutine to send the command.
rtnState_v := CHK_CMD0_RESPONSE; -- Then check the response to the command.
state_o <= x"01";
when CHK_CMD0_RESPONSE => -- Check card's R1 response to the CMD0.
if rx_v = IDLE_NO_ERRORS_C then
state_v := SEND_CMD8; -- Continue init if SD card is in IDLE state with no errors
else
state_v := SEND_CMD0; -- Otherwise, try CMD0 again.
end if;
state_o <= x"02";
when SEND_CMD8 => -- This command is needed to initialize SDHC cards.
cs_bo <= LO; -- Enable the SD card.
txCmd_v := CMD8_C & x"000001aa" & x"87"; -- 0x87 is the correct CRC for this command.
bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command.
getCmdResponse_v := true; -- Sending a command that generates a response.
doDeselect_v := false; -- Don't de-select, need to get the R7 response sent from the SD card.
state_v := START_TX; -- Go to FSM subroutine to send the command.
rtnState_v := GET_CMD8_RESPONSE; -- Then go to this state after the command is sent.
state_o <= x"03";
when GET_CMD8_RESPONSE => -- Get the R7 response to CMD8.
cs_bo <= LO; -- The SD card should already be enabled, but let's be explicit.
bitCnt_v := 31; -- Four bytes (32 bits) in R7 response.
getCmdResponse_v := false; -- Not sending a command that generates a response.
doDeselect_v := true; -- De-select card to end the command after getting the four bytes.
state_v := RX_BITS; -- Go to FSM subroutine to get the R7 response.
rtnState_v := SEND_CMD55; -- Then go here (we don't care what the actual R7 response is).
state_o <= x"04";
when SEND_CMD55 => -- Send CMD55 as preamble of ACMD41 initialization command.
cs_bo <= LO; -- Enable the SD card.
txCmd_v := CMD55_C & x"00000000" & FAKE_CRC_C;
bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command.
getCmdResponse_v := true; -- Sending a command that generates a response.
doDeselect_v := true; -- De-select SD card after this command finishes.
state_v := START_TX; -- Go to FSM subroutine to send the command.
rtnState_v := SEND_CMD41; -- Then go to this state after the command is sent.
state_o <= x"05";
when SEND_CMD41 => -- Send the SD card the initialization command.
cs_bo <= LO; -- Enable the SD card.
txCmd_v := CMD41_C & x"40000000" & FAKE_CRC_C;
bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command.
getCmdResponse_v := true; -- Sending a command that generates a response.
doDeselect_v := true; -- De-select SD card after this command finishes.
state_v := START_TX; -- Go to FSM subroutine to send the command.
rtnState_v := CHK_ACMD41_RESPONSE; -- Then check the response to the command.
state_o <= x"06";
when CHK_ACMD41_RESPONSE =>
-- The CMD55, CMD41 sequence should cause the SD card to leave the IDLE state
-- and become ready for SPI read/write operations. If still IDLE, then repeat the CMD55, CMD41 sequence.
-- If one of the R1 error flags is set, then report the error and stall.
if rx_v = ACTIVE_NO_ERRORS_C then -- Not IDLE, no errors.
state_v := WAIT_FOR_HOST_RW; -- Start processing R/W commands from the host.
elsif rx_v = IDLE_NO_ERRORS_C then -- Still IDLE but no errors.
state_v := SEND_CMD55; -- Repeat the CMD55, CMD41 sequence.
else -- Some error occurred.
state_v := REPORT_ERROR; -- Report the error and stall.
end if;
state_o <= x"07";
when WAIT_FOR_HOST_RW => -- Wait for the host to read or write a block of data from the SD card.
state_o <= x"08";
clkDivider_v := SCLK_PHASE_PERIOD_C - 1; -- Set SPI clock frequency for normal operation.
getCmdResponse_v := true; -- Get R1 response to any commands issued to the SD card.
if rd_i = YES then -- send READ command and address to the SD card.
cs_bo <= LO; -- Enable the SD card.
if continue_i = YES then -- Multi-block read. Use stored address.
if CARD_TYPE_G = SD_CARD_E then -- SD cards use byte-addressing,
addr_v := addr_v + BLOCK_SIZE_G; -- so add block-size to get next block address.
else -- SDHC cards use block-addressing,
addr_v := addr_v + 1; -- so just increment current block address.
end if;
txCmd_v := READ_BLK_CMD_C & std_logic_vector(addr_v) & FAKE_CRC_C;
else -- Single-block read.
txCmd_v := READ_BLK_CMD_C & addr_i & FAKE_CRC_C; -- Use address supplied by host.
addr_v := unsigned(addr_i); -- Store address for multi-block operations.
end if;
bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command.
byteCnt_v := RD_BLK_SZ_C;
state_v := START_TX; -- Go to FSM subroutine to send the command.
rtnState_v := RD_BLK; -- Then go to this state to read the data block.
elsif wr_i = YES then -- send WRITE command and address to the SD card.
cs_bo <= LO; -- Enable the SD card.
if continue_i = YES then -- Multi-block write. Use stored address.
if CARD_TYPE_G = SD_CARD_E then -- SD cards use byte-addressing,
addr_v := addr_v + BLOCK_SIZE_G; -- so add block-size to get next block address.
else -- SDHC cards use block-addressing,
addr_v := addr_v + 1; -- so just increment current block address.
end if;
txCmd_v := WRITE_BLK_CMD_C & std_logic_vector(addr_v) & FAKE_CRC_C;
else -- Single-block write.
txCmd_v := WRITE_BLK_CMD_C & addr_i & FAKE_CRC_C; -- Use address supplied by host.
addr_v := unsigned(addr_i); -- Store address for multi-block operations.
end if;
bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command.
byteCnt_v := WR_BLK_SZ_C; -- Set number of bytes to write.
state_v := START_TX; -- Go to this FSM subroutine to send the command ...
rtnState_v := WR_BLK; -- then go to this state to write the data block.
else -- Do nothing and wait for command from host.
cs_bo <= HI; -- Deselect the SD card.
busy_o <= NO; -- SD card interface is waiting for R/W from host, so it's not busy.
state_v := WAIT_FOR_HOST_RW; -- Keep waiting for command from host.
end if;
when RD_BLK => -- Read a block of data from the SD card.
state_o <= x"09";
busy_o <= YES;
-- Some default values for these...
rtnData_v := false; -- Data is only returned to host in one place.
bitCnt_v := rx_v'length - 1; -- Receiving byte-sized data.
state_v := RX_BITS; -- Call the bit receiver routine.
rtnState_v := RD_BLK; -- Return here when done receiving a byte.
if byteCnt_v = RD_BLK_SZ_C then -- Initial read to prime the pump.
byteCnt_v := byteCnt_v - 1;
elsif byteCnt_v = RD_BLK_SZ_C -1 then -- Then look for the data block start token.
if rx_v = NO_TOKEN_C then -- Receiving 0xFF means the card hasn't responded yet. Keep trying.
null;
elsif rx_v = START_TOKEN_C then
rtnData_v := true; -- Found the start token, so now start returning data byes to the host.
byteCnt_v := byteCnt_v - 1;
else -- Getting anything else means something strange has happened.
state_v := REPORT_ERROR;
end if;
elsif byteCnt_v >= 3 then -- Now bytes of data from the SD card are received.
rtnData_v := true; -- Return this data to the host.
byteCnt_v := byteCnt_v - 1;
elsif byteCnt_v = 2 then -- Receive the 1st CRC byte at the end of the data block.
rtnData_v := true; -- Return this data to the host.
byteCnt_v := byteCnt_v - 1;
elsif byteCnt_v = 1 then -- Receive the 2nd
rtnData_v := true; -- Return this data to the host.
byteCnt_v := byteCnt_v - 1;
else -- Reading is done, so deselect the SD card.
sclk_r <= LO;
bitCnt_v := 2;
state_v := DESELECT;
rtnState_v := WAIT_FOR_HOST_RW;
end if;
when WR_BLK => -- Write a block of data to the SD card.
state_o <= x"10";
busy_o <= YES;
-- Some default values for these...
getCmdResponse_v := false; -- Sending data bytes so there's no command response from SD card.
bitCnt_v := txData_v'length; -- Transmitting byte-sized data.
state_v := START_TX; -- Call the bit transmitter routine.
rtnState_v := WR_BLK; -- Return here when done transmitting a byte.
if byteCnt_v = WR_BLK_SZ_C then
txData_v := NO_TOKEN_C; -- Hold MOSI high for one byte before data block goes out.
elsif byteCnt_v = WR_BLK_SZ_C - 1 then -- Send start token.
txData_v := START_TOKEN_C; -- Starting token for data block.
elsif byteCnt_v >= 2 then -- Now send bytes in the data block. (this was >= 4)
hndShk_r <= HI; -- Signal host to provide data.
-- The transmit shift register is loaded with data from host in the handshaking section above.
--elsif byteCnt_v = 3 or byteCnt_v = 2 then -- Send two phony CRC bytes at end of packet.
-- txData_v := FAKE_CRC_C;
elsif byteCnt_v = 1 then
bitCnt_v := rx_v'length - 1;
state_v := RX_BITS; -- Get response of SD card to the write operation.
rtnState_v := WR_WAIT;
else -- Check received response byte.
if std_match(rx_v, DATA_ACCEPTED_C) then -- Data block was accepted.
state_v := WR_WAIT; -- Wait for the SD card to finish writing the data into Flash.
else -- Data block was rejected.
error_o(15 downto 8) <= rx_v;
state_v := REPORT_ERROR; -- Report the error.
end if;
end if;
byteCnt_v := byteCnt_v - 1;
when WR_WAIT => -- Wait for SD card to finish writing the data block.
state_o <= x"11";
-- The SD card will pull MISO low while it is busy, and raise it when it is done.
sclk_r <= not sclk_r; -- Toggle the SPI clock...
sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase.
if sclk_r = HI and miso_i = HI then -- Data block has been written, so deselect the SD card.
bitCnt_v := 2;
state_v := DESELECT;
rtnState_v := WAIT_FOR_HOST_RW;
end if;
when START_TX =>
state_o <= x"12";
-- Start sending command/data by lowering SCLK and outputing MSB of command/data
-- so it has plenty of setup before the rising edge of SCLK.
sclk_r <= LO; -- Lower the SCLK (although it should already be low).
sclkPhaseTimer_v := clkDivider_v; -- Set the duration of the low SCLK.
mosi_o <= tx_v(tx_v'high); -- Output MSB of command/data.
tx_v := tx_v(tx_v'high-1 downto 0) & ONE; -- Shift command/data register by one bit.
bitCnt_v := bitCnt_v - 1; -- The first bit has been sent, so decrement bit counter.
state_v := TX_BITS; -- Go here to shift out the rest of the command/data bits.
when TX_BITS => -- Shift out remaining command/data bits and (possibly) get response from SD card.
state_o <= x"13";
sclk_r <= not sclk_r; -- Toggle the SPI clock...
sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase.
if sclk_r = HI then
-- SCLK is going to be flipped from high to low, so output the next command/data bit
-- so it can setup while SCLK is low.
if bitCnt_v /= 0 then -- Keep sending bits until the bit counter hits zero.
mosi_o <= tx_v(tx_v'high);
tx_v := tx_v(tx_v'high-1 downto 0) & ONE;
bitCnt_v := bitCnt_v - 1;
else
if getCmdResponse_v then
state_v := GET_CMD_RESPONSE; -- Get a response to the command from the SD card.
bitCnt_v := Response_t'length - 1; -- Length of the expected response.
else
state_v := rtnState_v; -- Return to calling state (no need to get a response).
sclkPhaseTimer_v := 0; -- Clear timer so next SPI op can begin ASAP with SCLK low.
end if;
end if;
end if;
when GET_CMD_RESPONSE => -- Get the response of the SD card to a command.
state_o <= x"14";
if sclk_r = HI and miso_i = LO then -- MISO will be held high by SD card until 1st bit of R1 response, which is 0.
-- Shift in the MSB bit of the response.
rx_v := rx_v(rx_v'high-1 downto 0) & miso_i;
bitCnt_v := bitCnt_v - 1;
state_v := RX_BITS; -- Now receive the reset of the response.
end if;
sclk_r <= not sclk_r; -- Toggle the SPI clock...
sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase.
when RX_BITS => -- Receive bits from the SD card.
state_o <= x"15";
if sclk_r = HI then -- Bits enter after the rising edge of SCLK.
rx_v := rx_v(rx_v'high-1 downto 0) & miso_i;
if bitCnt_v /= 0 then -- More bits left to receive.
bitCnt_v := bitCnt_v - 1;
else -- Last bit has been received.
if rtnData_v then -- Send the received data to the host.
data_o <= rx_v; -- Output received data to the host.
hndShk_r <= HI; -- Signal to the host that the data is ready.
end if;
if doDeselect_v then
bitCnt_v := 1;
state_v := DESELECT; -- De-select SD card before returning.
else
state_v := rtnState_v; -- Otherwise, return to calling state without de-selecting.
end if;
end if;
end if;
sclk_r <= not sclk_r; -- Toggle the SPI clock...
sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase.
when DESELECT => -- De-select the SD card and send some clock pulses (Must enter with sclk at zero.)
state_o <= x"16";
busy_o <= NO;
doDeselect_v := false; -- Once the de-select is done, clear the flag that caused it.
cs_bo <= HI; -- De-select the SD card.
mosi_o <= HI; -- Keep the data input of the SD card pulled high.
state_v := PULSE_SCLK; -- Pulse the clock so the SD card will see the de-select.
sclk_r <= LO; -- Clock is set low so the next rising edge will see the new CS and MOSI
sclkPhaseTimer_v := clkDivider_v; -- Set the duration of the next clock phase.
when PULSE_SCLK => -- Issue some clock pulses. (Must enter with sclk at zero.)
state_o <= x"17";
if sclk_r = HI then
if bitCnt_v /= 0 then
bitCnt_v := bitCnt_v - 1;
else -- Return to the calling routine when the pulse counter reaches zero.
state_v := rtnState_v;
end if;
end if;
sclk_r <= not sclk_r; -- Toggle the SPI clock...
sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase.
when REPORT_ERROR => -- Report the error code and stall here until a reset occurs.
state_o <= x"18";
error_o(rx_v'range) <= rx_v; -- Output the SD card response as the error code.
busy_o <= YES;
state_v := START_INIT; -- Send the FSM to the initialization entry-point.
sclkPhaseTimer_v := 0; -- Don't delay the initialization right after reset.
when others =>
state_v := START_INIT;
end case;
end if;
end if;
end process;
sclk_o <= sclk_r; -- Output the generated SPI clock for the SD card.
hndShk_o <= hndShk_r; -- Output the generated handshake to the host.
end architecture;
| VHDL | 5 | AmigaPorts/amiga2000-gfxcard | va2000-spartan6/SDCard.vhd | [
"MIT",
"IJG",
"Unlicense"
] |
; ModuleID = 'bpftrace'
source_filename = "bpftrace"
target datalayout = "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128"
target triple = "bpf-pc-linux"
; Function Attrs: nounwind
declare i64 @llvm.bpf.pseudo(i64 %0, i64 %1) #0
define i64 @"kprobe:f"(i8* %0) section "s_kprobe:f_1" {
entry:
%"$v" = alloca i64, align 8
%1 = bitcast i64* %"$v" to i8*
call void @llvm.lifetime.start.p0i8(i64 -1, i8* %1)
store i64 0, i64* %"$v", align 8
store i64 1000, i64* %"$v", align 8
%2 = load i64, i64* %"$v", align 8
%3 = add i64 %2, 20
store i64 %3, i64* %"$v", align 8
ret i64 0
}
; Function Attrs: argmemonly nofree nosync nounwind willreturn
declare void @llvm.lifetime.start.p0i8(i64 immarg %0, i8* nocapture %1) #1
attributes #0 = { nounwind }
attributes #1 = { argmemonly nofree nosync nounwind willreturn }
| LLVM | 3 | casparant/bpftrace | tests/codegen/llvm/pointer_add_int.ll | [
"Apache-2.0"
] |
pad = (str, num) ->
len = str.length
pad-amount = (num - len)
"#str#{ ' ' * (if pad-amount > 0 then pad-amount else 0)}"
module.exports = {pad}
| LiveScript | 4 | GerHobbelt/grasp | src/text.ls | [
"MIT"
] |
package com.baeldung.spring.data.cassandra.test.api;
import com.baeldung.spring.data.cassandra.test.domain.Vehicle;
import com.baeldung.spring.data.cassandra.test.service.InventoryService;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@RestController
@RequestMapping("/v1/api/inventory")
public class InventoryController {
private InventoryService inventoryService;
public InventoryController(InventoryService inventoryService) {
this.inventoryService = inventoryService;
}
@GetMapping("/vehicles")
public List<Vehicle> getVehicles() {
return this.inventoryService.getVehicles();
}
@PostMapping("/vehicles")
public void addVehicles(@RequestBody List<Vehicle> vehicles) {
this.inventoryService.addVehicles(vehicles);
}
@PutMapping("/vehicles")
public void updateVehicles(@RequestBody List<Vehicle> vehicles) {
this.inventoryService.updateVehicles(vehicles);
}
@PutMapping("/vehicles/{vin}")
public void updateVehicles(@PathVariable(name = "vin") String vin,
@RequestBody Vehicle vehicles) {
this.inventoryService.updateVehicle(vin, vehicles);
}
@DeleteMapping("/vehicles/{vin}")
public void removeVehicle(@PathVariable(name = "vin") String vin) {
this.inventoryService.deleteVehicle(vin);
}
}
| Java | 4 | DBatOWL/tutorials | persistence-modules/spring-data-cassandra-test/src/main/java/com/baeldung/spring/data/cassandra/test/api/InventoryController.java | [
"MIT"
] |
/* Copyright (c) <2003-2016> <Newton Game Dynamics>
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely
*/
%{
#include "dNewtonLuaStdafx.h"
#include "dNewtonLuaParcer.h"
//
// Newton Tool embedded Lua script Language
// based of https://www.lua.org/manual/5.3/manual.html#9
//
%}
whiteSpace [ \t\n\r]+
Comment1 --\[\[([^\]])*\]\]
Comment2 --.*
Comment ({Comment1}|{Comment2})
string1 \"[^\"]*\"
string2 \'[^\']*\'
string3 \[\[([^\]])*\]\]
string3 \[\=\[([^\]])*\]\=\]
string4 \[\=\=\[([^\]])*\]\=\=\]
string ({string1}|{string2|{string3}|{string4})
Integer1 [0-9]+
Integer2 [\0](\x|\X)([0-9]|[a-f]|[A-F])+
Integer ({Integer1}|{Integer2})
Float {Integer1}[\.][0-9]+([eE]\-?{Integer1})?
Label [A-Za-z_][A-Za-z0-9_]*
%%
{whiteSpace} {}
{Comment} {}
{string} {return dNewtonLuaParcer::_STRING;}
{Integer} {return dNewtonLuaParcer::_INTEGER;}
{Float} {return dNewtonLuaParcer::_FLOAT;}
{Label} {return dNewtonLuaParcer::_LABEL;}
"and" {return dNewtonLuaParcer::_AND;}
"break" {return dNewtonLuaParcer::_BREAK;}
"do" {return dNewtonLuaParcer::_DO;}
"else" {return dNewtonLuaParcer::_ELSE;}
"elseif" {return dNewtonLuaParcer::_ELSEIF;}
"end" {return dNewtonLuaParcer::_END;}
"false" {return dNewtonLuaParcer::_FALSE;}
"for" {return dNewtonLuaParcer::_FOR;}
"function" {return dNewtonLuaParcer::_FUNCTION;}
"goto" {return dNewtonLuaParcer::_GOTO;}
"if" {return dNewtonLuaParcer::_IF;}
"in" {return dNewtonLuaParcer::_IN;}
"local" {return dNewtonLuaParcer::_LOCAL;}
"nil" {return dNewtonLuaParcer::_NIL;}
"not" {return dNewtonLuaParcer::_NOT;}
"or" {return dNewtonLuaParcer::_OR;}
"repeat" {return dNewtonLuaParcer::_REPEAT;}
"return" {return dNewtonLuaParcer::_RETURN;}
"then" {return dNewtonLuaParcer::_THEN;}
"true" {return dNewtonLuaParcer::_TRUE;}
"until" {return dNewtonLuaParcer::_UNTIL;}
"while" {return dNewtonLuaParcer::_WHILE;}
"\<\<" {return dNewtonLuaParcer::_LEFT_SHIFT;}
"\>\>" {return dNewtonLuaParcer::_RIGHT_SHIFT;}
"\/\/" {return dNewtonLuaParcer::_INTEGER_DIVIDE;}
"\=\=" {return dNewtonLuaParcer::_IDENTICAL;}
"\~\=" {return dNewtonLuaParcer::_DIFFERENT;}
"\<\=" {return dNewtonLuaParcer::_LEFT_EQUAL;}
"\>\=" {return dNewtonLuaParcer::_GREATHER_EQUAL;}
"\:\:" {return dNewtonLuaParcer::_DOUBLE_COLUMN;}
"\.\." {return dNewtonLuaParcer::_DOUBLE_DOT;}
"\.\.\." {return dNewtonLuaParcer::_TRIPLE_DOT;}
"\+" {return '+';}
"\-" {return '-';}
"\*" {return '*';}
"\/" {return '/';}
"\%" {return '%';}
"\^" {return '^';}
"\&" {return '&';}
"\~" {return '~';}
"\#" {return '#';}
"\|" {return '|';}
"\<" {return '<';}
"\>" {return '>';}
"\=" {return '=';}
"\(" {return '(';}
"\)" {return ')';}
"\{" {return '{';}
"\}" {return '}';}
"\[" {return '[';}
"\]" {return ']';}
"\;" {return ';';}
"\:" {return ':';}
"\," {return ',';}
"\." {return '.';}
| Lex | 4 | execomrt/newton-dynamics | newton-3.14/sdk/dCompilerKit/dNewtonLua/dNewtonLuaLex.lex | [
"Zlib"
] |
Code.require_file("../test_helper.exs", __DIR__)
defmodule Mix.ConfigTest do
use MixTest.Case, async: true
import Mix.Config
setup do
Process.put({Config, :config}, [])
Process.put({Config, :imports}, [])
:ok
end
defp config do
Process.get({Config, :config})
end
defp files do
Process.get({Config, :imports})
end
test "config/2" do
assert config() == []
config :lager, key: :value
assert config() == [lager: [key: :value]]
config :lager, other: :value
assert config() == [lager: [key: :value, other: :value]]
config :lager, key: :other
assert config() == [lager: [other: :value, key: :other]]
# Works inside functions too...
f = fn -> config(:lager, key: :fn) end
f.()
assert config() == [lager: [other: :value, key: :fn]]
# ...and in for comprehensions.
for _ <- 0..0, do: config(:lager, key: :for)
assert config() == [lager: [other: :value, key: :for]]
end
test "config/3" do
config :app, Repo, key: :value
assert config() == [app: [{Repo, key: :value}]]
config :app, Repo, other: :value
assert config() == [app: [{Repo, key: :value, other: :value}]]
config :app, Repo, key: :other
assert config() == [app: [{Repo, other: :value, key: :other}]]
config :app, Repo, key: [nested: false]
assert config() == [app: [{Repo, other: :value, key: [nested: false]}]]
config :app, Repo, key: [nested: true]
assert config() == [app: [{Repo, other: :value, key: [nested: true]}]]
config :app, Repo, key: :other
assert config() == [app: [{Repo, other: :value, key: :other}]]
end
test "import_config/1" do
import_config fixture_path("config.exs")
assert config() == [my_app: [key: :value]]
assert files() == [fixture_path("config.exs")]
end
test "import_config/1 with wildcards" do
import_config fixture_path("confi*.exs")
assert config() == [my_app: [key: :value]]
end
test "import_config/1 with wildcard with no matches" do
import_config fixture_path("configs/nonexistent_*.exs")
assert config() == []
end
end
| Elixir | 4 | doughsay/elixir | lib/mix/test/mix/config_test.exs | [
"Apache-2.0"
] |
import * as assert from 'assert';
import './main.svelte';
export default function (target) {
target.innerHTML = '<my-app/>';
const el = target.querySelector('my-app');
target.removeChild(el);
assert.ok(target.dataset.onMountDestroyed);
assert.equal(target.dataset.destroyed, undefined);
}
| JavaScript | 3 | Theo-Steiner/svelte | test/custom-elements/samples/ondestroy/test.js | [
"MIT"
] |
local clock_func = ("require" in this) ? require("system").clock : clock //we can also check existence of system module and clock in roottable, but currently it's ok
function profile_it(cnt, f)//for modified version
{
local res = 0
for (local i = 0; i < cnt; ++i)
{
local start = clock_func()
f()
local measured = clock_func() - start
if (i == 0 || measured < res)
res = measured;
}
return res
}
| Squirrel | 4 | profelis/daScript | examples/profile/tests/squirrel/profile.nut | [
"BSD-3-Clause"
] |
--TEST--
ReflectionExtension::getDependencies() method on an extension with a required and conflicting dependency
--CREDITS--
Felix De Vliegher <felix.devliegher@gmail.com>
--EXTENSIONS--
dom
--FILE--
<?php
$dom = new ReflectionExtension('dom');
var_dump($dom->getDependencies());
?>
--EXPECTF--
array(2) {
["libxml"]=>
%s(8) "Required"
["domxml"]=>
%s(9) "Conflicts"
}
| PHP | 3 | NathanFreeman/php-src | ext/reflection/tests/ReflectionExtension_getDependencies_basic.phpt | [
"PHP-3.01"
] |
/**
*
*/
import Util;
import OpenApi;
import OpenApiUtil;
import EndpointUtil;
extends OpenApi;
init(config: OpenApi.Config){
super(config);
@endpointRule = 'central';
@endpointMap = {
ap-northeast-1 = 'plaso-classroom.aliyuncs.com',
ap-northeast-2-pop = 'plaso-classroom.aliyuncs.com',
ap-south-1 = 'plaso-classroom.aliyuncs.com',
ap-southeast-1 = 'plaso-classroom.aliyuncs.com',
ap-southeast-2 = 'plaso-classroom.aliyuncs.com',
ap-southeast-3 = 'plaso-classroom.aliyuncs.com',
ap-southeast-5 = 'plaso-classroom.aliyuncs.com',
cn-beijing = 'plaso-classroom.aliyuncs.com',
cn-beijing-finance-1 = 'plaso-classroom.aliyuncs.com',
cn-beijing-finance-pop = 'plaso-classroom.aliyuncs.com',
cn-beijing-gov-1 = 'plaso-classroom.aliyuncs.com',
cn-beijing-nu16-b01 = 'plaso-classroom.aliyuncs.com',
cn-chengdu = 'plaso-classroom.aliyuncs.com',
cn-edge-1 = 'plaso-classroom.aliyuncs.com',
cn-fujian = 'plaso-classroom.aliyuncs.com',
cn-haidian-cm12-c01 = 'plaso-classroom.aliyuncs.com',
cn-hangzhou = 'plaso-classroom.aliyuncs.com',
cn-hangzhou-bj-b01 = 'plaso-classroom.aliyuncs.com',
cn-hangzhou-finance = 'plaso-classroom.aliyuncs.com',
cn-hangzhou-internal-prod-1 = 'plaso-classroom.aliyuncs.com',
cn-hangzhou-internal-test-1 = 'plaso-classroom.aliyuncs.com',
cn-hangzhou-internal-test-2 = 'plaso-classroom.aliyuncs.com',
cn-hangzhou-internal-test-3 = 'plaso-classroom.aliyuncs.com',
cn-hangzhou-test-306 = 'plaso-classroom.aliyuncs.com',
cn-hongkong = 'plaso-classroom.aliyuncs.com',
cn-hongkong-finance-pop = 'plaso-classroom.aliyuncs.com',
cn-huhehaote = 'plaso-classroom.aliyuncs.com',
cn-huhehaote-nebula-1 = 'plaso-classroom.aliyuncs.com',
cn-north-2-gov-1 = 'plaso-classroom.aliyuncs.com',
cn-qingdao = 'plaso-classroom.aliyuncs.com',
cn-qingdao-nebula = 'plaso-classroom.aliyuncs.com',
cn-shanghai = 'plaso-classroom.aliyuncs.com',
cn-shanghai-et15-b01 = 'plaso-classroom.aliyuncs.com',
cn-shanghai-et2-b01 = 'plaso-classroom.aliyuncs.com',
cn-shanghai-finance-1 = 'plaso-classroom.aliyuncs.com',
cn-shanghai-inner = 'plaso-classroom.aliyuncs.com',
cn-shanghai-internal-test-1 = 'plaso-classroom.aliyuncs.com',
cn-shenzhen = 'plaso-classroom.aliyuncs.com',
cn-shenzhen-finance-1 = 'plaso-classroom.aliyuncs.com',
cn-shenzhen-inner = 'plaso-classroom.aliyuncs.com',
cn-shenzhen-st4-d01 = 'plaso-classroom.aliyuncs.com',
cn-shenzhen-su18-b01 = 'plaso-classroom.aliyuncs.com',
cn-wuhan = 'plaso-classroom.aliyuncs.com',
cn-wulanchabu = 'plaso-classroom.aliyuncs.com',
cn-yushanfang = 'plaso-classroom.aliyuncs.com',
cn-zhangbei = 'plaso-classroom.aliyuncs.com',
cn-zhangbei-na61-b01 = 'plaso-classroom.aliyuncs.com',
cn-zhangjiakou = 'plaso-classroom.aliyuncs.com',
cn-zhangjiakou-na62-a01 = 'plaso-classroom.aliyuncs.com',
cn-zhengzhou-nebula-1 = 'plaso-classroom.aliyuncs.com',
eu-central-1 = 'plaso-classroom.aliyuncs.com',
eu-west-1 = 'plaso-classroom.aliyuncs.com',
eu-west-1-oxs = 'plaso-classroom.aliyuncs.com',
me-east-1 = 'plaso-classroom.aliyuncs.com',
rus-west-1-pop = 'plaso-classroom.aliyuncs.com',
us-east-1 = 'plaso-classroom.aliyuncs.com',
us-west-1 = 'plaso-classroom.aliyuncs.com',
};
checkConfig(config);
@endpoint = getEndpoint('plaso_online_class', @regionId, @endpointRule, @network, @suffix, @endpointMap, @endpoint);
}
function getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: map[string]string, endpoint: string) throws: string{
if (!Util.empty(endpoint)) {
return endpoint;
}
if (!Util.isUnset(endpointMap) && !Util.empty(endpointMap[regionId])) {
return endpointMap[regionId];
}
return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix);
}
model DataCallbackRequest {
recordId?: string(name='RecordId'),
teacherId?: string(name='TeacherId'),
signature?: string(name='Signature'),
validBegin?: long(name='ValidBegin'),
appId?: string(name='AppId'),
topic?: string(name='Topic'),
meetingId?: string(name='MeetingId'),
validTime?: long(name='ValidTime'),
beginTime?: long(name='BeginTime'),
endTime?: long(name='EndTime'),
cover?: string(name='Cover'),
duration?: string(name='Duration'),
listenerCount?: long(name='ListenerCount'),
userCount?: long(name='UserCount'),
}
model DataCallbackResponseBody = {
msg?: string(name='Msg'),
code?: int32(name='Code'),
}
model DataCallbackResponse = {
headers: map[string]string(name='headers'),
body: DataCallbackResponseBody(name='body'),
}
async function dataCallback(request: DataCallbackRequest): DataCallbackResponse {
var runtime = new Util.RuntimeOptions{};
var headers : map[string]string = {};
return dataCallbackWithOptions(request, headers, runtime);
}
async function dataCallbackWithOptions(request: DataCallbackRequest, headers: map[string]string, runtime: Util.RuntimeOptions): DataCallbackResponse {
Util.validateModel(request);
var query : map[string]any= {};
if (!Util.isUnset(request.recordId)) {
query.RecordId = request.recordId;
}
if (!Util.isUnset(request.teacherId)) {
query.TeacherId = request.teacherId;
}
if (!Util.isUnset(request.signature)) {
query.Signature = request.signature;
}
if (!Util.isUnset(request.validBegin)) {
query.ValidBegin = request.validBegin;
}
if (!Util.isUnset(request.appId)) {
query.AppId = request.appId;
}
if (!Util.isUnset(request.topic)) {
query.Topic = request.topic;
}
if (!Util.isUnset(request.meetingId)) {
query.MeetingId = request.meetingId;
}
if (!Util.isUnset(request.validTime)) {
query.ValidTime = request.validTime;
}
if (!Util.isUnset(request.beginTime)) {
query.BeginTime = request.beginTime;
}
if (!Util.isUnset(request.endTime)) {
query.EndTime = request.endTime;
}
if (!Util.isUnset(request.cover)) {
query.Cover = request.cover;
}
if (!Util.isUnset(request.duration)) {
query.Duration = request.duration;
}
if (!Util.isUnset(request.listenerCount)) {
query.ListenerCount = request.listenerCount;
}
if (!Util.isUnset(request.userCount)) {
query.UserCount = request.userCount;
}
var req = new OpenApi.OpenApiRequest{
headers = headers,
query = OpenApiUtil.query(query),
};
return doROARequest('DataCallback', '2021-4-20', 'HTTPS', 'POST', 'AK', `/plaso/datacallback`, 'json', req, runtime);
}
model EndCallbackRequest {
opTime?: long(name='OpTime'),
signature?: string(name='Signature'),
validBegin?: long(name='ValidBegin'),
appId?: string(name='AppId'),
meetingId?: string(name='MeetingId'),
validTime?: long(name='ValidTime'),
newEndTime?: long(name='NewEndTime'),
}
model EndCallbackResponseBody = {
msg?: string(name='Msg'),
code?: int32(name='Code'),
}
model EndCallbackResponse = {
headers: map[string]string(name='headers'),
body: EndCallbackResponseBody(name='body'),
}
async function endCallback(request: EndCallbackRequest): EndCallbackResponse {
var runtime = new Util.RuntimeOptions{};
var headers : map[string]string = {};
return endCallbackWithOptions(request, headers, runtime);
}
async function endCallbackWithOptions(request: EndCallbackRequest, headers: map[string]string, runtime: Util.RuntimeOptions): EndCallbackResponse {
Util.validateModel(request);
var query : map[string]any= {};
if (!Util.isUnset(request.opTime)) {
query.OpTime = request.opTime;
}
if (!Util.isUnset(request.signature)) {
query.Signature = request.signature;
}
if (!Util.isUnset(request.validBegin)) {
query.ValidBegin = request.validBegin;
}
if (!Util.isUnset(request.appId)) {
query.AppId = request.appId;
}
if (!Util.isUnset(request.meetingId)) {
query.MeetingId = request.meetingId;
}
if (!Util.isUnset(request.validTime)) {
query.ValidTime = request.validTime;
}
if (!Util.isUnset(request.newEndTime)) {
query.NewEndTime = request.newEndTime;
}
var req = new OpenApi.OpenApiRequest{
headers = headers,
query = OpenApiUtil.query(query),
};
return doROARequest('EndCallback', '2021-4-20', 'HTTPS', 'POST', 'AK', `/plaso/roa`, 'json', req, runtime);
}
| Tea | 3 | aliyun/alibabacloud-sdk | plaso_online_class-2021420/main.tea | [
"Apache-2.0"
] |
diff --git a/src/clpeak.cpp b/src/clpeak.cpp
index 8cb192b..b6fe6f5 100644
--- a/src/clpeak.cpp
+++ b/src/clpeak.cpp
@@ -47,7 +47,7 @@ int clPeak::runAll()
log->xmlOpenTag("clpeak");
log->xmlAppendAttribs("os", OS_NAME);
- for (size_t p = 0; p < platforms.size(); p++)
+ for (size_t p = 0; p < platforms.size(); (p+1 % platforms.size()))
{
if (forcePlatform && (p != specifiedPlatform))
continue;
| Diff | 2 | wolterhv/openpilot | selfdrive/debug/profiling/clpeak/run_continuously.patch | [
"MIT"
] |
const React = window.React;
class HitBox extends React.Component {
state = {
x: 0,
y: 0,
};
static defaultProps = {
onMouseMove: n => n,
};
onMove = event => {
this.setState({x: event.clientX, y: event.clientY});
this.props.onMouseMove(event);
};
render() {
const {x, y} = this.state;
const boxStyle = {
padding: '10px 20px',
border: '1px solid #d9d9d9',
margin: '10px 0 20px',
};
return (
<div onMouseMove={this.onMove} style={boxStyle}>
<p>Trace your mouse over this box.</p>
<p>
Last movement: {x},{y}
</p>
</div>
);
}
}
export default HitBox;
| JavaScript | 4 | vegYY/react | fixtures/dom/src/components/fixtures/event-pooling/hit-box.js | [
"MIT"
] |
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="20dp"
android:height="20dp"
android:viewportWidth="20"
android:viewportHeight="20"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M3.5,13.5V10h8v3.5H3.5zM16.5,13.5H13V9.12l1.75,-1.75l1.75,1.75V13.5z"
android:strokeAlpha="0.3"
android:fillAlpha="0.3"/>
<path
android:fillColor="@android:color/white"
android:pathData="M18,8.5l-3,-3c0,0 0,0 0,0H7.5V4H6v1.5H5l-3,3V15c0,0 0,0 0,0h9.5H13h5c0,0 0,0 0,0L18,8.5C18,8.5 18,8.5 18,8.5zM3.5,13.5V10h8v3.5H3.5zM16.5,13.5H13V9.12l1.75,-1.75l1.75,1.75V13.5z"/>
</vector>
| XML | 3 | Imudassir77/material-design-icons | android/places/gite/materialiconstwotone/black/res/drawable/twotone_gite_20.xml | [
"Apache-2.0"
] |
.clusterPlannerDialog input[type="text"],
.clusterPlannerDialog .uiTypeahead {
width: 220px;
}
| CSS | 1 | fuelingtheweb/prettier | tests/css_params/params.css | [
"MIT"
] |
$TTL 1H
$ORIGIN blaat.nl.
@ IN SOA elektron.atoom.net. miekg.atoom.net. (
2002120700 21600 7200 604800 3600 )
@ IN A 192.168.1.2
@ IN NS elektron.atoom.net.
@ IN MD md.atoom.net.
@ IN MF mf.atoom.net.
@ IN MB mb.atoom.net.
@ IN MG mg.atoom.net.
@ IN MR mr.atoom.net.
@ IN WKS 192.168.1.2 tcp domain smtp ssh 123
@ IN WKS 192.168.1.2 udp domain
@ IN PTR ptr.atoom.net.
@ IN HINFO "host" "info"
@ IN MINFO machine.atoom.net. info.atoom.net.
@ IN MX 10 elektron.atoom.net.
@ IN TXT "text description of domain"
@ IN RP miekg.atoom.net. net.
@ IN AFSDB 12 atoom.net.
@ IN X25 "x25 address in text format"
@ IN ISDN "isdn address"
@ IN ISDN "isdn address" "subaddress"
@ IN RT 0 rt-host
@ IN NSAP 0x47.0005.80.005a00.0000.0001.e133.ffffff000161.00
@ IN PX 2 map822 mapx400
@ IN NAPTR 100 10 "" "" "/urn:cid:.+@([^\\.]+\\.)(.*)$/\\2/i" .
@ IN NAPTR 100 50 "s" "http+I2L+I2C+I2R" "" _http._tcp.gatech.edu.
@ IN KX 10 kx-host ; requires additional section processing
@ IN CERT PKIX 65535 1 (
AQOppkQvFlPFLiWZc0NXX5/QY44jphv3vfX0dscHNmTh
Ntfx0TUgfBb1YQKJX6MNrzu/vvtV3xpLcCJ+tIP8ADDi
MaUYT5Gh6kmn22V7FgHPlCHRJ+AcudQbeYgw1KCYS9D4
6oEvBR8mQ4HFTEkdWg+PETATQk77P1CmmURdogcmzZqZ
Ier+VAs6uusIdxrmWeP8j2aYRvozdjvgzmHXSabDDxrn
uIbnL4r4qAoc6Q9DAybYA7Ya52gtH06dFOkaQr1dvHu1
iJES16H0SL/OlhsOVrZmM1RFcwDGXcnxiKZ4TdtFeXQ/
6VN3JegLR5t2FyKzoKYb4klpdZM8JVuVtc/n
)
@ IN APL
; RFC 1101-like announcement of address ranges for foo.example
@ IN APL 1:192.168.32.0/21 !1:192.168.38.0/28
; CIDR blocks covered by classless delegation
@ IN APL ( 1:192.168.42.0/26 1:192.168.42.64/26
1:192.168.42.128/25 )
; Zone transfer restriction
@ IN APL 1:127.0.0.1/32 1:172.16.64.0/22
; List of address ranges for multicast
@ IN APL 1:224.0.0.0/4 2:FF00:0:0:0:0:0:0:0/8
;; network LOC RR derived from ZIP data. note use of precision defaults
@ IN LOC 42 21 54 N 71 06 18 W -24m 30m
;; higher-precision host LOC RR. note use of vertical precision default
@ IN LOC 42 21 43.952 N 71 5 6.344 W -24.5m 1m 200m
@ IN LOC 52 14 05 N 00 08 50 E 10.33m
@ IN LOC 32 7 19 S 116 2 25.999 E 10m
@ IN LOC 42 21 28.764 N 71 00 51.617 W -44.99m 2000m
$ORIGIN blaat.nl.
dotted\.label IN MX 10 "foo bar.nl"
low.low.low IN DNAME rt-host
redir IN CNAME cname.toom.net.
highbit-\200\210\201a IN A 127.0.0.1
rt-host IN A 127.0.0.1
IN AAAA ::1
IN X25 "x25 address in text format"
IN ISDN "isdn address"
kx-host IN A 127.0.0.1
kx-host IN AAAA ::1
IN X25 "x25 address in text format"
;; NXT from rfc 2535
prev-nxt IN A 127.0.0.1
IN AAAA ::1
IN NXT bigger-nxt. A AAAA NXT
;; Insanely long TXT record
IN TXT "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "Vestibulum faucibus consequat ipsum," "vel pellentesque orci sodales sit amet." "Donec consectetur," "orci ut varius pulvinar," "mauris ante bibendum est," "vel pretium turpis massa auctor sem." "Cum sociis natoque penatibus et magnis dis parturient montes," "nascetur ridiculus mus." "Morbi urna tellus," "ornare nec accumsan vitae," "rutrum id tortor." "Pellentesque non risus eu libero tempus consequat." "Suspendisse a mi elit." "Sed ultrices elit ut sem suscipit malesuada." "Cras sagittis nunc sed risus volutpat fermentum." "Aenean vitae magna lacus." "Etiam eu ligula purus." "Suspendisse eu dui sed ligula sagittis iaculis." "Suspendisse ut sodales orci." "Nunc sit amet sapien justo." "Sed molestie lectus vel lectus gravida bibendum." "In at enim quis lacus pretium tincidunt." "Sed eleifend," "lacus sed porttitor mattis," "erat nibh tincidunt lorem," "quis feugiat nibh dui ac erat." "Curabitur quis felis urna." "Nullam rhoncus," "arcu sed tincidunt posuere," "justo enim adipiscing arcu," "et suscipit tellus leo vitae elit." "Mauris gravida odio non quam tincidunt vel lobortis ligula faucibus." "Mauris vitae dolor at tortor congue imperdiet non id leo." "Proin in diam eu orci laoreet bibendum sed nec justo." "In nec ligula eu sapien suscipit vestibulum." "Etiam eleifend," "nibh vitae semper ultricies," "justo eros semper justo," "eget dictum nisi mauris et ligula." "Donec faucibus dapibus urna," "in ultricies lacus facilisis nec." "Pellentesque dapibus augue in sem pharetra accumsan." "Ut id ullamcorper elit." "Aliquam tellus orci," "lobortis nec molestie sit amet," "imperdiet quis lacus." "Praesent non congue nunc." "Quisque pretium pretium nunc," "nec convallis magna auctor nec." "Etiam accumsan eros sollicitudin augue posuere laoreet id sit amet orci." "Curabitur ut magna velit," "id adipiscing dui." "Morbi viverra vulputate vulputate." "Proin pulvinar justo sed tortor tincidunt id porttitor ipsum posuere." "Curabitur augue leo," "ultrices eget cursus sit amet," "fringilla non nisl." "Morbi et ante est," "non adipiscing mi." "Ut rutrum egestas scelerisque." "Pellentesque quis nisi orci." "In hac habitasse platea dictumst." "Donec sed tincidunt libero." "Proin porttitor placerat risus," "nec blandit sapien pharetra nec." "Phasellus eu risus quis mauris suscipit sollicitudin ut eu neque." "Duis odio lacus," "egestas in molestie adipiscing," "vulputate ut eros." "Nunc molestie orci sed turpis viverra volutpat aliquet mi vestibulum." "Sed interdum consectetur orci at consequat." "Curabitur molestie aliquam tellus," "id dignissim nibh porta sed." "Cras vestibulum orci hendrerit quam ornare condimentum." "Vivamus ultrices lacus ut lorem scelerisque vitae semper elit vulputate." "Aenean sit amet odio massa," "sed rutrum quam." "Ut lacinia enim nec orci rutrum dictum." "Curabitur id auctor ligula." "Nam nibh nulla," "interdum vitae suscipit eu," "porta quis ligula." "Proin lacinia sapien nec dolor viverra at suscipit orci tempus." "Phasellus scelerisque lobortis quam," "sit amet sagittis nibh ornare nec." "Donec sit amet tellus ac ipsum pharetra interdum." "Sed egestas velit et felis iaculis et dignissim est faucibus." "Suspendisse convallis scelerisque dapibus." "Nullam luctus lacinia nisl quis tristique." "Vivamus tincidunt vehicula sem sit amet ultrices." "Nulla arcu lectus," "vestibulum eu molestie in," "eleifend rutrum tortor." "Etiam ligula diam," "ultrices id malesuada vel," "varius ac dolor." "In sit amet sapien justo," "nec dignissim mi." "Vivamus vitae aliquam elit." "Vestibulum suscipit malesuada ipsum id dapibus." "Morbi ullamcorper pharetra velit," "in tempor mauris consequat non." "Praesent malesuada mattis nunc," "at auctor libero viverra id." "Cum sociis natoque penatibus et magnis dis parturient montes," "nascetur ridiculus mus." "Vivamus convallis varius vulputate." "Donec eget tortor neque." "Nunc tempor mi quis enim euismod tincidunt." "Pellentesque et nibh magna," "id cursus enim." "Class aptent taciti sociosqu ad litora torquent per conubia nostra," "per inceptos himenaeos." "Nunc nunc sapien," "semper in tempor in," "cursus iaculis sapien." "Nunc vitae mattis elit." "Aliquam ut nisl vel lorem porttitor ullamcorper at sed quam." "Mauris a turpis erat." "Pellentesque viverra ligula vel tellus pretium ac auctor nisi imperdiet." "Proin faucibus sagittis odio," "quis semper massa pellentesque ac." "Morbi condimentum nisi vitae libero convallis blandit." "Proin sodales odio arcu." "Suspendisse non venenatis diam." "Sed vitae adipiscing lorem." "Nullam augue felis," "gravida quis commodo ut," "dignissim vel quam." "Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas." "Pellentesque fermentum nulla at dolor molestie semper." "Sed metus sapien," "mollis a commodo ac," "commodo sed sem." "Suspendisse feugiat elementum lacus," "vel euismod nisl aliquam non." "Curabitur vel auctor neque." "Phasellus et libero vel tortor vestibulum consequat ac in magna." "Nullam congue vestibulum massa," "quis suscipit turpis adipiscing id." "Nullam ullamcorper eros id ipsum vestibulum at pretium augue convallis." "Cras nec purus ac lectus iaculis commodo sit amet eget lacus." "Curabitur blandit molestie est at fringilla." "Praesent at dictum turpis." "Sed laoreet dapibus tellus et gravida." "Fusce vitae ante ut arcu laoreet sollicitudin." "Nulla mollis commodo orci sed mollis." "Ut eleifend aliquet tellus," "vel ultricies lorem luctus vitae." "Donec commodo ullamcorper massa," "at pretium magna fermentum vitae." "Nam rutrum aliquet suscipit." "Aliquam a massa vel odio vehicula semper a in tortor." "Pellentesque aliquam suscipit iaculis." "Donec sodales pretium massa sed tempus." "Phasellus velit urna," "commodo sit amet tristique id," "congue quis eros." "Ut vulputate magna aliquet leo porta id tempus nunc auctor." "Ut condimentum magna sit amet quam ultricies iaculis." "Aenean imperdiet facilisis tellus nec ornare." "Cras nec vulputate sapien." "Morbi ut dui ut magna sodales commodo eget id erat." "Duis erat nisi," "lacinia vitae imperdiet non," "egestas nec purus." "Pellentesque tempor," "erat ut eleifend condimentum," "ipsum lacus ultrices turpis," "a fringilla purus lectus semper nulla." "Proin id nulla mi." "Suspendisse vel sem lacus." "Ut rutrum eros id massa ultricies commodo." "Nulla eget adipiscing ante." "Nunc quis enim a justo pharetra commodo." "Nullam tortor tortor," "volutpat at commodo at," "consectetur sit amet erat." "Quisque pharetra turpis nec libero viverra quis rutrum nunc mattis." "Aenean sed lacus lectus." "Duis et odio tortor." "Aenean ullamcorper ultricies turpis sed volutpat." "Ut et est sem," "et ultrices turpis." "Pellentesque nisi felis," "dictum non tempor lobortis," "iaculis at enim." "Aliquam tellus elit," "volutpat ut tristique sed," "fringilla ac libero." "Duis rutrum quam magna," "ut ultrices ipsum." "Morbi id orci lectus." "Maecenas quis nunc at diam mollis congue." "Aliquam neque lorem," "lobortis sit amet commodo id," "feugiat mattis dolor." "Cras aliquam convallis adipiscing." "Vestibulum varius commodo pulvinar." "Suspendisse eleifend dictum lectus," "vel commodo nibh varius quis." "Phasellus sit amet nisi libero." "In aliquam purus ut mi mattis quis iaculis lacus porta." "Sed ultrices vehicula mauris sed ornare." "Maecenas gravida tincidunt sagittis." "Mauris id hendrerit eros." "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "Curabitur pharetra diam augue," "sit amet congue felis." "Praesent dignissim eleifend vulputate." "Sed nec vestibulum tellus." "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vestibulum laoreet," "eros vitae rhoncus aliquet," "ligula turpis congue purus," "non convallis mi nibh eu purus." "Vivamus euismod facilisis lacus tincidunt rutrum." "Vivamus suscipit," "nisi sed semper iaculis," "libero sem pulvinar enim," "a aliquet purus urna ut nulla." "Donec ultrices luctus mauris," "in porttitor enim ullamcorper sit amet." "Morbi pellentesque auctor velit et egestas." "Fusce ac tincidunt massa." "Morbi a velit eget diam tincidunt eleifend." "Curabitur ornare lectus a quam blandit vel fermentum lacus dictum." "Donec vel turpis odio," "ac suscipit orci." "Nulla posuere convallis lacus venenatis feugiat." "Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas." "Suspendisse potenti." "Suspendisse mollis neque ut neque gravida ut viverra mi ultrices." "Vestibulum at tempor sem." "Mauris vel leo libero." "Aliquam augue justo," "ultricies vel feugiat a," "vulputate sed erat." "Aliquam in ultrices quam." "Phasellus aliquam vestibulum odio at auctor." "Sed dapibus," "felis ac ornare dapibus," "magna dolor bibendum nisl," "eget luctus lacus magna et mauris." "Nulla ipsum augue," "tempor quis consectetur in," "iaculis non dolor." "Suspendisse consectetur felis ac nulla sodales rhoncus." "Maecenas velit ante," "lacinia at convallis quis," "iaculis quis tellus." "Suspendisse imperdiet aliquet dui," "posuere dictum justo fermentum sit amet." "Etiam ac ante diam." "Suspendisse quis dolor dui," "at mollis neque." "Aenean eu nisi lorem," "et ultrices mauris." "Nulla in augue libero," "non suscipit elit." "Cras rhoncus," "est ac fringilla varius," "erat ipsum gravida nisl," "at ornare dui nisi id mauris." "Nullam nec dictum leo." "Phasellus magna sapien," "sagittis quis suscipit quis," "bibendum in odio." "Cras sed ligula tellus," "sit amet fermentum felis." "Pellentesque suscipit feugiat enim," "vitae feugiat eros mattis pretium." "Cras nisi tellus," "placerat nec dapibus eget," "faucibus ac felis." "Proin tempus feugiat sapien," "nec mattis leo pharetra vel." "Maecenas dapibus mi dignissim ligula commodo et facilisis quam tristique." "Praesent varius lacus eu enim pellentesque gravida." "Nam rhoncus mauris pharetra eros vulputate at tincidunt massa fringilla." "Pellentesque in erat nec massa consequat ultrices." "Donec varius elementum leo," "non hendrerit justo tincidunt sit amet." "Donec ac libero augue." "Sed mattis turpis a sem ultricies consequat." "Aenean nunc dui," "commodo eget vestibulum ut," "rutrum in nisl." "Nam augue lorem," "tempor in porta at," "commodo ut ipsum." "Quisque adipiscing aliquet tincidunt." "Suspendisse potenti." "Pellentesque porttitor elit at leo hendrerit pretium nec eu turpis." "Curabitur in elit metus." "Aliquam risus erat," "posuere id adipiscing consequat," "dapibus vel eros." "Maecenas semper felis sed felis tristique varius." "Mauris tempus tortor et metus euismod pellentesque." "Pellentesque dui massa," "euismod non tincidunt id," "aliquet in elit." "Aenean vulputate sem elit." "Pellentesque at tempus magna." "Aenean elementum nisl id ante commodo placerat." "Nam sed mauris tellus." "Pellentesque nec orci nibh," "nec vulputate enim." "Aliquam erat volutpat." "Etiam dignissim justo a orci egestas mattis." "Vivamus ultrices sapien ac turpis venenatis tempor." "Suspendisse consequat volutpat fermentum." "Duis eu orci velit." "Sed placerat," "nisi sed aliquet tincidunt," "risus odio mattis nulla," "non sodales nunc nulla vitae mi." "Nunc consequat pharetra dolor at fringilla." "Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas." "Vestibulum ultrices tellus quis nisl dignissim rhoncus eget et justo." "Maecenas vitae purus quis leo vehicula venenatis vel ut lectus." "Curabitur nec molestie nisl." "Vestibulum ullamcorper nulla non orci dictum quis lacinia est interdum." "Fusce eget sem risus," "sed volutpat augue." "Suspendisse potenti." "Sed luctus molestie augue," "a varius quam congue in." "Aliquam aliquet orci eget mi euismod consequat." "Ut et vestibulum ante." "Sed vitae metus elit." "Mauris lacus eros," "pellentesque eu vehicula semper," "dapibus consequat nulla." "Sed volutpat erat suscipit sem facilisis at adipiscing orci vehicula." "Pellentesque nisi nulla," "faucibus in rhoncus ut," "rhoncus eleifend turpis." "Aenean odio tortor," "ullamcorper id tincidunt nec," "rhoncus non mi." "Praesent interdum varius orci," "ut venenatis nibh mollis nec." "Ut placerat," "erat nec tincidunt pharetra," "metus lacus venenatis nunc," "et laoreet augue sapien vel lorem." "Sed sit amet viverra est." "Etiam rutrum," "purus ut ultrices aliquet," "neque magna luctus risus," "vel consectetur eros lorem ut odio." "Integer turpis elit," "consectetur ut suscipit sed," "gravida at lorem." "Cum sociis natoque penatibus et magnis dis parturient montes," "nascetur ridiculus mus." "Morbi placerat accumsan malesuada." "Mauris porta," "lacus eget iaculis sagittis," "arcu sem lobortis nulla," "et tempus velit massa quis libero." "Fusce dolor nibh," "bibendum et adipiscing non," "eleifend et odio." "Duis elit eros," "hendrerit at porttitor vitae," "gravida nec arcu." "Praesent malesuada sapien a urna accumsan at hendrerit ipsum porttitor." "Mauris pharetra sagittis urna eu tempor." "Vestibulum purus leo," "pharetra quis ultrices ac," "semper nec erat." "Sed nec massa arcu," "sed tempus dolor." "Fusce vitae dictum eros." "Aenean vestibulum semper turpis," "iaculis auctor dolor vehicula ac." "In fermentum auctor pharetra." "Integer nec eros diam," "eget posuere leo." "Nam tristique," "nibh nec malesuada ornare," "urna odio porta mauris," "accumsan aliquet nunc lectus sit amet mauris." "Vestibulum nulla massa," "semper sit amet blandit sit amet," "venenatis eget sapien." "Vestibulum ultrices congue rhoncus." "Nunc lacinia dapibus imperdiet." "Nunc a eros sed urna pellentesque egestas non sit amet elit." "Integer dolor diam," "vulputate at tristique non," "venenatis in risus." "Sed lacinia luctus ipsum," "ac sagittis arcu molestie quis." "Phasellus pretium nulla quis quam placerat vitae commodo mi congue." "Praesent tristique laoreet elementum." "Praesent venenatis pretium dolor," "eu volutpat est scelerisque sit amet." "Praesent eleifend dictum vehicula." "Donec ullamcorper adipiscing ante ac elementum." "Integer dui nunc," "viverra at rutrum ut," "tincidunt vitae mi." "Donec nec risus id arcu porttitor placerat pulvinar at lacus." "Morbi ac velit sapien," "lacinia egestas nulla." "Mauris elementum dui ac libero ultricies consequat." "Nam non justo at tellus hendrerit rhoncus ultrices molestie augue." "Aenean elit purus," "tempor quis vehicula quis," "lobortis a odio." "Aliquam rhoncus varius lorem," "eu aliquet turpis rutrum a." "Nulla gravida gravida dui," "ac molestie arcu adipiscing vitae." "Cras diam mauris," "cursus vitae congue dictum," "adipiscing id erat." "Suspendisse ornare porta elit id hendrerit." "Praesent nec metus massa," "a egestas risus." "Donec pellentesque viverra diam sit amet pharetra." "Suspendisse lorem mi," "viverra eu auctor non," "volutpat et felis." "Proin id fermentum purus." "Nam eget mattis arcu." "Morbi bibendum rutrum euismod." "Donec aliquet hendrerit tincidunt." "Aenean eu sapien ut nunc dictum feugiat nec at lacus." "Duis commodo nisi nec tortor volutpat quis condimentum turpis aliquam." "Vivamus sollicitudin," "nulla rhoncus consequat posuere," "nisi nibh adipiscing felis," "aliquet porta arcu magna nec sapien." "Ut luctus interdum diam quis sollicitudin." "Ut semper magna sed neque hendrerit mattis." "Nullam turpis dui," "porttitor eget interdum id," "porttitor eu dui." "Ut accumsan," "tellus in eleifend imperdiet," "elit massa facilisis magna," "vitae feugiat tellus lectus eget tellus." "Mauris ac neque ac nibh ultricies imperdiet." "Ut urna lorem," "aliquet et mattis id," "suscipit a lectus." "Nam vehicula porttitor erat sit amet imperdiet." "Sed eu nunc id mauris mollis rutrum." "Pellentesque dui orci," "ullamcorper at fringilla eget," "sollicitudin eget nunc." "Quisque vel metus et enim placerat eleifend sed a leo." "Praesent pharetra hendrerit nibh scelerisque aliquam." "Duis tincidunt vestibulum congue." "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "Vestibulum non libero ligula." "Ut cursus mauris sed odio imperdiet vehicula." "In fermentum vehicula arcu," "ac commodo augue posuere sed." "Vivamus ultricies," "magna in aliquam suscipit," "tortor leo vestibulum dolor," "ut luctus odio diam nec lacus." "Phasellus et diam metus." "Cras fringilla nibh quis ante tincidunt in euismod leo luctus." "Nulla tincidunt erat sit amet erat viverra eleifend accumsan ligula luctus." "Quisque et risus enim." "Praesent vitae neque ut leo semper malesuada eu sed justo." "Duis pretium vehicula orci sed dignissim." "Cras nec magna in nulla laoreet vulputate quis at enim." "Nulla eget odio tellus." "In placerat massa et purus eleifend non fringilla neque fringilla." "Donec imperdiet ullamcorper nisl," "vel rutrum sapien rutrum a." "Duis luctus," "ante eu tristique commodo," "ipsum libero sollicitudin purus," "quis tempor nibh felis ac quam." "Nullam sodales vehicula elit," "eget egestas neque blandit in." "Mauris egestas faucibus elit," "id pellentesque nibh tincidunt id." "Nam vitae felis magna." "Donec tellus quam," "scelerisque vitae sollicitudin at," "gravida vel est." "Ut sodales velit nec dui sollicitudin a porta mi ullamcorper." "Cras sollicitudin egestas consequat." "Donec id tortor est," "eget tempor diam." "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Ut ullamcorper gravida pharetra." "Proin diam nunc," "feugiat id interdum vel," "porttitor a nisl." "Aliquam aliquet orci sed metus egestas porttitor." "Morbi sollicitudin pulvinar enim." "Etiam tincidunt augue ut quam mollis ac imperdiet odio egestas." "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "Nunc at enim diam." "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "Aliquam lorem lectus," "suscipit at vestibulum ac," "scelerisque quis augue." "Morbi felis tellus," "porttitor quis pellentesque ut," "dictum ac nisi." "Integer sit amet massa vel augue lacinia dapibus non vulputate tortor." "Aenean ullamcorper sodales justo," "at fermentum libero sodales et." "Fusce vitae enim ut ligula volutpat placerat." "Pellentesque et mauris nibh," "non lacinia ipsum." "Phasellus ac nibh sit amet nibh vulputate rutrum." "Maecenas id nulla quam." "Maecenas euismod dolor in magna condimentum adipiscing." "Morbi elementum tincidunt mauris in mollis." "Pellentesque sagittis turpis id nunc tempor a eleifend turpis fermentum." "Sed faucibus interdum arcu," "at varius sem aliquet id." "Pellentesque vestibulum iaculis risus," "id dictum lorem gravida ac." "Quisque sagittis arcu vitae eros dapibus vitae convallis nulla mattis." "Nam id dui neque," "ut molestie velit." "Pellentesque pulvinar porta erat eu interdum." "Nunc metus massa," "vestibulum vitae egestas a," "fringilla et odio." "Quisque quis diam lorem," "quis pellentesque velit." "Mauris sapien risus," "suscipit nec vestibulum nec," "rutrum a risus." "Curabitur lobortis condimentum ultricies." "Duis quis dapibus turpis." "Nunc lectus elit," "facilisis at bibendum et," "vestibulum in arcu." "Morbi odio nibh," "feugiat quis tempor ut," "scelerisque ultrices nisi." "Curabitur a accumsan augue." "Integer aliquet porttitor nibh," "nec placerat est pharetra in." "Donec feugiat nisi et odio commodo interdum." "Vestibulum ullamcorper bibendum fermentum." "Fusce eu lacus eget metus malesuada feugiat eu vel erat." "Sed et erat tortor." "Morbi malesuada varius mollis." "Nam accumsan dignissim odio," "quis consectetur mi molestie eget." "Etiam iaculis," "enim eu placerat vehicula," "elit massa pulvinar tellus," "in cursus magna mi non quam." "Vivamus varius tempor semper." "Nulla adipiscing feugiat sollicitudin." "Etiam lacinia placerat dui nec varius." "In vitae metus mauris." "Vestibulum sed magna quis nibh ornare rhoncus ut vitae ipsum." "Duis ligula nunc," "fermentum sed suscipit non," "molestie vel purus." "Suspendisse potenti." "Proin arcu leo," "adipiscing at vehicula ac," "ullamcorper nec diam." "Proin pretium porta urna," "quis fermentum nisl pretium et." "Suspendisse a elit eu nisi molestie lacinia." "Cras at condimentum arcu." "Suspendisse potenti." "Sed ullamcorper ante sit amet urna aliquet ultrices accumsan neque ullamcorper." "Nam sit amet velit vel urna gravida suscipit sit amet non mauris." "Ut non neque arcu." "Praesent gravida sodales lorem," "vitae hendrerit purus bibendum non." "Nulla facilisi." "Mauris ornare," "sem eget tristique vestibulum," "augue metus luctus neque," "sit amet pretium lectus dui et augue." "Curabitur eu convallis turpis." "Ut est est," "vulputate auctor laoreet et," "iaculis eget massa." "Vestibulum ornare porta rhoncus." "Phasellus sagittis orci et orci blandit facilisis viverra leo consectetur." "Curabitur molestie nibh vitae nisi condimentum eget tempor nulla consectetur." "Ut arcu nunc," "mollis nec consectetur nec," "elementum tempus enim." "Nullam vel arcu massa." "In quis accumsan nibh." "Nullam id tristique neque." "Phasellus mattis interdum nisi quis viverra." "Morbi sollicitudin," "leo vel faucibus consequat," "ante est blandit nibh," "id sodales risus nunc ac ligula." "Nullam pellentesque diam nec urna fringilla malesuada." "Maecenas nisi lorem," "bibendum a condimentum in," "commodo vel tellus." "Proin at odio in ante lacinia sodales vel eget elit." "Curabitur eu fermentum est." "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "Praesent rutrum lectus ac velit consequat hendrerit." "In faucibus dictum mattis." "Sed a justo mi," "eu convallis nibh." "Integer commodo sollicitudin suscipit." "Curabitur vel leo vitae quam ultricies interdum et eget justo." "Proin ultrices lacus et metus vulputate ultrices eu non ligula." "Proin at velit in nisi malesuada lobortis." "Fusce est urna," "pulvinar ac venenatis non," "hendrerit non neque." "Donec id augue ac magna consequat porta." "Donec sed erat vitae velit vehicula rutrum." "Aenean pulvinar dui nec augue pharetra iaculis." "Quisque pretium risus vitae arcu feugiat ac posuere risus sagittis." "Nam diam erat," "rutrum ut interdum non," "laoreet at sem." "Sed enim elit," "tempor eget volutpat ac," "aliquet at sem." "Nunc in urna eu ipsum tempor pharetra eget vitae est." "Cum sociis natoque penatibus et magnis dis parturient montes," "nascetur ridiculus mus." "Nulla ultricies," "ligula quis consequat posuere," "ante risus gravida est," "in pretium elit ipsum nec eros." "Mauris ac leo sit amet nisl rutrum mattis." "Donec facilisis enim eget mauris gravida lacinia." "Cum sociis natoque penatibus et magnis dis parturient montes," "nascetur ridiculus mus." "Vivamus eleifend lacus non erat eleifend lacinia." "Nam vehicula vehicula ipsum ac ultrices." "Aliquam ut massa purus." "Aenean vel est vitae nulla tincidunt malesuada." "Aliquam eleifend," "arcu non tristique tempor," "dui ligula malesuada sem," "iaculis scelerisque magna massa quis quam." "Pellentesque libero mauris," "vulputate sed tincidunt vitae," "vehicula ac ipsum." "Mauris pharetra," "turpis eu tincidunt rhoncus," "quam tortor viverra est," "at pellentesque augue nibh ac nibh." "In ipsum dui," "ullamcorper vel semper quis," "semper id massa." "Phasellus non sem dolor," "at scelerisque tellus." "Curabitur velit augue," "pulvinar in aliquam id," "aliquet vel leo." "Fusce fermentum blandit nunc," "vitae tincidunt leo molestie condimentum." "Suspendisse ut gravida ipsum." "Curabitur vulputate," "mauris sit amet pulvinar sagittis," "ipsum enim feugiat enim," "et porta risus neque eget ante." "Cum sociis natoque penatibus et magnis dis parturient montes," "nascetur ridiculus mus." "Donec eros dolor," "vehicula quis aliquam eget," "ornare id lorem." "Ut dolor lacus," "aliquet ut tempor et," "varius et nunc." "Cras consectetur massa vitae velit mattis a ultrices urna venenatis." "Praesent lacus mi," "bibendum a aliquet quis," "vestibulum non velit." "Proin sit amet elit felis," "eu malesuada justo." "Maecenas auctor urna metus." "Phasellus convallis velit id justo blandit venenatis." "Suspendisse convallis rhoncus orci," "a tincidunt quam varius a." "Fusce scelerisque aliquam odio ac sodales." "Aliquam in lectus arcu." "In vestibulum," "nisi et sagittis dignissim," "purus est feugiat risus," "ac accumsan ante purus in turpis." "Maecenas bibendum condimentum nibh," "quis fringilla quam imperdiet sed." "Nulla ullamcorper suscipit sem euismod rhoncus." "Curabitur lectus justo," "consectetur vitae viverra sed," "fringilla at nunc." "Aliquam justo tortor," "ornare vel rhoncus non," "eleifend sed purus." "Nullam posuere gravida magna," "egestas convallis tellus venenatis quis." "Mauris feugiat," "lectus nec rutrum placerat," "tellus augue convallis velit," "in mattis odio neque in urna." "Quisque quis urna at diam pretium iaculis ut sed dui." "Morbi nibh enim," "accumsan eu convallis et," "bibendum sed dui." "Class aptent taciti sociosqu ad litora torquent per conubia nostra," "per inceptos himenaeos." "Etiam interdum turpis eu dui adipiscing sagittis." "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "In hac habitasse platea dictumst." "Suspendisse sed libero enim," "et dapibus justo." "Aliquam commodo," "turpis sit amet venenatis facilisis," "nibh diam porttitor neque," "nec gravida massa odio a sem." "Morbi quis velit ligula." "Mauris interdum risus nec quam rhoncus eu bibendum mauris pulvinar." "Nunc id orci nec turpis lobortis luctus." "Praesent laoreet lectus vel leo malesuada interdum." "Quisque a mi ac eros mattis pharetra in a quam." "Sed scelerisque ligula vel tellus pulvinar suscipit sollicitudin odio vehicula." "In porta odio auctor justo commodo lobortis." "Nullam porttitor volutpat blandit." "In ut varius nisl." "Nunc pharetra porta luctus." "Mauris in mattis est." "In hac habitasse platea dictumst." "Maecenas sed convallis tellus." "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Ut vehicula metus vitae ipsum hendrerit rutrum." "Nunc dolor nisl," "interdum quis ornare et," "tempor quis dui." "Donec tincidunt varius turpis non cursus." "Nulla lobortis," "lacus eget pellentesque sagittis," "urna elit rhoncus erat," "ac convallis ipsum sapien non lacus." "Morbi pellentesque ligula et velit tempus sagittis." "Morbi tincidunt interdum nunc non suscipit." "Cras faucibus interdum velit accumsan posuere." "Donec a augue risus." "Etiam viverra," "lectus sed mattis lobortis," "erat risus aliquet lorem," "eu semper libero nunc ac erat." "Donec at dui nisi." "Fusce dui tortor," "consequat eget egestas vel," "lobortis elementum mi." "Suspendisse blandit molestie urna vel mollis." "Nam aliquam volutpat bibendum." "Nulla id erat a lectus facilisis vestibulum." "Nunc dictum laoreet magna eu venenatis." "Duis facilisis justo nec enim vehicula nec rutrum purus vulputate." "Sed sollicitudin dui nec purus porttitor lacinia." "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Praesent nisl lacus," "rutrum ac congue eu," "scelerisque dictum ligula." "Fusce neque massa," "viverra sed suscipit sit amet," "posuere at ipsum." "Praesent scelerisque libero in nibh gravida sed consectetur turpis vehicula." "Fusce sapien velit," "vestibulum a aliquam in," "bibendum vel mauris." "Phasellus id porta eros." "Aenean nec ligula turpis," "ut tincidunt velit." "Cras commodo congue dui," "id gravida felis iaculis eget." "Nunc varius diam a purus elementum eleifend." "Sed viverra velit sit amet ante ultrices nec varius tellus aliquam." "Suspendisse ante nunc," "suscipit nec sodales ut," "rhoncus a ante." "Nulla risus neque," "fermentum in pharetra nec," "commodo rhoncus nulla." "Aenean fermentum," "ligula nec suscipit ultrices," "ligula neque rhoncus purus," "a mollis sem purus ut nunc." "Nunc aliquam ullamcorper lacinia." "Duis id velit lacus." "Cras convallis sodales vehicula." "Proin nibh nulla," "bibendum sed pellentesque vitae," "blandit vitae quam." "Curabitur et eros velit," "non vehicula sapien." "Suspendisse eu mi nec metus pellentesque egestas." "Curabitur a tellus purus," "ac dictum nisi." "Donec diam ligula," "tincidunt ut posuere vitae," "consequat at nisi." "Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas." "Nulla auctor nisi sed metus tincidunt blandit." "Nulla facilisi." "Proin volutpat mi sagittis risus fringilla feugiat." "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "Vivamus sagittis," "metus et sagittis sodales," "massa leo elementum sapien," "id suscipit lectus ligula ac orci." "Nulla dignissim tristique justo," "vel volutpat turpis rutrum convallis." "Sed diam lorem," "ultricies a ultricies eu," "tristique vitae turpis." "Donec pellentesque consectetur tellus non sodales." "Nam id dolor arcu." "Pellentesque nisl eros," "gravida non aliquam auctor," "elementum et felis." "Quisque in pellentesque metus." "Morbi sed lorem non magna fringilla egestas vitae ut nulla." "Aenean vel ante id nibh tincidunt feugiat." "Ut diam lorem," "semper vel elementum ac," "faucibus suscipit nunc." "Ut ultrices pharetra pellentesque." "Sed malesuada," "nulla vitae luctus suscipit," "est ipsum viverra libero," "quis ultrices augue ante eget velit." "Aenean nibh libero," "elementum eget lacinia non," "faucibus ut arcu." "Suspendisse potenti." "Phasellus nisl ante," "faucibus sed aliquam non," "pellentesque vel orci." "Nulla facilisi." "Sed et mauris sit amet enim malesuada congue." "In hac habitasse platea dictumst." "Cras vitae velit a enim sollicitudin elementum interdum a diam." "Nulla purus lectus," "mattis facilisis pretium et," "consectetur ut tellus." "Cras posuere odio eget nibh lacinia ullamcorper." "Aliquam a enim purus." "Donec pharetra tristique magna," "sit amet varius erat facilisis et." "Nullam molestie nisi euismod orci ultrices in mollis tellus accumsan." "Ut placerat hendrerit porttitor." "Nulla sit amet quam risus." "Nunc diam dui," "adipiscing non cursus et," "pharetra sed mi." "Cum sociis natoque penatibus et magnis dis parturient montes," "nascetur ridiculus mus." "Cras eget hendrerit mi." "Donec sagittis tincidunt nisi venenatis egestas." "Cum sociis natoque penatibus et magnis dis parturient montes," "nascetur ridiculus mus." "Suspendisse ac felis erat," "ut placerat nisi." "Curabitur laoreet pellentesque erat sed porttitor." "Sed vel metus leo," "nec congue enim." "Vivamus elit orci," "ultricies ac sagittis nec," "porta a lorem." "Suspendisse volutpat facilisis turpis," "non dapibus mi scelerisque sed." "Ut id libero a lorem rhoncus sollicitudin non non lorem." "Integer erat purus," "laoreet eu pulvinar eget," "condimentum in tellus." "Nam et placerat purus." "Praesent convallis," "nisi id sodales pharetra," "nibh augue tincidunt elit," "sit amet tempor justo orci quis sapien." "Cras imperdiet ligula ultricies lacus vestibulum molestie." "Fusce non suscipit felis." "Aenean sed nisl quis mi dapibus auctor et eget sem." "Vestibulum luctus egestas diam nec aliquet." "Nunc suscipit," "risus non facilisis sagittis," "libero enim rutrum mauris," "at ullamcorper tortor nibh vel turpis." "Morbi sed nisl purus." "In hac habitasse platea dictumst." "Nulla orci dui," "consectetur id laoreet quis," "mollis in nunc." "Phasellus faucibus posuere magna eu semper." "Cras sem turpis," "mattis non pretium at," "feugiat eget lorem." "Mauris in orci nulla," "sed consectetur diam." "Pellentesque dignissim," "erat dictum gravida viverra," "est erat laoreet massa," "at porta sem mi a quam." "Mauris ultricies viverra velit in posuere." "Vestibulum et ligula eros." "Pellentesque eu orci nulla." "Proin lectus enim," "molestie a sagittis id," "elementum quis tortor." "Mauris et ligula ut ligula egestas porttitor nec quis sapien." "Duis nibh dolor," "pharetra eu mollis sit amet," "tempus ut tortor." "Pellentesque tristique mattis nisl sed commodo." "Praesent ut mauris mi." "Donec lectus arcu," "vestibulum tempus convallis in," "vestibulum eget risus." "Cras sit amet tristique metus." "Fusce sodales velit et purus imperdiet semper." "Donec a nibh tellus," "ut pharetra odio." "Proin tellus nulla," "malesuada vitae aliquet bibendum," "congue ut turpis." "Vestibulum vel purus elit," "sit amet tempus purus." "Praesent mi erat," "imperdiet at volutpat eget," "laoreet a purus." "Curabitur ultricies ultricies nisi," "et varius nisi auctor in." "Curabitur vehicula elit et erat imperdiet vitae euismod diam convallis." "Morbi mollis semper risus," "ac varius turpis faucibus et." "Nulla commodo ligula nec nulla blandit ut rhoncus quam semper." "Mauris arcu ligula," "dapibus vel blandit id," "ornare quis arcu." "Proin urna ligula," "dictum aliquet venenatis nec," "pharetra et est." "Donec libero lectus," "scelerisque eget pharetra nec," "scelerisque ut quam." "Integer mi tortor," "mattis a luctus sit amet," "consequat quis mi." "Praesent in orci a nibh cursus malesuada eu a magna." "Nam at ligula purus," "consequat eleifend dui." "Donec tristique velit id turpis ultricies fermentum." "In ut sem eu quam volutpat consequat ut eget augue." "Nam posuere nisl at lectus laoreet scelerisque." "Vivamus nec odio tempus nulla egestas iaculis." "Sed sollicitudin posuere sapien ac interdum." "Class aptent taciti sociosqu ad litora torquent per conubia nostra," "per inceptos himenaeos." "Quisque aliquam," "massa ut vehicula placerat," "dui dui feugiat sem," "sed blandit sem augue non sapien." "Nulla sit amet justo diam." "Aliquam eget justo vitae lorem condimentum imperdiet a eget nisi." "Etiam quam nulla," "volutpat ac consequat quis," "volutpat ac orci." "Nam fermentum hendrerit pulvinar." "Aliquam erat volutpat." "Mauris sit amet viverra justo." "Cras eget sollicitudin turpis." "Donec congue pretium suscipit." "Nunc tempus tempor augue vitae mattis." "Aenean vel lectus a neque feugiat pretium." "Proin ac purus a nisi tincidunt auctor non eget justo." "Donec et bibendum ipsum." "Nulla facilisi." "Nam pellentesque lacinia fermentum." "Nulla eu ligula turpis," "a cursus dui." "Nullam porttitor molestie bibendum." "Aenean iaculis mi ultrices lorem viverra gravida." "Proin tortor mauris," "fermentum vitae pretium ac," "posuere quis augue." "Cras sodales," "felis sit amet sollicitudin euismod," "lorem dui fermentum nisl," "et vehicula quam enim et est." "Etiam ac dolor sed augue dictum ullamcorper non molestie leo." "Morbi tellus arcu," "imperdiet eget condimentum sit amet," "convallis sodales massa." "Ut id urna eu quam facilisis rhoncus." "Curabitur euismod," "augue ut fringilla congue," "odio risus vestibulum enim," "ac porta augue lacus quis dolor." "Sed dui orci," "rutrum commodo dapibus sed," "fermentum in libero." "Aenean id purus sapien," "in feugiat odio." "Nullam interdum suscipit odio eget vehicula." "Praesent interdum," "sapien vitae consectetur pulvinar," "mauris felis iaculis nisi," "vitae sagittis sapien velit ac neque." "Morbi a purus vel velit vestibulum ullamcorper a vel diam." "Nam nec dui non tellus tincidunt molestie." "Nam lacinia iaculis orci eget pulvinar." "Etiam ac facilisis massa." "Nulla sit amet luctus odio." "Aenean eget turpis turpis," "eget fermentum neque." "Phasellus id lectus nisi." "Suspendisse tristique scelerisque suscipit." "Integer vel nibh elit." "Duis sem justo," "bibendum vel hendrerit vel," "cursus non turpis." "In hac habitasse platea dictumst." "Vestibulum nec quam a dolor consequat fermentum vel in leo." "Donec vel lorem risus," "quis blandit felis." "Sed mollis ornare turpis," "vitae mattis risus mollis eget." "Praesent eleifend iaculis mauris." "Maecenas porta tincidunt egestas." "Quisque at sem leo." "Donec non enim vel risus suscipit vulputate." "Nam a diam placerat dui feugiat commodo at a tortor." "Fusce elit augue," "congue sit amet imperdiet id," "sagittis at quam." "Integer vestibulum felis vel nunc consequat bibendum." "Curabitur rhoncus lacinia risus," "sit amet semper urna elementum vehicula." "Nulla vel ante libero." "Maecenas sed orci non eros venenatis dapibus nec non nibh." "Aliquam erat volutpat." "Quisque aliquet auctor nulla at semper." "Aenean congue pellentesque ipsum." "Aliquam id ante vel eros facilisis consectetur." "Aenean a mi in orci bibendum mattis euismod eget elit." "In sed enim et quam tincidunt semper in quis augue." "Proin sed sapien id magna cursus tristique." "Nunc ac sapien augue." "Aliquam tempus leo ultricies magna interdum tincidunt." "Nulla porttitor gravida ligula in aliquet." "Duis mattis dui non sem vestibulum ac sagittis enim molestie." "Quisque sed dui ligula." "Nullam euismod aliquet enim id tristique." "Curabitur nec lectus consectetur nisi cursus vehicula." "Nulla fringilla vestibulum rutrum." "Quisque malesuada nibh vitae quam feugiat nec placerat eros ultrices." "Pellentesque id dui id nisl eleifend iaculis posuere ut tortor." "Integer eget dui risus," "eu auctor quam." "Aliquam sit amet orci placerat nunc blandit dictum." "Vestibulum nec interdum nisi." "Proin purus nisi," "viverra ultricies accumsan ac," "dignissim nec nulla." "Donec sit amet dolor nisl," "a scelerisque elit." "Phasellus ut arcu lectus." "Sed semper dapibus pellentesque." "Nam vitae urna nulla," "vel auctor orci." "Sed vel magna nibh." "Curabitur pretium imperdiet orci eu ultrices." "Vivamus quis metus pharetra nunc euismod rutrum." "Fusce massa nibh," "venenatis sed ornare at," "posuere sed mauris." "Sed tortor est," "tempor vel fermentum sit amet," "laoreet at nulla." "Proin eu dictum lacus." "Proin nec mattis lectus." "Aliquam semper semper tellus," "ac eleifend orci accumsan non." "Cum sociis natoque penatibus et magnis dis parturient montes," "nascetur ridiculus mus." "Phasellus vitae tortor mauris," "quis blandit nisi." "Donec quis viverra lacus." "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "Maecenas imperdiet," "leo eu tincidunt gravida," "eros sem lacinia risus," "vitae viverra massa augue eget ante." "Suspendisse ullamcorper lacus ut est bibendum condimentum." "In eget semper mi." "Praesent tellus turpis," "mollis sit amet feugiat at," "gravida eget augue." "Sed ac lacinia massa." "Sed vitae malesuada lorem." "Vivamus pellentesque urna eget sem vehicula pharetra." "Curabitur tristique tortor eget mauris adipiscing semper." "Sed eu nisi vulputate arcu elementum imperdiet." "Morbi gravida est non ante accumsan bibendum." "Cras et lectus augue," "sed congue leo." "Praesent semper," "urna nec pharetra aliquet," "augue purus tristique neque," "eget convallis libero turpis sed mi." "Sed tortor tellus," "tempus ac ullamcorper tempus," "consectetur in dui." "Cras aliquam dapibus turpis," "ut ultrices ligula vulputate a." "Donec molestie porttitor mi," "placerat rutrum neque sodales id." "Fusce quis justo lacus." "Duis eget sem nisi," "ac consectetur augue." "Vestibulum luctus erat non lacus commodo vel tristique dui consectetur." "Mauris tellus nisl," "molestie eget porta vitae," "sagittis sed dolor." "Class aptent taciti sociosqu ad litora torquent per conubia nostra," "per inceptos himenaeos." "Pellentesque vel odio eget sem aliquet scelerisque eget vitae nunc." "Fusce adipiscing sagittis libero," "quis placerat dui pulvinar eget." "Cras condimentum," "arcu tempor facilisis condimentum," "eros leo ullamcorper urna," "vel tincidunt velit enim eget eros." "Mauris et semper nulla." "Proin mollis sapien nec enim egestas aliquam vestibulum consectetur tellus." "Aenean ut nisl ut sapien iaculis auctor." "Pellentesque dolor tellus," "sodales eu elementum ut," "ullamcorper at nunc." "Vestibulum convallis ornare leo," "ac luctus eros dignissim commodo." "Suspendisse at elit sit amet urna placerat lobortis." "Donec fermentum libero lacus," "in placerat risus." "Nullam ut enim sapien," "nec blandit libero." "Donec in nibh fermentum lacus dapibus bibendum vel ac turpis." "Morbi rhoncus," "purus pharetra sagittis mollis," "lectus ante imperdiet magna," "in vestibulum urna nulla ac erat." "Duis dictum euismod vulputate." "Morbi odio augue," "ultrices a gravida sed," "elementum quis felis." "Nam scelerisque urna id justo dignissim placerat." "Sed convallis lobortis orci vel egestas." "Vestibulum ultricies felis in libero iaculis varius." "Aliquam erat volutpat." "Phasellus ac purus non elit malesuada auctor." "Donec ut sem id enim volutpat posuere." "Donec malesuada est sed odio ornare dignissim." "Cras vitae urna massa," "ut facilisis lorem." "In rutrum interdum lectus," "nec scelerisque tellus consequat pellentesque." "Proin eu molestie neque." "Integer sed enim lectus," "ac aliquet urna." "Phasellus sodales sollicitudin consequat." "Praesent vitae augue ante." "Sed id pellentesque leo." "Integer vehicula enim quis dui aliquet congue." "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "Curabitur gravida," "quam sed elementum eleifend," "velit nulla dictum est," "ut malesuada augue ligula id dui." "Maecenas bibendum tristique ipsum," "eu gravida elit commodo sed." "Fusce metus tortor," "accumsan ac feugiat id," "volutpat sed tortor." "Vivamus tincidunt mi non purus volutpat ultrices." "Praesent eget metus eu sem tempus pellentesque." "Etiam faucibus sollicitudin dapibus." "Donec tempor massa sit amet mi posuere ullamcorper." "Vestibulum ac dolor ut urna ultrices volutpat." "Integer ipsum urna," "congue tempus vehicula eu," "sodales sit amet velit." "Proin adipiscing urna ut eros sodales vulputate." "Nam faucibus auctor justo non luctus." "Suspendisse ac augue sed augue viverra congue." "Nam ligula erat," "eleifend eu semper eget," "pharetra laoreet nunc." "Phasellus tempor eros a ante tincidunt ultricies." "Fusce sit amet est tristique lacus pharetra tristique." "Pellentesque orci est," "tristique quis tristique id," "imperdiet at neque." "Vivamus ut rutrum mauris." "Nullam sit amet quam turpis," "ut fringilla enim." "Duis sagittis accumsan risus." "In eget risus vel mauris pharetra laoreet nec id arcu." "Cras mollis," "mauris et sagittis laoreet," "est dui hendrerit urna," "at tempor nulla mauris sed odio." "Cras sed hendrerit orci." "Curabitur eros sem," "pretium vel iaculis vel," "accumsan in enim." "Proin mattis," "ligula tincidunt sagittis rutrum," "mauris dui consectetur erat," "ac hendrerit quam risus at purus." "Cras ac ante id libero congue semper at id tortor." "Cras non risus sit amet erat porta dictum sit amet in justo." "Phasellus vel justo odio." "Donec scelerisque varius ligula id bibendum." "Nullam turpis ligula," "fringilla ac semper a," "iaculis a sapien." "Vestibulum in est venenatis metus malesuada lacinia quis id justo." "Vivamus faucibus luctus semper." "Etiam mattis ullamcorper magna," "sit amet faucibus est malesuada euismod." "Duis libero nisl," "molestie a iaculis in," "convallis eu nunc." "Nullam sit amet lorem at purus ullamcorper rutrum sit amet eu orci." "In vel nulla in elit convallis varius nec a lacus." "Nunc ac nunc nisl," "quis condimentum risus." "Donec tempus facilisis odio ac rutrum." "Etiam sed mollis tortor." "Sed ac lorem at urna lacinia porta." "Curabitur vestibulum metus eu augue viverra et accumsan augue ornare." "Phasellus mollis mauris erat," "ut vestibulum arcu." "Praesent pretium condimentum nisl," "id rutrum quam mattis ac." "Nunc vitae arcu leo," "sit amet pretium dui." "Mauris vehicula velit sem," "lobortis cursus tellus." "Ut eleifend dapibus tellus," "in euismod ipsum dapibus at." "Nulla convallis blandit nunc quis lobortis." "Praesent placerat mattis mauris," "sed luctus nisi ultricies vel." "In tristique laoreet tortor sed porta." "Aenean hendrerit orci non est viverra sit amet blandit lorem scelerisque." "Nulla in nulla lacus." "Pellentesque ac enim quam," "id aliquet justo." "Suspendisse diam metus," "placerat eu volutpat ut," "euismod non erat." "Phasellus luctus odio vel orci dapibus sed varius lacus aliquam." "Sed tincidunt feugiat diam vel ornare." "Fusce quis volutpat magna." "Cras malesuada elit at leo fringilla imperdiet et sed libero." "Morbi sit amet tincidunt ligula." "Ut id tempus tellus." "Vestibulum id rhoncus risus." "Ut non magna a lorem semper hendrerit." "Cras vulputate cursus eros," "sit amet tincidunt ligula rutrum fringilla." "Cras mauris nisl," "fringilla sed egestas vel," "accumsan non mauris." "Integer commodo," "tellus consequat mollis pulvinar," "dui elit faucibus arcu," "in lacinia nisi mi eget ligula." "Nulla malesuada semper tortor eu lacinia." "Vestibulum at varius sem." "Vivamus posuere ligula ac tellus faucibus lobortis." "Maecenas sagittis arcu in odio sodales aliquam." "Mauris at felis augue." "Donec venenatis interdum cursus." "Vivamus ante mauris," "dignissim sit amet laoreet vel," "vehicula vel arcu." "Sed facilisis nulla sit amet massa posuere faucibus." "Aliquam elementum elementum felis lacinia vehicula." "Maecenas metus justo," "viverra et pulvinar ut," "venenatis a mauris." "Duis eu ultricies elit." "Donec gravida condimentum magna," "sodales eleifend risus fermentum eget." "Nunc elit urna," "elementum in adipiscing sit amet," "cursus in dui." "Cras at risus non ligula scelerisque scelerisque dictum sed lorem." "Sed semper lorem id magna consequat ut ultricies nunc consectetur." "Suspendisse vehicula," "erat sit amet tempor auctor," "augue risus interdum nunc," "eu adipiscing tortor nisi tempus sem." "Etiam malesuada ipsum ut lectus ultrices faucibus." "Curabitur tellus tellus," "pretium vel accumsan nec," "eleifend nec elit." "Cras semper fermentum ipsum," "sit amet gravida lectus hendrerit non." "Nullam pretium velit vel dolor suscipit in blandit nisi scelerisque." "Curabitur viverra ipsum vitae odio placerat pulvinar." "In cursus elit id turpis aliquam ornare." "Donec consequat turpis feugiat elit tempor sed lobortis arcu aliquam." "Curabitur sit amet sagittis purus." "Curabitur tincidunt arcu sed odio suscipit elementum." "Sed ut nibh a ante adipiscing auctor eleifend a nisi." "Proin sollicitudin sollicitudin blandit." "Ut commodo auctor imperdiet." "Fusce eleifend," "neque non ullamcorper elementum," "felis ipsum cursus libero," "et bibendum augue mi sed ligula." "Curabitur sodales euismod diam vitae dictum." "Maecenas vestibulum," "mi non commodo sollicitudin," "massa quam iaculis odio," "vel tristique tellus nibh vitae tortor." "Vestibulum ut odio eget nisi ultricies auctor ac vitae lorem." "Sed eu lorem elit." "Aliquam erat volutpat." "Suspendisse fermentum nulla lorem." "Morbi eleifend dolor a ligula feugiat vulputate." "Curabitur laoreet auctor quam," "at tincidunt metus cursus in." "Nam aliquam volutpat porttitor." "Aenean id cursus eros." "Vestibulum vel neque diam," "non posuere quam." "Quisque leo sapien," "fermentum quis congue vel," "fringilla vitae arcu." "Mauris semper turpis ac libero volutpat dapibus." "Duis nisi enim," "faucibus eget tempus at," "ultricies nec tellus." "Cras id lectus nisl," "id cursus orci." "Etiam sapien nisl," "mollis sit amet volutpat vel," "volutpat nec nisi." "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "Nunc ac purus nec leo vestibulum porttitor a blandit arcu." "Proin nec rhoncus neque." "Pellentesque vestibulum pharetra vestibulum." "Sed molestie elit eu dui mollis varius." "Etiam porttitor dictum mi." "Maecenas suscipit sagittis nunc nec porta." "Sed et arcu sit amet sapien convallis vestibulum." "Cras egestas accumsan accumsan." "Quisque accumsan tortor et erat mattis sollicitudin." "Sed molestie turpis eget sem tincidunt nec convallis mi congue." "Etiam ac egestas lorem." "Proin sollicitudin est nec sem vehicula tincidunt." "Proin quis purus ut nisl dapibus euismod." "Class aptent taciti sociosqu ad litora torquent per conubia nostra," "per inceptos himenaeos." "Nunc lacus ante," "rutrum sed lacinia ut," "fermentum id purus." "Nulla facilisi." "Suspendisse sed lectus nec libero lacinia aliquam." "Sed id ipsum sapien," "id varius ipsum." "Vestibulum at nulla mi," "eget accumsan nibh." "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "Donec lobortis ultrices iaculis." "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec placerat eros ac arcu pellentesque laoreet." "Praesent sagittis pellentesque dictum." "Nulla in metus eget metus vulputate tempus." "Mauris dictum elementum commodo." "Donec tellus est," "suscipit iaculis venenatis ut," "pulvinar sit amet turpis." "Mauris et elit non magna consectetur bibendum." "Mauris pellentesque dui eu libero consectetur fringilla." "Aenean vel ipsum urna." "Maecenas pulvinar sollicitudin magna molestie interdum." "Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas." "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "Cum sociis natoque penatibus et magnis dis parturient montes," "nascetur ridiculus mus." "Mauris viverra pretium tortor eget gravida." "Integer commodo molestie turpis quis elementum." "Aenean placerat," "purus eu rhoncus ornare," "ligula nulla consequat dui," "vitae scelerisque augue massa pulvinar quam." "Suspendisse ultricies ultricies neque sit amet luctus." "Ut bibendum leo a lectus blandit eget hendrerit ligula consequat." "In hac habitasse platea dictumst." "Cras tempor," "eros non posuere pulvinar," "magna nisi consectetur lacus," "in ullamcorper ante lectus non justo." "Sed porttitor libero vel nisl bibendum dapibus." "Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas." "Fusce vitae faucibus mi." "Etiam in libero lobortis nisl lobortis lobortis blandit ut dolor." "Morbi auctor iaculis nulla at venenatis." "Morbi augue nibh," "lobortis ut bibendum id," "pretium nec felis." "Lorem ipsum dolor sit amet," "consectetur adipiscing elit." "Maecenas molestie," "ante nec porttitor bibendum," "tortor tortor aliquet arcu," "sit amet tempus ligula diam sit amet felis." "Phasellus semper posuere augue id rhoncus." "Cras dolor tellus," "posuere id varius in," "hendrerit eu tellus." "Proin vitae turpis non nulla ullamcorper tristique." "In hac habitasse platea dictumst." "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce sed justo quis diam lacinia imperdiet nec eu tortor." "Nullam at quam non metus pretium luctus in ac dui." "Vivamus libero nibh," "adipiscing et tristique non," "accumsan quis sem." "Aliquam condimentum ligula eu lorem sodales fermentum." "Suspendisse ac urna vitae est pharetra vulputate at vel lacus." "Sed vel lorem consequat sapien tristique dignissim." "Praesent sodales fermentum est id iaculis." "Sed sollicitudin ullamcorper suscipit." "Morbi felis massa," "ultricies ac ultrices in," "malesuada volutpat sapien." "Vestibulum vitae egestas arcu." "Suspendisse ac facilisis dui." "Sed lobortis eros ac est adipiscing laoreet." "Nullam urna arcu," "dapibus quis commodo vulputate," "dictum aliquet mi." "Morbi sit amet erat sit amet velit pellentesque aliquam." "Sed eu arcu turpis," "ut vulputate quam." "Nullam ultrices condimentum tortor quis scelerisque." "Morbi lacinia lacinia metus," "vel elementum ante pharetra at." "Fusce mollis magna vel nisi gravida ut fringilla tortor rhoncus." "Aenean aliquam feugiat sapien ac euismod." "Nullam non est tortor." "Pellentesque vestibulum porta lorem ut adipiscing." "Nunc eget enim et dui pellentesque egestas." "Suspendisse ornare mollis odio," "tincidunt tincidunt sapien egestas non." "Cras vulputate," "nisi sit amet vehicula facilisis," "sapien neque adipiscing nisi," "at volutpat est nibh euismod ipsum." "Maecenas scelerisque elementum leo," "eget semper libero auctor a." "Proin vel odio sit amet tortor adipiscing facilisis non vel elit." "Aliquam eget leo libero," "sit amet vulputate est." "Maecenas ut turpis nec est tincidunt rutrum." "Nam laoreet," "justo in dictum tincidunt," "nisi est porttitor diam," "eget pretium libero est dictum odio." "Fusce justo felis," "tempor vitae mattis sit amet," "pretium sagittis sem." "Mauris risus erat," "volutpat sit amet aliquam cursus," "ultricies a nulla." "Aliquam at erat felis." "In imperdiet lacinia purus at luctus." "Suspendisse rutrum lacinia ullamcorper." "Vestibulum tincidunt sodales sollicitudin." "Aliquam sit amet velit purus," "in venenatis nisl." "Vivamus vitae magna quis nisi varius imperdiet ut quis tortor." "Ut pulvinar," "mi a volutpat blandit," "justo tellus tincidunt massa," "id vulputate elit nunc at risus." "Integer venenatis rhoncus enim." "In pretium adipiscing justo," "sed scelerisque urna fringilla sit amet." "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Etiam placerat," "est nec ornare convallis," "ante lacus vestibulum quam," "sit amet interdum magna purus ac eros." "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nullam at adipiscing turpis." "Curabitur lobortis velit ut ligula commodo lacinia." "Nullam pellentesque," "velit in convallis consequat," "ipsum massa malesuada lacus," "sit amet sodales odio enim vitae mauris." "Integer eget risus quam." "Maecenas quis risus sit amet risus egestas pulvinar." "Proin nec consectetur est." "Praesent ultricies felis a nisi aliquet pulvinar." "Quisque nec elit at lorem porta malesuada." "Phasellus ac nulla eros," "eget egestas lectus." "Proin a lacus orci," "ornare vehicula posuere."
;; RFC 6742
host1.blaat.nl. IN NID 10 0014:4fff:ff20:ee64
host1.blaat.nl. IN L32 10 10.1.2.0
host1.blaat.nl. IN L64 10 2001:0DB8:1140:1000
host1.blaat.nl. IN LP 10 l64-subnet1.blaat.nl.
;error1 IN NID 1 00fg:4fff:ff20:ee64
;error2 IN NID 1 00ff:4fff:ff20
;error3 IN NID 1 00f0
;error4 IN NID 1 00ff:4fff:ff20:ee64:67
;error5 IN NID 1 00ff:ff2056:ee64:67
;error6 IN NID 1 :::1
;; RFC 6844: CAA
caa IN CAA 0 issue "ca.example.net"
caa IN CAA 0 iodef "mailto:security@example.com"
caa IN CAA 0 iodef "http://iodef.example.com/"
caa IN CAA 0 issue "ca.example.net; account=230123"
caa IN CAA 0 issue "ca.example.net; policy=ev"
caa IN CAA 128 tbs "Unknown"
caa IN TYPE257 \# 70 020461757468303E3039060A2B06010401D679020301060960864801 65030402010420614829C81B958911F81164D40DCDBFD49D66CEB3B3 442FF6C9C3A912F9497566020100
;; RFC 7043: EUI48 and EUI64
eui48 IN EUI48 00-00-5e-90-01-2a
eui64 IN EUI64 00-00-5e-ef-00-00-00-2a
;error.eui48 IN EUI48 00-00-5e ; too short
;error.eui48 IN EUI48 00-00-5e-90-01-2a-ef ; too long
;error.eui48 IN EUI48 00-00-5e-9r-01-2a ; non-hex
;error.eui64 IN EUI64 00-00-5e-ef-00-00-2a ; too short
;error.eui64 IN EUI64 00-00-5e-ef-00-00-00-2a-ef ; too long
;error.eui64 IN EUI64 00-00-5e-ef-r0-00-00-2a ; non-hex
; This entry fails (bug#553) because of the no space between quoted elements
;mail IN TXT ("v=DKIM1; k=rsa; g=*; s=email; h=sha1; t=s; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC33ewKxBZARSAPbT96IpW/k3DgdNuFEb896eIf80HcVxWw+w2G+1sQcUjxWUSGp6yTTMEls6n7tthixidyRiE/aWOy3ic/K+927PuCy0M1ZX2QY8gVmOHJbYT3qBQ8toQrvGIer8fQqqJIzO/ATVbHxX8B/z0PsmGI2xxqCyXkOw""IDAQAB;")
; This is the correct output
;mail 3600 IN TXT "v=DKIM1; k=rsa; g=*; s=email; h=sha1; t=s; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC33ewKxBZARSAPbT96IpW/k3DgdNuFEb896eIf80HcVxWw+w2G+1sQcUjxWUSGp6yTTMEls6n7tthixidyRiE/aWOy3ic/K+927PuCy0M1ZX2QY8gVmOHJbYT3qBQ8toQrvGIer8fQqqJIzO/ATVbHxX8B/z0PsmGI2xxqCyXkOw" "IDAQAB;"
mail IN TXT Test-String"Test-String"
mail IN TXT foo.bar.test
csync IN CSYNC 66 3 A NS AAAA
| DNS Zone | 4 | gearnode/nsd | tpkg/rr-test.tdir/rr-test.zone | [
"BSD-3-Clause"
] |
<html>
<script src="/../../packages/alpinejs/dist/cdn.js" defer></script>
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<table>
<tr>
<td><code>x-on:click.away</code></td>
<td>
<div x-data="{ show: false }">
<button @click="show = true">Show</button>
<h1 x-show="show" @click.away="show = false">h1</h1>
<h2>h2</h2>
</div>
</div>
</td>
</tr>
<tr>
<td><code>x-transition</code></td>
<td>
<div x-data="{ open: false }">
<button @click="open = ! open">Toggle</button>
<div x-show="open" x-transition>
Hello 👋
</div>
</div>
</td>
</tr>
<tr>
<td><code>x-transition:enter only (should see no blip)</code></td>
<td>
<main x-data="{ open: true }">
<button @click="open = ! open">Toggle</button>
<div x-show="open" x-transition:enter.duration.500ms>
Hello 👋
</div>
<div x-show="!open">
There 👋
</div>
</main>
</td>
</tr>
<tr>
<td><code>x-transition with dynamic classes</code></td>
<td>
<div x-data="{ open: false, props: {
['x-transition:enter']() { return `transition ease-out duration-300`; },
['x-transition:enter-start']() { return `opacity-0 transform scale-90`; },
['x-transition:enter-end']() { return `opacity-100 transform scale-100`; },
['x-transition:leave']() { return `transition ease-in duration-300`; },
['x-transition:leave-start']() { return `opacity-100 transform scale-100`; },
['x-transition:leave-end']() { return `opacity-0 transform scale-90`; },
}}">
<button @click="open = !open">Toggle</button>
<div x-bind="props" x-show="open">Hello 👋</div>
</div>
</td>
</tr>
<tr>
<td><code>x-transition</code></td>
<td>
<div x-data="{ open: false }">
<button @click="open = ! open">Toggle</button>
<div x-show="open">
<div x-show="open" x-transition.duration.250ms>
<h1>Hello 👋</h1>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td><code>x-transition.opacity</code></td>
<td>
<div x-data="{ open: false }">
<button @click="open = ! open">Toggle</button>
<div x-show="open" x-transition.opacity>
Hello 👋
</div>
</div>
</td>
</tr>
<tr>
<td><code>x-transition.scale</code></td>
<td>
<div x-data="{ open: false }">
<button @click="open = ! open">Toggle</button>
<div x-show="open" x-transition.scale>
Hello 👋
</div>
</div>
</td>
</tr>
<tr>
<td><code>x-transition.duration.1000ms</code></td>
<td>
<div x-data="{ open: false }">
<button @click="open = ! open">Toggle</button>
<div x-show="open" x-transition.duration.1000ms>
Hello 👋
</div>
</div>
</td>
</tr>
<tr>
<td>
<div><code>x-transition:enter.opacity.duration.500ms</code></div>
<div><code>x-transition:leave.scale.duration.250ms</code></div>
</td>
<td>
<div x-data="{ open: false }">
<button @click="open = ! open">Toggle</button>
<div x-show="open" x-transition:enter.opacity.duration.500ms x-transition:leave.scale.duration.250ms>
Hello 👋
</div>
</div>
</td>
</tr>
<tr>
<td>
<div><code>x-transition:enter.delay.0ms x-transition:leave.delay.250ms</code></div>
<div><code>x-transition:enter.delay.100ms x-transition:leave.delay.100ms</code></div>
<div><code>x-transition:enter.delay.250ms x-transition:leave.delay.0ms</code></div>
</td>
<td>
<div x-data="{ open: false }">
<button @mouseenter="open = true" @mouseleave="open = false">Toggle (mouseover)</button>
<div style="display: flex;" x-show="open">
<div x-show="open" x-transition:enter.delay.0ms x-transition:leave.delay.250ms>Hello 👋</div>
<div x-show="open" x-transition:enter.delay.100ms x-transition:leave.delay.100ms>Hello 👋</div>
<div x-show="open" x-transition:enter.delay.250ms x-transition:leave.delay.0ms>Hello 👋</div>
</div>
</div>
</td>
</tr>
</table>
</html>
| HTML | 4 | james0r/alpine | tests/cypress/manual-transition-test.html | [
"MIT"
] |
# TODO: Translation updated at 2022-01-11 21:45
# game/scripts/labels/save_reminder.rpy:53
translate english save_reminder_7bb89045:
# "(Hello from your friendly {b}Save Reminder{/b}!)"
"(Hello from your friendly {b}Save Reminder{/b}!)"
# game/scripts/labels/save_reminder.rpy:60
translate english save_reminder_5d69946d:
# "(Would you like to {b}Save{/b} your progress up to now?)"
"(Would you like to {b}Save{/b} your progress up to now?)"
# game/scripts/labels/save_reminder.rpy:66
translate english save_reminder_44bc4137:
# "Thanks for entertaining your friendly {b}Save Reminder{/b}! Now let's get back to our story..."
"Thanks for entertaining your friendly {b}Save Reminder{/b}! Now let's get back to our story..."
translate english strings:
# game/scripts/labels/save_reminder.rpy:18
old "Would you like to get future reminders to save your progress?"
new "Would you like to get future reminders to save your progress?"
# game/scripts/labels/save_reminder.rpy:27
old "Keep reminding me to save"
new "Keep reminding me to save"
# game/scripts/labels/save_reminder.rpy:30
old "Turn off future reminders"
new "Turn off future reminders"
# game/scripts/labels/save_reminder.rpy:62
old "Would you like to save your progress up to now?"
new "Would you like to save your progress up to now?"
| Ren'Py | 3 | googlebleh/LearnToCodeRPG | game/tl/english/scripts/labels/save_reminder.rpy | [
"BSD-3-Clause"
] |
# Copyright 2017 Google LLC
#
# 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.
# snipdoc merges code snippets from Go source files into a template to
# produce another go file (typically doc.go).
#
# Call with one or more .go files and a template file.
#
# awk -f snipmd.awk foo.go bar.go doc.template
#
# In the Go files, start a snippet with
# //[ NAME
# and end it with
# //]
#
# In the template, write
# [NAME]
# on a line by itself to insert the snippet NAME on that line.
#
# The following transformations are made to the Go code:
# - Trailing blank lines are removed.
# - `ELLIPSIS` and `_ = ELLIPSIS` are replaced by `...`
/^[ \t]*\/\/\[/ { # start snippet in Go file
if (inGo()) {
if ($2 == "") {
die("missing snippet name")
}
curSnip = $2
next
}
}
/^[ \t]*\/\/]/ { # end snippet in Go file
if (inGo()) {
if (curSnip != "") {
# Remove all trailing newlines.
gsub(/[\t\n]+$/, "", snips[curSnip])
curSnip = ""
next
} else {
die("//] without corresponding //[")
}
}
}
ENDFILE {
if (curSnip != "") {
die("unclosed snippet: " curSnip)
}
}
/^\[.*\]$/ { # Snippet marker in template file.
if (inTemplate()) {
name = substr($1, 2, length($1)-2)
if (snips[name] == "") {
die("no snippet named " name)
}
printf("%s\n", snips[name])
afterSnip = 1
next
}
}
# Matches every line.
{
if (curSnip != "") {
# If the first line in the snip has no indent, add the indent.
if (snips[curSnip] == "") {
if (index($0, "\t") == 1) {
extraIndent = ""
} else {
extraIndent = "\t"
}
}
line = $0
# Replace ELLIPSIS.
gsub(/_ = ELLIPSIS/, "...", line)
gsub(/ELLIPSIS/, "...", line)
snips[curSnip] = snips[curSnip] extraIndent line "\n"
} else if (inTemplate()) {
afterSnip = 0
# Copy to output.
print
}
}
function inTemplate() {
return match(FILENAME, /\.template$/)
}
function inGo() {
return match(FILENAME, /\.go$/)
}
function die(msg) {
printf("%s:%d: %s\n", FILENAME, FNR, msg) > "/dev/stderr"
exit 1
}
| Awk | 4 | maxnordlund/transfer.sh | vendor/cloud.google.com/go/internal/snipdoc/snipdoc.awk | [
"MIT"
] |
export const a: "a";
| TypeScript | 0 | Preta-Crowz/deno | cli/tests/module_graph/file_typesref.d.ts | [
"MIT"
] |
check_args = (name, more) ->
error "spec template takes arguments: name" unless name
if name\match "%u"
error "name should be underscore form, all lowercase"
if more
error "got a second argument to generator, did you mean to pass a string?"
filename = (name) ->
"spec/#{name}_spec.moon"
spec_types = {
models: (name) ->
[[import use_test_env from require "lapis.spec"
import truncate_tables from require "lapis.spec.db"
describe "]] ..name .. [[", ->
use_test_env!
before_each ->
it "should ...", ->
]]
applications: (name) ->
[[import use_test_server from require "lapis.spec"
import request from require "lapis.spec.server"
import truncate_tables from require "lapis.spec.db"
describe "]] ..name .. [[", ->
use_test_server!
before_each ->
it "should ...", ->
]]
}
spec_types.helpers = spec_types.models
write = (writer, name) ->
path = writer\mod_to_path name
prefix = name\match "^(.+)%."
writer\write filename(path), (spec_types[prefix] or spec_types.applications) name
{:check_args, :write}
| MoonScript | 4 | tommy-mor/lapis | lapis/cmd/templates/spec.moon | [
"MIT",
"Unlicense"
] |
package com.baeldung;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import com.baeldung.spring.cloud.kubernetes.backend.KubernetesBackendApplication;
@SpringBootTest(classes = KubernetesBackendApplication.class)
public class SpringContextTest {
@Test
public void contextLoads() {
}
}
| Java | 3 | DBatOWL/tutorials | spring-cloud/spring-cloud-kubernetes/kubernetes-minikube/demo-backend/src/test/java/com/baeldung/SpringContextTest.java | [
"MIT"
] |
{
module Lexer (
Token(..),
scanTokens
) where
import Syntax
}
%wrapper "basic"
$digit = 0-9
$alpha = [a-zA-Z]
$eol = [\n]
tokens :-
-- Whitespace insensitive
$eol ;
$white+ ;
print { \s -> TokenPrint }
$digit+ { \s -> TokenNum (read s) }
\= { \s -> TokenEq }
$alpha [$alpha $digit \_ \']* { \s -> TokenSym s }
{
data Token
= TokenNum Int
| TokenSym String
| TokenPrint
| TokenEq
| TokenEOF
deriving (Eq,Show)
scanTokens = alexScanTokens
}
| Logos | 5 | Average-user/write-you-a-haskell | chapter9/assign/Lexer.x | [
"MIT"
] |
<%--
Copyright 2012 Netflix, Inc.
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.
--%>
<h1>${classification} Workflow Executions</h1>
<div class="list">
<div class="buttons"></div>
<table class="sortable">
<thead>
<tr>
<th>Run ID</th>
<th>Workflow Type</th>
<th>Version</th>
<th>Start Timestamp</th>
<th>Close Timestamp</th>
<th>Close Status</th>
<th>Canceled</th>
<th>Tags</th>
</tr>
</thead>
<tbody>
<g:each var="executionInfo" in="${executions}" status="i">
<tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
<td><g:linkObject type="workflowExecution" params="[runId: executionInfo.execution.runId, workflowId: executionInfo.execution.workflowId]" name="${executionInfo.execution.runId[0..6]}..."/></td>
<td>${executionInfo.workflowType.name}</td>
<td>${executionInfo.workflowType.version}</td>
<td><g:formatDate date="${executionInfo.startTimestamp}"/></td>
<td><g:formatDate date="${executionInfo.closeTimestamp}"/></td>
<td>${executionInfo.closeStatus}</td>
<td>${executionInfo.cancelRequested}</td>
<td>${executionInfo.tagList}</td>
</tr>
</g:each>
</tbody>
</table>
</div>
<footer/>
| Groovy Server Pages | 3 | Threadless/asgard | grails-app/views/workflowExecution/_sublist.gsp | [
"Apache-2.0"
] |
precision mediump float;
const int butt_cap = 0;
const int round_cap = 1;
const int square_cap = 2;
const int miter_join = 0;
const int round_join = 1;
const int bevel_join = 2;
uniform float u_linewidth;
uniform float u_antialias;
uniform float u_line_join;
uniform float u_line_cap;
uniform vec4 u_line_color;
#ifdef DASHED
uniform sampler2D u_dash_tex;
uniform vec4 u_dash_tex_info;
uniform float u_dash_scale;
uniform float u_dash_offset;
#endif
varying float v_segment_length;
varying vec2 v_coords;
varying float v_flags;
varying float v_cos_theta_turn_right_start;
varying float v_cos_theta_turn_right_end;
#ifdef DASHED
varying float v_length_so_far;
#endif
float cross_z(in vec2 v0, in vec2 v1)
{
return v0.x*v1.y - v0.y*v1.x;
}
float point_line_side(in vec2 point, in vec2 start, in vec2 end)
{
// +ve if point to right of line.
// Alternatively could do dot product with right_vector.
return cross_z(point - start, end - start);
}
float point_line_distance(in vec2 point, in vec2 start, in vec2 end)
{
return point_line_side(point, start, end) / distance(start, end);
}
vec2 right_vector(in vec2 v)
{
return vec2(v.y, -v.x);
}
float bevel_join_distance(in float sign_start, in float halfwidth)
{
float cos_theta_turn_right = sign_start > 0.0 ? v_cos_theta_turn_right_start
: v_cos_theta_turn_right_end;
float cos_theta = abs(cos_theta_turn_right);
float turn_right = sign(cos_theta_turn_right);
float distance_along = sign_start > 0.0 ? 0.0 : v_segment_length;
// In v_coords reference frame (x is along segment, y across).
vec2 line_start = vec2(distance_along, halfwidth*turn_right);
float sin_alpha = cos_theta;
float cos_alpha = sqrt(1.0 - sin_alpha*sin_alpha);
vec2 line_along = vec2(-sign_start*turn_right*sin_alpha, -cos_alpha);
return halfwidth + sign_start*point_line_distance(
v_coords, line_start, line_start+line_along);
}
float cap(in int cap_type, in float x, in float y)
{
// x is distance along segment in direction away from end of segment,
// y is distance across segment.
if (cap_type == butt_cap)
return max(0.5*u_linewidth - x, abs(y));
else if (cap_type == square_cap)
return max(-x, abs(y));
else // cap_type == round_cap
return distance(vec2(min(x, 0.0), y), vec2(0.0, 0.0));
}
float distance_to_alpha(in float dist)
{
return 1.0 - smoothstep(0.5*(u_linewidth - u_antialias),
0.5*(u_linewidth + u_antialias), dist);
}
#ifdef DASHED
float dash_distance(in float x)
{
// x is in direction of v_coords.x, i.e. along segment.
float tex_length = u_dash_tex_info.x;
float tex_offset = u_dash_tex_info.y;
float tex_dist_min = u_dash_tex_info.z;
float tex_dist_max = u_dash_tex_info.w;
// Apply offset.
x += v_length_so_far - u_dash_scale*tex_offset + u_dash_offset;
// Interpolate within texture to obtain distance to dash.
float dist = texture2D(u_dash_tex,
vec2(x / (tex_length*u_dash_scale), 0.0)).a;
// Scale distance within min and max limits.
dist = tex_dist_min + dist*(tex_dist_max - tex_dist_min);
return u_dash_scale*dist;
}
mat2 rotation_matrix(in float sign_start)
{
// Rotation matrix for v_coords from this segment to prev or next segment.
float cos_theta_turn_right = sign_start > 0.0 ? v_cos_theta_turn_right_start
: v_cos_theta_turn_right_end;
float cos_theta = abs(cos_theta_turn_right);
float turn_right = sign(cos_theta_turn_right);
float sin_theta = sqrt(1.0 - cos_theta*cos_theta)*sign_start*turn_right;
float cos_2theta = 2.0*cos_theta*cos_theta - 1.0;
float sin_2theta = 2.0*sin_theta*cos_theta;
return mat2(cos_2theta, -sin_2theta, sin_2theta, cos_2theta);
}
#endif
void main()
{
int join_type = int(u_line_join + 0.5);
int cap_type = int(u_line_cap + 0.5);
float halfwidth = 0.5*(u_linewidth + u_antialias);
// Extract flags.
int flags = int(v_flags + 0.5);
bool miter_too_large_end = (flags / 8 > 0);
flags -= 8*int(miter_too_large_end);
bool miter_too_large_start = (flags / 4 > 0);
flags -= 4*int(miter_too_large_start);
bool has_end_cap = (flags / 2 > 0);
flags -= 2*int(has_end_cap);
bool has_start_cap = flags > 0;
float dist = v_coords.y; // For straight segment, and miter join.
if (v_coords.x <= 0.5*u_antialias) {
// At start of segment, either cap or join.
if (has_start_cap)
dist = cap(cap_type, v_coords.x, v_coords.y);
else if (join_type == round_join)
dist = distance(v_coords, vec2(0.0, 0.0));
else if (join_type == bevel_join ||
(join_type == miter_join && miter_too_large_start))
dist = max(abs(dist), bevel_join_distance(1.0, halfwidth));
// else a miter join which uses the default dist calculation.
}
else if (v_coords.x >= v_segment_length - 0.5*u_antialias) {
// At end of segment, either cap or join.
if (has_end_cap)
dist = cap(cap_type, v_segment_length - v_coords.x, v_coords.y);
else if (join_type == round_join)
dist = distance(v_coords, vec2(v_segment_length, 0));
else if ((join_type == bevel_join ||
(join_type == miter_join && miter_too_large_end)))
dist = max(abs(dist), bevel_join_distance(-1.0, halfwidth));
// else a miter join which uses the default dist calculation.
}
float alpha = distance_to_alpha(abs(dist));
#ifdef DASHED
if (u_dash_tex_info.x >= 0.0) {
// Dashes in straight segments (outside of joins) are easily calculated.
dist = dash_distance(v_coords.x);
if (!has_start_cap && cap_type == butt_cap) {
if (v_coords.x < 0.5*u_antialias) {
// Outer of start join rendered solid color or not at all
// depending on whether corner point is in dash or gap, with
// antialiased ends.
dist = (dash_distance(0.0) > 0.0 ? 0.5*u_antialias - v_coords.x
: -0.5*u_linewidth);
// Also consider antialiased end of dash just outside corner.
float end_dist = dash_distance(0.5*u_antialias) + v_coords.x -
0.5*u_antialias;
dist = max(dist, end_dist);
}
vec2 prev_coords = rotation_matrix(1.0)*v_coords;
if (abs(prev_coords.y) < halfwidth &&
prev_coords.x < 0.5*u_antialias) {
// Extend dashes across from previous segment, with antialiased
// end.
float new_dist = dash_distance(min(prev_coords.x,
-0.5*u_antialias));
if (prev_coords.x > -0.5*u_antialias)
new_dist -= prev_coords.x + 0.5*u_antialias;
new_dist = min(new_dist, 0.5*u_linewidth - abs(prev_coords.y));
dist = max(dist, new_dist);
}
}
if (!has_end_cap && cap_type == butt_cap) {
if (v_coords.x > v_segment_length - 0.5*u_antialias) {
// Similar for end join.
dist = (dash_distance(v_segment_length) > 0.0
? v_coords.x - v_segment_length + 0.5*u_antialias
: -0.5*u_linewidth);
float end_dist =
dash_distance(v_segment_length - 0.5*u_antialias) -
v_coords.x + v_segment_length - 0.5*u_antialias;
dist = max(dist, end_dist);
}
vec2 next_coords =
rotation_matrix(-1.0)*(v_coords - vec2(v_segment_length, 0.0));
if (abs(next_coords.y) < halfwidth &&
next_coords.x > -0.5*u_antialias) {
// Extend dashes across from next segment, with antialiased end.
float new_dist = dash_distance(v_segment_length +
max(next_coords.x, 0.5*u_antialias));
if (next_coords.x < 0.5*u_antialias)
new_dist += next_coords.x - 0.5*u_antialias;
new_dist = min(new_dist, 0.5*u_linewidth - abs(next_coords.y));
dist = max(dist, new_dist);
}
}
dist = cap(cap_type, dist, v_coords.y);
float dash_alpha = distance_to_alpha(dist);
alpha = min(alpha, dash_alpha);
}
#endif
alpha = u_line_color.a*alpha;
gl_FragColor = vec4(u_line_color.rgb*alpha, alpha); // Premultiplied alpha.
}
| GLSL | 5 | TheLaw1337/bokeh | bokehjs/src/lib/models/glyphs/webgl/regl_line.frag | [
"BSD-3-Clause"
] |
# Compare metadata filter output containing float value strings to reference
# output data. Returns the whole reference data if delta of each value is below
# threshold, else returns the whole input data.
function abs(val) {
return ((val < 0.0) ? -val : val);
}
function max(val1, val2) {
return ((val1 >= val2) ? val1 : val2);
}
function is_numeric_str(str) {
return (str ~ /^[+-]?[0-9]*\.?[0-9]+$/);
}
BEGIN {
FS = "=";
# check for "fuzz" (threshold) program parameter, else use default
if (fuzz <= 0.0) {
fuzz = 0.1;
}
# check for "ref" (reference file) program parameter
if (ref) {
ref_nr = 0;
while ((getline line < ref) > 0) {
ref_nr++;
ref_lines[ref_nr] = line;
if (split(line, fields) == 2 && is_numeric_str(fields[2])) {
ref_keys[ref_nr] = fields[1];
ref_vals[ref_nr] = fields[2] + 0; # convert to number
}
}
close(ref);
}
delta_max = 0;
result = (ref ? 1 : 0);
}
{
cmp_lines[NR] = $0;
if (NF == 2 && is_numeric_str($2) && ref_vals[NR]) {
val = $2 + 0; # convert to number
delta = abs((val / ref_vals[NR]) - 1);
delta_max = max(delta_max, delta);
result = result && ($1 == ref_keys[NR]) && (delta <= fuzz);
} else {
result = result && ($0 == ref_lines[NR]);
}
}
END {
if (result) {
for (i = 1; i <= ref_nr; i++)
print ref_lines[i];
} else {
for (i = 1; i <= NR; i++)
print cmp_lines[i];
if (NR != ref_nr)
print "[refcmp] lines: " NR " != " ref_nr > "/dev/stderr";
if (delta_max >= fuzz)
print "[refcmp] delta_max: " delta_max " >= " fuzz > "/dev/stderr";
}
}
| Awk | 5 | yashrajsingh1998/ApraPipes1 | thirdparty/ffmpeg/tests/refcmp-metadata.awk | [
"MIT"
] |
### Compilation failed:
error: 1: Unsupported texture dimensions
1 error
| Metal | 0 | rhencke/engine | src/third_party/skia/tests/sksl/shared/golden/Texture1D.metal | [
"BSD-3-Clause"
] |
D:/gitee/open/tinyriscv/tests/riscv-compliance/build_generated/rv32i/I-DELAY_SLOTS-01.elf: file format elf32-littleriscv
Disassembly of section .text.init:
00000000 <_start>:
0: 04c0006f j 4c <reset_vector>
00000004 <trap_vector>:
4: 34202f73 csrr t5,mcause
8: 00800f93 li t6,8
c: 03ff0a63 beq t5,t6,40 <write_tohost>
10: 00900f93 li t6,9
14: 03ff0663 beq t5,t6,40 <write_tohost>
18: 00b00f93 li t6,11
1c: 03ff0263 beq t5,t6,40 <write_tohost>
20: 00000f17 auipc t5,0x0
24: fe0f0f13 addi t5,t5,-32 # 0 <_start>
28: 000f0463 beqz t5,30 <trap_vector+0x2c>
2c: 000f0067 jr t5
30: 34202f73 csrr t5,mcause
34: 000f5463 bgez t5,3c <handle_exception>
38: 0040006f j 3c <handle_exception>
0000003c <handle_exception>:
3c: 5391e193 ori gp,gp,1337
00000040 <write_tohost>:
40: 00001f17 auipc t5,0x1
44: fc3f2023 sw gp,-64(t5) # 1000 <tohost>
48: ff9ff06f j 40 <write_tohost>
0000004c <reset_vector>:
4c: 00000193 li gp,0
50: 00000297 auipc t0,0x0
54: fb428293 addi t0,t0,-76 # 4 <trap_vector>
58: 30529073 csrw mtvec,t0
5c: 30005073 csrwi mstatus,0
60: 00000297 auipc t0,0x0
64: 02028293 addi t0,t0,32 # 80 <begin_testcode>
68: 34129073 csrw mepc,t0
6c: 00000293 li t0,0
70: 10000337 lui t1,0x10000
74: 01030313 addi t1,t1,16 # 10000010 <_end+0xfffde0c>
78: 00532023 sw t0,0(t1)
7c: 30200073 mret
00000080 <begin_testcode>:
80: 00002097 auipc ra,0x2
84: f8008093 addi ra,ra,-128 # 2000 <begin_signature>
88: 11111137 lui sp,0x11111
8c: 11110113 addi sp,sp,273 # 11111111 <_end+0x1110ef0d>
90: 0080006f j 98 <begin_testcode+0x18>
94: 00000113 li sp,0
98: 0020a023 sw sp,0(ra)
9c: 00002097 auipc ra,0x2
a0: f6808093 addi ra,ra,-152 # 2004 <test_A2_res>
a4: 22222137 lui sp,0x22222
a8: 22210113 addi sp,sp,546 # 22222222 <_end+0x2222001e>
ac: 00000217 auipc tp,0x0
b0: 01020213 addi tp,tp,16 # bc <begin_testcode+0x3c>
b4: 00020067 jr tp # 0 <_start>
b8: 00000113 li sp,0
bc: 0020a023 sw sp,0(ra)
c0: 00002097 auipc ra,0x2
c4: f4808093 addi ra,ra,-184 # 2008 <test_B1_res>
c8: 00500293 li t0,5
cc: 00600313 li t1,6
d0: 33333137 lui sp,0x33333
d4: 33310113 addi sp,sp,819 # 33333333 <_end+0x3333112f>
d8: 00528463 beq t0,t0,e0 <begin_testcode+0x60>
dc: 00000113 li sp,0
e0: 0020a023 sw sp,0(ra)
e4: 00002097 auipc ra,0x2
e8: f2808093 addi ra,ra,-216 # 200c <test_B2_res>
ec: 00500293 li t0,5
f0: 00600313 li t1,6
f4: 44444137 lui sp,0x44444
f8: 44410113 addi sp,sp,1092 # 44444444 <_end+0x44442240>
fc: 00629463 bne t0,t1,104 <begin_testcode+0x84>
100: 00000113 li sp,0
104: 0020a023 sw sp,0(ra)
108: 00002097 auipc ra,0x2
10c: f0808093 addi ra,ra,-248 # 2010 <test_B3_res>
110: 00500293 li t0,5
114: 00600313 li t1,6
118: 55555137 lui sp,0x55555
11c: 55510113 addi sp,sp,1365 # 55555555 <_end+0x55553351>
120: 0062c463 blt t0,t1,128 <begin_testcode+0xa8>
124: 00000113 li sp,0
128: 0020a023 sw sp,0(ra)
12c: 00002097 auipc ra,0x2
130: ee808093 addi ra,ra,-280 # 2014 <test_B4_res>
134: 00500293 li t0,5
138: 00600313 li t1,6
13c: 66666137 lui sp,0x66666
140: 66610113 addi sp,sp,1638 # 66666666 <_end+0x66664462>
144: 0062e463 bltu t0,t1,14c <begin_testcode+0xcc>
148: 00000113 li sp,0
14c: 0020a023 sw sp,0(ra)
150: 00002097 auipc ra,0x2
154: ec808093 addi ra,ra,-312 # 2018 <test_B5_res>
158: 00500293 li t0,5
15c: 00600313 li t1,6
160: 77777137 lui sp,0x77777
164: 77710113 addi sp,sp,1911 # 77777777 <_end+0x77775573>
168: 00535463 bge t1,t0,170 <begin_testcode+0xf0>
16c: 00000113 li sp,0
170: 0020a023 sw sp,0(ra)
174: 00002097 auipc ra,0x2
178: ea808093 addi ra,ra,-344 # 201c <test_B6_res>
17c: 00500293 li t0,5
180: 00600313 li t1,6
184: 88889137 lui sp,0x88889
188: 88810113 addi sp,sp,-1912 # 88888888 <_end+0x88886684>
18c: 00537463 bgeu t1,t0,194 <begin_testcode+0x114>
190: 00000113 li sp,0
194: 0020a023 sw sp,0(ra)
198: 00002297 auipc t0,0x2
19c: e6828293 addi t0,t0,-408 # 2000 <begin_signature>
1a0: 10000337 lui t1,0x10000
1a4: 00830313 addi t1,t1,8 # 10000008 <_end+0xfffde04>
1a8: 00532023 sw t0,0(t1)
1ac: 00002297 auipc t0,0x2
1b0: e7428293 addi t0,t0,-396 # 2020 <end_signature>
1b4: 10000337 lui t1,0x10000
1b8: 00c30313 addi t1,t1,12 # 1000000c <_end+0xfffde08>
1bc: 00532023 sw t0,0(t1)
1c0: 00100293 li t0,1
1c4: 10000337 lui t1,0x10000
1c8: 01030313 addi t1,t1,16 # 10000010 <_end+0xfffde0c>
1cc: 00532023 sw t0,0(t1)
1d0: 00000013 nop
1d4: 00100193 li gp,1
1d8: 00000073 ecall
000001dc <end_testcode>:
1dc: c0001073 unimp
...
Disassembly of section .tohost:
00001000 <tohost>:
...
00001100 <fromhost>:
...
Disassembly of section .data:
00002000 <begin_signature>:
2000: ffff 0xffff
2002: ffff 0xffff
00002004 <test_A2_res>:
2004: ffff 0xffff
2006: ffff 0xffff
00002008 <test_B1_res>:
2008: ffff 0xffff
200a: ffff 0xffff
0000200c <test_B2_res>:
200c: ffff 0xffff
200e: ffff 0xffff
00002010 <test_B3_res>:
2010: ffff 0xffff
2012: ffff 0xffff
00002014 <test_B4_res>:
2014: ffff 0xffff
2016: ffff 0xffff
00002018 <test_B5_res>:
2018: ffff 0xffff
201a: ffff 0xffff
0000201c <test_B6_res>:
201c: ffff 0xffff
201e: ffff 0xffff
00002020 <end_signature>:
...
00002100 <begin_regstate>:
2100: 0080 addi s0,sp,64
...
00002200 <end_regstate>:
2200: 0004 0x4
...
| ObjDump | 4 | DuBirdFly/TinyRISCV_Learn | tests/riscv-compliance/build_generated/rv32i/I-DELAY_SLOTS-01.elf.objdump | [
"Apache-2.0"
] |
"""Support for Atlantic Pass APC Zone Control."""
from typing import cast
from pyoverkiz.enums import OverkizCommand, OverkizCommandParam, OverkizState
from homeassistant.components.climate import ClimateEntity
from homeassistant.components.climate.const import HVACMode
from homeassistant.components.overkiz.entity import OverkizEntity
from homeassistant.const import TEMP_CELSIUS
OVERKIZ_TO_HVAC_MODE: dict[str, str] = {
OverkizCommandParam.HEATING: HVACMode.HEAT,
OverkizCommandParam.DRYING: HVACMode.DRY,
OverkizCommandParam.COOLING: HVACMode.COOL,
OverkizCommandParam.STOP: HVACMode.OFF,
}
HVAC_MODE_TO_OVERKIZ = {v: k for k, v in OVERKIZ_TO_HVAC_MODE.items()}
class AtlanticPassAPCZoneControl(OverkizEntity, ClimateEntity):
"""Representation of Atlantic Pass APC Zone Control."""
_attr_hvac_modes = [*HVAC_MODE_TO_OVERKIZ]
_attr_temperature_unit = TEMP_CELSIUS
@property
def hvac_mode(self) -> str:
"""Return hvac operation ie. heat, cool mode."""
return OVERKIZ_TO_HVAC_MODE[
cast(
str, self.executor.select_state(OverkizState.IO_PASS_APC_OPERATING_MODE)
)
]
async def async_set_hvac_mode(self, hvac_mode: str) -> None:
"""Set new target hvac mode."""
await self.executor.async_execute_command(
OverkizCommand.SET_PASS_APC_OPERATING_MODE, HVAC_MODE_TO_OVERKIZ[hvac_mode]
)
| Python | 5 | mib1185/core | homeassistant/components/overkiz/climate_entities/atlantic_pass_apc_zone_control.py | [
"Apache-2.0"
] |
" Vim syntax file
" Language: GNU Assembler
" Maintainer: Doug Kearns dougkearns@gmail.com
" Previous Maintainers: Erik Wognsen <erik.wognsen@gmail.com>
" Kevin Dahlhausen <kdahlhaus@yahoo.com>
" Contributors: Ori Avtalion, Lakshay Garg
" Last Change: 2020 Oct 31
" quit when a syntax file was already loaded
if exists("b:current_syntax")
finish
endif
let s:cpo_save = &cpo
set cpo&vim
syn case ignore
" storage types
syn match asmType "\.long"
syn match asmType "\.ascii"
syn match asmType "\.asciz"
syn match asmType "\.byte"
syn match asmType "\.double"
syn match asmType "\.float"
syn match asmType "\.hword"
syn match asmType "\.int"
syn match asmType "\.octa"
syn match asmType "\.quad"
syn match asmType "\.short"
syn match asmType "\.single"
syn match asmType "\.space"
syn match asmType "\.string"
syn match asmType "\.word"
syn match asmIdentifier "[a-z_][a-z0-9_]*"
syn match asmLabel "[a-z_][a-z0-9_]*:"he=e-1
" Various #'s as defined by GAS ref manual sec 3.6.2.1
" Technically, the first asmDecimal def is actually octal,
" since the value of 0-7 octal is the same as 0-7 decimal,
" I (Kevin) prefer to map it as decimal:
syn match asmDecimal "\<0\+[1-7]\=\>" display
syn match asmDecimal "\<[1-9]\d*\>" display
syn match asmOctal "\<0[0-7][0-7]\+\>" display
syn match asmHexadecimal "\<0[xX][0-9a-fA-F]\+\>" display
syn match asmBinary "\<0[bB][0-1]\+\>" display
syn match asmFloat "\<\d\+\.\d*\%(e[+-]\=\d\+\)\=\>" display
syn match asmFloat "\.\d\+\%(e[+-]\=\d\+\)\=\>" display
syn match asmFloat "\<\d\%(e[+-]\=\d\+\)\>" display
syn match asmFloat "[+-]\=Inf\>\|\<NaN\>" display
syn match asmFloat "\%(0[edfghprs]\)[+-]\=\d*\%(\.\d\+\)\%(e[+-]\=\d\+\)\=" display
syn match asmFloat "\%(0[edfghprs]\)[+-]\=\d\+\%(\.\d\+\)\=\%(e[+-]\=\d\+\)\=" display
" Avoid fighting the hexadecimal match for unicorn-like '0x' prefixed floats
syn match asmFloat "\%(0x\)[+-]\=\d*\%(\.\d\+\)\%(e[+-]\=\d\+\)\=" display
" Allow all characters to be escaped (and in strings) as these vary across
" architectures [See sec 3.6.1.1 Strings]
syn match asmCharacterEscape "\\." contained
syn match asmCharacter "'\\\=." contains=asmCharacterEscape
syn match asmStringEscape "\\\_." contained
syn match asmStringEscape "\\\%(\o\{3}\|00[89]\)" contained display
syn match asmStringEscape "\\x\x\+" contained display
syn region asmString start="\"" end="\"" skip="\\\\\|\\\"" contains=asmStringEscape
syn keyword asmTodo contained TODO FIXME XXX NOTE
" GAS supports one type of multi line comments:
syn region asmComment start="/\*" end="\*/" contains=asmTodo,@Spell
" GAS (undocumentedly?) supports C++ style comments. Unlike in C/C++ however,
" a backslash ending a C++ style comment does not extend the comment to the
" next line (hence the syntax region does not define 'skip="\\$"')
syn region asmComment start="//" end="$" keepend contains=asmTodo,@Spell
" Line comment characters depend on the target architecture and command line
" options and some comments may double as logical line number directives or
" preprocessor commands. This situation is described at
" http://sourceware.org/binutils/docs-2.22/as/Comments.html
" Some line comment characters have other meanings for other targets. For
" example, .type directives may use the `@' character which is also an ARM
" comment marker.
" As a compromise to accommodate what I arbitrarily assume to be the most
" frequently used features of the most popular architectures (and also the
" non-GNU assembly languages that use this syntax file because their asm files
" are also named *.asm), the following are used as line comment characters:
syn match asmComment "[#;!|].*" contains=asmTodo,@Spell
" Side effects of this include:
" - When `;' is used to separate statements on the same line (many targets
" support this), all statements except the first get highlighted as
" comments. As a remedy, remove `;' from the above.
" - ARM comments are not highlighted correctly. For ARM, uncomment the
" following two lines and comment the one above.
"syn match asmComment "@.*" contains=asmTodo
"syn match asmComment "^#.*" contains=asmTodo
" Advanced users of specific architectures will probably want to change the
" comment highlighting or use a specific, more comprehensive syntax file.
syn match asmInclude "\.include"
syn match asmCond "\.if"
syn match asmCond "\.else"
syn match asmCond "\.endif"
syn match asmMacro "\.macro"
syn match asmMacro "\.endm"
" Assembler directives start with a '.' and may contain upper case (e.g.,
" .ABORT), numbers (e.g., .p2align), dash (e.g., .app-file) and underscore in
" CFI directives (e.g., .cfi_startproc). This will also match labels starting
" with '.', including the GCC auto-generated '.L' labels.
syn match asmDirective "\.[A-Za-z][0-9A-Za-z-_]*"
syn case match
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
" The default methods for highlighting. Can be overridden later
hi def link asmSection Special
hi def link asmLabel Label
hi def link asmComment Comment
hi def link asmTodo Todo
hi def link asmDirective Statement
hi def link asmInclude Include
hi def link asmCond PreCondit
hi def link asmMacro Macro
if exists('g:asm_legacy_syntax_groups')
hi def link hexNumber Number
hi def link decNumber Number
hi def link octNumber Number
hi def link binNumber Number
hi def link asmHexadecimal hexNumber
hi def link asmDecimal decNumber
hi def link asmOctal octNumber
hi def link asmBinary binNumber
else
hi def link asmHexadecimal Number
hi def link asmDecimal Number
hi def link asmOctal Number
hi def link asmBinary Number
endif
hi def link asmFloat Float
hi def link asmString String
hi def link asmStringEscape Special
hi def link asmCharacter Character
hi def link asmCharacterEscape Special
hi def link asmIdentifier Identifier
hi def link asmType Type
let b:current_syntax = "asm"
let &cpo = s:cpo_save
unlet s:cpo_save
" vim: nowrap sw=2 sts=2 ts=8 noet
| VimL | 4 | uga-rosa/neovim | runtime/syntax/asm.vim | [
"Vim"
] |
var a: any;
var r1 = a < a;
var r2 = a > a;
var r3 = a <= a;
var r4 = a >= a;
var r5 = a == a;
var r6 = a != a;
var r7 = a === a;
var r8 = a !== a; | TypeScript | 1 | nilamjadhav/TypeScript | tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithTwoOperandsAreAny.ts | [
"Apache-2.0"
] |
#ifndef DEVICEMSG_H
#define DEVICEMSG_H
#include "common.h"
#include <stdbool.h>
#include <stdint.h>
#include <unistd.h>
#define DEVICE_MSG_MAX_SIZE (1 << 18) // 256k
// type: 1 byte; length: 4 bytes
#define DEVICE_MSG_TEXT_MAX_LENGTH (DEVICE_MSG_MAX_SIZE - 5)
enum device_msg_type {
DEVICE_MSG_TYPE_CLIPBOARD,
};
struct device_msg {
enum device_msg_type type;
union {
struct {
char *text; // owned, to be freed by free()
} clipboard;
};
};
// return the number of bytes consumed (0 for no msg available, -1 on error)
ssize_t
device_msg_deserialize(const unsigned char *buf, size_t len,
struct device_msg *msg);
void
device_msg_destroy(struct device_msg *msg);
#endif
| C | 4 | davi1234567891011/scrcpy | app/src/device_msg.h | [
"Apache-2.0"
] |
:- object('00-util').
:- uses(user,[atomic_list_concat/3,exists_directory/1,exists_file/1,getenv/2,length/2]).
:- uses(marelle,[join/2,sh/1]).
:- public([expand_path/2,isdir/1,isfile/1]).
:- include('00-util.pl').
:- end_object.
| Logtalk | 3 | PaulBrownMagic/logtalk3 | tools/wrapper/marelle-master/00-util.lgt | [
"Apache-2.0"
] |
#pragma once
#include "caffe2/core/operator.h"
namespace caffe2 {
template <typename Context>
void storm_update(
const int N,
const float* paramIn,
const float* momentIn,
const float* gradSqSumIn,
const float* gradIn,
const float* lr,
float* paramOut,
float* momentOut,
float* gradSqSumOut,
const float momentum,
const float beta,
Context* /*context*/) {
float gradSqSumTmp = 0.0;
for (auto i = 0; i < N; ++i) {
const float gi = gradIn[i];
gradSqSumTmp += gi * gi;
}
gradSqSumOut[0] = gradSqSumIn[0] + gradSqSumTmp;
const float nlr = lr[0] * std::pow(beta + gradSqSumOut[0], -1.0 / 3.0);
const float alpha = momentum * nlr * nlr;
for (auto i = 0; i < N; ++i) {
const float gi = gradIn[i];
const float mi = momentIn[i];
float new_mi = momentOut[i] = gi + (1.0 - alpha) * (mi - gi);
paramOut[i] = paramIn[i] + nlr * new_mi;
}
}
template <class Context>
class StormOp final : public Operator<Context> {
public:
USE_OPERATOR_CONTEXT_FUNCTIONS;
StormOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws),
OP_SINGLE_ARG(float, "momentum", momentum_, 10.0),
OP_SINGLE_ARG(float, "beta", beta_, 0.1) {}
bool RunOnDevice() override {
// Enforce shapes
CAFFE_ENFORCE_EQ(Input(GRAD).numel(), Input(PARAM).numel());
CAFFE_ENFORCE_EQ(Input(GRAD).numel(), Input(MOMENT).numel());
CAFFE_ENFORCE_EQ(Input(GRADSQSUM).numel(), 1);
CAFFE_ENFORCE_EQ(Input(LR).numel(), 1);
// Resize [potentially] out-of-place blobs
Output(OUTPUT_PARAM)->ResizeLike(Input(PARAM));
Output(OUTPUT_MOMENT)->ResizeLike(Input(MOMENT));
Output(OUTPUT_GRAGSQSUM)->ResizeLike(Input(GRADSQSUM));
storm_update<Context>(
Input(GRAD).numel(),
Input(PARAM).template data<float>(),
Input(MOMENT).template data<float>(),
Input(GRADSQSUM).template data<float>(),
Input(GRAD).template data<float>(),
Input(LR).template data<float>(),
Output(OUTPUT_PARAM)->template mutable_data<float>(),
Output(OUTPUT_MOMENT)->template mutable_data<float>(),
Output(OUTPUT_GRAGSQSUM)->template mutable_data<float>(),
momentum_,
beta_,
&context_);
return true;
}
protected:
const float momentum_;
const float beta_;
INPUT_TAGS(PARAM, MOMENT, GRADSQSUM, GRAD, LR);
OUTPUT_TAGS(OUTPUT_PARAM, OUTPUT_MOMENT, OUTPUT_GRAGSQSUM);
};
template <class Context>
class SparseStormOp final : public Operator<Context> {
public:
USE_OPERATOR_CONTEXT_FUNCTIONS;
SparseStormOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<Context>(operator_def, ws),
OP_SINGLE_ARG(float, "momentum", momentum_, 10.0),
OP_SINGLE_ARG(float, "beta", beta_, 0.1) {}
bool RunOnDevice() override {
// Enforce shapes
CAFFE_ENFORCE_EQ(Input(PARAM).numel(), Input(MOMENT).numel());
CAFFE_ENFORCE_EQ(Input(GRADSQSUM).numel(), 1);
CAFFE_ENFORCE_EQ(Input(LR).numel(), 1);
CAFFE_ENFORCE_EQ(
Input(PARAM).size_from_dim(1),
Input(GRAD).size_from_dim(Input(INDICES).dim()));
return DispatchHelper<TensorTypes<int32_t, int64_t>>::call(
this, Input(INDICES));
}
template <typename SIndex>
bool DoRunWithType() {
const auto* paramIn = Input(PARAM).template data<float>();
const auto* momentIn = Input(MOMENT).template data<float>();
const auto* gradSqSumIn = Input(GRADSQSUM).template data<float>();
const auto* gradIn = Input(GRAD).template data<float>();
const auto* indices = Input(INDICES).template data<SIndex>();
const auto* lr = Input(LR).template data<float>();
auto* paramOut = Output(OUTPUT_PARAM)->template mutable_data<float>();
auto* momentOut = Output(OUTPUT_MOMENT)->template mutable_data<float>();
auto* gradSqSumOut =
Output(OUTPUT_GRAGSQSUM)->template mutable_data<float>();
auto n = Input(INDICES).numel();
if (n == 0) {
return true;
}
float gradSqSumTmp = 0.0;
for (auto i = 0; i < Input(GRAD).numel(); ++i) {
const float gi = gradIn[i];
gradSqSumTmp += gi * gi;
}
gradSqSumOut[0] = gradSqSumIn[0] + gradSqSumTmp;
const float nlr = lr[0] * std::pow(beta_ + gradSqSumOut[0], -1.0 / 3.0);
const float alpha = momentum_ * nlr * nlr;
const auto block_size = Input(GRAD).numel() / n;
for (auto i = 0; i < n; ++i) {
auto idx = indices[i];
if (block_size == 1) {
const float gi = gradIn[i];
const float mi = momentIn[idx];
float new_mi = momentOut[idx] = gi + (1.0 - alpha) * (mi - gi);
paramOut[idx] = paramIn[idx] + nlr * new_mi;
} else {
auto offsetI = i * block_size;
auto offsetIdx = idx * block_size;
#ifndef NDEBUG
CAFFE_ENFORCE_GE(
Input(PARAM).numel(),
block_size + offsetIdx,
this->debug_def().input(PARAM),
", out of bound, idx:",
idx,
" for input i:",
i,
" and block size:",
block_size);
CAFFE_ENFORCE_GE(
Input(GRAD).numel(),
block_size + offsetI,
this->debug_def().input(GRAD),
", out of bound idx, idx:",
idx,
" for input i:",
i);
#endif
for (auto j = 0; j < block_size; ++j) {
const float gi = gradIn[offsetI + j];
const float mi = momentIn[offsetIdx + j];
float new_mi = momentOut[offsetIdx + j] =
gi + (1.0 - alpha) * (mi - gi);
paramOut[offsetIdx + j] = paramIn[offsetIdx + j] + nlr * new_mi;
}
}
}
return true;
}
protected:
const float momentum_;
const float beta_;
INPUT_TAGS(PARAM, MOMENT, GRADSQSUM, GRAD, INDICES, LR);
OUTPUT_TAGS(OUTPUT_PARAM, OUTPUT_MOMENT, OUTPUT_GRAGSQSUM);
};
} // namespace caffe2
| C | 5 | Hacky-DH/pytorch | caffe2/sgd/storm_op.h | [
"Intel"
] |
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensor.proto
#ifndef GOOGLE_PROTOBUF_INCLUDED_tensor_2eproto
#define GOOGLE_PROTOBUF_INCLUDED_tensor_2eproto
#include <limits>
#include <string>
#include <google/protobuf/port_def.inc>
#if PROTOBUF_VERSION < 3019000
#error This file was generated by a newer version of protoc which is
#error incompatible with your Protocol Buffer headers. Please update
#error your headers.
#endif
#if 3019001 < PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers. Please
#error regenerate this file with a newer version of protoc.
#endif
#include <google/protobuf/port_undef.inc>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/arena.h>
#include <google/protobuf/arenastring.h>
#include <google/protobuf/generated_message_table_driven.h>
#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/metadata_lite.h>
#include <google/protobuf/generated_message_reflection.h>
#include <google/protobuf/message.h>
#include <google/protobuf/repeated_field.h> // IWYU pragma: export
#include <google/protobuf/extension_set.h> // IWYU pragma: export
#include <google/protobuf/unknown_field_set.h>
#include "tensor_shape.pb.h"
#include "types.pb.h"
// @@protoc_insertion_point(includes)
#include <google/protobuf/port_def.inc>
#define PROTOBUF_INTERNAL_EXPORT_tensor_2eproto
PROTOBUF_NAMESPACE_OPEN
namespace internal {
class AnyMetadata;
} // namespace internal
PROTOBUF_NAMESPACE_CLOSE
// Internal implementation detail -- do not use these members.
struct TableStruct_tensor_2eproto {
static const ::PROTOBUF_NAMESPACE_ID::internal::ParseTableField entries[]
PROTOBUF_SECTION_VARIABLE(protodesc_cold);
static const ::PROTOBUF_NAMESPACE_ID::internal::AuxiliaryParseTableField aux[]
PROTOBUF_SECTION_VARIABLE(protodesc_cold);
static const ::PROTOBUF_NAMESPACE_ID::internal::ParseTable schema[1]
PROTOBUF_SECTION_VARIABLE(protodesc_cold);
static const ::PROTOBUF_NAMESPACE_ID::internal::FieldMetadata field_metadata[];
static const ::PROTOBUF_NAMESPACE_ID::internal::SerializationTable serialization_table[];
static const uint32_t offsets[];
};
extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensor_2eproto;
namespace opencv_tensorflow {
class TensorProto;
struct TensorProtoDefaultTypeInternal;
extern TensorProtoDefaultTypeInternal _TensorProto_default_instance_;
} // namespace opencv_tensorflow
PROTOBUF_NAMESPACE_OPEN
template<> ::opencv_tensorflow::TensorProto* Arena::CreateMaybeMessage<::opencv_tensorflow::TensorProto>(Arena*);
PROTOBUF_NAMESPACE_CLOSE
namespace opencv_tensorflow {
// ===================================================================
class TensorProto final :
public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:opencv_tensorflow.TensorProto) */ {
public:
inline TensorProto() : TensorProto(nullptr) {}
~TensorProto() override;
explicit constexpr TensorProto(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
TensorProto(const TensorProto& from);
TensorProto(TensorProto&& from) noexcept
: TensorProto() {
*this = ::std::move(from);
}
inline TensorProto& operator=(const TensorProto& from) {
CopyFrom(from);
return *this;
}
inline TensorProto& operator=(TensorProto&& from) noexcept {
if (this == &from) return *this;
if (GetOwningArena() == from.GetOwningArena()
#ifdef PROTOBUF_FORCE_COPY_IN_MOVE
&& GetOwningArena() != nullptr
#endif // !PROTOBUF_FORCE_COPY_IN_MOVE
) {
InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
return GetDescriptor();
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
return default_instance().GetMetadata().descriptor;
}
static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
return default_instance().GetMetadata().reflection;
}
static const TensorProto& default_instance() {
return *internal_default_instance();
}
static inline const TensorProto* internal_default_instance() {
return reinterpret_cast<const TensorProto*>(
&_TensorProto_default_instance_);
}
static constexpr int kIndexInFileMessages =
0;
friend void swap(TensorProto& a, TensorProto& b) {
a.Swap(&b);
}
inline void Swap(TensorProto* other) {
if (other == this) return;
#ifdef PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() != nullptr &&
GetOwningArena() == other->GetOwningArena()) {
#else // PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() == other->GetOwningArena()) {
#endif // !PROTOBUF_FORCE_COPY_IN_SWAP
InternalSwap(other);
} else {
::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
}
}
void UnsafeArenaSwap(TensorProto* other) {
if (other == this) return;
GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
InternalSwap(other);
}
// implements Message ----------------------------------------------
TensorProto* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final {
return CreateMaybeMessage<TensorProto>(arena);
}
using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
void CopyFrom(const TensorProto& from);
using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
void MergeFrom(const TensorProto& from);
private:
static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message* to, const ::PROTOBUF_NAMESPACE_ID::Message& from);
public:
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
uint8_t* _InternalSerialize(
uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(TensorProto* other);
private:
friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
return "opencv_tensorflow.TensorProto";
}
protected:
explicit TensorProto(::PROTOBUF_NAMESPACE_ID::Arena* arena,
bool is_message_owned = false);
private:
static void ArenaDtor(void* object);
inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
public:
static const ClassData _class_data_;
const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final;
::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kFloatValFieldNumber = 5,
kDoubleValFieldNumber = 6,
kIntValFieldNumber = 7,
kStringValFieldNumber = 8,
kScomplexValFieldNumber = 9,
kInt64ValFieldNumber = 10,
kBoolValFieldNumber = 11,
kDcomplexValFieldNumber = 12,
kHalfValFieldNumber = 13,
kTensorContentFieldNumber = 4,
kTensorShapeFieldNumber = 2,
kDtypeFieldNumber = 1,
kVersionNumberFieldNumber = 3,
};
// repeated float float_val = 5 [packed = true];
int float_val_size() const;
private:
int _internal_float_val_size() const;
public:
void clear_float_val();
private:
float _internal_float_val(int index) const;
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< float >&
_internal_float_val() const;
void _internal_add_float_val(float value);
::PROTOBUF_NAMESPACE_ID::RepeatedField< float >*
_internal_mutable_float_val();
public:
float float_val(int index) const;
void set_float_val(int index, float value);
void add_float_val(float value);
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< float >&
float_val() const;
::PROTOBUF_NAMESPACE_ID::RepeatedField< float >*
mutable_float_val();
// repeated double double_val = 6 [packed = true];
int double_val_size() const;
private:
int _internal_double_val_size() const;
public:
void clear_double_val();
private:
double _internal_double_val(int index) const;
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< double >&
_internal_double_val() const;
void _internal_add_double_val(double value);
::PROTOBUF_NAMESPACE_ID::RepeatedField< double >*
_internal_mutable_double_val();
public:
double double_val(int index) const;
void set_double_val(int index, double value);
void add_double_val(double value);
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< double >&
double_val() const;
::PROTOBUF_NAMESPACE_ID::RepeatedField< double >*
mutable_double_val();
// repeated int32 int_val = 7 [packed = true];
int int_val_size() const;
private:
int _internal_int_val_size() const;
public:
void clear_int_val();
private:
int32_t _internal_int_val(int index) const;
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >&
_internal_int_val() const;
void _internal_add_int_val(int32_t value);
::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >*
_internal_mutable_int_val();
public:
int32_t int_val(int index) const;
void set_int_val(int index, int32_t value);
void add_int_val(int32_t value);
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >&
int_val() const;
::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >*
mutable_int_val();
// repeated bytes string_val = 8;
int string_val_size() const;
private:
int _internal_string_val_size() const;
public:
void clear_string_val();
const std::string& string_val(int index) const;
std::string* mutable_string_val(int index);
void set_string_val(int index, const std::string& value);
void set_string_val(int index, std::string&& value);
void set_string_val(int index, const char* value);
void set_string_val(int index, const void* value, size_t size);
std::string* add_string_val();
void add_string_val(const std::string& value);
void add_string_val(std::string&& value);
void add_string_val(const char* value);
void add_string_val(const void* value, size_t size);
const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField<std::string>& string_val() const;
::PROTOBUF_NAMESPACE_ID::RepeatedPtrField<std::string>* mutable_string_val();
private:
const std::string& _internal_string_val(int index) const;
std::string* _internal_add_string_val();
public:
// repeated float scomplex_val = 9 [packed = true];
int scomplex_val_size() const;
private:
int _internal_scomplex_val_size() const;
public:
void clear_scomplex_val();
private:
float _internal_scomplex_val(int index) const;
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< float >&
_internal_scomplex_val() const;
void _internal_add_scomplex_val(float value);
::PROTOBUF_NAMESPACE_ID::RepeatedField< float >*
_internal_mutable_scomplex_val();
public:
float scomplex_val(int index) const;
void set_scomplex_val(int index, float value);
void add_scomplex_val(float value);
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< float >&
scomplex_val() const;
::PROTOBUF_NAMESPACE_ID::RepeatedField< float >*
mutable_scomplex_val();
// repeated int64 int64_val = 10 [packed = true];
int int64_val_size() const;
private:
int _internal_int64_val_size() const;
public:
void clear_int64_val();
private:
int64_t _internal_int64_val(int index) const;
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< int64_t >&
_internal_int64_val() const;
void _internal_add_int64_val(int64_t value);
::PROTOBUF_NAMESPACE_ID::RepeatedField< int64_t >*
_internal_mutable_int64_val();
public:
int64_t int64_val(int index) const;
void set_int64_val(int index, int64_t value);
void add_int64_val(int64_t value);
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< int64_t >&
int64_val() const;
::PROTOBUF_NAMESPACE_ID::RepeatedField< int64_t >*
mutable_int64_val();
// repeated bool bool_val = 11 [packed = true];
int bool_val_size() const;
private:
int _internal_bool_val_size() const;
public:
void clear_bool_val();
private:
bool _internal_bool_val(int index) const;
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< bool >&
_internal_bool_val() const;
void _internal_add_bool_val(bool value);
::PROTOBUF_NAMESPACE_ID::RepeatedField< bool >*
_internal_mutable_bool_val();
public:
bool bool_val(int index) const;
void set_bool_val(int index, bool value);
void add_bool_val(bool value);
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< bool >&
bool_val() const;
::PROTOBUF_NAMESPACE_ID::RepeatedField< bool >*
mutable_bool_val();
// repeated double dcomplex_val = 12 [packed = true];
int dcomplex_val_size() const;
private:
int _internal_dcomplex_val_size() const;
public:
void clear_dcomplex_val();
private:
double _internal_dcomplex_val(int index) const;
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< double >&
_internal_dcomplex_val() const;
void _internal_add_dcomplex_val(double value);
::PROTOBUF_NAMESPACE_ID::RepeatedField< double >*
_internal_mutable_dcomplex_val();
public:
double dcomplex_val(int index) const;
void set_dcomplex_val(int index, double value);
void add_dcomplex_val(double value);
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< double >&
dcomplex_val() const;
::PROTOBUF_NAMESPACE_ID::RepeatedField< double >*
mutable_dcomplex_val();
// repeated int32 half_val = 13 [packed = true];
int half_val_size() const;
private:
int _internal_half_val_size() const;
public:
void clear_half_val();
private:
int32_t _internal_half_val(int index) const;
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >&
_internal_half_val() const;
void _internal_add_half_val(int32_t value);
::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >*
_internal_mutable_half_val();
public:
int32_t half_val(int index) const;
void set_half_val(int index, int32_t value);
void add_half_val(int32_t value);
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >&
half_val() const;
::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >*
mutable_half_val();
// bytes tensor_content = 4;
void clear_tensor_content();
const std::string& tensor_content() const;
template <typename ArgT0 = const std::string&, typename... ArgT>
void set_tensor_content(ArgT0&& arg0, ArgT... args);
std::string* mutable_tensor_content();
PROTOBUF_NODISCARD std::string* release_tensor_content();
void set_allocated_tensor_content(std::string* tensor_content);
private:
const std::string& _internal_tensor_content() const;
inline PROTOBUF_ALWAYS_INLINE void _internal_set_tensor_content(const std::string& value);
std::string* _internal_mutable_tensor_content();
public:
// .opencv_tensorflow.TensorShapeProto tensor_shape = 2;
bool has_tensor_shape() const;
private:
bool _internal_has_tensor_shape() const;
public:
void clear_tensor_shape();
const ::opencv_tensorflow::TensorShapeProto& tensor_shape() const;
PROTOBUF_NODISCARD ::opencv_tensorflow::TensorShapeProto* release_tensor_shape();
::opencv_tensorflow::TensorShapeProto* mutable_tensor_shape();
void set_allocated_tensor_shape(::opencv_tensorflow::TensorShapeProto* tensor_shape);
private:
const ::opencv_tensorflow::TensorShapeProto& _internal_tensor_shape() const;
::opencv_tensorflow::TensorShapeProto* _internal_mutable_tensor_shape();
public:
void unsafe_arena_set_allocated_tensor_shape(
::opencv_tensorflow::TensorShapeProto* tensor_shape);
::opencv_tensorflow::TensorShapeProto* unsafe_arena_release_tensor_shape();
// .opencv_tensorflow.DataType dtype = 1;
void clear_dtype();
::opencv_tensorflow::DataType dtype() const;
void set_dtype(::opencv_tensorflow::DataType value);
private:
::opencv_tensorflow::DataType _internal_dtype() const;
void _internal_set_dtype(::opencv_tensorflow::DataType value);
public:
// int32 version_number = 3;
void clear_version_number();
int32_t version_number() const;
void set_version_number(int32_t value);
private:
int32_t _internal_version_number() const;
void _internal_set_version_number(int32_t value);
public:
// @@protoc_insertion_point(class_scope:opencv_tensorflow.TensorProto)
private:
class _Internal;
template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
typedef void InternalArenaConstructable_;
typedef void DestructorSkippable_;
::PROTOBUF_NAMESPACE_ID::RepeatedField< float > float_val_;
::PROTOBUF_NAMESPACE_ID::RepeatedField< double > double_val_;
::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t > int_val_;
mutable std::atomic<int> _int_val_cached_byte_size_;
::PROTOBUF_NAMESPACE_ID::RepeatedPtrField<std::string> string_val_;
::PROTOBUF_NAMESPACE_ID::RepeatedField< float > scomplex_val_;
::PROTOBUF_NAMESPACE_ID::RepeatedField< int64_t > int64_val_;
mutable std::atomic<int> _int64_val_cached_byte_size_;
::PROTOBUF_NAMESPACE_ID::RepeatedField< bool > bool_val_;
::PROTOBUF_NAMESPACE_ID::RepeatedField< double > dcomplex_val_;
::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t > half_val_;
mutable std::atomic<int> _half_val_cached_byte_size_;
::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr tensor_content_;
::opencv_tensorflow::TensorShapeProto* tensor_shape_;
int dtype_;
int32_t version_number_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
friend struct ::TableStruct_tensor_2eproto;
};
// ===================================================================
// ===================================================================
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
#endif // __GNUC__
// TensorProto
// .opencv_tensorflow.DataType dtype = 1;
inline void TensorProto::clear_dtype() {
dtype_ = 0;
}
inline ::opencv_tensorflow::DataType TensorProto::_internal_dtype() const {
return static_cast< ::opencv_tensorflow::DataType >(dtype_);
}
inline ::opencv_tensorflow::DataType TensorProto::dtype() const {
// @@protoc_insertion_point(field_get:opencv_tensorflow.TensorProto.dtype)
return _internal_dtype();
}
inline void TensorProto::_internal_set_dtype(::opencv_tensorflow::DataType value) {
dtype_ = value;
}
inline void TensorProto::set_dtype(::opencv_tensorflow::DataType value) {
_internal_set_dtype(value);
// @@protoc_insertion_point(field_set:opencv_tensorflow.TensorProto.dtype)
}
// .opencv_tensorflow.TensorShapeProto tensor_shape = 2;
inline bool TensorProto::_internal_has_tensor_shape() const {
return this != internal_default_instance() && tensor_shape_ != nullptr;
}
inline bool TensorProto::has_tensor_shape() const {
return _internal_has_tensor_shape();
}
inline const ::opencv_tensorflow::TensorShapeProto& TensorProto::_internal_tensor_shape() const {
const ::opencv_tensorflow::TensorShapeProto* p = tensor_shape_;
return p != nullptr ? *p : reinterpret_cast<const ::opencv_tensorflow::TensorShapeProto&>(
::opencv_tensorflow::_TensorShapeProto_default_instance_);
}
inline const ::opencv_tensorflow::TensorShapeProto& TensorProto::tensor_shape() const {
// @@protoc_insertion_point(field_get:opencv_tensorflow.TensorProto.tensor_shape)
return _internal_tensor_shape();
}
inline void TensorProto::unsafe_arena_set_allocated_tensor_shape(
::opencv_tensorflow::TensorShapeProto* tensor_shape) {
if (GetArenaForAllocation() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(tensor_shape_);
}
tensor_shape_ = tensor_shape;
if (tensor_shape) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:opencv_tensorflow.TensorProto.tensor_shape)
}
inline ::opencv_tensorflow::TensorShapeProto* TensorProto::release_tensor_shape() {
::opencv_tensorflow::TensorShapeProto* temp = tensor_shape_;
tensor_shape_ = nullptr;
#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE
auto* old = reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(temp);
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
if (GetArenaForAllocation() == nullptr) { delete old; }
#else // PROTOBUF_FORCE_COPY_IN_RELEASE
if (GetArenaForAllocation() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE
return temp;
}
inline ::opencv_tensorflow::TensorShapeProto* TensorProto::unsafe_arena_release_tensor_shape() {
// @@protoc_insertion_point(field_release:opencv_tensorflow.TensorProto.tensor_shape)
::opencv_tensorflow::TensorShapeProto* temp = tensor_shape_;
tensor_shape_ = nullptr;
return temp;
}
inline ::opencv_tensorflow::TensorShapeProto* TensorProto::_internal_mutable_tensor_shape() {
if (tensor_shape_ == nullptr) {
auto* p = CreateMaybeMessage<::opencv_tensorflow::TensorShapeProto>(GetArenaForAllocation());
tensor_shape_ = p;
}
return tensor_shape_;
}
inline ::opencv_tensorflow::TensorShapeProto* TensorProto::mutable_tensor_shape() {
::opencv_tensorflow::TensorShapeProto* _msg = _internal_mutable_tensor_shape();
// @@protoc_insertion_point(field_mutable:opencv_tensorflow.TensorProto.tensor_shape)
return _msg;
}
inline void TensorProto::set_allocated_tensor_shape(::opencv_tensorflow::TensorShapeProto* tensor_shape) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArenaForAllocation();
if (message_arena == nullptr) {
delete reinterpret_cast< ::PROTOBUF_NAMESPACE_ID::MessageLite*>(tensor_shape_);
}
if (tensor_shape) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper<
::PROTOBUF_NAMESPACE_ID::MessageLite>::GetOwningArena(
reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(tensor_shape));
if (message_arena != submessage_arena) {
tensor_shape = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, tensor_shape, submessage_arena);
}
} else {
}
tensor_shape_ = tensor_shape;
// @@protoc_insertion_point(field_set_allocated:opencv_tensorflow.TensorProto.tensor_shape)
}
// int32 version_number = 3;
inline void TensorProto::clear_version_number() {
version_number_ = 0;
}
inline int32_t TensorProto::_internal_version_number() const {
return version_number_;
}
inline int32_t TensorProto::version_number() const {
// @@protoc_insertion_point(field_get:opencv_tensorflow.TensorProto.version_number)
return _internal_version_number();
}
inline void TensorProto::_internal_set_version_number(int32_t value) {
version_number_ = value;
}
inline void TensorProto::set_version_number(int32_t value) {
_internal_set_version_number(value);
// @@protoc_insertion_point(field_set:opencv_tensorflow.TensorProto.version_number)
}
// bytes tensor_content = 4;
inline void TensorProto::clear_tensor_content() {
tensor_content_.ClearToEmpty();
}
inline const std::string& TensorProto::tensor_content() const {
// @@protoc_insertion_point(field_get:opencv_tensorflow.TensorProto.tensor_content)
return _internal_tensor_content();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void TensorProto::set_tensor_content(ArgT0&& arg0, ArgT... args) {
tensor_content_.SetBytes(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
// @@protoc_insertion_point(field_set:opencv_tensorflow.TensorProto.tensor_content)
}
inline std::string* TensorProto::mutable_tensor_content() {
std::string* _s = _internal_mutable_tensor_content();
// @@protoc_insertion_point(field_mutable:opencv_tensorflow.TensorProto.tensor_content)
return _s;
}
inline const std::string& TensorProto::_internal_tensor_content() const {
return tensor_content_.Get();
}
inline void TensorProto::_internal_set_tensor_content(const std::string& value) {
tensor_content_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* TensorProto::_internal_mutable_tensor_content() {
return tensor_content_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* TensorProto::release_tensor_content() {
// @@protoc_insertion_point(field_release:opencv_tensorflow.TensorProto.tensor_content)
return tensor_content_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void TensorProto::set_allocated_tensor_content(std::string* tensor_content) {
if (tensor_content != nullptr) {
} else {
}
tensor_content_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), tensor_content,
GetArenaForAllocation());
#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
if (tensor_content_.IsDefault(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited())) {
tensor_content_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), "", GetArenaForAllocation());
}
#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
// @@protoc_insertion_point(field_set_allocated:opencv_tensorflow.TensorProto.tensor_content)
}
// repeated int32 half_val = 13 [packed = true];
inline int TensorProto::_internal_half_val_size() const {
return half_val_.size();
}
inline int TensorProto::half_val_size() const {
return _internal_half_val_size();
}
inline void TensorProto::clear_half_val() {
half_val_.Clear();
}
inline int32_t TensorProto::_internal_half_val(int index) const {
return half_val_.Get(index);
}
inline int32_t TensorProto::half_val(int index) const {
// @@protoc_insertion_point(field_get:opencv_tensorflow.TensorProto.half_val)
return _internal_half_val(index);
}
inline void TensorProto::set_half_val(int index, int32_t value) {
half_val_.Set(index, value);
// @@protoc_insertion_point(field_set:opencv_tensorflow.TensorProto.half_val)
}
inline void TensorProto::_internal_add_half_val(int32_t value) {
half_val_.Add(value);
}
inline void TensorProto::add_half_val(int32_t value) {
_internal_add_half_val(value);
// @@protoc_insertion_point(field_add:opencv_tensorflow.TensorProto.half_val)
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >&
TensorProto::_internal_half_val() const {
return half_val_;
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >&
TensorProto::half_val() const {
// @@protoc_insertion_point(field_list:opencv_tensorflow.TensorProto.half_val)
return _internal_half_val();
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >*
TensorProto::_internal_mutable_half_val() {
return &half_val_;
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >*
TensorProto::mutable_half_val() {
// @@protoc_insertion_point(field_mutable_list:opencv_tensorflow.TensorProto.half_val)
return _internal_mutable_half_val();
}
// repeated float float_val = 5 [packed = true];
inline int TensorProto::_internal_float_val_size() const {
return float_val_.size();
}
inline int TensorProto::float_val_size() const {
return _internal_float_val_size();
}
inline void TensorProto::clear_float_val() {
float_val_.Clear();
}
inline float TensorProto::_internal_float_val(int index) const {
return float_val_.Get(index);
}
inline float TensorProto::float_val(int index) const {
// @@protoc_insertion_point(field_get:opencv_tensorflow.TensorProto.float_val)
return _internal_float_val(index);
}
inline void TensorProto::set_float_val(int index, float value) {
float_val_.Set(index, value);
// @@protoc_insertion_point(field_set:opencv_tensorflow.TensorProto.float_val)
}
inline void TensorProto::_internal_add_float_val(float value) {
float_val_.Add(value);
}
inline void TensorProto::add_float_val(float value) {
_internal_add_float_val(value);
// @@protoc_insertion_point(field_add:opencv_tensorflow.TensorProto.float_val)
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< float >&
TensorProto::_internal_float_val() const {
return float_val_;
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< float >&
TensorProto::float_val() const {
// @@protoc_insertion_point(field_list:opencv_tensorflow.TensorProto.float_val)
return _internal_float_val();
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< float >*
TensorProto::_internal_mutable_float_val() {
return &float_val_;
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< float >*
TensorProto::mutable_float_val() {
// @@protoc_insertion_point(field_mutable_list:opencv_tensorflow.TensorProto.float_val)
return _internal_mutable_float_val();
}
// repeated double double_val = 6 [packed = true];
inline int TensorProto::_internal_double_val_size() const {
return double_val_.size();
}
inline int TensorProto::double_val_size() const {
return _internal_double_val_size();
}
inline void TensorProto::clear_double_val() {
double_val_.Clear();
}
inline double TensorProto::_internal_double_val(int index) const {
return double_val_.Get(index);
}
inline double TensorProto::double_val(int index) const {
// @@protoc_insertion_point(field_get:opencv_tensorflow.TensorProto.double_val)
return _internal_double_val(index);
}
inline void TensorProto::set_double_val(int index, double value) {
double_val_.Set(index, value);
// @@protoc_insertion_point(field_set:opencv_tensorflow.TensorProto.double_val)
}
inline void TensorProto::_internal_add_double_val(double value) {
double_val_.Add(value);
}
inline void TensorProto::add_double_val(double value) {
_internal_add_double_val(value);
// @@protoc_insertion_point(field_add:opencv_tensorflow.TensorProto.double_val)
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< double >&
TensorProto::_internal_double_val() const {
return double_val_;
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< double >&
TensorProto::double_val() const {
// @@protoc_insertion_point(field_list:opencv_tensorflow.TensorProto.double_val)
return _internal_double_val();
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< double >*
TensorProto::_internal_mutable_double_val() {
return &double_val_;
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< double >*
TensorProto::mutable_double_val() {
// @@protoc_insertion_point(field_mutable_list:opencv_tensorflow.TensorProto.double_val)
return _internal_mutable_double_val();
}
// repeated int32 int_val = 7 [packed = true];
inline int TensorProto::_internal_int_val_size() const {
return int_val_.size();
}
inline int TensorProto::int_val_size() const {
return _internal_int_val_size();
}
inline void TensorProto::clear_int_val() {
int_val_.Clear();
}
inline int32_t TensorProto::_internal_int_val(int index) const {
return int_val_.Get(index);
}
inline int32_t TensorProto::int_val(int index) const {
// @@protoc_insertion_point(field_get:opencv_tensorflow.TensorProto.int_val)
return _internal_int_val(index);
}
inline void TensorProto::set_int_val(int index, int32_t value) {
int_val_.Set(index, value);
// @@protoc_insertion_point(field_set:opencv_tensorflow.TensorProto.int_val)
}
inline void TensorProto::_internal_add_int_val(int32_t value) {
int_val_.Add(value);
}
inline void TensorProto::add_int_val(int32_t value) {
_internal_add_int_val(value);
// @@protoc_insertion_point(field_add:opencv_tensorflow.TensorProto.int_val)
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >&
TensorProto::_internal_int_val() const {
return int_val_;
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >&
TensorProto::int_val() const {
// @@protoc_insertion_point(field_list:opencv_tensorflow.TensorProto.int_val)
return _internal_int_val();
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >*
TensorProto::_internal_mutable_int_val() {
return &int_val_;
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< int32_t >*
TensorProto::mutable_int_val() {
// @@protoc_insertion_point(field_mutable_list:opencv_tensorflow.TensorProto.int_val)
return _internal_mutable_int_val();
}
// repeated bytes string_val = 8;
inline int TensorProto::_internal_string_val_size() const {
return string_val_.size();
}
inline int TensorProto::string_val_size() const {
return _internal_string_val_size();
}
inline void TensorProto::clear_string_val() {
string_val_.Clear();
}
inline std::string* TensorProto::add_string_val() {
std::string* _s = _internal_add_string_val();
// @@protoc_insertion_point(field_add_mutable:opencv_tensorflow.TensorProto.string_val)
return _s;
}
inline const std::string& TensorProto::_internal_string_val(int index) const {
return string_val_.Get(index);
}
inline const std::string& TensorProto::string_val(int index) const {
// @@protoc_insertion_point(field_get:opencv_tensorflow.TensorProto.string_val)
return _internal_string_val(index);
}
inline std::string* TensorProto::mutable_string_val(int index) {
// @@protoc_insertion_point(field_mutable:opencv_tensorflow.TensorProto.string_val)
return string_val_.Mutable(index);
}
inline void TensorProto::set_string_val(int index, const std::string& value) {
string_val_.Mutable(index)->assign(value);
// @@protoc_insertion_point(field_set:opencv_tensorflow.TensorProto.string_val)
}
inline void TensorProto::set_string_val(int index, std::string&& value) {
string_val_.Mutable(index)->assign(std::move(value));
// @@protoc_insertion_point(field_set:opencv_tensorflow.TensorProto.string_val)
}
inline void TensorProto::set_string_val(int index, const char* value) {
GOOGLE_DCHECK(value != nullptr);
string_val_.Mutable(index)->assign(value);
// @@protoc_insertion_point(field_set_char:opencv_tensorflow.TensorProto.string_val)
}
inline void TensorProto::set_string_val(int index, const void* value, size_t size) {
string_val_.Mutable(index)->assign(
reinterpret_cast<const char*>(value), size);
// @@protoc_insertion_point(field_set_pointer:opencv_tensorflow.TensorProto.string_val)
}
inline std::string* TensorProto::_internal_add_string_val() {
return string_val_.Add();
}
inline void TensorProto::add_string_val(const std::string& value) {
string_val_.Add()->assign(value);
// @@protoc_insertion_point(field_add:opencv_tensorflow.TensorProto.string_val)
}
inline void TensorProto::add_string_val(std::string&& value) {
string_val_.Add(std::move(value));
// @@protoc_insertion_point(field_add:opencv_tensorflow.TensorProto.string_val)
}
inline void TensorProto::add_string_val(const char* value) {
GOOGLE_DCHECK(value != nullptr);
string_val_.Add()->assign(value);
// @@protoc_insertion_point(field_add_char:opencv_tensorflow.TensorProto.string_val)
}
inline void TensorProto::add_string_val(const void* value, size_t size) {
string_val_.Add()->assign(reinterpret_cast<const char*>(value), size);
// @@protoc_insertion_point(field_add_pointer:opencv_tensorflow.TensorProto.string_val)
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField<std::string>&
TensorProto::string_val() const {
// @@protoc_insertion_point(field_list:opencv_tensorflow.TensorProto.string_val)
return string_val_;
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField<std::string>*
TensorProto::mutable_string_val() {
// @@protoc_insertion_point(field_mutable_list:opencv_tensorflow.TensorProto.string_val)
return &string_val_;
}
// repeated float scomplex_val = 9 [packed = true];
inline int TensorProto::_internal_scomplex_val_size() const {
return scomplex_val_.size();
}
inline int TensorProto::scomplex_val_size() const {
return _internal_scomplex_val_size();
}
inline void TensorProto::clear_scomplex_val() {
scomplex_val_.Clear();
}
inline float TensorProto::_internal_scomplex_val(int index) const {
return scomplex_val_.Get(index);
}
inline float TensorProto::scomplex_val(int index) const {
// @@protoc_insertion_point(field_get:opencv_tensorflow.TensorProto.scomplex_val)
return _internal_scomplex_val(index);
}
inline void TensorProto::set_scomplex_val(int index, float value) {
scomplex_val_.Set(index, value);
// @@protoc_insertion_point(field_set:opencv_tensorflow.TensorProto.scomplex_val)
}
inline void TensorProto::_internal_add_scomplex_val(float value) {
scomplex_val_.Add(value);
}
inline void TensorProto::add_scomplex_val(float value) {
_internal_add_scomplex_val(value);
// @@protoc_insertion_point(field_add:opencv_tensorflow.TensorProto.scomplex_val)
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< float >&
TensorProto::_internal_scomplex_val() const {
return scomplex_val_;
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< float >&
TensorProto::scomplex_val() const {
// @@protoc_insertion_point(field_list:opencv_tensorflow.TensorProto.scomplex_val)
return _internal_scomplex_val();
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< float >*
TensorProto::_internal_mutable_scomplex_val() {
return &scomplex_val_;
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< float >*
TensorProto::mutable_scomplex_val() {
// @@protoc_insertion_point(field_mutable_list:opencv_tensorflow.TensorProto.scomplex_val)
return _internal_mutable_scomplex_val();
}
// repeated int64 int64_val = 10 [packed = true];
inline int TensorProto::_internal_int64_val_size() const {
return int64_val_.size();
}
inline int TensorProto::int64_val_size() const {
return _internal_int64_val_size();
}
inline void TensorProto::clear_int64_val() {
int64_val_.Clear();
}
inline int64_t TensorProto::_internal_int64_val(int index) const {
return int64_val_.Get(index);
}
inline int64_t TensorProto::int64_val(int index) const {
// @@protoc_insertion_point(field_get:opencv_tensorflow.TensorProto.int64_val)
return _internal_int64_val(index);
}
inline void TensorProto::set_int64_val(int index, int64_t value) {
int64_val_.Set(index, value);
// @@protoc_insertion_point(field_set:opencv_tensorflow.TensorProto.int64_val)
}
inline void TensorProto::_internal_add_int64_val(int64_t value) {
int64_val_.Add(value);
}
inline void TensorProto::add_int64_val(int64_t value) {
_internal_add_int64_val(value);
// @@protoc_insertion_point(field_add:opencv_tensorflow.TensorProto.int64_val)
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< int64_t >&
TensorProto::_internal_int64_val() const {
return int64_val_;
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< int64_t >&
TensorProto::int64_val() const {
// @@protoc_insertion_point(field_list:opencv_tensorflow.TensorProto.int64_val)
return _internal_int64_val();
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< int64_t >*
TensorProto::_internal_mutable_int64_val() {
return &int64_val_;
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< int64_t >*
TensorProto::mutable_int64_val() {
// @@protoc_insertion_point(field_mutable_list:opencv_tensorflow.TensorProto.int64_val)
return _internal_mutable_int64_val();
}
// repeated bool bool_val = 11 [packed = true];
inline int TensorProto::_internal_bool_val_size() const {
return bool_val_.size();
}
inline int TensorProto::bool_val_size() const {
return _internal_bool_val_size();
}
inline void TensorProto::clear_bool_val() {
bool_val_.Clear();
}
inline bool TensorProto::_internal_bool_val(int index) const {
return bool_val_.Get(index);
}
inline bool TensorProto::bool_val(int index) const {
// @@protoc_insertion_point(field_get:opencv_tensorflow.TensorProto.bool_val)
return _internal_bool_val(index);
}
inline void TensorProto::set_bool_val(int index, bool value) {
bool_val_.Set(index, value);
// @@protoc_insertion_point(field_set:opencv_tensorflow.TensorProto.bool_val)
}
inline void TensorProto::_internal_add_bool_val(bool value) {
bool_val_.Add(value);
}
inline void TensorProto::add_bool_val(bool value) {
_internal_add_bool_val(value);
// @@protoc_insertion_point(field_add:opencv_tensorflow.TensorProto.bool_val)
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< bool >&
TensorProto::_internal_bool_val() const {
return bool_val_;
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< bool >&
TensorProto::bool_val() const {
// @@protoc_insertion_point(field_list:opencv_tensorflow.TensorProto.bool_val)
return _internal_bool_val();
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< bool >*
TensorProto::_internal_mutable_bool_val() {
return &bool_val_;
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< bool >*
TensorProto::mutable_bool_val() {
// @@protoc_insertion_point(field_mutable_list:opencv_tensorflow.TensorProto.bool_val)
return _internal_mutable_bool_val();
}
// repeated double dcomplex_val = 12 [packed = true];
inline int TensorProto::_internal_dcomplex_val_size() const {
return dcomplex_val_.size();
}
inline int TensorProto::dcomplex_val_size() const {
return _internal_dcomplex_val_size();
}
inline void TensorProto::clear_dcomplex_val() {
dcomplex_val_.Clear();
}
inline double TensorProto::_internal_dcomplex_val(int index) const {
return dcomplex_val_.Get(index);
}
inline double TensorProto::dcomplex_val(int index) const {
// @@protoc_insertion_point(field_get:opencv_tensorflow.TensorProto.dcomplex_val)
return _internal_dcomplex_val(index);
}
inline void TensorProto::set_dcomplex_val(int index, double value) {
dcomplex_val_.Set(index, value);
// @@protoc_insertion_point(field_set:opencv_tensorflow.TensorProto.dcomplex_val)
}
inline void TensorProto::_internal_add_dcomplex_val(double value) {
dcomplex_val_.Add(value);
}
inline void TensorProto::add_dcomplex_val(double value) {
_internal_add_dcomplex_val(value);
// @@protoc_insertion_point(field_add:opencv_tensorflow.TensorProto.dcomplex_val)
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< double >&
TensorProto::_internal_dcomplex_val() const {
return dcomplex_val_;
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< double >&
TensorProto::dcomplex_val() const {
// @@protoc_insertion_point(field_list:opencv_tensorflow.TensorProto.dcomplex_val)
return _internal_dcomplex_val();
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< double >*
TensorProto::_internal_mutable_dcomplex_val() {
return &dcomplex_val_;
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< double >*
TensorProto::mutable_dcomplex_val() {
// @@protoc_insertion_point(field_mutable_list:opencv_tensorflow.TensorProto.dcomplex_val)
return _internal_mutable_dcomplex_val();
}
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif // __GNUC__
// @@protoc_insertion_point(namespace_scope)
} // namespace opencv_tensorflow
// @@protoc_insertion_point(global_scope)
#include <google/protobuf/port_undef.inc>
#endif // GOOGLE_PROTOBUF_INCLUDED_GOOGLE_PROTOBUF_INCLUDED_tensor_2eproto
| C | 2 | yash112-lang/opencv | modules/dnn/misc/tensorflow/tensor.pb.h | [
"Apache-2.0"
] |
setwd(normalizePath(dirname(R.utils::commandArgs(asValues=TRUE)$"f")))
source("../../../scripts/h2o-r-test-setup.R")
test.model.generic.predict <- function(encoding) {
# Train a model
airlines <- h2o.importFile(path = locate('smalldata/testng/airlines_train.csv'))
airlines_test <- h2o.importFile(path = locate('smalldata/testng/airlines_test.csv'))
cols <- c("Origin", "Distance")
model <- h2o.gbm(x=cols, y = "IsDepDelayed", ntrees = 10,
training_frame = airlines,
categorical_encoding = encoding)
predictions <- as.data.frame(h2o.predict(model, airlines_test))
contributions <- as.data.frame(h2o.predict_contributions(model, airlines_test))
# Download MOJO representation
mojo_name <- h2o.download_mojo(model = model, path = sandbox())
mojo_path <- file.path(sandbox(), mojo_name)
# Import MOJO
mojo_model <- h2o.import_mojo(mojo_path)
# Test scoring is available on the model
if (encoding == "AUTO") {
mojo_predictions <- as.data.frame(h2o.predict(mojo_model, airlines_test))
expect_equal(mojo_predictions, predictions)
} else {
print("Prediction test will be skipped - see PUBDEV-8230")
}
# Test predict contributions is available on the model
mojo_contributions <- as.data.frame(h2o.predict_contributions(mojo_model, airlines_test))
expect_equal(mojo_contributions, contributions)
}
make.model.generic.predict.test.suite <- function() {
test.model.generic.predict.auto <- function() {
test.model.generic.predict("AUTO")
}
test.model.generic.predict.binary <- function() {
test.model.generic.predict("Binary")
}
test.model.generic.predict.1hot <- function() {
test.model.generic.predict("OneHotExplicit")
}
makeSuite(
test.model.generic.predict.auto,
test.model.generic.predict.binary,
test.model.generic.predict.1hot,
)
}
doSuite("Generic model from GBM MOJO", make.model.generic.predict.test.suite())
| R | 5 | vishalbelsare/h2o-3 | h2o-r/tests/testdir_algos/generic/runit_generic_model.r | [
"Apache-2.0"
] |
/* Copyright 2017-2020 The Verible 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.
*/
%{
#define _COMMANDFILE_FLEXLEXER_H_
#include "common/analysis/command_file_lexer.h"
#define yy_set_top_state(state) { yy_pop_state(); yy_push_state(state); }
%}
%option c++
%option never-interactive
%option nodefault
%option nounistd
%option noyywrap
%option prefix="veribleCommandFile"
%option yyclass="verible::CommandFileLexer"
%option yylineno
LineTerminator \r|\n|\r\n
InputCharacter [^\r\n\0]
Space [ \t\f\b]
DecimalDigits [0-9]+
Alpha [a-zA-Z]
AnyChar ({Alpha}|{DecimalDigits}|-|_|:)
Name {Alpha}({Alpha}|-|_)*
Value ({AnyChar})*
QuotedValue ([^\\\"\n]|\\.)*
Quote \"
Command {Name}
ParamPrefix --
Flag {ParamPrefix}{Name}
FlagWithArg {ParamPrefix}{Name}=
Arg {Value}
Param {Value}
StartComment #
EOLComment {StartComment}({InputCharacter}*)
%x COMMAND
%x ARG
%x QUOTED_ARG
%x COMMENT
%%
{Command} {
UpdateLocation();
yy_push_state(COMMAND);
return CFG_TK_COMMAND;
}
<COMMAND>{Param} {
UpdateLocation();
return CFG_TK_PARAM;
}
<COMMAND>{Flag} {
UpdateLocation();
return CFG_TK_FLAG;
}
<COMMAND>{FlagWithArg} {
UpdateLocation();
yy_push_state(ARG);
return CFG_TK_FLAG_WITH_ARG;
}
<COMMAND>{EOLComment} {
UpdateLocation();
yy_push_state(COMMENT);
return CFG_TK_COMMENT;
}
<ARG>{Quote} {
UpdateLocation();
yy_set_top_state(QUOTED_ARG);
}
<QUOTED_ARG>{QuotedValue} {
UpdateLocation();
return CFG_TK_ARG;
}
<QUOTED_ARG>{Quote} {
UpdateLocation();
yy_pop_state();
}
<ARG>{Value} {
UpdateLocation();
yy_pop_state();
return CFG_TK_ARG;
}
<COMMAND>{LineTerminator} {
UpdateLocation();
yy_pop_state();
return CFG_TK_NEWLINE;
}
<COMMAND><<EOF>> {
UpdateLocation();
yy_pop_state();
return CFG_TK_NEWLINE;
}
<INITIAL>{LineTerminator} {
UpdateLocation();
}
{EOLComment} {
UpdateLocation();
yy_push_state(COMMENT);
return CFG_TK_COMMENT;
}
<COMMENT>{LineTerminator} {
UpdateLocation();
yy_pop_state();
return CFG_TK_NEWLINE;
}
<COMMENT><<EOF>> {
UpdateLocation();
yy_pop_state();
return CFG_TK_NEWLINE;
}
<*>{LineTerminator} {
UpdateLocation();
return CFG_TK_ERROR;
}
<*>{Space} {
UpdateLocation();
}
<*>. {
UpdateLocation();
return CFG_TK_ERROR;
}
%%
| Lex | 4 | imphil/verible | common/analysis/command_file.lex | [
"Apache-2.0"
] |
label ccb2010:
call gl(0,"bgcc0005")
call vsp(1,0)
call vsp(0,1)
with wipeleft
play bgm "bgm/bgm010.ogg"
"楽しい登校。"
"なのに。"
"冬子はむくれていた。"
太一 "「……」"
call gl(1,"TCKT0002|TCKT000x")
call gp(1,t=center)#x=230
call vsp(1,1)
with dissolve
冬子 "「……」"
太一 "「…………」"
冬子 "「…………」"
太一 "「ねえ」"
call gl(1,"TCKT0005|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu002"
冬子 "「……ふん」"
"バリヤーが張ってある。"
太一 "「うーん」"
"今朝からずっとこんな調子だった。"
"昨夜はずっと気絶していたから、まったく心当たりがない。"
"予想できることといえば、気絶している時に夢遊病みたいになにかしてしまった……。"
太一 "「……うーむ」"
"ありえた。"
"朝起きるなり、すでに絶頂で機嫌悪かったからな。"
太一 "「おーい」"
call gl(1,"TCKT0002|TCKT000x")
call vsp(1,1)
with dissolve
冬子 "「……」"
"駄目か。"
"一人でつかつか先に行く冬子。"
"追いすがる。"
"隣に並ぶ。"
"気位の高い冬子は、まるでこっちを見ようともしない。"
"これはこれで美しいが、原因が判然としないのがどうもな。"
"片手を伸ばして、胸をわしづかみにしてみた。"
call gl(1,"TCKT0004|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu004"
冬子 "「いっ!?」"
with vpunch
太一 "「おまえって全然おっぱいないヨネ!」"
call gl(5,"bgcc0000e")
call gl(4,"sgcc0012")
call vsp(5,1)
with dissolve
stop bgm
play se "se106"
call vsp(5,0)
call vsp(1,0)
call vsp(4,1)
with Dissolve(500.0/1000.0)
voice "vfccb2010fyu005"
冬子 "「おだまりーーーーっ!!」"
with vpunch
太一 "「お嬢様ーーーーーっ!!」"
"ゆったりと回転しながら薄い稜線を描いて飛んでいたが頭の一部が地面に接触した瞬間急激に制動がかかり一本軸状の車輪と化して高速回転しつつ大地を駆け抜けそのままブーメランのような勢いで雑木林の中に突入した。"
太一 "「ハラキリ拳……無敵の合戦術だ……」"
hide pic4
with dissolve
"冬子に居合道と武術を伝えた祖父(故人)も、無敵の鬼神とか言われてたな。"
"武術界ではすごい有名人で、猛牛を素手で殺した映像がネットに流出していた。"
play bgm "bgm/bgm010.ogg"
call gl(1,"TCKT0011|TCKT0011")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu006"
冬子 "「……ぐるるる」"
"でコレ、その孫。"
"弱いはずがなかった。"
太一 "「ミストーコ、なに怒ってるデスカ?」"
call gl(1,"TCKT0002|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu007"
冬子 "「……ふん、馬鹿!」"
"あ、いい感じ。"
"でも怒りの理由がわからない。"
太一 "「桐原さん、自分が生理だからって人に当たるのはよくないと思うんだ、僕」"
call gl(1,"TCKT0003|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu008"
冬子 "「いたいけな少年口調で猥雑なこと言わないでよっ!!」"
voice "vfccb2010fyu009"
冬子 "「それと生理じゃない!」"
太一 "「うむ。俺のデータによると、桐原のメンストレーションはまだ一週間ほど先に―――」"
call gl(1,"TCKT0011|TCKT0011")
call vsp(1,1)
with dissolve
play se "SE003"
with vpunch
"げいん!"
太一 "「……ぐう」"
"殴られた。"
call gl(1,"TCKT0003|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu010"
冬子 "「どうしてそこまで知ってるのよ! 死んでよ!」"
太一 "「死ぬまでもなく殺されそうなんだが……」"
call gl(1,"TCKT0002|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu011"
冬子 "「知らない!」"
"知らないって……。"
太一 "「男と一緒に住みだした翌日から不機嫌というのは、さすがの俺でもわけがわからないんだが」"
"冬子のかんばせが、さっと朱に塗りかえられる。"
"羞恥ではなく、怒りで。"
call gl(1,"TCKT0003|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu012"
冬子 "「自分の胸に聞いたら!?」"
hide pic1
with dissolve
"ずかずかずか"
"先に歩いていく。"
"自分の胸って……。"
"男だからまったいらだ。"
"……そうじゃないな。"
"自分の胸に聞く。"
"冬子がいつまでご機嫌だったか。"
"昨日こっちに移住するまでは確かにニコニコしていた。"
"で、確か俺の魂の一部が火刑に処されて―――"
"クラッ"
"めまいがした。"
"まだ信じられない。"
"我が子を失った悲しみとは、このようなものだろうか。"
"もう俺は、書物に頼ることはできないんだ。"
"架空受精させた、幾人ものアイドルたちが脳裏をよぎる。"
太一 "「さらば……」"
"さておき、冬子だ。"
"昨日は確か、ショックを受けてそのまま気絶してしまったんだ。"
"夕飯も抜きだったな。"
"朝も抜きだ。"
"ちなみにとても空腹だったりする。"
"ポン"
太一 "「それか」"
"お嬢様がご機嫌ナナメな理由がわかった。"
"ならご機嫌取りは簡単だな。"
"わかってしまえば、あとは今のカリカリ具合を楽しむ余裕さえ出てきて。"
stop bgm
太一 "「~」"
"鼻歌まじりに、道筋をたどった。"
call gl(0,"bgcc0011")
call vsp(0,1)
with wipeleft
"門も開きっぱなしか。"
play bgm "bgm/bgm016.ogg"
"まるで俺たちを迎え入れるよう。"
"牢獄なのだと思っていた。"
"けど今は、優しい胎のように安心できる場所だ。"
"人はいない。"
"どこにもいない。"
"ただ学校だけが、群青学院だけが、自然に集まりあえる場所。"
"引き寄せられて過去を営む。"
"実際、この人類滅亡は相当にキツい。"
"トドメになったのだと思う。ほとんどの人間に。"
"俺には福音となり、彼らには落胆と緩慢な死を。"
"そして冬子は我が家に来るしかなくなった。"
stop bgm
"皮肉である。"
call gl(0,"bgcc0009")
call vsp(0,1)
with wipeleft
play bgm "bgm/bgm002.ogg"
"食堂に来た。"
"人の気配がした。"
太一 "「なにやつ?」"
"返事がない。"
"かすかな物音がする方に近づく。"
voice "vmccb2010sku000"
桜庭 "「……っっ」"
"桜庭だった。"
"冷たい床に座り込んでいて、小刻みに肩を揺すっている。"
stop bgm
"なにかを貪り食っているような……。"
"一心不乱だ。"
太一 "「?」"
play se "se101"
"背後に立つ。"
太一 "「らば?」"
"呼びかけると、"
voice "vmccb2010sku001"
桜庭 "「……太一ィィィ」"
太一 "「ぎょえーーーーっ!!」"
play bgm "bgm/bgm010.ogg"
"つい蹴りが飛んだ。"
"前蹴りだ。"
play se "SE003"
with vpunch
"槍と化したつま先が顔面にめりこむ。"
桜庭 "「……」"
play se "se038"
with vpunch
"桜庭は無言で倒れ伏した。"
"すぐ起きた。ノーダメージだ。"
call gl(1,"TCSH0000|tcsh")
call gp(1,t=center)#x=190
call vsp(1,1)
with dissolve
voice "vmccb2010sku003"
桜庭 "「何をする」"
"クールに言った。"
太一 "「貴様が不気味な顔をしているからだ」"
call gl(1,"TCSH0003|tcsh")
call vsp(1,1)
with dissolve
voice "vmccb2010sku004"
桜庭 "「……フ、侵害だな」"
"絶対漢字を間違えていると確信していた。"
"だっておバカなんだもん。"
太一 "「食ってたのか?」"
call gl(1,"TCSH0000|tcsh")
call vsp(1,1)
with dissolve
voice "vmccb2010sku005"
桜庭 "「ああ、見ての通りだ」"
太一 "「……カレーパンか」"
"桜庭の好物だ。"
"学食の余り物らしい。"
voice "vmccb2010sku006"
桜庭 "「なぜかここにケース単位で余っていた」"
call gl(1,"TCSH0002|tcsh")
call vsp(1,1)
with dissolve
voice "vmccb2010sku007"
桜庭 "「誰も食わないので、俺が頂戴したわけだ」"
太一 "「まずいからな、それ」"
call gl(1,"TCSH0000|tcsh")
call vsp(1,1)
with dissolve
voice "vmccb2010sku008"
桜庭 "「フ」"
太一 "「そのフって笑うのやめろ。ムカつく」"
call gl(1,"TCSH0002|tcsh")
call vsp(1,1)
with dissolve
voice "vmccb2010sku009"
桜庭 "「腐ってしまうからな」"
"てんで聞いてない。"
"すでに桜庭の周囲には、無数の包みが散乱していた。"
call gl(1,"TCSH0000|tcsh")
call vsp(1,1)
with dissolve
voice "vmccb2010sku010"
桜庭 "「おまえもどうだ?」"
太一 "「いらん」"
voice "vmccb2010sku011"
桜庭 "「そうか」"
voice "vmccb2010sku012"
桜庭 "「オレはオレの正義を、決しておまえに押しつけないぜ」"
太一 "「ありがとう」"
"桜庭は話の脈絡とかまったく気にしない。"
voice "vmccb2010sku013"
桜庭 "「礼はいい」"
"微笑む。"
"カレーパンにかぶりつく。"
太一 "「朝からこんなに食ってるのか……」"
call gl(1,"TCSH0003|tcsh")
call vsp(1,1)
with dissolve
voice "vmccb2010sku014"
桜庭 "「ああ、人生最後のカレーパンになるかもしれないしな」"
"懸命に食う桜庭。"
"もはやそれは、カレーパンとの格闘に等しい。"
"しかし。"
"学食というのは盲点だったな。"
太一 "「……他にパンはないのか?」"
call gl(1,"TCSH0000|tcsh")
call vsp(1,1)
with dissolve
voice "vmccb2010sku015"
桜庭 "「あった」"
太一 "「過去形だな」"
"食い尽くしたか。"
voice "vmccb2010sku016"
桜庭 "「カレーパン以外はいらないから捨てた」"
"蹴りが飛んだ。"
"殺す気だった。"
play se "SE003"
with vpunch
voice "vmccb2010sku017"
桜庭 "「……フッ」"
hide pic1
with dissolve
play se "se038"
with vpunch
"延髄を斬りすてた。桜庭は棒きれのように転げた。"
太一 "「……どうしておまえはいつもそうなんだ」"
call gl(1,"TCSH0000|tcsh")
call gp(1,t=center)
call vsp(1,1)
with dissolve
voice "vmccb2010sku018"
桜庭 "「礼はいい」"
"平然と立ち上がり、言った。"
太一 "「わいてんのか!」"
太一 "「どこに捨てた!」"
call gl(1,"TCSH0002|tcsh")
call vsp(1,1)
with dissolve
voice "vmccb2010sku019"
桜庭 "「忘れた」"
play se "SE003"
with vpunch
"顔面に正拳。"
太一 "「……危機的状況下において、おまえという友達がいてくれて本当に心強いよ」"
call gl(1,"TCSH0001|tcsh")
call vsp(1,1)
with dissolve
voice "vmccb2010sku020"
桜庭 "「気にするな」"
"犯罪的なボケだ。"
"まだ俺の方が可愛い。"
太一 "「まったく残ってないのかー!」"
"多重に重なったケースを検分していく。"
太一 "「あった」"
"コロッケパンだ。"
"桜庭の甘さが幸いしてか、まるまる残っていた。"
太一 "「あるじゃないか」"
call gl(1,"TCSH0002|tcsh")
call vsp(1,1)
with dissolve
voice "vmccb2010sku021"
桜庭 "「そういうこともあるだろう」"
太一 "「これ、全部もらっていくからな」"
call gl(1,"TCSH0000|tcsh")
call vsp(1,1)
with dissolve
voice "vmccb2010sku022"
桜庭 "「好きにしてくれ」"
"食料はあっさり手に入った。"
stop bgm
call gl(0,"bgcc0006")
call vsp(0,1)
call vsp(1,0)
with wipeleft
pause (500.0/1000.0)
call gl(0,"evcc0011")
call vsp(0,1)
with wipeleft
"はたして冬子はそこにいた。"
play bgm "bgm/bgm013.ogg"
太一 "「お早いご通学で」"
冬子 "「……」"
太一 "「しかもまた私服通学か」"
太一 "「よくそんな暑そうな格好ができるな」"
"無視。"
太一 "「へいへい」"
"肩をすくめて、冬子のすぐ隣……自分の席に座る。"
"横顔を眺める。"
"黙殺しているようで、こっちを意識しているのがわかる。"
太一 "「昨夜は悪かったな」"
太一 "「おまえの言うとおり、自分の胸に聞いてみたよ」"
太一 "「バッドだぜ」"
太一 "「けどもう平気さ。オレもおまえもハッピーだ」"
"冬子が身じろぎした。"
"こちらを向く。"
voice "vfccb2010fyu014"
冬子 "「……太一はいつもそう」"
voice "vfccb2010fyu015"
冬子 "「私のことなんて、目に入ってないみたいで」"
voice "vfccb2010fyu016"
冬子 "「すぐひとりで……勝手に行動して」"
太一 "「まったくだ。反省してる」"
voice "vfccb2010fyu017"
冬子 "「ちょっとくらい、構ってほしいのに」"
太一 "「そう思って……用意してきた」"
voice "vfccb2010fyu018"
冬子 "「用意?」"
stop bgm
"冬子の机の上に、コロッケパンをどさどさ。"
太一 "「さあ、好きなだけ餓えを満たすがいい!」"
call gl(0,"bgcc0006")
call vsp(0,1)
call gl(1,"TCKT0003|TCKT000x")
call gp(1,t=center)#x=230
call vsp(1,1)
with Dissolve(500.0/1000.0)
voice "vfccb2010fyu019"
冬子 "「ちがーう!!」"
play se "SE077"
"くるるー"
"しかし冬子の腹は鳴った。"
call gl(1,"TCKT0004|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu020"
冬子 "「はふっ!?」"
太一 "「腹の虫」"
call gl(1,"TCKT0003|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu021"
冬子 "「こっ、これは違うの!」"
play se "SE077"
"くる、くるるー"
"腹の虫。"
太一 "「腹の虫アゲイン」"
call gl(1,"TCKT0002|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu022"
冬子 "「だからこれは別件!」"
太一 "「隠しても無駄だ、俺は腹の虫と会話できるんだぞ?」"
call gl(1,"TCKT0001|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu023"
冬子 "「…………はぃ?」"
太一 "「とにかくおまえは空腹なのだ」"
太一 "「ちなみに俺も空腹だ」"
太一 "「そこで一時間目の授業は、コロッケパンとする」"
"パッケージを破り、一つ目にくらいついた。"
"幸いなことに、腐ってはいないようだ。"
太一 "「ついでに仲直りの時間ともする」"
太一 "「……道徳ってやつかな」"
call gl(1,"TCKT0000|TCKT000x")
call vsp(1,1)
with dissolve
"冬子は唖然としていた。"
"けど。"
play bgm "bgm/bgm021.ogg"
voice "vfccb2010fyu024"
冬子 "「……ぷっ」"
"すぐに笑った。"
voice "vfccb2010fyu025"
冬子 "「授業なんて単語聞いたの、数日ぶり」"
太一 "「毎日来てたじゃん。あれ、ひとり授業だったんじゃないの?」"
call gl(1,"TCKT0002|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu026"
冬子 "「……そうかもね」"
"パンを手にとる。"
call gl(0,"evcc0022b")
call vsp(0,1)
call vsp(1,0)
with ImageDissolve("sys/EFMSK_22_MSK.bmp",time=1)
voice "vfccb2010fyu027"
冬子 "「昨日の夕食、楽しみにしてたのにな」"
太一 "「あ、おまえ俺を便利なコックがわりにするために……」"
voice "vfccb2010fyu028"
冬子 "「ち、違うわよ!」"
voice "vfccb2010fyu029"
冬子 "「……一緒にごはん食べられるかなって」"
太一 "「今食べてる」"
voice "vfccb2010fyu030"
冬子 "「……はいはい。わからないヤツはいつまでもわかってくれないわけね」"
太一 "「?」"
voice "vfccb2010fyu031"
冬子 "「いただきます!」"
"怒りながら食べ出す。"
voice "vfccb2010fyu032"
冬子 "「……おいしい」"
太一 "「空腹の時はなんでもうまいのさ」"
voice "vfccb2010fyu033"
冬子 "「……それだけじゃないわよ」"
"チラリと流し目。"
太一 "「他になにか?」"
voice "vfccb2010fyu034"
冬子 "「その……雰囲気とかも重要でしょ」"
太一 "「そうだね。よくわからんけど」"
voice "vfccb2010fyu035"
冬子 "「だから、ええと……ほら、味もわからないくらい切ない気持ちになったりとか」"
太一 "「すごく上手いよ。ソースが濃厚で」"
"モチャモチャと咀嚼しながら言った。"
voice "vfccb2010fyu036"
冬子 "「だからだから、一緒に食べるメンツ次第でけっこう違うじゃない?」"
太一 "「そーお?」"
voice "vfccb2010fyu037"
冬子 "「くっ……」"
voice "vfccb2010fyu038"
冬子 "「もし私がここからいなくなったら、太一だって寂しくなっちゃったりとか……」"
太一 "「え、もうパンいらないの? あと俺が全部もらっちゃうよ?」"
call gl(4,"sgcc0012")
stop bgm
hide pic1
with dissolve
call vsp(4,1)
with dissolve
play se "se106"
with vpunch
voice "vfccb2010fyu039"
冬子 "「だから好きな人と一緒に食べるとおいしいって言外に言ってるのにどうしてわかってくれないのぶつわよーーーっ!!」"
太一 "「もうぶたれてるっちゃーーーーっ!」"
hide pic4
with dissolve
play bgm "bgm/bgm021.ogg"
voice "vfccb2010fyu040"
冬子 "「……ニブチン」"
太一 "「乙女心は英語のようだ。さっぱりわからん」"
voice "vfccb2010fyu041"
冬子 "「はーあ、女子校出身者の夢って、いっこも叶わないのよね」"
太一 "「男子の夢だって叶わないさ」"
voice "vfccb2010fyu042"
冬子 "「どんな?」"
太一 "「……全員美処女で全員レズで姉妹の契りみたいなイベントがあって」"
voice "vfccb2010fyu043"
冬子 "「キモい」"
太一 "「キモい言うな! ドリームじゃ!」"
voice "vfccb2010fyu044"
冬子 "「男子って、そんな歪んだ妄想抱いてるの?」"
太一 "「こんなんで歪んでる言われたら、スクブル野郎はアルファ ケンタウリに住む異星人だな」"
voice "vfccb2010fyu045"
冬子 "「すくぶる?」"
太一 "「気にしないでいい」"
"というか、してはならない。"
太一 "「今となっては、もう手に入らないしな」"
voice "vfccb2010fyu046"
冬子 "「?」"
"小首をかしげた。"
太一 "「で、そっちの夢って?」"
"頬張ったパンでリスのようにほっぺを膨らませながら問う。"
voice "vfccb2010fyu047"
冬子 "「……やめてよ、そんな顔見せないで」"
太一 "「どうして?」"
voice "vfccb2010fyu048"
冬子 "「そんな冬眠前みたいな太一見たくない」"
太一 "「……この冬眠前のリスみたいな俺もまた同じ太一なんだよ」"
太一 "「結局どうしてお嬢様はご機嫌斜めだったのか謎のままじゃないか」"
冬子 "「……………………」"
"お?"
"赤面したぞ?"
voice "vfccb2010fyu050"
冬子 "「……すん」"
"うわ。"
"泣き出した。"
"俺は乙女の涙に弱い。"
太一 "「あああ、泣かれても……どうしたら」"
"おろおろおろおろ"
voice "vfccb2010fyu051"
冬子 "「……嬉しくない」"
太一 "「え?」"
voice "vfccb2010fyu052"
冬子 "「嬉しくない嬉しくない」"
"また、冬子お嬢様のワガママなお年頃がはじまったゾ。"
太一 "「いったい何が嬉しくないの? 俺にできることならするよ?」"
"キッと顔をあげて冬子。"
voice "vfccb2010fyu053"
冬子 "「太一は、私と暮らすのが嬉しくないのよ」"
"プチ叙述トリックっ!?"
"俺のことかよ!"
太一 "「はーん?」"
stop bgm
voice "vfccb2010fyu054"
冬子 "「……き、きのうだって何もしなかったし……」"
太一 "「気絶してたんじゃねぇか誰かさんのせいで」"
太一 "「ん、何もしなかった? それが不機嫌の理由?」"
"え、それって……。"
voice "vfccb2010fyu055"
冬子 "「なによ!」"
太一 "「セックスしたかったの?」"
"拳の中から親指をのぞかせた(両方)。"
call gl(4,"sgcc0012")
play se "SE078"
hide pic1
with dissolve
call vsp(4,1)
with dissolve
with vpunch
冬子 "「……………………」"
太一 "「……………………」"
"冬子は無言で打擲し、俺もまた無言で受け止めた。"
"美しき予定調和なのだった。"
hide pic4
with dissolve
"そしてまたパン。"
play bgm "bgm/bgm020.ogg"
voice "vfccb2010fyu057"
冬子 "「……ひっく」"
"涙ぐむ。"
太一 "「…………」"
"ほんと、無邪気なもんだな。"
"世界が滅びたってのに、のんきに色恋。"
call gl(5,"efcc0004")
call vsp(5,1)
with Dissolve(500.0/1000.0)
with dissolve
call gl(0,"efcc0001")
call vsp(0,1)
with dissolve
call gl(0,"evcc0032")
call vsp(0,1)
with dissolve
call gl(0,"efcc0001")
call vsp(0,1)
with dissolve
play se "SE016"
call gl(0,"evcc0022b")
call vsp(0,1)
with dissolve
hide pic5
with dissolve
"確かに……冬子は他に逃げ場所を持たない。"
"そうしたのは、俺なのだ。"
"俺の戯れが、変えたんだ。"
"報いか……。"
"あるいは責か。"
"いずれにしても、最後までつきあう義務はあった。"
stop bgm
太一 "「ぃヨシッ!」"
call gl(0,"bgcc0006")
call gl(1,"TCKT0004|TCKT000x")
call gp(1,t=center)#x=230
call vsp(1,1)
call vsp(0,1)
with ImageDissolve("sys/EFMSK_22_MSK.bmp",time=1)
"冬子はびくっとした。"
call gl(1,"TCKT0000|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu058"
冬子 "「……なによ」"
太一 "「決めた。俺、冬子の王子様になるよ」"
play bgm "bgm/bgm011.ogg"
call gl(1,"TCKT0001|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu059"
冬子 "「…………………………………………ぇ?」"
"超引いていた。"
太一 "「心配するな。おまえが深層意識で王子を求めていることを俺は知っている」"
太一 "「ドンと来なさい」"
"冬子は眠たげな目で俺をねめつけた。"
太一 "「じゃあ……Hしますか」"
"眠たげな目は点になった。"
call gl(1,"TCKT0004|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu060"
冬子 "「ほえっ!?」"
太一 "「さあ、脱げ」"
voice "vfccb2010fyu061"
冬子 "「なっなっなっなっ?」"
"目を白黒させる。"
"よし、ここで冬子好みの決めセリフと行くか。"
太一 "「ミス トーコ、ユーにQI(求愛)」"
"決まった。"
voice "vfccb2010fyu062"
冬子 "「ほ、ほ、ほ……本当にするのっ?」"
太一 "「いかにも」"
call gl(1,"TCKT0006|TCKT0006")
call vsp(1,1)
with dissolve
冬子 "「…………」"
"恥じ入った。"
太一 "「どうした。満腹になったところで性欲を満たそう」"
"手を取る。"
call gl(1,"TCKT0003|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu064"
冬子 "「そんな三大欲求を順番に満たすみたいなのはいやーーーーーっ!!」"
太一 "「よし、じゃあ適当にイチャイチャして、ムードを高めよう」"
call gl(1,"TCKT0001|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu065"
冬子 "「そーいうのもいやよっ!」"
太一 "「強引なのが好きなんだな?」"
"キラリと俺は目を光らせた。"
"衣服に手をかける。"
太一 "「さあさあさあ」"
"脱がそうとする。"
"肩をはだけた。"
call gl(1,"TCKT0002|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu066"
冬子 "「あのっ、そのっ、学校、学校だから、あっ、ああぁあ~???」"
"戸惑っている。"
"可哀相に。"
太一 "「心配はいらないよ。さあもっと脱いで、控えめおっぱいと桃色ビーチクンを俺に見せなさい」"
call gl(1,"TCKT0003|TCKT000x")
call vsp(1,1)
with dissolve
voice "vfccb2010fyu067"
冬子 "「ダ、ダメェェーーーーーーーーーーーーッッッ!!」"
stop bgm
call gl(5,"bgcc0000d")
play se "SE003"
call vsp(5,1)
with dissolve
with vpunch
"ゴインッ!"
太一 "「きゅう」"
play se "SE018"
with vpunch
"俺は気絶した。"
pause (1000.0/1000.0)
pause (1000.0/1000.0)
call gl(0,"bgcc0006")
call vsp(5,0)
call vsp(1,0)
call vsp(4,0)
call vsp(0,1)
with Pixellate(300.0*2/1000.0,5)
"目が覚めると、冬子はいなかった。"
太一 "「ううむ」"
"はじめてでもあるまいし。"
"……恋愛ごっこって難しい。"
"トイレ行こ。"
return
# | Ren'Py | 3 | fossabot/cross-channel_chinese-localization_project | AllPlatforms/scripts/ccb/ccb2010.rpy | [
"Apache-2.0"
] |
set(WINRT TRUE)
add_definitions(-DWINRT -DNO_GETENV)
# Making definitions available to other configurations and
# to filter dependency restrictions at compile time.
if(WINDOWS_PHONE)
set(WINRT_PHONE TRUE)
add_definitions(-DWINRT_PHONE)
elseif(WINDOWS_STORE)
set(WINRT_STORE TRUE)
add_definitions(-DWINRT_STORE)
endif()
if(CMAKE_SYSTEM_VERSION MATCHES 10)
set(WINRT_10 TRUE)
add_definitions(-DWINRT_10)
add_definitions(/DWINVER=_WIN32_WINNT_WIN10 /DNTDDI_VERSION=NTDDI_WIN10 /D_WIN32_WINNT=_WIN32_WINNT_WIN10)
elseif(CMAKE_SYSTEM_VERSION MATCHES 8.1)
set(WINRT_8_1 TRUE)
add_definitions(-DWINRT_8_1)
add_definitions(/DWINVER=_WIN32_WINNT_WINBLUE /DNTDDI_VERSION=NTDDI_WINBLUE /D_WIN32_WINNT=_WIN32_WINNT_WINBLUE)
elseif(CMAKE_SYSTEM_VERSION MATCHES 8.0)
set(WINRT_8_0 TRUE)
add_definitions(-DWINRT_8_0)
add_definitions(/DWINVER=_WIN32_WINNT_WIN8 /DNTDDI_VERSION=NTDDI_WIN8 /D_WIN32_WINNT=_WIN32_WINNT_WIN8)
else()
message(STATUS "Unsupported WINRT version (consider upgrading OpenCV): ${CMAKE_SYSTEM_VERSION}")
endif()
set(OPENCV_DEBUG_POSTFIX "")
| CMake | 4 | thisisgopalmandal/opencv | cmake/platforms/OpenCV-WinRT.cmake | [
"BSD-3-Clause"
] |
set ylabel "Number of events"
set title "Utilisation of Garbage collection events (young, full)"
plot for [i in "YGC FGC"] datafile using 1:i title columnheader(i) with lines
| Gnuplot | 3 | evtr/keycloak | testsuite/performance/tests/src/main/gnuplot/jstat/gc-ev.gp | [
"Apache-2.0"
] |
(* Proofs about the safety of expression evaluation *)
theory EvalSafe
imports Semantics TypeSystemProps
begin
lemma Expr_safe:
assumes wfe: "\<Gamma> \<turnstile> e : \<tau>"
and wfg: "WfStore \<Delta> \<Theta> G \<Gamma>"
shows "\<exists>v. G \<Turnstile> e \<down> v \<and> WfWValue \<Delta> \<Theta> v \<tau>"
using wfe wfg
proof induct
case (wfVar \<Gamma> x \<tau>)
have "WfStore \<Delta> \<Theta> G \<Gamma>" and "\<Gamma> x = Some \<tau>" by fact+
then obtain v where "G x = Some v" and "WfWValue \<Delta> \<Theta> v \<tau>"
by (auto elim!: submap_stE WfStore.cases)
thus ?case by simp
next
case (wfBinCmp \<Gamma> e\<^sub>1 e\<^sub>2 bop)
thus ?case
by (clarsimp elim!: WfNatVE WfPNatVE intro!: WfWValue.intros WfPrimValue.intros)
next
case (wfBinOp \<Gamma> e\<^sub>1 e\<^sub>2 bop)
thus ?case
by (clarsimp elim!: WfNatVE WfPNatVE intro!: WfWValue.intros WfPrimValue.intros)
qed (auto intro: WfWValue.intros WfPrimValue.intros)
lemma Expr_safeE:
assumes wfe: "\<Gamma> \<turnstile> e : \<tau>"
and wfg: "WfStore \<Delta> \<Theta> G \<Gamma>"
and rl: "\<And>v. \<lbrakk> G \<Turnstile> e \<down> v; WfWValue \<Delta> \<Theta> v \<tau> \<rbrakk> \<Longrightarrow> R"
shows R
using wfe wfg by (auto dest!: Expr_safe intro: rl)
lemma ImpureExpr_safeE:
notes subheap_refl [intro]
fixes \<tau> :: "'r wtype"
assumes wfe: "\<Gamma>, \<rho> \<turnstile>I e : \<tau>"
and wfs: "WfStore \<Delta> \<Theta> st \<Gamma>" "WfHeap H \<Theta>" "H \<noteq> []" "WfFrees \<Delta> \<Gamma> \<rho> (length \<Theta> - 1)"
obtains H' \<Theta>' v where "st \<Turnstile> H, e \<Down> H', v" "WfHeap H' \<Theta>'" "WfWValue \<Delta> \<Theta>' v \<tau>" "subheap \<Theta> \<Theta>'"
using wfe wfs
proof (induction)
case (wfPure \<Gamma> e \<tau> \<rho>)
note that = wfPure.prems(1)
have "\<Gamma> \<turnstile> e : \<tau>" by fact+
then obtain v where "st \<Turnstile> e \<down> v" "WfWValue \<Delta> \<Theta> v \<tau>" using `WfStore \<Delta> \<Theta> st \<Gamma>`
by (auto elim!: Expr_safeE )
thus ?case using `WfHeap H \<Theta>`
by (auto intro!: that)
next
case (wfNewRef \<Gamma> e \<tau> \<rho>)
note that = wfNewRef.prems(1)
from `\<Gamma> \<turnstile> e : Prim \<tau>` `WfStore \<Delta> \<Theta> st \<Gamma>` obtain v where "st \<Turnstile> e \<down> PrimV v" "WfPrimValue v \<tau>"
by (auto elim!: Expr_safeE WfWValue.cases)
show ?case
proof (rule that)
let ?region = "(length H - 1)"
let ?off = "fresh_in_heap H ?region"
let ?H' = "take ?region H @ [(H ! ?region)(?off \<mapsto> StoredV v)]"
let ?\<Theta>' = "take ?region \<Theta> @ [(\<Theta> ! ?region)(?off \<mapsto> Stored \<tau>)]"
from `WfHeap H \<Theta>` have fin: "finite (dom (lookup_heap H ?region))"
by (auto elim: WfHeap.cases)
with `WfHeap H \<Theta>`
have "?off \<notin> dom (lookup_heap \<Theta> ?region)"
by (rule contra_subsetD [OF WfHeap_dom' fresh_in_heap_fresh])
from `st \<Turnstile> e \<down> PrimV v` `H \<noteq> []`
show "st \<Turnstile> H, NewRef e \<Down> ?H', RefV ?region ?off"
by (clarsimp simp: Let_def update_heap_def)
from `WfHeap H \<Theta>` have "length \<Theta> = length H" by (rule WfHeap_length [symmetric])
with `H \<noteq> []` have "update_heap \<Theta> ?region ?off (Stored \<tau>) = Some ?\<Theta>'"
by (auto simp add: update_heap_def diff_Suc_less)
from `WfPrimValue v \<tau>` have "WfHValue (StoredV v) (Stored \<tau>)" ..
with `WfHeap H \<Theta>` show "WfHeap ?H' ?\<Theta>'"
proof (rule WfHeap_upd [OF _ _ refl])
from `H \<noteq> []` show "update_heap H ?region ?off (StoredV v) = Some ?H'"
by (simp add: update_heap_def)
from fin show "?off \<notin> dom (lookup_heap H ?region)"
by (rule fresh_in_heap_fresh)
qed fact
have notin: "?off \<notin> dom (lookup_heap \<Theta> ?region)" by fact
show "subheap \<Theta> ?\<Theta>'" using `length \<Theta> = length H` `H \<noteq> []`
using subheap_take_drop [OF notin refl] by simp
show "WfWValue \<Delta> ?\<Theta>' (RefV ?region ?off) (RefT \<rho> (Stored \<tau>))"
proof
from `length \<Theta> = length H`
show "lookup_heap ?\<Theta>' ?region ?off = Some (Stored \<tau>)"
by (auto simp: lookup_heap_Some_iff nth_append min_absorb2 )
from `WfFrees \<Delta> \<Gamma> \<rho> (length \<Theta> - 1)` `length \<Theta> = length H`
show "\<Delta> \<rho> = Some ?region" by (clarsimp elim!: WfFreesE)
qed
qed
next
case (wfReadRef \<Gamma> e \<gamma> \<tau> \<rho>)
note that = wfReadRef.prems(1)
from `\<Gamma> \<turnstile> e : RefT \<gamma> (Stored \<tau>)` `WfStore \<Delta> \<Theta> st \<Gamma>`
obtain v where "st \<Turnstile> e \<down> v" "WfWValue \<Delta> \<Theta> v (RefT \<gamma> (Stored \<tau>))"
by (erule Expr_safeE)
moreover from `WfWValue \<Delta> \<Theta> v (RefT \<gamma> (Stored \<tau>))`
obtain region off where "v = RefV region off"
"lookup_heap \<Theta> region off = Some (Stored \<tau>)" by (rule WfRefVE)
from `WfHeap H \<Theta>` `lookup_heap \<Theta> region off = Some (Stored \<tau>)`
obtain v' where "lookup_heap H region off = Some (StoredV v')" and "WfPrimValue v' \<tau>"
by (auto elim!: WfHeap_inversionE WfHValue.cases)
show ?case
proof (rule that)
from `st \<Turnstile> e \<down> v` `v = RefV region off` `lookup_heap H region off = Some (StoredV v')`
show "st \<Turnstile> H, ReadRef e \<Down> H, PrimV v'" by simp
from `WfPrimValue v' \<tau>` show "WfWValue \<Delta> \<Theta> (PrimV v') (Prim \<tau>)" ..
qed fact+
next
case (wfWriteRef \<Gamma> e\<^sub>2 \<tau> e\<^sub>1 \<gamma> \<rho>)
note that = wfWriteRef.prems(1)
from `\<Gamma> \<turnstile> e\<^sub>1 : RefT \<gamma> (Stored \<tau>)` `WfStore \<Delta> \<Theta> st \<Gamma>`
obtain v where "st \<Turnstile> e\<^sub>1 \<down> v" "WfWValue \<Delta> \<Theta> v (RefT \<gamma> (Stored \<tau>))"
by (erule Expr_safeE)
from `WfWValue \<Delta> \<Theta> v (RefT \<gamma> (Stored \<tau>))`
obtain region off where "v = RefV region off"
"lookup_heap \<Theta> region off = Some (Stored \<tau>)" by (rule WfRefVE)
from `\<Gamma> \<turnstile> e\<^sub>2 : Prim \<tau>` `WfStore \<Delta> \<Theta> st \<Gamma>`
obtain v' where "st \<Turnstile> e\<^sub>2 \<down> PrimV v'" "WfPrimValue v' \<tau>"
by (auto elim!: Expr_safeE WfWValue.cases)
from `WfHeap H \<Theta>` `lookup_heap \<Theta> region off = Some (Stored \<tau>)`
obtain hv where "lookup_heap H region off = Some (StoredV hv)"
by (auto elim!: WfHeap_inversionE WfHValue.cases)
then obtain H' where "update_heap H region off (StoredV v') = Some H'"
by (rule lookup_heap_into_update_heap_same)
show ?case
proof (rule that)
from `st \<Turnstile> e\<^sub>1 \<down> v` `v = RefV region off` `st \<Turnstile> e\<^sub>2 \<down> PrimV v'`
`update_heap H region off (StoredV v') = Some H'`
show "st \<Turnstile> H, WriteRef e\<^sub>1 e\<^sub>2 \<Down> H', PrimV UnitV"
by clarsimp
show "WfWValue \<Delta> \<Theta> (PrimV UnitV) (Prim UnitT)" by (intro WfWValue.intros WfPrimValue.intros)
from `WfHeap H \<Theta>` `WfPrimValue v' \<tau>`
`update_heap H region off (StoredV v') = Some H'`
`lookup_heap \<Theta> region off = Some (Stored \<tau>)`
show "WfHeap H' \<Theta>"
by (rule WfHeap_upd_same_type [OF _ wfStoredV])
qed rule
qed
(* Combines WfStateE and ImpureExpr_safeE *)
lemma ImpureExpr_safe_stateE:
notes subheap_refl [intro]
assumes wfe: "\<Gamma>, \<rho> \<turnstile>I e : \<tau>"
and wfs: "WfState S \<Gamma> \<Psi> \<tau>' b \<rho>"
obtains H' \<Theta>' \<Delta> v where "store S \<Turnstile> heap S, e \<Down> H', v" "WfHeap H' \<Theta>'"
"WfStore \<Delta> \<Theta>' (store S) \<Gamma>" "WfWValue \<Delta> \<Theta>' v \<tau>" "WfStack \<Psi> \<Delta> \<Theta>' (stack S) \<tau>' b \<rho>"
"WfFrees \<Delta> \<Gamma> \<rho> (length \<Theta>' - 1)"
proof -
from wfs obtain \<Theta> \<Delta> where
"WfStore \<Delta> \<Theta> (store S) \<Gamma>"
"WfHeap (heap S) \<Theta>"
"WfStack \<Psi> \<Delta> \<Theta> (stack S) \<tau>' b \<rho>"
"WfFrees \<Delta> \<Gamma> \<rho> (length \<Theta> - 1)"
..
moreover
from `WfStack \<Psi> \<Delta> \<Theta> (stack S) \<tau>' b \<rho>` `WfHeap (heap S) \<Theta>` have "heap S \<noteq> []"
by (rule WfStack_heap_not_empty)
ultimately obtain H' \<Theta>' v where "store S \<Turnstile> heap S, e \<Down> H', v" "WfHeap H' \<Theta>'"
"WfWValue \<Delta> \<Theta>' v \<tau>" "subheap \<Theta> \<Theta>'"
using wfe
by (auto elim!: ImpureExpr_safeE dest: WfHeap_length)
from `subheap \<Theta> \<Theta>'` have "length \<Theta> = length \<Theta>'" by (rule subheap_lengthD)
show ?thesis
proof (rule that)
show "WfStore \<Delta> \<Theta>' (store S) \<Gamma>" by (rule WfStore_heap_mono) fact+
show "WfStack \<Psi> \<Delta> \<Theta>' (stack S) \<tau>' b \<rho>" by (rule WfStack_mono) fact+
from `length \<Theta> = length \<Theta>'` show "WfFrees \<Delta> \<Gamma> \<rho> (length \<Theta>' - 1)"
by (rule subst) fact
qed fact+
qed
end | Isabelle | 4 | cyy9447/ivory | ivory-formal-model/EvalSafe.thy | [
"BSD-3-Clause"
] |
@include bar (
rgba(
50
50
.50
50 ...
// comment
)
)
| SCSS | 0 | szynkowskij/prettier | tests/format/scss/scss/arbitrary-arguments-comment.scss | [
"MIT"
] |
package com.baeldung.examples.slack;
public interface ErrorReporter {
void reportProblem(String problem);
}
| Java | 3 | DBatOWL/tutorials | slack/src/main/java/com/baeldung/examples/slack/ErrorReporter.java | [
"MIT"
] |
/**
* This file is part of the Phalcon Framework.
*
* (c) Phalcon Team <team@phalcon.io>
*
* For the full copyright and license information, please view the LICENSE.txt
* file that was distributed with this source code.
*/
namespace Phalcon\Acl;
/**
* Interface for Phalcon\Acl\Role
*/
interface RoleInterface
{
/**
* Returns the role name
*/
public function getName() -> string;
/**
* Returns role description
*/
public function getDescription() -> string;
/**
* Magic method __toString
*/
public function __toString() -> string;
}
| Zephir | 4 | tidytrax/cphalcon | phalcon/Acl/RoleInterface.zep | [
"BSD-3-Clause"
] |
# ===========================================================================
# https://www.gnu.org/software/autoconf-archive/ax_prog_doxygen.html
# ===========================================================================
#
# SYNOPSIS
#
# DX_INIT_DOXYGEN(PROJECT-NAME, [DOXYFILE-PATH], [OUTPUT-DIR], ...)
# DX_DOXYGEN_FEATURE(ON|OFF)
# DX_DOT_FEATURE(ON|OFF)
# DX_HTML_FEATURE(ON|OFF)
# DX_CHM_FEATURE(ON|OFF)
# DX_CHI_FEATURE(ON|OFF)
# DX_MAN_FEATURE(ON|OFF)
# DX_RTF_FEATURE(ON|OFF)
# DX_XML_FEATURE(ON|OFF)
# DX_PDF_FEATURE(ON|OFF)
# DX_PS_FEATURE(ON|OFF)
#
# DESCRIPTION
#
# The DX_*_FEATURE macros control the default setting for the given
# Doxygen feature. Supported features are 'DOXYGEN' itself, 'DOT' for
# generating graphics, 'HTML' for plain HTML, 'CHM' for compressed HTML
# help (for MS users), 'CHI' for generating a separate .chi file by the
# .chm file, and 'MAN', 'RTF', 'XML', 'PDF' and 'PS' for the appropriate
# output formats. The environment variable DOXYGEN_PAPER_SIZE may be
# specified to override the default 'a4wide' paper size.
#
# By default, HTML, PDF and PS documentation is generated as this seems to
# be the most popular and portable combination. MAN pages created by
# Doxygen are usually problematic, though by picking an appropriate subset
# and doing some massaging they might be better than nothing. CHM and RTF
# are specific for MS (note that you can't generate both HTML and CHM at
# the same time). The XML is rather useless unless you apply specialized
# post-processing to it.
#
# The macros mainly control the default state of the feature. The use can
# override the default by specifying --enable or --disable. The macros
# ensure that contradictory flags are not given (e.g.,
# --enable-doxygen-html and --enable-doxygen-chm,
# --enable-doxygen-anything with --disable-doxygen, etc.) Finally, each
# feature will be automatically disabled (with a warning) if the required
# programs are missing.
#
# Once all the feature defaults have been specified, call DX_INIT_DOXYGEN
# with the following parameters: a one-word name for the project for use
# as a filename base etc., an optional configuration file name (the
# default is '$(srcdir)/Doxyfile', the same as Doxygen's default), and an
# optional output directory name (the default is 'doxygen-doc'). To run
# doxygen multiple times for different configuration files and output
# directories provide more parameters: the second, forth, sixth, etc
# parameter are configuration file names and the third, fifth, seventh,
# etc parameter are output directories. No checking is done to catch
# duplicates.
#
# Automake Support
#
# The DX_RULES substitution can be used to add all needed rules to the
# Makefile. Note that this is a substitution without being a variable:
# only the @DX_RULES@ syntax will work.
#
# The provided targets are:
#
# doxygen-doc: Generate all doxygen documentation.
#
# doxygen-run: Run doxygen, which will generate some of the
# documentation (HTML, CHM, CHI, MAN, RTF, XML)
# but will not do the post processing required
# for the rest of it (PS, PDF).
#
# doxygen-ps: Generate doxygen PostScript documentation.
#
# doxygen-pdf: Generate doxygen PDF documentation.
#
# Note that by default these are not integrated into the automake targets.
# If doxygen is used to generate man pages, you can achieve this
# integration by setting man3_MANS to the list of man pages generated and
# then adding the dependency:
#
# $(man3_MANS): doxygen-doc
#
# This will cause make to run doxygen and generate all the documentation.
#
# The following variable is intended for use in Makefile.am:
#
# DX_CLEANFILES = everything to clean.
#
# Then add this variable to MOSTLYCLEANFILES.
#
# LICENSE
#
# Copyright (c) 2009 Oren Ben-Kiki <oren@ben-kiki.org>
# Copyright (c) 2015 Olaf Mandel <olaf@mandel.name>
#
# Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty provided the copyright notice
# and this notice are preserved. This file is offered as-is, without any
# warranty.
#serial 24
## ----------##
## Defaults. ##
## ----------##
DX_ENV=""
AC_DEFUN([DX_FEATURE_doc], OFF)
AC_DEFUN([DX_FEATURE_dot], OFF)
AC_DEFUN([DX_FEATURE_man], OFF)
AC_DEFUN([DX_FEATURE_html], ON)
AC_DEFUN([DX_FEATURE_chm], OFF)
AC_DEFUN([DX_FEATURE_chi], OFF)
AC_DEFUN([DX_FEATURE_rtf], OFF)
AC_DEFUN([DX_FEATURE_xml], OFF)
AC_DEFUN([DX_FEATURE_pdf], ON)
AC_DEFUN([DX_FEATURE_ps], ON)
## --------------- ##
## Private macros. ##
## --------------- ##
# DX_ENV_APPEND(VARIABLE, VALUE)
# ------------------------------
# Append VARIABLE="VALUE" to DX_ENV for invoking doxygen and add it
# as a substitution (but not a Makefile variable). The substitution
# is skipped if the variable name is VERSION.
AC_DEFUN([DX_ENV_APPEND],
[AC_SUBST([DX_ENV], ["$DX_ENV $1='$2'"])dnl
m4_if([$1], [VERSION], [], [AC_SUBST([$1], [$2])dnl
AM_SUBST_NOTMAKE([$1])])dnl
])
# DX_DIRNAME_EXPR
# ---------------
# Expand into a shell expression prints the directory part of a path.
AC_DEFUN([DX_DIRNAME_EXPR],
[[expr ".$1" : '\(\.\)[^/]*$' \| "x$1" : 'x\(.*\)/[^/]*$']])
# DX_IF_FEATURE(FEATURE, IF-ON, IF-OFF)
# -------------------------------------
# Expands according to the M4 (static) status of the feature.
AC_DEFUN([DX_IF_FEATURE], [ifelse(DX_FEATURE_$1, ON, [$2], [$3])])
# DX_REQUIRE_PROG(VARIABLE, PROGRAM)
# ----------------------------------
# Require the specified program to be found for the DX_CURRENT_FEATURE to work.
AC_DEFUN([DX_REQUIRE_PROG], [
AC_PATH_TOOL([$1], [$2])
if test "$DX_FLAG_[]DX_CURRENT_FEATURE$$1" = 1; then
if test "x$2" = "xdoxygen"; then
AC_MSG_ERROR([$2 not found - will not DX_CURRENT_DESCRIPTION])
else
AC_MSG_WARN([$2 not found - will not DX_CURRENT_DESCRIPTION])
fi
AC_SUBST(DX_FLAG_[]DX_CURRENT_FEATURE, 0)
fi
])
# DX_TEST_FEATURE(FEATURE)
# ------------------------
# Expand to a shell expression testing whether the feature is active.
AC_DEFUN([DX_TEST_FEATURE], [test "$DX_FLAG_$1" = 1])
# DX_CHECK_DEPEND(REQUIRED_FEATURE, REQUIRED_STATE)
# -------------------------------------------------
# Verify that a required features has the right state before trying to turn on
# the DX_CURRENT_FEATURE.
AC_DEFUN([DX_CHECK_DEPEND], [
test "$DX_FLAG_$1" = "$2" \
|| AC_MSG_ERROR([doxygen-DX_CURRENT_FEATURE ifelse([$2], 1,
requires, contradicts) doxygen-$1])
])
# DX_CLEAR_DEPEND(FEATURE, REQUIRED_FEATURE, REQUIRED_STATE)
# ----------------------------------------------------------
# Turn off the DX_CURRENT_FEATURE if the required feature is off.
AC_DEFUN([DX_CLEAR_DEPEND], [
test "$DX_FLAG_$1" = "$2" || AC_SUBST(DX_FLAG_[]DX_CURRENT_FEATURE, 0)
])
# DX_FEATURE_ARG(FEATURE, DESCRIPTION,
# CHECK_DEPEND, CLEAR_DEPEND,
# REQUIRE, DO-IF-ON, DO-IF-OFF)
# --------------------------------------------
# Parse the command-line option controlling a feature. CHECK_DEPEND is called
# if the user explicitly turns the feature on (and invokes DX_CHECK_DEPEND),
# otherwise CLEAR_DEPEND is called to turn off the default state if a required
# feature is disabled (using DX_CLEAR_DEPEND). REQUIRE performs additional
# requirement tests (DX_REQUIRE_PROG). Finally, an automake flag is set and
# DO-IF-ON or DO-IF-OFF are called according to the final state of the feature.
AC_DEFUN([DX_ARG_ABLE], [
AC_DEFUN([DX_CURRENT_FEATURE], [$1])
AC_DEFUN([DX_CURRENT_DESCRIPTION], [$2])
AC_ARG_ENABLE(doxygen-$1,
[AS_HELP_STRING(DX_IF_FEATURE([$1], [--disable-doxygen-$1],
[--enable-doxygen-$1]),
DX_IF_FEATURE([$1], [don't $2], [$2]))],
[
case "$enableval" in
#(
y|Y|yes|Yes|YES)
AC_SUBST([DX_FLAG_$1], 1)
$3
;; #(
n|N|no|No|NO)
AC_SUBST([DX_FLAG_$1], 0)
;; #(
*)
AC_MSG_ERROR([invalid value '$enableval' given to doxygen-$1])
;;
esac
], [
AC_SUBST([DX_FLAG_$1], [DX_IF_FEATURE([$1], 1, 0)])
$4
])
if DX_TEST_FEATURE([$1]); then
$5
:
fi
if DX_TEST_FEATURE([$1]); then
$6
:
else
$7
:
fi
])
## -------------- ##
## Public macros. ##
## -------------- ##
# DX_XXX_FEATURE(DEFAULT_STATE)
# -----------------------------
AC_DEFUN([DX_DOXYGEN_FEATURE], [AC_DEFUN([DX_FEATURE_doc], [$1])])
AC_DEFUN([DX_DOT_FEATURE], [AC_DEFUN([DX_FEATURE_dot], [$1])])
AC_DEFUN([DX_MAN_FEATURE], [AC_DEFUN([DX_FEATURE_man], [$1])])
AC_DEFUN([DX_HTML_FEATURE], [AC_DEFUN([DX_FEATURE_html], [$1])])
AC_DEFUN([DX_CHM_FEATURE], [AC_DEFUN([DX_FEATURE_chm], [$1])])
AC_DEFUN([DX_CHI_FEATURE], [AC_DEFUN([DX_FEATURE_chi], [$1])])
AC_DEFUN([DX_RTF_FEATURE], [AC_DEFUN([DX_FEATURE_rtf], [$1])])
AC_DEFUN([DX_XML_FEATURE], [AC_DEFUN([DX_FEATURE_xml], [$1])])
AC_DEFUN([DX_XML_FEATURE], [AC_DEFUN([DX_FEATURE_xml], [$1])])
AC_DEFUN([DX_PDF_FEATURE], [AC_DEFUN([DX_FEATURE_pdf], [$1])])
AC_DEFUN([DX_PS_FEATURE], [AC_DEFUN([DX_FEATURE_ps], [$1])])
# DX_INIT_DOXYGEN(PROJECT, [CONFIG-FILE], [OUTPUT-DOC-DIR], ...)
# --------------------------------------------------------------
# PROJECT also serves as the base name for the documentation files.
# The default CONFIG-FILE is "$(srcdir)/Doxyfile" and OUTPUT-DOC-DIR is
# "doxygen-doc".
# More arguments are interpreted as interleaved CONFIG-FILE and
# OUTPUT-DOC-DIR values.
AC_DEFUN([DX_INIT_DOXYGEN], [
# Files:
AC_SUBST([DX_PROJECT], [$1])
AC_SUBST([DX_CONFIG], ['ifelse([$2], [], [$(srcdir)/Doxyfile], [$2])'])
AC_SUBST([DX_DOCDIR], ['ifelse([$3], [], [doxygen-doc], [$3])'])
m4_if(m4_eval(3 < m4_count($@)), 1, [m4_for([DX_i], 4, m4_count($@), 2,
[AC_SUBST([DX_CONFIG]m4_eval(DX_i[/2]),
'm4_default_nblank_quoted(m4_argn(DX_i, $@),
[$(srcdir)/Doxyfile])')])])dnl
m4_if(m4_eval(3 < m4_count($@)), 1, [m4_for([DX_i], 5, m4_count($@,), 2,
[AC_SUBST([DX_DOCDIR]m4_eval([(]DX_i[-1)/2]),
'm4_default_nblank_quoted(m4_argn(DX_i, $@),
[doxygen-doc])')])])dnl
m4_define([DX_loop], m4_dquote(m4_if(m4_eval(3 < m4_count($@)), 1,
[m4_for([DX_i], 4, m4_count($@), 2, [, m4_eval(DX_i[/2])])],
[])))dnl
# Environment variables used inside doxygen.cfg:
DX_ENV_APPEND(SRCDIR, $srcdir)
DX_ENV_APPEND(PROJECT, $DX_PROJECT)
DX_ENV_APPEND(VERSION, $PACKAGE_VERSION)
# Doxygen itself:
DX_ARG_ABLE(doc, [generate any doxygen documentation],
[],
[],
[DX_REQUIRE_PROG([DX_DOXYGEN], doxygen)
DX_REQUIRE_PROG([DX_PERL], perl)],
[DX_ENV_APPEND(PERL_PATH, $DX_PERL)])
# Dot for graphics:
DX_ARG_ABLE(dot, [generate graphics for doxygen documentation],
[DX_CHECK_DEPEND(doc, 1)],
[DX_CLEAR_DEPEND(doc, 1)],
[DX_REQUIRE_PROG([DX_DOT], dot)],
[DX_ENV_APPEND(HAVE_DOT, YES)
DX_ENV_APPEND(DOT_PATH, [`DX_DIRNAME_EXPR($DX_DOT)`])],
[DX_ENV_APPEND(HAVE_DOT, NO)])
# Man pages generation:
DX_ARG_ABLE(man, [generate doxygen manual pages],
[DX_CHECK_DEPEND(doc, 1)],
[DX_CLEAR_DEPEND(doc, 1)],
[],
[DX_ENV_APPEND(GENERATE_MAN, YES)],
[DX_ENV_APPEND(GENERATE_MAN, NO)])
# RTF file generation:
DX_ARG_ABLE(rtf, [generate doxygen RTF documentation],
[DX_CHECK_DEPEND(doc, 1)],
[DX_CLEAR_DEPEND(doc, 1)],
[],
[DX_ENV_APPEND(GENERATE_RTF, YES)],
[DX_ENV_APPEND(GENERATE_RTF, NO)])
# XML file generation:
DX_ARG_ABLE(xml, [generate doxygen XML documentation],
[DX_CHECK_DEPEND(doc, 1)],
[DX_CLEAR_DEPEND(doc, 1)],
[],
[DX_ENV_APPEND(GENERATE_XML, YES)],
[DX_ENV_APPEND(GENERATE_XML, NO)])
# (Compressed) HTML help generation:
DX_ARG_ABLE(chm, [generate doxygen compressed HTML help documentation],
[DX_CHECK_DEPEND(doc, 1)],
[DX_CLEAR_DEPEND(doc, 1)],
[DX_REQUIRE_PROG([DX_HHC], hhc)],
[DX_ENV_APPEND(HHC_PATH, $DX_HHC)
DX_ENV_APPEND(GENERATE_HTML, YES)
DX_ENV_APPEND(GENERATE_HTMLHELP, YES)],
[DX_ENV_APPEND(GENERATE_HTMLHELP, NO)])
# Separate CHI file generation.
DX_ARG_ABLE(chi, [generate doxygen separate compressed HTML help index file],
[DX_CHECK_DEPEND(chm, 1)],
[DX_CLEAR_DEPEND(chm, 1)],
[],
[DX_ENV_APPEND(GENERATE_CHI, YES)],
[DX_ENV_APPEND(GENERATE_CHI, NO)])
# Plain HTML pages generation:
DX_ARG_ABLE(html, [generate doxygen plain HTML documentation],
[DX_CHECK_DEPEND(doc, 1) DX_CHECK_DEPEND(chm, 0)],
[DX_CLEAR_DEPEND(doc, 1) DX_CLEAR_DEPEND(chm, 0)],
[],
[DX_ENV_APPEND(GENERATE_HTML, YES)],
[DX_TEST_FEATURE(chm) || DX_ENV_APPEND(GENERATE_HTML, NO)])
# PostScript file generation:
DX_ARG_ABLE(ps, [generate doxygen PostScript documentation],
[DX_CHECK_DEPEND(doc, 1)],
[DX_CLEAR_DEPEND(doc, 1)],
[DX_REQUIRE_PROG([DX_LATEX], latex)
DX_REQUIRE_PROG([DX_MAKEINDEX], makeindex)
DX_REQUIRE_PROG([DX_DVIPS], dvips)
DX_REQUIRE_PROG([DX_EGREP], egrep)])
# PDF file generation:
DX_ARG_ABLE(pdf, [generate doxygen PDF documentation],
[DX_CHECK_DEPEND(doc, 1)],
[DX_CLEAR_DEPEND(doc, 1)],
[DX_REQUIRE_PROG([DX_PDFLATEX], pdflatex)
DX_REQUIRE_PROG([DX_MAKEINDEX], makeindex)
DX_REQUIRE_PROG([DX_EGREP], egrep)])
# LaTeX generation for PS and/or PDF:
if DX_TEST_FEATURE(ps) || DX_TEST_FEATURE(pdf); then
DX_ENV_APPEND(GENERATE_LATEX, YES)
else
DX_ENV_APPEND(GENERATE_LATEX, NO)
fi
# Paper size for PS and/or PDF:
AC_ARG_VAR(DOXYGEN_PAPER_SIZE,
[a4wide (default), a4, letter, legal or executive])
case "$DOXYGEN_PAPER_SIZE" in
#(
"")
AC_SUBST(DOXYGEN_PAPER_SIZE, "")
;; #(
a4wide|a4|letter|legal|executive)
DX_ENV_APPEND(PAPER_SIZE, $DOXYGEN_PAPER_SIZE)
;; #(
*)
AC_MSG_ERROR([unknown DOXYGEN_PAPER_SIZE='$DOXYGEN_PAPER_SIZE'])
;;
esac
# Rules:
AS_IF([[test $DX_FLAG_html -eq 1]],
[[DX_SNIPPET_html="## ------------------------------- ##
## Rules specific for HTML output. ##
## ------------------------------- ##
DX_CLEAN_HTML = \$(DX_DOCDIR)/html]dnl
m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\
\$(DX_DOCDIR]DX_i[)/html]])[
"]],
[[DX_SNIPPET_html=""]])
AS_IF([[test $DX_FLAG_chi -eq 1]],
[[DX_SNIPPET_chi="
DX_CLEAN_CHI = \$(DX_DOCDIR)/\$(PACKAGE).chi]dnl
m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\
\$(DX_DOCDIR]DX_i[)/\$(PACKAGE).chi]])["]],
[[DX_SNIPPET_chi=""]])
AS_IF([[test $DX_FLAG_chm -eq 1]],
[[DX_SNIPPET_chm="## ------------------------------ ##
## Rules specific for CHM output. ##
## ------------------------------ ##
DX_CLEAN_CHM = \$(DX_DOCDIR)/chm]dnl
m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\
\$(DX_DOCDIR]DX_i[)/chm]])[\
${DX_SNIPPET_chi}
"]],
[[DX_SNIPPET_chm=""]])
AS_IF([[test $DX_FLAG_man -eq 1]],
[[DX_SNIPPET_man="## ------------------------------ ##
## Rules specific for MAN output. ##
## ------------------------------ ##
DX_CLEAN_MAN = \$(DX_DOCDIR)/man]dnl
m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\
\$(DX_DOCDIR]DX_i[)/man]])[
"]],
[[DX_SNIPPET_man=""]])
AS_IF([[test $DX_FLAG_rtf -eq 1]],
[[DX_SNIPPET_rtf="## ------------------------------ ##
## Rules specific for RTF output. ##
## ------------------------------ ##
DX_CLEAN_RTF = \$(DX_DOCDIR)/rtf]dnl
m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\
\$(DX_DOCDIR]DX_i[)/rtf]])[
"]],
[[DX_SNIPPET_rtf=""]])
AS_IF([[test $DX_FLAG_xml -eq 1]],
[[DX_SNIPPET_xml="## ------------------------------ ##
## Rules specific for XML output. ##
## ------------------------------ ##
DX_CLEAN_XML = \$(DX_DOCDIR)/xml]dnl
m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\
\$(DX_DOCDIR]DX_i[)/xml]])[
"]],
[[DX_SNIPPET_xml=""]])
AS_IF([[test $DX_FLAG_ps -eq 1]],
[[DX_SNIPPET_ps="## ----------------------------- ##
## Rules specific for PS output. ##
## ----------------------------- ##
DX_CLEAN_PS = \$(DX_DOCDIR)/\$(PACKAGE).ps]dnl
m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\
\$(DX_DOCDIR]DX_i[)/\$(PACKAGE).ps]])[
DX_PS_GOAL = doxygen-ps
doxygen-ps: \$(DX_CLEAN_PS)
]m4_foreach([DX_i], [DX_loop],
[[\$(DX_DOCDIR]DX_i[)/\$(PACKAGE).ps: \$(DX_DOCDIR]DX_i[)/\$(PACKAGE).tag
\$(DX_V_LATEX)cd \$(DX_DOCDIR]DX_i[)/latex; \\
rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \\
\$(DX_LATEX) refman.tex; \\
\$(DX_MAKEINDEX) refman.idx; \\
\$(DX_LATEX) refman.tex; \\
countdown=5; \\
while \$(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \\
refman.log > /dev/null 2>&1 \\
&& test \$\$countdown -gt 0; do \\
\$(DX_LATEX) refman.tex; \\
countdown=\`expr \$\$countdown - 1\`; \\
done; \\
\$(DX_DVIPS) -o ../\$(PACKAGE).ps refman.dvi
]])["]],
[[DX_SNIPPET_ps=""]])
AS_IF([[test $DX_FLAG_pdf -eq 1]],
[[DX_SNIPPET_pdf="## ------------------------------ ##
## Rules specific for PDF output. ##
## ------------------------------ ##
DX_CLEAN_PDF = \$(DX_DOCDIR)/\$(PACKAGE).pdf]dnl
m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\
\$(DX_DOCDIR]DX_i[)/\$(PACKAGE).pdf]])[
DX_PDF_GOAL = doxygen-pdf
doxygen-pdf: \$(DX_CLEAN_PDF)
]m4_foreach([DX_i], [DX_loop],
[[\$(DX_DOCDIR]DX_i[)/\$(PACKAGE).pdf: \$(DX_DOCDIR]DX_i[)/\$(PACKAGE).tag
\$(DX_V_LATEX)cd \$(DX_DOCDIR]DX_i[)/latex; \\
rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \\
\$(DX_PDFLATEX) refman.tex; \\
\$(DX_MAKEINDEX) refman.idx; \\
\$(DX_PDFLATEX) refman.tex; \\
countdown=5; \\
while \$(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \\
refman.log > /dev/null 2>&1 \\
&& test \$\$countdown -gt 0; do \\
\$(DX_PDFLATEX) refman.tex; \\
countdown=\`expr \$\$countdown - 1\`; \\
done; \\
mv refman.pdf ../\$(PACKAGE).pdf
]])["]],
[[DX_SNIPPET_pdf=""]])
AS_IF([[test $DX_FLAG_ps -eq 1 -o $DX_FLAG_pdf -eq 1]],
[[DX_SNIPPET_latex="## ------------------------------------------------- ##
## Rules specific for LaTeX (shared for PS and PDF). ##
## ------------------------------------------------- ##
DX_V_LATEX = \$(_DX_v_LATEX_\$(V))
_DX_v_LATEX_ = \$(_DX_v_LATEX_\$(AM_DEFAULT_VERBOSITY))
_DX_v_LATEX_0 = @echo \" LATEX \" \$][@;
DX_CLEAN_LATEX = \$(DX_DOCDIR)/latex]dnl
m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\
\$(DX_DOCDIR]DX_i[)/latex]])[
"]],
[[DX_SNIPPET_latex=""]])
AS_IF([[test $DX_FLAG_doc -eq 1]],
[[DX_SNIPPET_doc="## --------------------------------- ##
## Format-independent Doxygen rules. ##
## --------------------------------- ##
${DX_SNIPPET_html}\
${DX_SNIPPET_chm}\
${DX_SNIPPET_man}\
${DX_SNIPPET_rtf}\
${DX_SNIPPET_xml}\
${DX_SNIPPET_ps}\
${DX_SNIPPET_pdf}\
${DX_SNIPPET_latex}\
DX_V_DXGEN = \$(_DX_v_DXGEN_\$(V))
_DX_v_DXGEN_ = \$(_DX_v_DXGEN_\$(AM_DEFAULT_VERBOSITY))
_DX_v_DXGEN_0 = @echo \" DXGEN \" \$<;
.PHONY: doxygen-run doxygen-doc \$(DX_PS_GOAL) \$(DX_PDF_GOAL)
.INTERMEDIATE: doxygen-run \$(DX_PS_GOAL) \$(DX_PDF_GOAL)
doxygen-run:]m4_foreach([DX_i], [DX_loop],
[[ \$(DX_DOCDIR]DX_i[)/\$(PACKAGE).tag]])[
doxygen-doc: doxygen-run \$(DX_PS_GOAL) \$(DX_PDF_GOAL)
]m4_foreach([DX_i], [DX_loop],
[[\$(DX_DOCDIR]DX_i[)/\$(PACKAGE).tag: \$(DX_CONFIG]DX_i[) \$(pkginclude_HEADERS)
\$(A""M_V_at)rm -rf \$(DX_DOCDIR]DX_i[)
\$(DX_V_DXGEN)\$(DX_ENV) DOCDIR=\$(DX_DOCDIR]DX_i[) \$(DX_DOXYGEN) \$(DX_CONFIG]DX_i[)
\$(A""M_V_at)echo Timestamp >\$][@
]])dnl
[DX_CLEANFILES = \\]
m4_foreach([DX_i], [DX_loop],
[[ \$(DX_DOCDIR]DX_i[)/doxygen_sqlite3.db \\
\$(DX_DOCDIR]DX_i[)/\$(PACKAGE).tag \\
]])dnl
[ -r \\
\$(DX_CLEAN_HTML) \\
\$(DX_CLEAN_CHM) \\
\$(DX_CLEAN_CHI) \\
\$(DX_CLEAN_MAN) \\
\$(DX_CLEAN_RTF) \\
\$(DX_CLEAN_XML) \\
\$(DX_CLEAN_PS) \\
\$(DX_CLEAN_PDF) \\
\$(DX_CLEAN_LATEX)
DX_INSTALL_DOCS = \\
\$(DX_CLEAN_HTML) \\
\$(DX_CLEAN_CHM) \\
\$(DX_CLEAN_CHI) \\
\$(DX_CLEAN_MAN) \\
\$(DX_CLEAN_RTF) \\
\$(DX_CLEAN_XML) \\
\$(DX_CLEAN_PS) \\
\$(DX_CLEAN_PDF) \\
\$(DX_CLEAN_LATEX)
"]],
[[DX_SNIPPET_doc=""]])
AC_SUBST([DX_RULES],
["${DX_SNIPPET_doc}"])dnl
AM_SUBST_NOTMAKE([DX_RULES])
#For debugging:
#echo DX_FLAG_doc=$DX_FLAG_doc
#echo DX_FLAG_dot=$DX_FLAG_dot
#echo DX_FLAG_man=$DX_FLAG_man
#echo DX_FLAG_html=$DX_FLAG_html
#echo DX_FLAG_chm=$DX_FLAG_chm
#echo DX_FLAG_chi=$DX_FLAG_chi
#echo DX_FLAG_rtf=$DX_FLAG_rtf
#echo DX_FLAG_xml=$DX_FLAG_xml
#echo DX_FLAG_pdf=$DX_FLAG_pdf
#echo DX_FLAG_ps=$DX_FLAG_ps
#echo DX_ENV=$DX_ENV
])
| M4 | 5 | Sasha7b9/U-Cube | src/ThirdParty/libevent/m4/ax_prog_doxygen.m4 | [
"MIT"
] |
#pragma once
#include "source/common/common/logger.h"
#include "contrib/kafka/filters/network/source/kafka_response.h"
namespace Envoy {
namespace Extensions {
namespace NetworkFilters {
namespace Kafka {
namespace Mesh {
/**
* Represents single downstream client request.
* Responsible for performing the work on multiple upstream clusters and aggregating the results.
*/
class InFlightRequest {
public:
virtual ~InFlightRequest() = default;
/**
* Begins processing of given request with context provided.
*/
virtual void startProcessing() PURE;
/**
* Whether the given request has finished processing.
* E.g. produce requests need to be forwarded upstream and get a response from Kafka cluster for
* this to be true.
*/
virtual bool finished() const PURE;
/**
* Creates a Kafka answer object that can be sent downstream.
*/
virtual AbstractResponseSharedPtr computeAnswer() const PURE;
/**
* Abandon this request.
* In-flight requests that have been abandoned are not going to cause any action after they have
* finished processing.
*/
virtual void abandon() PURE;
};
using InFlightRequestSharedPtr = std::shared_ptr<InFlightRequest>;
/**
* Callback to be implemented by entities that are interested when the request has finished and has
* answer ready.
*/
// Impl note: Filter implements this interface to keep track of requests coming to it.
class AbstractRequestListener {
public:
virtual ~AbstractRequestListener() = default;
// Notifies the listener that a new request has been received.
virtual void onRequest(InFlightRequestSharedPtr request) PURE;
// Notified the listener, that the request finally has an answer ready.
// Usually this means that the request has been sent to upstream Kafka clusters and we got answers
// (unless it's something that could be responded to locally).
// IMPL: we do not need to pass request here, as filters need to answer in-order.
// What means that we always need to check if first answer is ready, even if the latter are
// already finished.
virtual void onRequestReadyForAnswer() PURE;
};
/**
* Helper base class for all in flight requests.
* Binds request to its origin filter.
*/
class BaseInFlightRequest : public InFlightRequest, protected Logger::Loggable<Logger::Id::kafka> {
public:
BaseInFlightRequest(AbstractRequestListener& filter) : filter_{filter} {};
void abandon() override;
protected:
/**
* Notify the originating filter that this request has an answer ready.
* This method is to be invoked by each request after it has finished processing.
* Obviously, if the filter is no longer active (connection got closed before we were ready to
* answer) nothing will happen.
*/
void notifyFilter();
// Filter that originated this request.
AbstractRequestListener& filter_;
// Whether the filter_ reference is still viable.
bool filter_active_ = true;
};
} // namespace Mesh
} // namespace Kafka
} // namespace NetworkFilters
} // namespace Extensions
} // namespace Envoy
| C | 5 | dcillera/envoy | contrib/kafka/filters/network/source/mesh/abstract_command.h | [
"Apache-2.0"
] |
#
# @expect=org.quattor.pan.exceptions.EvaluationException
#
object template join3;
'/x1' = list(1, 2, 3);
'/x2' = join("-", value('/x1'));
| Pan | 3 | aka7/pan | panc/src/test/pan/Functionality/join/join3.pan | [
"Apache-2.0"
] |
#include "colors.inc"
#include "stones.inc"
#include "shapes.inc"
cone {
<0, 1, 0>, 0.3 // Center and radius of one end
<1, 2, 3>, 1.0 // Center and radius of other end
open
texture { T_Stone25 scale 4 }
}
cylinder {
<0, 1, 0>, // Center of one end
<1, 2, 3>, // Center of other end
0.5 // Radius
open // Remove end caps
texture { T_Stone21 scale 4 }
}
plane {
y, -1
pigment {
checker color Black, color White
}
}
camera {
look_at <0, 1, 0>
location <0, 10, 0>
} | POV-Ray SDL | 3 | qeedquan/misc_utilities | gfx/povray/cone.pov | [
"MIT"
] |
The Inventory for Carbon and Energy, or //ICE//, is a life cycle database representing a wide range of building and construction materials, published by the [[http://people.bath.ac.uk/cj219/|Sustainable Energy Research Team (SERT)]] at the University of Bath, UK.
In January 2011, **[[http://people.bath.ac.uk/cj219/|Version 2.0]]** was published. This version is represented in AMEE.
==The dataset==
The dataset represents over 300 individual materials, including metals (e.g. aluminium, iron, steel), plastics, insulation, mineral-based materials (e.g. aggregate, cement, concrete, glass, stone), and organic materials (soil, timber) as well as manufactured composite materials such as carpets, photovoltaic cells, roads and windows. Each material is differentiated into a range of specific subtypes, and, in many cases, distinct representations of //virgin// versus //recycled// variants of materials are available.
For each type of material, the database provides measures of the embodied **energy** (i.e. MJ) and **CO,,2,,** emissions (i.e. kg) which are related to specific unit quantities of the material. The bulk of the materials in the dataset are represented as **mass** quantities - that is, the embodied energy and CO,,2,, emissions are represented on a //per kg// basis. Calculations are made, in these cases, by multiplying a mass quantity for the material by the appropriate factors. In some cases, materials are represented on an **area** basis (i.e. m^2), for example, carpets, roads and paint (kg [CO,,2,,] per m^2). In these cases, calculations are made by providing area quantities.
A number of materials are represented by slightly extended methodologies. For example, the methodology for concrete enables the specification of an additional quantity of reinforcing steel, while double-glazed windows can be specified as having their air spaces filled with insulating gases. The several types of timber that are represented additionally support the **biogenic CO,,2,,** which is embodied in the production life cycle (i.e. the combustion of off-cuts for energy or waste disposal purposes). Users of the dataset can choose whether to consider these biogenic emissions together with fossil-derived CO,,2,, emissions.
===CO,,2,,e factors===
For many materials, unit embodied emissions of CO,,2,,e are also available. This value represents all greenhouse gases associated with the production cycle, represented in terms of the equivalent quantity of CO,,2,, which would exert the same atmospheric warming effect.
In cases where no unit CO,,2,, estimate is available in the dataset, the authors advise that an approximate 'rule of thumb' for calculating CO,,2,,e is to increase CO,,2,, emissions by 6%. This value represents on the embodied CO,,2,,e associated with fuel use (not process related emissions) and is based on the average fuel mix of UK industry.
==Life cycle analysis boundaries==
With a few exceptions, the life cycle analysis boundaries represented within the ICE database are designated as **cradle-to-gate**. The authors advise that, even within these boundaries there are many possible variations that affect the absolute boundaries of each material analysis. This arises predominantly from the use of secondary data resources which represent variable boundaries. The ideal boundaries are described by the authors as follows:
|=Item|=Boundaries treatment|
|//Delivered energy//|All delivered energy is converted into primary energy equivalent, see below.|
|//Primary energy//|Default method, traced back to the ‘cradle’.|
|//Primary electricity//|Included, counted as energy content of the electricity (rather than the opportunity cost of energy).|
|//Renewable energy (inc. electricity)//|Included.|
|//Calorific Value (CV)/Heating value of fossil fuel energy//|Default values are Higher Heating Values (HHV) or Gross Calorific Values (GCV), both are equivalent metrics.|
|//Calorific value of organic fuels//|Included when used as a fuel, excluded when used as a feedstock, e.g. timber offcuts burnt as a fuel include the calorific value of the wood, but timber used in a table excludes the calorific value of the wooden product.|
|//Feedstock energy//|Fossil fuel derived feedstocks are included in the assessment, but identified separately. For example, petrochemicals used as feedstocks in the manufacture of plastics are included. See above category for organic feedstock treatment.|
|//Carbon sequestration and biogenic carbon storage//|Excluded, but ICE users may wish to modify the data themselves to include these effects.|
|//Fuel related carbon dioxide emissions//|All fuel related carbon dioxide emissions which are attributable to the product are included.|
|//Process carbon dioxide emissions//|Included; for example CO2 emissions from the calcination of limestone in cement clinker manufacture are counted.|
|//Other greenhouse gas emissions//|The newest version of the ICE database (2.0) has been expanded to include data for GHGs. The main summary table shows the data in CO2 only and for the GHGs in CO2e.|
|//Transport//|Included within specified boundaries, i.e. typically cradle-to-gate.|
==Changes in version 2.0==
[[ICE_Building_Materials_LCA|Version 1.6]] of the ICE database was superceded by Version 2.0 in January 2011. The main changes/improvements are summarised below:
|**1**|The majority of data has been converted to CO,,2,,e which captures more than just CO,,2,, (e.g. CH,,4,,, PFC's)|
|**2**|The CO,,2,, embodied in timber materials are now separated into //fossil//- and //biogenic//- CO,,2,,|
|**3**|The recycled content approach has been revised to a 3-year average recycled content|
|**4**|Data on cement has been brought in line with British Cement Association data|
|**5**|ICE cement, mortar and concrete model has been revised and consequently the data is much improved|
|**6**|New, UK specific data for precast concrete|
|**7**|Aggregates and sand are now estimated from recorded UK industrial fuel consumption data|
|**8**|Asphalt mixtures have been modelled from the binder content and the UK recorded mixing energy|
|**9**|There is now data on recycled glass|
|**10**|There are some notable improvements in the data for copper, carpets, paint, roads, rubber, sealants and adhesives, soil and stone|
| Creole | 1 | OpenAMEE/datasets | documentation/Embodied_Inventory_of_carbon_and_energy_ICE/documentation.creole | [
"MIT"
] |
layout_test.rhtml <%= yield %> | RHTML | 0 | mtomaizy/radiant | vendor/rails/actionpack/test/fixtures/layout_tests/layouts/layout_test.rhtml | [
"MIT"
] |
{
// All document policy (https://w3c.github.io/webappsec-permissions-policy/document-policy.html)
// features are defined here.
// All Features have to be defined in DocumentPolicyFeature enum as well
// (defined in third_party/blink/public/mojom/permissions_policy/document_policy_feature.mojom).
// The enum value has to have the same name as the feature name here.
parameters: {
// document_policy_name: "FEATURE_NAME" is used to specify the policy name
// which gets parsed from the header or the policy attribute.
document_policy_name: {},
// value type allowed in mojom::PolicyValueType which is defined in
// third_party/blink/public/mojom/permissions_policy/policy_value.mojom.
value_type: {},
// valid c++ expression strings, e.g. true/false, 1.0, -1.
// or use reserved keyword 'min'/'max'.
default_value: {},
// "depends_on" specifies relationship to runtime features defined
// in "runtime_enabled_features.json5":
// depends_on: ["feature1", "feature2", ...]
// * If the depends_on features are *only* runtime features, the feature is
// available if any of the runtime features are enabled.
// * If the depends_on list includes origin trial features, the feature is
// available if any of the origin trial features are enabled.
depends_on: {
default: [],
valid_type: "list",
},
// "default_value_behind_flag" specifies default_value override values
// based on different runtime flags set.
//
// When multiple flags are set, default_value correspond to the first
// flag in the list will be used, e.g.
// default_value_behind_flag: [
// ["A", 1.0],
// ["B", 2.0],
// ]
// 1.0 will be used as default value when both flag A and B are set.
//
// Note: the runtime flags here refer to features defined in
// "third_party/blink/public/common/features.h", instead of those defined in
// "runtime_enabled_features.json5" because the latter is only available
// on renderer side, while default_value is needed from browser side as
// well.
default_value_behind_flag: {
default: [],
valid_type: "list",
}
},
data: [
{
name: "DefaultValueFeatureForTest",
// Setting document_policy_name to "", so that it will not be recognized
// by the parser, as structured header token cannot be empty.
document_policy_name: "test-feature",
value_type: "Bool",
default_value: "true",
depends_on: [],
default_value_behind_flag: [
["DocumentPolicyRuntimeFlag1ForTest", "false"],
["DocumentPolicyRuntimeFlag2ForTest", "true"],
]
},
{
name: "Default",
document_policy_name: "*",
value_type: "Bool",
default_value: "true",
depends_on: []
},
],
}
| JSON5 | 5 | zealoussnow/chromium | third_party/blink/renderer/build/scripts/tests/document_policy_default_value_control/input/document_policy_features.json5 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] |
{SPI Slave
Once started, this cog monitors a Chip Select pin. When that pin goes active,
the cog accumulates up to 32 bits (shifting to the left) until the CS pin goes not active.
It then returns the accumulated data (as a long) and the actual bit count (as a byte) and
again waits for Chip select to go active again.
This cog will support a clock of up to 1.8 MHz.}
CON
_clkmode = xtal1 + pll16x 'Standard clock mode
_xinfreq = 5_000_000 '* crystal frequency = 80 MHz
VAR
byte Cog 'used to stop PASM cog if needful
long MyParm[3] 'parameters to machine cog
PUB start(clkpin, datapin, cspin, DataAdrs, CountAdrs) 'start the PASM cog
stop 'stop PASM cog if already running (standard start/stop logic)
myParm[0] := (clkpin<<24 | datapin<<16 | cspin<<8) 'give pin numbers to PASM cog
myParm[1] := DataAdrs 'this is an address in hub memory
myParm[2] := CountAdrs 'so is this
cog := cognew(@SPSCog, @MyParm) + 1 'start the cog (+1 'cause might be cog 0)
return (cog - 1) 'return the actual cog number
PUB stop 'kill the PASM cog if it is running
if (cog)
cogstop(cog-1) 'make the cog available
cog := 0
DAT
SPSCog org 0 'SPI Slave Receiver
mov AdPar,Par 'get the address of the parameter list
rdlong Work1, AdPar 'pin numbers
mov Work2, Work1 'get working copy
shr Work2, #24 'right align clock pin
and Work2, #$1F 'just pin number
mov ClkMask, #1 'form a mask with a single 1
shl ClkMask, Work2 'corresponding to clock pin
mov Work2, Work1 'just the same for data pin
shr Work2, #16
and Work2, #$1F
mov DatMask, #1
shl DatMask, Work2
mov Work2, Work1 'and now the CS pin
shr Work2, #8
and Work2, #$1F
mov CsMask, #1
shl CsMask, Work2
add AdPar, #4
rdlong AdResult, AdPar 'The address where to return the result
add AdPar, #4
rdlong AdCount, AdPar 'and the address of the count
top mov DLong, #0 'get set up for next burst
mov BitCount, #0
waitpne CSMask, CSMask 'and now wait for cs to go active
BLoop test clkMask, ina wz 'look for active clock
if_NZ jmp #GBit 'clock active, get the bit
test CsMask, ina wz 'look for cs gone inactive
if_Z jmp #BLoop 'cs is still active
release wrlong DLong, AdResult 'store the result
wrbyte BitCount, AdCount 'say we have stored "n" bits
jmp #top
GBit test DatMask, ina wz 'see if the new bit is a '1'
shl DLong, #1 'make room for it
if_NZ or DLong, #1 'if we saw a "1"
add BitCount, #1 'one more to report
waitpne ClkMask, ClkMask 'wait for clock to go inactive
jmp #BLoop 'and get next bit
ClkMask res 1 'mask corresponding to clock pin
DatMask res 1 'mask corresponding to data pin
CsMask res 1 'mask corresponding to CS pin
AdPar res 1 'address of parameter list
AdResult res 1 'where to return the result to
AdCount res 1 'address of bit count
BitCount res 1 'number of bits we received
Work1 res 1 'generally useful
Work2 res 1
DLong res 1 'variable being received
| Propeller Spin | 5 | deets/propeller | libraries/community/p1/All/1.8 MHz SPI Slave/SPI Slave.spin | [
"MIT"
] |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Azure;
namespace {{pascalCaseNs Namespace}}
{
public static class AsyncEnumerable
{
public static async Task<List<T>> ToListAsync<T>(this IAsyncEnumerable<T> that, CancellationToken cancellationToken)
{
var results = new List<T>();
await foreach (var value in that.WithCancellation(cancellationToken))
{
results.Add(value);
}
return results;
}
}
public class AsyncPageable
{
public static AsyncPageable<T> Create<T>(Func<string, int?, IAsyncEnumerable<Page<T>>> pageFunc)
{
return new FuncAsyncPageable<T>(pageFunc);
}
public class FuncAsyncPageable<T> : AsyncPageable<T>
{
private readonly Func<string, int?, IAsyncEnumerable<Page<T>>> _pageFunc;
public FuncAsyncPageable(Func<string, int?, IAsyncEnumerable<Page<T>>> pageFunc)
{
_pageFunc = pageFunc;
}
public override IAsyncEnumerable<Page<T>> AsPages(string continuationToken = null, int? pageSizeHint = null)
{
return _pageFunc(continuationToken, pageSizeHint);
}
}
}
public class LinkHeader
{
private LinkHeader(string firstPageLink, string prevPageLink, string nextPageLink, string lastPageLink)
{
FirstPageLink = firstPageLink;
PrevPageLink = prevPageLink;
NextPageLink = nextPageLink;
LastPageLink = lastPageLink;
}
public string FirstPageLink { get; }
public string PrevPageLink { get; }
public string NextPageLink { get; }
public string LastPageLink { get; }
public static LinkHeader Parse(IEnumerable<string> header)
{
var links = ParseLinkHeader(header).ToList();
var first = links.FirstOrDefault(t => t.rel == "first").href;
var prev = links.FirstOrDefault(t => t.rel == "prev").href;
var next = links.FirstOrDefault(t => t.rel == "next").href;
var last = links.FirstOrDefault(t => t.rel == "last").href;
return new LinkHeader(first, prev, next, last);
}
private static IEnumerable<(string href, string rel)> ParseLinkHeader(IEnumerable<string> linkHeader)
{
foreach (var header in linkHeader)
{
foreach (var link in ParseLinkHeader(header))
{
yield return link;
}
}
}
private static IEnumerable<(string href, string rel)> ParseLinkHeader(string linkHeader)
{
foreach (var link in linkHeader.Split(new[] {','}, StringSplitOptions.RemoveEmptyEntries))
{
if (ParseLink(link, out var result))
{
yield return result;
}
}
}
private static bool ParseLink(string link, out (string href, string rel) result)
{
result = default;
var parts = link.Split(new[] {';'}, StringSplitOptions.RemoveEmptyEntries);
if (parts.Length < 2)
{
return false;
}
var href = parts[0].Trim().TrimStart('<').TrimEnd('>');
var props = new Dictionary<string, string>();
foreach (var prop in parts.Skip(1))
{
if (TryParseProp(prop, out var p))
{
props.Add(p.key, p.value);
}
}
var rel = props["rel"];
result = (href, rel);
return true;
}
private static bool TryParseProp(string value, out (string key, string value) result)
{
result = default;
var equalIdx = value.IndexOf('=');
if (equalIdx < 0)
{
return false;
}
var key = value.Substring(0, equalIdx).Trim();
var v = value.Substring(equalIdx + 1).Trim().Trim('"');
result = (key, v);
return true;
}
}
}
| Harbour | 4 | ulisesh/arcade | src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CodeGenerator/Languages/csharp/PagedResponse.hb | [
"MIT"
] |
$$ MODE TUSCRIPT
LOOP i=2,9,2
PRINT i
ENDLOOP
| Turing | 3 | LaudateCorpus1/RosettaCodeData | Task/Loops-For-with-a-specified-step/TUSCRIPT/loops-for-with-a-specified-step.tu | [
"Info-ZIP"
] |
# Test that -j1 really serializes all sub-redo processes.
rm -f *.sub *.spin *.x first second *.start *.end
redo first second
| Stata | 1 | BlameJohnny/redo | t/010-jobserver/serialtest.do | [
"Apache-2.0"
] |
D:/gitee/open/tinyriscv/tests/riscv-compliance/build_generated/rv32i/I-BNE-01.elf: file format elf32-littleriscv
Disassembly of section .text.init:
00000000 <_start>:
0: 04c0006f j 4c <reset_vector>
00000004 <trap_vector>:
4: 34202f73 csrr t5,mcause
8: 00800f93 li t6,8
c: 03ff0a63 beq t5,t6,40 <write_tohost>
10: 00900f93 li t6,9
14: 03ff0663 beq t5,t6,40 <write_tohost>
18: 00b00f93 li t6,11
1c: 03ff0263 beq t5,t6,40 <write_tohost>
20: 00000f17 auipc t5,0x0
24: fe0f0f13 addi t5,t5,-32 # 0 <_start>
28: 000f0463 beqz t5,30 <trap_vector+0x2c>
2c: 000f0067 jr t5
30: 34202f73 csrr t5,mcause
34: 000f5463 bgez t5,3c <handle_exception>
38: 0040006f j 3c <handle_exception>
0000003c <handle_exception>:
3c: 5391e193 ori gp,gp,1337
00000040 <write_tohost>:
40: 00001f17 auipc t5,0x1
44: fc3f2023 sw gp,-64(t5) # 1000 <tohost>
48: ff9ff06f j 40 <write_tohost>
0000004c <reset_vector>:
4c: 00000193 li gp,0
50: 00000297 auipc t0,0x0
54: fb428293 addi t0,t0,-76 # 4 <trap_vector>
58: 30529073 csrw mtvec,t0
5c: 30005073 csrwi mstatus,0
60: 00000297 auipc t0,0x0
64: 02028293 addi t0,t0,32 # 80 <begin_testcode>
68: 34129073 csrw mepc,t0
6c: 00000293 li t0,0
70: 10000337 lui t1,0x10000
74: 01030313 addi t1,t1,16 # 10000010 <_end+0xfffde0c>
78: 00532023 sw t0,0(t1)
7c: 30200073 mret
00000080 <begin_testcode>:
80: 00002117 auipc sp,0x2
84: f8010113 addi sp,sp,-128 # 2000 <begin_signature>
88: 0000d0b7 lui ra,0xd
8c: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
90: fff00f93 li t6,-1
94: 00000813 li a6,0
98: 010f9663 bne t6,a6,a4 <begin_testcode+0x24>
9c: 000120b7 lui ra,0x12
a0: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
a4: 00112023 sw ra,0(sp)
a8: 0000d0b7 lui ra,0xd
ac: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
b0: 00100f13 li t5,1
b4: 80100793 li a5,-2047
b8: 00ff1663 bne t5,a5,c4 <begin_testcode+0x44>
bc: 000120b7 lui ra,0x12
c0: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
c4: 00112223 sw ra,4(sp)
c8: 0080006f j d0 <begin_testcode+0x50>
cc: 0200006f j ec <begin_testcode+0x6c>
d0: 0000d0b7 lui ra,0xd
d4: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
d8: 00000e93 li t4,0
dc: fff00713 li a4,-1
e0: feee96e3 bne t4,a4,cc <begin_testcode+0x4c>
e4: 000120b7 lui ra,0x12
e8: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
ec: 00112423 sw ra,8(sp)
f0: 0000d0b7 lui ra,0xd
f4: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
f8: 7ff00e13 li t3,2047
fc: fffff6b7 lui a3,0xfffff
100: dcc68693 addi a3,a3,-564 # ffffedcc <_end+0xffffcbc8>
104: 00de1663 bne t3,a3,110 <begin_testcode+0x90>
108: 000120b7 lui ra,0x12
10c: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
110: 00112623 sw ra,12(sp)
114: 0000d0b7 lui ra,0xd
118: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
11c: 00000d93 li s11,0
120: 80000637 lui a2,0x80000
124: 00cd9663 bne s11,a2,130 <begin_testcode+0xb0>
128: 000120b7 lui ra,0x12
12c: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
130: 00112823 sw ra,16(sp)
134: 00002117 auipc sp,0x2
138: ee010113 addi sp,sp,-288 # 2014 <test_2_res>
13c: 0000d0b7 lui ra,0xd
140: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
144: 00001d37 lui s10,0x1
148: 800d0d13 addi s10,s10,-2048 # 800 <end_testcode+0x284>
14c: 000015b7 lui a1,0x1
150: 23458593 addi a1,a1,564 # 1234 <fromhost+0x134>
154: 00bd1663 bne s10,a1,160 <begin_testcode+0xe0>
158: 000120b7 lui ra,0x12
15c: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
160: 00112023 sw ra,0(sp)
164: 0000d0b7 lui ra,0xd
168: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
16c: 07654cb7 lui s9,0x7654
170: 321c8c93 addi s9,s9,801 # 7654321 <_end+0x765211d>
174: fff00513 li a0,-1
178: 00ac9663 bne s9,a0,184 <begin_testcode+0x104>
17c: 000120b7 lui ra,0x12
180: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
184: 00112223 sw ra,4(sp)
188: 0080006f j 190 <begin_testcode+0x110>
18c: 0240006f j 1b0 <begin_testcode+0x130>
190: 0000d0b7 lui ra,0xd
194: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
198: 80000c37 lui s8,0x80000
19c: fffc0c13 addi s8,s8,-1 # 7fffffff <_end+0x7fffddfb>
1a0: 00100493 li s1,1
1a4: fe9c14e3 bne s8,s1,18c <begin_testcode+0x10c>
1a8: 000120b7 lui ra,0x12
1ac: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
1b0: 00112423 sw ra,8(sp)
1b4: 0000d0b7 lui ra,0xd
1b8: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
1bc: 00100b93 li s7,1
1c0: 80000437 lui s0,0x80000
1c4: fff40413 addi s0,s0,-1 # 7fffffff <_end+0x7fffddfb>
1c8: 008b9663 bne s7,s0,1d4 <begin_testcode+0x154>
1cc: 000120b7 lui ra,0x12
1d0: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
1d4: 00112623 sw ra,12(sp)
1d8: 0000d0b7 lui ra,0xd
1dc: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
1e0: fff00b13 li s6,-1
1e4: 076543b7 lui t2,0x7654
1e8: 32138393 addi t2,t2,801 # 7654321 <_end+0x765211d>
1ec: 007b1663 bne s6,t2,1f8 <begin_testcode+0x178>
1f0: 000120b7 lui ra,0x12
1f4: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
1f8: 00112823 sw ra,16(sp)
1fc: 00002397 auipc t2,0x2
200: e2c38393 addi t2,t2,-468 # 2028 <test_3_res>
204: 0000d0b7 lui ra,0xd
208: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
20c: 00001ab7 lui s5,0x1
210: 234a8a93 addi s5,s5,564 # 1234 <fromhost+0x134>
214: 00001337 lui t1,0x1
218: 80030313 addi t1,t1,-2048 # 800 <end_testcode+0x284>
21c: 006a9663 bne s5,t1,228 <begin_testcode+0x1a8>
220: 000120b7 lui ra,0x12
224: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
228: 0013a023 sw ra,0(t2)
22c: 0000d0b7 lui ra,0xd
230: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
234: 80000a37 lui s4,0x80000
238: 00000293 li t0,0
23c: 005a1663 bne s4,t0,248 <begin_testcode+0x1c8>
240: 000120b7 lui ra,0x12
244: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
248: 0013a223 sw ra,4(t2)
24c: 0080006f j 254 <begin_testcode+0x1d4>
250: 0240006f j 274 <begin_testcode+0x1f4>
254: 0000d0b7 lui ra,0xd
258: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
25c: fffff9b7 lui s3,0xfffff
260: dcc98993 addi s3,s3,-564 # ffffedcc <_end+0xffffcbc8>
264: 7ff00213 li tp,2047
268: fe4994e3 bne s3,tp,250 <begin_testcode+0x1d0>
26c: 000120b7 lui ra,0x12
270: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
274: 0013a423 sw ra,8(t2)
278: 0000d0b7 lui ra,0xd
27c: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
280: fff00913 li s2,-1
284: fff00193 li gp,-1
288: 00391663 bne s2,gp,294 <begin_testcode+0x214>
28c: 000120b7 lui ra,0x12
290: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
294: 0013a623 sw ra,12(t2)
298: 0000d0b7 lui ra,0xd
29c: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
2a0: 80100893 li a7,-2047
2a4: 00100113 li sp,1
2a8: 00289663 bne a7,sp,2b4 <begin_testcode+0x234>
2ac: 000120b7 lui ra,0x12
2b0: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
2b4: 0013a823 sw ra,16(t2)
2b8: 00002197 auipc gp,0x2
2bc: d8418193 addi gp,gp,-636 # 203c <test_4_res>
2c0: 0000d137 lui sp,0xd
2c4: ccc10113 addi sp,sp,-820 # cccc <_end+0xaac8>
2c8: 00000813 li a6,0
2cc: 00000093 li ra,0
2d0: 00181663 bne a6,ra,2dc <begin_testcode+0x25c>
2d4: 00012137 lui sp,0x12
2d8: 3ab10113 addi sp,sp,939 # 123ab <_end+0x101a7>
2dc: 0021a023 sw sp,0(gp)
2e0: 0000d0b7 lui ra,0xd
2e4: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
2e8: fff00793 li a5,-1
2ec: 00000013 nop
2f0: 00079663 bnez a5,2fc <begin_testcode+0x27c>
2f4: 000120b7 lui ra,0x12
2f8: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
2fc: 0011a223 sw ra,4(gp)
300: 0080006f j 308 <begin_testcode+0x288>
304: 0200006f j 324 <begin_testcode+0x2a4>
308: 0000d0b7 lui ra,0xd
30c: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
310: 00100713 li a4,1
314: 80100f93 li t6,-2047
318: fff716e3 bne a4,t6,304 <begin_testcode+0x284>
31c: 000120b7 lui ra,0x12
320: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
324: 0011a423 sw ra,8(gp)
328: 0000d0b7 lui ra,0xd
32c: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
330: 00000693 li a3,0
334: fff00f13 li t5,-1
338: 01e69663 bne a3,t5,344 <begin_testcode+0x2c4>
33c: 000120b7 lui ra,0x12
340: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
344: 0011a623 sw ra,12(gp)
348: 0000d0b7 lui ra,0xd
34c: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
350: 7ff00613 li a2,2047
354: fffffeb7 lui t4,0xfffff
358: dcce8e93 addi t4,t4,-564 # ffffedcc <_end+0xffffcbc8>
35c: 01d61663 bne a2,t4,368 <begin_testcode+0x2e8>
360: 000120b7 lui ra,0x12
364: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
368: 0011a823 sw ra,16(gp)
36c: 00002117 auipc sp,0x2
370: ce410113 addi sp,sp,-796 # 2050 <test_5_res>
374: 0000d0b7 lui ra,0xd
378: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
37c: 00000593 li a1,0
380: 80000e37 lui t3,0x80000
384: 01c59663 bne a1,t3,390 <begin_testcode+0x310>
388: 000120b7 lui ra,0x12
38c: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
390: 00112023 sw ra,0(sp)
394: 0000d0b7 lui ra,0xd
398: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
39c: 00001537 lui a0,0x1
3a0: 80050513 addi a0,a0,-2048 # 800 <end_testcode+0x284>
3a4: 00001db7 lui s11,0x1
3a8: 234d8d93 addi s11,s11,564 # 1234 <fromhost+0x134>
3ac: 01b51663 bne a0,s11,3b8 <begin_testcode+0x338>
3b0: 000120b7 lui ra,0x12
3b4: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
3b8: 00112223 sw ra,4(sp)
3bc: 0080006f j 3c4 <begin_testcode+0x344>
3c0: 0240006f j 3e4 <begin_testcode+0x364>
3c4: 0000d0b7 lui ra,0xd
3c8: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
3cc: 076544b7 lui s1,0x7654
3d0: 32148493 addi s1,s1,801 # 7654321 <_end+0x765211d>
3d4: fff00d13 li s10,-1
3d8: ffa494e3 bne s1,s10,3c0 <begin_testcode+0x340>
3dc: 000120b7 lui ra,0x12
3e0: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
3e4: 00112423 sw ra,8(sp)
3e8: 0000d0b7 lui ra,0xd
3ec: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
3f0: 80000437 lui s0,0x80000
3f4: fff40413 addi s0,s0,-1 # 7fffffff <_end+0x7fffddfb>
3f8: 00100c93 li s9,1
3fc: 01941663 bne s0,s9,408 <begin_testcode+0x388>
400: 000120b7 lui ra,0x12
404: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
408: 00112623 sw ra,12(sp)
40c: 0000d0b7 lui ra,0xd
410: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
414: 00100393 li t2,1
418: 80000c37 lui s8,0x80000
41c: fffc0c13 addi s8,s8,-1 # 7fffffff <_end+0x7fffddfb>
420: 01839663 bne t2,s8,42c <begin_testcode+0x3ac>
424: 000120b7 lui ra,0x12
428: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
42c: 00112823 sw ra,16(sp)
430: 00002397 auipc t2,0x2
434: c3438393 addi t2,t2,-972 # 2064 <test_6_res>
438: 0000d0b7 lui ra,0xd
43c: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
440: fff00313 li t1,-1
444: 07654bb7 lui s7,0x7654
448: 321b8b93 addi s7,s7,801 # 7654321 <_end+0x765211d>
44c: 01731663 bne t1,s7,458 <begin_testcode+0x3d8>
450: 000120b7 lui ra,0x12
454: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
458: 0013a023 sw ra,0(t2)
45c: 0000d0b7 lui ra,0xd
460: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
464: 000012b7 lui t0,0x1
468: 23428293 addi t0,t0,564 # 1234 <fromhost+0x134>
46c: 00001b37 lui s6,0x1
470: 800b0b13 addi s6,s6,-2048 # 800 <end_testcode+0x284>
474: 01629663 bne t0,s6,480 <begin_testcode+0x400>
478: 000120b7 lui ra,0x12
47c: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
480: 0013a223 sw ra,4(t2)
484: 0080006f j 48c <begin_testcode+0x40c>
488: 0200006f j 4a8 <begin_testcode+0x428>
48c: 0000d0b7 lui ra,0xd
490: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
494: 80000237 lui tp,0x80000
498: 00000a93 li s5,0
49c: ff5216e3 bne tp,s5,488 <begin_testcode+0x408>
4a0: 000120b7 lui ra,0x12
4a4: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
4a8: 0013a423 sw ra,8(t2)
4ac: 0000d0b7 lui ra,0xd
4b0: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
4b4: fffff1b7 lui gp,0xfffff
4b8: dcc18193 addi gp,gp,-564 # ffffedcc <_end+0xffffcbc8>
4bc: 7ff00a13 li s4,2047
4c0: 01419663 bne gp,s4,4cc <begin_testcode+0x44c>
4c4: 000120b7 lui ra,0x12
4c8: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
4cc: 0013a623 sw ra,12(t2)
4d0: 0000d0b7 lui ra,0xd
4d4: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
4d8: fff00113 li sp,-1
4dc: fff00993 li s3,-1
4e0: 01311663 bne sp,s3,4ec <begin_testcode+0x46c>
4e4: 000120b7 lui ra,0x12
4e8: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
4ec: 0013a823 sw ra,16(t2)
4f0: 00002197 auipc gp,0x2
4f4: b8818193 addi gp,gp,-1144 # 2078 <test_7_res>
4f8: 0000d137 lui sp,0xd
4fc: ccc10113 addi sp,sp,-820 # cccc <_end+0xaac8>
500: 80100093 li ra,-2047
504: 00100913 li s2,1
508: 01209663 bne ra,s2,514 <begin_testcode+0x494>
50c: 00012137 lui sp,0x12
510: 3ab10113 addi sp,sp,939 # 123ab <_end+0x101a7>
514: 0021a023 sw sp,0(gp)
518: 0000d0b7 lui ra,0xd
51c: ccc08093 addi ra,ra,-820 # cccc <_end+0xaac8>
520: 00000013 nop
524: 00000893 li a7,0
528: 01101663 bne zero,a7,534 <begin_testcode+0x4b4>
52c: 000120b7 lui ra,0x12
530: 3ab08093 addi ra,ra,939 # 123ab <_end+0x101a7>
534: 0011a223 sw ra,4(gp)
538: 00002297 auipc t0,0x2
53c: ac828293 addi t0,t0,-1336 # 2000 <begin_signature>
540: 10000337 lui t1,0x10000
544: 00830313 addi t1,t1,8 # 10000008 <_end+0xfffde04>
548: 00532023 sw t0,0(t1)
54c: 00002297 auipc t0,0x2
550: b4428293 addi t0,t0,-1212 # 2090 <end_signature>
554: 10000337 lui t1,0x10000
558: 00c30313 addi t1,t1,12 # 1000000c <_end+0xfffde08>
55c: 00532023 sw t0,0(t1)
560: 00100293 li t0,1
564: 10000337 lui t1,0x10000
568: 01030313 addi t1,t1,16 # 10000010 <_end+0xfffde0c>
56c: 00532023 sw t0,0(t1)
570: 00000013 nop
574: 00100193 li gp,1
578: 00000073 ecall
0000057c <end_testcode>:
57c: c0001073 unimp
580: 0000 unimp
...
Disassembly of section .tohost:
00001000 <tohost>:
...
00001100 <fromhost>:
...
Disassembly of section .data:
00002000 <begin_signature>:
2000: ffff 0xffff
2002: ffff 0xffff
2004: ffff 0xffff
2006: ffff 0xffff
2008: ffff 0xffff
200a: ffff 0xffff
200c: ffff 0xffff
200e: ffff 0xffff
2010: ffff 0xffff
2012: ffff 0xffff
00002014 <test_2_res>:
2014: ffff 0xffff
2016: ffff 0xffff
2018: ffff 0xffff
201a: ffff 0xffff
201c: ffff 0xffff
201e: ffff 0xffff
2020: ffff 0xffff
2022: ffff 0xffff
2024: ffff 0xffff
2026: ffff 0xffff
00002028 <test_3_res>:
2028: ffff 0xffff
202a: ffff 0xffff
202c: ffff 0xffff
202e: ffff 0xffff
2030: ffff 0xffff
2032: ffff 0xffff
2034: ffff 0xffff
2036: ffff 0xffff
2038: ffff 0xffff
203a: ffff 0xffff
0000203c <test_4_res>:
203c: ffff 0xffff
203e: ffff 0xffff
2040: ffff 0xffff
2042: ffff 0xffff
2044: ffff 0xffff
2046: ffff 0xffff
2048: ffff 0xffff
204a: ffff 0xffff
204c: ffff 0xffff
204e: ffff 0xffff
00002050 <test_5_res>:
2050: ffff 0xffff
2052: ffff 0xffff
2054: ffff 0xffff
2056: ffff 0xffff
2058: ffff 0xffff
205a: ffff 0xffff
205c: ffff 0xffff
205e: ffff 0xffff
2060: ffff 0xffff
2062: ffff 0xffff
00002064 <test_6_res>:
2064: ffff 0xffff
2066: ffff 0xffff
2068: ffff 0xffff
206a: ffff 0xffff
206c: ffff 0xffff
206e: ffff 0xffff
2070: ffff 0xffff
2072: ffff 0xffff
2074: ffff 0xffff
2076: ffff 0xffff
00002078 <test_7_res>:
2078: ffff 0xffff
207a: ffff 0xffff
207c: ffff 0xffff
207e: ffff 0xffff
2080: ffff 0xffff
2082: ffff 0xffff
2084: ffff 0xffff
2086: ffff 0xffff
2088: ffff 0xffff
208a: ffff 0xffff
208c: 0000 unimp
...
00002090 <end_signature>:
...
00002100 <begin_regstate>:
2100: 0080 addi s0,sp,64
...
00002200 <end_regstate>:
2200: 0004 0x4
...
| ObjDump | 3 | DuBirdFly/TinyRISCV_Learn | tests/riscv-compliance/build_generated/rv32i/I-BNE-01.elf.objdump | [
"Apache-2.0"
] |
const std = @import("std");
const expect = std.testing.expect;
const expectEqual = std.testing.expectEqual;
test "if prongs cast to expected type instead of peer type resolution" {
const S = struct {
fn doTheTest(f: bool) !void {
var x: i32 = 0;
x = if (f) 1 else 2;
try expect(x == 2);
var b = true;
const y: i32 = if (b) 1 else 2;
try expect(y == 1);
}
};
try S.doTheTest(false);
comptime try S.doTheTest(false);
}
| Zig | 4 | wilsonk/zig | test/behavior/if_stage1.zig | [
"MIT"
] |
Red/System [
Title: "v4l2 interface"
Author: "bitbegin"
File: %v4l2.reds
Tabs: 4
Rights: "Copyright (C) 2020 Red Foundation. All rights reserved."
License: {
Distributed under the Boost Software License, Version 1.0.
See https://github.com/red/red/blob/master/BSL-License.txt
}
]
pthread_mutex_t: alias struct! [
__sig [integer!]
opaque1 [integer!] ;opaque size =40
opaque2 [integer!]
opaque3 [integer!]
opaque4 [integer!]
opaque5 [integer!]
opaque6 [integer!]
opaque7 [integer!]
opaque8 [integer!]
opaque9 [integer!]
opaque10 [integer!]
]
pthread_cond_t: alias struct! [
__sig [integer!]
opaque1 [integer!] ;opaque size =24
opaque2 [integer!]
opaque3 [integer!]
opaque4 [integer!]
opaque5 [integer!]
opaque6 [integer!]
]
v4l2-config!: alias struct! [
name [c-string!]
fd [integer!]
format [integer!]
width [integer!]
height [integer!]
imgsize [integer!]
buffer [byte-ptr!]
bused [integer!]
running? [logic!]
thread [integer!]
mutex [pthread_mutex_t value]
cond [pthread_cond_t value]
cb [int-ptr!]
widget [int-ptr!]
]
v4l2: context [
#import [
LIBC-file cdecl [
_open: "open" [
filename [c-string!]
flags [integer!]
return: [integer!]
]
_read: "read" [
file [integer!]
buffer [byte-ptr!]
bytes [integer!]
return: [integer!]
]
_write: "write" [
file [integer!]
buffer [byte-ptr!]
bytes [integer!]
return: [integer!]
]
_close: "close" [
file [integer!]
return: [integer!]
]
_ioctl: "ioctl" [
fd [integer!]
request [integer!]
arg [int-ptr!]
return: [integer!]
]
_mmap: "mmap" [
address [byte-ptr!]
size [integer!]
protection [integer!]
flags [integer!]
fd [integer!]
offset [integer!]
return: [byte-ptr!]
]
_munmap: "munmap" [
address [byte-ptr!]
size [integer!]
return: [integer!]
]
]
"libpthread.so.0" cdecl [
pthread_create: "pthread_create" [
thread [int-ptr!]
attr [int-ptr!]
start [int-ptr!]
arglist [int-ptr!]
return: [integer!]
]
pthread_join: "pthread_join" [
thread [integer!]
retval [int-ptr!]
return: [integer!]
]
pthread_cancel: "pthread_cancel" [
thread [integer!]
return: [integer!]
]
pthread_mutex_init: "pthread_mutex_init" [
mutex [int-ptr!]
attr [int-ptr!]
return: [integer!]
]
pthread_cond_init: "pthread_cond_init" [
cond [int-ptr!]
attr [int-ptr!]
return: [integer!]
]
pthread_mutex_destroy: "pthread_mutex_destroy" [
mutex [int-ptr!]
return: [integer!]
]
pthread_cond_destroy: "pthread_cond_destroy" [
cond [int-ptr!]
return: [integer!]
]
pthread_mutex_lock: "pthread_mutex_lock" [
mutex [int-ptr!]
return: [integer!]
]
pthread_mutex_trylock: "pthread_mutex_trylock" [
mutex [int-ptr!]
return: [integer!]
]
pthread_mutex_unlock: "pthread_mutex_unlock" [
mutex [int-ptr!]
return: [integer!]
]
pthread_cond_wait: "pthread_cond_wait" [
cond [int-ptr!]
mutex [int-ptr!]
return: [integer!]
]
pthread_cond_signal: "pthread_cond_signal" [
cond [int-ptr!]
return: [integer!]
]
]
"libudev.so.1" cdecl [
udev_new: "udev_new" [
return: [int-ptr!]
]
udev_unref: "udev_unref" [
udev [int-ptr!]
return: [int-ptr!]
]
udev_monitor_new_from_netlink: "udev_monitor_new_from_netlink" [
udev [int-ptr!]
name [c-string!]
return: [int-ptr!]
]
udev_monitor_unref: "udev_monitor_unref" [
monitor [int-ptr!]
return: [int-ptr!]
]
udev_monitor_filter_add_match_subsystem_devtype: "udev_monitor_filter_add_match_subsystem_devtype" [
monitor [int-ptr!]
subsys [c-string!]
devtype [c-string!]
return: [integer!]
]
udev_monitor_enable_receiving: "udev_monitor_enable_receiving" [
monitor [int-ptr!]
return: [integer!]
]
udev_monitor_receive_device: "udev_monitor_receive_device" [
monitor [int-ptr!]
return: [int-ptr!]
]
udev_device_unref: "udev_device_unref" [
dev [int-ptr!]
return: [int-ptr!]
]
udev_enumerate_new: "udev_enumerate_new" [
udev [int-ptr!]
return: [int-ptr!]
]
udev_enumerate_add_match_subsystem: "udev_enumerate_add_match_subsystem" [
enum [int-ptr!]
sub [c-string!]
return: [integer!]
]
udev_enumerate_scan_devices: "udev_enumerate_scan_devices" [
enum [int-ptr!]
return: [integer!]
]
udev_enumerate_get_list_entry: "udev_enumerate_get_list_entry" [
enum [int-ptr!]
return: [int-ptr!]
]
udev_enumerate_unref: "udev_enumerate_unref" [
enum [int-ptr!]
return: [int-ptr!]
]
udev_list_entry_get_next: "udev_list_entry_get_next" [
list [int-ptr!]
return: [int-ptr!]
]
udev_list_entry_get_name: "udev_list_entry_get_name" [
list [int-ptr!]
return: [c-string!]
]
udev_device_new_from_syspath: "udev_device_new_from_syspath" [
udev [int-ptr!]
syspath [c-string!]
return: [int-ptr!]
]
udev_device_get_devnode: "udev_device_get_devnode" [
dev [int-ptr!]
return: [c-string!]
]
]
]
QBUF-CALLBACK!: alias function! [cfg [integer!]]
COLLECT-CALLBACK!: alias function! [node [c-string!] name [c-string!]]
#define _O_RDWR 2
#define VIDIOC_QUERYCAP 80685600h
#define VIDIOC_ENUM_FMT C0405602h
#define VIDIOC_G_FMT C0CC5604h
#define VIDIOC_S_FMT C0CC5605h
#define VIDIOC_REQBUFS C0145608h
#define VIDIOC_QUERYBUF C0445609h
#define VIDIOC_QBUF C044560Fh
#define VIDIOC_STREAMON 40045612h
#define VIDIOC_DQBUF C0445611h
#define V4L2_CAP_VIDEO_CAPTURE 00000001h
#define V4L2_CAP_STREAMING 04000000h
#define V4L2_CAP_META_CAPTURE 00800000h
#define V4L2_BUF_TYPE_VIDEO_CAPTURE 1
#define V4L2_PIX_FMT_MJPEG 47504A4Dh
#define V4L2_PIX_FMT_YUYV 56595559h
#define V4L2_MEMORY_MMAP 1
#define V4L2_MEMORY_USERPTR 2
filters: [
V4L2_PIX_FMT_MJPEG
;V4L2_PIX_FMT_YUYV
]
v4l2_capability: alias struct! [
driver1 [integer!]
driver2 [integer!]
driver3 [integer!]
driver4 [integer!]
card1 [integer!]
card2 [integer!]
card3 [integer!]
card4 [integer!]
card5 [integer!]
card6 [integer!]
card7 [integer!]
card8 [integer!]
bus-info1 [integer!]
bus-info2 [integer!]
bus-info3 [integer!]
bus-info4 [integer!]
bus-info5 [integer!]
bus-info6 [integer!]
bus-info7 [integer!]
bus-info8 [integer!]
version [integer!]
cap [integer!]
dev-caps [integer!]
reserved1 [integer!]
reserved2 [integer!]
reserved3 [integer!]
]
v4l2_fmtdesc: alias struct! [
index [integer!]
type [integer!]
flags [integer!]
desc1 [integer!]
desc2 [integer!]
desc3 [integer!]
desc4 [integer!]
desc5 [integer!]
desc6 [integer!]
desc7 [integer!]
desc8 [integer!]
format [integer!]
reserved1 [integer!]
reserved2 [integer!]
reserved3 [integer!]
reserved4 [integer!]
]
v4l2_pix_format: alias struct! [
width [integer!]
height [integer!]
format [integer!]
field [integer!]
bytes_line [integer!]
imgsize [integer!]
colorspace [integer!]
priv [integer!]
flags [integer!]
enc [integer!]
quatiz [integer!]
xfer_func [integer!]
]
;-- v4l2_format: 4 + 200
v4l2_requestbuffers: alias struct! [
count [integer!]
type [integer!]
memory [integer!]
caps [integer!]
reserved [integer!]
]
timeval: alias struct! [
tv_sec [integer!]
tv_usec [integer!]
]
v4l2_timecode: alias struct! [
type [integer!]
flags [integer!]
time [integer!]
userbits [integer!]
]
v4l2_buffer: alias struct! [
index [integer!]
type [integer!]
used [integer!]
flags [integer!]
field [integer!]
timestamp [timeval value]
timecode [v4l2_timecode value]
sequence [integer!]
memory [integer!]
m [integer!]
length [integer!]
reserved2 [integer!]
req_fd [integer!]
]
open: func [
config [v4l2-config!]
return: [integer!]
/local
fd [integer!]
hr [integer!]
cap [v4l2_capability value]
fdesc [v4l2_fmtdesc value]
len [integer!]
i [integer!]
found [logic!]
fmt [int-ptr!]
pfmt [v4l2_pix_format]
rbuf [v4l2_requestbuffers value]
buf [v4l2_buffer value]
][
config/fd: -1
fd: _open config/name _O_RDWR
if fd = -1 [return -1]
set-memory as byte-ptr! cap null-byte size? v4l2_capability
hr: _ioctl fd VIDIOC_QUERYCAP as int-ptr! :cap
if hr <> 0 [
_close fd
return -2
]
if (cap/cap and V4L2_CAP_VIDEO_CAPTURE) = 0 [
_close fd
return -3
]
if (cap/cap and V4L2_CAP_STREAMING) = 0 [
_close fd
return -4
]
config/format: 0
fdesc/index: 0
fdesc/type: V4L2_BUF_TYPE_VIDEO_CAPTURE
while [0 = _ioctl fd VIDIOC_ENUM_FMT as int-ptr! :fdesc][
either config/format = 0 [
config/format: fdesc/format
][
if fdesc/format = V4L2_PIX_FMT_MJPEG [
config/format: V4L2_PIX_FMT_MJPEG
]
]
;print-line [fdesc/index ": " as c-string! :fdesc/desc1]
fdesc/index: fdesc/index + 1
]
len: size? filters
i: 1
found: no
loop len [
if filters/i = config/format [
found: yes
i: i + 1
break
]
i: i + 1
]
unless found [
_close fd
return -5
]
fmt: as int-ptr! allocate 256
set-memory as byte-ptr! fmt null-byte 256
;-- use VIDIOC_G_FMT to init v4l2_format
fmt/1: V4L2_BUF_TYPE_VIDEO_CAPTURE
hr: _ioctl fd VIDIOC_G_FMT fmt
if hr <> 0 [
free as byte-ptr! fmt
_close fd
return -6
]
;-- set v4l2_format
pfmt: as v4l2_pix_format fmt + 1
pfmt/format: config/format
pfmt/width: config/width
pfmt/height: config/height
hr: _ioctl fd VIDIOC_S_FMT fmt
if hr <> 0 [
free as byte-ptr! fmt
_close fd
return -7
]
;-- check the v4l2_format result
hr: _ioctl fd VIDIOC_G_FMT fmt
if hr <> 0 [
free as byte-ptr! fmt
_close fd
return -8
]
config/width: pfmt/width
config/height: pfmt/height
config/imgsize: pfmt/imgsize
free as byte-ptr! fmt
;-- set buffer count
set-memory as byte-ptr! rbuf null-byte size? v4l2_requestbuffers
rbuf/count: 1
rbuf/type: V4L2_BUF_TYPE_VIDEO_CAPTURE
rbuf/memory: V4L2_MEMORY_USERPTR
hr: _ioctl fd VIDIOC_REQBUFS as int-ptr! :rbuf
if hr <> 0 [
_close fd
return -9
]
;-- use allocate buffer
config/buffer: allocate config/imgsize
set-memory as byte-ptr! buf null-byte size? v4l2_buffer
buf/type: V4L2_BUF_TYPE_VIDEO_CAPTURE
buf/memory: V4L2_MEMORY_USERPTR
buf/index: 0
buf/m: as integer! config/buffer
buf/length: config/imgsize
hr: _ioctl fd VIDIOC_QBUF as int-ptr! :buf
if hr <> 0 [
free config/buffer
_close fd
return -10
]
i: V4L2_BUF_TYPE_VIDEO_CAPTURE
_ioctl fd VIDIOC_STREAMON :i
config/running?: no
config/bused: 0
config/fd: fd
0
]
close: func [
config [v4l2-config!]
][
if config/fd <> -1 [
stop config
free config/buffer
_close config/fd
config/fd: -1
]
]
thread-cb: func [
[cdecl]
arg [integer!]
return: [integer!]
/local
config [v4l2-config!]
buf [v4l2_buffer value]
hr [integer!]
pcb [QBUF-CALLBACK!]
][
config: as v4l2-config! arg
while [config/running?][
pthread_mutex_lock :config/mutex
set-memory as byte-ptr! buf null-byte size? v4l2_buffer
buf/type: V4L2_BUF_TYPE_VIDEO_CAPTURE
buf/memory: V4L2_MEMORY_USERPTR
hr: _ioctl config/fd VIDIOC_DQBUF as int-ptr! :buf
if any [
hr <> 0
not config/running?
][
pthread_mutex_unlock :config/mutex
return -1
]
config/bused: buf/used
unless null? config/cb [
pcb: as QBUF-CALLBACK! config/cb
pcb arg
]
pthread_cond_wait :config/cond :config/mutex
config/bused: 0
pthread_mutex_unlock :config/mutex
hr: _ioctl config/fd VIDIOC_QBUF as int-ptr! :buf
if hr <> 0 [
return -1
]
]
0
]
signal: func [
config [v4l2-config!]
][
pthread_cond_signal :config/cond
]
trylock: func [
config [v4l2-config!]
return: [integer!]
][
pthread_mutex_trylock :config/mutex
]
unlock: func [
config [v4l2-config!]
][
pthread_mutex_unlock :config/mutex
]
attach: func [
config [v4l2-config!]
widget [int-ptr!]
cb [int-ptr!]
][
config/widget: widget
config/cb: cb
]
start: func [
config [v4l2-config!]
return: [logic!]
/local
hr [integer!]
][
if config/running? [return false]
hr: pthread_mutex_init :config/mutex null
if hr < 0 [
return false
]
hr: pthread_cond_init :config/cond null
if hr < 0 [
pthread_mutex_destroy :config/mutex
return false
]
hr: pthread_create :config/thread null as int-ptr! :thread-cb as int-ptr! config
if hr <> 0 [return false]
config/running?: yes
true
]
stop: func [
config [v4l2-config!]
/local
val [integer!]
][
config/running?: no
val: 0
pthread_join config/thread :val
pthread_cond_destroy :config/cond
pthread_mutex_destroy :config/mutex
]
;-- use udev to collect devices
collect: func [
cb [int-ptr!]
return: [integer!]
/local
ret [integer!]
udev [int-ptr!]
enum [int-ptr!]
devs [int-ptr!]
list [int-ptr!]
path [c-string!]
dev [int-ptr!]
node [c-string!]
fd [integer!]
hr [integer!]
cap [v4l2_capability value]
pcb [COLLECT-CALLBACK!]
][
ret: 0
udev: udev_new
enum: udev_enumerate_new udev
udev_enumerate_add_match_subsystem enum "video4linux"
udev_enumerate_scan_devices enum
devs: udev_enumerate_get_list_entry enum
list: devs
while [list <> null][
path: udev_list_entry_get_name list
dev: udev_device_new_from_syspath udev path
node: udev_device_get_devnode dev
fd: _open node _O_RDWR
if fd <> -1 [
set-memory as byte-ptr! cap null-byte size? v4l2_capability
hr: _ioctl fd VIDIOC_QUERYCAP as int-ptr! :cap
if all [
hr = 0
cap/cap and V4L2_CAP_VIDEO_CAPTURE <> 0
cap/cap and V4L2_CAP_STREAMING <> 0
cap/dev-caps and V4L2_CAP_META_CAPTURE = 0
][
pcb: as COLLECT-CALLBACK! cb
pcb node as c-string! :cap/card1
ret: ret + 1
]
_close fd
]
udev_device_unref dev
list: udev_list_entry_get_next list
]
udev_enumerate_unref enum
udev_unref udev
ret
]
]
| Red | 4 | GalenIvanov/red | modules/view/backends/gtk3/v4l2.reds | [
"BSL-1.0",
"BSD-3-Clause"
] |
{% extends "!layout.html" %}
{% block footer %}
{{ super() }}
<script type="text/javascript">
analytics.ready(function () {
ga('require', 'linker');
ga('linker:autoLink', ['zyte.com']);
});
</script>
{% endblock %}
| HTML | 3 | FingerCrunch/scrapy | docs/_templates/layout.html | [
"BSD-3-Clause"
] |
# This file is a part of Julia. License is MIT: https://julialang.org/license
using Test, Libdl, libblastrampoline_jll
@testset "libblastrampoline_jll" begin
@test isa(Libdl.dlsym(Libdl.dlopen(:libblastrampoline), :dgemm_64_), Ptr{Nothing})
end
| Julia | 4 | jonas-schulze/julia | stdlib/libblastrampoline_jll/test/runtests.jl | [
"MIT"
] |
//================= Room Booking System / https://github.com/neokoenig =======================--->
component extends="Controller" hint="Misc Event Data"
{
/**
* @hint Constructor.
*/
public void function init() {
super.init();
// Additional Permissions
filters(through="checkPermissionAndRedirect", permission="accesscalendar");
//filters(through="_isValidAjax");
// Data
filters(through="_getResources", only="getevent");
// Verification
verifies(only="getevent", params="key", paramsTypes="integer", route="home", error="Sorry, that event can't be found");
// Formats
provides("html,json");
usesLayout(template="modal", only="getevent");
filters(through="_setModelType");
}
/******************** Public***********************/
/**
* @hint Get Events For the provided range via ajax
*
* There are three main type of calendar view:
* index - basically everything
* building - a collection of locations
* location - a specific location
*/
public void function getevents() {
param name="params.type" default="";
if(structkeyexists(params, "start") AND structkeyexists(params, "end")){
var sd=createDateTime(year(params.start), month(params.start), day(params.start), 00,00,00);
var ed=createDateTime(year(params.end), month(params.end), day(params.end), 00,00,00);
// By building
if(params.type EQ "building"){
data=model("event").findAll(select="id, title, locationid, class, start, end, allday, status",
where="start >= '#sd#' AND end <= '#ed#' AND locations.building = '#fromTagSafe(params.key)#'", include="location",
order="start ASC");
// By location
} else if(params.type EQ "location"){
data=model("event").findAll(select="id, title, locationid, class, start, end, allday, status",
where="start >= '#sd#' AND end <= '#ed#' AND locationid = '#params.key#'", include="location",
order="start ASC");
// All
} else {
data=model("event").findAll(select="id, title, locationid, class, start, end, allday, status",
where="start >= '#sd#' AND end <= '#ed#'", include="location",
order="start ASC");
}
events=prepeventdata(data);
renderWith(events);
}
else {
abort;
}
}
/**
* @hint get single event via ajax, i.e for modals
*/
public void function getevent() {
event=model("location").findAll(where="events.id = #params.key#", include="events(eventresources)");
}
/******************** Private *********************/
/**
* @hint Sort out event data
*/
private array function prepeventdata(data) {
var events=[];
var c=1;
for(event in arguments.data){
events[c]["id"]=event.id;
events[c]["title"]=event.title;
events[c]["start"]=_f_d(event.start);
events[c]["end"]=_f_d(event.end);
events[c]["allDay"]=event.allDay;
events[c]["className"]=event.class & ' ' & event.status;
c++;
}
return events;
}
/**
* @hint Experimental date format
*/
private string function _f_d(str) {
return dateFormat(arguments.str, "YYYY-MM-DD") & "T" & timeFormat(arguments.str, "HH:MM:00");
}
/**
* @hint Sets the model type to use with Custom Fields + Templates
*/
public void function _setModelType() {
request.modeltype="event";
}
} | ColdFusion CFC | 5 | fintecheando/RoomBooking | controllers/Eventdata.cfc | [
"Apache-1.1"
] |
# Creates a count of HTTP User-Agent length and vector of HTTP User-Agent variables
# CrowdStrike 2015
# josh.liburdi@crowdstrike.com
# @jshlbrd
@load base/protocols/http
module HTTP;
redef record HTTP::Info += {
user_agent_length: count &log &optional;
user_agent_vars: vector of string &log &optional;
};
event http_header(c: connection, is_orig: bool, name: string, value: string)
{
if ( is_orig )
{
if ( name == "USER-AGENT" )
{
c$http$user_agent_length = |value|;
local cut_value = value;
if ( value == /.*\)$/ )
cut_value = cut_tail(value,1);
c$http$user_agent_vars = extract_keys(cut_value, /\x20?\(|\;\x20?|\)\x20/);
}
}
}
| Bro | 4 | LaudateCorpus1/cs-bro | bro-scripts/extensions/http/extend-http-user-agent.bro | [
"BSD-2-Clause"
] |
.q-textarea
.q-field__control
min-height: 56px
height: auto
.q-field__control-container
padding-top: 2px
padding-bottom: 2px
.q-field__shadow
top: 2px
bottom: 2px
.q-field__native, .q-field__prefix, .q-field__suffix
line-height: 18px
.q-field__native
resize: vertical
padding-top: 17px
min-height: 52px
&.q-field--labeled
.q-field__control-container
padding-top: 26px
.q-field__shadow
top: 26px
.q-field__native, .q-field__prefix, .q-field__suffix
padding-top: 0
.q-field__native
min-height: 26px
padding-top: 1px
&--autogrow
.q-field__native
resize: none
&.q-field--dense
.q-field__control, .q-field__native
min-height: 36px
.q-field__native
padding-top: 9px
&.q-field--labeled
.q-field__control-container
padding-top: 14px
.q-field__shadow
top: 14px
.q-field__native
min-height: 24px
padding-top: 3px
.q-field__prefix, .q-field__suffix
padding-top: 2px
body.mobile .q-textarea,
.q-textarea.disabled
.q-field__native
resize: none
| Sass | 3 | ygyg70/quasar | ui/src/components/input/QInput.sass | [
"MIT"
] |
/* Linker script to configure memory regions. */
MEMORY
{
ROM (rx) : ORIGIN = 0x00000000, LENGTH = 0x80000 /* 512K FLASH */
RAM (rw) : ORIGIN = 0x20000000, LENGTH = 0x10000 /* 64K RAM */
}
ENTRY(Reset_Handler)
_system_stack_size = 0x200;
SECTIONS
{
.text :
{
. = ALIGN(4);
_stext = .;
KEEP(*(.isr_vector)) /* Startup code */
. = ALIGN(4);
*(.text) /* remaining code */
*(.text.*) /* remaining code */
*(.rodata) /* read-only data (constants) */
*(.rodata*)
*(.glue_7)
*(.glue_7t)
*(.gnu.linkonce.t*)
/* section information for finsh shell */
. = ALIGN(4);
__fsymtab_start = .;
KEEP(*(FSymTab))
__fsymtab_end = .;
. = ALIGN(4);
__vsymtab_start = .;
KEEP(*(VSymTab))
__vsymtab_end = .;
/* section information for initial. */
. = ALIGN(4);
__rt_init_start = .;
KEEP(*(SORT(.rti_fn*)))
__rt_init_end = .;
/* section information for modules */
. = ALIGN(4);
__rtmsymtab_start = .;
KEEP(*(RTMSymTab))
__rtmsymtab_end = .;
. = ALIGN(4);
PROVIDE(__ctors_start__ = .);
KEEP (*(SORT(.init_array.*)))
KEEP (*(.init_array))
PROVIDE(__ctors_end__ = .);
. = ALIGN(4);
_etext = .;
} > ROM = 0
/* .ARM.exidx is sorted, so has to go in its own output section. */
__exidx_start = .;
.ARM.exidx :
{
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
/* This is used by the startup in order to initialize the .data secion */
_sidata = .;
} > ROM
__exidx_end = .;
/* .data section which is used for initialized data */
.data : AT (_sidata)
{
. = ALIGN(4);
/* This is used by the startup in order to initialize the .data secion */
_sdata = . ;
*(.data)
*(.data.*)
*(.gnu.linkonce.d*)
PROVIDE(__dtors_start__ = .);
KEEP(*(SORT(.dtors.*)))
KEEP(*(.dtors))
PROVIDE(__dtors_end__ = .);
. = ALIGN(4);
/* This is used by the startup in order to initialize the .data secion */
_edata = . ;
} >RAM
.stack :
{
. = ALIGN(4);
_sstack = .;
. = . + _system_stack_size;
. = ALIGN(4);
_estack = .;
} >RAM
__bss_start = .;
.bss :
{
. = ALIGN(4);
/* This is used by the startup in order to initialize the .bss secion */
_sbss = .;
*(.bss)
*(.bss.*)
*(COMMON)
. = ALIGN(4);
/* This is used by the startup in order to initialize the .bss secion */
_ebss = . ;
*(.bss.init)
} > RAM
__bss_end = .;
_end = .;
PROVIDE(__etext = __exidx_end);
PROVIDE(__data_start__ = _sdata);
PROVIDE(__bss_start__ = __bss_start);
PROVIDE(__bss_end__ = __bss_end);
PROVIDE(__StackTop = _estack);
}
| Linker Script | 4 | BreederBai/rt-thread | bsp/nrf5x/nrf52832/board/linker_scripts/link.lds | [
"Apache-2.0"
] |
# This file is a part of Julia. License is MIT: https://julialang.org/license
# RUN: julia --startup-file=no %s %t -O
# RUN: cat %t/* | FileCheck %s
include(joinpath("..", "testhelpers", "llvmpasses.jl"))
# JuliaLang/julia#38922
function haszerolayout(x::NTuple{32, VecElement{UInt8}})
rx = Ref(x)
GC.@preserve rx begin
lower = iszero(unsafe_load(Ptr{UInt128}(pointer_from_objref(rx)), 1))
upper = iszero(unsafe_load(Ptr{UInt128}(pointer_from_objref(rx)), 2))
lower & upper
end
end
# CHECK-LABEL: @julia_haszerolayout
# CHECK: top:
# CHECK-NOT: @jl_gc_pool_alloc
# CHECK: extractelement
# CHECK: ret i8
emit(haszerolayout, NTuple{32,VecElement{UInt8}})
| Julia | 4 | jonas-schulze/julia | test/llvmpasses/alloc-opt-pipeline.jl | [
"MIT"
] |
--TEST--
Parse errors during token_get_all()
--EXTENSIONS--
tokenizer
--FILE--
<?php
function test_parse_error($code) {
try {
var_dump(token_get_all($code, TOKEN_PARSE));
} catch (ParseError $e) {
echo $e->getMessage(), "\n";
}
foreach (token_get_all($code) as $token) {
if (is_array($token)) {
echo token_name($token[0]), " ($token[1])\n";
} else {
echo "$token\n";
}
}
echo "\n";
}
test_parse_error('<?php var_dump(078);');
test_parse_error('<?php var_dump("\u{xyz}");');
test_parse_error('<?php var_dump("\u{ffffff}");');
test_parse_error('<?php var_dump(078 + 078);');
?>
--EXPECT--
Invalid numeric literal
T_OPEN_TAG (<?php )
T_STRING (var_dump)
(
T_LNUMBER (078)
)
;
Invalid UTF-8 codepoint escape sequence
T_OPEN_TAG (<?php )
T_STRING (var_dump)
(
T_CONSTANT_ENCAPSED_STRING ("\u{xyz}")
)
;
Invalid UTF-8 codepoint escape sequence: Codepoint too large
T_OPEN_TAG (<?php )
T_STRING (var_dump)
(
T_CONSTANT_ENCAPSED_STRING ("\u{ffffff}")
)
;
Invalid numeric literal
T_OPEN_TAG (<?php )
T_STRING (var_dump)
(
T_LNUMBER (078)
T_WHITESPACE ( )
+
T_WHITESPACE ( )
T_LNUMBER (078)
)
;
| PHP | 4 | NathanFreeman/php-src | ext/tokenizer/tests/parse_errors.phpt | [
"PHP-3.01"
] |
1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -58.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -82.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -98.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -20.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -55.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -42.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -72.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -46.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -92.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -82.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -74.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -49.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 -28.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 -94.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 -83.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 -78.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 -94.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -58.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -98.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -55.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -29.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -24.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -51.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -44.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -76.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -14.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -70.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -19.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 -5.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 -13.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 -83.00
| Matlab | 0 | yinrun/LOPDC-Benchmarks | strippacking/matlab/sp-18-32-sqrt.matlab | [
"MIT"
] |
fun bobo () =
n1 <- source 0;
n2 <- source 1;
return <xml>
<dyn signal={n1 <- signal n1; n2 <- signal n2; return <xml>{[n1 + n2]}</xml>}/>
<button value="Increment1" onclick={v <- get n1; set n1 (v + 1)}/>
<button value="Increment2" onclick={v <- get n2; set n2 (v + 1)}/>
</xml>
fun main () =
x <- source <xml/>;
return <xml><body>
<dyn signal={signal x}/>
<button value="Grab" onclick={y <- rpc (bobo ()); set x y}/>
</body></xml>
| UrWeb | 2 | apple314159/urweb | tests/rs.ur | [
"BSD-3-Clause"
] |
{layout '@layout.latte'}
{block title}{$pageTitle}{/block}
{block content}
<h1>{$pageTitle}</h1>
<table class="summary table table-bordered table-responsive table-striped">
{foreach $exceptions as $exception}
<tr>
<td class="name">
<a href="{$exception|linkReflection}" n:class="$exception->isDeprecated() ? deprecated">{$exception->getName()}</a>
</td>
</tr>
{/foreach}
</table>
{/block}
| Latte | 4 | pujak17/tets | packages/ThemeDefault/src/exceptions.latte | [
"MIT"
] |
%!PS-Adobe-3.0
%%Creator: cairo 1.10.2 (http://cairographics.org)
%%CreationDate: Wed Jan 14 11:07:43 2015
%%Pages: 1
%%BoundingBox: 0 0 490 349
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%DocumentMedia: 173x123mm 490 348 0 () ()
%%EndComments
%%BeginProlog
/languagelevel where
{ pop languagelevel } { 1 } ifelse
2 lt { /Helvetica findfont 12 scalefont setfont 50 500 moveto
(This print job requires a PostScript Language Level 2 printer.) show
showpage quit } if
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%Page: 1 1
%%BeginPageSetup
%%PageMedia: 173x123mm
%%PageBoundingBox: 0 0 490 349
%%EndPageSetup
q 0 0 490 349 rectclip q
1 g
8 w
0 J
1 j
[] 0.0 d
4 M q 1 0 0 -1 0 348.156311 cm
4.016 344.156 m 117.402 174.078 l 4.016 4 l 89.055 4 l 202.441 174.078
l 89.055 344.156 l h
4.016 344.156 m S Q
q 1 0 0 -1 0 348.156311 cm
117.402 344.156 m 230.789 174.078 l 117.402 4 l 202.441 4 l 429.211
344.156 l 344.172 344.156 l 273.309 237.859 l 202.441 344.156 l h
117.402 344.156 m S Q
q 1 0 0 -1 0 348.156311 cm
391.418 244.945 m 353.625 188.254 l 485.906 188.25 l 485.906 244.945 l
h
391.418 244.945 m S Q
q 1 0 0 -1 0 348.156311 cm
334.727 159.906 m 296.93 103.215 l 485.906 103.211 l 485.906 159.906 l
h
334.727 159.906 m S Q
Q Q
showpage
%%Trailer
%%EOF
| PostScript | 1 | Average-user/write-you-a-haskell | img/Haskell-Logo.ps | [
"MIT"
] |
/**
* This file is part of the Phalcon Framework.
*
* (c) Phalcon Team <team@phalcon.io>
*
* For the full copyright and license information, please view the LICENSE.txt
* file that was distributed with this source code.
*/
namespace Phalcon\Logger;
use DateTimeImmutable;
/**
* Phalcon\Logger\Item
*
* Represents each item in a logging transaction
*
*/
class Item
{
/**
* Log Context
*
* @var mixed
*/
protected context { get };
/**
* Log message
*
* @var string
*/
protected message { get };
/**
* Log type
*
* @var integer
*/
protected level { get };
/**
* Log message
*
* @var string
*/
protected levelName { get };
/**
* Log timestamp
*
* @var DateTimeImmutable
*/
protected time { get };
/**
* Phalcon\Logger\Item constructor
*/
public function __construct(
string message,
string levelName,
int level,
<DateTimeImmutable> time,
array context = []
) {
let this->message = message,
this->levelName = levelName,
this->level = level,
this->time = time,
this->context = context;
}
}
| Zephir | 4 | stijn1989/cphalcon | phalcon/Logger/Item.zep | [
"BSD-3-Clause"
] |
# Binary semantics
```haskell
module Binary where
import Codec.CBOR.Term (Term(..))
import Data.List.NonEmpty (NonEmpty(..))
import Prelude hiding (Bool(..))
import Syntax
( Builtin(..)
, Constant(..)
, Expression(..)
, File(..)
, FilePrefix(..)
, ImportMode(..)
, ImportType(..)
, Operator(..)
, Scheme(..)
, TextLiteral(..)
, URL(..)
)
import qualified Data.ByteArray as ByteArray
import qualified Data.List as List
import qualified Data.List.NonEmpty as NonEmpty
import qualified Data.Time as Time
import qualified Data.Ord as Ord
import qualified GHC.Float as Float
import qualified Numeric.Half as Half
import qualified Prelude
```
This document formalizes the semantics for encoding and decoding Dhall
expressions to and from a binary representation
* [Motivation](#motivation)
* [CBOR](#cbor)
* [CBOR expressions](#cbor-expressions)
* [Encoding judgment](#encoding-judgment)
* [Variables](#variables)
* [Built-in constants](#built-in-constants)
* [Function application](#function-application)
* [Functions](#functions)
* [Operators](#operators)
* [`List`](#list)
* [`Optional`](#optional)
* [`merge`-expressions](#merge-expressions)
* [Records](#records)
* [Unions](#unions)
* [`Bool`](#bool)
* [`Natural`](#natural)
* [`Integer`](#integer)
* [`Double`](#double)
* [`Text`](#text)
* [`assert`](#assert)
* [Imports](#imports)
* [`let`-expressions](#let-expressions)
* [Type annotations](#type-annotations)
* [Decoding judgment](#decoding-judgment)
* [CBOR Tags](#cbor-tags)
* [Built-in constants](#built-in-constants-1)
* [Variables](#variables-1)
* [Function application](#function-application-1)
* [Functions](#functions-1)
* [Operators](#operators-1)
* [`List`](#list-1)
* [`Optional`](#optional-1)
* [`merge`-expressions](#merge-expressions-1)
* [Records](#records-1)
* [Unions](#unions-1)
* [`Bool`](#bool-1)
* [`Natural`](#natural-1)
* [`Integer`](#integer-1)
* [`Double`](#double-1)
* [`Text`](#text-1)
* [`assert`](#assert-1)
* [Imports](#imports-1)
* [`let`-expressions](#let-expressions-1)
* [Type annotations](#type-annotations-1)
## Motivation
Dhall's import system requires a standard way to convert expressions to and from
a binary representation, for two reasons:
* Users can import expressions protected by a "semantic integrity check",
which is a SHA-256 hash of the binary representation of an expression's
normal form
* Interpreters can locally cache imported expressions if the user protects them
with a semantic integrity check. The local cache stores expressions using
the SHA-256 hash as the lookup key and the binary representation of the
expression as the cached value.
## CBOR
Dhall's semantics for binary serialization are defined in terms of the
Concise Binary Object Representation (CBOR)
([RFC 7049](https://tools.ietf.org/html/rfc7049)). This section first specifies
a simplified grammar for the subset of CBOR that Dhall uses
(i.e. "CBOR expressions") and then specifies how to convert Dhall expressions to
and from these CBOR expressions.
The `encode` judgments in this section specify how to convert a Dhall
expression to a CBOR expression. Once you have a CBOR expression you can
serialize that CBOR expression to a binary representation according to RFC 7049.
The `decode` judgments in this section specify how to convert a CBOR
expression to a Dhall expression. Once you deserialize a CBOR expression from
a binary representation then you can further decode that CBOR expression to a
Dhall expression.
For efficiency reasons, an implementation MAY elect to not go through an
intermediate CBOR expression and instead serialize to or deserialize from the
binary representation directly. These semantics only specify how to perform the
conversion through an intermediate CBOR expression for simplicity.
## CBOR expressions
The following notation will be used for CBOR expressions in serialization
judgments:
```
e = n ; Unsigned integer (Section 2.1, Major type = 0)
/ -n ; Negative integer (Section 2.1, Major type = 1)
/ b"…" ; Byte string (Section 2.1, Major type = 2)
/ "…" ; Text (Section 2.1, Major type = 3)
/ [ e, es… ] ; Heterogeneous array (Section 2.1, Major type = 4)
/ { e = e, es… } ; Heterogeneous map (Section 2.1, Major type = 5)
/ False ; False (Section 2.3, Value = 20)
/ True ; True (Section 2.3, Value = 21)
/ null ; Null (Section 2.3, Value = 22)
/ n.n_h ; Half float (Section 2.3, Value = 25)
/ n.n_s ; Single float (Section 2.3, Value = 26)
/ n.n ; Double float (Section 2.3, Value = 27)
/ nn ; Unsigned bignum (Section 2.4, Tag = 2)
/ -nn ; Negative bignum (Section 2.4, Tag = 3)
/ m*10^e ; Decimal fraction (Section 2.4, Tag = 4)
/ CBORTag n e ; CBOR tag (Section 2.4, Tag = n)
```
## Expression labels
The CBOR encoding scheme uses a convention where expressions are
encoded as CBOR arrays, with the first element an integer that
identifies the type of expression. In this document we call this kind
of integer a "label". This labelling scheme is specific to Dhall, and
should not be confused with CBOR tags, as documented in
[RFC7049 section 2.4](https://tools.ietf.org/html/rfc7049#section-2.4).
## Encoding judgment
You can encode a Dhall expression using the following judgment:
encode(dhall) = cbor
... where:
* `dhall` (the input) is a Dhall expression
* `cbor` (the output) is a CBOR expression
```haskell
encode :: Expression -> Term
```
The encoding logic includes several optimizations for more compactly encoding
expressions that are fully resolved and αβ-normalized because expressions are
fully interpreted before they are hashed or cached. For example, the encoding
uses labels less than 24 for language features that survive both import resolution
and normalization (such as a function type) since those labels fit in one byte.
Language features that don't survive full interpretation (such as a `let`
expression or an import) use labels of 24 or above. Similarly, the encoding using
a more compact representation for variables named `_` because no other variable
names remain after α-normalization.
Do not construe these optimizations to mean that you need to resolve imports
or αβ-normalize expressions. You may encode or decode expressions that have
not been resolved in any way.
### Variables
Encode a variable named `"_"` as its index, using the smallest numeric
representation available:
─────────────── ; n < 2^64
encode(_@n) = n
──────────────── ; 2^64 <= n
encode(_@n) = nn
```haskell
encode (Variable "_" n)
| n < 0xFFFFFFFFFFFFFFFF = TInt (fromIntegral n)
| otherwise = TInteger (fromIntegral n)
```
This optimization takes advantage of the fact that α-normalized expressions
only use variables named `_`. Encoding an α-normalized expression is equivalent
to using De-Bruijn indices to label variables.
The reason for this optimization is because expressions are commonly
α-normalized before encoding them, such as when computing their semantic
integrity check and also when caching them.
Encode a variable that is not named `"_"` as a two-element CBOR array where
the first element is the identifier and the second element is the encoded
index (using the smallest numeric representation available):
──────────────────────── ; n < 2^64
encode(x@n) = [ "x", n ]
───────────────────────── ; 2^64 <= nn
encode(x@n) = [ "x", nn ]
```haskell
encode (Variable x n)
| n < 0xFFFFFFFFFFFFFFFF = TList [ TString x, TInt (fromIntegral n) ]
| otherwise = TList [ TString x, TInteger (fromIntegral n) ]
```
### Built-in constants
Encode all built-in constants (except boolean values) as naked strings
matching their identifier.
───────────────────────────────────────
encode(Natural/build) = "Natural/build"
─────────────────────────────────────
encode(Natural/fold) = "Natural/fold"
─────────────────────────────────────────
encode(Natural/isZero) = "Natural/isZero"
─────────────────────────────────────
encode(Natural/even) = "Natural/even"
───────────────────────────────────
encode(Natural/odd) = "Natural/odd"
───────────────────────────────────────────────
encode(Natural/toInteger) = "Natural/toInteger"
─────────────────────────────────────
encode(Natural/show) = "Natural/show"
─────────────────────────────────────────────
encode(Natural/subtract) = "Natural/subtract"
─────────────────────────────────────────────
encode(Integer/toDouble) = "Integer/toDouble"
─────────────────────────────────────
encode(Integer/show) = "Integer/show"
─────────────────────────────────────────
encode(Integer/negate) = "Integer/negate"
───────────────────────────────────────
encode(Integer/clamp) = "Integer/clamp"
───────────────────────────────────
encode(Double/show) = "Double/show"
─────────────────────────────────
encode(List/build) = "List/build"
───────────────────────────────
encode(List/fold) = "List/fold"
───────────────────────────────────
encode(List/length) = "List/length"
───────────────────────────────
encode(List/head) = "List/head"
───────────────────────────────
encode(List/last) = "List/last"
─────────────────────────────────────
encode(List/indexed) = "List/indexed"
─────────────────────────────────────
encode(List/reverse) = "List/reverse"
───────────────────────────────
encode(Text/show) = "Text/show"
─────────────────────────────────────
encode(Text/replace) = "Text/replace"
─────────────────────
encode(Bool) = "Bool"
─────────────────────────────
encode(Optional) = "Optional"
─────────────────────
encode(None) = "None"
───────────────────────────
encode(Natural) = "Natural"
───────────────────────────
encode(Integer) = "Integer"
─────────────────────────
encode(Double) = "Double"
─────────────────────
encode(Text) = "Text"
─────────────────────
encode(List) = "List"
─────────────────────
encode(Date) = "Date"
─────────────────────
encode(Time) = "Time"
─────────────────────────────
encode(TimeZone) = "TimeZone"
─────────────────────
encode(Type) = "Type"
─────────────────────
encode(Kind) = "Kind"
─────────────────────
encode(Sort) = "Sort"
```haskell
encode (Builtin NaturalBuild ) = TString "Natural/build"
encode (Builtin NaturalFold ) = TString "Natural/fold"
encode (Builtin NaturalIsZero ) = TString "Natural/isZero"
encode (Builtin NaturalEven ) = TString "Natural/even"
encode (Builtin NaturalOdd ) = TString "Natural/odd"
encode (Builtin NaturalToInteger) = TString "Natural/toInteger"
encode (Builtin NaturalShow ) = TString "Natural/show"
encode (Builtin NaturalSubtract ) = TString "Natural/subtract"
encode (Builtin IntegerToDouble ) = TString "Integer/toDouble"
encode (Builtin IntegerShow ) = TString "Integer/show"
encode (Builtin IntegerNegate ) = TString "Integer/negate"
encode (Builtin IntegerClamp ) = TString "Integer/clamp"
encode (Builtin DoubleShow ) = TString "Double/show"
encode (Builtin ListBuild ) = TString "List/build"
encode (Builtin ListFold ) = TString "List/fold"
encode (Builtin ListLength ) = TString "List/length"
encode (Builtin ListHead ) = TString "List/head"
encode (Builtin ListLast ) = TString "List/last"
encode (Builtin ListIndexed ) = TString "List/indexed"
encode (Builtin ListReverse ) = TString "List/reverse"
encode (Builtin TextShow ) = TString "Text/show"
encode (Builtin TextReplace ) = TString "Text/replace"
encode (Builtin Bool ) = TString "Bool"
encode (Builtin Optional ) = TString "Optional"
encode (Builtin None ) = TString "None"
encode (Builtin Natural ) = TString "Natural"
encode (Builtin Integer ) = TString "Integer"
encode (Builtin Double ) = TString "Double"
encode (Builtin Text ) = TString "Text"
encode (Builtin List ) = TString "List"
encode (Builtin Date ) = TString "Date"
encode (Builtin Time ) = TString "Time"
encode (Builtin TimeZone ) = TString "TimeZone"
encode (Constant Type ) = TString "Type"
encode (Constant Kind ) = TString "Kind"
encode (Constant Sort ) = TString "Sort"
```
### Function application
Function application is encoded as a heterogeneous array where a function
applied to multiple arguments is stored within a single array:
encode(f₀) = f₁ encode(a₀) = a₁ encode(b₀) = b₁ …
───────────────────────────────────────────────────────
encode(f₀ a₀ b₀ …) = [ 0, f₁, a₁, b₁, … ]
```haskell
encode expression@(Application _ _) = loop [] expression
where
loop arguments (Application function a₀) = loop (a₁ : arguments) function
where
a₁ = encode a₀
loop arguments f₀ = TList ([ TInt 0, f₁ ] ++ arguments)
where
f₁ = encode f₀
```
### Functions
Functions that bind variables named `_` have a more compact representation:
encode(A₀) = A₁ encode(b₀) = b₁
──────────────────────────────────────
encode(λ(_ : A₀) → b₀) = [ 1, A₁, b₁ ]
```haskell
encode (Lambda "_" _A₀ b₀) = TList [ TInt 1, _A₁, b₁ ]
where
_A₁ = encode _A₀
b₁ = encode b₀
```
... than functions that bind variables of other names:
encode(A₀) = A₁ encode(b₀) = b₁
─────────────────────────────────────────── ; x ≠ "_"
encode(λ(x : A₀) → b₀) = [ 1, "x", A₁, b₁ ]
```haskell
encode (Lambda x _A₀ b₀) = TList [ TInt 1, TString x, _A₁, b₁ ]
where
_A₁ = encode _A₀
b₁ = encode b₀
```
Function types that bind variables named `_` also have a more compact
representation:
encode(A₀) = A₁ encode(B₀) = B₁
──────────────────────────────────────
encode(∀(_ : A₀) → B₀) = [ 2, A₁, B₁ ]
```haskell
encode (Forall "_" _A₀ _B₀) = TList [ TInt 2, _A₁, _B₁ ]
where
_A₁ = encode _A₀
_B₁ = encode _B₀
```
... than function types that bind variables of other names:
encode(A₀) = A₁ encode(B₀) = B₁
─────────────────────────────────────────── ; x ≠ "_"
encode(∀(x : A₀) → B₀) = [ 2, "x", A₁, B₁ ]
```haskell
encode (Forall x _A₀ _B₀) = TList [ TInt 2, TString x, _A₁, _B₁ ]
where
_A₁ = encode _A₀
_B₁ = encode _B₀
```
### Operators
Operators are encoded as integer labels alongside their two arguments:
encode(l₀) = l₁ encode(r₀) = r₁
───────────────────────────────────
encode(l₀ || r₀) = [ 3, 0, l₁, r₁ ]
encode(l₀) = l₁ encode(r₀) = r₁
───────────────────────────────────
encode(l₀ && r₀) = [ 3, 1, l₁, r₁ ]
encode(l₀) = l₁ encode(r₀) = r₁
───────────────────────────────────
encode(l₀ == r₀) = [ 3, 2, l₁, r₁ ]
encode(l₀) = l₁ encode(r₀) = r₁
───────────────────────────────────
encode(l₀ != r₀) = [ 3, 3, l₁, r₁ ]
encode(l₀) = l₁ encode(r₀) = r₁
──────────────────────────────────
encode(l₀ + r₀) = [ 3, 4, l₁, r₁ ]
encode(l₀) = l₁ encode(r₀) = r₁
──────────────────────────────────
encode(l₀ * r₀) = [ 3, 5, l₁, r₁ ]
encode(l₀) = l₁ encode(r₀) = r₁
───────────────────────────────────
encode(l₀ ++ r₀) = [ 3, 6, l₁, r₁ ]
encode(l₀) = l₁ encode(r₀) = r₁
──────────────────────────────────
encode(l₀ # r₀) = [ 3, 7, l₁, r₁ ]
encode(l₀) = l₁ encode(r₀) = r₁
──────────────────────────────────
encode(l₀ ∧ r₀) = [ 3, 8, l₁, r₁ ]
encode(l₀) = l₁ encode(r₀) = r₁
──────────────────────────────────
encode(l₀ ⫽ r₀) = [ 3, 9, l₁, r₁ ]
encode(l₀) = l₁ encode(r₀) = r₁
───────────────────────────────────
encode(l₀ ⩓ r₀) = [ 3, 10, l₁, r₁ ]
encode(l₀) = l₁ encode(r₀) = r₁
───────────────────────────────────
encode(l₀ ? r₀) = [ 3, 11, l₁, r₁ ]
encode(l₀) = l₁ encode(r₀) = r₁
─────────────────────────────────────
encode(l₀ === r₀) = [ 3, 12, l₁, r₁ ]
encode(l₀) = l₁ encode(r₀) = r₁
────────────────────────────────────
encode(l₀ :: r₀) = [ 3, 13, l₁, r₁ ]
```haskell
encode (Operator l₀ op r₀) = TList [ TInt 3, TInt opcode, l₁, r₁ ]
where
l₁ = encode l₀
r₁ = encode r₀
opcode = case op of
Or -> 0
And -> 1
Equal -> 2
NotEqual -> 3
Plus -> 4
Times -> 5
TextAppend -> 6
ListAppend -> 7
CombineRecordTerms -> 8
Prefer -> 9
CombineRecordTypes -> 10
Alternative -> 11
Equivalent -> 12
encode (Completion l₀ r₀) = TList [TInt 3, TInt 13, l₁, r₁ ]
where
l₁ = encode l₀
r₁ = encode r₀
```
### `List`
Empty `List`s only store their type:
encode(T₀) = T₁
────────────────────────────────
encode([] : List T₀) = [ 4, T₁ ]
```haskell
encode (EmptyList (Application (Builtin List) _T₀)) = TList [ TInt 4, _T₁ ]
where
_T₁ = encode _T₀
```
If the type annotation is not of the form `List T`:
encode(T₀) = T₁
────────────────────────────
encode([] : T₀) = [ 28, T₁ ]
```haskell
encode (EmptyList _T₀) = TList [ TInt 28, _T₁ ]
where
_T₁ = encode _T₀
```
Non-empty `List`s don't store their type, but do store their elements inline:
encode(a₀) = a₁ encode(b₀) = b₁
──────────────────────────────────────────────
encode([ a₀, b₀, … ]) = [ 4, null, a₁, b₁, … ]
```haskell
encode (NonEmptyList as₀) = TList ([ TInt 4, TNull ] ++ as₁)
where
as₁ = map encode (NonEmpty.toList as₀)
```
### `Some`
`Some` expressions store the type (if present) and their value:
encode(t₀) = t₁
─────────────────────────────────
encode(Some t₀) = [ 5, null, t₁ ]
```haskell
encode (Some t₀) = TList [ TInt 5, TNull, t₁ ]
where
t₁ = encode t₀
```
### `merge` expressions
`merge` expressions differ in their encoding depending on whether or not they
have a type annotation:
encode(t₀) = t₁ encode(u₀) = u₁
───────────────────────────────────
encode(merge t₀ u₀) = [ 6, t₁, u₁ ]
encode(t₀) = t₁ encode(u₀) = u₁ encode(T₀) = T₁
───────────────────────────────────────────────────
encode(merge t₀ u₀ : T₀) = [ 6, t₁, u₁, T₁ ]
```haskell
encode (Merge t₀ u₀ Nothing) = TList [ TInt 6, t₁, u₁ ]
where
t₁ = encode t₀
u₁ = encode u₀
encode (Merge t₀ u₀ (Just _T₀)) = TList [ TInt 6, t₁, u₁, _T₁ ]
where
t₁ = encode t₀
u₁ = encode u₀
_T₁ = encode _T₀
```
### `toMap` expressions
`toMap` expressions differ in their encoding depending on whether or not they
have a type annotation:
encode(t₀) = t₁
─────────────────────────────
encode(toMap t₀) = [ 27, t₁ ]
encode(t₀) = t₁ encode(T₀) = T₁
──────────────────────────────────────
encode(toMap t₀ : T₀) = [ 27, t₁, T₁ ]
```haskell
encode (ToMap t₀ Nothing) = TList [ TInt 27, t₁ ]
where
t₁ = encode t₀
encode (ToMap t₀ (Just _T₀)) = TList [ TInt 27, t₁, _T₁ ]
where
t₁ = encode t₀
_T₁ = encode _T₀
```
### Records
Dhall record types translate to CBOR maps:
encode(T₀) = T₁ …
──────────────────────────────────────────────
encode({ x : T₀, … }) = [ 7, { "x" = T₁, … } ]
```haskell
encode (RecordType xTs₀) = TList [ TInt 7, TMap xTs₁ ]
where
xTs₁ = map adapt (List.sortBy (Ord.comparing fst) xTs₀)
adapt (x, _T₀) = (TString x, _T₁)
where
_T₁ = encode _T₀
```
Dhall record literals translate to CBOR maps:
encode(t₀) = t₁ …
──────────────────────────────────────────────
encode({ x = t₀, … }) = [ 8, { "x" = t₁, … } ]
```haskell
encode (RecordLiteral xts₀) = TList [ TInt 8, TMap xts₁ ]
where
xts₁ = map adapt (List.sortBy (Ord.comparing fst) xts₀)
adapt (x, _T₀) = (TString x, _T₁)
where
_T₁ = encode _T₀
```
Note: the record fields should be sorted before translating them to CBOR maps.
Field access:
encode(t₀) = t₁
─────────────────────────────
encode(t₀.x) = [ 9, t₁, "x" ]
```haskell
encode (Field t₀ x) = TList [ TInt 9, t₁, TString x ]
where
t₁ = encode t₀
```
... is encoded differently than record projection:
encode(t₀) = t₁ …
────────────────────────────────────────────────────
encode(t₀.{ x, y, … }) = [ 10, t₁, "x", "y", … ]
```haskell
encode (ProjectByLabels t₀ xs) = TList ([ TInt 10, t₁ ] ++ map TString xs)
where
t₁ = encode t₀
```
Record projection by type is encoded as follows:
encode(t₀) = t₁ encode(T₀) = T₁
────────────────────────────────────
encode(t₀.(T₀)) = [ 10, t₁, [ T₁ ] ]
```haskell
encode (ProjectByType t₀ _T₀) = TList [ TInt 10, t₁, TList [ _T₁ ] ]
where
t₁ = encode t₀
_T₁ = encode _T₀
```
### Unions
Dhall union types translate to CBOR maps:
encode(T₀) = T₁ …
────────────────────────────────────────────────────────────────
encode(< x : T₀ | y | … >) = [ 11, { "x" = T₁, "y" = null, … } ]
```haskell
encode (UnionType xTs₀) = TList [ TInt 11, TMap xTs₁ ]
where
xTs₁ = map adapt (List.sortBy (Ord.comparing fst) xTs₀)
adapt (x, Just _T₀) = (TString x, _T₁)
where
_T₁ = encode _T₀
adapt (x, Nothing) = (TString x, TNull)
```
Union constructors (`U.x`) are encoded according to the rule for record field
accesses above.
The (now-removed) union literal syntax used to be encoded using a leading 12:
encode(t₀) = t₁ encode(T₀) = T₁ …
────────────────────────────────────────────────────────────────────────────────── ; OBSOLETE judgment
encode(< x = t₀ | y : T₀ | z | … >) = [ 12, "x", t₁, { "y" = T₁, "z" = null, … } ]
The (now-removed) `constructors` keyword used to be encoded using a leading 13:
encode(u₀) = u₁
─────────────────────────────────────── ; OBSOLETE judgment
encode(constructors u₀) = [ 13, u₁]
Avoid reusing the numbers 12 and 13 as long as possible until we run out of
numbers less than 24, mainly to avoid old encoded expressions containing union
literals or the `constructors` keyword from being decoded as a newer type of
expression. Once we run out of numbers, first reassign 13 before reassigning
12, because `constructors` was removed from the language before union literals
were.
### `Bool`
Encode Boolean literals using CBOR's built-in support for Boolean values:
───────────────────────
encode(True) = True
─────────────────────────
encode(False) = False
```haskell
encode (Builtin True) = TBool Prelude.True
encode (Builtin False) = TBool Prelude.False
```
`if` expressions are encoded with a label:
encode(t₀) = t₁ encode(l₀) = l₁ encode(r₀) = r₁
───────────────────────────────────────────────────────────────
encode(if t₀ then l₀ else r₀) = [ 14, t₁, l₁, r₁ ]
```haskell
encode (If t₀ l₀ r₀) = TList [ TInt 14, t₁, l₁, r₁ ]
where
t₁ = encode t₀
l₁ = encode l₀
r₁ = encode r₀
```
### `Natural`
Encode `Natural` literals using the smallest available numeric representation:
───────────────────────── ; n < 2^64
encode(n) = [ 15, n ]
────────────────────────── ; 2^64 <= nn
encode(n) = [ 15, nn ]
```haskell
encode (NaturalLiteral n)
| n < 0xFFFFFFFFFFFFFFFF = TList [ TInt 15, TInt (fromIntegral n) ]
| otherwise = TList [ TInt 15, TInteger (fromIntegral n) ]
```
### `Integer`
Encode `Integer` literals using the smallest available numeric representation:
──────────────────────────── ; ±n < -2^64
encode(±n) = [ 16, -nn ]
─────────────────────────── ; -2^64 <= ±n < 0
encode(±n) = [ 16, -n ]
────────────────────────── ; 0 <= ±n < 2^64
encode(±n) = [ 16, n ]
─────────────────────────── ; 2^64 <= ±n
encode(±n) = [ 16, nn ]
```haskell
encode (IntegerLiteral n)
| n < -0xFFFFFFFFFFFFFFFF = TList [ TInt 16, TInteger n ]
| n < 0 = TList [ TInt 16, TInt (fromInteger n) ]
| n < 0xFFFFFFFFFFFFFFFF = TList [ TInt 16, TInt (fromInteger n) ]
| otherwise = TList [ TInt 16, TInteger n ]
```
### `Double`
CBOR has 16-bit, 32-bit, and 64-bit IEEE 754 floating point representations. As
recommended by the [working draft of the CBOR Working Group][rfc7049bis],
encode a `Double` literal using the shortest floating point encoding that
preserves its value.
[rfc7049bis]: https://tools.ietf.org/html/draft-ietf-cbor-7049bis-04#section-4.6
───────────────────────────── ; toDouble(toHalf(n.n)) = n.n
encode(n.n) = n.n_h
───────────────────────────── ; toDouble(toHalf(n.n)) ≠ n.n AND toDouble(toSingle(n.n)) = n.n
encode(n.n) = n.n_s
───────────────────────────── ; toDouble(toSingle(n.n)) ≠ n.n
encode(n.n) = n.n
```haskell
encode (DoubleLiteral n)
| isNaN n = THalf n_s
| Float.float2Double (Half.fromHalf n_h) == n = THalf n_s
| Float.float2Double n_s == n = TFloat n_s
| otherwise = TDouble n
where
n_s = Float.double2Float n
n_h = Half.toHalf n_s
```
Note in particular the encoding of these special values:
─────────────────────────── ; Even though NaN does not equal itself, we
encode(NaN) = n.n_h(0x7e00) ; still encode it using half-precision
────────────────────────────────
encode(Infinity) = n.n_h(0x7c00)
─────────────────────────────────
encode(-Infinity) = n.n_h(0xfc00)
────────────────────────────
encode(+0.0) = n.n_h(0x0000)
────────────────────────────
encode(-0.0) = n.n_h(0x8000)
These values ensure identical semantic hashes on different platforms.
### `Text`
Encode `Text` literals as an alternation between their text chunks and any
interpolated expressions:
encode(b₀) = b₁ encode(d₀) = d₁ … encode(y₀) = y₁
───────────────────────────────────────────────────────────────────────────────────
encode("a${b₀}c${d}e…x${y₀}z") = [ 18, "a", b₁, "c", d₁, "e", …, "x", y₁, "z" ]
```haskell
encode (TextLiteral (Chunks xys₀ z)) = TList (TInt 18 : xys₁ ++ [ TString z ])
where
xys₁ = do
(x, y₀) <- xys₀
let y₁ = encode y₀
[ TString x, y₁ ]
```
In other words: the amount of encoded elements is always an odd number, with the
odd elements being strings and the even ones being interpolated expressions.
Note: this means that the first and the last encoded elements are always strings,
even if they are empty strings.
### `assert`
An assertion encoded its own annotation (regardless of whether the annotation is
an equivalence or not):
encode(T₀) = T₁
────────────────────────────────
encode(assert : T₀) = [ 19, T₁ ]
```haskell
encode (Assert _T₀) = TList [ TInt 19, _T₁ ]
where
_T₁ = encode _T₀
```
### Imports
Imports are encoded as a list where the first three elements are always:
* `24` - To signal that this expression is an import
* An optional integrity check
* The integrity check is represented as `null` if absent
* The integrity check is b"[multihash][]" if present
* An optional import type (such as `as Text`)
* The import type is `0` for when importing a Dhall expression (the default)
* The import type is `1` for importing `as Text`
* The import type is `2` for importing `as Location`
For example, if an import does not specify an integrity check or import type
then the CBOR expression begins with:
[ 24, null, 0, … ]
After that a URL import contains the following elements:
* The scheme, which is 0 (if the scheme is http) or 1 (if the scheme is https)
* An optional custom headers specification
* The specification is `null` if absent
* The authority
* This includes user information and port if present
* This does not include the preceding "//" or the following "/"
* For example, the authority of `http://user@host:port/foo` is encoded as
`"user@host:port"`
* Then one element per path component
* The encoded path components do not include their separating slashes
* For example, `/foo/bar/baz` is stored as `…, "foo", "bar", "baz", …`
* There is always at least one path component. If the source URL has no
path, [normalize it to `/`][RFC7230§2.7.3] before encoding.
* Then one element for the query component
* If there is no query component then it is encoded as `null`
* If there is a query component then it is stored without the `?`
* A query component with internal `&` separators is still one element
* For example `?foo=1&bar=true` is stored as `"foo=1&bar=true"`
[RFC7230§2.7.3]: https://tools.ietf.org/html/rfc7230#section-2.7.3
The full rules are:
───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
encode(http://authority/path₀/path₁/…/file?query) = [ 24, null, 0, 0, null, "authority", "path₀", "path₁", …, "file", "query" ]
───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
encode(http://authority/path₀/path₁/…/file) = [ 24, null, 0, 0, null, "authority", "path₀", "path₁", …, "file", null ]
────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
encode(https://authority/path₀/path₁/…/file?query) = [ 24, null, 0, 1, null, "authority", "path₀", "path₁", …, "file", "query" ]
────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
encode(https://authority/path₀/path₁/…/file) = [ 24, null, 0, 1, null, "authority", "path₀", "path₁", …, "file", null ]
If you import `using headers`, then the fourth element contains the import
header:
encode(http://authority directory file) = [ 24, x, y, 0, null, xs… ]
encode(headers) = h
───────────────────────────────────────────────────────────────────────────────
encode(http://authority directory file using headers) = [ 24, x, y, 0, h, xs… ]
encode(https://authority directory file) = [ 24, x, y, 1, null, xs… ]
encode(headers) = h
────────────────────────────────────────────────────────────────────────────────
encode(https://authority directory file using headers) = [ 24, x, y, 1, h, xs… ]
Absolute file paths are tokenized in the same way:
─────────────────────────────────────────────────────────────────────────────
encode(/path₀/path₁/…/file) = [ 24, null, 0, 2, "path₀", "path₁", …, "file" ]
Each path type is treated as another "scheme" (i.e. they are distinguished by
the third element):
──────────────────────────────────────────────────────────────────────────────
encode(./path₀/path₁/…/file) = [ 24, null, 0, 3, "path₀", "path₁", …, "file" ]
───────────────────────────────────────────────────────────────────────────────
encode(../path₀/path₁/…/file) = [ 24, null, 0, 4, "path₀", "path₁", …, "file" ]
──────────────────────────────────────────────────────────────────────────────
encode(~/path₀/path₁/…/file) = [ 24, null, 0, 5, "path₀", "path₁", …, "file" ]
Environment variables are also treated as another scheme:
───────────────────────────────────────
encode(env:x) = [ 24, null, 0, 6, "x" ]
The `missing` keyword is also treated as another import type:
────────────────────────────────────
encode(missing) = [ 24, null, 0, 7 ]
If an import has an integrity check, store that in the second element as a byte
string of the [multihash][]. Implementors do not need to be concerned
with full multihash at this point since Dhall only supports sha256,
so this rule suffices:
encode(import) = [ 24, null, x, xs… ]
base16decode(base16Hash) = rawHash
─────────────────────────────────────────────────────────────────────────────
encode(import sha256:base16Hash) = [ 24, b"\x12\x20rawHash", x, xs… ]
If you import `as Text`, then the third element encoding the import type is `1`
instead of `0`:
encode(import) = [ 24, x, 0, xs… ]
──────────────────────────────────────────
encode(import as Text) = [ 24, x, 1, xs… ]
If you import `as Location`, then the third element encoding the import type is `2`
instead of `0`:
encode(import) = [ 24, x, 0, xs… ]
──────────────────────────────────────────
encode(import as Location) = [ 24, x, 2, xs… ]
```haskell
encode (Import importType₀ importMode₀ hash₀) =
TList ([ TInt 24, hash₁, importMode₁ ] <> importType₁)
where
hash₁ = case hash₀ of
Just digest -> TBytes ("\x12\x20" <> ByteArray.convert digest)
Nothing -> TNull
importMode₁ = case importMode₀ of
Code -> TInt 0
RawText -> TInt 1
Location -> TInt 2
importType₁ = case importType₀ of
Remote (URL scheme₀ authority₀ (File directory₀ file₀) query₀) headers₀ ->
[ scheme₁, headers₁, authority₁ ]
<> directory₁
<> [ file₁, query₁ ]
where
scheme₁ = case scheme₀ of
HTTP -> TInt 0
HTTPS -> TInt 1
authority₁ = TString authority₀
headers₁ = case headers₀ of
Just h -> encode h
Nothing -> TNull
directory₁ = map TString (reverse directory₀)
query₁ = case query₀ of
Just q -> TString q
Nothing -> TNull
file₁ = TString file₀
Path filePrefix₀ (File directory₀ file₀) ->
filePrefix₁ : directory₁ <> [ file₁ ]
where
directory₁ = map TString (reverse directory₀)
filePrefix₁ = case filePrefix₀ of
Absolute -> TInt 2
Here -> TInt 3
Parent -> TInt 4
Home -> TInt 5
file₁ = TString file₀
Env x ->
[ TInt 6, TString x ]
Missing ->
[ TInt 7 ]
```
### `let` expressions
A `let` binder is represented by a sequence of three elements: name, type annotation (`null` if absent) and bound expression. Adjacent `let` expressions are "flattened" and encoded in a single array, concatenating the immediately nested binders:
encode(A₀) = A₁ encode(a₀) = a₁ encode(b₀) = b₁ ... encode(z₀) = z₁
─────────────────────────────────────────────────────────────────────────────────────────────
encode(let x : A₀ = a₀ in let y = b₀ ... in z₀) = [ 25, "x", A₁, a₁, "y", null, b₁, ..., z₁ ]
```haskell
encode expression@(Let _ _ _ _) = loop id expression
where
loop difference (Let x (Just _A₀) a₀ c) =
loop (difference . ([ TString x, _A₁, a₁ ] <>)) c
where
_A₁ = encode _A₀
a₁ = encode a₀
loop difference (Let y Nothing b₀ c) =
loop (difference . ([ TString y, TNull, b₁ ] <>)) c
where
b₁ = encode b₀
loop difference z₀ = TList (TInt 25 : difference [ z₁ ])
where
z₁ = encode z₀
```
### Type annotations
encode(t₀) = t₁ encode(T₀) = T₁
─────────────────────────────────
encode(t₀ : T₀) = [ 26, t₁, T₁ ]
```haskell
encode (Annotation t₀ _T₀) = TList [ TInt 26, t₁, _T₁ ]
where
t₁ = encode t₀
_T₁ = encode _T₀
```
### Nested record update
encode(e₀) = e₁ encode(v₀) = v₁
───────────────────────────────────────────────────────
encode(e₀ with k.ks… = v₀) = [ 29, e₁, [ k, ks… ], v₁ ]
```haskell
encode (With e₀ (k₀ :| ks₀) v₀) = TList [ TInt 29, e₁, TList (k₁ : ks₁), v₁ ]
where
e₁ = encode e₀
k₁ = TString k₀
ks₁ = map TString ks₀
v₁ = encode v₀
```
### `Date` / `Time` / `TimeZone`
─────────────────────────────────────────
encode(YYYY-MM-DD) = [ 30, YYYY, MM, DD ]
```haskell
encode (DateLiteral d) = TList [ TInt 30, TInt (fromInteger _YYYY), TInt _MM, TInt _DD ]
where
(_YYYY, _MM, _DD) = Time.toGregorian d
```
ss = m*10^e
─────────────────────────────────────────
encode(hh:mm:ss) = [ 31, hh, mm, m*10^e ]
```haskell
encode (TimeLiteral (Time.TimeOfDay hh mm ss) precision) =
TList [ TInt 31, TInt hh, TInt mm, TTagged 4 (TList [ TInt e, m ]) ]
where
e = negate precision
mantissa :: Integer
mantissa = truncate (ss * 10^precision)
m | fromIntegral (minBound :: Int) <= mantissa
&& mantissa <= fromIntegral (maxBound :: Int) =
TInt (fromInteger mantissa)
| otherwise =
TInteger mantissa
```
─────────────────────────────────────
encode(+HH:MM) = [ 32, True, HH, MM ]
──────────────────────────────────────
encode(-HH:MM) = [ 32, False, HH, MM ]
```haskell
encode (TimeZoneLiteral (Time.TimeZone minutes _ _)) =
TList [ TInt 32, TBool sign, TInt _HH, TInt _MM ]
where
sign = 0 <= minutes
(_HH, _MM) = abs minutes `divMod` 60
```
## Decoding judgment
You can decode a Dhall expression using the following judgment:
decode(cbor) = dhall
... where:
* `cbor` (the input) is a CBOR expression
* `dhall` (the output) is a Dhall expression
### CBOR Tags
Dhall does not currently recognize any CBOR tags that add semantics to data
items. However, [tag 55799 is defined][self-describe-cbor] to mean that the
following data item has exactly the same semantics it would have without the
tag. Therefore this tag should be allowed by decoders, and ignored:
decode(x) = e
───────────────────────────────────────────
decode(CBORTag 55799 x) = e
### Built-in constants
A naked CBOR string represents a built-in identifier. Decode the string as
a built-in identifier if it matches any of the following strings:
───────────────────────────────────────────
decode("Natural/build") = Natural/build
─────────────────────────────────────────
decode("Natural/fold") = Natural/fold
─────────────────────────────────────────────
decode("Natural/isZero") = Natural/isZero
─────────────────────────────────────────
decode("Natural/even") = Natural/even
───────────────────────────────────────
decode("Natural/odd") = Natural/odd
───────────────────────────────────────────────────
decode("Natural/toInteger") = Natural/toInteger
─────────────────────────────────────────
decode("Natural/show") = Natural/show
─────────────────────────────────────────────────
decode("Integer/toDouble") = Integer/toDouble
─────────────────────────────────────────
decode("Integer/show") = Integer/show
─────────────────────────────────────────────
decode("Integer/negate") = Integer/negate
───────────────────────────────────────────
decode("Integer/clamp") = Integer/clamp
───────────────────────────────────────
decode("Double/show") = Double/show
─────────────────────────────────────
decode("List/build") = List/build
───────────────────────────────────
decode("List/fold") = List/fold
───────────────────────────────────────
decode("List/length") = List/length
───────────────────────────────────
decode("List/head") = List/head
───────────────────────────────────
decode("List/last") = List/last
─────────────────────────────────────────
decode("List/indexed") = List/indexed
─────────────────────────────────────────
decode("List/reverse") = List/reverse
─────────────────────────────────────
decode("Text/replace") = Text/replace
───────────────────────────────
decode("Text/show") = Text/show
─────────────────────────
decode("Bool") = Bool
─────────────────────────────────
decode("Optional") = Optional
─────────────────────────
decode("None") = None
───────────────────────────────
decode("Natural") = Natural
───────────────────────────────
decode("Integer") = Integer
─────────────────────────────
decode("Double") = Double
─────────────────────────
decode("Text") = Text
─────────────────────────
decode("List") = List
─────────────────────────
decode("Date") = Date
─────────────────────────
decode("Time") = Time
─────────────────────────────
decode("TimeZone") = TimeZone
─────────────────────────
decode("Type") = Type
─────────────────────────
decode("Kind") = Kind
─────────────────────────
decode("Sort") = Sort
Otherwise, there is a decoding error.
### Variables
A CBOR array beginning with a string indicates a variable. The array should
only have two elements, the first of which is a string and the second of which
is the variable index, which can be either a compact integer or a bignum:
────────────────────────────
decode([ "x", n ]) = x@n
─────────────────────────────
decode([ "x", nn ]) = x@n
A decoder MUST accept an integer that is not encoded using the most compact
representation. For example, a naked unsiged bignum storing `0` is valid, even
though the `0` could have been stored in a single byte as as a compact unsigned
integer instead.
A decoder MUST reject a variable named "_", which MUST instead be represented
by its integer index according to the following decoding rules.
Only variables named `_` encode to a naked CBOR integer, so decoding turns a
naked CBOR integer back into a variable named `_`:
───────────────────
decode(n) = _@n
────────────────────
decode(nn) = _@n
As before, the encoded integer need not be stored in the most compact
representation.
### Function application
Decode a CBOR array beginning with `0` as function application, where the second
element is the function and the remaining elements are the function arguments:
decode(f₁) = f₀ decode(a₁) = a₀ decode(b₁) = b₀ …
───────────────────────────────────────────────────────────────────
decode([ 0, f₁, a₁, b₁, … ]) = f₀ a₀ b₀ …
A decoder MUST require at least 1 function argument. In other words, a decode
MUST reject a CBOR array of of the form `[ 0, f₁ ]`.
### Functions
Decode a CBOR array beginning with a `1` as a λ-expression. If the array has
three elements then the bound variable is named `_`:
decode(A₁) = A₀ decode(b₁) = b₀
──────────────────────────────────────────
decode([ 1, A₁, b₁ ]) = λ(_ : A₀) → b₀
... otherwise if the array has four elements then the name of the bound variable
is included in the array:
decode(A₁) = A₀ decode(b₁) = b₀
─────────────────────────────────────────────── ; x ≠ "_"
decode([ 1, "x", A₁, b₁ ]) = λ(x : A₀) → b₀
A decoder MUST reject the latter form if the bound variable is named `_`
Decode a CBOR array beginning with a `2` as a ∀-expression. If the array has
three elements then the bound variable is named `_`:
decode(A₁) = A₀ decode(B₁) = B₀
──────────────────────────────────────────
decode([ 2, A₁, B₁ ]) = ∀(_ : A₀) → B₀
... otherwise if the array has four elements then the name of the bound variable
is included in the array:
decode(A₁) = A₀ decode(B₁) = B₀
─────────────────────────────────────────────── ; x ≠ "_"
decode([ 2, "x", A₁, B₁ ]) = ∀(x : A₀) → B₀
A decoder MUST reject the latter form if the bound variable is named `_`
### Operators
Decode a CBOR array beginning with a `3` as an operator expression:
decode(l₁) = l₀ decode(r₁) = r₀
───────────────────────────────────
decode([ 3, 0, l₁, r₁ ]) = l₀ || r₀
decode(l₁) = l₀ decode(r₁) = r₀
───────────────────────────────────
decode([ 3, 1, l₁, r₁ ]) = l₀ && r₀
decode(l₁) = l₀ decode(r₁) = r₀
───────────────────────────────────
decode([ 3, 2, l₁, r₁ ]) = l₀ == r₀
decode(l₁) = l₀ decode(r₁) = r₀
───────────────────────────────────
decode([ 3, 3, l₁, r₁ ]) = l₀ != r₀
decode(l₁) = l₀ decode(r₁) = r₀
──────────────────────────────────
decode([ 3, 4, l₁, r₁ ]) = l₀ + r₀
decode(l₁) = l₀ decode(r₁) = r₀
──────────────────────────────────
decode([ 3, 5, l₁, r₁ ]) = l₀ * r₀
decode(l₁) = l₀ decode(r₁) = r₀
───────────────────────────────────
decode([ 3, 6, l₁, r₁ ]) = l₀ ++ r₀
decode(l₁) = l₀ decode(r₁) = r₀
──────────────────────────────────
decode([ 3, 7, l₁, r₁ ]) = l₀ # r₀
decode(l₁) = l₀ decode(r₁) = r₀
──────────────────────────────────
decode([ 3, 8, l₁, r₁ ]) = l₀ ∧ r₀
decode(l₁) = l₀ decode(r₁) = r₀
──────────────────────────────────
decode([ 3, 9, l₁, r₁ ]) = l₀ ⫽ r₀
decode(l₁) = l₀ decode(r₁) = r₀
───────────────────────────────────
decode([ 3, 10, l₁, r₁ ]) = l₀ ⩓ r₀
decode(l₁) = l₀ decode(r₁) = r₀
───────────────────────────────────
decode([ 3, 11, l₁, r₁ ]) = l₀ ? r₀
decode(l₁) = l₀ decode(r₁) = r₀
─────────────────────────────────────
decode([ 3, 12, l₁, r₁ ]) = l₀ === r₀
decode(l₁) = l₀ decode(r₁) = r₀
────────────────────────────────────
decode([ 3, 13, l₁, r₁ ]) = l₀ :: r₀
### `List`
Decode a CBOR array beginning with a `4` or a `28` as a `List` literal
If the list is empty, then the type MUST be non-`null`:
decode(T₁) = T₀
────────────────────────────────────
decode([ 4, T₁ ]) = [] : List T₀
decode(T₁) = T₀
────────────────────────────
decode([ 28, T₁ ]) = [] : T₀
If the list is non-empty then the type MUST be `null`:
decode(a₁) = a₀ decode(b₁) = b₀
──────────────────────────────────────────────────
decode([ 4, null, a₁, b₁, … ]) = [ a₀, b₀, … ]
### `Some`
Decode a CBOR array beginning with a `5` as a `Some` expression:
decode(t₁) = t₀
─────────────────────────────────────
decode([ 5, null, t₁ ]) = Some t₀
### `merge` expressions
Decode a CBOR array beginning with a `6` as a `merge` expression:
decode(t₁) = t₀ decode(u₁) = u₀
─────────────────────────────────────────
decode([ 6, t₁, u₁ ]) = merge t₀ u₀
decode(t₁) = t₀ decode(u₁) = u₀ decode(T₁) = T₀
───────────────────────────────────────────────────────────────
decode([ 6, t₁, u₁, T₁ ]) = merge t₀ u₀ : T₀
### `toMap` expressions
Decode a CBOR array beginning with a `27` as a `toMap` expression:
decode(t₁) = t₀
─────────────────────────────
decode([ 27, t₁ ]) = toMap t₀
decode(t₁) = t₀ decode(T₁) = T₀
──────────────────────────────────────
decode([ 27, t₁, T₁ ]) = toMap t₀ : T₀
### Records
Decode a CBOR array beginning with a `7` as a record type:
decode(T₁) = T₀ …
──────────────────────────────────────────────────
decode([ 7, { "x" = T₁, … } ]) = { x : T₀, … }
Decode a CBOR array beginning with a `8` as a record literal:
decode(t₁) = t₀ …
──────────────────────────────────────────────────
decode([ 8, { "x" = t₁, … } ]) = { x = t₀, … }
Decode a CBOR array beginning with a `9` as a field access:
decode(t₁) = t₀ …
─────────────────────────────────
decode([ 9, t₁, "x" ]) = t₀.x
Decode a CBOR array beginning with a `10` as a record projection:
decode(t₁) = t₀ …
────────────────────────────────────────────────────
decode([ 10, t₁, "x", "y", … ]) = t₀.{ x, y, … }
decode(t₁) = t₀ decode(T₁) = T₀
────────────────────────────────
decode([ 10, t₁, [ T₁ ] ]) = t₀.(T₀)
A decoder MUST NOT attempt to enforce uniqueness of keys. That is the
responsibility of the type-checking phase.
### Unions
Decode a CBOR array beginning with a `11` as a union type:
decode(T₁) = T₀ …
────────────────────────────────────────────────────────────────
decode([ 11, { "x" = T₁, "y" = null, … } ]) = < x : T₀ | y | … >
A decoder MUST NOT attempt to enforce uniqueness of keys. That is the
responsibility of the type-checking phase.
### `Bool`
Decode CBOR boolean values to Dhall boolean values:
───────────────────────
decode(True) = True
─────────────────────────
decode(False) = False
Decode a CBOR array beginning with a `14` as an `if` expression:
decode(t₁) = t₀ decode(l₁) = l₀ decode(r₁) = r₀
───────────────────────────────────────────────────────────────
decode([ 14, t₁, l₁, r₁ ]) = if t₀ then l₀ else r₀
### `Natural`
Decode a CBOR array beginning with a `15` as a `Natural` literal:
─────────────────────────
decode([ 15, n ]) = n
──────────────────────────
decode([ 15, nn ]) = n
A decoder MUST accept an integer that is not encoded using the most compact
representation.
### `Integer`
Decode a CBOR array beginning with a `16` as an `Integer` literal:
────────────────────────────
decode([ 16, -nn ]) = ±n
───────────────────────────
decode([ 16, -n ]) = ±n
──────────────────────────
decode([ 16, n ]) = ±n
───────────────────────────
decode([ 16, nn ]) = ±n
A decoder MUST accept an integer that is not encoded using the most compact
representation.
### `Double`
Decode a CBOR double, single, or half and convert to a `Double` literal:
─────────────────────────────
decode(n.n) = n.n
─────────────────────────────
decode(n.n_s) = n.n
─────────────────────────────
decode(n.n_h) = n.n
### `Text`
Decode a CBOR array beginning with a `18` as a `Text` literal:
decode(b₁) = b₀ decode(d₁) = d₀ … decode(y₁) = y₀
───────────────────────────────────────────────────────────────────────────────────
decode([ 18, "a", b₁, "c", d₁, "e", …, "x", y₁, "z" ]) = "a${b₀}c${d}e…x${y₀}z"
### `assert`
Decode a CBOR array beginning with a `19` as an `assert`:
decode(T₁) = T₀
────────────────────────────────
decode([ 19, T₁ ]) = assert : T₀
### Imports
Decode a CBOR array beginning with a `24` as an import
The decoding rules are the exact opposite of the encoding rules:
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
decode([ 24, null, 0, 0, null, "authority", "path₀", "path₁", …, "file", "query" ]) = http://authority/path₀/path₁/…/file?query
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
decode([ 24, null, 0, 0, null, "authority", "path₀", "path₁", …, "file", null ]) = http://authority/path₀/path₁/…/file
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
decode([ 24, null, 0, 1, null, "authority", "path₀", "path₁", …, "file", "query" ]) = https://authority/path₀/path₁/…/file?query
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
decode([ 24, null, 0, 1, null, "authority", "path₀", "path₁", …, "file", null ]) = https://authority/path₀/path₁/…/file
─────────────────────────────────────────────────────────────────────────────
decode([ 24, null, 0, 2, "path₀", "path₁", …, "file" ]) = /path₀/path₁/…/file
──────────────────────────────────────────────────────────────────────────────
decode([ 24, null, 0, 3, "path₀", "path₁", …, "file" ]) = ./path₀/path₁/…/file
───────────────────────────────────────────────────────────────────────────────
decode([ 24, null, 0, 4, "path₀", "path₁", …, "file" ]) = ../path₀/path₁/…/file
──────────────────────────────────────────────────────────────────────────────
decode([ 24, null, 0, 5, "path₀", "path₁", …, "file" ]) = ~/path₀/path₁/…/file
───────────────────────────────────────
decode([ 24, null, 0, 6, "x" ]) = env:x
────────────────────────────────────
decode([ 24, null, 0, 7 ]) = missing
decode([ 24, x, 0, xs… ]) = import
──────────────────────────────────────────
decode([ 24, x, 1, xs… ]) = import as Text
decode([ 24, x, 0, xs… ]) = import
──────────────────────────────────────────────
decode([ 24, x, 2, xs… ]) = import as Location
decode([ 24, null, x, xs… ]) = import
base16encode(rawHash) = base16Hash
─────────────────────────────────────────────────────────────────────────────
decode([ 24, b"\x12\x20rawHash", x, xs… ]) = import sha256:base16Hash
decode(headers₀) = headers₁
decode([ 24, x, y, 0, null, xs… ]) = http://authority directory file
─────────────────────────────────────────────────────────────────────────────────────
decode([ 24, x, y, 0, headers₀, xs… ]) = http://authority directory file using headers₁
decode(headers₀) = headers₁
decode([ 24, x, y, 1, null, xs… ]) = https://authority directory file
──────────────────────────────────────────────────────────────────────────────────────
decode([ 24, x, y, 1, headers₀, xs… ]) = https://authority directory file using headers₁
### `let` expressions
Decode a CBOR array beginning with a `25` as a `let` expression:
decode(A₁) = A₀ decode(a₁) = a₀ decode(b₁) = b₀ ... decode(z₁) = z₀
──────────────────────────────────────────────────────────────────────────────────────────
decode([ 25, "x", A₁, a₁, "y", null, b₁, ..., z₁ ]) = let x : A₀ = a₀ let y = b₀ ... in z₀
### Type annotations
decode(t₁) = t₀ decode(T₁) = T₀
─────────────────────────────────
decode([ 26, t₁, T₁ ]) = t₀ : T₀
### Nested record update
decode(e₁) = e₀ decode(v₁) = v₀
─────────────────────────────────────────────────────
decode([29, e₁, [ k, ks… ] v₁]) = e₀ with k.ks… = v₀
### `Date` / `Time` / `TimeZone`
───────────────────────────────────────
decode([30, YYYY, MM, DD]) = YYYY-MM-DD
m*10^e = ss
───────────────────────────────────────
decode([31, hh, mm, m*10^e]) = hh:mm:ss
───────────────────────────────────
decode([32, true, HH, MM]) = +HH:MM
────────────────────────────────────
decode([33, false, HH, MM]) = -HH:MM
[self-describe-cbor]: https://tools.ietf.org/html/rfc7049#section-2.4.5
[multihash]: https://github.com/multiformats/multihash
| Literate Haskell | 5 | tesaguri/dhall-lang | standard/Binary.lhs | [
"BSD-3-Clause"
] |
{-
OpenAPI Petstore
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
OpenAPI Version: 3.0.1
OpenAPI Petstore API version: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
-}
{-|
Module : OpenAPIPetstore.Logging
Logging functions
-}
{-# LANGUAGE CPP #-}
#ifdef USE_KATIP
module OpenAPIPetstore.Logging
( module OpenAPIPetstore.LoggingKatip
) where
import OpenAPIPetstore.LoggingKatip
#else
module OpenAPIPetstore.Logging
( module OpenAPIPetstore.LoggingMonadLogger
) where
import OpenAPIPetstore.LoggingMonadLogger
#endif
| Haskell | 4 | MalcolmScoffable/openapi-generator | samples/client/petstore/haskell-http-client/lib/OpenAPIPetstore/Logging.hs | [
"Apache-2.0"
] |
set(CV_TRACE OFF)
# These third parties libraries are incompatible with the semihosting
# toolchain.
set(WITH_JPEG OFF)
set(WITH_OPENEXR OFF)
set(WITH_TIFF OFF)
# Turn off `libpng` for some linking issues.
set(WITH_PNG OFF)
| CMake | 4 | xipingyan/opencv | cmake/vars/OPENCV_SEMIHOSTING.cmake | [
"Apache-2.0"
] |
//
// A simple model of a flipflop state machine that
// flips on every clock event.
//
// This is probably the simplest possible time based example
// for Alloy but shows how to make a trace.
//
open util/ordering[Trace]
enum Event { C }
enum State { On, Off }
fun transitions : State -> Event -> State {
On -> C -> Off
+ Off -> C -> On
}
sig Trace {
state : State,
event : lone Event
}
fact {
first.state = On
no last.event
all t : Trace - last, t' : t.next {
some e : Event {
t.event = e
t'.state = transitions[t.state][t.event]
}
}
}
pred show( t : set Trace ) { }
run show for 10
| Alloy | 5 | c-luu/alloy-specs | simple-models/state-machine/flip-flop.als | [
"Apache-2.0"
] |
Module: dylan-user
Author: Shri Amit
Synopsis: An application library for the duim-test-suite
Copyright: Original Code is Copyright (c) 1995-2004 Functional Objects, Inc.
All rights reserved.
License: See License.txt in this distribution for details.
Warranty: Distributed WITHOUT WARRANTY OF ANY KIND
define library duim-test-suite-app
use testworks;
use duim-test-suite;
end;
define module duim-test-suite-app
use testworks;
use duim-test-suite;
end;
| Dylan | 3 | kryptine/opendylan | sources/duim/tests/core/duim-test-suite-app-lib.dylan | [
"BSD-2-Clause"
] |
module TopologicalSortTests exposing (all)
import Dashboard.DashboardPreview exposing (groupByRank)
import Expect
import Test exposing (..)
all : Test
all =
describe "DashboardPreview.groupByRank"
[ test "empty case" <|
\_ ->
[]
|> groupByRank
|> Expect.equal []
, test "singleton" <|
\_ ->
[ { name = "a", inputs = [] } ]
|> groupByRank
|> Expect.equal [ [ { name = "a", inputs = [] } ] ]
, test "looping singleton" <|
\_ ->
[ { name = "a", inputs = [ { passed = [ "a" ] } ] } ]
|> groupByRank
|> Expect.equal [ [ { name = "a", inputs = [ { passed = [ "a" ] } ] } ] ]
, test "very simple DAG" <|
\_ ->
[ { name = "c", inputs = [ { passed = [ "b" ] } ] }
, { name = "b", inputs = [ { passed = [ "a" ] } ] }
, { name = "a", inputs = [ { passed = [] } ] }
]
|> groupByRank
|> Expect.equal
[ [ { name = "a", inputs = [ { passed = [] } ] } ]
, [ { name = "b", inputs = [ { passed = [ "a" ] } ] } ]
, [ { name = "c", inputs = [ { passed = [ "b" ] } ] } ]
]
, test "simple DAG" <|
\_ ->
[ { name = "a", inputs = [ { passed = [ "b", "c" ] } ] }
, { name = "b", inputs = [ { passed = [ "c" ] } ] }
, { name = "c", inputs = [ { passed = [ "d" ] } ] }
, { name = "d", inputs = [ { passed = [ "e", "f" ] } ] }
, { name = "e", inputs = [ { passed = [] } ] }
, { name = "f", inputs = [ { passed = [] } ] }
]
|> groupByRank
|> Expect.equal
[ [ { name = "e", inputs = [ { passed = [] } ] }
, { name = "f", inputs = [ { passed = [] } ] }
]
, [ { name = "d", inputs = [ { passed = [ "e", "f" ] } ] } ]
, [ { name = "c", inputs = [ { passed = [ "d" ] } ] } ]
, [ { name = "b", inputs = [ { passed = [ "c" ] } ] } ]
, [ { name = "a", inputs = [ { passed = [ "b", "c" ] } ] } ]
]
, test "very flat DAG" <|
\_ ->
[ { name = "a", inputs = [ { passed = [ "b", "c", "d", "e" ] } ] }
, { name = "b", inputs = [ { passed = [ "f" ] } ] }
, { name = "c", inputs = [ { passed = [ "f" ] } ] }
, { name = "d", inputs = [ { passed = [ "e", "f" ] } ] }
, { name = "e", inputs = [ { passed = [] } ] }
, { name = "f", inputs = [ { passed = [] } ] }
]
|> groupByRank
|> Expect.equal
[ [ { name = "e", inputs = [ { passed = [] } ] }
, { name = "f", inputs = [ { passed = [] } ] }
]
, [ { name = "b", inputs = [ { passed = [ "f" ] } ] }
, { name = "c", inputs = [ { passed = [ "f" ] } ] }
, { name = "d", inputs = [ { passed = [ "e", "f" ] } ] }
]
, [ { name = "a", inputs = [ { passed = [ "b", "c", "d", "e" ] } ] } ]
]
, test "two cycles and a bridge" <|
\_ ->
[ { name = "a", inputs = [ { passed = [ "b" ] } ] }
, { name = "b", inputs = [ { passed = [ "a" ] } ] }
, { name = "c", inputs = [ { passed = [ "b", "d" ] } ] }
, { name = "d", inputs = [ { passed = [ "c" ] } ] }
]
|> groupByRank
|> Expect.equal
[ [ { name = "a", inputs = [ { passed = [ "b" ] } ] } ]
, [ { name = "b", inputs = [ { passed = [ "a" ] } ] } ]
, [ { name = "c", inputs = [ { passed = [ "b", "d" ] } ] } ]
, [ { name = "d", inputs = [ { passed = [ "c" ] } ] } ]
]
, test "multi-looped cyclic graph" <|
\_ ->
[ { name = "a", inputs = [ { passed = [ "a", "b" ] } ] }
, { name = "b", inputs = [ { passed = [ "a", "c" ] } ] }
, { name = "c", inputs = [ { passed = [ "a", "b", "d" ] } ] }
, { name = "d", inputs = [ { passed = [] } ] }
]
|> groupByRank
|> Expect.equal
[ [ { name = "a", inputs = [ { passed = [ "a", "b" ] } ] }
, { name = "d", inputs = [ { passed = [] } ] }
]
, [ { name = "b", inputs = [ { passed = [ "a", "c" ] } ] } ]
, [ { name = "c", inputs = [ { passed = [ "a", "b", "d" ] } ] } ]
]
, test "large cyclic graph" <|
\_ ->
[ { name = "a", inputs = [ { passed = [ "b" ] } ] }
, { name = "b", inputs = [ { passed = [ "c" ] } ] }
, { name = "c", inputs = [ { passed = [ "a" ] } ] }
, { name = "d", inputs = [ { passed = [ "b", "c", "e" ] } ] }
, { name = "e", inputs = [ { passed = [ "d", "f" ] } ] }
, { name = "f", inputs = [ { passed = [ "c", "g" ] } ] }
, { name = "g", inputs = [ { passed = [ "f" ] } ] }
, { name = "h", inputs = [ { passed = [ "e", "g", "h" ] } ] }
]
|> groupByRank
|> Expect.equal
[ [ { name = "a", inputs = [ { passed = [ "b" ] } ] } ]
, [ { name = "c", inputs = [ { passed = [ "a" ] } ] } ]
, [ { name = "b", inputs = [ { passed = [ "c" ] } ] }
, { name = "f", inputs = [ { passed = [ "c", "g" ] } ] }
]
, [ { name = "d", inputs = [ { passed = [ "b", "c", "e" ] } ] }
, { name = "g", inputs = [ { passed = [ "f" ] } ] }
]
, [ { name = "e", inputs = [ { passed = [ "d", "f" ] } ] } ]
, [ { name = "h", inputs = [ { passed = [ "e", "g", "h" ] } ] } ]
]
]
| Elm | 5 | Caprowni/concourse | web/elm/tests/TopologicalSortTests.elm | [
"Apache-2.0"
] |
string canonicalize(string fn)
{
fn=lower_case(fn);
if ((<"avi","mkv","mp4","mpg","mpeg","flv">)[(fn/".")[-1]]) fn=(fn/".")[..<1]*"."; //Trim known file extensions
sscanf(fn,"looney.tunes.%s.19",fn);
fn=replace(fn," - "," ");
sscanf(fn,"bugs bunny %s",fn);
sscanf(fn,"%*d%s",fn);
sscanf(String.trim_all_whites(fn),"the %s",fn);
sscanf(String.trim_all_whites(fn),"a %s",fn);
fn=replace(fn,":',?!-. "/1,"");
return fn;
}
int main(int argc,array(string) argv)
{
if (argc>1 && argv[1]=="index")
{
//NOTE: This destroys local changes (such as those done by the tag importer below).
string url="http://looney.goldenagecartoons.com/WBchecklist.html";
string data=replace(Protocols.HTTP.get_url_data(url),"\r","");
sscanf(data,"%{%*s\n19%2d:\n%{____ %s\n%}%}",array years);
Stdio.File out=Stdio.File("LooneyTunes.txt","wct");
out->write("Looney Tunes checklist from %s\n\n",url);
foreach (years,[int year,array(array(string)) titles])
out->write("%{/19"+year+" - %s.mkv\n%}",titles);
write("Index rebuilt.\n");
return 0;
}
if (argc>2 && argv[1]=="tags")
{
//Import tags from the given file. Modifies the local LooneyTunes.txt to include them.
mapping(string:array) tags=([]);
foreach (utf8_to_string(Stdio.read_file(argv[2]))/"\n",string line)
{
line=line-"\ufeff"-"\r"; //Hack: Remove CRs, and any stupid BOM that managed to get through (Notepad, you suck)
if (line=="") continue; //Ignore blanks
//Lines should be: 1945 Hare Tonic Bugs 7 |4=Rabbititis.mp4|9=LOONEY%20TUNES%20COLLECTION%5CLooney%20Tunes%20Golden%20Collection%20Volume%203%20-%20Disk%201%5C03%20-%20Hare%20Tonic.avi|
array info=array_sscanf(line,"%s\t%s\t%s\t%d\t%*[|]%{%d=%s|%}"); //We need it as an array anyway. These are: year, title, keywords, quality, [(qual, path)...]
foreach (info[-1],array a) a[1]=Protocols.HTTP.uri_decode(a[1]); //The file names are URI-encoded
string canon=canonicalize(info[1]);
if (tags[canon]) exit(1,"Collision on canonical form %s!\n",canon); //Shouldn't happen - these were manually entered and should be unique.
tags[canon]=info;
}
write("Loaded %d entries.\n",sizeof(tags));
sscanf(Stdio.read_file("LooneyTunes.txt"),"%s\n\n%{/%s\n%}",string header,array content);
//NOTE: Don't actually overwrite the file yet; even though storing the data is less
//efficient, we need to make sure we don't blow away the file if there's an error.
string outdata=header+"\n\n";
foreach (content,[string fn])
{
outdata+=sprintf("/%s\n",fn);
string canon=canonicalize(fn);
if (!tags[canon]) continue;
[string year,string title,string keywords,int quality,array(array(int|string)) avail] = tags[canon];
if (!has_prefix(fn,year)) exit(1,"Error: File name %O does not match year %O\n",fn,year);
if (canonicalize(title)!=canon) exit(1,"Error: File name %O does not match title %O\n",fn,title);
if (file_stat("/video/LooneyTunes/"+fn)) avail=({ }); //If we have the file, we don't care about its old availabilities on Windows.
outdata+=sprintf("Score: %d/10\n",quality);
if (keywords!="") outdata+=sprintf("Keywords:%{ $%s%}\n",keywords/", ");
outdata+=sprintf("%{File name [%d]: %s\n%}\n",avail);
}
Stdio.write_file("LooneyTunes.txt",outdata);
return 0;
}
mapping(string:string) decanonicalize=([]);
foreach (Stdio.read_file("LooneyTunes.txt")/"\n",string fn)
{
if (!sscanf(fn,"/%s",fn)) continue;
string canon=canonicalize(fn);
//if (decanonicalize[canon]) exit(1,"Canonicalization collision on %O: %O and %O\n",canon,decanonicalize[canon],fn); //Raise immediate error on collision, or...
if (decanonicalize[canon]) fn="! Collision !"; //... just record the problem (throw error only if we try to use this)
decanonicalize[canon]=fn;
}
//Lift the modified sh_quote() from a similar script
function sh_quote=((object)"rename.pike")->sh_quote;
int verbose=0,nerfed=0;
foreach (argv[1..],string fn)
{
if (fn=="-v") {verbose=1; continue;}
if (fn=="-n") {nerfed=1; continue;}
if (string target=decanonicalize[canonicalize(explode_path(fn)[-1])])
{
if (target=="! Collision !") exit(1,"Ambiguous canonicalization on %O\n",fn);
if (file_stat("/video/LooneyTunes/"+target)) {if (verbose) write("Target already exists: %O\n",target); continue;}
if (nerfed) {write("Transform %O into %O\n",fn,target); continue;}
if (has_suffix(fn,".mkv"))
{
//Simple: directly copy or rename the file.
if (has_prefix(fn,"/video/")) Process.create_process(({"ssh","huix","sudo","mv",sh_quote(fn),"/video/LooneyTunes/"+sh_quote(target)}))->wait();
else Process.create_process(({"scp",fn,"netbios@huix:LooneyTunes/"+sh_quote(target)}))->wait();
}
else
{
//Currently wrong format. First avconv it, then copy it.
Process.create_process(({"avconv","-i",fn,target}))->wait();
Process.create_process(({"scp","./"+target,"netbios@huix:LooneyTunes/"}))->wait();
rm(target);
}
}
else werror("Unable to transform: %O\n",fn);
}
}
| Pike | 4 | stephenangelico/shed | looneytunes.pike | [
"MIT"
] |
-- Create a test table with data
create table t1(a int, b int, c int) using parquet;
insert into t1 values(1,0,0);
insert into t1 values(2,0,1);
insert into t1 values(3,1,0);
insert into t1 values(4,1,1);
insert into t1 values(5,null,0);
insert into t1 values(6,null,1);
insert into t1 values(7,null,null);
-- Adding anything to null gives null
select a, b+c from t1;
-- Multiplying null by zero gives null
select a+10, b*0 from t1;
-- nulls are NOT distinct in SELECT DISTINCT
select distinct b from t1;
-- nulls are NOT distinct in UNION
select b from t1 union select b from t1;
-- CASE WHEN null THEN 1 ELSE 0 END is 0
select a+20, case b when c then 1 else 0 end from t1;
select a+30, case c when b then 1 else 0 end from t1;
select a+40, case when b<>0 then 1 else 0 end from t1;
select a+50, case when not b<>0 then 1 else 0 end from t1;
select a+60, case when b<>0 and c<>0 then 1 else 0 end from t1;
-- "not (null AND false)" is true
select a+70, case when not (b<>0 and c<>0) then 1 else 0 end from t1;
-- "null OR true" is true
select a+80, case when b<>0 or c<>0 then 1 else 0 end from t1;
select a+90, case when not (b<>0 or c<>0) then 1 else 0 end from t1;
-- null with aggregate operators
select count(*), count(b), sum(b), avg(b), min(b), max(b) from t1;
-- Check the behavior of NULLs in WHERE clauses
select a+100 from t1 where b<10;
select a+110 from t1 where not b>10;
select a+120 from t1 where b<10 OR c=1;
select a+130 from t1 where b<10 AND c=1;
select a+140 from t1 where not (b<10 AND c=1);
select a+150 from t1 where not (c=1 AND b<10);
drop table t1;
| SQL | 5 | OlegPt/spark | sql/core/src/test/resources/sql-tests/inputs/null-handling.sql | [
"Apache-2.0"
] |
#pragma once
// multi-python abstract code
#include <ATen/ATen.h>
#include <ATen/core/ivalue.h>
#include <caffe2/serialize/inline_container.h>
/* Torch Deploy intentionally embeds multiple copies of c++ libraries
providing python bindings necessary for torch::deploy users in the same
process space in order to provide a multi-python environment. As a result,
any exception types defined by these duplicated libraries can't be safely
caught or handled outside of the originating dynamic library (.so).
In practice this means that you must either
catch these exceptions inside the torch::deploy API boundary or risk crashing
the client application.
It is safe to throw exception types that are defined once in
the context of the client application, such as c10::Error, which is defined
in libtorch, which isn't duplicated in torch::deploy interpreters.
==> Use TORCH_DEPLOY_TRY, _SAFE_CATCH_RETHROW around _ALL_ torch::deploy APIs
For more information, see
https://gcc.gnu.org/wiki/Visibility (section on c++ exceptions)
or https://stackoverflow.com/a/14364055
or
https://stackoverflow.com/questions/14268736/symbol-visibility-exceptions-runtime-error
note- this may be only a serious problem on versions of gcc prior to 4.0,
but still seems worth sealing off.
*/
#define TORCH_DEPLOY_TRY try {
#define TORCH_DEPLOY_SAFE_CATCH_RETHROW \
} \
catch (std::exception & err) { \
throw c10::Error( \
std::string( \
"Exception Caught inside torch::deploy embedded library: \n") + \
err.what(), \
""); \
} \
catch (...) { \
throw c10::Error( \
std::string( \
"Unknown Exception Caught inside torch::deploy embedded library"), \
""); \
}
namespace torch {
namespace deploy {
struct InterpreterSessionImpl;
struct PickledObject {
std::string data_;
std::vector<at::Storage> storages_;
// types for the storages, required to
// reconstruct correct Python storages
std::vector<at::ScalarType> types_;
std::shared_ptr<caffe2::serialize::PyTorchStreamReader> containerFile_;
};
// this is a wrapper class that refers to a PyObject* instance in a particular
// interpreter. We can't use normal PyObject or pybind11 objects here
// because these objects get used in a user application which will not directly
// link against libpython. Instead all interaction with the Python state in each
// interpreter is done via this wrapper class, and methods on
// InterpreterSession.
struct Obj {
friend struct InterpreterSessionImpl;
Obj() : interaction_(nullptr), id_(0) {}
Obj(InterpreterSessionImpl* interaction, int64_t id)
: interaction_(interaction), id_(id) {}
at::IValue toIValue() const;
Obj operator()(at::ArrayRef<Obj> args);
Obj operator()(at::ArrayRef<at::IValue> args);
Obj callKwargs(
std::vector<at::IValue> args,
std::unordered_map<std::string, c10::IValue> kwargs);
Obj callKwargs(std::unordered_map<std::string, c10::IValue> kwargs);
bool hasattr(const char* attr);
Obj attr(const char* attr);
private:
InterpreterSessionImpl* interaction_;
int64_t id_;
};
struct InterpreterSessionImpl {
friend struct Package;
friend struct ReplicatedObj;
friend struct Obj;
friend struct InterpreterSession;
friend struct ReplicatedObjImpl;
virtual ~InterpreterSessionImpl() = default;
private:
virtual Obj global(const char* module, const char* name) = 0;
virtual Obj fromIValue(at::IValue value) = 0;
virtual Obj createOrGetPackageImporterFromContainerFile(
const std::shared_ptr<caffe2::serialize::PyTorchStreamReader>&
containerFile_) = 0;
virtual PickledObject pickle(Obj container, Obj obj) = 0;
virtual Obj unpickleOrGet(int64_t id, const PickledObject& obj) = 0;
virtual void unload(int64_t id) = 0;
virtual at::IValue toIValue(Obj obj) const = 0;
virtual Obj call(Obj obj, at::ArrayRef<Obj> args) = 0;
virtual Obj call(Obj obj, at::ArrayRef<at::IValue> args) = 0;
virtual Obj callKwargs(
Obj obj,
std::vector<at::IValue> args,
std::unordered_map<std::string, c10::IValue> kwargs) = 0;
virtual Obj callKwargs(
Obj obj,
std::unordered_map<std::string, c10::IValue> kwargs) = 0;
virtual Obj attr(Obj obj, const char* attr) = 0;
virtual bool hasattr(Obj obj, const char* attr) = 0;
protected:
int64_t ID(Obj obj) const {
return obj.id_;
}
bool isOwner(Obj obj) const {
return this == obj.interaction_;
}
};
struct InterpreterImpl {
virtual InterpreterSessionImpl* acquireSession() = 0;
virtual void setFindModule(
std::function<at::optional<std::string>(const std::string&)>
find_module) = 0;
virtual ~InterpreterImpl() = default; // this will uninitialize python
};
// inline definitions for Objs are necessary to avoid introducing a
// source file that would need to exist it both the libinterpreter.so and then
// the libtorchpy library.
inline at::IValue Obj::toIValue() const {
TORCH_DEPLOY_TRY
return interaction_->toIValue(*this);
TORCH_DEPLOY_SAFE_CATCH_RETHROW
}
inline Obj Obj::operator()(at::ArrayRef<Obj> args) {
TORCH_DEPLOY_TRY
return interaction_->call(*this, args);
TORCH_DEPLOY_SAFE_CATCH_RETHROW
}
inline Obj Obj::operator()(at::ArrayRef<at::IValue> args) {
TORCH_DEPLOY_TRY
return interaction_->call(*this, args);
TORCH_DEPLOY_SAFE_CATCH_RETHROW
}
inline Obj Obj::callKwargs(
std::vector<at::IValue> args,
std::unordered_map<std::string, c10::IValue> kwargs) {
TORCH_DEPLOY_TRY
return interaction_->callKwargs(*this, std::move(args), std::move(kwargs));
TORCH_DEPLOY_SAFE_CATCH_RETHROW
}
inline Obj Obj::callKwargs(
std::unordered_map<std::string, c10::IValue> kwargs) {
TORCH_DEPLOY_TRY
return interaction_->callKwargs(*this, std::move(kwargs));
TORCH_DEPLOY_SAFE_CATCH_RETHROW
}
inline bool Obj::hasattr(const char* attr) {
TORCH_DEPLOY_TRY
return interaction_->hasattr(*this, attr);
TORCH_DEPLOY_SAFE_CATCH_RETHROW
}
inline Obj Obj::attr(const char* attr) {
TORCH_DEPLOY_TRY
return interaction_->attr(*this, attr);
TORCH_DEPLOY_SAFE_CATCH_RETHROW
}
} // namespace deploy
} // namespace torch
| C | 5 | xiaohanhuang/pytorch | torch/csrc/deploy/interpreter/interpreter_impl.h | [
"Intel"
] |
= Rolify Specs
== Running the specs
To run the specs first run the +bundle+ command to install the necessary gems and the +rake+ command to run the specs.
bundle
rake
== Model Adapters
Rolify currently supports 2 different ORMs: ActiveRecord and Mongoid. By default it will use Active Record but you can change this by setting the +ADAPTER+ environment variable before running the specs. You can run the +bundle+ command with this as well to ensure you have all the required gems.
ADAPTER=mongoid bundle
ADAPTER=mongoid rake
The different model adapters you can specify are:
* active_record (default)
* mongoid
You can also run the +spec_all+ rake task to run specs for each adapter.
rake spec_all | RDoc | 3 | OneCloudInc/rolify | spec/README.rdoc | [
"MIT"
] |
--TEST--
Bug #75186: Inconsistent reflection of Closure:::__invoke()
--FILE--
<?php
$rc = new ReflectionClass(Closure::class);
foreach ($rc->getMethods() as $method) {
if ($method->name == '__invoke') {
var_dump($method);
$method->invoke(
function($what) { echo "Hello $what!\n"; },
"World"
);
}
}
?>
--EXPECTF--
object(ReflectionMethod)#%d (2) {
["name"]=>
string(8) "__invoke"
["class"]=>
string(7) "Closure"
}
Hello World!
| PHP | 4 | thiagooak/php-src | ext/reflection/tests/bug75186.phpt | [
"PHP-3.01"
] |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
pragma abicoder v2;
import "./RestStorage.sol";
import './OrderStorage.sol';
import './UserStorage.sol';
import './RecordStorage.sol';
import './AppealStorage.sol';
interface RecordInterface {
function getErcBalance(string memory _coinType, address _addr) external returns(uint);
function getAvailableTotal(address _addr, string memory _coinType) external returns(uint);
function getFrozenTotal(address _addr, string memory _coinType) external returns(uint);
function addAvailableTotal(address _addr, string memory _coinType, uint remainHoldCoin) external;
function subAvaAppeal(address _from, address _to, AppealStorage.Appeal memory _al, uint _amt, uint _type, uint _self) external;
function subWitnessAvailable(address _addr) external;
function setERC20Address(string memory _coinType) external returns(TokenTransfer);
function subFrozenTotal(uint _orderNo, address _addr) external;
function addRecord(address _addr, string memory _tradeHash, string memory _coinType, uint _hostCount, uint _hostStatus, uint _hostType, uint _hostDirection) external;
function getAppealFee() external view returns(uint);
function getAppealFeeFinal() external view returns(uint);
function getWitnessHandleReward() external view returns(uint);
function getObserverHandleReward() external view returns(uint);
function getWitnessHandleCredit() external view returns(uint);
function getObserverHandleCredit() external view returns(uint);
function getSubWitCredit() external view returns(uint);
function getOpenTrade() external view returns(bool);
function getTradeCredit() external view returns(uint);
function getSubTCredit() external view returns(uint);
function getSubWitFee() external view returns(uint);
}
interface RestInterface {
function searchRest(uint _restNo) external returns(RestStorage.Rest memory rest);
function getRestFrozenTotal(address _addr, uint _restNo) external returns(uint);
function updateRestFinishCount(uint _restNo, uint _coinCount) external returns(uint);
function addRestRemainCount(uint _restNo, uint _remainCount) external returns(uint);
}
interface OrderInterface {
function searchOrder(uint _orderNo) external returns(OrderStorage.Order memory order);
}
interface UserInterface {
function searchUser(address _addr) external view returns(UserStorage.User memory user);
function searchWitnessList(uint _userFlag) external returns(UserStorage.User[] memory userList);
function updateTradeStats(address _addr, UserStorage.TradeStats memory _tradeStats, uint _credit) external;
function updateMorgageStats(address _addr, UserStorage.MorgageStats memory _morgageStats) external;
function updateUserRole(address _addr, uint _userFlag) external;
}
interface AppealInterface {
function searchAppeal(uint _o) external view returns(AppealStorage.Appeal memory appeal);
}
| Solidity | 3 | Aircoin-official/AirCash | RecordInterface.sol | [
"MIT"
] |
[Desktop Entry]
Name=Spotify TUI
Exec=spt
Comment=Spotify for the terminal written in Rust
Icon=${SNAP}/meta/gui/spt.png
Type=Application
Terminal=true
StartupNotify=false
Categories=Music;
| desktop | 1 | jackkinsey/spotify-tui | snap/gui/spt.desktop | [
"MIT"
] |
\require dummy
\require #'dummy
| LilyPond | 0 | HolgerPeters/lyp | spec/user_files/the-works-symbols.ly | [
"MIT"
] |
# Copyright 2016 The TensorFlow Authors. All Rights Reserved.
#
# 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.
# ==============================================================================
"""DCGAN generator and discriminator from https://arxiv.org/abs/1511.06434."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from math import log
from six.moves import xrange # pylint: disable=redefined-builtin
import tensorflow.compat.v1 as tf
import tf_slim as slim
def _validate_image_inputs(inputs):
inputs.get_shape().assert_has_rank(4)
inputs.get_shape()[1:3].assert_is_fully_defined()
if inputs.get_shape()[1] != inputs.get_shape()[2]:
raise ValueError('Input tensor does not have equal width and height: ',
inputs.get_shape()[1:3])
width = inputs.get_shape().as_list()[1]
if log(width, 2) != int(log(width, 2)):
raise ValueError('Input tensor `width` is not a power of 2: ', width)
# TODO(joelshor): Use fused batch norm by default. Investigate why some GAN
# setups need the gradient of gradient FusedBatchNormGrad.
def discriminator(inputs,
depth=64,
is_training=True,
reuse=None,
scope='Discriminator',
fused_batch_norm=False):
"""Discriminator network for DCGAN.
Construct discriminator network from inputs to the final endpoint.
Args:
inputs: A tensor of size [batch_size, height, width, channels]. Must be
floating point.
depth: Number of channels in first convolution layer.
is_training: Whether the network is for training or not.
reuse: Whether or not the network variables should be reused. `scope`
must be given to be reused.
scope: Optional variable_scope.
fused_batch_norm: If `True`, use a faster, fused implementation of
batch norm.
Returns:
logits: The pre-softmax activations, a tensor of size [batch_size, 1]
end_points: a dictionary from components of the network to their activation.
Raises:
ValueError: If the input image shape is not 4-dimensional, if the spatial
dimensions aren't defined at graph construction time, if the spatial
dimensions aren't square, or if the spatial dimensions aren't a power of
two.
"""
normalizer_fn = slim.batch_norm
normalizer_fn_args = {
'is_training': is_training,
'zero_debias_moving_mean': True,
'fused': fused_batch_norm,
}
_validate_image_inputs(inputs)
inp_shape = inputs.get_shape().as_list()[1]
end_points = {}
with tf.variable_scope(
scope, values=[inputs], reuse=reuse) as scope:
with slim.arg_scope([normalizer_fn], **normalizer_fn_args):
with slim.arg_scope([slim.conv2d],
stride=2,
kernel_size=4,
activation_fn=tf.nn.leaky_relu):
net = inputs
for i in xrange(int(log(inp_shape, 2))):
scope = 'conv%i' % (i + 1)
current_depth = depth * 2**i
normalizer_fn_ = None if i == 0 else normalizer_fn
net = slim.conv2d(
net, current_depth, normalizer_fn=normalizer_fn_, scope=scope)
end_points[scope] = net
logits = slim.conv2d(net, 1, kernel_size=1, stride=1, padding='VALID',
normalizer_fn=None, activation_fn=None)
logits = tf.reshape(logits, [-1, 1])
end_points['logits'] = logits
return logits, end_points
# TODO(joelshor): Use fused batch norm by default. Investigate why some GAN
# setups need the gradient of gradient FusedBatchNormGrad.
def generator(inputs,
depth=64,
final_size=32,
num_outputs=3,
is_training=True,
reuse=None,
scope='Generator',
fused_batch_norm=False):
"""Generator network for DCGAN.
Construct generator network from inputs to the final endpoint.
Args:
inputs: A tensor with any size N. [batch_size, N]
depth: Number of channels in last deconvolution layer.
final_size: The shape of the final output.
num_outputs: Number of output features. For images, this is the number of
channels.
is_training: whether is training or not.
reuse: Whether or not the network has its variables should be reused. scope
must be given to be reused.
scope: Optional variable_scope.
fused_batch_norm: If `True`, use a faster, fused implementation of
batch norm.
Returns:
logits: the pre-softmax activations, a tensor of size
[batch_size, 32, 32, channels]
end_points: a dictionary from components of the network to their activation.
Raises:
ValueError: If `inputs` is not 2-dimensional.
ValueError: If `final_size` isn't a power of 2 or is less than 8.
"""
normalizer_fn = slim.batch_norm
normalizer_fn_args = {
'is_training': is_training,
'zero_debias_moving_mean': True,
'fused': fused_batch_norm,
}
inputs.get_shape().assert_has_rank(2)
if log(final_size, 2) != int(log(final_size, 2)):
raise ValueError('`final_size` (%i) must be a power of 2.' % final_size)
if final_size < 8:
raise ValueError('`final_size` (%i) must be greater than 8.' % final_size)
end_points = {}
num_layers = int(log(final_size, 2)) - 1
with tf.variable_scope(
scope, values=[inputs], reuse=reuse) as scope:
with slim.arg_scope([normalizer_fn], **normalizer_fn_args):
with slim.arg_scope([slim.conv2d_transpose],
normalizer_fn=normalizer_fn,
stride=2,
kernel_size=4):
net = tf.expand_dims(tf.expand_dims(inputs, 1), 1)
# First upscaling is different because it takes the input vector.
current_depth = depth * 2 ** (num_layers - 1)
scope = 'deconv1'
net = slim.conv2d_transpose(
net, current_depth, stride=1, padding='VALID', scope=scope)
end_points[scope] = net
for i in xrange(2, num_layers):
scope = 'deconv%i' % (i)
current_depth = depth * 2 ** (num_layers - i)
net = slim.conv2d_transpose(net, current_depth, scope=scope)
end_points[scope] = net
# Last layer has different normalizer and activation.
scope = 'deconv%i' % (num_layers)
net = slim.conv2d_transpose(
net, depth, normalizer_fn=None, activation_fn=None, scope=scope)
end_points[scope] = net
# Convert to proper channels.
scope = 'logits'
logits = slim.conv2d(
net,
num_outputs,
normalizer_fn=None,
activation_fn=None,
kernel_size=1,
stride=1,
padding='VALID',
scope=scope)
end_points[scope] = logits
logits.get_shape().assert_has_rank(4)
logits.get_shape().assert_is_compatible_with(
[None, final_size, final_size, num_outputs])
return logits, end_points
| Python | 5 | basanto/HistomicsTK | histomicstk/deeplab/nets/dcgan.py | [
"Apache-2.0"
] |
#!/usr/bin/env bash
set -ex
# This script builds archiver for most common platforms.
export CGO_ENABLED=0
cd cmd/arc
GOOS=linux GOARCH=amd64 go build -o ../../builds/arc_linux_amd64
GOOS=linux GOARCH=arm go build -o ../../builds/arc_linux_arm7
GOOS=darwin GOARCH=amd64 go build -o ../../builds/arc_mac_amd64
GOOS=windows GOARCH=amd64 go build -o ../../builds/arc_windows_amd64.exe
cd ../..
| Shell | 4 | ruckc/godel | vendor/github.com/mholt/archiver/v3/build.bash | [
"Apache-2.0"
] |
%{--
- Copyright 2016 SimplifyOps, Inc. (http://simplifyops.com)
-
- 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.
--}%
<g:link controller="scm" action="performAction" params="${[
project : project,
actionId: action.id,
integration: integration
]+(linkparams?:[:])}"
class="${classes?:''}"
title="${action.description ?: ''}">
<g:if test="${action.iconName}">
<g:icon name="${action.iconName}"/>
</g:if>
${action.title ?: 'Action'}</g:link> | Groovy Server Pages | 4 | kbens/rundeck | rundeckapp/grails-app/views/scm/_actionLink.gsp | [
"Apache-2.0"
] |
QT.designer_private.VERSION = 5.9.4
QT.designer_private.name = QtDesigner
QT.designer_private.module =
QT.designer_private.libs = $$QT_MODULE_LIB_BASE
QT.designer_private.includes = $$QT_MODULE_INCLUDE_BASE/QtDesigner/5.9.4 $$QT_MODULE_INCLUDE_BASE/QtDesigner/5.9.4/QtDesigner
QT.designer_private.frameworks =
QT.designer_private.depends = core_private gui_private widgets_private designer
QT.designer_private.uses =
QT.designer_private.module_config = v2 internal_module
QT.designer_private.enabled_features =
QT.designer_private.disabled_features =
| QMake | 2 | PLohrmannAMD/renderdoc | qrenderdoc/3rdparty/qt/x64/mkspecs/modules/qt_lib_designer_private.pri | [
"MIT"
] |
<html><head>
<script type='text/javascript'>
document.domain = 'localhost';
{{injection}}
</script></head><body>https server</body></html>
| HTML | 0 | mm73628486283/cypress | packages/server/test/support/fixtures/server/expected_https_inject.html | [
"MIT"
] |
(define count-change
Amount -> (count-change* Amount 200))
(define count-change*
0 _ -> 1
_ 0 -> 0
Amount _ -> 0 where (> 0 Amount)
Amount Fst_Denom
-> (+ (count-change* (- Amount Fst_Denom) Fst_Denom)
(count-change* Amount (next-denom Fst_Denom))))
(define next-denom
200 -> 100
100 -> 50
50 -> 20
20 -> 10
10 -> 5
5 -> 2
2 -> 1
1 -> 0)
| Shen | 4 | nondejus/shen-go | ShenOSKernel-22.2/tests/change.shen | [
"BSD-3-Clause"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.