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
sequencelengths 1
8
|
---|---|---|---|---|---|
-- (c) 2009 Aarne Ranta under LGPL
instance LexFoodsSwe of LexFoods =
open SyntaxSwe, ParadigmsSwe in {
flags coding=utf8;
oper
wine_N = mkN "vin" "vinet" "viner" "vinerna" ;
pizza_N = mkN "pizza" ;
cheese_N = mkN "ost" ;
fish_N = mkN "fisk" ;
fresh_A = mkA "färsk" ;
warm_A = mkA "varm" ;
italian_A = mkA "italiensk" ;
expensive_A = mkA "dyr" ;
delicious_A = mkA "läcker" ;
boring_A = mkA "tråkig" ;
}
| Grammatical Framework | 3 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/Grammatical Framework/LexFoodsSwe.gf | [
"MIT"
] |
module Views.AlertList.Parsing exposing (alertsParser)
import Url.Parser exposing ((<?>), Parser, map, s)
import Url.Parser.Query as Query
import Utils.Filter exposing (Filter, MatchOperator(..))
boolParam : String -> Query.Parser Bool
boolParam name =
Query.custom name (List.head >> (/=) Nothing)
maybeBoolParam : String -> Query.Parser (Maybe Bool)
maybeBoolParam name =
Query.custom name
(List.head >> Maybe.map (String.toLower >> (/=) "false"))
alertsParser : Parser (Filter -> a) a
alertsParser =
s "alerts"
<?> Query.string "filter"
<?> Query.string "group"
<?> boolParam "customGrouping"
<?> Query.string "receiver"
<?> maybeBoolParam "silenced"
<?> maybeBoolParam "inhibited"
<?> maybeBoolParam "active"
|> map Filter
| Elm | 3 | creganFL/alertmanager | ui/app/src/Views/AlertList/Parsing.elm | [
"ECL-2.0",
"Apache-2.0"
] |
<cfscript>
function bar(text) {
var foo;
}
</cfscript> | ColdFusion | 0 | tonym128/CFLint | src/test/resources/com/cflint/tests/ParseError/npe_595.cfm | [
"BSD-3-Clause"
] |
CREATE DATABASE db1;
| SQL | 2 | cuishuang/tidb | br/tests/lightning_view/data/db1-schema-create.sql | [
"Apache-2.0"
] |
import * as React from 'react';
import Box from '@mui/material/Box';
import TextField from '@mui/material/TextField';
export default function StateTextFields() {
const [name, setName] = React.useState('Cat in the Hat');
const handleChange = (event) => {
setName(event.target.value);
};
return (
<Box
component="form"
sx={{
'& > :not(style)': { m: 1, width: '25ch' },
}}
noValidate
autoComplete="off"
>
<TextField
id="outlined-name"
label="Name"
value={name}
onChange={handleChange}
/>
<TextField
id="outlined-uncontrolled"
label="Uncontrolled"
defaultValue="foo"
/>
</Box>
);
}
| JavaScript | 4 | dany-freeman/material-ui | docs/data/material/components/text-fields/StateTextFields.js | [
"MIT"
] |
package com.baeldung.properties.reloading.beans;
import java.util.Properties;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class PropertiesConfigBean {
private Properties properties;
public PropertiesConfigBean(@Autowired Properties properties) {
this.properties = properties;
}
public String getColor() {
return properties.getProperty("application.theme.color");
}
}
| Java | 4 | DBatOWL/tutorials | spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/reloading/beans/PropertiesConfigBean.java | [
"MIT"
] |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% This file is part of Logtalk <https://logtalk.org/>
% Copyright 1992, 1998 Thom Fruehwirth
% Copyright 1998 Christian Jolzbaur
% Copyright 2004 Tom Schrijvers
% Copyright 2021 Paulo Moura <[email protected]>
% SPDX-License-Identifier: BSD-2-Clause
%
% Redistribution and use in source and binary forms, with or without
% modification, are permitted provided that the following conditions are met:
%
% * Redistributions of source code must retain the above copyright notice, this
% list of conditions and the following disclaimer.
%
% * Redistributions in binary form must reproduce the above copyright notice,
% this list of conditions and the following disclaimer in the documentation
% and/or other materials provided with the distribution.
%
% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
% AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
% IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
% DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
% FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
% DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
% SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
% CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
% OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
% OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
:- set_logtalk_flag(hook, toychrdb).
:- object(primes,
extends(toychrdb)).
candidate(1) <=> true.
candidate(N) <=> prime(N), N1 is N - 1, candidate(N1).
absorb @ prime(Y) \ prime(X) <=> 0 is X mod Y | true.
:- end_object.
| Logtalk | 4 | PaulBrownMagic/logtalk3 | ports/toychr/examples/primes.lgt | [
"Apache-2.0"
] |
# Check that we properly honor the restat flag.
# RUN: rm -rf %t.build
# RUN: mkdir -p %t.build
# RUN: cp %s %t.build/build.ninja
# RUN: touch %t.build/input
# RUN: %{llbuild} ninja build --jobs 1 --chdir %t.build &> %t1.out
# RUN: %{FileCheck} --check-prefix CHECK-INITIAL --input-file %t1.out %s
#
# CHECK-INITIAL: [1/{{.*}}] MKIFNOT
# CHECK-INITIAL: [2/{{.*}}] CP
# Modify the input (to triger a rebuild of "output-1") and rebuild.
#
# RUN: echo > %t.build/input
# RUN: %{llbuild} ninja build --strict --jobs 1 --chdir %t.build &> %t2.out
# RUN: %{FileCheck} --check-prefix CHECK-REBUILD --input-file %t2.out %s
#
# CHECK-REBUILD: [1/{{.*}}] MKIFNOT
# CHECK-REBUILD-NOT: CP
rule MKIFNOT
command = if [ ! -f "${out}" ]; then touch ${out}; fi
description = MKIFNOT
restat = 1
rule CP
command = cp ${in} ${out}
description = CP
build output-1: MKIFNOT input
build output: CP output-1
| Ninja | 4 | trombonehero/swift-llbuild | tests/Ninja/Build/restat.ninja | [
"Apache-2.0"
] |
- dashboard: email_performance_dashboard
title: Email Performance Dashboard
layout: newspaper
elements:
- title: Bounces by Sending IP (Top 10)
name: Bounces by Sending IP (Top 10)
model: braze_currents_block_message_engagement
explore: users_messages_email_send
type: looker_column
fields:
- users_messages_email_bounce.email_bounces
- users_messages_email_bounce.sending_ip_bounce
sorts:
- users_messages_email_bounce.email_bounces desc
limit: 500
query_timezone: America/New_York
stacking: ''
show_value_labels: true
label_density: 11
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: false
point_style: none
series_types: {}
limit_displayed_rows: true
limit_displayed_rows_values:
show_hide: show
first_last: first
num_rows: '10'
y_axis_combined: true
show_y_axis_labels: true
show_y_axis_ticks: true
y_axis_tick_density: default
y_axis_tick_density_custom: 5
show_x_axis_label: true
x_axis_label: Sending IP
show_x_axis_ticks: true
x_axis_datetime_label: "%b %d"
x_axis_scale: auto
y_axis_scale_mode: linear
x_axis_reversed: true
y_axis_reversed: false
plot_size_by_field: false
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
show_null_points: true
interpolation: monotone
hidden_fields:
listen: {}
row: 32
col: 0
width: 12
height: 9
- title: Emails Delivered by Sending IP (Top 10)
name: Emails Delivered by Sending IP (Top 10)
model: braze_currents_block_message_engagement
explore: users_messages_email_send
type: looker_column
fields:
- users_messages_email_delivery.sending_ip_delivery
- users_messages_email_delivery.emails_delivered
sorts:
- users_messages_email_delivery.emails_delivered desc
limit: 500
query_timezone: America/New_York
stacking: ''
show_value_labels: true
label_density: 25
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: false
point_style: none
limit_displayed_rows: true
limit_displayed_rows_values:
show_hide: show
first_last: first
num_rows: '10'
y_axis_combined: true
show_y_axis_labels: true
show_y_axis_ticks: true
y_axis_tick_density: default
y_axis_tick_density_custom: 5
show_x_axis_label: true
x_axis_label: Sending IP
show_x_axis_ticks: true
x_axis_scale: auto
y_axis_scale_mode: linear
x_axis_reversed: true
y_axis_reversed: false
plot_size_by_field: false
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
listen: {}
row: 32
col: 12
width: 12
height: 9
- title: Email Performance by Week
name: Email Performance by Week
model: braze_currents_block_message_engagement
explore: users_messages_email_send
type: looker_column
fields:
- users_messages_email_open.email_unique_open_rate
- users_messages_email_click.email_unique_click_rate
- users_messages_email_click.email_unique_clicks
- users_messages_email_open.email_unique_opens
- users_messages_email_delivery.emails_delivered
- users_messages_email_send.email_send_time_week
fill_fields:
- users_messages_email_send.email_send_time_week
sorts:
- users_messages_email_send.email_send_time_week desc
limit: 500
stacking: ''
show_value_labels: false
label_density: 25
font_size: '10'
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: false
point_style: none
series_types:
users_messages_email_open.email_unique_open_rate: line
users_messages_email_click.email_unique_click_rate: line
limit_displayed_rows: false
y_axes:
- label: Email Volume
orientation: left
series:
- id: users_messages_email_delivery.emails_delivered
name: Emails Delivered
axisId: users_messages_email_delivery.emails_delivered
- id: users_messages_email_open.email_unique_opens
name: Email Unique Opens
axisId: users_messages_email_open.email_unique_opens
- id: users_messages_email_click.email_unique_clicks
name: Email Unique Clicks
axisId: users_messages_email_click.email_unique_clicks
showLabels: true
showValues: true
unpinAxis: false
tickDensity: default
tickDensityCustom: 5
type: linear
- label: Email Rates
orientation: right
series:
- id: users_messages_email_click.email_unique_click_rate
name: Email Unique Click Rate
axisId: users_messages_email_click.email_unique_click_rate
- id: users_messages_email_open.email_unique_open_rate
name: Email Unique Open Rate
axisId: users_messages_email_open.email_unique_open_rate
showLabels: true
showValues: true
unpinAxis: false
tickDensity: default
tickDensityCustom: 5
type: linear
y_axis_combined: true
show_y_axis_labels: true
show_y_axis_ticks: true
y_axis_tick_density: default
y_axis_tick_density_custom: 5
show_x_axis_label: true
x_axis_label: Week Sent
show_x_axis_ticks: true
x_axis_datetime_label: "%b %d %Y"
x_axis_scale: auto
y_axis_scale_mode: linear
x_axis_reversed: false
y_axis_reversed: false
plot_size_by_field: false
x_axis_label_rotation: -45
ordering: none
label_rotation: 0
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
show_null_points: true
interpolation: linear
listen: {}
row: 0
col: 0
width: 24
height: 11
- title: Email Deliverability Overview by Day
name: Email Deliverability Overview by Day
model: braze_currents_block_message_engagement
explore: users_messages_email_send
type: table
fields:
- users_messages_email_send.email_send_time_date
- users_messages_email_delivery.email_delivery_rate
- users_messages_email_bounce.email_bounce_rate
- users_messages_email_softbounce.email_soft_bounce_rate
- users_messages_email_markasspam.marked_as_spam_rate
fill_fields:
- users_messages_email_send.email_send_time_date
sorts:
- users_messages_email_send.email_send_time_date desc
limit: 500
show_view_names: false
show_row_numbers: true
truncate_column_names: false
hide_totals: false
hide_row_totals: false
series_labels:
users_messages_email_send.email_send_time_date: Date Sent
users_messages_email_delivery.email_delivery_rate: Delivery Rate
users_messages_email_bounce.email_bounce_rate: Bounce Rate
users_messages_email_softbounce.email_soft_bounce_rate: Soft Bounce Rate
users_messages_email_markasspam.emails_marked_as_spam: Marked as Spam
users_messages_email_markasspam.marked_as_spam_rate: Marked as Spam Rate
table_theme: gray
limit_displayed_rows: false
enable_conditional_formatting: true
conditional_formatting:
- type: high to low
value:
background_color:
font_color:
palette:
name: Red to Yellow to Green
colors:
- "#F36254"
- "#FCF758"
- "#4FBC89"
bold: false
italic: false
strikethrough: false
fields:
- users_messages_email_markasspam.marked_as_spam_rate
- type: high to low
value:
background_color:
font_color:
palette:
name: Red to Yellow to Green
colors:
- "#F36254"
- "#FCF758"
- "#4FBC89"
bold: false
italic: false
strikethrough: false
fields:
- users_messages_email_bounce.email_bounce_rate
- type: high to low
value:
background_color:
font_color:
palette:
name: Red to Yellow to Green
colors:
- "#F36254"
- "#FCF758"
- "#4FBC89"
bold: false
italic: false
strikethrough: false
fields:
- users_messages_email_softbounce.email_soft_bounce_rate
- type: low to high
value:
background_color:
font_color:
palette:
name: Red to Yellow to Green
colors:
- "#F36254"
- "#FCF758"
- "#4FBC89"
bold: false
italic: false
strikethrough: false
fields:
- users_messages_email_delivery.email_delivery_rate
conditional_formatting_include_totals: false
conditional_formatting_include_nulls: false
stacking: ''
show_value_labels: false
label_density: 25
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
point_style: none
y_axis_combined: true
show_y_axis_labels: true
show_y_axis_ticks: true
y_axis_tick_density: default
y_axis_tick_density_custom: 5
show_x_axis_label: true
show_x_axis_ticks: true
x_axis_scale: auto
y_axis_scale_mode: linear
x_axis_reversed: false
y_axis_reversed: false
plot_size_by_field: false
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
series_types: {}
listen: {}
row: 22
col: 0
width: 24
height: 10
- title: Deliverability Performance by Week
name: Deliverability Performance by Week
model: braze_currents_block_message_engagement
explore: users_messages_email_send
type: looker_column
fields:
- users_messages_email_send.email_send_time_week
- users_messages_email_bounce.email_bounces
- users_messages_email_bounce.email_bounce_rate
- users_messages_email_softbounce.emails_soft_bounced
- users_messages_email_softbounce.email_soft_bounce_rate
- users_messages_email_delivery.email_delivery_rate
- users_messages_email_markasspam.emails_marked_as_spam
- users_messages_email_delivery.emails_delivered
fill_fields:
- users_messages_email_send.email_send_time_week
sorts:
- users_messages_email_send.email_send_time_week
limit: 500
stacking: ''
show_value_labels: false
label_density: 25
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: false
point_style: none
series_types:
users_messages_email_delivery.email_delivery_rate: line
users_messages_email_softbounce.email_soft_bounce_rate: line
users_messages_email_bounce.email_bounce_rate: line
limit_displayed_rows: false
y_axes:
- label: Email Volume
orientation: left
series:
- id: users_messages_email_bounce.email_bounces
name: Email Bounces
axisId: users_messages_email_bounce.email_bounces
- id: users_messages_email_softbounce.emails_soft_bounced
name: Emails Soft Bounced
axisId: users_messages_email_softbounce.emails_soft_bounced
- id: users_messages_email_delivery.emails_delivered
name: Emails Delivered
axisId: users_messages_email_delivery.emails_delivered
- id: users_messages_email_markasspam.emails_marked_as_spam
name: Emails Marked As Spam
axisId: users_messages_email_markasspam.emails_marked_as_spam
showLabels: true
showValues: true
unpinAxis: false
tickDensity: default
tickDensityCustom: 5
type: linear
- label: Email Rates
orientation: right
series:
- id: users_messages_email_bounce.email_bounce_rate
name: Email Bounce Rate
axisId: users_messages_email_bounce.email_bounce_rate
- id: users_messages_email_softbounce.email_soft_bounce_rate
name: Email Soft Bounce Rate
axisId: users_messages_email_softbounce.email_soft_bounce_rate
- id: users_messages_email_delivery.email_delivery_rate
name: Email Delivery Rate
axisId: users_messages_email_delivery.email_delivery_rate
showLabels: true
showValues: true
unpinAxis: false
tickDensity: default
tickDensityCustom: 5
type: linear
y_axis_combined: true
show_y_axis_labels: true
show_y_axis_ticks: true
y_axis_tick_density: default
y_axis_tick_density_custom: 5
show_x_axis_label: true
x_axis_label: Week Sent
show_x_axis_ticks: true
x_axis_datetime_label: "%b %d %Y"
x_axis_scale: auto
y_axis_scale_mode: linear
x_axis_reversed: false
y_axis_reversed: false
plot_size_by_field: false
x_axis_label_rotation: -45
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
listen: {}
row: 11
col: 0
width: 24
height: 11
| LookML | 3 | looker-open-source/braze_message_engagement_block | email_performance_dashboard.dashboard.lookml | [
"MIT"
] |
%%% flatten/a.ly
% aaa
%%% flatten/b.ly
% bbb
%%% the-works.ly
\require "dummy"
%%% flatten/a.ly
% aaa
% hello world!
| LilyPond | 1 | HolgerPeters/lyp | spec/user_files/flattened_output.ly | [
"MIT"
] |
⍝ You can try this at http://tryapl.org/
⍝ I can not explain how much I suddenly love this crypto-language
Starts ← 'Experiential truth ' 'The physical world ' 'Non-judgment ' 'Quantum physics '
Middles ← 'nurtures an ' 'projects onto ' 'imparts reality to ' 'constructs with '
Qualifiers ← 'abundance of ' 'the barrier of ' 'self-righteous ' 'potential '
Finishes ← 'marvel.' 'choices.' 'creativity.' 'actions.'
rf ← {(?⍴⍵)⊃⍵}
erf ← {rf ¨ ⍵}
deepak ← {erf Starts Middles Qualifiers Finishes}
deepak ⍬ | APL | 3 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/APL/DeepakChopra.apl | [
"MIT"
] |
<?xml version="1.0" encoding="UTF-8"?>
<faces-config>
<faces-config-extension>
<namespace-uri>http://unplugged.teamstudio.com</namespace-uri>
<default-prefix>unp</default-prefix>
</faces-config-extension>
<composite-component>
<component-type>UnpBootResources</component-type>
<composite-name>UnpBootResources</composite-name>
<composite-file>/UnpBootResources.xsp</composite-file>
<composite-extension>
<designer-extension>
<in-palette>true</in-palette>
<category>XControls</category>
<render-markup><?xml version="1.0" encoding="UTF-8"?> 
<xp:view xmlns:xp="http://www.ibm.com/xsp/core"> 
<div style="border: 2px solid #A9A9A9; padding: 3px; margin: 5px;">
<h1>UnpBootResources v1.7.0</h1>
<div>
To use this custom control make sure you have set the Custom Properties.
</div>
</div>
</xp:view></render-markup>
</designer-extension>
</composite-extension>
<property>
<property-name>loginpage</property-name>
<property-class>string</property-class>
<description>you can specify a login page to redirect to if the current user is anonymous. You must create the login page as required. Leave blank to use standard Domino authentication.</description>
</property>
</composite-component>
</faces-config>
| XPages | 3 | teamstudio/xcontrols-domino | xcontrols/CustomControls/UnpBootResources.xsp-config | [
"Apache-2.0"
] |
#include <oxstd.h>
#include<oxstd.h>
main()
{
{
//initialising variables
decl Gamma22Hat = zeros(2,2); // enter code
decl Gamma21Hat = zeros(2,1);
decl Gamma = zeros(2,1); // enter code
decl GammaHat = zeros(2,1);
decl Omega22Hat = zeros(2,2); // enter code
decl Omega21Hat = zeros(2,1);
decl Omega11Hat,Omega11HatPlus,sumOmega1,sumOmega2,sumOmega3,sumOmega4,sumOmega5,sumOmega6,sumOmega7,sumOmega8,sumOmega9;
decl sumOmega10,sumOmega11,sumOmega12,sumOmega13,sumOmega14,sumOmega15,sumOmega16,sumOmega17,sumOmega18,sumOmega19;
decl sumGamma1,sumGamma2,sumGamma11,sumGamma12,sumGamma21,sumGamma22;
decl DW,Fstat1,Fstat2,Fstat,amsval,DXX,R,Ra,Rb,R2,c1,PrimeGammaHat,mx,i,y,yHat,x1,x2,x3,X,b,OLSbPlus,Delta1,Delta2,tPlus,Delta3,Delta4,tPlusPlus,T,N,amxinv,c,e1,e2,rho,rhoHat,Omega22Hatinv,t,w,d,p,q;
decl OLSbPlus1,Omega1,Omega2,Omega3,Omega4,Omegastar,Omega1inv,P1,P2,P11,dd,ZZ1,ZZ2,OLSbPlusPlus,amx1inv;
decl Sigma22Hat,Sigma,Sigma22Hatinv,Omegabarsigma2,OmegabarPrimeinv;
decl SigmaHat=zeros(3,3);
decl SumSigma = zeros(0,1);
decl Omegabar = zeros(3,3);
decl OmegabarPrime = zeros(3,3);
println("Computation of Kao statistic sigma2_0v");
decl GammaHatbar,PrimeGammaHatbar,OLSbPlusNumerator;
decl SumOLSbPlusNumerator = zeros(1,3);
// load data-matrix
mx=loadmat("G:\\KAO12.TestData4.in7");
//initialising variables
for(i=0;i<12;++i)
{
// set X,y,b parameters
y = mx[0:][0+(4*i)];
x1 = mx[0:][1+(4*i)];
x2 = mx[0:][2+(4*i)];
x3 = mx[0:][3+(4*i)];
X = x1~x2~x3;
T = 138;
N = 12;
olsc(y,X,&b,&amxinv); // OLS estimation
println("Estimates of country regression ",i);
println("OLS b=",b);
c=y-X*b;
d=c'c/(T-1);
w=sqrt(d)*sqrt(amxinv);
p=diagonal(w);
q=p';
t=b./q;
Ra=c'c;
Rb=y'y;
R=Ra/Rb;
R2=1-R;
DW=(c-lag0(c,1))'(c-lag0(c,1))/Ra;
Fstat1=R2*(T-3);
Fstat2=(1-R2)*2;
Fstat=Fstat1/Fstat2;
eigensym(X'X,&amsval);
println("t-values=",t);
e1=x2-lag0(x2,1);
e2=x3-lag0(x3,1);
//code for Omega22Hat
sumOmega1=e1'e1/(T-1);
sumOmega2 = (2/(T-1))*((10/11)*e1'(lag0(e1,1))+(9/11)*e1'(lag0(e1,2))+(8/11)*e1'(lag0(e1,3))+(7/11)*e1'(lag0(e1,4))+(6/11)*e1'(lag0(e1,5))+(5/11)*e1'(lag0(e1,6))+(4/11)*e1'(lag0(e1,7))+(3/11)*e1'(lag0(e1,8))+(2/11)*e1'(lag0(e1,9))+(1/11)*e1'(lag0(e1,10))); // compute HAC1 standard errors
sumOmega3=e1'e2/(T-1);
sumOmega4= (1/(T-1))*((10/11)*e2'(lag0(e1,1))+(9/11)*e2'(lag0(e1,2))+(8/11)*e2'(lag0(e1,3))+(7/11)*e2'(lag0(e1,4))+(6/11)*e2'(lag0(e1,5))+(5/11)*e2'(lag0(e1,6))+(4/11)*e2'(lag0(e1,7))+(3/11)*e2'(lag0(e1,8))+(2/11)*e2'(lag0(e1,9))+(1/11)*e2'(lag0(e1,10))); // compute HAC1 standard errors
sumOmega5= (1/(T-1))*((10/11)*e1'(lag0(e2,1))+(9/11)*e1'(lag0(e2,2))+(8/11)*e1'(lag0(e2,3))+(7/11)*e1'(lag0(e2,4))+(6/11)*e1'(lag0(e2,5))+(5/11)*e1'(lag0(e2,6))+(4/11)*e1'(lag0(e2,7))+(3/11)*e1'(lag0(e2,8))+(2/11)*e1'(lag0(e2,9))+(1/11)*e1'(lag0(e2,10))); // compute HAC1 standard errors
sumOmega6=e2'e1/(T-1);
sumOmega7= (1/(T-1))*((10/11)*e2'(lag0(e1,1))+(9/11)*e2'(lag0(e1,2))+(8/11)*e2'(lag0(e1,3))+(7/11)*e2'(lag0(e1,4))+(6/11)*e2'(lag0(e1,5))+(5/11)*e2'(lag0(e1,6))+(4/11)*e2'(lag0(e1,7))+(3/11)*e2'(lag0(e1,8))+(2/11)*e2'(lag0(e1,9))+(1/11)*e2'(lag0(e1,10))); // compute HAC1 standard errors
sumOmega8= (1/(T-1))*((10/11)*e1'(lag0(e2,1))+(9/11)*e1'(lag0(e2,2))+(8/11)*e1'(lag0(e2,3))+(7/11)*e1'(lag0(e2,4))+(6/11)*e1'(lag0(e2,5))+(5/11)*e1'(lag0(e2,6))+(4/11)*e1'(lag0(e2,7))+(3/11)*e1'(lag0(e2,8))+(2/11)*e1'(lag0(e2,9))+(1/11)*e1'(lag0(e2,10))); // compute HAC1 standard errors
sumOmega9=e2'e2/(T-1);
sumOmega10= (2/(T-1))*((10/11)*e2'(lag0(e1,1))+(9/11)*e2'(lag0(e1,2))+(8/11)*e2'(lag0(e1,3))+(7/11)*e2'(lag0(e1,4))+(6/11)*e2'(lag0(e1,5))+(5/11)*e2'(lag0(e1,6))+(4/11)*e2'(lag0(e1,7))+(3/11)*e2'(lag0(e1,8))+(2/11)*e2'(lag0(e1,9))+(1/11)*e2'(lag0(e1,10))); // compute HAC1 standard errors
//code for Omega21Hat
sumOmega11=c'e1/(T-1);
sumOmega13= (1/(T-1))*((10/11)*c'(lag0(e1,1))+(9/11)*c'(lag0(e1,2))+(8/11)*c'(lag0(e1,3))+(7/11)*c'(lag0(e1,4))+(6/11)*c'(lag0(e1,5))+(5/11)*c'(lag0(e1,6))+(4/11)*c'(lag0(e1,7))+(3/11)*c'(lag0(e1,8))+(2/11)*c'(lag0(e1,9))+(1/11)*c'(lag0(e1,10))); // compute HAC1 standard errors
sumOmega12= (1/(T-1))*((10/11)*e1'(lag0(c,1))+(9/11)*e1'(lag0(c,2))+(8/11)*e1'(lag0(c,3))+(7/11)*e1'(lag0(c,4))+(6/11)*e1'(lag0(c,5))+(5/11)*e1'(lag0(c,6))+(4/11)*e1'(lag0(c,7))+(3/11)*e1'(lag0(c,8))+(2/11)*e1'(lag0(c,9))+(1/11)*e1'(lag0(c,10))); // compute HAC1 standard errors
sumOmega14=c'e2/(T-1);
sumOmega15= (1/(T-1))*((10/11)*e2'(lag0(c,1))+(9/11)*e2'(lag0(c,2))+(8/11)*e2'(lag0(c,3))+(7/11)*e2'(lag0(c,4))+(6/11)*e2'(lag0(c,5))+(5/11)*e2'(lag0(c,6))+(4/11)*e2'(lag0(c,7))+(3/11)*e2'(lag0(c,8))+(2/11)*e2'(lag0(c,9))+(1/11)*e2'(lag0(c,10))); // compute HAC1 standard errors
sumOmega16= (1/(T-1))*((10/11)*c'(lag0(e2,1))+(9/11)*c'(lag0(e2,2))+(8/11)*c'(lag0(e2,3))+(7/11)*c'(lag0(e2,4))+(6/11)*c'(lag0(e2,5))+(5/11)*c'(lag0(e2,6))+(4/11)*c'(lag0(e2,7))+(3/11)*c'(lag0(e2,8))+(2/11)*c'(lag0(e2,9))+(1/11)*c'(lag0(e2,10))); // compute HAC1 standard errors
//code for Gamma22Hat
sumGamma11=sumOmega1+(sumOmega2/2);
sumGamma12=sumOmega6+sumOmega5;
sumGamma21=sumOmega6+sumOmega4;
sumGamma22=sumOmega9+(sumOmega10/2);
//code for Gamma21Hat
sumGamma1=sumOmega11+sumOmega13;
sumGamma2=sumOmega14+sumOmega16;
//code for Omega22Hat again
Omega22Hat[0][0]=sumOmega1+sumOmega2;
Omega22Hat[0][1]=sumOmega3+sumOmega4+sumOmega5;
Omega22Hat[1][0]=sumOmega6+sumOmega7+sumOmega8;
Omega22Hat[1][1]=sumOmega9+sumOmega10;
//code for Omega21Hat again
Omega21Hat[0][0]=sumOmega11+sumOmega12+sumOmega13;
Omega21Hat[1][0]=sumOmega14+sumOmega15+sumOmega16;
//code for Gamma22Hat again
Gamma22Hat[0][0]=sumGamma11;
Gamma22Hat[0][1]=sumGamma12;
Gamma22Hat[1][0]=sumGamma21;
Gamma22Hat[1][1]=sumGamma22;
//code for Gamma21Hat again
Gamma21Hat[0][0]=sumGamma1;
Gamma21Hat[1][0]=sumGamma2;
//code for Omega11Hat
sumOmega17= c'c/(T-1);
sumOmega18= (2/(T-1))*((10/11)*c'(lag0(c,1))+(9/11)*c'(lag0(c,2))+(8/11)*c'(lag0(c,3))+(7/11)*c'(lag0(c,4))+(6/11)*c'(lag0(c,5))+(5/11)*c'(lag0(c,6))+(4/11)*c'(lag0(c,7))+(3/11)*c'(lag0(c,8))+(2/11)*c'(lag0(c,9))+(1/11)*c'(lag0(c,10))); // compute HAC1 standard errors
//code for Omega11Hat again
Omega11Hat=sumOmega17+sumOmega18;
//code for Sigma
SigmaHat[0][0]=sumOmega17;
SigmaHat[0][1]=sumOmega11;
SigmaHat[0][2]=sumOmega14;
SigmaHat[1][0]=sumOmega11';
SigmaHat[2][0]=sumOmega14';
SigmaHat[1][1]=sumOmega1;
SigmaHat[1][2]=sumOmega3;
SigmaHat[2][1]=sumOmega6;
SigmaHat[2][2]=sumOmega10;
//code for Sigma
Sigma22Hat=SigmaHat[1:2][1:2];
Sigma22Hatinv=invert(Sigma22Hat);
Sigma=SigmaHat[0][0]-SigmaHat[0][1:2]*Sigma22Hatinv*SigmaHat[0][1:2]';
SumSigma |= Sigma;
//Code for Omegabar
Omegabar[0][0] += Omega11Hat;
Omegabar[1:2][1:2] += Omega22Hat;
Omegabar[0][1:2] += Omega21Hat';
Omegabar[1:2][0] += Omega21Hat;
println("Omegabar=",Omegabar);
OmegabarPrime = Omegabar./N;
OmegabarPrimeinv = invert(OmegabarPrime[1:2][1:2]);
Omegabarsigma2 = OmegabarPrime[0][0]-OmegabarPrime[0][1:2]*OmegabarPrimeinv*OmegabarPrime[0][1:2]';
println("OmegabarPrime[0][1:2]=",OmegabarPrime[0][1:2]);
println("OmegabarPrime[1:2][1:2]=",OmegabarPrime[1:2][1:2]);
println("OmegabarPrimeinv=",invert(OmegabarPrime[1:2][1:2]));
println("Omegabarsigma2=",Omegabarsigma2);
}
}
} | Ox | 3 | francesco11112/Repository | Chapter_2/code/KAO.TESTLAG.ox | [
"MIT"
] |
# Copyright Project Harbor 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
*** Settings ***
Documentation Harbor BATs
Library ../../apitests/python/testutils.py
Library ../../apitests/python/library/oras.py
Library ../../apitests/python/library/singularity.py
Resource ../../resources/Util.robot
Default Tags Nightly
*** Variables ***
${HARBOR_URL} https://${ip}
${SSH_USER} root
${HARBOR_ADMIN} admin
*** Test Cases ***
Test Case - Customize Look
[tags] look
Init Chrome Driver
Sign In Harbor ${HARBOR_URL} ${HARBOR_ADMIN} ${HARBOR_PASSWORD}
Retry Wait Element //span[contains(., 'Harbor product name')]
Retry Element Click ${header_user}
Retry Element Click ${about_btn}
Retry Wait Element //p[contains(., 'test customize look for harbor')]
Retry Element Click ${close_btn}
${style}= Get Element Attribute ${header} style
Log All ${style}
Should Contain ${style} background-color: red
Retry Element Click ${color_theme_light}
Sleep 2
${style}= Get Element Attribute ${header} style
Log All ${style}
Should Contain ${style} background-color: yellow
Close Browser | RobotFramework | 4 | kschu91/harbor | tests/robot-cases/Group1-Nightly/WebUI.robot | [
"Apache-2.0"
] |
package unit.issues;
// whatever
#if !erase_generics
private interface I<T> {
function get():T;
}
private class C<T> implements I<T> {
public var value:T;
public function new(value:T) {
this.value = value;
}
public function get():T {
return value;
}
}
@:multiType(T)
private abstract A<T>(I<T>) {
public function new(value:T);
@:to static function ofInt(_:I<Int>, value:Int):C<Int> {
return new C(value);
}
@:to function toT():T {
return this.get();
}
}
#end
class Issue10145 extends unit.Test {
#if !erase_generics
function test() {
var x = new A(10);
var y:Int = x;
eq(10, y);
}
#end
}
| Haxe | 4 | Mu-L/haxe | tests/unit/src/unit/issues/Issue10145.hx | [
"MIT"
] |
//Enumerate VirtualBox processes and which VM they're running
//Extracts info solely from /proc/*/cmdline
//Useful for figuring out which VM is taking all the CPU, as the
//default display in 'top' shows only VirtualBox, and the full
//command line is incredibly verbose.
int main()
{
foreach (get_dir("/proc"),string n) if ((string)(int)n==n) catch
{
string cmd=Stdio.read_file("/proc/"+n+"/cmdline");
if (!cmd) continue;
array args=cmd/"\0";
if (args[0]!="/usr/lib/virtualbox/VirtualBox") continue; //TODO: How do I properly detect this path? It's not `which VirtualBox`.
foreach (args;int i;string arg) if (arg=="--comment") write("%5s %s\n",n,args[i+1]);
};
}
| Pike | 4 | stephenangelico/shed | vboxproc.pike | [
"MIT"
] |
ruleset org.sovrin.verifier {
meta {
use module org.sovrin.agent alias agent
shares __testing, nameForDID
}
global {
__testing = { "queries":
[ { "name": "__testing" }
, { "name": "nameForDID", "args": [ "did" ] }
] , "events":
[ //{ "domain": "d1", "type": "t1" }
//, { "domain": "d2", "type": "t2", "attrs": [ "a1", "a2" ] }
]
}
nameForDID = function(did){
connections = agent:ui(){"connections"};
name = connections.isnull()
=> null
| connections
.filter(function(c){c{"my_did"}==did})
.head(){"label"}
;
name => name | ""
}
}
}
| KRL | 3 | Picolab/G2S | krl/org.sovrin.verifier.krl | [
"MIT"
] |
/*
* Copyright 2018 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.
*/
package com.netflix.zuul.sample.filters.endpoint
import com.netflix.zuul.filters.http.HttpSyncEndpoint
import com.netflix.zuul.message.http.HttpRequestMessage
import com.netflix.zuul.message.http.HttpResponseMessage
import com.netflix.zuul.message.http.HttpResponseMessageImpl
import com.netflix.zuul.stats.status.StatusCategoryUtils
import com.netflix.zuul.stats.status.ZuulStatusCategory
/**
* Healthcheck Sample Endpoint
*
* Author: Arthur Gonigberg
* Date: November 21, 2017
*/
class Healthcheck extends HttpSyncEndpoint {
@Override
HttpResponseMessage apply(HttpRequestMessage request) {
HttpResponseMessage resp = new HttpResponseMessageImpl(request.getContext(), request, 200)
resp.setBodyAsText("healthy")
// need to set this manually since we are not going through the ProxyEndpoint
StatusCategoryUtils.setStatusCategory(request.getContext(), ZuulStatusCategory.SUCCESS)
return resp
}
}
| Groovy | 4 | TomMD/zuul | zuul-sample/src/main/groovy/com/netflix/zuul/sample/filters/endpoint/Healthcheck.groovy | [
"Apache-2.0"
] |
INSERT INTO CUSTOMER (ID, FIRST_NAME, DATE_OF_BIRTH) values (1, 'Meredith', '1998-07-13');
INSERT INTO CUSTOMER (ID, FIRST_NAME, DATE_OF_BIRTH) values (2, 'Joan', '1982-10-29');
| SQL | 2 | Martin-real/spring-boot-2.1.0.RELEASE | spring-boot-samples/spring-boot-sample-data-jdbc/src/main/resources/data.sql | [
"Apache-2.0"
] |
--TEST--
mb_ereg_replace()
--EXTENSIONS--
mbstring
--SKIPIF--
<?php
function_exists('mb_ereg_replace') or die("skip mb_ereg_replace() is not available in this build");
?>
--FILE--
<?php
mb_regex_set_options( '' );
print mb_ereg_replace( ' ', '-', 'a b c d e' )."\n";
print mb_ereg_replace( '([a-z]+)','[\\1]', 'abc def ghi' );
?>
--EXPECT--
a-b-c-d-e
[abc] [def] [ghi]
| PHP | 3 | NathanFreeman/php-src | ext/mbstring/tests/mb_ereg_replace.phpt | [
"PHP-3.01"
] |
# echo.fy
# Outputs contents of files
if: (ARGV[1]) then: |filename| {
try {
File read: filename with: |f| {
until: { f eof? } do: {
f readln println
}
}
} catch IOError => e {
"[ERROR] #{e message}" println
}
} else: {
"Usage: fancy #{ARGV[0]} [filename]" println
}
| Fancy | 4 | bakkdoor/fancy | examples/echo.fy | [
"BSD-3-Clause"
] |
mutation CreateShortcode($request: String!) {
createShortcode(request: $request) {
id
request
}
} | GraphQL | 4 | miily8310s/hoppscotch | packages/hoppscotch-app/helpers/backend/gql/mutations/CreateShortcode.graphql | [
"MIT"
] |
#define OBJECTSHADER_COMPILE_VS
#define OBJECTSHADER_LAYOUT_COMMON
#include "objectHF.hlsli"
| HLSL | 1 | rohankumardubey/WickedEngine | WickedEngine/shaders/objectVS_common.hlsl | [
"MIT"
] |
(kicad_pcb (version 20171130) (host pcbnew 5.1.6-c6e7f7d~87~ubuntu19.10.1)
(general
(thickness 1)
(drawings 59)
(tracks 119)
(zones 0)
(modules 35)
(nets 13)
)
(page A4)
(title_block
(title "DIY Particle Detector")
(date 2018-06-01)
(rev V1.2)
(company CERN)
(comment 1 "CERN open hardware license V1.2")
(comment 2 "Oliver Keller")
)
(layers
(0 F.Cu signal)
(31 B.Cu power)
(32 B.Adhes user hide)
(33 F.Adhes user hide)
(34 B.Paste user hide)
(35 F.Paste user hide)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user hide)
(42 Eco1.User user hide)
(43 Eco2.User user hide)
(44 Edge.Cuts user)
(45 Margin user hide)
(46 B.CrtYd user hide)
(47 F.CrtYd user hide)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.25)
(user_trace_width 0.4)
(trace_clearance 0.2)
(zone_clearance 0.2)
(zone_45_only yes)
(trace_min 0.2)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.2)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 5.7 5.7)
(pad_drill 3.2)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 0 0)
(grid_origin 137.5 112.5)
(visible_elements FFFFFE7F)
(pcbplotparams
(layerselection 0x011fc_ffffffff)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/"))
)
(net 0 "")
(net 1 "Net-(C1-Pad1)")
(net 2 "Net-(C1-Pad2)")
(net 3 "Net-(C2-Pad2)")
(net 4 GND)
(net 5 "Net-(C3-Pad1)")
(net 6 "Net-(C10-Pad1)")
(net 7 +9V)
(net 8 /Output)
(net 9 "Net-(C4-Pad2)")
(net 10 "Net-(C6-Pad1)")
(net 11 "Net-(C6-Pad2)")
(net 12 "Net-(C7-Pad1)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +9V)
(add_net /Output)
(add_net GND)
(add_net "Net-(C1-Pad1)")
(add_net "Net-(C1-Pad2)")
(add_net "Net-(C10-Pad1)")
(add_net "Net-(C2-Pad2)")
(add_net "Net-(C3-Pad1)")
(add_net "Net-(C4-Pad2)")
(add_net "Net-(C6-Pad1)")
(add_net "Net-(C6-Pad2)")
(add_net "Net-(C7-Pad1)")
)
(module Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm (layer F.Cu) (tedit 59650532) (tstamp 5D4289C0)
(at 165.44 118.215 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path /5D483F0C)
(attr virtual)
(fp_text reference J2 (at 0 -2.33 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x02_Female (at 0 4.87 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 1.27) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 /Output))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 GND))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm (layer F.Cu) (tedit 59650532) (tstamp 5D428C38)
(at 165.44 109.325 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path /5D46E8CB)
(attr virtual)
(fp_text reference J1 (at 0 -2.33 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x02_Female (at 0 4.87 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 1.27) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 +9V))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 GND))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Symbols:OSHW-Logo2_9.8x8mm_SilkScreen (layer B.Cu) (tedit 0) (tstamp 5D420B9F)
(at 117.815 121.256429 180)
(descr "Open Source Hardware Symbol")
(tags "Logo Symbol OSHW")
(attr virtual)
(fp_text reference REF*** (at 0 0 180) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value OSHW-Logo2_7.3x6mm_SilkScreen (at 0.75 0 180) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_poly (pts (xy -3.231114 -2.584505) (xy -3.156461 -2.621727) (xy -3.090569 -2.690261) (xy -3.072423 -2.715648)
(xy -3.052655 -2.748866) (xy -3.039828 -2.784945) (xy -3.03249 -2.833098) (xy -3.029187 -2.902536)
(xy -3.028462 -2.994206) (xy -3.031737 -3.11983) (xy -3.043123 -3.214154) (xy -3.064959 -3.284523)
(xy -3.099581 -3.338286) (xy -3.14933 -3.382788) (xy -3.152986 -3.385423) (xy -3.202015 -3.412377)
(xy -3.261055 -3.425712) (xy -3.336141 -3.429) (xy -3.458205 -3.429) (xy -3.458256 -3.547497)
(xy -3.459392 -3.613492) (xy -3.466314 -3.652202) (xy -3.484402 -3.675419) (xy -3.519038 -3.694933)
(xy -3.527355 -3.69892) (xy -3.56628 -3.717603) (xy -3.596417 -3.729403) (xy -3.618826 -3.730422)
(xy -3.634567 -3.716761) (xy -3.644698 -3.684522) (xy -3.650277 -3.629804) (xy -3.652365 -3.548711)
(xy -3.652019 -3.437344) (xy -3.6503 -3.291802) (xy -3.649763 -3.248269) (xy -3.647828 -3.098205)
(xy -3.646096 -3.000042) (xy -3.458308 -3.000042) (xy -3.457252 -3.083364) (xy -3.452562 -3.13788)
(xy -3.441949 -3.173837) (xy -3.423128 -3.201482) (xy -3.41035 -3.214965) (xy -3.35811 -3.254417)
(xy -3.311858 -3.257628) (xy -3.264133 -3.225049) (xy -3.262923 -3.223846) (xy -3.243506 -3.198668)
(xy -3.231693 -3.164447) (xy -3.225735 -3.111748) (xy -3.22388 -3.031131) (xy -3.223846 -3.013271)
(xy -3.22833 -2.902175) (xy -3.242926 -2.825161) (xy -3.26935 -2.778147) (xy -3.309317 -2.75705)
(xy -3.332416 -2.754923) (xy -3.387238 -2.7649) (xy -3.424842 -2.797752) (xy -3.447477 -2.857857)
(xy -3.457394 -2.949598) (xy -3.458308 -3.000042) (xy -3.646096 -3.000042) (xy -3.645778 -2.98206)
(xy -3.643127 -2.894679) (xy -3.639394 -2.830905) (xy -3.634093 -2.785582) (xy -3.626742 -2.753555)
(xy -3.616857 -2.729668) (xy -3.603954 -2.708764) (xy -3.598421 -2.700898) (xy -3.525031 -2.626595)
(xy -3.43224 -2.584467) (xy -3.324904 -2.572722) (xy -3.231114 -2.584505)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -1.728336 -2.595089) (xy -1.665633 -2.631358) (xy -1.622039 -2.667358) (xy -1.590155 -2.705075)
(xy -1.56819 -2.751199) (xy -1.554351 -2.812421) (xy -1.546847 -2.895431) (xy -1.543883 -3.006919)
(xy -1.543539 -3.087062) (xy -1.543539 -3.382065) (xy -1.709615 -3.456515) (xy -1.719385 -3.133402)
(xy -1.723421 -3.012729) (xy -1.727656 -2.925141) (xy -1.732903 -2.86465) (xy -1.739975 -2.825268)
(xy -1.749689 -2.801007) (xy -1.762856 -2.78588) (xy -1.767081 -2.782606) (xy -1.831091 -2.757034)
(xy -1.895792 -2.767153) (xy -1.934308 -2.794) (xy -1.949975 -2.813024) (xy -1.96082 -2.837988)
(xy -1.967712 -2.875834) (xy -1.971521 -2.933502) (xy -1.973117 -3.017935) (xy -1.973385 -3.105928)
(xy -1.973437 -3.216323) (xy -1.975328 -3.294463) (xy -1.981655 -3.347165) (xy -1.995017 -3.381242)
(xy -2.018015 -3.403511) (xy -2.053246 -3.420787) (xy -2.100303 -3.438738) (xy -2.151697 -3.458278)
(xy -2.145579 -3.111485) (xy -2.143116 -2.986468) (xy -2.140233 -2.894082) (xy -2.136102 -2.827881)
(xy -2.129893 -2.78142) (xy -2.120774 -2.748256) (xy -2.107917 -2.721944) (xy -2.092416 -2.698729)
(xy -2.017629 -2.624569) (xy -1.926372 -2.581684) (xy -1.827117 -2.571412) (xy -1.728336 -2.595089)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -3.983114 -2.587256) (xy -3.891536 -2.635409) (xy -3.823951 -2.712905) (xy -3.799943 -2.762727)
(xy -3.781262 -2.837533) (xy -3.771699 -2.932052) (xy -3.770792 -3.03521) (xy -3.778079 -3.135935)
(xy -3.793097 -3.223153) (xy -3.815385 -3.285791) (xy -3.822235 -3.296579) (xy -3.903368 -3.377105)
(xy -3.999734 -3.425336) (xy -4.104299 -3.43945) (xy -4.210032 -3.417629) (xy -4.239457 -3.404547)
(xy -4.296759 -3.364231) (xy -4.34705 -3.310775) (xy -4.351803 -3.303995) (xy -4.371122 -3.271321)
(xy -4.383892 -3.236394) (xy -4.391436 -3.190414) (xy -4.395076 -3.124584) (xy -4.396135 -3.030105)
(xy -4.396154 -3.008923) (xy -4.396106 -3.002182) (xy -4.200769 -3.002182) (xy -4.199632 -3.091349)
(xy -4.195159 -3.15052) (xy -4.185754 -3.188741) (xy -4.169824 -3.215053) (xy -4.161692 -3.223846)
(xy -4.114942 -3.257261) (xy -4.069553 -3.255737) (xy -4.02366 -3.226752) (xy -3.996288 -3.195809)
(xy -3.980077 -3.150643) (xy -3.970974 -3.07942) (xy -3.970349 -3.071114) (xy -3.968796 -2.942037)
(xy -3.985035 -2.846172) (xy -4.018848 -2.784107) (xy -4.070016 -2.756432) (xy -4.08828 -2.754923)
(xy -4.13624 -2.762513) (xy -4.169047 -2.788808) (xy -4.189105 -2.839095) (xy -4.198822 -2.918664)
(xy -4.200769 -3.002182) (xy -4.396106 -3.002182) (xy -4.395426 -2.908249) (xy -4.392371 -2.837906)
(xy -4.385678 -2.789163) (xy -4.37404 -2.753288) (xy -4.356147 -2.721548) (xy -4.352192 -2.715648)
(xy -4.285733 -2.636104) (xy -4.213315 -2.589929) (xy -4.125151 -2.571599) (xy -4.095213 -2.570703)
(xy -3.983114 -2.587256)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -2.465746 -2.599745) (xy -2.388714 -2.651567) (xy -2.329184 -2.726412) (xy -2.293622 -2.821654)
(xy -2.286429 -2.891756) (xy -2.287246 -2.921009) (xy -2.294086 -2.943407) (xy -2.312888 -2.963474)
(xy -2.349592 -2.985733) (xy -2.410138 -3.014709) (xy -2.500466 -3.054927) (xy -2.500923 -3.055129)
(xy -2.584067 -3.09321) (xy -2.652247 -3.127025) (xy -2.698495 -3.152933) (xy -2.715842 -3.167295)
(xy -2.715846 -3.167411) (xy -2.700557 -3.198685) (xy -2.664804 -3.233157) (xy -2.623758 -3.25799)
(xy -2.602963 -3.262923) (xy -2.54623 -3.245862) (xy -2.497373 -3.203133) (xy -2.473535 -3.156155)
(xy -2.450603 -3.121522) (xy -2.405682 -3.082081) (xy -2.352877 -3.048009) (xy -2.30629 -3.02948)
(xy -2.296548 -3.028462) (xy -2.285582 -3.045215) (xy -2.284921 -3.088039) (xy -2.29298 -3.145781)
(xy -2.308173 -3.207289) (xy -2.328914 -3.261409) (xy -2.329962 -3.26351) (xy -2.392379 -3.35066)
(xy -2.473274 -3.409939) (xy -2.565144 -3.439034) (xy -2.660487 -3.435634) (xy -2.751802 -3.397428)
(xy -2.755862 -3.394741) (xy -2.827694 -3.329642) (xy -2.874927 -3.244705) (xy -2.901066 -3.133021)
(xy -2.904574 -3.101643) (xy -2.910787 -2.953536) (xy -2.903339 -2.884468) (xy -2.715846 -2.884468)
(xy -2.71341 -2.927552) (xy -2.700086 -2.940126) (xy -2.666868 -2.930719) (xy -2.614506 -2.908483)
(xy -2.555976 -2.88061) (xy -2.554521 -2.879872) (xy -2.504911 -2.853777) (xy -2.485 -2.836363)
(xy -2.48991 -2.818107) (xy -2.510584 -2.79412) (xy -2.563181 -2.759406) (xy -2.619823 -2.756856)
(xy -2.670631 -2.782119) (xy -2.705724 -2.830847) (xy -2.715846 -2.884468) (xy -2.903339 -2.884468)
(xy -2.898008 -2.835036) (xy -2.865222 -2.741055) (xy -2.819579 -2.675215) (xy -2.737198 -2.608681)
(xy -2.646454 -2.575676) (xy -2.553815 -2.573573) (xy -2.465746 -2.599745)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -0.840154 -2.49212) (xy -0.834428 -2.57198) (xy -0.827851 -2.619039) (xy -0.818738 -2.639566)
(xy -0.805402 -2.639829) (xy -0.801077 -2.637378) (xy -0.743556 -2.619636) (xy -0.668732 -2.620672)
(xy -0.592661 -2.63891) (xy -0.545082 -2.662505) (xy -0.496298 -2.700198) (xy -0.460636 -2.742855)
(xy -0.436155 -2.797057) (xy -0.420913 -2.869384) (xy -0.41297 -2.966419) (xy -0.410384 -3.094742)
(xy -0.410338 -3.119358) (xy -0.410308 -3.39587) (xy -0.471839 -3.41732) (xy -0.515541 -3.431912)
(xy -0.539518 -3.438706) (xy -0.540223 -3.438769) (xy -0.542585 -3.420345) (xy -0.544594 -3.369526)
(xy -0.546099 -3.292993) (xy -0.546947 -3.19743) (xy -0.547077 -3.139329) (xy -0.547349 -3.024771)
(xy -0.548748 -2.942667) (xy -0.552151 -2.886393) (xy -0.558433 -2.849326) (xy -0.568471 -2.824844)
(xy -0.583139 -2.806325) (xy -0.592298 -2.797406) (xy -0.655211 -2.761466) (xy -0.723864 -2.758775)
(xy -0.786152 -2.78917) (xy -0.797671 -2.800144) (xy -0.814567 -2.820779) (xy -0.826286 -2.845256)
(xy -0.833767 -2.880647) (xy -0.837946 -2.934026) (xy -0.839763 -3.012466) (xy -0.840154 -3.120617)
(xy -0.840154 -3.39587) (xy -0.901685 -3.41732) (xy -0.945387 -3.431912) (xy -0.969364 -3.438706)
(xy -0.97007 -3.438769) (xy -0.971874 -3.420069) (xy -0.9735 -3.367322) (xy -0.974883 -3.285557)
(xy -0.975958 -3.179805) (xy -0.97666 -3.055094) (xy -0.976923 -2.916455) (xy -0.976923 -2.381806)
(xy -0.849923 -2.328236) (xy -0.840154 -2.49212)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 0.053501 -2.626303) (xy 0.13006 -2.654733) (xy 0.130936 -2.655279) (xy 0.178285 -2.690127)
(xy 0.213241 -2.730852) (xy 0.237825 -2.783925) (xy 0.254062 -2.855814) (xy 0.263975 -2.952992)
(xy 0.269586 -3.081928) (xy 0.270077 -3.100298) (xy 0.277141 -3.377287) (xy 0.217695 -3.408028)
(xy 0.174681 -3.428802) (xy 0.14871 -3.438646) (xy 0.147509 -3.438769) (xy 0.143014 -3.420606)
(xy 0.139444 -3.371612) (xy 0.137248 -3.300031) (xy 0.136769 -3.242068) (xy 0.136758 -3.14817)
(xy 0.132466 -3.089203) (xy 0.117503 -3.061079) (xy 0.085482 -3.059706) (xy 0.030014 -3.080998)
(xy -0.053731 -3.120136) (xy -0.115311 -3.152643) (xy -0.146983 -3.180845) (xy -0.156294 -3.211582)
(xy -0.156308 -3.213104) (xy -0.140943 -3.266054) (xy -0.095453 -3.29466) (xy -0.025834 -3.298803)
(xy 0.024313 -3.298084) (xy 0.050754 -3.312527) (xy 0.067243 -3.347218) (xy 0.076733 -3.391416)
(xy 0.063057 -3.416493) (xy 0.057907 -3.420082) (xy 0.009425 -3.434496) (xy -0.058469 -3.436537)
(xy -0.128388 -3.426983) (xy -0.177932 -3.409522) (xy -0.24643 -3.351364) (xy -0.285366 -3.270408)
(xy -0.293077 -3.20716) (xy -0.287193 -3.150111) (xy -0.265899 -3.103542) (xy -0.223735 -3.062181)
(xy -0.155241 -3.020755) (xy -0.054956 -2.973993) (xy -0.048846 -2.97135) (xy 0.04149 -2.929617)
(xy 0.097235 -2.895391) (xy 0.121129 -2.864635) (xy 0.115913 -2.833311) (xy 0.084328 -2.797383)
(xy 0.074883 -2.789116) (xy 0.011617 -2.757058) (xy -0.053936 -2.758407) (xy -0.111028 -2.789838)
(xy -0.148907 -2.848024) (xy -0.152426 -2.859446) (xy -0.1867 -2.914837) (xy -0.230191 -2.941518)
(xy -0.293077 -2.96796) (xy -0.293077 -2.899548) (xy -0.273948 -2.80011) (xy -0.217169 -2.708902)
(xy -0.187622 -2.678389) (xy -0.120458 -2.639228) (xy -0.035044 -2.6215) (xy 0.053501 -2.626303)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 0.713362 -2.62467) (xy 0.802117 -2.657421) (xy 0.874022 -2.71535) (xy 0.902144 -2.756128)
(xy 0.932802 -2.830954) (xy 0.932165 -2.885058) (xy 0.899987 -2.921446) (xy 0.888081 -2.927633)
(xy 0.836675 -2.946925) (xy 0.810422 -2.941982) (xy 0.80153 -2.909587) (xy 0.801077 -2.891692)
(xy 0.784797 -2.825859) (xy 0.742365 -2.779807) (xy 0.683388 -2.757564) (xy 0.617475 -2.763161)
(xy 0.563895 -2.792229) (xy 0.545798 -2.80881) (xy 0.532971 -2.828925) (xy 0.524306 -2.859332)
(xy 0.518696 -2.906788) (xy 0.515035 -2.97805) (xy 0.512215 -3.079875) (xy 0.511484 -3.112115)
(xy 0.50882 -3.22241) (xy 0.505792 -3.300036) (xy 0.50125 -3.351396) (xy 0.494046 -3.38289)
(xy 0.483033 -3.40092) (xy 0.46706 -3.411888) (xy 0.456834 -3.416733) (xy 0.413406 -3.433301)
(xy 0.387842 -3.438769) (xy 0.379395 -3.420507) (xy 0.374239 -3.365296) (xy 0.372346 -3.272499)
(xy 0.373689 -3.141478) (xy 0.374107 -3.121269) (xy 0.377058 -3.001733) (xy 0.380548 -2.914449)
(xy 0.385514 -2.852591) (xy 0.392893 -2.809336) (xy 0.403624 -2.77786) (xy 0.418645 -2.751339)
(xy 0.426502 -2.739975) (xy 0.471553 -2.689692) (xy 0.52194 -2.650581) (xy 0.528108 -2.647167)
(xy 0.618458 -2.620212) (xy 0.713362 -2.62467)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 1.602081 -2.780289) (xy 1.601833 -2.92632) (xy 1.600872 -3.038655) (xy 1.598794 -3.122678)
(xy 1.595193 -3.183769) (xy 1.589665 -3.227309) (xy 1.581804 -3.258679) (xy 1.571207 -3.283262)
(xy 1.563182 -3.297294) (xy 1.496728 -3.373388) (xy 1.41247 -3.421084) (xy 1.319249 -3.438199)
(xy 1.2259 -3.422546) (xy 1.170312 -3.394418) (xy 1.111957 -3.34576) (xy 1.072186 -3.286333)
(xy 1.04819 -3.208507) (xy 1.037161 -3.104652) (xy 1.035599 -3.028462) (xy 1.035809 -3.022986)
(xy 1.172308 -3.022986) (xy 1.173141 -3.110355) (xy 1.176961 -3.168192) (xy 1.185746 -3.206029)
(xy 1.201474 -3.233398) (xy 1.220266 -3.254042) (xy 1.283375 -3.29389) (xy 1.351137 -3.297295)
(xy 1.415179 -3.264025) (xy 1.420164 -3.259517) (xy 1.441439 -3.236067) (xy 1.454779 -3.208166)
(xy 1.462001 -3.166641) (xy 1.464923 -3.102316) (xy 1.465385 -3.0312) (xy 1.464383 -2.941858)
(xy 1.460238 -2.882258) (xy 1.451236 -2.843089) (xy 1.435667 -2.81504) (xy 1.422902 -2.800144)
(xy 1.3636 -2.762575) (xy 1.295301 -2.758057) (xy 1.23011 -2.786753) (xy 1.217528 -2.797406)
(xy 1.196111 -2.821063) (xy 1.182744 -2.849251) (xy 1.175566 -2.891245) (xy 1.172719 -2.956319)
(xy 1.172308 -3.022986) (xy 1.035809 -3.022986) (xy 1.040322 -2.905765) (xy 1.056362 -2.813577)
(xy 1.086528 -2.744269) (xy 1.133629 -2.690211) (xy 1.170312 -2.662505) (xy 1.23699 -2.632572)
(xy 1.314272 -2.618678) (xy 1.38611 -2.622397) (xy 1.426308 -2.6374) (xy 1.442082 -2.64167)
(xy 1.45255 -2.62575) (xy 1.459856 -2.583089) (xy 1.465385 -2.518106) (xy 1.471437 -2.445732)
(xy 1.479844 -2.402187) (xy 1.495141 -2.377287) (xy 1.521864 -2.360845) (xy 1.538654 -2.353564)
(xy 1.602154 -2.326963) (xy 1.602081 -2.780289)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 2.395929 -2.636662) (xy 2.398911 -2.688068) (xy 2.401247 -2.766192) (xy 2.402749 -2.864857)
(xy 2.403231 -2.968343) (xy 2.403231 -3.318533) (xy 2.341401 -3.380363) (xy 2.298793 -3.418462)
(xy 2.26139 -3.433895) (xy 2.21027 -3.432918) (xy 2.189978 -3.430433) (xy 2.126554 -3.4232)
(xy 2.074095 -3.419055) (xy 2.061308 -3.418672) (xy 2.018199 -3.421176) (xy 1.956544 -3.427462)
(xy 1.932638 -3.430433) (xy 1.873922 -3.435028) (xy 1.834464 -3.425046) (xy 1.795338 -3.394228)
(xy 1.781215 -3.380363) (xy 1.719385 -3.318533) (xy 1.719385 -2.663503) (xy 1.76915 -2.640829)
(xy 1.812002 -2.624034) (xy 1.837073 -2.618154) (xy 1.843501 -2.636736) (xy 1.849509 -2.688655)
(xy 1.854697 -2.768172) (xy 1.858664 -2.869546) (xy 1.860577 -2.955192) (xy 1.865923 -3.292231)
(xy 1.91256 -3.298825) (xy 1.954976 -3.294214) (xy 1.97576 -3.279287) (xy 1.98157 -3.251377)
(xy 1.98653 -3.191925) (xy 1.990246 -3.108466) (xy 1.992324 -3.008532) (xy 1.992624 -2.957104)
(xy 1.992923 -2.661054) (xy 2.054454 -2.639604) (xy 2.098004 -2.62502) (xy 2.121694 -2.618219)
(xy 2.122377 -2.618154) (xy 2.124754 -2.636642) (xy 2.127366 -2.687906) (xy 2.129995 -2.765649)
(xy 2.132421 -2.863574) (xy 2.134115 -2.955192) (xy 2.139461 -3.292231) (xy 2.256692 -3.292231)
(xy 2.262072 -2.984746) (xy 2.267451 -2.677261) (xy 2.324601 -2.647707) (xy 2.366797 -2.627413)
(xy 2.39177 -2.618204) (xy 2.392491 -2.618154) (xy 2.395929 -2.636662)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 2.887333 -2.633528) (xy 2.94359 -2.659117) (xy 2.987747 -2.690124) (xy 3.020101 -2.724795)
(xy 3.042438 -2.76952) (xy 3.056546 -2.830692) (xy 3.064211 -2.914701) (xy 3.06722 -3.02794)
(xy 3.067538 -3.102509) (xy 3.067538 -3.39342) (xy 3.017773 -3.416095) (xy 2.978576 -3.432667)
(xy 2.959157 -3.438769) (xy 2.955442 -3.42061) (xy 2.952495 -3.371648) (xy 2.950691 -3.300153)
(xy 2.950308 -3.243385) (xy 2.948661 -3.161371) (xy 2.944222 -3.096309) (xy 2.93774 -3.056467)
(xy 2.93259 -3.048) (xy 2.897977 -3.056646) (xy 2.84364 -3.078823) (xy 2.780722 -3.108886)
(xy 2.720368 -3.141192) (xy 2.673721 -3.170098) (xy 2.651926 -3.189961) (xy 2.651839 -3.190175)
(xy 2.653714 -3.226935) (xy 2.670525 -3.262026) (xy 2.700039 -3.290528) (xy 2.743116 -3.300061)
(xy 2.779932 -3.29895) (xy 2.832074 -3.298133) (xy 2.859444 -3.310349) (xy 2.875882 -3.342624)
(xy 2.877955 -3.34871) (xy 2.885081 -3.394739) (xy 2.866024 -3.422687) (xy 2.816353 -3.436007)
(xy 2.762697 -3.43847) (xy 2.666142 -3.42021) (xy 2.616159 -3.394131) (xy 2.554429 -3.332868)
(xy 2.52169 -3.25767) (xy 2.518753 -3.178211) (xy 2.546424 -3.104167) (xy 2.588047 -3.057769)
(xy 2.629604 -3.031793) (xy 2.694922 -2.998907) (xy 2.771038 -2.965557) (xy 2.783726 -2.960461)
(xy 2.867333 -2.923565) (xy 2.91553 -2.891046) (xy 2.93103 -2.858718) (xy 2.91655 -2.822394)
(xy 2.891692 -2.794) (xy 2.832939 -2.759039) (xy 2.768293 -2.756417) (xy 2.709008 -2.783358)
(xy 2.666339 -2.837088) (xy 2.660739 -2.85095) (xy 2.628133 -2.901936) (xy 2.58053 -2.939787)
(xy 2.520461 -2.97085) (xy 2.520461 -2.882768) (xy 2.523997 -2.828951) (xy 2.539156 -2.786534)
(xy 2.572768 -2.741279) (xy 2.605035 -2.70642) (xy 2.655209 -2.657062) (xy 2.694193 -2.630547)
(xy 2.736064 -2.619911) (xy 2.78346 -2.618154) (xy 2.887333 -2.633528)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 3.570807 -2.636782) (xy 3.594161 -2.646988) (xy 3.649902 -2.691134) (xy 3.697569 -2.754967)
(xy 3.727048 -2.823087) (xy 3.731846 -2.85667) (xy 3.71576 -2.903556) (xy 3.680475 -2.928365)
(xy 3.642644 -2.943387) (xy 3.625321 -2.946155) (xy 3.616886 -2.926066) (xy 3.60023 -2.882351)
(xy 3.592923 -2.862598) (xy 3.551948 -2.794271) (xy 3.492622 -2.760191) (xy 3.416552 -2.761239)
(xy 3.410918 -2.762581) (xy 3.370305 -2.781836) (xy 3.340448 -2.819375) (xy 3.320055 -2.879809)
(xy 3.307836 -2.967751) (xy 3.3025 -3.087813) (xy 3.302 -3.151698) (xy 3.301752 -3.252403)
(xy 3.300126 -3.321054) (xy 3.295801 -3.364673) (xy 3.287454 -3.390282) (xy 3.273765 -3.404903)
(xy 3.253411 -3.415558) (xy 3.252234 -3.416095) (xy 3.213038 -3.432667) (xy 3.193619 -3.438769)
(xy 3.190635 -3.420319) (xy 3.188081 -3.369323) (xy 3.18614 -3.292308) (xy 3.184997 -3.195805)
(xy 3.184769 -3.125184) (xy 3.185932 -2.988525) (xy 3.190479 -2.884851) (xy 3.199999 -2.808108)
(xy 3.216081 -2.752246) (xy 3.240313 -2.711212) (xy 3.274286 -2.678954) (xy 3.307833 -2.65644)
(xy 3.388499 -2.626476) (xy 3.482381 -2.619718) (xy 3.570807 -2.636782)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 4.245224 -2.647838) (xy 4.322528 -2.698361) (xy 4.359814 -2.74359) (xy 4.389353 -2.825663)
(xy 4.391699 -2.890607) (xy 4.386385 -2.977445) (xy 4.186115 -3.065103) (xy 4.088739 -3.109887)
(xy 4.025113 -3.145913) (xy 3.992029 -3.177117) (xy 3.98628 -3.207436) (xy 4.004658 -3.240805)
(xy 4.024923 -3.262923) (xy 4.083889 -3.298393) (xy 4.148024 -3.300879) (xy 4.206926 -3.273235)
(xy 4.250197 -3.21832) (xy 4.257936 -3.198928) (xy 4.295006 -3.138364) (xy 4.337654 -3.112552)
(xy 4.396154 -3.090471) (xy 4.396154 -3.174184) (xy 4.390982 -3.23115) (xy 4.370723 -3.279189)
(xy 4.328262 -3.334346) (xy 4.321951 -3.341514) (xy 4.27472 -3.390585) (xy 4.234121 -3.41692)
(xy 4.183328 -3.429035) (xy 4.14122 -3.433003) (xy 4.065902 -3.433991) (xy 4.012286 -3.421466)
(xy 3.978838 -3.402869) (xy 3.926268 -3.361975) (xy 3.889879 -3.317748) (xy 3.86685 -3.262126)
(xy 3.854359 -3.187047) (xy 3.849587 -3.084449) (xy 3.849206 -3.032376) (xy 3.850501 -2.969948)
(xy 3.968471 -2.969948) (xy 3.969839 -3.003438) (xy 3.973249 -3.008923) (xy 3.995753 -3.001472)
(xy 4.044182 -2.981753) (xy 4.108908 -2.953718) (xy 4.122443 -2.947692) (xy 4.204244 -2.906096)
(xy 4.249312 -2.869538) (xy 4.259217 -2.835296) (xy 4.235526 -2.800648) (xy 4.21596 -2.785339)
(xy 4.14536 -2.754721) (xy 4.07928 -2.75978) (xy 4.023959 -2.797151) (xy 3.985636 -2.863473)
(xy 3.973349 -2.916116) (xy 3.968471 -2.969948) (xy 3.850501 -2.969948) (xy 3.85173 -2.91072)
(xy 3.861032 -2.82071) (xy 3.87946 -2.755167) (xy 3.90936 -2.706912) (xy 3.95308 -2.668767)
(xy 3.972141 -2.65644) (xy 4.058726 -2.624336) (xy 4.153522 -2.622316) (xy 4.245224 -2.647838)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 0.139878 3.712224) (xy 0.245612 3.711645) (xy 0.322132 3.710078) (xy 0.374372 3.707028)
(xy 0.407263 3.702004) (xy 0.425737 3.694511) (xy 0.434727 3.684056) (xy 0.439163 3.670147)
(xy 0.439594 3.668346) (xy 0.446333 3.635855) (xy 0.458808 3.571748) (xy 0.475719 3.482849)
(xy 0.495771 3.375981) (xy 0.517664 3.257967) (xy 0.518429 3.253822) (xy 0.540359 3.138169)
(xy 0.560877 3.035986) (xy 0.578659 2.953402) (xy 0.592381 2.896544) (xy 0.600718 2.871542)
(xy 0.601116 2.871099) (xy 0.625677 2.85889) (xy 0.676315 2.838544) (xy 0.742095 2.814455)
(xy 0.742461 2.814326) (xy 0.825317 2.783182) (xy 0.923 2.743509) (xy 1.015077 2.703619)
(xy 1.019434 2.701647) (xy 1.169407 2.63358) (xy 1.501498 2.860361) (xy 1.603374 2.929496)
(xy 1.695657 2.991303) (xy 1.773003 3.042267) (xy 1.830064 3.078873) (xy 1.861495 3.097606)
(xy 1.864479 3.098996) (xy 1.887321 3.09281) (xy 1.929982 3.062965) (xy 1.994128 3.008053)
(xy 2.081421 2.926666) (xy 2.170535 2.840078) (xy 2.256441 2.754753) (xy 2.333327 2.676892)
(xy 2.396564 2.611303) (xy 2.441523 2.562795) (xy 2.463576 2.536175) (xy 2.464396 2.534805)
(xy 2.466834 2.516537) (xy 2.45765 2.486705) (xy 2.434574 2.441279) (xy 2.395337 2.37623)
(xy 2.33767 2.28753) (xy 2.260795 2.173343) (xy 2.19257 2.072838) (xy 2.131582 1.982697)
(xy 2.081356 1.908151) (xy 2.045416 1.854435) (xy 2.027287 1.826782) (xy 2.026146 1.824905)
(xy 2.028359 1.79841) (xy 2.045138 1.746914) (xy 2.073142 1.680149) (xy 2.083122 1.658828)
(xy 2.126672 1.563841) (xy 2.173134 1.456063) (xy 2.210877 1.362808) (xy 2.238073 1.293594)
(xy 2.259675 1.240994) (xy 2.272158 1.213503) (xy 2.273709 1.211384) (xy 2.296668 1.207876)
(xy 2.350786 1.198262) (xy 2.428868 1.183911) (xy 2.523719 1.166193) (xy 2.628143 1.146475)
(xy 2.734944 1.126126) (xy 2.836926 1.106514) (xy 2.926894 1.089009) (xy 2.997653 1.074978)
(xy 3.042006 1.065791) (xy 3.052885 1.063193) (xy 3.064122 1.056782) (xy 3.072605 1.042303)
(xy 3.078714 1.014867) (xy 3.082832 0.969589) (xy 3.085341 0.90158) (xy 3.086621 0.805953)
(xy 3.087054 0.67782) (xy 3.087077 0.625299) (xy 3.087077 0.198155) (xy 2.9845 0.177909)
(xy 2.927431 0.16693) (xy 2.842269 0.150905) (xy 2.739372 0.131767) (xy 2.629096 0.111449)
(xy 2.598615 0.105868) (xy 2.496855 0.086083) (xy 2.408205 0.066627) (xy 2.340108 0.049303)
(xy 2.300004 0.035912) (xy 2.293323 0.031921) (xy 2.276919 0.003658) (xy 2.253399 -0.051109)
(xy 2.227316 -0.121588) (xy 2.222142 -0.136769) (xy 2.187956 -0.230896) (xy 2.145523 -0.337101)
(xy 2.103997 -0.432473) (xy 2.103792 -0.432916) (xy 2.03464 -0.582525) (xy 2.489512 -1.251617)
(xy 2.1975 -1.544116) (xy 2.10918 -1.63117) (xy 2.028625 -1.707909) (xy 1.96036 -1.770237)
(xy 1.908908 -1.814056) (xy 1.878794 -1.83527) (xy 1.874474 -1.836616) (xy 1.849111 -1.826016)
(xy 1.797358 -1.796547) (xy 1.724868 -1.751705) (xy 1.637294 -1.694984) (xy 1.542612 -1.631462)
(xy 1.446516 -1.566668) (xy 1.360837 -1.510287) (xy 1.291016 -1.465788) (xy 1.242494 -1.436639)
(xy 1.220782 -1.426308) (xy 1.194293 -1.43505) (xy 1.144062 -1.458087) (xy 1.080451 -1.490631)
(xy 1.073708 -1.494249) (xy 0.988046 -1.53721) (xy 0.929306 -1.558279) (xy 0.892772 -1.558503)
(xy 0.873731 -1.538928) (xy 0.87362 -1.538654) (xy 0.864102 -1.515472) (xy 0.841403 -1.460441)
(xy 0.807282 -1.377822) (xy 0.7635 -1.271872) (xy 0.711816 -1.146852) (xy 0.653992 -1.00702)
(xy 0.597991 -0.871637) (xy 0.536447 -0.722234) (xy 0.479939 -0.583832) (xy 0.430161 -0.460673)
(xy 0.388806 -0.357002) (xy 0.357568 -0.277059) (xy 0.338141 -0.225088) (xy 0.332154 -0.205692)
(xy 0.347168 -0.183443) (xy 0.386439 -0.147982) (xy 0.438807 -0.108887) (xy 0.587941 0.014755)
(xy 0.704511 0.156478) (xy 0.787118 0.313296) (xy 0.834366 0.482225) (xy 0.844857 0.660278)
(xy 0.837231 0.742461) (xy 0.795682 0.912969) (xy 0.724123 1.063541) (xy 0.626995 1.192691)
(xy 0.508734 1.298936) (xy 0.37378 1.38079) (xy 0.226571 1.436768) (xy 0.071544 1.465385)
(xy -0.086861 1.465156) (xy -0.244206 1.434595) (xy -0.396054 1.372218) (xy -0.537965 1.27654)
(xy -0.597197 1.222428) (xy -0.710797 1.08348) (xy -0.789894 0.931639) (xy -0.835014 0.771333)
(xy -0.846684 0.606988) (xy -0.825431 0.443029) (xy -0.77178 0.283882) (xy -0.68626 0.133975)
(xy -0.569395 -0.002267) (xy -0.438807 -0.108887) (xy -0.384412 -0.149642) (xy -0.345986 -0.184718)
(xy -0.332154 -0.205726) (xy -0.339397 -0.228635) (xy -0.359995 -0.283365) (xy -0.392254 -0.365672)
(xy -0.434479 -0.471315) (xy -0.484977 -0.59605) (xy -0.542052 -0.735636) (xy -0.598146 -0.87167)
(xy -0.660033 -1.021201) (xy -0.717356 -1.159767) (xy -0.768356 -1.283107) (xy -0.811273 -1.386964)
(xy -0.844347 -1.46708) (xy -0.865819 -1.519195) (xy -0.873775 -1.538654) (xy -0.892571 -1.558423)
(xy -0.928926 -1.558365) (xy -0.987521 -1.537441) (xy -1.073032 -1.494613) (xy -1.073708 -1.494249)
(xy -1.138093 -1.461012) (xy -1.190139 -1.436802) (xy -1.219488 -1.426404) (xy -1.220783 -1.426308)
(xy -1.242876 -1.436855) (xy -1.291652 -1.466184) (xy -1.361669 -1.510827) (xy -1.447486 -1.567314)
(xy -1.542612 -1.631462) (xy -1.63946 -1.696411) (xy -1.726747 -1.752896) (xy -1.798819 -1.797421)
(xy -1.850023 -1.82649) (xy -1.874474 -1.836616) (xy -1.89699 -1.823307) (xy -1.942258 -1.786112)
(xy -2.005756 -1.729128) (xy -2.082961 -1.656449) (xy -2.169349 -1.572171) (xy -2.197601 -1.544016)
(xy -2.489713 -1.251416) (xy -2.267369 -0.925104) (xy -2.199798 -0.824897) (xy -2.140493 -0.734963)
(xy -2.092783 -0.66051) (xy -2.059993 -0.606751) (xy -2.045452 -0.578894) (xy -2.045026 -0.576912)
(xy -2.052692 -0.550655) (xy -2.073311 -0.497837) (xy -2.103315 -0.42731) (xy -2.124375 -0.380093)
(xy -2.163752 -0.289694) (xy -2.200835 -0.198366) (xy -2.229585 -0.1212) (xy -2.237395 -0.097692)
(xy -2.259583 -0.034916) (xy -2.281273 0.013589) (xy -2.293187 0.031921) (xy -2.319477 0.043141)
(xy -2.376858 0.059046) (xy -2.457882 0.077833) (xy -2.555105 0.097701) (xy -2.598615 0.105868)
(xy -2.709104 0.126171) (xy -2.815084 0.14583) (xy -2.906199 0.162912) (xy -2.972092 0.175482)
(xy -2.9845 0.177909) (xy -3.087077 0.198155) (xy -3.087077 0.625299) (xy -3.086847 0.765754)
(xy -3.085901 0.872021) (xy -3.083859 0.948987) (xy -3.080338 1.00154) (xy -3.074957 1.034567)
(xy -3.067334 1.052955) (xy -3.057088 1.061592) (xy -3.052885 1.063193) (xy -3.02753 1.068873)
(xy -2.971516 1.080205) (xy -2.892036 1.095821) (xy -2.796288 1.114353) (xy -2.691467 1.134431)
(xy -2.584768 1.154688) (xy -2.483387 1.173754) (xy -2.394521 1.190261) (xy -2.325363 1.202841)
(xy -2.283111 1.210125) (xy -2.27371 1.211384) (xy -2.265193 1.228237) (xy -2.24634 1.27313)
(xy -2.220676 1.33757) (xy -2.210877 1.362808) (xy -2.171352 1.460314) (xy -2.124808 1.568041)
(xy -2.083123 1.658828) (xy -2.05245 1.728247) (xy -2.032044 1.78529) (xy -2.025232 1.820223)
(xy -2.026318 1.824905) (xy -2.040715 1.847009) (xy -2.073588 1.896169) (xy -2.12141 1.967152)
(xy -2.180652 2.054722) (xy -2.247785 2.153643) (xy -2.261059 2.17317) (xy -2.338954 2.28886)
(xy -2.396213 2.376956) (xy -2.435119 2.441514) (xy -2.457956 2.486589) (xy -2.467006 2.516237)
(xy -2.464552 2.534515) (xy -2.464489 2.534631) (xy -2.445173 2.558639) (xy -2.402449 2.605053)
(xy -2.340949 2.669063) (xy -2.265302 2.745855) (xy -2.180139 2.830618) (xy -2.170535 2.840078)
(xy -2.06321 2.944011) (xy -1.980385 3.020325) (xy -1.920395 3.070429) (xy -1.881577 3.09573)
(xy -1.86448 3.098996) (xy -1.839527 3.08475) (xy -1.787745 3.051844) (xy -1.71448 3.003792)
(xy -1.62508 2.94411) (xy -1.524889 2.876312) (xy -1.501499 2.860361) (xy -1.169407 2.63358)
(xy -1.019435 2.701647) (xy -0.92823 2.741315) (xy -0.830331 2.781209) (xy -0.746169 2.813017)
(xy -0.742462 2.814326) (xy -0.676631 2.838424) (xy -0.625884 2.8588) (xy -0.601158 2.871064)
(xy -0.601116 2.871099) (xy -0.593271 2.893266) (xy -0.579934 2.947783) (xy -0.56243 3.02852)
(xy -0.542083 3.12935) (xy -0.520218 3.244144) (xy -0.518429 3.253822) (xy -0.496496 3.372096)
(xy -0.47636 3.479458) (xy -0.45932 3.569083) (xy -0.446672 3.634149) (xy -0.439716 3.667832)
(xy -0.439594 3.668346) (xy -0.435361 3.682675) (xy -0.427129 3.693493) (xy -0.409967 3.701294)
(xy -0.378942 3.706571) (xy -0.329122 3.709818) (xy -0.255576 3.711528) (xy -0.153371 3.712193)
(xy -0.017575 3.712307) (xy 0 3.712308) (xy 0.139878 3.712224)) (layer B.SilkS) (width 0.01))
)
(module Symbols:OSHW-Logo2_9.8x8mm_SilkScreen (layer F.Cu) (tedit 0) (tstamp 5B119FAF)
(at 117.18 121.263)
(descr "Open Source Hardware Symbol")
(tags "Logo Symbol OSHW")
(attr virtual)
(fp_text reference REF*** (at 0 0) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value OSHW-Logo2_7.3x6mm_SilkScreen (at 0.75 0) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_poly (pts (xy 0.139878 -3.712224) (xy 0.245612 -3.711645) (xy 0.322132 -3.710078) (xy 0.374372 -3.707028)
(xy 0.407263 -3.702004) (xy 0.425737 -3.694511) (xy 0.434727 -3.684056) (xy 0.439163 -3.670147)
(xy 0.439594 -3.668346) (xy 0.446333 -3.635855) (xy 0.458808 -3.571748) (xy 0.475719 -3.482849)
(xy 0.495771 -3.375981) (xy 0.517664 -3.257967) (xy 0.518429 -3.253822) (xy 0.540359 -3.138169)
(xy 0.560877 -3.035986) (xy 0.578659 -2.953402) (xy 0.592381 -2.896544) (xy 0.600718 -2.871542)
(xy 0.601116 -2.871099) (xy 0.625677 -2.85889) (xy 0.676315 -2.838544) (xy 0.742095 -2.814455)
(xy 0.742461 -2.814326) (xy 0.825317 -2.783182) (xy 0.923 -2.743509) (xy 1.015077 -2.703619)
(xy 1.019434 -2.701647) (xy 1.169407 -2.63358) (xy 1.501498 -2.860361) (xy 1.603374 -2.929496)
(xy 1.695657 -2.991303) (xy 1.773003 -3.042267) (xy 1.830064 -3.078873) (xy 1.861495 -3.097606)
(xy 1.864479 -3.098996) (xy 1.887321 -3.09281) (xy 1.929982 -3.062965) (xy 1.994128 -3.008053)
(xy 2.081421 -2.926666) (xy 2.170535 -2.840078) (xy 2.256441 -2.754753) (xy 2.333327 -2.676892)
(xy 2.396564 -2.611303) (xy 2.441523 -2.562795) (xy 2.463576 -2.536175) (xy 2.464396 -2.534805)
(xy 2.466834 -2.516537) (xy 2.45765 -2.486705) (xy 2.434574 -2.441279) (xy 2.395337 -2.37623)
(xy 2.33767 -2.28753) (xy 2.260795 -2.173343) (xy 2.19257 -2.072838) (xy 2.131582 -1.982697)
(xy 2.081356 -1.908151) (xy 2.045416 -1.854435) (xy 2.027287 -1.826782) (xy 2.026146 -1.824905)
(xy 2.028359 -1.79841) (xy 2.045138 -1.746914) (xy 2.073142 -1.680149) (xy 2.083122 -1.658828)
(xy 2.126672 -1.563841) (xy 2.173134 -1.456063) (xy 2.210877 -1.362808) (xy 2.238073 -1.293594)
(xy 2.259675 -1.240994) (xy 2.272158 -1.213503) (xy 2.273709 -1.211384) (xy 2.296668 -1.207876)
(xy 2.350786 -1.198262) (xy 2.428868 -1.183911) (xy 2.523719 -1.166193) (xy 2.628143 -1.146475)
(xy 2.734944 -1.126126) (xy 2.836926 -1.106514) (xy 2.926894 -1.089009) (xy 2.997653 -1.074978)
(xy 3.042006 -1.065791) (xy 3.052885 -1.063193) (xy 3.064122 -1.056782) (xy 3.072605 -1.042303)
(xy 3.078714 -1.014867) (xy 3.082832 -0.969589) (xy 3.085341 -0.90158) (xy 3.086621 -0.805953)
(xy 3.087054 -0.67782) (xy 3.087077 -0.625299) (xy 3.087077 -0.198155) (xy 2.9845 -0.177909)
(xy 2.927431 -0.16693) (xy 2.842269 -0.150905) (xy 2.739372 -0.131767) (xy 2.629096 -0.111449)
(xy 2.598615 -0.105868) (xy 2.496855 -0.086083) (xy 2.408205 -0.066627) (xy 2.340108 -0.049303)
(xy 2.300004 -0.035912) (xy 2.293323 -0.031921) (xy 2.276919 -0.003658) (xy 2.253399 0.051109)
(xy 2.227316 0.121588) (xy 2.222142 0.136769) (xy 2.187956 0.230896) (xy 2.145523 0.337101)
(xy 2.103997 0.432473) (xy 2.103792 0.432916) (xy 2.03464 0.582525) (xy 2.489512 1.251617)
(xy 2.1975 1.544116) (xy 2.10918 1.63117) (xy 2.028625 1.707909) (xy 1.96036 1.770237)
(xy 1.908908 1.814056) (xy 1.878794 1.83527) (xy 1.874474 1.836616) (xy 1.849111 1.826016)
(xy 1.797358 1.796547) (xy 1.724868 1.751705) (xy 1.637294 1.694984) (xy 1.542612 1.631462)
(xy 1.446516 1.566668) (xy 1.360837 1.510287) (xy 1.291016 1.465788) (xy 1.242494 1.436639)
(xy 1.220782 1.426308) (xy 1.194293 1.43505) (xy 1.144062 1.458087) (xy 1.080451 1.490631)
(xy 1.073708 1.494249) (xy 0.988046 1.53721) (xy 0.929306 1.558279) (xy 0.892772 1.558503)
(xy 0.873731 1.538928) (xy 0.87362 1.538654) (xy 0.864102 1.515472) (xy 0.841403 1.460441)
(xy 0.807282 1.377822) (xy 0.7635 1.271872) (xy 0.711816 1.146852) (xy 0.653992 1.00702)
(xy 0.597991 0.871637) (xy 0.536447 0.722234) (xy 0.479939 0.583832) (xy 0.430161 0.460673)
(xy 0.388806 0.357002) (xy 0.357568 0.277059) (xy 0.338141 0.225088) (xy 0.332154 0.205692)
(xy 0.347168 0.183443) (xy 0.386439 0.147982) (xy 0.438807 0.108887) (xy 0.587941 -0.014755)
(xy 0.704511 -0.156478) (xy 0.787118 -0.313296) (xy 0.834366 -0.482225) (xy 0.844857 -0.660278)
(xy 0.837231 -0.742461) (xy 0.795682 -0.912969) (xy 0.724123 -1.063541) (xy 0.626995 -1.192691)
(xy 0.508734 -1.298936) (xy 0.37378 -1.38079) (xy 0.226571 -1.436768) (xy 0.071544 -1.465385)
(xy -0.086861 -1.465156) (xy -0.244206 -1.434595) (xy -0.396054 -1.372218) (xy -0.537965 -1.27654)
(xy -0.597197 -1.222428) (xy -0.710797 -1.08348) (xy -0.789894 -0.931639) (xy -0.835014 -0.771333)
(xy -0.846684 -0.606988) (xy -0.825431 -0.443029) (xy -0.77178 -0.283882) (xy -0.68626 -0.133975)
(xy -0.569395 0.002267) (xy -0.438807 0.108887) (xy -0.384412 0.149642) (xy -0.345986 0.184718)
(xy -0.332154 0.205726) (xy -0.339397 0.228635) (xy -0.359995 0.283365) (xy -0.392254 0.365672)
(xy -0.434479 0.471315) (xy -0.484977 0.59605) (xy -0.542052 0.735636) (xy -0.598146 0.87167)
(xy -0.660033 1.021201) (xy -0.717356 1.159767) (xy -0.768356 1.283107) (xy -0.811273 1.386964)
(xy -0.844347 1.46708) (xy -0.865819 1.519195) (xy -0.873775 1.538654) (xy -0.892571 1.558423)
(xy -0.928926 1.558365) (xy -0.987521 1.537441) (xy -1.073032 1.494613) (xy -1.073708 1.494249)
(xy -1.138093 1.461012) (xy -1.190139 1.436802) (xy -1.219488 1.426404) (xy -1.220783 1.426308)
(xy -1.242876 1.436855) (xy -1.291652 1.466184) (xy -1.361669 1.510827) (xy -1.447486 1.567314)
(xy -1.542612 1.631462) (xy -1.63946 1.696411) (xy -1.726747 1.752896) (xy -1.798819 1.797421)
(xy -1.850023 1.82649) (xy -1.874474 1.836616) (xy -1.89699 1.823307) (xy -1.942258 1.786112)
(xy -2.005756 1.729128) (xy -2.082961 1.656449) (xy -2.169349 1.572171) (xy -2.197601 1.544016)
(xy -2.489713 1.251416) (xy -2.267369 0.925104) (xy -2.199798 0.824897) (xy -2.140493 0.734963)
(xy -2.092783 0.66051) (xy -2.059993 0.606751) (xy -2.045452 0.578894) (xy -2.045026 0.576912)
(xy -2.052692 0.550655) (xy -2.073311 0.497837) (xy -2.103315 0.42731) (xy -2.124375 0.380093)
(xy -2.163752 0.289694) (xy -2.200835 0.198366) (xy -2.229585 0.1212) (xy -2.237395 0.097692)
(xy -2.259583 0.034916) (xy -2.281273 -0.013589) (xy -2.293187 -0.031921) (xy -2.319477 -0.043141)
(xy -2.376858 -0.059046) (xy -2.457882 -0.077833) (xy -2.555105 -0.097701) (xy -2.598615 -0.105868)
(xy -2.709104 -0.126171) (xy -2.815084 -0.14583) (xy -2.906199 -0.162912) (xy -2.972092 -0.175482)
(xy -2.9845 -0.177909) (xy -3.087077 -0.198155) (xy -3.087077 -0.625299) (xy -3.086847 -0.765754)
(xy -3.085901 -0.872021) (xy -3.083859 -0.948987) (xy -3.080338 -1.00154) (xy -3.074957 -1.034567)
(xy -3.067334 -1.052955) (xy -3.057088 -1.061592) (xy -3.052885 -1.063193) (xy -3.02753 -1.068873)
(xy -2.971516 -1.080205) (xy -2.892036 -1.095821) (xy -2.796288 -1.114353) (xy -2.691467 -1.134431)
(xy -2.584768 -1.154688) (xy -2.483387 -1.173754) (xy -2.394521 -1.190261) (xy -2.325363 -1.202841)
(xy -2.283111 -1.210125) (xy -2.27371 -1.211384) (xy -2.265193 -1.228237) (xy -2.24634 -1.27313)
(xy -2.220676 -1.33757) (xy -2.210877 -1.362808) (xy -2.171352 -1.460314) (xy -2.124808 -1.568041)
(xy -2.083123 -1.658828) (xy -2.05245 -1.728247) (xy -2.032044 -1.78529) (xy -2.025232 -1.820223)
(xy -2.026318 -1.824905) (xy -2.040715 -1.847009) (xy -2.073588 -1.896169) (xy -2.12141 -1.967152)
(xy -2.180652 -2.054722) (xy -2.247785 -2.153643) (xy -2.261059 -2.17317) (xy -2.338954 -2.28886)
(xy -2.396213 -2.376956) (xy -2.435119 -2.441514) (xy -2.457956 -2.486589) (xy -2.467006 -2.516237)
(xy -2.464552 -2.534515) (xy -2.464489 -2.534631) (xy -2.445173 -2.558639) (xy -2.402449 -2.605053)
(xy -2.340949 -2.669063) (xy -2.265302 -2.745855) (xy -2.180139 -2.830618) (xy -2.170535 -2.840078)
(xy -2.06321 -2.944011) (xy -1.980385 -3.020325) (xy -1.920395 -3.070429) (xy -1.881577 -3.09573)
(xy -1.86448 -3.098996) (xy -1.839527 -3.08475) (xy -1.787745 -3.051844) (xy -1.71448 -3.003792)
(xy -1.62508 -2.94411) (xy -1.524889 -2.876312) (xy -1.501499 -2.860361) (xy -1.169407 -2.63358)
(xy -1.019435 -2.701647) (xy -0.92823 -2.741315) (xy -0.830331 -2.781209) (xy -0.746169 -2.813017)
(xy -0.742462 -2.814326) (xy -0.676631 -2.838424) (xy -0.625884 -2.8588) (xy -0.601158 -2.871064)
(xy -0.601116 -2.871099) (xy -0.593271 -2.893266) (xy -0.579934 -2.947783) (xy -0.56243 -3.02852)
(xy -0.542083 -3.12935) (xy -0.520218 -3.244144) (xy -0.518429 -3.253822) (xy -0.496496 -3.372096)
(xy -0.47636 -3.479458) (xy -0.45932 -3.569083) (xy -0.446672 -3.634149) (xy -0.439716 -3.667832)
(xy -0.439594 -3.668346) (xy -0.435361 -3.682675) (xy -0.427129 -3.693493) (xy -0.409967 -3.701294)
(xy -0.378942 -3.706571) (xy -0.329122 -3.709818) (xy -0.255576 -3.711528) (xy -0.153371 -3.712193)
(xy -0.017575 -3.712307) (xy 0 -3.712308) (xy 0.139878 -3.712224)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 4.245224 2.647838) (xy 4.322528 2.698361) (xy 4.359814 2.74359) (xy 4.389353 2.825663)
(xy 4.391699 2.890607) (xy 4.386385 2.977445) (xy 4.186115 3.065103) (xy 4.088739 3.109887)
(xy 4.025113 3.145913) (xy 3.992029 3.177117) (xy 3.98628 3.207436) (xy 4.004658 3.240805)
(xy 4.024923 3.262923) (xy 4.083889 3.298393) (xy 4.148024 3.300879) (xy 4.206926 3.273235)
(xy 4.250197 3.21832) (xy 4.257936 3.198928) (xy 4.295006 3.138364) (xy 4.337654 3.112552)
(xy 4.396154 3.090471) (xy 4.396154 3.174184) (xy 4.390982 3.23115) (xy 4.370723 3.279189)
(xy 4.328262 3.334346) (xy 4.321951 3.341514) (xy 4.27472 3.390585) (xy 4.234121 3.41692)
(xy 4.183328 3.429035) (xy 4.14122 3.433003) (xy 4.065902 3.433991) (xy 4.012286 3.421466)
(xy 3.978838 3.402869) (xy 3.926268 3.361975) (xy 3.889879 3.317748) (xy 3.86685 3.262126)
(xy 3.854359 3.187047) (xy 3.849587 3.084449) (xy 3.849206 3.032376) (xy 3.850501 2.969948)
(xy 3.968471 2.969948) (xy 3.969839 3.003438) (xy 3.973249 3.008923) (xy 3.995753 3.001472)
(xy 4.044182 2.981753) (xy 4.108908 2.953718) (xy 4.122443 2.947692) (xy 4.204244 2.906096)
(xy 4.249312 2.869538) (xy 4.259217 2.835296) (xy 4.235526 2.800648) (xy 4.21596 2.785339)
(xy 4.14536 2.754721) (xy 4.07928 2.75978) (xy 4.023959 2.797151) (xy 3.985636 2.863473)
(xy 3.973349 2.916116) (xy 3.968471 2.969948) (xy 3.850501 2.969948) (xy 3.85173 2.91072)
(xy 3.861032 2.82071) (xy 3.87946 2.755167) (xy 3.90936 2.706912) (xy 3.95308 2.668767)
(xy 3.972141 2.65644) (xy 4.058726 2.624336) (xy 4.153522 2.622316) (xy 4.245224 2.647838)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 3.570807 2.636782) (xy 3.594161 2.646988) (xy 3.649902 2.691134) (xy 3.697569 2.754967)
(xy 3.727048 2.823087) (xy 3.731846 2.85667) (xy 3.71576 2.903556) (xy 3.680475 2.928365)
(xy 3.642644 2.943387) (xy 3.625321 2.946155) (xy 3.616886 2.926066) (xy 3.60023 2.882351)
(xy 3.592923 2.862598) (xy 3.551948 2.794271) (xy 3.492622 2.760191) (xy 3.416552 2.761239)
(xy 3.410918 2.762581) (xy 3.370305 2.781836) (xy 3.340448 2.819375) (xy 3.320055 2.879809)
(xy 3.307836 2.967751) (xy 3.3025 3.087813) (xy 3.302 3.151698) (xy 3.301752 3.252403)
(xy 3.300126 3.321054) (xy 3.295801 3.364673) (xy 3.287454 3.390282) (xy 3.273765 3.404903)
(xy 3.253411 3.415558) (xy 3.252234 3.416095) (xy 3.213038 3.432667) (xy 3.193619 3.438769)
(xy 3.190635 3.420319) (xy 3.188081 3.369323) (xy 3.18614 3.292308) (xy 3.184997 3.195805)
(xy 3.184769 3.125184) (xy 3.185932 2.988525) (xy 3.190479 2.884851) (xy 3.199999 2.808108)
(xy 3.216081 2.752246) (xy 3.240313 2.711212) (xy 3.274286 2.678954) (xy 3.307833 2.65644)
(xy 3.388499 2.626476) (xy 3.482381 2.619718) (xy 3.570807 2.636782)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 2.887333 2.633528) (xy 2.94359 2.659117) (xy 2.987747 2.690124) (xy 3.020101 2.724795)
(xy 3.042438 2.76952) (xy 3.056546 2.830692) (xy 3.064211 2.914701) (xy 3.06722 3.02794)
(xy 3.067538 3.102509) (xy 3.067538 3.39342) (xy 3.017773 3.416095) (xy 2.978576 3.432667)
(xy 2.959157 3.438769) (xy 2.955442 3.42061) (xy 2.952495 3.371648) (xy 2.950691 3.300153)
(xy 2.950308 3.243385) (xy 2.948661 3.161371) (xy 2.944222 3.096309) (xy 2.93774 3.056467)
(xy 2.93259 3.048) (xy 2.897977 3.056646) (xy 2.84364 3.078823) (xy 2.780722 3.108886)
(xy 2.720368 3.141192) (xy 2.673721 3.170098) (xy 2.651926 3.189961) (xy 2.651839 3.190175)
(xy 2.653714 3.226935) (xy 2.670525 3.262026) (xy 2.700039 3.290528) (xy 2.743116 3.300061)
(xy 2.779932 3.29895) (xy 2.832074 3.298133) (xy 2.859444 3.310349) (xy 2.875882 3.342624)
(xy 2.877955 3.34871) (xy 2.885081 3.394739) (xy 2.866024 3.422687) (xy 2.816353 3.436007)
(xy 2.762697 3.43847) (xy 2.666142 3.42021) (xy 2.616159 3.394131) (xy 2.554429 3.332868)
(xy 2.52169 3.25767) (xy 2.518753 3.178211) (xy 2.546424 3.104167) (xy 2.588047 3.057769)
(xy 2.629604 3.031793) (xy 2.694922 2.998907) (xy 2.771038 2.965557) (xy 2.783726 2.960461)
(xy 2.867333 2.923565) (xy 2.91553 2.891046) (xy 2.93103 2.858718) (xy 2.91655 2.822394)
(xy 2.891692 2.794) (xy 2.832939 2.759039) (xy 2.768293 2.756417) (xy 2.709008 2.783358)
(xy 2.666339 2.837088) (xy 2.660739 2.85095) (xy 2.628133 2.901936) (xy 2.58053 2.939787)
(xy 2.520461 2.97085) (xy 2.520461 2.882768) (xy 2.523997 2.828951) (xy 2.539156 2.786534)
(xy 2.572768 2.741279) (xy 2.605035 2.70642) (xy 2.655209 2.657062) (xy 2.694193 2.630547)
(xy 2.736064 2.619911) (xy 2.78346 2.618154) (xy 2.887333 2.633528)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 2.395929 2.636662) (xy 2.398911 2.688068) (xy 2.401247 2.766192) (xy 2.402749 2.864857)
(xy 2.403231 2.968343) (xy 2.403231 3.318533) (xy 2.341401 3.380363) (xy 2.298793 3.418462)
(xy 2.26139 3.433895) (xy 2.21027 3.432918) (xy 2.189978 3.430433) (xy 2.126554 3.4232)
(xy 2.074095 3.419055) (xy 2.061308 3.418672) (xy 2.018199 3.421176) (xy 1.956544 3.427462)
(xy 1.932638 3.430433) (xy 1.873922 3.435028) (xy 1.834464 3.425046) (xy 1.795338 3.394228)
(xy 1.781215 3.380363) (xy 1.719385 3.318533) (xy 1.719385 2.663503) (xy 1.76915 2.640829)
(xy 1.812002 2.624034) (xy 1.837073 2.618154) (xy 1.843501 2.636736) (xy 1.849509 2.688655)
(xy 1.854697 2.768172) (xy 1.858664 2.869546) (xy 1.860577 2.955192) (xy 1.865923 3.292231)
(xy 1.91256 3.298825) (xy 1.954976 3.294214) (xy 1.97576 3.279287) (xy 1.98157 3.251377)
(xy 1.98653 3.191925) (xy 1.990246 3.108466) (xy 1.992324 3.008532) (xy 1.992624 2.957104)
(xy 1.992923 2.661054) (xy 2.054454 2.639604) (xy 2.098004 2.62502) (xy 2.121694 2.618219)
(xy 2.122377 2.618154) (xy 2.124754 2.636642) (xy 2.127366 2.687906) (xy 2.129995 2.765649)
(xy 2.132421 2.863574) (xy 2.134115 2.955192) (xy 2.139461 3.292231) (xy 2.256692 3.292231)
(xy 2.262072 2.984746) (xy 2.267451 2.677261) (xy 2.324601 2.647707) (xy 2.366797 2.627413)
(xy 2.39177 2.618204) (xy 2.392491 2.618154) (xy 2.395929 2.636662)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 1.602081 2.780289) (xy 1.601833 2.92632) (xy 1.600872 3.038655) (xy 1.598794 3.122678)
(xy 1.595193 3.183769) (xy 1.589665 3.227309) (xy 1.581804 3.258679) (xy 1.571207 3.283262)
(xy 1.563182 3.297294) (xy 1.496728 3.373388) (xy 1.41247 3.421084) (xy 1.319249 3.438199)
(xy 1.2259 3.422546) (xy 1.170312 3.394418) (xy 1.111957 3.34576) (xy 1.072186 3.286333)
(xy 1.04819 3.208507) (xy 1.037161 3.104652) (xy 1.035599 3.028462) (xy 1.035809 3.022986)
(xy 1.172308 3.022986) (xy 1.173141 3.110355) (xy 1.176961 3.168192) (xy 1.185746 3.206029)
(xy 1.201474 3.233398) (xy 1.220266 3.254042) (xy 1.283375 3.29389) (xy 1.351137 3.297295)
(xy 1.415179 3.264025) (xy 1.420164 3.259517) (xy 1.441439 3.236067) (xy 1.454779 3.208166)
(xy 1.462001 3.166641) (xy 1.464923 3.102316) (xy 1.465385 3.0312) (xy 1.464383 2.941858)
(xy 1.460238 2.882258) (xy 1.451236 2.843089) (xy 1.435667 2.81504) (xy 1.422902 2.800144)
(xy 1.3636 2.762575) (xy 1.295301 2.758057) (xy 1.23011 2.786753) (xy 1.217528 2.797406)
(xy 1.196111 2.821063) (xy 1.182744 2.849251) (xy 1.175566 2.891245) (xy 1.172719 2.956319)
(xy 1.172308 3.022986) (xy 1.035809 3.022986) (xy 1.040322 2.905765) (xy 1.056362 2.813577)
(xy 1.086528 2.744269) (xy 1.133629 2.690211) (xy 1.170312 2.662505) (xy 1.23699 2.632572)
(xy 1.314272 2.618678) (xy 1.38611 2.622397) (xy 1.426308 2.6374) (xy 1.442082 2.64167)
(xy 1.45255 2.62575) (xy 1.459856 2.583089) (xy 1.465385 2.518106) (xy 1.471437 2.445732)
(xy 1.479844 2.402187) (xy 1.495141 2.377287) (xy 1.521864 2.360845) (xy 1.538654 2.353564)
(xy 1.602154 2.326963) (xy 1.602081 2.780289)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 0.713362 2.62467) (xy 0.802117 2.657421) (xy 0.874022 2.71535) (xy 0.902144 2.756128)
(xy 0.932802 2.830954) (xy 0.932165 2.885058) (xy 0.899987 2.921446) (xy 0.888081 2.927633)
(xy 0.836675 2.946925) (xy 0.810422 2.941982) (xy 0.80153 2.909587) (xy 0.801077 2.891692)
(xy 0.784797 2.825859) (xy 0.742365 2.779807) (xy 0.683388 2.757564) (xy 0.617475 2.763161)
(xy 0.563895 2.792229) (xy 0.545798 2.80881) (xy 0.532971 2.828925) (xy 0.524306 2.859332)
(xy 0.518696 2.906788) (xy 0.515035 2.97805) (xy 0.512215 3.079875) (xy 0.511484 3.112115)
(xy 0.50882 3.22241) (xy 0.505792 3.300036) (xy 0.50125 3.351396) (xy 0.494046 3.38289)
(xy 0.483033 3.40092) (xy 0.46706 3.411888) (xy 0.456834 3.416733) (xy 0.413406 3.433301)
(xy 0.387842 3.438769) (xy 0.379395 3.420507) (xy 0.374239 3.365296) (xy 0.372346 3.272499)
(xy 0.373689 3.141478) (xy 0.374107 3.121269) (xy 0.377058 3.001733) (xy 0.380548 2.914449)
(xy 0.385514 2.852591) (xy 0.392893 2.809336) (xy 0.403624 2.77786) (xy 0.418645 2.751339)
(xy 0.426502 2.739975) (xy 0.471553 2.689692) (xy 0.52194 2.650581) (xy 0.528108 2.647167)
(xy 0.618458 2.620212) (xy 0.713362 2.62467)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 0.053501 2.626303) (xy 0.13006 2.654733) (xy 0.130936 2.655279) (xy 0.178285 2.690127)
(xy 0.213241 2.730852) (xy 0.237825 2.783925) (xy 0.254062 2.855814) (xy 0.263975 2.952992)
(xy 0.269586 3.081928) (xy 0.270077 3.100298) (xy 0.277141 3.377287) (xy 0.217695 3.408028)
(xy 0.174681 3.428802) (xy 0.14871 3.438646) (xy 0.147509 3.438769) (xy 0.143014 3.420606)
(xy 0.139444 3.371612) (xy 0.137248 3.300031) (xy 0.136769 3.242068) (xy 0.136758 3.14817)
(xy 0.132466 3.089203) (xy 0.117503 3.061079) (xy 0.085482 3.059706) (xy 0.030014 3.080998)
(xy -0.053731 3.120136) (xy -0.115311 3.152643) (xy -0.146983 3.180845) (xy -0.156294 3.211582)
(xy -0.156308 3.213104) (xy -0.140943 3.266054) (xy -0.095453 3.29466) (xy -0.025834 3.298803)
(xy 0.024313 3.298084) (xy 0.050754 3.312527) (xy 0.067243 3.347218) (xy 0.076733 3.391416)
(xy 0.063057 3.416493) (xy 0.057907 3.420082) (xy 0.009425 3.434496) (xy -0.058469 3.436537)
(xy -0.128388 3.426983) (xy -0.177932 3.409522) (xy -0.24643 3.351364) (xy -0.285366 3.270408)
(xy -0.293077 3.20716) (xy -0.287193 3.150111) (xy -0.265899 3.103542) (xy -0.223735 3.062181)
(xy -0.155241 3.020755) (xy -0.054956 2.973993) (xy -0.048846 2.97135) (xy 0.04149 2.929617)
(xy 0.097235 2.895391) (xy 0.121129 2.864635) (xy 0.115913 2.833311) (xy 0.084328 2.797383)
(xy 0.074883 2.789116) (xy 0.011617 2.757058) (xy -0.053936 2.758407) (xy -0.111028 2.789838)
(xy -0.148907 2.848024) (xy -0.152426 2.859446) (xy -0.1867 2.914837) (xy -0.230191 2.941518)
(xy -0.293077 2.96796) (xy -0.293077 2.899548) (xy -0.273948 2.80011) (xy -0.217169 2.708902)
(xy -0.187622 2.678389) (xy -0.120458 2.639228) (xy -0.035044 2.6215) (xy 0.053501 2.626303)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -0.840154 2.49212) (xy -0.834428 2.57198) (xy -0.827851 2.619039) (xy -0.818738 2.639566)
(xy -0.805402 2.639829) (xy -0.801077 2.637378) (xy -0.743556 2.619636) (xy -0.668732 2.620672)
(xy -0.592661 2.63891) (xy -0.545082 2.662505) (xy -0.496298 2.700198) (xy -0.460636 2.742855)
(xy -0.436155 2.797057) (xy -0.420913 2.869384) (xy -0.41297 2.966419) (xy -0.410384 3.094742)
(xy -0.410338 3.119358) (xy -0.410308 3.39587) (xy -0.471839 3.41732) (xy -0.515541 3.431912)
(xy -0.539518 3.438706) (xy -0.540223 3.438769) (xy -0.542585 3.420345) (xy -0.544594 3.369526)
(xy -0.546099 3.292993) (xy -0.546947 3.19743) (xy -0.547077 3.139329) (xy -0.547349 3.024771)
(xy -0.548748 2.942667) (xy -0.552151 2.886393) (xy -0.558433 2.849326) (xy -0.568471 2.824844)
(xy -0.583139 2.806325) (xy -0.592298 2.797406) (xy -0.655211 2.761466) (xy -0.723864 2.758775)
(xy -0.786152 2.78917) (xy -0.797671 2.800144) (xy -0.814567 2.820779) (xy -0.826286 2.845256)
(xy -0.833767 2.880647) (xy -0.837946 2.934026) (xy -0.839763 3.012466) (xy -0.840154 3.120617)
(xy -0.840154 3.39587) (xy -0.901685 3.41732) (xy -0.945387 3.431912) (xy -0.969364 3.438706)
(xy -0.97007 3.438769) (xy -0.971874 3.420069) (xy -0.9735 3.367322) (xy -0.974883 3.285557)
(xy -0.975958 3.179805) (xy -0.97666 3.055094) (xy -0.976923 2.916455) (xy -0.976923 2.381806)
(xy -0.849923 2.328236) (xy -0.840154 2.49212)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -2.465746 2.599745) (xy -2.388714 2.651567) (xy -2.329184 2.726412) (xy -2.293622 2.821654)
(xy -2.286429 2.891756) (xy -2.287246 2.921009) (xy -2.294086 2.943407) (xy -2.312888 2.963474)
(xy -2.349592 2.985733) (xy -2.410138 3.014709) (xy -2.500466 3.054927) (xy -2.500923 3.055129)
(xy -2.584067 3.09321) (xy -2.652247 3.127025) (xy -2.698495 3.152933) (xy -2.715842 3.167295)
(xy -2.715846 3.167411) (xy -2.700557 3.198685) (xy -2.664804 3.233157) (xy -2.623758 3.25799)
(xy -2.602963 3.262923) (xy -2.54623 3.245862) (xy -2.497373 3.203133) (xy -2.473535 3.156155)
(xy -2.450603 3.121522) (xy -2.405682 3.082081) (xy -2.352877 3.048009) (xy -2.30629 3.02948)
(xy -2.296548 3.028462) (xy -2.285582 3.045215) (xy -2.284921 3.088039) (xy -2.29298 3.145781)
(xy -2.308173 3.207289) (xy -2.328914 3.261409) (xy -2.329962 3.26351) (xy -2.392379 3.35066)
(xy -2.473274 3.409939) (xy -2.565144 3.439034) (xy -2.660487 3.435634) (xy -2.751802 3.397428)
(xy -2.755862 3.394741) (xy -2.827694 3.329642) (xy -2.874927 3.244705) (xy -2.901066 3.133021)
(xy -2.904574 3.101643) (xy -2.910787 2.953536) (xy -2.903339 2.884468) (xy -2.715846 2.884468)
(xy -2.71341 2.927552) (xy -2.700086 2.940126) (xy -2.666868 2.930719) (xy -2.614506 2.908483)
(xy -2.555976 2.88061) (xy -2.554521 2.879872) (xy -2.504911 2.853777) (xy -2.485 2.836363)
(xy -2.48991 2.818107) (xy -2.510584 2.79412) (xy -2.563181 2.759406) (xy -2.619823 2.756856)
(xy -2.670631 2.782119) (xy -2.705724 2.830847) (xy -2.715846 2.884468) (xy -2.903339 2.884468)
(xy -2.898008 2.835036) (xy -2.865222 2.741055) (xy -2.819579 2.675215) (xy -2.737198 2.608681)
(xy -2.646454 2.575676) (xy -2.553815 2.573573) (xy -2.465746 2.599745)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -3.983114 2.587256) (xy -3.891536 2.635409) (xy -3.823951 2.712905) (xy -3.799943 2.762727)
(xy -3.781262 2.837533) (xy -3.771699 2.932052) (xy -3.770792 3.03521) (xy -3.778079 3.135935)
(xy -3.793097 3.223153) (xy -3.815385 3.285791) (xy -3.822235 3.296579) (xy -3.903368 3.377105)
(xy -3.999734 3.425336) (xy -4.104299 3.43945) (xy -4.210032 3.417629) (xy -4.239457 3.404547)
(xy -4.296759 3.364231) (xy -4.34705 3.310775) (xy -4.351803 3.303995) (xy -4.371122 3.271321)
(xy -4.383892 3.236394) (xy -4.391436 3.190414) (xy -4.395076 3.124584) (xy -4.396135 3.030105)
(xy -4.396154 3.008923) (xy -4.396106 3.002182) (xy -4.200769 3.002182) (xy -4.199632 3.091349)
(xy -4.195159 3.15052) (xy -4.185754 3.188741) (xy -4.169824 3.215053) (xy -4.161692 3.223846)
(xy -4.114942 3.257261) (xy -4.069553 3.255737) (xy -4.02366 3.226752) (xy -3.996288 3.195809)
(xy -3.980077 3.150643) (xy -3.970974 3.07942) (xy -3.970349 3.071114) (xy -3.968796 2.942037)
(xy -3.985035 2.846172) (xy -4.018848 2.784107) (xy -4.070016 2.756432) (xy -4.08828 2.754923)
(xy -4.13624 2.762513) (xy -4.169047 2.788808) (xy -4.189105 2.839095) (xy -4.198822 2.918664)
(xy -4.200769 3.002182) (xy -4.396106 3.002182) (xy -4.395426 2.908249) (xy -4.392371 2.837906)
(xy -4.385678 2.789163) (xy -4.37404 2.753288) (xy -4.356147 2.721548) (xy -4.352192 2.715648)
(xy -4.285733 2.636104) (xy -4.213315 2.589929) (xy -4.125151 2.571599) (xy -4.095213 2.570703)
(xy -3.983114 2.587256)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -1.728336 2.595089) (xy -1.665633 2.631358) (xy -1.622039 2.667358) (xy -1.590155 2.705075)
(xy -1.56819 2.751199) (xy -1.554351 2.812421) (xy -1.546847 2.895431) (xy -1.543883 3.006919)
(xy -1.543539 3.087062) (xy -1.543539 3.382065) (xy -1.709615 3.456515) (xy -1.719385 3.133402)
(xy -1.723421 3.012729) (xy -1.727656 2.925141) (xy -1.732903 2.86465) (xy -1.739975 2.825268)
(xy -1.749689 2.801007) (xy -1.762856 2.78588) (xy -1.767081 2.782606) (xy -1.831091 2.757034)
(xy -1.895792 2.767153) (xy -1.934308 2.794) (xy -1.949975 2.813024) (xy -1.96082 2.837988)
(xy -1.967712 2.875834) (xy -1.971521 2.933502) (xy -1.973117 3.017935) (xy -1.973385 3.105928)
(xy -1.973437 3.216323) (xy -1.975328 3.294463) (xy -1.981655 3.347165) (xy -1.995017 3.381242)
(xy -2.018015 3.403511) (xy -2.053246 3.420787) (xy -2.100303 3.438738) (xy -2.151697 3.458278)
(xy -2.145579 3.111485) (xy -2.143116 2.986468) (xy -2.140233 2.894082) (xy -2.136102 2.827881)
(xy -2.129893 2.78142) (xy -2.120774 2.748256) (xy -2.107917 2.721944) (xy -2.092416 2.698729)
(xy -2.017629 2.624569) (xy -1.926372 2.581684) (xy -1.827117 2.571412) (xy -1.728336 2.595089)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -3.231114 2.584505) (xy -3.156461 2.621727) (xy -3.090569 2.690261) (xy -3.072423 2.715648)
(xy -3.052655 2.748866) (xy -3.039828 2.784945) (xy -3.03249 2.833098) (xy -3.029187 2.902536)
(xy -3.028462 2.994206) (xy -3.031737 3.11983) (xy -3.043123 3.214154) (xy -3.064959 3.284523)
(xy -3.099581 3.338286) (xy -3.14933 3.382788) (xy -3.152986 3.385423) (xy -3.202015 3.412377)
(xy -3.261055 3.425712) (xy -3.336141 3.429) (xy -3.458205 3.429) (xy -3.458256 3.547497)
(xy -3.459392 3.613492) (xy -3.466314 3.652202) (xy -3.484402 3.675419) (xy -3.519038 3.694933)
(xy -3.527355 3.69892) (xy -3.56628 3.717603) (xy -3.596417 3.729403) (xy -3.618826 3.730422)
(xy -3.634567 3.716761) (xy -3.644698 3.684522) (xy -3.650277 3.629804) (xy -3.652365 3.548711)
(xy -3.652019 3.437344) (xy -3.6503 3.291802) (xy -3.649763 3.248269) (xy -3.647828 3.098205)
(xy -3.646096 3.000042) (xy -3.458308 3.000042) (xy -3.457252 3.083364) (xy -3.452562 3.13788)
(xy -3.441949 3.173837) (xy -3.423128 3.201482) (xy -3.41035 3.214965) (xy -3.35811 3.254417)
(xy -3.311858 3.257628) (xy -3.264133 3.225049) (xy -3.262923 3.223846) (xy -3.243506 3.198668)
(xy -3.231693 3.164447) (xy -3.225735 3.111748) (xy -3.22388 3.031131) (xy -3.223846 3.013271)
(xy -3.22833 2.902175) (xy -3.242926 2.825161) (xy -3.26935 2.778147) (xy -3.309317 2.75705)
(xy -3.332416 2.754923) (xy -3.387238 2.7649) (xy -3.424842 2.797752) (xy -3.447477 2.857857)
(xy -3.457394 2.949598) (xy -3.458308 3.000042) (xy -3.646096 3.000042) (xy -3.645778 2.98206)
(xy -3.643127 2.894679) (xy -3.639394 2.830905) (xy -3.634093 2.785582) (xy -3.626742 2.753555)
(xy -3.616857 2.729668) (xy -3.603954 2.708764) (xy -3.598421 2.700898) (xy -3.525031 2.626595)
(xy -3.43224 2.584467) (xy -3.324904 2.572722) (xy -3.231114 2.584505)) (layer F.SilkS) (width 0.01))
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer B.Cu) (tedit 5874F706) (tstamp 5D41BF7A)
(at 151.47 111.23)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5D428EEE)
(fp_text reference R8 (at 5.08 -2.54) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 10k (at 5.08 -2.31) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 11.25 1.6) (end -1.05 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end 11.25 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end 11.25 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end -1.05 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 9.18 0) (end 8.29 0) (layer B.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer B.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 1.87 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 8.29 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 1.87 -1.31) (end 8.29 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 1.87 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 10.16 0) (end 8.23 0) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer B.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 1.93 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 8.23 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 1.93 -1.25) (end 8.23 -1.25) (layer B.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 1.93 -1.25) (layer B.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(C6-Pad2)"))
(pad 2 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C10-Pad1)"))
(model ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_10K_P10.16mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer B.Cu) (tedit 5874F706) (tstamp 5D41BB0F)
(at 161.63 115.04 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5B76C793)
(fp_text reference R9 (at 5.08 -2.54) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 2k2 (at 5.08 -2.31) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 11.25 1.6) (end -1.05 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end 11.25 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end 11.25 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end -1.05 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 9.18 0) (end 8.29 0) (layer B.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer B.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 1.87 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 8.29 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 1.87 -1.31) (end 8.29 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 1.87 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 10.16 0) (end 8.23 0) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer B.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 1.93 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 8.23 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 1.93 -1.25) (end 8.23 -1.25) (layer B.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 1.93 -1.25) (layer B.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 /Output))
(pad 2 thru_hole oval (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 GND))
(model ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_2K2_P10.16mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm (layer B.Cu) (tedit 597BC7C2) (tstamp 5D41D7A7)
(at 167.98 112.5 270)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path /5D42EFF7)
(fp_text reference C9 (at 1.157245 -1.843748 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 6n8 (at 1.25 -2.11 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 3.55 1.15) (end -1.05 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.55 -1.15) (end 3.55 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.15) (end 3.55 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.15) (end -1.05 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.663 -0.861) (end 1.837 -0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 0.663 0.861) (end 1.837 0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 2.75 0.8) (end -0.25 0.8) (layer B.Fab) (width 0.1))
(fp_line (start 2.75 -0.8) (end 2.75 0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 -0.8) (end 2.75 -0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 0.8) (end -0.25 -0.8) (layer B.Fab) (width 0.1))
(fp_text user VARIANT=DNP (at 1.25 0 270) (layer Eco1.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 3D= (at 0 0 270) (layer Eco1.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C10-Pad1)"))
(pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 GND))
(model ${KIPRJMOD}/3D/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical (layer B.Cu) (tedit 5874F706) (tstamp 5AFEEBB3)
(at 116.545 113.77 90)
(descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.16666666666666666W = 1/6W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.16666666666666666W = 1/6W length 3.6mm diameter 1.6mm")
(path /4FA694AE)
(fp_text reference R3 (at 1.27 1.86 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 40M (at 1.27 -1.86 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 3.55 1.15) (end -1.15 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.55 -1.15) (end 3.55 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.15 -1.15) (end 3.55 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.15 1.15) (end -1.15 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.86 0) (end 1.54 0) (layer B.SilkS) (width 0.12))
(fp_line (start 0 0) (end 2.54 0) (layer B.Fab) (width 0.1))
(fp_circle (center 0 0) (end 0.86 0) (layer B.SilkS) (width 0.12))
(fp_circle (center 0 0) (end 0.8 0) (layer B.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 3 "Net-(C2-Pad2)"))
(pad 2 thru_hole oval (at 2.54 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)"))
(model ${KIPRJMOD}/3D/R_0805_2012Metric_THTorigin.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Housings_DIP:DIP-8_W7.62mm_LongPads locked (layer B.Cu) (tedit 59C78D6B) (tstamp 5AFD7F22)
(at 120.355 113.77)
(descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads")
(path /4FA69492)
(fp_text reference U1 (at 3.81 2.33) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value TLE2072 (at 3.81 -9.95) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 9.1 1.55) (end -1.45 1.55) (layer B.CrtYd) (width 0.05))
(fp_line (start 9.1 -9.15) (end 9.1 1.55) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.45 -9.15) (end 9.1 -9.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.45 1.55) (end -1.45 -9.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 6.06 1.33) (end 4.81 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start 6.06 -8.95) (end 6.06 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start 1.56 -8.95) (end 6.06 -8.95) (layer B.SilkS) (width 0.12))
(fp_line (start 1.56 1.33) (end 1.56 -8.95) (layer B.SilkS) (width 0.12))
(fp_line (start 2.81 1.33) (end 1.56 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start 0.635 0.27) (end 1.635 1.27) (layer B.Fab) (width 0.1))
(fp_line (start 0.635 -8.89) (end 0.635 0.27) (layer B.Fab) (width 0.1))
(fp_line (start 6.985 -8.89) (end 0.635 -8.89) (layer B.Fab) (width 0.1))
(fp_line (start 6.985 1.27) (end 6.985 -8.89) (layer B.Fab) (width 0.1))
(fp_line (start 1.635 1.27) (end 6.985 1.27) (layer B.Fab) (width 0.1))
(fp_arc (start 3.81 1.33) (end 2.81 1.33) (angle 180) (layer B.SilkS) (width 0.12))
(fp_text user %R (at 3.81 -3.81) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 thru_hole rect (at 0 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(C2-Pad2)"))
(pad 5 thru_hole oval (at 7.62 -7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C7-Pad1)"))
(pad 2 thru_hole oval (at 0 -2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)"))
(pad 6 thru_hole oval (at 7.62 -5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(C6-Pad1)"))
(pad 3 thru_hole oval (at 0 -5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "Net-(C3-Pad1)"))
(pad 7 thru_hole oval (at 7.62 -2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(C6-Pad2)"))
(pad 4 thru_hole oval (at 0 -7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 GND))
(pad 8 thru_hole oval (at 7.62 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 +9V))
(model ${KIPRJMOD}/3D/TLE2072.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:CP_Radial_D6.3mm_P2.50mm (layer F.Cu) (tedit 5B11A873) (tstamp 5AFDCDD4)
(at 166.8 103 315)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor")
(path /4FA698C7)
(fp_text reference C8 (at -2.934493 -0.883883) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 47u (at 1.25 4.46 315) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 4.75 -3.5) (end -2.25 -3.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.75 3.5) (end 4.75 -3.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.25 3.5) (end 4.75 3.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.25 -3.5) (end -2.25 3.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
(fp_line (start 4.451 -0.468) (end 4.451 0.468) (layer F.SilkS) (width 0.12))
(fp_line (start 4.411 -0.676) (end 4.411 0.676) (layer F.SilkS) (width 0.12))
(fp_line (start 4.371 -0.834) (end 4.371 0.834) (layer F.SilkS) (width 0.12))
(fp_line (start 4.331 -0.966) (end 4.331 0.966) (layer F.SilkS) (width 0.12))
(fp_line (start 4.291 -1.081) (end 4.291 1.081) (layer F.SilkS) (width 0.12))
(fp_line (start 4.251 -1.184) (end 4.251 1.184) (layer F.SilkS) (width 0.12))
(fp_line (start 4.211 -1.278) (end 4.211 1.278) (layer F.SilkS) (width 0.12))
(fp_line (start 4.171 -1.364) (end 4.171 1.364) (layer F.SilkS) (width 0.12))
(fp_line (start 4.131 -1.445) (end 4.131 1.445) (layer F.SilkS) (width 0.12))
(fp_line (start 4.091 -1.52) (end 4.091 1.52) (layer F.SilkS) (width 0.12))
(fp_line (start 4.051 -1.591) (end 4.051 1.591) (layer F.SilkS) (width 0.12))
(fp_line (start 4.011 -1.658) (end 4.011 1.658) (layer F.SilkS) (width 0.12))
(fp_line (start 3.971 -1.721) (end 3.971 1.721) (layer F.SilkS) (width 0.12))
(fp_line (start 3.931 -1.781) (end 3.931 1.781) (layer F.SilkS) (width 0.12))
(fp_line (start 3.891 -1.839) (end 3.891 1.839) (layer F.SilkS) (width 0.12))
(fp_line (start 3.851 -1.894) (end 3.851 1.894) (layer F.SilkS) (width 0.12))
(fp_line (start 3.811 -1.946) (end 3.811 1.946) (layer F.SilkS) (width 0.12))
(fp_line (start 3.771 -1.997) (end 3.771 1.997) (layer F.SilkS) (width 0.12))
(fp_line (start 3.731 -2.045) (end 3.731 2.045) (layer F.SilkS) (width 0.12))
(fp_line (start 3.691 -2.092) (end 3.691 2.092) (layer F.SilkS) (width 0.12))
(fp_line (start 3.651 -2.137) (end 3.651 2.137) (layer F.SilkS) (width 0.12))
(fp_line (start 3.611 -2.18) (end 3.611 2.18) (layer F.SilkS) (width 0.12))
(fp_line (start 3.571 -2.222) (end 3.571 2.222) (layer F.SilkS) (width 0.12))
(fp_line (start 3.531 -2.262) (end 3.531 2.262) (layer F.SilkS) (width 0.12))
(fp_line (start 3.491 -2.301) (end 3.491 2.301) (layer F.SilkS) (width 0.12))
(fp_line (start 3.451 0.98) (end 3.451 2.339) (layer F.SilkS) (width 0.12))
(fp_line (start 3.451 -2.339) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.411 0.98) (end 3.411 2.375) (layer F.SilkS) (width 0.12))
(fp_line (start 3.411 -2.375) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.371 0.98) (end 3.371 2.411) (layer F.SilkS) (width 0.12))
(fp_line (start 3.371 -2.411) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.331 0.98) (end 3.331 2.445) (layer F.SilkS) (width 0.12))
(fp_line (start 3.331 -2.445) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.291 0.98) (end 3.291 2.478) (layer F.SilkS) (width 0.12))
(fp_line (start 3.291 -2.478) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.251 0.98) (end 3.251 2.51) (layer F.SilkS) (width 0.12))
(fp_line (start 3.251 -2.51) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.211 0.98) (end 3.211 2.54) (layer F.SilkS) (width 0.12))
(fp_line (start 3.211 -2.54) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.171 0.98) (end 3.171 2.57) (layer F.SilkS) (width 0.12))
(fp_line (start 3.171 -2.57) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.131 0.98) (end 3.131 2.599) (layer F.SilkS) (width 0.12))
(fp_line (start 3.131 -2.599) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.091 0.98) (end 3.091 2.627) (layer F.SilkS) (width 0.12))
(fp_line (start 3.091 -2.627) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.051 0.98) (end 3.051 2.654) (layer F.SilkS) (width 0.12))
(fp_line (start 3.051 -2.654) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.011 0.98) (end 3.011 2.681) (layer F.SilkS) (width 0.12))
(fp_line (start 3.011 -2.681) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.971 0.98) (end 2.971 2.706) (layer F.SilkS) (width 0.12))
(fp_line (start 2.971 -2.706) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.931 0.98) (end 2.931 2.731) (layer F.SilkS) (width 0.12))
(fp_line (start 2.931 -2.731) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.891 0.98) (end 2.891 2.755) (layer F.SilkS) (width 0.12))
(fp_line (start 2.891 -2.755) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.851 0.98) (end 2.851 2.778) (layer F.SilkS) (width 0.12))
(fp_line (start 2.851 -2.778) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.811 0.98) (end 2.811 2.8) (layer F.SilkS) (width 0.12))
(fp_line (start 2.811 -2.8) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.771 0.98) (end 2.771 2.822) (layer F.SilkS) (width 0.12))
(fp_line (start 2.771 -2.822) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.731 0.98) (end 2.731 2.843) (layer F.SilkS) (width 0.12))
(fp_line (start 2.731 -2.843) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.691 0.98) (end 2.691 2.863) (layer F.SilkS) (width 0.12))
(fp_line (start 2.691 -2.863) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.651 0.98) (end 2.651 2.882) (layer F.SilkS) (width 0.12))
(fp_line (start 2.651 -2.882) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.611 0.98) (end 2.611 2.901) (layer F.SilkS) (width 0.12))
(fp_line (start 2.611 -2.901) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.571 0.98) (end 2.571 2.919) (layer F.SilkS) (width 0.12))
(fp_line (start 2.571 -2.919) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.531 0.98) (end 2.531 2.937) (layer F.SilkS) (width 0.12))
(fp_line (start 2.531 -2.937) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.491 0.98) (end 2.491 2.954) (layer F.SilkS) (width 0.12))
(fp_line (start 2.491 -2.954) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.451 0.98) (end 2.451 2.97) (layer F.SilkS) (width 0.12))
(fp_line (start 2.451 -2.97) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.411 0.98) (end 2.411 2.986) (layer F.SilkS) (width 0.12))
(fp_line (start 2.411 -2.986) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.371 0.98) (end 2.371 3.001) (layer F.SilkS) (width 0.12))
(fp_line (start 2.371 -3.001) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.331 0.98) (end 2.331 3.015) (layer F.SilkS) (width 0.12))
(fp_line (start 2.331 -3.015) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.291 0.98) (end 2.291 3.029) (layer F.SilkS) (width 0.12))
(fp_line (start 2.291 -3.029) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.251 0.98) (end 2.251 3.042) (layer F.SilkS) (width 0.12))
(fp_line (start 2.251 -3.042) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.211 0.98) (end 2.211 3.055) (layer F.SilkS) (width 0.12))
(fp_line (start 2.211 -3.055) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.171 0.98) (end 2.171 3.067) (layer F.SilkS) (width 0.12))
(fp_line (start 2.171 -3.067) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.131 0.98) (end 2.131 3.079) (layer F.SilkS) (width 0.12))
(fp_line (start 2.131 -3.079) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.091 0.98) (end 2.091 3.09) (layer F.SilkS) (width 0.12))
(fp_line (start 2.091 -3.09) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.051 0.98) (end 2.051 3.1) (layer F.SilkS) (width 0.12))
(fp_line (start 2.051 -3.1) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.011 0.98) (end 2.011 3.11) (layer F.SilkS) (width 0.12))
(fp_line (start 2.011 -3.11) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.971 0.98) (end 1.971 3.119) (layer F.SilkS) (width 0.12))
(fp_line (start 1.971 -3.119) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.93 0.98) (end 1.93 3.128) (layer F.SilkS) (width 0.12))
(fp_line (start 1.93 -3.128) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 0.98) (end 1.89 3.137) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 -3.137) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.85 0.98) (end 1.85 3.144) (layer F.SilkS) (width 0.12))
(fp_line (start 1.85 -3.144) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 0.98) (end 1.81 3.152) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 -3.152) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.77 0.98) (end 1.77 3.158) (layer F.SilkS) (width 0.12))
(fp_line (start 1.77 -3.158) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.73 0.98) (end 1.73 3.165) (layer F.SilkS) (width 0.12))
(fp_line (start 1.73 -3.165) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 0.98) (end 1.69 3.17) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 -3.17) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.65 0.98) (end 1.65 3.176) (layer F.SilkS) (width 0.12))
(fp_line (start 1.65 -3.176) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 0.98) (end 1.61 3.18) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 -3.18) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.57 0.98) (end 1.57 3.185) (layer F.SilkS) (width 0.12))
(fp_line (start 1.57 -3.185) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.53 0.98) (end 1.53 3.188) (layer F.SilkS) (width 0.12))
(fp_line (start 1.53 -3.188) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.49 -3.192) (end 1.49 3.192) (layer F.SilkS) (width 0.12))
(fp_line (start 1.45 -3.194) (end 1.45 3.194) (layer F.SilkS) (width 0.12))
(fp_line (start 1.41 -3.197) (end 1.41 3.197) (layer F.SilkS) (width 0.12))
(fp_line (start 1.37 -3.198) (end 1.37 3.198) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 -3.2) (end 1.33 3.2) (layer F.SilkS) (width 0.12))
(fp_line (start 1.29 -3.2) (end 1.29 3.2) (layer F.SilkS) (width 0.12))
(fp_line (start 1.25 -3.2) (end 1.25 3.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
(fp_circle (center 1.25 0) (end 4.4 0) (layer F.Fab) (width 0.1))
(fp_arc (start 1.25 0) (end -1.767482 -1.18) (angle 137.3) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.25 0) (end -1.767482 1.18) (angle -137.3) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.25 0) (end 4.267482 -1.18) (angle 42.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 1.25 0 315) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 315) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 +9V))
(pad 2 thru_hole circle (at 2.5 0 315) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 GND))
(model ${KISYS3DMOD}/Capacitor_THT.3dshapes/CP_Radial_D6.3mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1.7))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm (layer B.Cu) (tedit 597BC7C2) (tstamp 5B119BCA)
(at 113.37 111.23 270)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path /5AFA5A4D)
(fp_text reference C1 (at 1.27 1.87 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 10p (at 1.25 -2.11 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 3.55 1.15) (end -1.05 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.55 -1.15) (end 3.55 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.15) (end 3.55 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.15) (end -1.05 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.663 -0.861) (end 1.837 -0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 0.663 0.861) (end 1.837 0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 2.75 0.8) (end -0.25 0.8) (layer B.Fab) (width 0.1))
(fp_line (start 2.75 -0.8) (end 2.75 0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 -0.8) (end 2.75 -0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 0.8) (end -0.25 -0.8) (layer B.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)"))
(pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad2)"))
(model ${KIPRJMOD}/3D/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm (layer B.Cu) (tedit 597BC7C2) (tstamp 5AF9D1CB)
(at 113.37 116.945)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path /4FA6951A)
(fp_text reference C2 (at -1.87 0.055 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 10p (at 1.25 -2.11) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 3.55 1.15) (end -1.05 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.55 -1.15) (end 3.55 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.15) (end 3.55 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.15) (end -1.05 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.663 -0.861) (end 1.837 -0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 0.663 0.861) (end 1.837 0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 2.75 0.8) (end -0.25 0.8) (layer B.Fab) (width 0.1))
(fp_line (start 2.75 -0.8) (end 2.75 0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 -0.8) (end 2.75 -0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 0.8) (end -0.25 -0.8) (layer B.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad2)"))
(pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(C2-Pad2)"))
(model ${KIPRJMOD}/3D/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm (layer B.Cu) (tedit 597BC7C2) (tstamp 5AF66508)
(at 113.37 108.69 90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path /4FA6962C)
(fp_text reference C3 (at 1.27 -1.778 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100n (at 1.25 -2.11 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 3.55 1.15) (end -1.05 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.55 -1.15) (end 3.55 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.15) (end 3.55 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.15) (end -1.05 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.663 -0.861) (end 1.837 -0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 0.663 0.861) (end 1.837 0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 2.75 0.8) (end -0.25 0.8) (layer B.Fab) (width 0.1))
(fp_line (start 2.75 -0.8) (end 2.75 0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 -0.8) (end 2.75 -0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 0.8) (end -0.25 -0.8) (layer B.Fab) (width 0.1))
(fp_text user %R (at 1.25 0 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "Net-(C3-Pad1)"))
(pad 2 thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 GND))
(model ${KIPRJMOD}/3D/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm (layer B.Cu) (tedit 597BC7C2) (tstamp 5AFD8233)
(at 123.316 117.834)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path /4FA69707)
(fp_text reference C4 (at 4.593863 0.10126) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 470n (at 1.25 -2.11) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 3.55 1.15) (end -1.05 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.55 -1.15) (end 3.55 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.15) (end 3.55 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.15) (end -1.05 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.663 -0.861) (end 1.837 -0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 0.663 0.861) (end 1.837 0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 2.75 0.8) (end -0.25 0.8) (layer B.Fab) (width 0.1))
(fp_line (start 2.75 -0.8) (end 2.75 0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 -0.8) (end 2.75 -0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 0.8) (end -0.25 -0.8) (layer B.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(C2-Pad2)"))
(pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C4-Pad2)"))
(model ${KIPRJMOD}/3D/C_Disc_D3.8mm_W2.6mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 5AFEEC0A)
(at 125.435 109.96 180)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path /4FA695AB)
(fp_text reference C5 (at 1.165 1.991 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100n (at 1.25 2.11 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 3.55 -1.15) (end -1.05 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.55 1.15) (end 3.55 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.15) (end 3.55 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.15) (end -1.05 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.663 0.861) (end 1.837 0.861) (layer F.SilkS) (width 0.12))
(fp_line (start 0.663 -0.861) (end 1.837 -0.861) (layer F.SilkS) (width 0.12))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer F.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 +9V))
(pad 2 thru_hole circle (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 GND))
(model ${KIPRJMOD}/3D/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm (layer B.Cu) (tedit 597BC7C2) (tstamp 5AFEDD29)
(at 137.5 104.88 270)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path /5AFA6D34)
(fp_text reference C6 (at 1.12 -2 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 3n3 (at 1.25 -2.11 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 3.55 1.15) (end -1.05 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.55 -1.15) (end 3.55 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.15) (end 3.55 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.15) (end -1.05 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.663 -0.861) (end 1.837 -0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 0.663 0.861) (end 1.837 0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 2.75 0.8) (end -0.25 0.8) (layer B.Fab) (width 0.1))
(fp_line (start 2.75 -0.8) (end 2.75 0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 -0.8) (end 2.75 -0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 0.8) (end -0.25 -0.8) (layer B.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(C6-Pad1)"))
(pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(C6-Pad2)"))
(model ${KIPRJMOD}/3D/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm (layer B.Cu) (tedit 597BC7C2) (tstamp 5B11B2C4)
(at 143.215 102.975)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path /4FA697AC)
(fp_text reference C7 (at 1.25 1.651) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100n (at 1.25 -2.11) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 3.55 1.15) (end -1.05 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.55 -1.15) (end 3.55 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.15) (end 3.55 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.15) (end -1.05 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.663 -0.861) (end 1.837 -0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 0.663 0.861) (end 1.837 0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 2.75 0.8) (end -0.25 0.8) (layer B.Fab) (width 0.1))
(fp_line (start 2.75 -0.8) (end 2.75 0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 -0.8) (end 2.75 -0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 0.8) (end -0.25 -0.8) (layer B.Fab) (width 0.1))
(fp_text user %R (at 1.25 0) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C7-Pad1)"))
(pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 GND))
(model ${KIPRJMOD}/3D/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm (layer B.Cu) (tedit 597BC7C2) (tstamp 5AFDC02E)
(at 165.44 112.5 270)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path /5B0272F2)
(fp_text reference C10 (at 1.157245 1.895789 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100n (at 1.25 -2.11 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 3.55 1.15) (end -1.05 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.55 -1.15) (end 3.55 1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.15) (end 3.55 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.15) (end -1.05 -1.15) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.663 -0.861) (end 1.837 -0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 0.663 0.861) (end 1.837 0.861) (layer B.SilkS) (width 0.12))
(fp_line (start 2.75 0.8) (end -0.25 0.8) (layer B.Fab) (width 0.1))
(fp_line (start 2.75 -0.8) (end 2.75 0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 -0.8) (end 2.75 -0.8) (layer B.Fab) (width 0.1))
(fp_line (start -0.25 0.8) (end -0.25 -0.8) (layer B.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C10-Pad1)"))
(pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 /Output))
(model ${KIPRJMOD}/3D/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer B.Cu) (tedit 5874F706) (tstamp 5AF65E73)
(at 116.545 108.69 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /4FA694DC)
(fp_text reference R2 (at 4.69 -2.045 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 15k (at 3.81 -2.31 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 8.7 1.6) (end -1.05 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.6) (end 8.7 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end 8.7 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end -1.05 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 7.02 1.31) (end 7.02 0.98) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 1.31) (end 7.02 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 0.98) (end 0.6 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer B.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 0.66 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 6.96 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 6.96 -1.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 0.66 -1.25) (layer B.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "Net-(C3-Pad1)"))
(pad 2 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 GND))
(model ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_15K_P7.62mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer B.Cu) (tedit 5874F706) (tstamp 5B1199DD)
(at 130.896 108.69 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /4FA696EE)
(fp_text reference R4 (at 4.06 -2.354 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 4k7 (at 3.81 -2.31 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 8.7 1.6) (end -1.05 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.6) (end 8.7 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end 8.7 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end -1.05 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 7.02 1.31) (end 7.02 0.98) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 1.31) (end 7.02 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 0.98) (end 0.6 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer B.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 0.66 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 6.96 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 6.96 -1.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 0.66 -1.25) (layer B.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(C6-Pad1)"))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C4-Pad2)"))
(model ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_4K7_P7.62mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer B.Cu) (tedit 5874F706) (tstamp 5B119882)
(at 133.69 110 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /4FA696FC)
(fp_text reference R5 (at 3.75 -2.19 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 1M (at 3.81 -2.31 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 8.7 1.6) (end -1.05 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.6) (end 8.7 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end 8.7 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end -1.05 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 7.02 1.31) (end 7.02 0.98) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 1.31) (end 7.02 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 0.98) (end 0.6 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer B.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 0.66 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 6.96 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 6.96 -1.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 0.66 -1.25) (layer B.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(C6-Pad2)"))
(pad 2 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(C6-Pad1)"))
(model ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_1M_P7.62mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer B.Cu) (tedit 5874F706) (tstamp 5B11B817)
(at 128 101.75 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /4FA694D1)
(fp_text reference R1 (at 3.9 -2.2 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 4k7 (at 3.81 -2.31 180) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 8.7 1.6) (end -1.05 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.6) (end 8.7 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end 8.7 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end -1.05 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 7.02 1.31) (end 7.02 0.98) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 1.31) (end 7.02 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 0.6 0.98) (end 0.6 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer B.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 0.66 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 6.96 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 6.96 -1.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 0.66 -1.25) (layer B.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 +9V))
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "Net-(C3-Pad1)"))
(model ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_4K7_P7.62mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mounting_Holes:MountingHole_3.2mm_M3_ISO7380_Pad locked (layer F.Cu) (tedit 5AFEE056) (tstamp 5AFEDC91)
(at 137.5 112.5)
(descr "Mounting Hole 3.2mm, M3, ISO7380")
(tags "mounting hole 3.2mm m3 iso7380")
(path /5AFF1985)
(attr virtual)
(fp_text reference MK7 (at 0 -3.85) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "M3 support" (at 0 3.85) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 3.1 0) (layer F.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 2.85 0) (layer Cmts.User) (width 0.15))
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 5.7 5.7) (drill 3.2) (layers *.Cu *.Mask)
(net 4 GND))
)
(module Mounting_Holes:MountingHole_3.2mm_M3_ISO7380_Pad (layer F.Cu) (tedit 5B15A406) (tstamp 5AFDAC9A)
(at 155 122.5)
(descr "Mounting Hole 3.2mm, M3, ISO7380")
(tags "mounting hole 3.2mm m3 iso7380")
(path /5AFD64D0)
(attr virtual)
(fp_text reference MK6 (at 0 -3.85) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "M3 support" (at 0 3.85) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 3.1 0) (layer F.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 2.85 0) (layer Cmts.User) (width 0.15))
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at -0.1 0) (size 5.7 5.7) (drill 3.2) (layers *.Cu *.Mask)
(net 4 GND))
)
(module Opto-Devices:PhotoDiode_DIL2_4.3x4.65_RM5.08 locked (layer F.Cu) (tedit 5B118612) (tstamp 5AF9A2EB)
(at 107.75 113.35 270)
(descr "PhotoDiode, plastic DIL, 4.3x4.65mm², RM5.08")
(tags "PhotoDiode plastic DIL RM5.08")
(path /5AFA97B6)
(fp_text reference D1 (at 2.34 -0.05 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value BPX61 (at 2.54 3.17 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.18 2.4) (end -1.1 2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.18 2.4) (end 6.18 -2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 -2.4) (end -1.1 2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 -2.4) (end 6.18 -2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.02 0.64) (end 3.56 0.64) (layer F.Fab) (width 0.1))
(fp_line (start 2.03 0) (end 2.03 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 2.67 1.27) (end 2.03 0.64) (layer F.Fab) (width 0.1))
(fp_line (start 2.67 0) (end 2.67 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 2.03 0.64) (end 2.67 0) (layer F.Fab) (width 0.1))
(fp_line (start 3.56 -1.14) (end 2.79 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 3.05 -1.14) (end 2.29 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 2.29 -0.38) (end 2.29 -0.64) (layer F.Fab) (width 0.1))
(fp_line (start 2.29 -0.38) (end 2.54 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 2.79 -0.38) (end 2.79 -0.64) (layer F.Fab) (width 0.1))
(fp_line (start 2.79 -0.38) (end 3.05 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 3.79 -1.5) (end 0.79 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 0.79 1.5) (end 3.79 1.5) (layer F.Fab) (width 0.1))
(fp_line (start 0.84 -2.15) (end 4.84 -2.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.19 -1.5) (end 0.84 -2.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.19 2.15) (end 0.19 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 4.84 2.15) (end 0.19 2.15) (layer F.Fab) (width 0.1))
(fp_line (start 4.84 -2.15) (end 4.84 2.15) (layer F.Fab) (width 0.1))
(fp_line (start 4.89 -2.2) (end 4.89 -1) (layer F.SilkS) (width 0.12))
(fp_line (start 0.14 -2.2) (end 4.89 -2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.14 2.2) (end 0.14 1.05) (layer F.SilkS) (width 0.12))
(fp_line (start 4.89 2.2) (end 0.14 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 4.89 1) (end 4.89 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.14 -1.05) (end 0.14 -2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.04 -2.2) (end 0.04 -1.05) (layer F.SilkS) (width 0.12))
(fp_line (start 0.09 -2.2) (end 0.09 -1.05) (layer F.SilkS) (width 0.12))
(fp_line (start -0.01 -1.05) (end -0.01 -2.2) (layer F.SilkS) (width 0.12))
(fp_line (start -0.01 1.05) (end -0.01 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.04 2.2) (end 0.04 1.05) (layer F.SilkS) (width 0.12))
(fp_line (start 0.09 1.05) (end 0.09 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.79 -1.5) (end 0.79 1.5) (layer F.Fab) (width 0.1))
(fp_line (start 3.79 1.5) (end 3.79 -1.5) (layer F.Fab) (width 0.1))
(pad 2 thru_hole circle (at 5.08 0 90) (size 1.7 1.7) (drill 0.8) (layers *.Cu *.Mask)
(net 4 GND))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)"))
(model ${KIPRJMOD}/3D/BPX61_withoutWindow.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Opto-Devices:PhotoDiode_DIL2_4.3x4.65_RM5.08 locked (layer F.Cu) (tedit 5B1185FE) (tstamp 5B118C65)
(at 107.75 111.65 90)
(descr "PhotoDiode, plastic DIL, 4.3x4.65mm², RM5.08")
(tags "PhotoDiode plastic DIL RM5.08")
(path /5AFA9764)
(attr virtual)
(fp_text reference D2 (at 2.25 0.05 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value DNP (at 1.27 3.17 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 3.79 1.5) (end 3.79 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 0.79 -1.5) (end 0.79 1.5) (layer F.Fab) (width 0.1))
(fp_line (start 0.09 1.05) (end 0.09 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.04 2.2) (end 0.04 1.05) (layer F.SilkS) (width 0.12))
(fp_line (start -0.01 1.05) (end -0.01 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start -0.01 -1.05) (end -0.01 -2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.09 -2.2) (end 0.09 -1.05) (layer F.SilkS) (width 0.12))
(fp_line (start 0.04 -2.2) (end 0.04 -1.05) (layer F.SilkS) (width 0.12))
(fp_line (start 0.14 -1.05) (end 0.14 -2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 4.89 1) (end 4.89 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 4.89 2.2) (end 0.14 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.14 2.2) (end 0.14 1.05) (layer F.SilkS) (width 0.12))
(fp_line (start 0.14 -2.2) (end 4.89 -2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 4.89 -2.2) (end 4.89 -1) (layer F.SilkS) (width 0.12))
(fp_line (start 4.84 -2.15) (end 4.84 2.15) (layer F.Fab) (width 0.1))
(fp_line (start 4.84 2.15) (end 0.19 2.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.19 2.15) (end 0.19 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 0.19 -1.5) (end 0.84 -2.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.84 -2.15) (end 4.84 -2.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.79 1.5) (end 3.79 1.5) (layer F.Fab) (width 0.1))
(fp_line (start 3.79 -1.5) (end 0.79 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 2.79 -0.38) (end 3.05 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 2.79 -0.38) (end 2.79 -0.64) (layer F.Fab) (width 0.1))
(fp_line (start 2.29 -0.38) (end 2.54 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 2.29 -0.38) (end 2.29 -0.64) (layer F.Fab) (width 0.1))
(fp_line (start 3.05 -1.14) (end 2.29 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 3.56 -1.14) (end 2.79 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 2.03 0.64) (end 2.67 0) (layer F.Fab) (width 0.1))
(fp_line (start 2.67 0) (end 2.67 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 2.67 1.27) (end 2.03 0.64) (layer F.Fab) (width 0.1))
(fp_line (start 2.03 0) (end 2.03 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.02 0.64) (end 3.56 0.64) (layer F.Fab) (width 0.1))
(fp_line (start -1.1 -2.4) (end 6.18 -2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 -2.4) (end -1.1 2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.18 2.4) (end 6.18 -2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.18 2.4) (end -1.1 2.4) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)"))
(pad 2 thru_hole circle (at 5.08 0 270) (size 1.7 1.7) (drill 0.8) (layers *.Cu *.Mask)
(net 4 GND))
)
(module Opto-Devices:PhotoDiode_DIL2_4.3x4.65_RM5.08 locked (layer F.Cu) (tedit 5B1185F8) (tstamp 5B118BEA)
(at 102.75 111.65 90)
(descr "PhotoDiode, plastic DIL, 4.3x4.65mm², RM5.08")
(tags "PhotoDiode plastic DIL RM5.08")
(path /5AFA9712)
(attr virtual)
(fp_text reference D3 (at 2.55 0.05 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value DNP (at 2.54 3.17 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.18 2.4) (end -1.1 2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.18 2.4) (end 6.18 -2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 -2.4) (end -1.1 2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 -2.4) (end 6.18 -2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.02 0.64) (end 3.56 0.64) (layer F.Fab) (width 0.1))
(fp_line (start 2.03 0) (end 2.03 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 2.67 1.27) (end 2.03 0.64) (layer F.Fab) (width 0.1))
(fp_line (start 2.67 0) (end 2.67 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 2.03 0.64) (end 2.67 0) (layer F.Fab) (width 0.1))
(fp_line (start 3.56 -1.14) (end 2.79 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 3.05 -1.14) (end 2.29 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 2.29 -0.38) (end 2.29 -0.64) (layer F.Fab) (width 0.1))
(fp_line (start 2.29 -0.38) (end 2.54 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 2.79 -0.38) (end 2.79 -0.64) (layer F.Fab) (width 0.1))
(fp_line (start 2.79 -0.38) (end 3.05 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 3.79 -1.5) (end 0.79 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 0.79 1.5) (end 3.79 1.5) (layer F.Fab) (width 0.1))
(fp_line (start 0.84 -2.15) (end 4.84 -2.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.19 -1.5) (end 0.84 -2.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.19 2.15) (end 0.19 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 4.84 2.15) (end 0.19 2.15) (layer F.Fab) (width 0.1))
(fp_line (start 4.84 -2.15) (end 4.84 2.15) (layer F.Fab) (width 0.1))
(fp_line (start 4.89 -2.2) (end 4.89 -1) (layer F.SilkS) (width 0.12))
(fp_line (start 0.14 -2.2) (end 4.89 -2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.14 2.2) (end 0.14 1.05) (layer F.SilkS) (width 0.12))
(fp_line (start 4.89 2.2) (end 0.14 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 4.89 1) (end 4.89 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.14 -1.05) (end 0.14 -2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.04 -2.2) (end 0.04 -1.05) (layer F.SilkS) (width 0.12))
(fp_line (start 0.09 -2.2) (end 0.09 -1.05) (layer F.SilkS) (width 0.12))
(fp_line (start -0.01 -1.05) (end -0.01 -2.2) (layer F.SilkS) (width 0.12))
(fp_line (start -0.01 1.05) (end -0.01 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.04 2.2) (end 0.04 1.05) (layer F.SilkS) (width 0.12))
(fp_line (start 0.09 1.05) (end 0.09 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.79 -1.5) (end 0.79 1.5) (layer F.Fab) (width 0.1))
(fp_line (start 3.79 1.5) (end 3.79 -1.5) (layer F.Fab) (width 0.1))
(pad 2 thru_hole circle (at 5.08 0 270) (size 1.7 1.7) (drill 0.8) (layers *.Cu *.Mask)
(net 4 GND))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)"))
)
(module Opto-Devices:PhotoDiode_DIL2_4.3x4.65_RM5.08 locked (layer F.Cu) (tedit 5B11860D) (tstamp 5AF98DCB)
(at 102.75 113.35 270)
(descr "PhotoDiode, plastic DIL, 4.3x4.65mm², RM5.08")
(tags "PhotoDiode plastic DIL RM5.08")
(path /4FA6949D)
(attr virtual)
(fp_text reference D4 (at 2.54 -0.05 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value DNP (at 2.54 3.17 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 3.79 1.5) (end 3.79 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 0.79 -1.5) (end 0.79 1.5) (layer F.Fab) (width 0.1))
(fp_line (start 0.09 1.05) (end 0.09 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.04 2.2) (end 0.04 1.05) (layer F.SilkS) (width 0.12))
(fp_line (start -0.01 1.05) (end -0.01 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start -0.01 -1.05) (end -0.01 -2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.09 -2.2) (end 0.09 -1.05) (layer F.SilkS) (width 0.12))
(fp_line (start 0.04 -2.2) (end 0.04 -1.05) (layer F.SilkS) (width 0.12))
(fp_line (start 0.14 -1.05) (end 0.14 -2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 4.89 1) (end 4.89 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 4.89 2.2) (end 0.14 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 0.14 2.2) (end 0.14 1.05) (layer F.SilkS) (width 0.12))
(fp_line (start 0.14 -2.2) (end 4.89 -2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 4.89 -2.2) (end 4.89 -1) (layer F.SilkS) (width 0.12))
(fp_line (start 4.84 -2.15) (end 4.84 2.15) (layer F.Fab) (width 0.1))
(fp_line (start 4.84 2.15) (end 0.19 2.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.19 2.15) (end 0.19 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 0.19 -1.5) (end 0.84 -2.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.84 -2.15) (end 4.84 -2.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.79 1.5) (end 3.79 1.5) (layer F.Fab) (width 0.1))
(fp_line (start 3.79 -1.5) (end 0.79 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 2.79 -0.38) (end 3.05 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 2.79 -0.38) (end 2.79 -0.64) (layer F.Fab) (width 0.1))
(fp_line (start 2.29 -0.38) (end 2.54 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 2.29 -0.38) (end 2.29 -0.64) (layer F.Fab) (width 0.1))
(fp_line (start 3.05 -1.14) (end 2.29 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 3.56 -1.14) (end 2.79 -0.38) (layer F.Fab) (width 0.1))
(fp_line (start 2.03 0.64) (end 2.67 0) (layer F.Fab) (width 0.1))
(fp_line (start 2.67 0) (end 2.67 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 2.67 1.27) (end 2.03 0.64) (layer F.Fab) (width 0.1))
(fp_line (start 2.03 0) (end 2.03 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.02 0.64) (end 3.56 0.64) (layer F.Fab) (width 0.1))
(fp_line (start -1.1 -2.4) (end 6.18 -2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 -2.4) (end -1.1 2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.18 2.4) (end 6.18 -2.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.18 2.4) (end -1.1 2.4) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)"))
(pad 2 thru_hole circle (at 5.08 0 90) (size 1.7 1.7) (drill 0.8) (layers *.Cu *.Mask)
(net 4 GND))
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer B.Cu) (tedit 5874F706) (tstamp 5B11A615)
(at 143.215 117.58 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /4FA69792)
(fp_text reference R6 (at 5.08 2.285 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 10k (at 5.08 -2.31 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 11.25 1.6) (end -1.05 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end 11.25 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end 11.25 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end -1.05 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 9.18 0) (end 8.29 0) (layer B.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer B.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 1.87 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 8.29 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 1.87 -1.31) (end 8.29 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 1.87 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 10.16 0) (end 8.23 0) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer B.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 1.93 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 8.23 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 1.93 -1.25) (end 8.23 -1.25) (layer B.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 1.93 -1.25) (layer B.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 +9V))
(pad 2 thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C7-Pad1)"))
(model ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_10K_P10.16mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer B.Cu) (tedit 5874F706) (tstamp 5B11A66A)
(at 147.66 107.42 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /4FA697A6)
(fp_text reference R7 (at 5.08 -2.34 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 10k (at 5.08 -2.31 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.93 1.25) (end 1.93 -1.25) (layer B.Fab) (width 0.1))
(fp_line (start 1.93 -1.25) (end 8.23 -1.25) (layer B.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 8.23 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 1.93 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer B.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer B.Fab) (width 0.1))
(fp_line (start 1.87 1.31) (end 1.87 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 1.87 -1.31) (end 8.29 -1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 8.29 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 1.87 1.31) (layer B.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer B.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer B.SilkS) (width 0.12))
(fp_line (start -1.05 1.6) (end -1.05 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end 11.25 -1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end 11.25 1.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end -1.05 1.6) (layer B.CrtYd) (width 0.05))
(pad 2 thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 GND))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C7-Pad1)"))
(model ${KIPRJMOD}/3D/Resistors_THT_custom.3dshapes/res_5band_10K_P10.16mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Wire_Pads:SolderWirePad_single_0-8mmDrill locked (layer F.Cu) (tedit 5AF9DE8B) (tstamp 5AF9D4D6)
(at 105.25 105.75)
(path /5AFA0F85)
(attr virtual)
(fp_text reference MK1 (at 0 -2.54) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "via for coincidence sandwich" (at 0 2.54) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 1.1 1.1) (drill 0.5) (layers *.Cu *.Mask))
)
(module Wire_Pads:SolderWirePad_single_0-8mmDrill locked (layer F.Cu) (tedit 5AF9DE70) (tstamp 5AF9D48C)
(at 109.5 112.5)
(path /5AFA107D)
(attr virtual)
(fp_text reference MK2 (at 0 -2.54) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "via for coincidence sandwich" (at 0 2.54) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 1.1 1.1) (drill 0.6) (layers *.Cu *.Mask))
)
(module Wire_Pads:SolderWirePad_single_0-8mmDrill locked (layer F.Cu) (tedit 5AF9DE86) (tstamp 5AF9D491)
(at 101 112.5)
(path /5AFA11AD)
(attr virtual)
(fp_text reference MK3 (at 0 -2.54) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "via for coincidence sandwich" (at 0 2.54) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 1.1 1.1) (drill 0.6) (layers *.Cu *.Mask))
)
(module Wire_Pads:SolderWirePad_single_0-8mmDrill locked (layer F.Cu) (tedit 5AF9DE91) (tstamp 5AF9D496)
(at 105.25 119.25)
(path /5AFA1235)
(attr virtual)
(fp_text reference MK4 (at 0 -2.54) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "via for coincidence sandwich" (at 0 2.54) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 1.1 1.1) (drill 0.6) (layers *.Cu *.Mask))
)
(module Mounting_Holes:MountingHole_3.2mm_M3_ISO7380_Pad (layer F.Cu) (tedit 5AFDAA4D) (tstamp 5AFDA66A)
(at 155 102.5)
(descr "Mounting Hole 3.2mm, M3, ISO7380")
(tags "mounting hole 3.2mm m3 iso7380")
(path /5AFD6430)
(attr virtual)
(fp_text reference MK5 (at 0 -3.85) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "M3 support" (at 0 3.85) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.85 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 3.1 0) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at -0.1 0) (size 5.7 5.7) (drill 3.2) (layers *.Cu *.Mask)
(net 4 GND))
)
(gr_text μ (at 144.3072 112.5762 20) (layer F.Cu) (tstamp 5D4AE398)
(effects (font (size 2 2) (thickness 0.3)))
)
(gr_text β (at 147.025 113.1604 -30) (layer F.Cu) (tstamp 5D4AE0FE)
(effects (font (size 2 2) (thickness 0.3)))
)
(gr_text α (at 145.501 110.722 10) (layer F.Cu)
(effects (font (size 2 2) (thickness 0.3)))
)
(gr_text B (at 160 122.5) (layer B.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(gr_text T (at 160 122.5) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "CERN OHL" (at 173.25 113 90) (layer B.SilkS) (tstamp 5B11AFFC)
(effects (font (size 1.5 1.5) (thickness 0.25)) (justify mirror))
)
(gr_text "DIY Particle Detector V1.2\nO. Keller ‘19\n" (at 151.47 121.898) (layer B.SilkS) (tstamp 5B11AE3B)
(effects (font (size 1.5 1.5) (thickness 0.25)) (justify left mirror))
)
(gr_text K (at 105.3055 112.5 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_line (start 110 122.1) (end 112 125.5) (layer Edge.Cuts) (width 0.15) (tstamp 5B119DA4))
(dimension 75 (width 0.3) (layer Dwgs.User)
(gr_text "75.000 mm" (at 137.5 88.2) (layer Dwgs.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 100 99.5) (xy 100 89.713579)))
(feature2 (pts (xy 175 99.5) (xy 175 89.713579)))
(crossbar (pts (xy 175 90.3) (xy 100 90.3)))
(arrow1a (pts (xy 100 90.3) (xy 101.126504 89.713579)))
(arrow1b (pts (xy 100 90.3) (xy 101.126504 90.886421)))
(arrow2a (pts (xy 175 90.3) (xy 173.873496 89.713579)))
(arrow2b (pts (xy 175 90.3) (xy 173.873496 90.886421)))
)
(dimension 26 (width 0.3) (layer Dwgs.User) (tstamp 5AFEF083)
(gr_text "26.000 mm" (at 211.223571 112.510787 90) (layer Dwgs.User) (tstamp 5AFEF083)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 175.023571 99.510787) (xy 209.709992 99.510787)))
(feature2 (pts (xy 175.023571 125.510787) (xy 209.709992 125.510787)))
(crossbar (pts (xy 209.123571 125.510787) (xy 209.123571 99.510787)))
(arrow1a (pts (xy 209.123571 99.510787) (xy 209.709992 100.637291)))
(arrow1b (pts (xy 209.123571 99.510787) (xy 208.53715 100.637291)))
(arrow2a (pts (xy 209.123571 125.510787) (xy 209.709992 124.384283)))
(arrow2b (pts (xy 209.123571 125.510787) (xy 208.53715 124.384283)))
)
(gr_text "CERN OHL" (at 173.25 113.05 90) (layer F.SilkS) (tstamp 5AFEF867)
(effects (font (size 1.5 1.5) (thickness 0.25)))
)
(gr_circle (center 166.1 123.9) (end 169.1 123.9) (layer Dwgs.User) (width 0.2) (tstamp 5AFDAC0A))
(gr_circle (center 108.9 101.1) (end 111.9 101.1) (layer Dwgs.User) (width 0.2) (tstamp 5AFDCF19))
(gr_line (start 172.4 122.1) (end 175 119.5) (layer Edge.Cuts) (width 0.15) (tstamp 5AFDA88F))
(gr_line (start 168 99.5) (end 175 106.5) (layer Edge.Cuts) (width 0.15))
(gr_line (start 165.1 122.1) (end 172.4 122.1) (layer Edge.Cuts) (width 0.15) (tstamp 5AFD7E1C))
(gr_line (start 163.1 125.5) (end 165.1 122.1) (layer Edge.Cuts) (width 0.15))
(gr_line (start 107.4 122.1) (end 110 122.1) (layer Edge.Cuts) (width 0.15) (tstamp 5AFDAC36))
(gr_line (start 100 119) (end 101.5 120.5) (layer Edge.Cuts) (width 0.15) (tstamp 5AFD6CD5))
(gr_line (start 108.8 101.1) (end 109 101.1) (layer Dwgs.User) (width 0.15) (tstamp 5AFD6BB7))
(gr_line (start 108.9 101) (end 108.9 101.2) (layer Dwgs.User) (width 0.15) (tstamp 5AFD6BB6))
(gr_text M3 (at 108.9 97.1) (layer Dwgs.User) (tstamp 5AFD6B9F)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text M3 (at 166.1 128.5) (layer Dwgs.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_line (start 166 123.9) (end 166.2 123.9) (layer Dwgs.User) (width 0.15))
(gr_line (start 166.1 123.8) (end 166.1 124) (layer Dwgs.User) (width 0.15))
(gr_circle (center 166.1 123.9) (end 167.9 123.9) (layer Dwgs.User) (width 0.2) (tstamp 5AFD6B16))
(gr_circle (center 108.9 101.1) (end 110.7 101.1) (layer Dwgs.User) (width 0.2) (tstamp 5AFD6B11))
(gr_line (start 105.8 104.5) (end 107.4 102.9) (layer Edge.Cuts) (width 0.15))
(gr_line (start 101.5 104.5) (end 105.8 104.5) (layer Edge.Cuts) (width 0.15))
(gr_line (start 101.5 104.5) (end 100 106) (layer Edge.Cuts) (width 0.15) (tstamp 5AFD5962))
(gr_text - (at 169.833226 117.881217 90) (layer F.SilkS) (tstamp 5D41E674)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text - (at 169.909226 109.330856 90) (layer F.SilkS) (tstamp 5D41E669)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text signal (at 159.9155 118) (layer F.SilkS) (tstamp 5AF9F0D4)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text +9V (at 161.1855 109.25) (layer F.SilkS) (tstamp 5AFE9A6F)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "9V battery block" (at 153 97.5) (layer Dwgs.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_line (start 162.5 99) (end 112.5 99) (layer Dwgs.User) (width 0.2) (tstamp 5AFDCD31))
(gr_line (start 162.5 126) (end 162.5 99) (layer Dwgs.User) (width 0.2) (tstamp 5AFDCBDA))
(gr_line (start 112.5 126) (end 162.5 126) (layer Dwgs.User) (width 0.2) (tstamp 5AFDCD2E))
(gr_line (start 112.5 126) (end 112.5 99) (layer Dwgs.User) (width 0.2) (tstamp 5AFDCD2B))
(gr_text "BNC \nconn." (at 187.8 112.9) (layer Dwgs.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_line (start 182 106) (end 182 119) (layer Dwgs.User) (width 0.2) (tstamp 5AF9A93B))
(gr_line (start 194 117.5) (end 182 117.5) (layer Dwgs.User) (width 0.2) (tstamp 5AF9A932))
(gr_line (start 194 107.5) (end 194 117.5) (layer Dwgs.User) (width 0.2) (tstamp 5AF9A93E))
(gr_line (start 182 107.5) (end 194 107.5) (layer Dwgs.User) (width 0.2) (tstamp 5AF9A944))
(gr_line (start 166 109) (end 182 107.5) (layer Dwgs.User) (width 0.2) (tstamp 5AF9A935))
(gr_line (start 166 116) (end 166 109) (layer Dwgs.User) (width 0.2) (tstamp 5AF9A938))
(gr_line (start 182 117.5) (end 166 116) (layer Dwgs.User) (width 0.2) (tstamp 5AF9A941))
(gr_line (start 110 102.9) (end 112 99.5) (layer Edge.Cuts) (width 0.15) (tstamp 5AFD5700))
(gr_line (start 107.4 102.9) (end 110 102.9) (layer Edge.Cuts) (width 0.15) (tstamp 5AF98D9D))
(gr_line (start 105.8 120.5) (end 107.4 122.1) (layer Edge.Cuts) (width 0.15))
(gr_line (start 101.5 120.5) (end 105.8 120.5) (layer Edge.Cuts) (width 0.15) (tstamp 5AFD6CB7))
(gr_circle (center 120.99 116.31) (end 121.391609 116.31) (layer B.SilkS) (width 0.8))
(gr_text "Notes:\n- PCB designed for these enclosures:\nhttp://uk.farnell.com/multicomp/g102mf/box-diecast-90x36x30mm/dp/1902552\nhttp://uk.farnell.com/deltron-enclosures/480-0010/box-diecast-ip68/dp/1774842\nouter case dimensions: ca. 30 x 35 x 89 mm\ncase edges touching the lid must be blank/metal and _not_coated_ with paint for better conductivity\n- U1 must be mounted on backside, _without_ PDIP socket \n- 4 THT mounting holes/vias around diodes for optional sandwich mount of two PCBs \n- 2 more M3 holes for optional support (e.g. socket screws)" (at 98.2 140.1) (layer Dwgs.User) (tstamp 5D428BE0)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify left))
)
(gr_text "DIY Particle Detector V1.2\nO. Keller ‘19" (at 121.625 121.898) (layer F.SilkS) (tstamp 5B1559F2)
(effects (font (size 1.5 1.5) (thickness 0.25)) (justify left))
)
(gr_line (start 100 119) (end 100 106) (layer Edge.Cuts) (width 0.15) (tstamp 5AFD5923))
(gr_line (start 163.1 125.5) (end 112 125.5) (layer Edge.Cuts) (width 0.15))
(gr_line (start 175 106.5) (end 175 119.5) (layer Edge.Cuts) (width 0.15))
(gr_line (start 112 99.5) (end 168 99.5) (layer Edge.Cuts) (width 0.15) (tstamp 5AF9CE4E))
(segment (start 107.75 111.25) (end 107.75 112.35) (width 0.25) (layer B.Cu) (net 1))
(segment (start 107.73 112.52) (end 107.75 112.5) (width 0.25) (layer B.Cu) (net 1))
(segment (start 102.75 112.52) (end 107.73 112.52) (width 0.25) (layer B.Cu) (net 1))
(segment (start 107.75 112.5) (end 107.75 113.75) (width 0.25) (layer B.Cu) (net 1))
(segment (start 107.75 112.35) (end 107.75 112.5) (width 0.25) (layer B.Cu) (net 1))
(segment (start 102.75 111.25) (end 102.75 112.52) (width 0.25) (layer B.Cu) (net 1))
(segment (start 102.75 112.52) (end 102.75 113.75) (width 0.25) (layer B.Cu) (net 1))
(segment (start 113.37 111.23) (end 116.545 111.23) (width 0.25) (layer B.Cu) (net 1) (status 40000))
(segment (start 116.545 111.23) (end 120.355 111.23) (width 0.25) (layer B.Cu) (net 1))
(segment (start 112.354 111.23) (end 113.37 111.23) (width 0.25) (layer B.Cu) (net 1))
(segment (start 112.334 111.25) (end 112.354 111.23) (width 0.25) (layer B.Cu) (net 1))
(segment (start 107.75 111.25) (end 112.334 111.25) (width 0.25) (layer B.Cu) (net 1))
(segment (start 113.37 113.73) (end 113.37 116.945) (width 0.25) (layer B.Cu) (net 2))
(segment (start 123.219 117.834) (end 123.316 117.834) (width 0.4) (layer B.Cu) (net 3))
(segment (start 120.355 114.97) (end 123.219 117.834) (width 0.4) (layer B.Cu) (net 3) (status 40000))
(segment (start 120.355 113.77) (end 120.355 114.97) (width 0.4) (layer B.Cu) (net 3))
(segment (start 115.87 114.445) (end 116.545 113.77) (width 0.25) (layer B.Cu) (net 3))
(segment (start 115.87 116.945) (end 115.87 114.445) (width 0.25) (layer B.Cu) (net 3))
(segment (start 117.534949 113.77) (end 120.355 113.77) (width 0.25) (layer B.Cu) (net 3))
(segment (start 116.545 113.77) (end 117.534949 113.77) (width 0.25) (layer B.Cu) (net 3))
(via (at 107.8 103.9) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4) (tstamp 5AFDADF4))
(via (at 110 103.9) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4))
(via (at 108.9 103.9) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4) (tstamp 5AFDADB3))
(via (at 111 103.2) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4) (tstamp 5AFDADCA))
(via (at 111.5 102.3) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4) (tstamp 5AFDADCC))
(via (at 112 101.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4) (tstamp 5AFDADCE))
(via (at 169.1 121.3) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4))
(via (at 168 121.3) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4) (tstamp 5AFDAF7B))
(via (at 166.9 121.3) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4) (tstamp 5AFDAF7D))
(via (at 165.8 121.3) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4) (tstamp 5AFEF926))
(via (at 164.1 122.2) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4) (tstamp 5AFDAFAC))
(via (at 163.5 123.2) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4) (tstamp 5AFDAFB6))
(via (at 162.9 124.2) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4) (tstamp 5AFDAFB9))
(via (at 164.7 121.3) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4) (tstamp 5AFEF91B))
(via (at 112.5 100.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4) (tstamp 5AFDADD0))
(segment (start 121.35 106.15) (end 120.355 106.15) (width 0.4) (layer B.Cu) (net 4))
(segment (start 122.935 108.82863) (end 122.935 109.96) (width 0.4) (layer B.Cu) (net 4))
(segment (start 122.935 108.33) (end 122.935 108.82863) (width 0.4) (layer B.Cu) (net 4))
(segment (start 120.755 106.15) (end 122.935 108.33) (width 0.4) (layer B.Cu) (net 4))
(segment (start 120.355 106.15) (end 120.755 106.15) (width 0.4) (layer B.Cu) (net 4))
(segment (start 118.364 108.69) (end 120.355 108.69) (width 0.25) (layer B.Cu) (net 5))
(segment (start 116.545 108.69) (end 118.11 108.69) (width 0.25) (layer B.Cu) (net 5))
(segment (start 118.11 108.69) (end 118.364 108.69) (width 0.25) (layer B.Cu) (net 5) (status 40000))
(segment (start 115 108.69) (end 116.545 108.69) (width 0.25) (layer B.Cu) (net 5))
(segment (start 113.37 108.69) (end 115 108.69) (width 0.25) (layer B.Cu) (net 5))
(segment (start 119.88 101.52) (end 119.88 101.5) (width 0.25) (layer B.Cu) (net 5))
(segment (start 115 108.69) (end 116.672 108.69) (width 0.25) (layer B.Cu) (net 5))
(segment (start 116.545 105.455) (end 120.25 101.75) (width 0.25) (layer B.Cu) (net 5))
(segment (start 120.25 101.75) (end 120.38 101.75) (width 0.25) (layer B.Cu) (net 5))
(segment (start 116.545 108.69) (end 116.545 105.455) (width 0.25) (layer B.Cu) (net 5))
(segment (start 165.209 111.905) (end 165.44 111.905) (width 0.4) (layer F.Cu) (net 6))
(segment (start 164.719 112.395) (end 165.209 111.905) (width 0.4) (layer F.Cu) (net 6))
(segment (start 167.98 112.5) (end 165.44 112.5) (width 0.4) (layer B.Cu) (net 6))
(segment (start 161.63 111.23) (end 162.9 112.5) (width 0.4) (layer B.Cu) (net 6))
(segment (start 165.44 112.5) (end 162.9 112.5) (width 0.4) (layer B.Cu) (net 6))
(segment (start 127.575 113.77) (end 127.975 113.77) (width 0.4) (layer B.Cu) (net 7))
(segment (start 125.435 111.63) (end 127.575 113.77) (width 0.4) (layer B.Cu) (net 7))
(segment (start 125.435 109.96) (end 125.244 109.96) (width 0.4) (layer B.Cu) (net 7))
(segment (start 169.91 103) (end 166.8 103) (width 0.4) (layer B.Cu) (net 7))
(segment (start 171.8 118.7) (end 171.8 104.89) (width 0.4) (layer B.Cu) (net 7))
(segment (start 171.8 104.89) (end 169.91 103) (width 0.4) (layer B.Cu) (net 7))
(segment (start 159.7 120) (end 170.5 120) (width 0.4) (layer B.Cu) (net 7))
(segment (start 157.3 117.6) (end 159.7 120) (width 0.4) (layer B.Cu) (net 7))
(segment (start 170.5 120) (end 171.8 118.7) (width 0.4) (layer B.Cu) (net 7))
(segment (start 143.215 117.58) (end 145.165 119.53) (width 0.4) (layer B.Cu) (net 7))
(segment (start 145.165 119.53) (end 150.27 119.53) (width 0.4) (layer B.Cu) (net 7))
(segment (start 152.2 117.6) (end 157.3 117.6) (width 0.4) (layer B.Cu) (net 7))
(segment (start 150.27 119.53) (end 152.2 117.6) (width 0.4) (layer B.Cu) (net 7))
(segment (start 165.44 104.36) (end 166.8 103) (width 0.4) (layer B.Cu) (net 7))
(segment (start 147.3425 100.1175) (end 149.565 102.34) (width 0.25) (layer B.Cu) (net 7))
(segment (start 128 101.75) (end 129.6325 100.1175) (width 0.25) (layer B.Cu) (net 7))
(segment (start 129.6325 100.1175) (end 147.3425 100.1175) (width 0.25) (layer B.Cu) (net 7))
(segment (start 163.4 103) (end 166.8 103) (width 0.25) (layer B.Cu) (net 7))
(segment (start 149.565 104.88) (end 152.105 107.42) (width 0.25) (layer B.Cu) (net 7))
(segment (start 149.565 102.34) (end 149.565 104.88) (width 0.25) (layer B.Cu) (net 7))
(segment (start 158.98 107.42) (end 163.4 103) (width 0.25) (layer B.Cu) (net 7))
(segment (start 152.105 107.42) (end 158.98 107.42) (width 0.25) (layer B.Cu) (net 7))
(segment (start 165.44 109.325) (end 165.44 104.36) (width 0.4) (layer B.Cu) (net 7))
(segment (start 125.435 111.63) (end 125.435 109.96) (width 0.4) (layer B.Cu) (net 7))
(segment (start 123.954365 111.399126) (end 125.435 109.96) (width 0.4) (layer B.Cu) (net 7))
(segment (start 123.952 111.865) (end 123.954365 111.399126) (width 0.4) (layer B.Cu) (net 7))
(segment (start 123.952 114.554) (end 123.952 111.865) (width 0.4) (layer B.Cu) (net 7))
(segment (start 132.278 114.278) (end 130.515 114.278) (width 0.4) (layer B.Cu) (net 7))
(segment (start 125.073 115.675) (end 123.952 114.554) (width 0.4) (layer B.Cu) (net 7))
(segment (start 135.58 117.58) (end 132.278 114.278) (width 0.4) (layer B.Cu) (net 7))
(segment (start 129.118 115.675) (end 125.073 115.675) (width 0.4) (layer B.Cu) (net 7))
(segment (start 130.515 114.278) (end 129.118 115.675) (width 0.4) (layer B.Cu) (net 7))
(segment (start 143.215 117.58) (end 135.58 117.58) (width 0.4) (layer B.Cu) (net 7))
(segment (start 165.44 114.405) (end 165.44 115.53637) (width 0.4) (layer F.Cu) (net 8))
(segment (start 165.44 115.53637) (end 165.44 117.9) (width 0.4) (layer B.Cu) (net 8))
(segment (start 161.67 115) (end 161.63 115.04) (width 0.4) (layer B.Cu) (net 8))
(segment (start 165.44 115) (end 161.67 115) (width 0.4) (layer B.Cu) (net 8))
(segment (start 131.34 116.31) (end 131.445 116.31) (width 0.4) (layer F.Cu) (net 9))
(segment (start 129.372 117.834) (end 130.896 116.31) (width 0.4) (layer B.Cu) (net 9))
(segment (start 125.816 117.834) (end 129.372 117.834) (width 0.4) (layer B.Cu) (net 9))
(segment (start 129.425 108.69) (end 130.896 108.69) (width 0.25) (layer B.Cu) (net 10))
(segment (start 127.975 108.69) (end 129.425 108.69) (width 0.25) (layer B.Cu) (net 10))
(segment (start 137.4365 105.515) (end 137.5 105.5785) (width 0.25) (layer F.Cu) (net 10))
(segment (start 136.992 104.88) (end 137.5 104.88) (width 0.25) (layer B.Cu) (net 10))
(segment (start 130.896 103.864) (end 132.42 102.34) (width 0.25) (layer B.Cu) (net 10))
(segment (start 132.42 102.34) (end 133.69 102.34) (width 0.25) (layer B.Cu) (net 10))
(segment (start 130.896 108.69) (end 130.896 103.864) (width 0.25) (layer B.Cu) (net 10))
(segment (start 137.5 103.864) (end 137.5 104.88) (width 0.25) (layer B.Cu) (net 10))
(segment (start 135.976 102.34) (end 137.5 103.864) (width 0.25) (layer B.Cu) (net 10))
(segment (start 133.69 102.34) (end 135.976 102.34) (width 0.25) (layer B.Cu) (net 10))
(segment (start 132.42 111.23) (end 133.69 109.96) (width 0.25) (layer B.Cu) (net 11))
(segment (start 127.975 111.23) (end 132.42 111.23) (width 0.25) (layer B.Cu) (net 11))
(segment (start 136.27 107.38) (end 137.5 107.38) (width 0.25) (layer B.Cu) (net 11) (status 40000))
(segment (start 133.69 109.96) (end 136.27 107.38) (width 0.25) (layer B.Cu) (net 11) (status 40000))
(segment (start 143.85 111.23) (end 151.47 111.23) (width 0.25) (layer B.Cu) (net 11))
(segment (start 140 107.38) (end 143.85 111.23) (width 0.25) (layer B.Cu) (net 11))
(segment (start 137.5 107.38) (end 140 107.38) (width 0.25) (layer B.Cu) (net 11))
(segment (start 143.215 107.42) (end 143.215 102.975) (width 0.25) (layer B.Cu) (net 12))
(segment (start 143.215 107.42) (end 147.66 107.42) (width 0.25) (layer B.Cu) (net 12))
(segment (start 142.072 100.8795) (end 143.215 102.0225) (width 0.25) (layer B.Cu) (net 12))
(segment (start 143.215 102.0225) (end 143.215 102.975) (width 0.25) (layer B.Cu) (net 12))
(segment (start 131.1205 100.8795) (end 142.072 100.8795) (width 0.25) (layer B.Cu) (net 12))
(segment (start 127.975 104.025) (end 131.1205 100.8795) (width 0.25) (layer B.Cu) (net 12))
(segment (start 127.975 106.15) (end 127.975 104.025) (width 0.25) (layer B.Cu) (net 12))
(zone (net 4) (net_name GND) (layer F.Cu) (tstamp 5E160BA3) (hatch edge 0.508)
(connect_pads thru_hole_only (clearance 0.2))
(min_thickness 0.4)
(fill yes (arc_segments 16) (thermal_gap 0.4) (thermal_bridge_width 0.6) (smoothing chamfer) (radius 1))
(polygon
(pts
(xy 175 125.5) (xy 100 125.5) (xy 100 99.5) (xy 175 99.5)
)
)
(filled_polygon
(pts
(xy 115.587451 100.048672) (xy 115.406599 100.255105) (xy 115.269495 100.492854) (xy 115.181408 100.752782) (xy 115.298572 100.97)
(xy 116.445 100.97) (xy 116.445 100.95) (xy 116.645 100.95) (xy 116.645 100.97) (xy 117.791428 100.97)
(xy 117.908592 100.752782) (xy 117.820505 100.492854) (xy 117.683401 100.255105) (xy 117.502549 100.048672) (xy 117.406638 99.975)
(xy 152.704681 99.975) (xy 152.626521 100.0851) (xy 154.9 102.358579) (xy 157.173479 100.0851) (xy 157.095319 99.975)
(xy 167.80325 99.975) (xy 174.525 106.696751) (xy 174.525001 119.303248) (xy 172.20325 121.625) (xy 165.109697 121.625)
(xy 165.072654 121.623486) (xy 165.03989 121.628622) (xy 165.006884 121.631873) (xy 164.993762 121.635853) (xy 164.980216 121.637977)
(xy 164.949081 121.649407) (xy 164.917346 121.659034) (xy 164.905255 121.665497) (xy 164.892381 121.670223) (xy 164.864074 121.687508)
(xy 164.834827 121.703141) (xy 164.824226 121.711841) (xy 164.812525 121.718986) (xy 164.788139 121.741457) (xy 164.762499 121.762499)
(xy 164.7538 121.773099) (xy 164.743717 121.78239) (xy 164.724184 121.809186) (xy 164.703141 121.834827) (xy 164.685661 121.86753)
(xy 162.828327 125.025) (xy 157.095319 125.025) (xy 157.173479 124.9149) (xy 154.9 122.641421) (xy 152.626521 124.9149)
(xy 152.704681 125.025) (xy 112.271674 125.025) (xy 110.765131 122.463877) (xy 151.433495 122.463877) (xy 151.493056 123.140852)
(xy 151.683544 123.793201) (xy 151.997638 124.395852) (xy 152.037775 124.455922) (xy 152.4851 124.773479) (xy 154.758579 122.5)
(xy 155.041421 122.5) (xy 157.3149 124.773479) (xy 157.762225 124.455922) (xy 158.088809 123.859947) (xy 158.29285 123.21171)
(xy 158.366505 122.536123) (xy 158.306944 121.859148) (xy 158.116456 121.206799) (xy 157.802362 120.604148) (xy 157.762225 120.544078)
(xy 157.3149 120.226521) (xy 155.041421 122.5) (xy 154.758579 122.5) (xy 152.4851 120.226521) (xy 152.037775 120.544078)
(xy 151.711191 121.140053) (xy 151.50715 121.78829) (xy 151.433495 122.463877) (xy 110.765131 122.463877) (xy 110.414349 121.867548)
(xy 110.396859 121.834827) (xy 110.375803 121.809171) (xy 110.356282 121.782391) (xy 110.346206 121.773107) (xy 110.337501 121.762499)
(xy 110.311849 121.741447) (xy 110.287474 121.718986) (xy 110.275777 121.711843) (xy 110.265173 121.703141) (xy 110.235918 121.687504)
(xy 110.207618 121.670223) (xy 110.194747 121.665498) (xy 110.182654 121.659034) (xy 110.150914 121.649406) (xy 110.119783 121.637977)
(xy 110.106239 121.635854) (xy 110.093116 121.631873) (xy 110.060109 121.628622) (xy 110.027346 121.623486) (xy 109.990313 121.625)
(xy 107.596752 121.625) (xy 106.152384 120.180634) (xy 106.137501 120.162499) (xy 106.065173 120.103141) (xy 106.031421 120.0851)
(xy 152.626521 120.0851) (xy 154.9 122.358579) (xy 157.173479 120.0851) (xy 156.855922 119.637775) (xy 156.259947 119.311191)
(xy 155.61171 119.10715) (xy 154.936123 119.033495) (xy 154.259148 119.093056) (xy 153.606799 119.283544) (xy 153.004148 119.597638)
(xy 152.944078 119.637775) (xy 152.626521 120.0851) (xy 106.031421 120.0851) (xy 105.982654 120.059034) (xy 105.893116 120.031873)
(xy 105.823332 120.025) (xy 105.803072 120.023005) (xy 105.85559 119.987913) (xy 105.987913 119.85559) (xy 106.091879 119.699994)
(xy 106.163492 119.527105) (xy 106.184358 119.422202) (xy 106.89922 119.422202) (xy 106.976509 119.66475) (xy 107.232259 119.791925)
(xy 107.507906 119.866762) (xy 107.792856 119.886386) (xy 108.076159 119.850042) (xy 108.346928 119.759125) (xy 108.523491 119.66475)
(xy 108.60078 119.422202) (xy 107.75 118.571421) (xy 106.89922 119.422202) (xy 106.184358 119.422202) (xy 106.2 119.343567)
(xy 106.2 119.156433) (xy 106.163492 118.972895) (xy 106.091879 118.800006) (xy 105.987913 118.64441) (xy 105.85559 118.512087)
(xy 105.796877 118.472856) (xy 106.293614 118.472856) (xy 106.329958 118.756159) (xy 106.420875 119.026928) (xy 106.51525 119.203491)
(xy 106.757798 119.28078) (xy 107.608579 118.43) (xy 107.891421 118.43) (xy 108.742202 119.28078) (xy 108.98475 119.203491)
(xy 109.111925 118.947741) (xy 109.186762 118.672094) (xy 109.206386 118.387144) (xy 109.170042 118.103841) (xy 109.079125 117.833072)
(xy 108.98475 117.656509) (xy 108.742202 117.57922) (xy 107.891421 118.43) (xy 107.608579 118.43) (xy 106.757798 117.57922)
(xy 106.51525 117.656509) (xy 106.388075 117.912259) (xy 106.313238 118.187906) (xy 106.293614 118.472856) (xy 105.796877 118.472856)
(xy 105.699994 118.408121) (xy 105.527105 118.336508) (xy 105.343567 118.3) (xy 105.156433 118.3) (xy 104.972895 118.336508)
(xy 104.800006 118.408121) (xy 104.64441 118.512087) (xy 104.512087 118.64441) (xy 104.408121 118.800006) (xy 104.336508 118.972895)
(xy 104.3 119.156433) (xy 104.3 119.343567) (xy 104.336508 119.527105) (xy 104.408121 119.699994) (xy 104.512087 119.85559)
(xy 104.64441 119.987913) (xy 104.699915 120.025) (xy 101.696751 120.025) (xy 101.093953 119.422202) (xy 101.89922 119.422202)
(xy 101.976509 119.66475) (xy 102.232259 119.791925) (xy 102.507906 119.866762) (xy 102.792856 119.886386) (xy 103.076159 119.850042)
(xy 103.346928 119.759125) (xy 103.523491 119.66475) (xy 103.60078 119.422202) (xy 102.75 118.571421) (xy 101.89922 119.422202)
(xy 101.093953 119.422202) (xy 100.475 118.80325) (xy 100.475 118.472856) (xy 101.293614 118.472856) (xy 101.329958 118.756159)
(xy 101.420875 119.026928) (xy 101.51525 119.203491) (xy 101.757798 119.28078) (xy 102.608579 118.43) (xy 102.891421 118.43)
(xy 103.742202 119.28078) (xy 103.98475 119.203491) (xy 104.111925 118.947741) (xy 104.186762 118.672094) (xy 104.206386 118.387144)
(xy 104.170042 118.103841) (xy 104.079125 117.833072) (xy 103.98475 117.656509) (xy 103.742202 117.57922) (xy 102.891421 118.43)
(xy 102.608579 118.43) (xy 101.757798 117.57922) (xy 101.51525 117.656509) (xy 101.388075 117.912259) (xy 101.313238 118.187906)
(xy 101.293614 118.472856) (xy 100.475 118.472856) (xy 100.475 117.437798) (xy 101.89922 117.437798) (xy 102.75 118.288579)
(xy 103.60078 117.437798) (xy 106.89922 117.437798) (xy 107.75 118.288579) (xy 108.60078 117.437798) (xy 108.523491 117.19525)
(xy 108.267741 117.068075) (xy 107.992094 116.993238) (xy 107.707144 116.973614) (xy 107.423841 117.009958) (xy 107.153072 117.100875)
(xy 106.976509 117.19525) (xy 106.89922 117.437798) (xy 103.60078 117.437798) (xy 103.523491 117.19525) (xy 103.267741 117.068075)
(xy 102.992094 116.993238) (xy 102.707144 116.973614) (xy 102.423841 117.009958) (xy 102.153072 117.100875) (xy 101.976509 117.19525)
(xy 101.89922 117.437798) (xy 100.475 117.437798) (xy 100.475 116.82681) (xy 112.17 116.82681) (xy 112.17 117.06319)
(xy 112.216116 117.295027) (xy 112.306574 117.513413) (xy 112.437899 117.709955) (xy 112.605045 117.877101) (xy 112.801587 118.008426)
(xy 113.019973 118.098884) (xy 113.25181 118.145) (xy 113.48819 118.145) (xy 113.720027 118.098884) (xy 113.938413 118.008426)
(xy 114.134955 117.877101) (xy 114.302101 117.709955) (xy 114.433426 117.513413) (xy 114.523884 117.295027) (xy 114.57 117.06319)
(xy 114.57 116.82681) (xy 114.67 116.82681) (xy 114.67 117.06319) (xy 114.716116 117.295027) (xy 114.806574 117.513413)
(xy 114.937899 117.709955) (xy 115.105045 117.877101) (xy 115.301587 118.008426) (xy 115.519973 118.098884) (xy 115.75181 118.145)
(xy 115.98819 118.145) (xy 116.220027 118.098884) (xy 116.438413 118.008426) (xy 116.634955 117.877101) (xy 116.796246 117.71581)
(xy 122.116 117.71581) (xy 122.116 117.95219) (xy 122.162116 118.184027) (xy 122.252574 118.402413) (xy 122.383899 118.598955)
(xy 122.551045 118.766101) (xy 122.747587 118.897426) (xy 122.965973 118.987884) (xy 123.19781 119.034) (xy 123.43419 119.034)
(xy 123.666027 118.987884) (xy 123.884413 118.897426) (xy 124.080955 118.766101) (xy 124.248101 118.598955) (xy 124.379426 118.402413)
(xy 124.469884 118.184027) (xy 124.516 117.95219) (xy 124.516 117.71581) (xy 124.616 117.71581) (xy 124.616 117.95219)
(xy 124.662116 118.184027) (xy 124.752574 118.402413) (xy 124.883899 118.598955) (xy 125.051045 118.766101) (xy 125.247587 118.897426)
(xy 125.465973 118.987884) (xy 125.69781 119.034) (xy 125.93419 119.034) (xy 126.166027 118.987884) (xy 126.384413 118.897426)
(xy 126.580955 118.766101) (xy 126.748101 118.598955) (xy 126.879426 118.402413) (xy 126.969884 118.184027) (xy 127.016 117.95219)
(xy 127.016 117.71581) (xy 126.969884 117.483973) (xy 126.879426 117.265587) (xy 126.748101 117.069045) (xy 126.580955 116.901899)
(xy 126.384413 116.770574) (xy 126.166027 116.680116) (xy 125.93419 116.634) (xy 125.69781 116.634) (xy 125.465973 116.680116)
(xy 125.247587 116.770574) (xy 125.051045 116.901899) (xy 124.883899 117.069045) (xy 124.752574 117.265587) (xy 124.662116 117.483973)
(xy 124.616 117.71581) (xy 124.516 117.71581) (xy 124.469884 117.483973) (xy 124.379426 117.265587) (xy 124.248101 117.069045)
(xy 124.080955 116.901899) (xy 123.884413 116.770574) (xy 123.666027 116.680116) (xy 123.43419 116.634) (xy 123.19781 116.634)
(xy 122.965973 116.680116) (xy 122.747587 116.770574) (xy 122.551045 116.901899) (xy 122.383899 117.069045) (xy 122.252574 117.265587)
(xy 122.162116 117.483973) (xy 122.116 117.71581) (xy 116.796246 117.71581) (xy 116.802101 117.709955) (xy 116.933426 117.513413)
(xy 117.023884 117.295027) (xy 117.07 117.06319) (xy 117.07 116.82681) (xy 117.023884 116.594973) (xy 116.933426 116.376587)
(xy 116.809963 116.19181) (xy 129.696 116.19181) (xy 129.696 116.42819) (xy 129.742116 116.660027) (xy 129.832574 116.878413)
(xy 129.963899 117.074955) (xy 130.131045 117.242101) (xy 130.327587 117.373426) (xy 130.545973 117.463884) (xy 130.77781 117.51)
(xy 131.01419 117.51) (xy 131.246027 117.463884) (xy 131.251034 117.46181) (xy 142.015 117.46181) (xy 142.015 117.69819)
(xy 142.061116 117.930027) (xy 142.151574 118.148413) (xy 142.282899 118.344955) (xy 142.450045 118.512101) (xy 142.646587 118.643426)
(xy 142.864973 118.733884) (xy 143.09681 118.78) (xy 143.33319 118.78) (xy 143.565027 118.733884) (xy 143.783413 118.643426)
(xy 143.979955 118.512101) (xy 144.147101 118.344955) (xy 144.278426 118.148413) (xy 144.368884 117.930027) (xy 144.37541 117.897218)
(xy 146.296408 117.897218) (xy 146.384495 118.157146) (xy 146.521599 118.394895) (xy 146.702451 118.601328) (xy 146.920101 118.768512)
(xy 147.166185 118.890022) (xy 147.342782 118.943588) (xy 147.56 118.825994) (xy 147.56 117.68) (xy 147.76 117.68)
(xy 147.76 118.825994) (xy 147.977218 118.943588) (xy 148.153815 118.890022) (xy 148.399899 118.768512) (xy 148.617549 118.601328)
(xy 148.798401 118.394895) (xy 148.935505 118.157146) (xy 149.023592 117.897218) (xy 148.906428 117.68) (xy 147.76 117.68)
(xy 147.56 117.68) (xy 146.413572 117.68) (xy 146.296408 117.897218) (xy 144.37541 117.897218) (xy 144.415 117.69819)
(xy 144.415 117.46181) (xy 144.375411 117.262782) (xy 146.296408 117.262782) (xy 146.413572 117.48) (xy 147.56 117.48)
(xy 147.56 116.334006) (xy 147.76 116.334006) (xy 147.76 117.48) (xy 148.906428 117.48) (xy 148.968457 117.365)
(xy 164.188065 117.365) (xy 164.188065 119.065) (xy 164.195788 119.143414) (xy 164.21866 119.218814) (xy 164.255803 119.288303)
(xy 164.305789 119.349211) (xy 164.366697 119.399197) (xy 164.436186 119.43634) (xy 164.511586 119.459212) (xy 164.59 119.466935)
(xy 166.29 119.466935) (xy 166.368414 119.459212) (xy 166.443814 119.43634) (xy 166.513303 119.399197) (xy 166.574211 119.349211)
(xy 166.624197 119.288303) (xy 166.66134 119.218814) (xy 166.684212 119.143414) (xy 166.691935 119.065) (xy 166.691935 118.869604)
(xy 166.798861 119.056085) (xy 166.985644 119.270353) (xy 167.210639 119.444064) (xy 167.465201 119.570543) (xy 167.654941 119.628095)
(xy 167.88 119.511148) (xy 167.88 118.315) (xy 168.08 118.315) (xy 168.08 119.511148) (xy 168.305059 119.628095)
(xy 168.494799 119.570543) (xy 168.749361 119.444064) (xy 168.974356 119.270353) (xy 169.161139 119.056085) (xy 169.302531 118.809495)
(xy 169.393099 118.540059) (xy 169.276552 118.315) (xy 168.08 118.315) (xy 167.88 118.315) (xy 167.86 118.315)
(xy 167.86 118.115) (xy 167.88 118.115) (xy 167.88 116.918852) (xy 168.08 116.918852) (xy 168.08 118.115)
(xy 169.276552 118.115) (xy 169.393099 117.889941) (xy 169.302531 117.620505) (xy 169.161139 117.373915) (xy 168.974356 117.159647)
(xy 168.749361 116.985936) (xy 168.494799 116.859457) (xy 168.305059 116.801905) (xy 168.08 116.918852) (xy 167.88 116.918852)
(xy 167.654941 116.801905) (xy 167.465201 116.859457) (xy 167.210639 116.985936) (xy 166.985644 117.159647) (xy 166.798861 117.373915)
(xy 166.691935 117.560396) (xy 166.691935 117.365) (xy 166.684212 117.286586) (xy 166.66134 117.211186) (xy 166.624197 117.141697)
(xy 166.574211 117.080789) (xy 166.513303 117.030803) (xy 166.443814 116.99366) (xy 166.368414 116.970788) (xy 166.29 116.963065)
(xy 164.59 116.963065) (xy 164.511586 116.970788) (xy 164.436186 116.99366) (xy 164.366697 117.030803) (xy 164.305789 117.080789)
(xy 164.255803 117.141697) (xy 164.21866 117.211186) (xy 164.195788 117.286586) (xy 164.188065 117.365) (xy 148.968457 117.365)
(xy 149.023592 117.262782) (xy 148.935505 117.002854) (xy 148.798401 116.765105) (xy 148.617549 116.558672) (xy 148.399899 116.391488)
(xy 148.153815 116.269978) (xy 147.977218 116.216412) (xy 147.76 116.334006) (xy 147.56 116.334006) (xy 147.342782 116.216412)
(xy 147.166185 116.269978) (xy 146.920101 116.391488) (xy 146.702451 116.558672) (xy 146.521599 116.765105) (xy 146.384495 117.002854)
(xy 146.296408 117.262782) (xy 144.375411 117.262782) (xy 144.368884 117.229973) (xy 144.278426 117.011587) (xy 144.147101 116.815045)
(xy 143.979955 116.647899) (xy 143.783413 116.516574) (xy 143.565027 116.426116) (xy 143.33319 116.38) (xy 143.09681 116.38)
(xy 142.864973 116.426116) (xy 142.646587 116.516574) (xy 142.450045 116.647899) (xy 142.282899 116.815045) (xy 142.151574 117.011587)
(xy 142.061116 117.229973) (xy 142.015 117.46181) (xy 131.251034 117.46181) (xy 131.464413 117.373426) (xy 131.660955 117.242101)
(xy 131.828101 117.074955) (xy 131.959426 116.878413) (xy 132.049884 116.660027) (xy 132.096 116.42819) (xy 132.096 116.19181)
(xy 132.049884 115.959973) (xy 131.959426 115.741587) (xy 131.828101 115.545045) (xy 131.660955 115.377899) (xy 131.464413 115.246574)
(xy 131.246027 115.156116) (xy 131.01419 115.11) (xy 130.77781 115.11) (xy 130.545973 115.156116) (xy 130.327587 115.246574)
(xy 130.131045 115.377899) (xy 129.963899 115.545045) (xy 129.832574 115.741587) (xy 129.742116 115.959973) (xy 129.696 116.19181)
(xy 116.809963 116.19181) (xy 116.802101 116.180045) (xy 116.634955 116.012899) (xy 116.438413 115.881574) (xy 116.220027 115.791116)
(xy 115.98819 115.745) (xy 115.75181 115.745) (xy 115.519973 115.791116) (xy 115.301587 115.881574) (xy 115.105045 116.012899)
(xy 114.937899 116.180045) (xy 114.806574 116.376587) (xy 114.716116 116.594973) (xy 114.67 116.82681) (xy 114.57 116.82681)
(xy 114.523884 116.594973) (xy 114.433426 116.376587) (xy 114.302101 116.180045) (xy 114.134955 116.012899) (xy 113.938413 115.881574)
(xy 113.720027 115.791116) (xy 113.48819 115.745) (xy 113.25181 115.745) (xy 113.019973 115.791116) (xy 112.801587 115.881574)
(xy 112.605045 116.012899) (xy 112.437899 116.180045) (xy 112.306574 116.376587) (xy 112.216116 116.594973) (xy 112.17 116.82681)
(xy 100.475 116.82681) (xy 100.475 113.291762) (xy 100.550006 113.341879) (xy 100.722895 113.413492) (xy 100.906433 113.45)
(xy 101.093567 113.45) (xy 101.277105 113.413492) (xy 101.449994 113.341879) (xy 101.498065 113.309759) (xy 101.498065 114.2)
(xy 101.505788 114.278414) (xy 101.52866 114.353814) (xy 101.565803 114.423303) (xy 101.615789 114.484211) (xy 101.676697 114.534197)
(xy 101.746186 114.57134) (xy 101.821586 114.594212) (xy 101.9 114.601935) (xy 103.6 114.601935) (xy 103.678414 114.594212)
(xy 103.753814 114.57134) (xy 103.823303 114.534197) (xy 103.884211 114.484211) (xy 103.934197 114.423303) (xy 103.97134 114.353814)
(xy 103.994212 114.278414) (xy 104.001935 114.2) (xy 104.001935 110.8) (xy 106.498065 110.8) (xy 106.498065 114.2)
(xy 106.505788 114.278414) (xy 106.52866 114.353814) (xy 106.565803 114.423303) (xy 106.615789 114.484211) (xy 106.676697 114.534197)
(xy 106.746186 114.57134) (xy 106.821586 114.594212) (xy 106.9 114.601935) (xy 108.6 114.601935) (xy 108.678414 114.594212)
(xy 108.753814 114.57134) (xy 108.823303 114.534197) (xy 108.884211 114.484211) (xy 108.934197 114.423303) (xy 108.97134 114.353814)
(xy 108.994212 114.278414) (xy 109.001935 114.2) (xy 109.001935 113.61181) (xy 112.17 113.61181) (xy 112.17 113.84819)
(xy 112.216116 114.080027) (xy 112.306574 114.298413) (xy 112.437899 114.494955) (xy 112.605045 114.662101) (xy 112.801587 114.793426)
(xy 113.019973 114.883884) (xy 113.25181 114.93) (xy 113.48819 114.93) (xy 113.720027 114.883884) (xy 113.938413 114.793426)
(xy 114.134955 114.662101) (xy 114.302101 114.494955) (xy 114.433426 114.298413) (xy 114.523884 114.080027) (xy 114.57 113.84819)
(xy 114.57 113.661659) (xy 115.445 113.661659) (xy 115.445 113.878341) (xy 115.487273 114.090858) (xy 115.570193 114.291045)
(xy 115.690575 114.471209) (xy 115.843791 114.624425) (xy 116.023955 114.744807) (xy 116.224142 114.827727) (xy 116.436659 114.87)
(xy 116.653341 114.87) (xy 116.865858 114.827727) (xy 117.066045 114.744807) (xy 117.246209 114.624425) (xy 117.399425 114.471209)
(xy 117.519807 114.291045) (xy 117.602727 114.090858) (xy 117.645 113.878341) (xy 117.645 113.661659) (xy 117.602727 113.449142)
(xy 117.519807 113.248955) (xy 117.399425 113.068791) (xy 117.300634 112.97) (xy 118.753065 112.97) (xy 118.753065 114.57)
(xy 118.760788 114.648414) (xy 118.78366 114.723814) (xy 118.820803 114.793303) (xy 118.870789 114.854211) (xy 118.931697 114.904197)
(xy 119.001186 114.94134) (xy 119.076586 114.964212) (xy 119.155 114.971935) (xy 121.555 114.971935) (xy 121.633414 114.964212)
(xy 121.708814 114.94134) (xy 121.778303 114.904197) (xy 121.839211 114.854211) (xy 121.889197 114.793303) (xy 121.92634 114.723814)
(xy 121.949212 114.648414) (xy 121.956935 114.57) (xy 121.956935 113.77) (xy 126.369194 113.77) (xy 126.392363 114.005241)
(xy 126.460981 114.231442) (xy 126.572409 114.43991) (xy 126.722366 114.622634) (xy 126.90509 114.772591) (xy 127.113558 114.884019)
(xy 127.339759 114.952637) (xy 127.51605 114.97) (xy 128.43395 114.97) (xy 128.610241 114.952637) (xy 128.734641 114.9149)
(xy 135.226521 114.9149) (xy 135.544078 115.362225) (xy 136.140053 115.688809) (xy 136.78829 115.89285) (xy 137.463877 115.966505)
(xy 138.140852 115.906944) (xy 138.793201 115.716456) (xy 139.395852 115.402362) (xy 139.455922 115.362225) (xy 139.773479 114.9149)
(xy 137.5 112.641421) (xy 135.226521 114.9149) (xy 128.734641 114.9149) (xy 128.836442 114.884019) (xy 129.04491 114.772591)
(xy 129.227634 114.622634) (xy 129.377591 114.43991) (xy 129.489019 114.231442) (xy 129.557637 114.005241) (xy 129.580806 113.77)
(xy 129.557637 113.534759) (xy 129.489019 113.308558) (xy 129.377591 113.10009) (xy 129.227634 112.917366) (xy 129.04491 112.767409)
(xy 128.836442 112.655981) (xy 128.610241 112.587363) (xy 128.43395 112.57) (xy 127.51605 112.57) (xy 127.339759 112.587363)
(xy 127.113558 112.655981) (xy 126.90509 112.767409) (xy 126.722366 112.917366) (xy 126.572409 113.10009) (xy 126.460981 113.308558)
(xy 126.392363 113.534759) (xy 126.369194 113.77) (xy 121.956935 113.77) (xy 121.956935 112.97) (xy 121.949212 112.891586)
(xy 121.92634 112.816186) (xy 121.889197 112.746697) (xy 121.839211 112.685789) (xy 121.778303 112.635803) (xy 121.708814 112.59866)
(xy 121.633414 112.575788) (xy 121.555 112.568065) (xy 119.155 112.568065) (xy 119.076586 112.575788) (xy 119.001186 112.59866)
(xy 118.931697 112.635803) (xy 118.870789 112.685789) (xy 118.820803 112.746697) (xy 118.78366 112.816186) (xy 118.760788 112.891586)
(xy 118.753065 112.97) (xy 117.300634 112.97) (xy 117.246209 112.915575) (xy 117.066045 112.795193) (xy 116.865858 112.712273)
(xy 116.653341 112.67) (xy 116.436659 112.67) (xy 116.224142 112.712273) (xy 116.023955 112.795193) (xy 115.843791 112.915575)
(xy 115.690575 113.068791) (xy 115.570193 113.248955) (xy 115.487273 113.449142) (xy 115.445 113.661659) (xy 114.57 113.661659)
(xy 114.57 113.61181) (xy 114.523884 113.379973) (xy 114.433426 113.161587) (xy 114.302101 112.965045) (xy 114.134955 112.797899)
(xy 113.938413 112.666574) (xy 113.720027 112.576116) (xy 113.48819 112.53) (xy 113.25181 112.53) (xy 113.019973 112.576116)
(xy 112.801587 112.666574) (xy 112.605045 112.797899) (xy 112.437899 112.965045) (xy 112.306574 113.161587) (xy 112.216116 113.379973)
(xy 112.17 113.61181) (xy 109.001935 113.61181) (xy 109.001935 113.309759) (xy 109.050006 113.341879) (xy 109.222895 113.413492)
(xy 109.406433 113.45) (xy 109.593567 113.45) (xy 109.777105 113.413492) (xy 109.949994 113.341879) (xy 110.10559 113.237913)
(xy 110.237913 113.10559) (xy 110.341879 112.949994) (xy 110.413492 112.777105) (xy 110.45 112.593567) (xy 110.45 112.406433)
(xy 110.413492 112.222895) (xy 110.341879 112.050006) (xy 110.237913 111.89441) (xy 110.10559 111.762087) (xy 109.949994 111.658121)
(xy 109.777105 111.586508) (xy 109.593567 111.55) (xy 109.406433 111.55) (xy 109.222895 111.586508) (xy 109.050006 111.658121)
(xy 109.001935 111.690241) (xy 109.001935 111.11181) (xy 112.17 111.11181) (xy 112.17 111.34819) (xy 112.216116 111.580027)
(xy 112.306574 111.798413) (xy 112.437899 111.994955) (xy 112.605045 112.162101) (xy 112.801587 112.293426) (xy 113.019973 112.383884)
(xy 113.25181 112.43) (xy 113.48819 112.43) (xy 113.720027 112.383884) (xy 113.938413 112.293426) (xy 114.134955 112.162101)
(xy 114.302101 111.994955) (xy 114.433426 111.798413) (xy 114.523884 111.580027) (xy 114.57 111.34819) (xy 114.57 111.121659)
(xy 115.445 111.121659) (xy 115.445 111.338341) (xy 115.487273 111.550858) (xy 115.570193 111.751045) (xy 115.690575 111.931209)
(xy 115.843791 112.084425) (xy 116.023955 112.204807) (xy 116.224142 112.287727) (xy 116.436659 112.33) (xy 116.653341 112.33)
(xy 116.865858 112.287727) (xy 117.066045 112.204807) (xy 117.246209 112.084425) (xy 117.399425 111.931209) (xy 117.519807 111.751045)
(xy 117.602727 111.550858) (xy 117.645 111.338341) (xy 117.645 111.121659) (xy 117.602727 110.909142) (xy 117.519807 110.708955)
(xy 117.399425 110.528791) (xy 117.246209 110.375575) (xy 117.066045 110.255193) (xy 116.865858 110.172273) (xy 116.653341 110.13)
(xy 116.436659 110.13) (xy 116.224142 110.172273) (xy 116.023955 110.255193) (xy 115.843791 110.375575) (xy 115.690575 110.528791)
(xy 115.570193 110.708955) (xy 115.487273 110.909142) (xy 115.445 111.121659) (xy 114.57 111.121659) (xy 114.57 111.11181)
(xy 114.523884 110.879973) (xy 114.433426 110.661587) (xy 114.302101 110.465045) (xy 114.134955 110.297899) (xy 113.938413 110.166574)
(xy 113.720027 110.076116) (xy 113.48819 110.03) (xy 113.25181 110.03) (xy 113.019973 110.076116) (xy 112.801587 110.166574)
(xy 112.605045 110.297899) (xy 112.437899 110.465045) (xy 112.306574 110.661587) (xy 112.216116 110.879973) (xy 112.17 111.11181)
(xy 109.001935 111.11181) (xy 109.001935 110.8) (xy 108.994212 110.721586) (xy 108.97134 110.646186) (xy 108.934197 110.576697)
(xy 108.884211 110.515789) (xy 108.823303 110.465803) (xy 108.753814 110.42866) (xy 108.678414 110.405788) (xy 108.6 110.398065)
(xy 106.9 110.398065) (xy 106.821586 110.405788) (xy 106.746186 110.42866) (xy 106.676697 110.465803) (xy 106.615789 110.515789)
(xy 106.565803 110.576697) (xy 106.52866 110.646186) (xy 106.505788 110.721586) (xy 106.498065 110.8) (xy 104.001935 110.8)
(xy 103.994212 110.721586) (xy 103.97134 110.646186) (xy 103.934197 110.576697) (xy 103.884211 110.515789) (xy 103.823303 110.465803)
(xy 103.753814 110.42866) (xy 103.678414 110.405788) (xy 103.6 110.398065) (xy 101.9 110.398065) (xy 101.821586 110.405788)
(xy 101.746186 110.42866) (xy 101.676697 110.465803) (xy 101.615789 110.515789) (xy 101.565803 110.576697) (xy 101.52866 110.646186)
(xy 101.505788 110.721586) (xy 101.498065 110.8) (xy 101.498065 111.690241) (xy 101.449994 111.658121) (xy 101.277105 111.586508)
(xy 101.093567 111.55) (xy 100.906433 111.55) (xy 100.722895 111.586508) (xy 100.550006 111.658121) (xy 100.475 111.708238)
(xy 100.475 108.57181) (xy 112.17 108.57181) (xy 112.17 108.80819) (xy 112.216116 109.040027) (xy 112.306574 109.258413)
(xy 112.437899 109.454955) (xy 112.605045 109.622101) (xy 112.801587 109.753426) (xy 113.019973 109.843884) (xy 113.25181 109.89)
(xy 113.48819 109.89) (xy 113.720027 109.843884) (xy 113.938413 109.753426) (xy 114.134955 109.622101) (xy 114.302101 109.454955)
(xy 114.433426 109.258413) (xy 114.523884 109.040027) (xy 114.57 108.80819) (xy 114.57 108.57181) (xy 115.345 108.57181)
(xy 115.345 108.80819) (xy 115.391116 109.040027) (xy 115.481574 109.258413) (xy 115.612899 109.454955) (xy 115.780045 109.622101)
(xy 115.976587 109.753426) (xy 116.194973 109.843884) (xy 116.42681 109.89) (xy 116.66319 109.89) (xy 116.895027 109.843884)
(xy 117.113413 109.753426) (xy 117.309955 109.622101) (xy 117.477101 109.454955) (xy 117.608426 109.258413) (xy 117.698884 109.040027)
(xy 117.745 108.80819) (xy 117.745 108.57181) (xy 117.698884 108.339973) (xy 117.608426 108.121587) (xy 117.477101 107.925045)
(xy 117.309955 107.757899) (xy 117.113413 107.626574) (xy 116.895027 107.536116) (xy 116.66319 107.49) (xy 116.42681 107.49)
(xy 116.194973 107.536116) (xy 115.976587 107.626574) (xy 115.780045 107.757899) (xy 115.612899 107.925045) (xy 115.481574 108.121587)
(xy 115.391116 108.339973) (xy 115.345 108.57181) (xy 114.57 108.57181) (xy 114.523884 108.339973) (xy 114.433426 108.121587)
(xy 114.302101 107.925045) (xy 114.134955 107.757899) (xy 113.938413 107.626574) (xy 113.737875 107.543509) (xy 113.949496 107.471874)
(xy 114.113888 107.384004) (xy 114.185145 107.146566) (xy 113.37 106.331421) (xy 112.554855 107.146566) (xy 112.626112 107.384004)
(xy 112.873344 107.506187) (xy 113.006075 107.541873) (xy 112.801587 107.626574) (xy 112.605045 107.757899) (xy 112.437899 107.925045)
(xy 112.306574 108.121587) (xy 112.216116 108.339973) (xy 112.17 108.57181) (xy 100.475 108.57181) (xy 100.475 107.562202)
(xy 101.89922 107.562202) (xy 101.976509 107.80475) (xy 102.232259 107.931925) (xy 102.507906 108.006762) (xy 102.792856 108.026386)
(xy 103.076159 107.990042) (xy 103.346928 107.899125) (xy 103.523491 107.80475) (xy 103.60078 107.562202) (xy 106.89922 107.562202)
(xy 106.976509 107.80475) (xy 107.232259 107.931925) (xy 107.507906 108.006762) (xy 107.792856 108.026386) (xy 108.076159 107.990042)
(xy 108.346928 107.899125) (xy 108.523491 107.80475) (xy 108.60078 107.562202) (xy 107.75 106.711421) (xy 106.89922 107.562202)
(xy 103.60078 107.562202) (xy 102.75 106.711421) (xy 101.89922 107.562202) (xy 100.475 107.562202) (xy 100.475 106.612856)
(xy 101.293614 106.612856) (xy 101.329958 106.896159) (xy 101.420875 107.166928) (xy 101.51525 107.343491) (xy 101.757798 107.42078)
(xy 102.608579 106.57) (xy 102.891421 106.57) (xy 103.742202 107.42078) (xy 103.98475 107.343491) (xy 104.111925 107.087741)
(xy 104.186762 106.812094) (xy 104.206386 106.527144) (xy 104.170042 106.243841) (xy 104.079125 105.973072) (xy 103.98475 105.796509)
(xy 103.742202 105.71922) (xy 102.891421 106.57) (xy 102.608579 106.57) (xy 101.757798 105.71922) (xy 101.51525 105.796509)
(xy 101.388075 106.052259) (xy 101.313238 106.327906) (xy 101.293614 106.612856) (xy 100.475 106.612856) (xy 100.475 106.19675)
(xy 101.093952 105.577798) (xy 101.89922 105.577798) (xy 102.75 106.428579) (xy 103.60078 105.577798) (xy 103.523491 105.33525)
(xy 103.267741 105.208075) (xy 102.992094 105.133238) (xy 102.707144 105.113614) (xy 102.423841 105.149958) (xy 102.153072 105.240875)
(xy 101.976509 105.33525) (xy 101.89922 105.577798) (xy 101.093952 105.577798) (xy 101.696751 104.975) (xy 104.699915 104.975)
(xy 104.64441 105.012087) (xy 104.512087 105.14441) (xy 104.408121 105.300006) (xy 104.336508 105.472895) (xy 104.3 105.656433)
(xy 104.3 105.843567) (xy 104.336508 106.027105) (xy 104.408121 106.199994) (xy 104.512087 106.35559) (xy 104.64441 106.487913)
(xy 104.800006 106.591879) (xy 104.972895 106.663492) (xy 105.156433 106.7) (xy 105.343567 106.7) (xy 105.527105 106.663492)
(xy 105.649351 106.612856) (xy 106.293614 106.612856) (xy 106.329958 106.896159) (xy 106.420875 107.166928) (xy 106.51525 107.343491)
(xy 106.757798 107.42078) (xy 107.608579 106.57) (xy 107.891421 106.57) (xy 108.742202 107.42078) (xy 108.98475 107.343491)
(xy 109.111925 107.087741) (xy 109.186762 106.812094) (xy 109.206386 106.527144) (xy 109.170042 106.243841) (xy 109.167018 106.234833)
(xy 111.96394 106.234833) (xy 111.999703 106.50828) (xy 112.088126 106.769496) (xy 112.175996 106.933888) (xy 112.413434 107.005145)
(xy 113.228579 106.19) (xy 113.511421 106.19) (xy 114.326566 107.005145) (xy 114.564004 106.933888) (xy 114.686187 106.686656)
(xy 114.757789 106.420337) (xy 114.77606 106.145167) (xy 114.740297 105.87172) (xy 114.651874 105.610504) (xy 114.564004 105.446112)
(xy 114.326566 105.374855) (xy 113.511421 106.19) (xy 113.228579 106.19) (xy 112.413434 105.374855) (xy 112.175996 105.446112)
(xy 112.053813 105.693344) (xy 111.982211 105.959663) (xy 111.96394 106.234833) (xy 109.167018 106.234833) (xy 109.079125 105.973072)
(xy 108.98475 105.796509) (xy 108.742202 105.71922) (xy 107.891421 106.57) (xy 107.608579 106.57) (xy 106.757798 105.71922)
(xy 106.51525 105.796509) (xy 106.388075 106.052259) (xy 106.313238 106.327906) (xy 106.293614 106.612856) (xy 105.649351 106.612856)
(xy 105.699994 106.591879) (xy 105.85559 106.487913) (xy 105.987913 106.35559) (xy 106.091879 106.199994) (xy 106.163492 106.027105)
(xy 106.2 105.843567) (xy 106.2 105.656433) (xy 106.184359 105.577798) (xy 106.89922 105.577798) (xy 107.75 106.428579)
(xy 108.60078 105.577798) (xy 108.523491 105.33525) (xy 108.318739 105.233434) (xy 112.554855 105.233434) (xy 113.37 106.048579)
(xy 114.185145 105.233434) (xy 114.113888 104.995996) (xy 113.879176 104.88) (xy 118.504 104.88) (xy 118.504 107.337305)
(xy 118.507843 107.376323) (xy 118.519224 107.413842) (xy 118.537706 107.448419) (xy 118.562579 107.478726) (xy 118.592886 107.503599)
(xy 118.627463 107.522081) (xy 118.664982 107.533462) (xy 118.704 107.537305) (xy 119.621054 107.537305) (xy 119.493558 107.575981)
(xy 119.28509 107.687409) (xy 119.102366 107.837366) (xy 118.952409 108.02009) (xy 118.840981 108.228558) (xy 118.772363 108.454759)
(xy 118.749194 108.69) (xy 118.772363 108.925241) (xy 118.840981 109.151442) (xy 118.952409 109.35991) (xy 119.102366 109.542634)
(xy 119.28509 109.692591) (xy 119.493558 109.804019) (xy 119.719759 109.872637) (xy 119.89605 109.89) (xy 120.81395 109.89)
(xy 120.990241 109.872637) (xy 121.216442 109.804019) (xy 121.42491 109.692591) (xy 121.594625 109.55331) (xy 121.547211 109.729663)
(xy 121.52894 110.004833) (xy 121.564703 110.27828) (xy 121.594632 110.366696) (xy 121.42491 110.227409) (xy 121.216442 110.115981)
(xy 120.990241 110.047363) (xy 120.81395 110.03) (xy 119.89605 110.03) (xy 119.719759 110.047363) (xy 119.493558 110.115981)
(xy 119.28509 110.227409) (xy 119.102366 110.377366) (xy 118.952409 110.56009) (xy 118.840981 110.768558) (xy 118.772363 110.994759)
(xy 118.749194 111.23) (xy 118.772363 111.465241) (xy 118.840981 111.691442) (xy 118.952409 111.89991) (xy 119.102366 112.082634)
(xy 119.28509 112.232591) (xy 119.493558 112.344019) (xy 119.719759 112.412637) (xy 119.89605 112.43) (xy 120.81395 112.43)
(xy 120.990241 112.412637) (xy 121.216442 112.344019) (xy 121.42491 112.232591) (xy 121.607634 112.082634) (xy 121.757591 111.89991)
(xy 121.869019 111.691442) (xy 121.937637 111.465241) (xy 121.960806 111.23) (xy 121.937637 110.994759) (xy 121.913918 110.916566)
(xy 122.119855 110.916566) (xy 122.191112 111.154004) (xy 122.438344 111.276187) (xy 122.704663 111.347789) (xy 122.979833 111.36606)
(xy 123.25328 111.330297) (xy 123.514496 111.241874) (xy 123.53671 111.23) (xy 126.369194 111.23) (xy 126.392363 111.465241)
(xy 126.460981 111.691442) (xy 126.572409 111.89991) (xy 126.722366 112.082634) (xy 126.90509 112.232591) (xy 127.113558 112.344019)
(xy 127.339759 112.412637) (xy 127.51605 112.43) (xy 128.43395 112.43) (xy 128.610241 112.412637) (xy 128.836442 112.344019)
(xy 129.04491 112.232591) (xy 129.227634 112.082634) (xy 129.377591 111.89991) (xy 129.489019 111.691442) (xy 129.557637 111.465241)
(xy 129.580806 111.23) (xy 129.557637 110.994759) (xy 129.489019 110.768558) (xy 129.377591 110.56009) (xy 129.227634 110.377366)
(xy 129.04491 110.227409) (xy 128.836442 110.115981) (xy 128.610241 110.047363) (xy 128.43395 110.03) (xy 127.51605 110.03)
(xy 127.339759 110.047363) (xy 127.113558 110.115981) (xy 126.90509 110.227409) (xy 126.722366 110.377366) (xy 126.572409 110.56009)
(xy 126.460981 110.768558) (xy 126.392363 110.994759) (xy 126.369194 111.23) (xy 123.53671 111.23) (xy 123.678888 111.154004)
(xy 123.750145 110.916566) (xy 122.935 110.101421) (xy 122.119855 110.916566) (xy 121.913918 110.916566) (xy 121.869019 110.768558)
(xy 121.852308 110.737294) (xy 121.978434 110.775145) (xy 122.793579 109.96) (xy 123.076421 109.96) (xy 123.891566 110.775145)
(xy 124.129004 110.703888) (xy 124.251187 110.456656) (xy 124.286873 110.323925) (xy 124.371574 110.528413) (xy 124.502899 110.724955)
(xy 124.670045 110.892101) (xy 124.866587 111.023426) (xy 125.084973 111.113884) (xy 125.31681 111.16) (xy 125.55319 111.16)
(xy 125.785027 111.113884) (xy 126.003413 111.023426) (xy 126.199955 110.892101) (xy 126.367101 110.724955) (xy 126.498426 110.528413)
(xy 126.588884 110.310027) (xy 126.635 110.07819) (xy 126.635 109.84181) (xy 126.588884 109.609973) (xy 126.498426 109.391587)
(xy 126.367101 109.195045) (xy 126.199955 109.027899) (xy 126.003413 108.896574) (xy 125.785027 108.806116) (xy 125.55319 108.76)
(xy 125.31681 108.76) (xy 125.084973 108.806116) (xy 124.866587 108.896574) (xy 124.670045 109.027899) (xy 124.502899 109.195045)
(xy 124.371574 109.391587) (xy 124.288509 109.592125) (xy 124.216874 109.380504) (xy 124.129004 109.216112) (xy 123.891566 109.144855)
(xy 123.076421 109.96) (xy 122.793579 109.96) (xy 121.978434 109.144855) (xy 121.852308 109.182706) (xy 121.869019 109.151442)
(xy 121.913917 109.003434) (xy 122.119855 109.003434) (xy 122.935 109.818579) (xy 123.750145 109.003434) (xy 123.678888 108.765996)
(xy 123.525114 108.69) (xy 126.369194 108.69) (xy 126.392363 108.925241) (xy 126.460981 109.151442) (xy 126.572409 109.35991)
(xy 126.722366 109.542634) (xy 126.90509 109.692591) (xy 127.113558 109.804019) (xy 127.339759 109.872637) (xy 127.51605 109.89)
(xy 128.43395 109.89) (xy 128.610241 109.872637) (xy 128.836442 109.804019) (xy 129.04491 109.692591) (xy 129.227634 109.542634)
(xy 129.377591 109.35991) (xy 129.489019 109.151442) (xy 129.557637 108.925241) (xy 129.580806 108.69) (xy 129.569166 108.57181)
(xy 129.696 108.57181) (xy 129.696 108.80819) (xy 129.742116 109.040027) (xy 129.832574 109.258413) (xy 129.963899 109.454955)
(xy 130.131045 109.622101) (xy 130.327587 109.753426) (xy 130.545973 109.843884) (xy 130.77781 109.89) (xy 131.01419 109.89)
(xy 131.055363 109.88181) (xy 132.49 109.88181) (xy 132.49 110.11819) (xy 132.536116 110.350027) (xy 132.626574 110.568413)
(xy 132.757899 110.764955) (xy 132.925045 110.932101) (xy 133.121587 111.063426) (xy 133.339973 111.153884) (xy 133.57181 111.2)
(xy 133.80819 111.2) (xy 134.040027 111.153884) (xy 134.258413 111.063426) (xy 134.407925 110.963525) (xy 134.311191 111.140053)
(xy 134.10715 111.78829) (xy 134.033495 112.463877) (xy 134.093056 113.140852) (xy 134.283544 113.793201) (xy 134.597638 114.395852)
(xy 134.637775 114.455922) (xy 135.0851 114.773479) (xy 137.358579 112.5) (xy 137.641421 112.5) (xy 139.9149 114.773479)
(xy 140.362225 114.455922) (xy 140.688809 113.859947) (xy 140.89285 113.21171) (xy 140.966505 112.536123) (xy 140.906944 111.859148)
(xy 140.750419 111.323107) (xy 142.150961 111.323107) (xy 143.553243 115.175846) (xy 145.143397 114.597077) (xy 147.192361 115.780047)
(xy 147.436481 115.357218) (xy 150.106412 115.357218) (xy 150.159978 115.533815) (xy 150.281488 115.779899) (xy 150.448672 115.997549)
(xy 150.655105 116.178401) (xy 150.892854 116.315505) (xy 151.152782 116.403592) (xy 151.37 116.286428) (xy 151.37 115.14)
(xy 151.57 115.14) (xy 151.57 116.286428) (xy 151.787218 116.403592) (xy 152.047146 116.315505) (xy 152.284895 116.178401)
(xy 152.491328 115.997549) (xy 152.658512 115.779899) (xy 152.780022 115.533815) (xy 152.833588 115.357218) (xy 152.715994 115.14)
(xy 151.57 115.14) (xy 151.37 115.14) (xy 150.224006 115.14) (xy 150.106412 115.357218) (xy 147.436481 115.357218)
(xy 147.802772 114.722782) (xy 150.106412 114.722782) (xy 150.224006 114.94) (xy 151.37 114.94) (xy 151.37 113.793572)
(xy 151.57 113.793572) (xy 151.57 114.94) (xy 152.715994 114.94) (xy 152.725841 114.92181) (xy 160.43 114.92181)
(xy 160.43 115.15819) (xy 160.476116 115.390027) (xy 160.566574 115.608413) (xy 160.697899 115.804955) (xy 160.865045 115.972101)
(xy 161.061587 116.103426) (xy 161.279973 116.193884) (xy 161.51181 116.24) (xy 161.74819 116.24) (xy 161.980027 116.193884)
(xy 162.198413 116.103426) (xy 162.394955 115.972101) (xy 162.562101 115.804955) (xy 162.693426 115.608413) (xy 162.783884 115.390027)
(xy 162.83 115.15819) (xy 162.83 114.92181) (xy 162.822044 114.88181) (xy 164.24 114.88181) (xy 164.24 115.11819)
(xy 164.286116 115.350027) (xy 164.376574 115.568413) (xy 164.507899 115.764955) (xy 164.675045 115.932101) (xy 164.871587 116.063426)
(xy 165.089973 116.153884) (xy 165.32181 116.2) (xy 165.55819 116.2) (xy 165.790027 116.153884) (xy 166.008413 116.063426)
(xy 166.16834 115.956566) (xy 167.164855 115.956566) (xy 167.236112 116.194004) (xy 167.483344 116.316187) (xy 167.749663 116.387789)
(xy 168.024833 116.40606) (xy 168.29828 116.370297) (xy 168.559496 116.281874) (xy 168.723888 116.194004) (xy 168.795145 115.956566)
(xy 167.98 115.141421) (xy 167.164855 115.956566) (xy 166.16834 115.956566) (xy 166.204955 115.932101) (xy 166.372101 115.764955)
(xy 166.503426 115.568413) (xy 166.593884 115.350027) (xy 166.605933 115.289454) (xy 166.609703 115.31828) (xy 166.698126 115.579496)
(xy 166.785996 115.743888) (xy 167.023434 115.815145) (xy 167.838579 115) (xy 168.121421 115) (xy 168.936566 115.815145)
(xy 169.174004 115.743888) (xy 169.296187 115.496656) (xy 169.367789 115.230337) (xy 169.38606 114.955167) (xy 169.350297 114.68172)
(xy 169.261874 114.420504) (xy 169.174004 114.256112) (xy 168.936566 114.184855) (xy 168.121421 115) (xy 167.838579 115)
(xy 167.023434 114.184855) (xy 166.785996 114.256112) (xy 166.663813 114.503344) (xy 166.606857 114.71519) (xy 166.593884 114.649973)
(xy 166.503426 114.431587) (xy 166.372101 114.235045) (xy 166.204955 114.067899) (xy 166.008413 113.936574) (xy 165.790027 113.846116)
(xy 165.55819 113.8) (xy 165.32181 113.8) (xy 165.089973 113.846116) (xy 164.871587 113.936574) (xy 164.675045 114.067899)
(xy 164.507899 114.235045) (xy 164.376574 114.431587) (xy 164.286116 114.649973) (xy 164.24 114.88181) (xy 162.822044 114.88181)
(xy 162.783884 114.689973) (xy 162.693426 114.471587) (xy 162.562101 114.275045) (xy 162.394955 114.107899) (xy 162.198413 113.976574)
(xy 161.980027 113.886116) (xy 161.74819 113.84) (xy 161.51181 113.84) (xy 161.279973 113.886116) (xy 161.061587 113.976574)
(xy 160.865045 114.107899) (xy 160.697899 114.275045) (xy 160.566574 114.471587) (xy 160.476116 114.689973) (xy 160.43 114.92181)
(xy 152.725841 114.92181) (xy 152.833588 114.722782) (xy 152.780022 114.546185) (xy 152.658512 114.300101) (xy 152.491328 114.082451)
(xy 152.284895 113.901599) (xy 152.047146 113.764495) (xy 151.787218 113.676408) (xy 151.57 113.793572) (xy 151.37 113.793572)
(xy 151.152782 113.676408) (xy 150.892854 113.764495) (xy 150.655105 113.901599) (xy 150.448672 114.082451) (xy 150.281488 114.300101)
(xy 150.159978 114.546185) (xy 150.106412 114.722782) (xy 147.802772 114.722782) (xy 149.242361 112.229342) (xy 147.306738 111.11181)
(xy 150.27 111.11181) (xy 150.27 111.34819) (xy 150.316116 111.580027) (xy 150.406574 111.798413) (xy 150.537899 111.994955)
(xy 150.705045 112.162101) (xy 150.901587 112.293426) (xy 151.119973 112.383884) (xy 151.35181 112.43) (xy 151.58819 112.43)
(xy 151.820027 112.383884) (xy 152.038413 112.293426) (xy 152.234955 112.162101) (xy 152.402101 111.994955) (xy 152.533426 111.798413)
(xy 152.623884 111.580027) (xy 152.67 111.34819) (xy 152.67 111.11181) (xy 160.43 111.11181) (xy 160.43 111.34819)
(xy 160.476116 111.580027) (xy 160.566574 111.798413) (xy 160.697899 111.994955) (xy 160.865045 112.162101) (xy 161.061587 112.293426)
(xy 161.279973 112.383884) (xy 161.51181 112.43) (xy 161.74819 112.43) (xy 161.924144 112.395) (xy 164.116097 112.395)
(xy 164.127682 112.51262) (xy 164.161991 112.625721) (xy 164.217705 112.729954) (xy 164.276477 112.801567) (xy 164.286116 112.850027)
(xy 164.376574 113.068413) (xy 164.507899 113.264955) (xy 164.675045 113.432101) (xy 164.871587 113.563426) (xy 165.089973 113.653884)
(xy 165.32181 113.7) (xy 165.55819 113.7) (xy 165.790027 113.653884) (xy 166.008413 113.563426) (xy 166.204955 113.432101)
(xy 166.372101 113.264955) (xy 166.503426 113.068413) (xy 166.593884 112.850027) (xy 166.64 112.61819) (xy 166.64 112.38181)
(xy 166.78 112.38181) (xy 166.78 112.61819) (xy 166.826116 112.850027) (xy 166.916574 113.068413) (xy 167.047899 113.264955)
(xy 167.215045 113.432101) (xy 167.411587 113.563426) (xy 167.612125 113.646491) (xy 167.400504 113.718126) (xy 167.236112 113.805996)
(xy 167.164855 114.043434) (xy 167.98 114.858579) (xy 168.795145 114.043434) (xy 168.723888 113.805996) (xy 168.476656 113.683813)
(xy 168.343925 113.648127) (xy 168.548413 113.563426) (xy 168.744955 113.432101) (xy 168.912101 113.264955) (xy 169.043426 113.068413)
(xy 169.133884 112.850027) (xy 169.18 112.61819) (xy 169.18 112.38181) (xy 169.133884 112.149973) (xy 169.043426 111.931587)
(xy 168.912101 111.735045) (xy 168.744955 111.567899) (xy 168.548413 111.436574) (xy 168.330027 111.346116) (xy 168.09819 111.3)
(xy 167.86181 111.3) (xy 167.629973 111.346116) (xy 167.411587 111.436574) (xy 167.215045 111.567899) (xy 167.047899 111.735045)
(xy 166.916574 111.931587) (xy 166.826116 112.149973) (xy 166.78 112.38181) (xy 166.64 112.38181) (xy 166.593884 112.149973)
(xy 166.503426 111.931587) (xy 166.372101 111.735045) (xy 166.204955 111.567899) (xy 166.008413 111.436574) (xy 165.790027 111.346116)
(xy 165.55819 111.3) (xy 165.32181 111.3) (xy 165.296674 111.305) (xy 165.238476 111.305) (xy 165.209 111.302097)
(xy 165.091379 111.313681) (xy 164.984457 111.346116) (xy 164.978279 111.34799) (xy 164.874045 111.403704) (xy 164.782683 111.478683)
(xy 164.763891 111.501581) (xy 164.742937 111.522535) (xy 164.675045 111.567899) (xy 164.507899 111.735045) (xy 164.462534 111.802939)
(xy 164.273895 111.991578) (xy 164.217705 112.060046) (xy 164.161991 112.164279) (xy 164.127682 112.27738) (xy 164.116097 112.395)
(xy 161.924144 112.395) (xy 161.980027 112.383884) (xy 162.198413 112.293426) (xy 162.394955 112.162101) (xy 162.562101 111.994955)
(xy 162.693426 111.798413) (xy 162.783884 111.580027) (xy 162.83 111.34819) (xy 162.83 111.11181) (xy 162.783884 110.879973)
(xy 162.693426 110.661587) (xy 162.562101 110.465045) (xy 162.394955 110.297899) (xy 162.198413 110.166574) (xy 161.980027 110.076116)
(xy 161.74819 110.03) (xy 161.51181 110.03) (xy 161.279973 110.076116) (xy 161.061587 110.166574) (xy 160.865045 110.297899)
(xy 160.697899 110.465045) (xy 160.566574 110.661587) (xy 160.476116 110.879973) (xy 160.43 111.11181) (xy 152.67 111.11181)
(xy 152.623884 110.879973) (xy 152.533426 110.661587) (xy 152.402101 110.465045) (xy 152.234955 110.297899) (xy 152.038413 110.166574)
(xy 151.820027 110.076116) (xy 151.58819 110.03) (xy 151.35181 110.03) (xy 151.119973 110.076116) (xy 150.901587 110.166574)
(xy 150.705045 110.297899) (xy 150.537899 110.465045) (xy 150.406574 110.661587) (xy 150.316116 110.879973) (xy 150.27 111.11181)
(xy 147.306738 111.11181) (xy 147.12516 111.006976) (xy 146.694916 108.566938) (xy 143.642012 109.105248) (xy 143.919574 110.679384)
(xy 142.150961 111.323107) (xy 140.750419 111.323107) (xy 140.716456 111.206799) (xy 140.402362 110.604148) (xy 140.362225 110.544078)
(xy 139.9149 110.226521) (xy 137.641421 112.5) (xy 137.358579 112.5) (xy 135.0851 110.226521) (xy 134.815877 110.417643)
(xy 134.843884 110.350027) (xy 134.89 110.11819) (xy 134.89 110.0851) (xy 135.226521 110.0851) (xy 137.5 112.358579)
(xy 139.773479 110.0851) (xy 139.455922 109.637775) (xy 138.859947 109.311191) (xy 138.21171 109.10715) (xy 137.536123 109.033495)
(xy 136.859148 109.093056) (xy 136.206799 109.283544) (xy 135.604148 109.597638) (xy 135.544078 109.637775) (xy 135.226521 110.0851)
(xy 134.89 110.0851) (xy 134.89 109.88181) (xy 134.843884 109.649973) (xy 134.753426 109.431587) (xy 134.622101 109.235045)
(xy 134.454955 109.067899) (xy 134.258413 108.936574) (xy 134.040027 108.846116) (xy 133.80819 108.8) (xy 133.57181 108.8)
(xy 133.339973 108.846116) (xy 133.121587 108.936574) (xy 132.925045 109.067899) (xy 132.757899 109.235045) (xy 132.626574 109.431587)
(xy 132.536116 109.649973) (xy 132.49 109.88181) (xy 131.055363 109.88181) (xy 131.246027 109.843884) (xy 131.464413 109.753426)
(xy 131.660955 109.622101) (xy 131.828101 109.454955) (xy 131.959426 109.258413) (xy 132.049884 109.040027) (xy 132.096 108.80819)
(xy 132.096 108.57181) (xy 132.049884 108.339973) (xy 131.959426 108.121587) (xy 131.828101 107.925045) (xy 131.660955 107.757899)
(xy 131.464413 107.626574) (xy 131.246027 107.536116) (xy 131.01419 107.49) (xy 130.77781 107.49) (xy 130.545973 107.536116)
(xy 130.327587 107.626574) (xy 130.131045 107.757899) (xy 129.963899 107.925045) (xy 129.832574 108.121587) (xy 129.742116 108.339973)
(xy 129.696 108.57181) (xy 129.569166 108.57181) (xy 129.557637 108.454759) (xy 129.489019 108.228558) (xy 129.377591 108.02009)
(xy 129.227634 107.837366) (xy 129.04491 107.687409) (xy 128.836442 107.575981) (xy 128.610241 107.507363) (xy 128.43395 107.49)
(xy 127.51605 107.49) (xy 127.339759 107.507363) (xy 127.113558 107.575981) (xy 126.90509 107.687409) (xy 126.722366 107.837366)
(xy 126.572409 108.02009) (xy 126.460981 108.228558) (xy 126.392363 108.454759) (xy 126.369194 108.69) (xy 123.525114 108.69)
(xy 123.431656 108.643813) (xy 123.165337 108.572211) (xy 122.890167 108.55394) (xy 122.61672 108.589703) (xy 122.355504 108.678126)
(xy 122.191112 108.765996) (xy 122.119855 109.003434) (xy 121.913917 109.003434) (xy 121.937637 108.925241) (xy 121.960806 108.69)
(xy 121.937637 108.454759) (xy 121.869019 108.228558) (xy 121.757591 108.02009) (xy 121.607634 107.837366) (xy 121.42491 107.687409)
(xy 121.216442 107.575981) (xy 121.088946 107.537305) (xy 122.006 107.537305) (xy 122.045018 107.533462) (xy 122.082537 107.522081)
(xy 122.117114 107.503599) (xy 122.147421 107.478726) (xy 122.172294 107.448419) (xy 122.190776 107.413842) (xy 122.202157 107.376323)
(xy 122.206 107.337305) (xy 122.206 106.15) (xy 126.369194 106.15) (xy 126.392363 106.385241) (xy 126.460981 106.611442)
(xy 126.572409 106.81991) (xy 126.722366 107.002634) (xy 126.90509 107.152591) (xy 127.113558 107.264019) (xy 127.339759 107.332637)
(xy 127.51605 107.35) (xy 128.43395 107.35) (xy 128.610241 107.332637) (xy 128.836442 107.264019) (xy 128.840574 107.26181)
(xy 136.3 107.26181) (xy 136.3 107.49819) (xy 136.346116 107.730027) (xy 136.436574 107.948413) (xy 136.567899 108.144955)
(xy 136.735045 108.312101) (xy 136.931587 108.443426) (xy 137.149973 108.533884) (xy 137.38181 108.58) (xy 137.61819 108.58)
(xy 137.850027 108.533884) (xy 138.068413 108.443426) (xy 138.264955 108.312101) (xy 138.432101 108.144955) (xy 138.563426 107.948413)
(xy 138.653884 107.730027) (xy 138.7 107.49819) (xy 138.7 107.30181) (xy 142.015 107.30181) (xy 142.015 107.53819)
(xy 142.061116 107.770027) (xy 142.151574 107.988413) (xy 142.282899 108.184955) (xy 142.450045 108.352101) (xy 142.646587 108.483426)
(xy 142.864973 108.573884) (xy 143.09681 108.62) (xy 143.33319 108.62) (xy 143.565027 108.573884) (xy 143.783413 108.483426)
(xy 143.979955 108.352101) (xy 144.147101 108.184955) (xy 144.278426 107.988413) (xy 144.368884 107.770027) (xy 144.415 107.53819)
(xy 144.415 107.30181) (xy 146.46 107.30181) (xy 146.46 107.53819) (xy 146.506116 107.770027) (xy 146.596574 107.988413)
(xy 146.727899 108.184955) (xy 146.895045 108.352101) (xy 147.091587 108.483426) (xy 147.309973 108.573884) (xy 147.54181 108.62)
(xy 147.77819 108.62) (xy 148.010027 108.573884) (xy 148.228413 108.483426) (xy 148.241023 108.475) (xy 164.188065 108.475)
(xy 164.188065 110.175) (xy 164.195788 110.253414) (xy 164.21866 110.328814) (xy 164.255803 110.398303) (xy 164.305789 110.459211)
(xy 164.366697 110.509197) (xy 164.436186 110.54634) (xy 164.511586 110.569212) (xy 164.59 110.576935) (xy 166.29 110.576935)
(xy 166.368414 110.569212) (xy 166.443814 110.54634) (xy 166.513303 110.509197) (xy 166.574211 110.459211) (xy 166.624197 110.398303)
(xy 166.66134 110.328814) (xy 166.684212 110.253414) (xy 166.691935 110.175) (xy 166.691935 109.979604) (xy 166.798861 110.166085)
(xy 166.985644 110.380353) (xy 167.210639 110.554064) (xy 167.465201 110.680543) (xy 167.654941 110.738095) (xy 167.88 110.621148)
(xy 167.88 109.425) (xy 168.08 109.425) (xy 168.08 110.621148) (xy 168.305059 110.738095) (xy 168.494799 110.680543)
(xy 168.749361 110.554064) (xy 168.974356 110.380353) (xy 169.161139 110.166085) (xy 169.302531 109.919495) (xy 169.393099 109.650059)
(xy 169.276552 109.425) (xy 168.08 109.425) (xy 167.88 109.425) (xy 167.86 109.425) (xy 167.86 109.225)
(xy 167.88 109.225) (xy 167.88 108.028852) (xy 168.08 108.028852) (xy 168.08 109.225) (xy 169.276552 109.225)
(xy 169.393099 108.999941) (xy 169.302531 108.730505) (xy 169.161139 108.483915) (xy 168.974356 108.269647) (xy 168.749361 108.095936)
(xy 168.494799 107.969457) (xy 168.305059 107.911905) (xy 168.08 108.028852) (xy 167.88 108.028852) (xy 167.654941 107.911905)
(xy 167.465201 107.969457) (xy 167.210639 108.095936) (xy 166.985644 108.269647) (xy 166.798861 108.483915) (xy 166.691935 108.670396)
(xy 166.691935 108.475) (xy 166.684212 108.396586) (xy 166.66134 108.321186) (xy 166.624197 108.251697) (xy 166.574211 108.190789)
(xy 166.513303 108.140803) (xy 166.443814 108.10366) (xy 166.368414 108.080788) (xy 166.29 108.073065) (xy 164.59 108.073065)
(xy 164.511586 108.080788) (xy 164.436186 108.10366) (xy 164.366697 108.140803) (xy 164.305789 108.190789) (xy 164.255803 108.251697)
(xy 164.21866 108.321186) (xy 164.195788 108.396586) (xy 164.188065 108.475) (xy 148.241023 108.475) (xy 148.424955 108.352101)
(xy 148.592101 108.184955) (xy 148.723426 107.988413) (xy 148.813884 107.770027) (xy 148.86 107.53819) (xy 148.86 107.30181)
(xy 148.813884 107.069973) (xy 148.723426 106.851587) (xy 148.592101 106.655045) (xy 148.424955 106.487899) (xy 148.228413 106.356574)
(xy 148.010027 106.266116) (xy 147.77819 106.22) (xy 147.54181 106.22) (xy 147.309973 106.266116) (xy 147.091587 106.356574)
(xy 146.895045 106.487899) (xy 146.727899 106.655045) (xy 146.596574 106.851587) (xy 146.506116 107.069973) (xy 146.46 107.30181)
(xy 144.415 107.30181) (xy 144.368884 107.069973) (xy 144.278426 106.851587) (xy 144.147101 106.655045) (xy 143.979955 106.487899)
(xy 143.783413 106.356574) (xy 143.565027 106.266116) (xy 143.33319 106.22) (xy 143.09681 106.22) (xy 142.864973 106.266116)
(xy 142.646587 106.356574) (xy 142.450045 106.487899) (xy 142.282899 106.655045) (xy 142.151574 106.851587) (xy 142.061116 107.069973)
(xy 142.015 107.30181) (xy 138.7 107.30181) (xy 138.7 107.26181) (xy 138.653884 107.029973) (xy 138.563426 106.811587)
(xy 138.432101 106.615045) (xy 138.264955 106.447899) (xy 138.068413 106.316574) (xy 137.850027 106.226116) (xy 137.61819 106.18)
(xy 137.38181 106.18) (xy 137.149973 106.226116) (xy 136.931587 106.316574) (xy 136.735045 106.447899) (xy 136.567899 106.615045)
(xy 136.436574 106.811587) (xy 136.346116 107.029973) (xy 136.3 107.26181) (xy 128.840574 107.26181) (xy 129.04491 107.152591)
(xy 129.227634 107.002634) (xy 129.377591 106.81991) (xy 129.489019 106.611442) (xy 129.557637 106.385241) (xy 129.580806 106.15)
(xy 129.557637 105.914759) (xy 129.489019 105.688558) (xy 129.377591 105.48009) (xy 129.227634 105.297366) (xy 129.04491 105.147409)
(xy 128.836442 105.035981) (xy 128.610241 104.967363) (xy 128.43395 104.95) (xy 127.51605 104.95) (xy 127.339759 104.967363)
(xy 127.113558 105.035981) (xy 126.90509 105.147409) (xy 126.722366 105.297366) (xy 126.572409 105.48009) (xy 126.460981 105.688558)
(xy 126.392363 105.914759) (xy 126.369194 106.15) (xy 122.206 106.15) (xy 122.206 104.88) (xy 122.202157 104.840982)
(xy 122.190776 104.803463) (xy 122.172294 104.768886) (xy 122.166487 104.76181) (xy 136.3 104.76181) (xy 136.3 104.99819)
(xy 136.346116 105.230027) (xy 136.436574 105.448413) (xy 136.567899 105.644955) (xy 136.735045 105.812101) (xy 136.931587 105.943426)
(xy 137.149973 106.033884) (xy 137.290581 106.061853) (xy 137.29812 106.065883) (xy 137.397084 106.095903) (xy 137.5 106.10604)
(xy 137.602917 106.095903) (xy 137.70188 106.065883) (xy 137.70942 106.061853) (xy 137.850027 106.033884) (xy 138.068413 105.943426)
(xy 138.264955 105.812101) (xy 138.432101 105.644955) (xy 138.563426 105.448413) (xy 138.653884 105.230027) (xy 138.7 104.99819)
(xy 138.7 104.9149) (xy 152.626521 104.9149) (xy 152.944078 105.362225) (xy 153.540053 105.688809) (xy 154.18829 105.89285)
(xy 154.863877 105.966505) (xy 155.540852 105.906944) (xy 156.193201 105.716456) (xy 156.795852 105.402362) (xy 156.855922 105.362225)
(xy 157.051981 105.086047) (xy 167.197471 105.086047) (xy 167.285894 105.347263) (xy 167.423579 105.586209) (xy 167.605234 105.793703)
(xy 167.823879 105.961771) (xy 168.071111 106.083954) (xy 168.249487 106.138063) (xy 168.467767 106.020556) (xy 168.467767 104.867767)
(xy 168.667767 104.867767) (xy 168.667767 106.020556) (xy 168.886047 106.138063) (xy 169.147263 106.04964) (xy 169.386209 105.911955)
(xy 169.593703 105.7303) (xy 169.761771 105.511655) (xy 169.883954 105.264423) (xy 169.938063 105.086047) (xy 169.820556 104.867767)
(xy 168.667767 104.867767) (xy 168.467767 104.867767) (xy 167.314978 104.867767) (xy 167.197471 105.086047) (xy 157.051981 105.086047)
(xy 157.173479 104.9149) (xy 154.9 102.641421) (xy 152.626521 104.9149) (xy 138.7 104.9149) (xy 138.7 104.76181)
(xy 138.653884 104.529973) (xy 138.563426 104.311587) (xy 138.432101 104.115045) (xy 138.264955 103.947899) (xy 138.068413 103.816574)
(xy 137.850027 103.726116) (xy 137.61819 103.68) (xy 137.38181 103.68) (xy 137.149973 103.726116) (xy 136.931587 103.816574)
(xy 136.735045 103.947899) (xy 136.567899 104.115045) (xy 136.436574 104.311587) (xy 136.346116 104.529973) (xy 136.3 104.76181)
(xy 122.166487 104.76181) (xy 122.147421 104.738579) (xy 122.117114 104.713706) (xy 122.082537 104.695224) (xy 122.045018 104.683843)
(xy 122.006 104.68) (xy 118.704 104.68) (xy 118.664982 104.683843) (xy 118.627463 104.695224) (xy 118.592886 104.713706)
(xy 118.562579 104.738579) (xy 118.537706 104.768886) (xy 118.519224 104.803463) (xy 118.507843 104.840982) (xy 118.504 104.88)
(xy 113.879176 104.88) (xy 113.866656 104.873813) (xy 113.600337 104.802211) (xy 113.325167 104.78394) (xy 113.05172 104.819703)
(xy 112.790504 104.908126) (xy 112.626112 104.995996) (xy 112.554855 105.233434) (xy 108.318739 105.233434) (xy 108.267741 105.208075)
(xy 107.992094 105.133238) (xy 107.707144 105.113614) (xy 107.423841 105.149958) (xy 107.153072 105.240875) (xy 106.976509 105.33525)
(xy 106.89922 105.577798) (xy 106.184359 105.577798) (xy 106.163492 105.472895) (xy 106.091879 105.300006) (xy 105.987913 105.14441)
(xy 105.85559 105.012087) (xy 105.803072 104.976995) (xy 105.823332 104.975) (xy 105.893116 104.968127) (xy 105.982654 104.940966)
(xy 106.065173 104.896859) (xy 106.137501 104.837501) (xy 106.152384 104.819366) (xy 107.596752 103.375) (xy 109.990313 103.375)
(xy 110.027346 103.376514) (xy 110.060109 103.371378) (xy 110.093116 103.368127) (xy 110.106239 103.364146) (xy 110.119783 103.362023)
(xy 110.150914 103.350594) (xy 110.182654 103.340966) (xy 110.194747 103.334502) (xy 110.207618 103.329777) (xy 110.235918 103.312496)
(xy 110.265173 103.296859) (xy 110.275777 103.288157) (xy 110.287474 103.281014) (xy 110.311849 103.258553) (xy 110.337501 103.237501)
(xy 110.346206 103.226893) (xy 110.356282 103.217609) (xy 110.375803 103.190829) (xy 110.396859 103.165173) (xy 110.414349 103.132452)
(xy 111.440957 101.387218) (xy 115.181408 101.387218) (xy 115.269495 101.647146) (xy 115.406599 101.884895) (xy 115.587451 102.091328)
(xy 115.805101 102.258512) (xy 116.051185 102.380022) (xy 116.227782 102.433588) (xy 116.445 102.315994) (xy 116.445 101.17)
(xy 116.645 101.17) (xy 116.645 102.315994) (xy 116.862218 102.433588) (xy 117.038815 102.380022) (xy 117.284899 102.258512)
(xy 117.502549 102.091328) (xy 117.683401 101.884895) (xy 117.820505 101.647146) (xy 117.825702 101.63181) (xy 119.18 101.63181)
(xy 119.18 101.86819) (xy 119.226116 102.100027) (xy 119.316574 102.318413) (xy 119.447899 102.514955) (xy 119.615045 102.682101)
(xy 119.811587 102.813426) (xy 120.029973 102.903884) (xy 120.26181 102.95) (xy 120.49819 102.95) (xy 120.730027 102.903884)
(xy 120.948413 102.813426) (xy 121.144955 102.682101) (xy 121.312101 102.514955) (xy 121.443426 102.318413) (xy 121.533884 102.100027)
(xy 121.58 101.86819) (xy 121.58 101.63181) (xy 126.8 101.63181) (xy 126.8 101.86819) (xy 126.846116 102.100027)
(xy 126.936574 102.318413) (xy 127.067899 102.514955) (xy 127.235045 102.682101) (xy 127.431587 102.813426) (xy 127.649973 102.903884)
(xy 127.88181 102.95) (xy 128.11819 102.95) (xy 128.350027 102.903884) (xy 128.568413 102.813426) (xy 128.764955 102.682101)
(xy 128.932101 102.514955) (xy 129.063426 102.318413) (xy 129.086871 102.26181) (xy 132.49 102.26181) (xy 132.49 102.49819)
(xy 132.536116 102.730027) (xy 132.626574 102.948413) (xy 132.757899 103.144955) (xy 132.925045 103.312101) (xy 133.121587 103.443426)
(xy 133.339973 103.533884) (xy 133.57181 103.58) (xy 133.80819 103.58) (xy 134.040027 103.533884) (xy 134.258413 103.443426)
(xy 134.454955 103.312101) (xy 134.622101 103.144955) (xy 134.753426 102.948413) (xy 134.791369 102.85681) (xy 142.015 102.85681)
(xy 142.015 103.09319) (xy 142.061116 103.325027) (xy 142.151574 103.543413) (xy 142.282899 103.739955) (xy 142.450045 103.907101)
(xy 142.646587 104.038426) (xy 142.864973 104.128884) (xy 143.09681 104.175) (xy 143.33319 104.175) (xy 143.565027 104.128884)
(xy 143.783413 104.038426) (xy 143.94334 103.931566) (xy 144.899855 103.931566) (xy 144.971112 104.169004) (xy 145.218344 104.291187)
(xy 145.484663 104.362789) (xy 145.759833 104.38106) (xy 146.03328 104.345297) (xy 146.294496 104.256874) (xy 146.458888 104.169004)
(xy 146.530145 103.931566) (xy 145.715 103.116421) (xy 144.899855 103.931566) (xy 143.94334 103.931566) (xy 143.979955 103.907101)
(xy 144.147101 103.739955) (xy 144.278426 103.543413) (xy 144.361491 103.342875) (xy 144.433126 103.554496) (xy 144.520996 103.718888)
(xy 144.758434 103.790145) (xy 145.573579 102.975) (xy 145.856421 102.975) (xy 146.671566 103.790145) (xy 146.909004 103.718888)
(xy 147.031187 103.471656) (xy 147.102789 103.205337) (xy 147.12106 102.930167) (xy 147.085297 102.65672) (xy 147.020019 102.463877)
(xy 151.433495 102.463877) (xy 151.493056 103.140852) (xy 151.683544 103.793201) (xy 151.997638 104.395852) (xy 152.037775 104.455922)
(xy 152.4851 104.773479) (xy 154.758579 102.5) (xy 155.041421 102.5) (xy 157.3149 104.773479) (xy 157.762225 104.455922)
(xy 158.088809 103.859947) (xy 158.29285 103.21171) (xy 158.315931 103) (xy 165.266694 103) (xy 165.274417 103.078414)
(xy 165.297289 103.153814) (xy 165.334432 103.223303) (xy 165.384418 103.284211) (xy 166.515789 104.415582) (xy 166.576697 104.465568)
(xy 166.646186 104.502711) (xy 166.721586 104.525583) (xy 166.8 104.533306) (xy 166.878414 104.525583) (xy 166.953814 104.502711)
(xy 167.023303 104.465568) (xy 167.084211 104.415582) (xy 167.273953 104.22584) (xy 167.25158 104.271111) (xy 167.197471 104.449487)
(xy 167.314978 104.667767) (xy 168.326343 104.667767) (xy 168.412202 104.753626) (xy 168.553626 104.612202) (xy 168.467767 104.526343)
(xy 168.467767 103.514978) (xy 168.667767 103.514978) (xy 168.667767 104.667767) (xy 169.820556 104.667767) (xy 169.938063 104.449487)
(xy 169.84964 104.188271) (xy 169.711955 103.949325) (xy 169.5303 103.741831) (xy 169.311655 103.573763) (xy 169.064423 103.45158)
(xy 168.886047 103.397471) (xy 168.667767 103.514978) (xy 168.467767 103.514978) (xy 168.249487 103.397471) (xy 168.027014 103.472779)
(xy 168.215582 103.284211) (xy 168.265568 103.223303) (xy 168.302711 103.153814) (xy 168.325583 103.078414) (xy 168.333306 103)
(xy 168.325583 102.921586) (xy 168.302711 102.846186) (xy 168.265568 102.776697) (xy 168.215582 102.715789) (xy 167.084211 101.584418)
(xy 167.023303 101.534432) (xy 166.953814 101.497289) (xy 166.878414 101.474417) (xy 166.8 101.466694) (xy 166.721586 101.474417)
(xy 166.646186 101.497289) (xy 166.576697 101.534432) (xy 166.515789 101.584418) (xy 165.384418 102.715789) (xy 165.334432 102.776697)
(xy 165.297289 102.846186) (xy 165.274417 102.921586) (xy 165.266694 103) (xy 158.315931 103) (xy 158.366505 102.536123)
(xy 158.306944 101.859148) (xy 158.116456 101.206799) (xy 157.802362 100.604148) (xy 157.762225 100.544078) (xy 157.3149 100.226521)
(xy 155.041421 102.5) (xy 154.758579 102.5) (xy 152.4851 100.226521) (xy 152.037775 100.544078) (xy 151.711191 101.140053)
(xy 151.50715 101.78829) (xy 151.433495 102.463877) (xy 147.020019 102.463877) (xy 146.996874 102.395504) (xy 146.909004 102.231112)
(xy 146.671566 102.159855) (xy 145.856421 102.975) (xy 145.573579 102.975) (xy 144.758434 102.159855) (xy 144.520996 102.231112)
(xy 144.398813 102.478344) (xy 144.363127 102.611075) (xy 144.278426 102.406587) (xy 144.147101 102.210045) (xy 143.979955 102.042899)
(xy 143.943341 102.018434) (xy 144.899855 102.018434) (xy 145.715 102.833579) (xy 146.530145 102.018434) (xy 146.458888 101.780996)
(xy 146.211656 101.658813) (xy 145.945337 101.587211) (xy 145.670167 101.56894) (xy 145.39672 101.604703) (xy 145.135504 101.693126)
(xy 144.971112 101.780996) (xy 144.899855 102.018434) (xy 143.943341 102.018434) (xy 143.783413 101.911574) (xy 143.565027 101.821116)
(xy 143.33319 101.775) (xy 143.09681 101.775) (xy 142.864973 101.821116) (xy 142.646587 101.911574) (xy 142.450045 102.042899)
(xy 142.282899 102.210045) (xy 142.151574 102.406587) (xy 142.061116 102.624973) (xy 142.015 102.85681) (xy 134.791369 102.85681)
(xy 134.843884 102.730027) (xy 134.89 102.49819) (xy 134.89 102.26181) (xy 134.843884 102.029973) (xy 134.753426 101.811587)
(xy 134.622101 101.615045) (xy 134.454955 101.447899) (xy 134.258413 101.316574) (xy 134.040027 101.226116) (xy 133.80819 101.18)
(xy 133.57181 101.18) (xy 133.339973 101.226116) (xy 133.121587 101.316574) (xy 132.925045 101.447899) (xy 132.757899 101.615045)
(xy 132.626574 101.811587) (xy 132.536116 102.029973) (xy 132.49 102.26181) (xy 129.086871 102.26181) (xy 129.153884 102.100027)
(xy 129.2 101.86819) (xy 129.2 101.63181) (xy 129.153884 101.399973) (xy 129.063426 101.181587) (xy 128.932101 100.985045)
(xy 128.764955 100.817899) (xy 128.568413 100.686574) (xy 128.350027 100.596116) (xy 128.11819 100.55) (xy 127.88181 100.55)
(xy 127.649973 100.596116) (xy 127.431587 100.686574) (xy 127.235045 100.817899) (xy 127.067899 100.985045) (xy 126.936574 101.181587)
(xy 126.846116 101.399973) (xy 126.8 101.63181) (xy 121.58 101.63181) (xy 121.533884 101.399973) (xy 121.443426 101.181587)
(xy 121.312101 100.985045) (xy 121.144955 100.817899) (xy 120.948413 100.686574) (xy 120.730027 100.596116) (xy 120.49819 100.55)
(xy 120.26181 100.55) (xy 120.029973 100.596116) (xy 119.811587 100.686574) (xy 119.615045 100.817899) (xy 119.447899 100.985045)
(xy 119.316574 101.181587) (xy 119.226116 101.399973) (xy 119.18 101.63181) (xy 117.825702 101.63181) (xy 117.908592 101.387218)
(xy 117.791428 101.17) (xy 116.645 101.17) (xy 116.445 101.17) (xy 115.298572 101.17) (xy 115.181408 101.387218)
(xy 111.440957 101.387218) (xy 112.271674 99.975) (xy 115.683362 99.975)
)
)
)
(zone (net 0) (net_name "") (layer F.Cu) (tstamp 0) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(keepout (tracks allowed) (vias allowed) (copperpour not_allowed))
(fill (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 118.704 104.88) (xy 122.006 104.88) (xy 122.006 107.337305) (xy 118.704 107.337305) (xy 118.704 104.924305)
)
)
)
(zone (net 0) (net_name "") (layer B.Mask) (tstamp 5E160BA0) (hatch edge 0.508)
(connect_pads thru_hole_only (clearance 0.25))
(min_thickness 0.15)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 162.5 125.5) (xy 162.5 120.5) (xy 169.6 120.5) (xy 169.6 122.1) (xy 165.1 122.1)
(xy 163.1 125.5)
)
)
(filled_polygon
(pts
(xy 169.525 122.025) (xy 165.1 122.025) (xy 165.085368 122.026441) (xy 165.071299 122.030709) (xy 165.058332 122.03764)
(xy 165.046967 122.046967) (xy 165.035355 122.061973) (xy 163.057104 125.425) (xy 162.575 125.425) (xy 162.575 120.575)
(xy 169.525 120.575)
)
)
)
(zone (net 0) (net_name "") (layer F.Mask) (tstamp 5E160B9D) (hatch edge 0.508)
(connect_pads thru_hole_only (clearance 0.25))
(min_thickness 0.15)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 162.5 125.5) (xy 162.5 120.5) (xy 169.6 120.5) (xy 169.6 122.1) (xy 165.1 122.1)
(xy 163.1 125.5)
)
)
(filled_polygon
(pts
(xy 169.525 122.025) (xy 165.1 122.025) (xy 165.085368 122.026441) (xy 165.071299 122.030709) (xy 165.058332 122.03764)
(xy 165.046967 122.046967) (xy 165.035355 122.061973) (xy 163.057104 125.425) (xy 162.575 125.425) (xy 162.575 120.575)
(xy 169.525 120.575)
)
)
)
(zone (net 0) (net_name "") (layer F.Mask) (tstamp 5E160B9A) (hatch edge 0.508)
(connect_pads thru_hole_only (clearance 0.25))
(min_thickness 0.15)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 105.8 104.5) (xy 112.9 104.5) (xy 112.9 99.5) (xy 112 99.5) (xy 110 102.9)
(xy 107.4 102.9)
)
)
(filled_polygon
(pts
(xy 112.825 104.425) (xy 105.981066 104.425) (xy 107.431066 102.975) (xy 110 102.975) (xy 110.014632 102.973559)
(xy 110.028701 102.969291) (xy 110.041668 102.96236) (xy 110.053033 102.953033) (xy 110.064645 102.938027) (xy 112.042896 99.575)
(xy 112.825 99.575)
)
)
)
(zone (net 4) (net_name GND) (layer B.Cu) (tstamp 5E160B97) (hatch edge 0.508)
(connect_pads thru_hole_only (clearance 0.2))
(min_thickness 0.1)
(fill yes (arc_segments 32) (thermal_gap 0.4) (thermal_bridge_width 0.4))
(polygon
(pts
(xy 162.5 120.5) (xy 162.5 125.5) (xy 163.1 125.5) (xy 165.1 122.1) (xy 169.6 122.1)
(xy 169.6 120.5)
)
)
(filled_polygon
(pts
(xy 169.55 121.775) (xy 165.106631 121.775) (xy 165.081289 121.773964) (xy 165.05887 121.777479) (xy 165.036289 121.779703)
(xy 165.027308 121.782427) (xy 165.018043 121.78388) (xy 164.996744 121.791699) (xy 164.975026 121.798287) (xy 164.966755 121.802708)
(xy 164.957945 121.805942) (xy 164.938574 121.817771) (xy 164.918566 121.828465) (xy 164.911314 121.834416) (xy 164.903307 121.839306)
(xy 164.886615 121.854687) (xy 164.869079 121.869079) (xy 164.863129 121.876329) (xy 164.856228 121.882688) (xy 164.842862 121.901023)
(xy 164.828465 121.918566) (xy 164.816509 121.940935) (xy 162.914118 125.175) (xy 162.55 125.175) (xy 162.55 120.55)
(xy 169.55 120.55)
)
)
)
(zone (net 4) (net_name GND) (layer B.Cu) (tstamp 5E160B94) (hatch edge 0.508)
(connect_pads thru_hole_only (clearance 0.2))
(min_thickness 0.1)
(fill yes (arc_segments 16) (thermal_gap 0.4) (thermal_bridge_width 0.4))
(polygon
(pts
(xy 105.8 104.5) (xy 112.9 104.5) (xy 112.9 99.5) (xy 112 99.5) (xy 110 102.9)
(xy 107.4 102.9)
)
)
(filled_polygon
(pts
(xy 112.85 104.45) (xy 106.309618 104.45) (xy 107.53462 103.225) (xy 109.993383 103.225) (xy 110.01871 103.226035)
(xy 110.041117 103.222522) (xy 110.063711 103.220297) (xy 110.072693 103.217572) (xy 110.081957 103.21612) (xy 110.103249 103.208303)
(xy 110.124974 103.201713) (xy 110.133252 103.197288) (xy 110.142054 103.194057) (xy 110.161405 103.18224) (xy 110.181434 103.171535)
(xy 110.188693 103.165577) (xy 110.196692 103.160693) (xy 110.213369 103.145326) (xy 110.230921 103.130921) (xy 110.236875 103.123666)
(xy 110.243772 103.117311) (xy 110.257131 103.098984) (xy 110.271535 103.081434) (xy 110.283497 103.059054) (xy 112.185882 99.825)
(xy 112.85 99.825)
)
)
)
(zone (net 0) (net_name "") (layer B.Mask) (tstamp 5E160B91) (hatch edge 0.508)
(connect_pads (clearance 0.2))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 105.8 104.5) (xy 112.9 104.5) (xy 112.9 99.5) (xy 112 99.5) (xy 110.8 101.5)
(xy 110 102.9) (xy 107.4 102.9)
)
)
(filled_polygon
(pts
(xy 112.773 104.373) (xy 106.106606 104.373) (xy 107.452606 103.027) (xy 110 103.027) (xy 110.024776 103.02456)
(xy 110.048601 103.017333) (xy 110.070557 103.005597) (xy 110.089803 102.989803) (xy 110.110267 102.96301) (xy 110.909595 101.564186)
(xy 112.071907 99.627) (xy 112.773 99.627)
)
)
)
)
| KiCad | 5 | 0xflotus/DIY_particle_detector | hardware/V1.2/DIY_detector.kicad_pcb | [
"BSD-2-Clause"
] |
package com.baeldung.attribute.override.entity;
import javax.persistence.AttributeOverride;
import javax.persistence.AttributeOverrides;
import javax.persistence.Column;
import javax.persistence.ElementCollection;
import javax.persistence.Embedded;
import javax.persistence.Entity;
import java.util.Map;
@Entity
@AttributeOverride(name = "identifier", column = @Column(name = "VIN"))
public class Car extends Vehicle {
private String model;
private String name;
@Embedded
@AttributeOverrides({
@AttributeOverride(name = "name", column = @Column(name = "BRAND_NAME", length = 5)),
@AttributeOverride(name = "address.name", column = @Column(name = "ADDRESS_NAME"))
})
private Brand brand;
@ElementCollection
@AttributeOverrides({
@AttributeOverride(name = "key.name", column = @Column(name = "OWNER_NAME")),
@AttributeOverride(name = "key.surname", column = @Column(name = "OWNER_SURNAME")),
@AttributeOverride(name = "value.name", column = @Column(name = "ADDRESS_NAME")),
})
Map<Owner, Address> owners;
public String getModel() {
return model;
}
public void setModel(String model) {
this.model = model;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Brand getBrand() {
return brand;
}
public void setBrand(Brand brand) {
this.brand = brand;
}
}
| Java | 4 | DBatOWL/tutorials | persistence-modules/spring-data-jpa-annotations/src/main/java/com/baeldung/attribute/override/entity/Car.java | [
"MIT"
] |
#include <stdio.h>
#include <vector>
#include <set>
#include "LLVMWrapper.h"
#include "llvm/Analysis/AliasAnalysis.h"
#include "llvm/Analysis/TargetLibraryInfo.h"
#include "llvm/Analysis/TargetTransformInfo.h"
#include "llvm/CodeGen/TargetSubtargetInfo.h"
#include "llvm/InitializePasses.h"
#include "llvm/IR/AutoUpgrade.h"
#include "llvm/IR/AssemblyAnnotationWriter.h"
#include "llvm/IR/IntrinsicInst.h"
#include "llvm/IR/Verifier.h"
#include "llvm/Object/ObjectFile.h"
#include "llvm/Object/IRObjectFile.h"
#include "llvm/Passes/PassBuilder.h"
#include "llvm/Passes/StandardInstrumentations.h"
#include "llvm/Support/CBindingWrapping.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Host.h"
#if LLVM_VERSION_LT(14, 0)
#include "llvm/Support/TargetRegistry.h"
#else
#include "llvm/MC/TargetRegistry.h"
#endif
#include "llvm/Target/TargetMachine.h"
#include "llvm/Transforms/IPO/PassManagerBuilder.h"
#include "llvm/Transforms/IPO/AlwaysInliner.h"
#include "llvm/Transforms/IPO/FunctionImport.h"
#include "llvm/Transforms/Utils/AddDiscriminators.h"
#include "llvm/Transforms/Utils/FunctionImportUtils.h"
#include "llvm/LTO/LTO.h"
#include "llvm-c/Transforms/PassManagerBuilder.h"
#include "llvm/Transforms/Instrumentation.h"
#include "llvm/Transforms/Instrumentation/AddressSanitizer.h"
#include "llvm/Support/TimeProfiler.h"
#include "llvm/Transforms/Instrumentation/GCOVProfiler.h"
#include "llvm/Transforms/Instrumentation/InstrProfiling.h"
#include "llvm/Transforms/Instrumentation/ThreadSanitizer.h"
#include "llvm/Transforms/Instrumentation/MemorySanitizer.h"
#include "llvm/Transforms/Instrumentation/HWAddressSanitizer.h"
#include "llvm/Transforms/Utils/CanonicalizeAliases.h"
#include "llvm/Transforms/Utils/NameAnonGlobals.h"
#include "llvm/Transforms/Utils.h"
using namespace llvm;
typedef struct LLVMOpaquePass *LLVMPassRef;
typedef struct LLVMOpaqueTargetMachine *LLVMTargetMachineRef;
DEFINE_STDCXX_CONVERSION_FUNCTIONS(Pass, LLVMPassRef)
DEFINE_STDCXX_CONVERSION_FUNCTIONS(TargetMachine, LLVMTargetMachineRef)
extern "C" void LLVMInitializePasses() {
PassRegistry &Registry = *PassRegistry::getPassRegistry();
initializeCore(Registry);
initializeCodeGen(Registry);
initializeScalarOpts(Registry);
initializeVectorization(Registry);
initializeIPO(Registry);
initializeAnalysis(Registry);
initializeTransformUtils(Registry);
initializeInstCombine(Registry);
initializeInstrumentation(Registry);
initializeTarget(Registry);
}
extern "C" void LLVMTimeTraceProfilerInitialize() {
timeTraceProfilerInitialize(
/* TimeTraceGranularity */ 0,
/* ProcName */ "rustc");
}
extern "C" void LLVMTimeTraceProfilerFinishThread() {
timeTraceProfilerFinishThread();
}
extern "C" void LLVMTimeTraceProfilerFinish(const char* FileName) {
StringRef FN(FileName);
std::error_code EC;
raw_fd_ostream OS(FN, EC, sys::fs::CD_CreateAlways);
timeTraceProfilerWrite(OS);
timeTraceProfilerCleanup();
}
enum class LLVMRustPassKind {
Other,
Function,
Module,
};
static LLVMRustPassKind toRust(PassKind Kind) {
switch (Kind) {
case PT_Function:
return LLVMRustPassKind::Function;
case PT_Module:
return LLVMRustPassKind::Module;
default:
return LLVMRustPassKind::Other;
}
}
extern "C" LLVMPassRef LLVMRustFindAndCreatePass(const char *PassName) {
StringRef SR(PassName);
PassRegistry *PR = PassRegistry::getPassRegistry();
const PassInfo *PI = PR->getPassInfo(SR);
if (PI) {
return wrap(PI->createPass());
}
return nullptr;
}
extern "C" LLVMPassRef LLVMRustCreateAddressSanitizerFunctionPass(bool Recover) {
const bool CompileKernel = false;
const bool UseAfterScope = true;
return wrap(createAddressSanitizerFunctionPass(CompileKernel, Recover, UseAfterScope));
}
extern "C" LLVMPassRef LLVMRustCreateModuleAddressSanitizerPass(bool Recover) {
const bool CompileKernel = false;
return wrap(createModuleAddressSanitizerLegacyPassPass(CompileKernel, Recover));
}
extern "C" LLVMPassRef LLVMRustCreateMemorySanitizerPass(int TrackOrigins, bool Recover) {
const bool CompileKernel = false;
return wrap(createMemorySanitizerLegacyPassPass(
MemorySanitizerOptions{TrackOrigins, Recover, CompileKernel}));
}
extern "C" LLVMPassRef LLVMRustCreateThreadSanitizerPass() {
return wrap(createThreadSanitizerLegacyPassPass());
}
extern "C" LLVMPassRef LLVMRustCreateHWAddressSanitizerPass(bool Recover) {
const bool CompileKernel = false;
return wrap(createHWAddressSanitizerLegacyPassPass(CompileKernel, Recover));
}
extern "C" LLVMRustPassKind LLVMRustPassKind(LLVMPassRef RustPass) {
assert(RustPass);
Pass *Pass = unwrap(RustPass);
return toRust(Pass->getPassKind());
}
extern "C" void LLVMRustAddPass(LLVMPassManagerRef PMR, LLVMPassRef RustPass) {
assert(RustPass);
Pass *Pass = unwrap(RustPass);
PassManagerBase *PMB = unwrap(PMR);
PMB->add(Pass);
}
extern "C"
void LLVMRustPassManagerBuilderPopulateThinLTOPassManager(
LLVMPassManagerBuilderRef PMBR,
LLVMPassManagerRef PMR
) {
unwrap(PMBR)->populateThinLTOPassManager(*unwrap(PMR));
}
extern "C"
void LLVMRustAddLastExtensionPasses(
LLVMPassManagerBuilderRef PMBR, LLVMPassRef *Passes, size_t NumPasses) {
auto AddExtensionPasses = [Passes, NumPasses](
const PassManagerBuilder &Builder, PassManagerBase &PM) {
for (size_t I = 0; I < NumPasses; I++) {
PM.add(unwrap(Passes[I]));
}
};
// Add the passes to both of the pre-finalization extension points,
// so they are run for optimized and non-optimized builds.
unwrap(PMBR)->addExtension(PassManagerBuilder::EP_OptimizerLast,
AddExtensionPasses);
unwrap(PMBR)->addExtension(PassManagerBuilder::EP_EnabledOnOptLevel0,
AddExtensionPasses);
}
#ifdef LLVM_COMPONENT_X86
#define SUBTARGET_X86 SUBTARGET(X86)
#else
#define SUBTARGET_X86
#endif
#ifdef LLVM_COMPONENT_ARM
#define SUBTARGET_ARM SUBTARGET(ARM)
#else
#define SUBTARGET_ARM
#endif
#ifdef LLVM_COMPONENT_AARCH64
#define SUBTARGET_AARCH64 SUBTARGET(AArch64)
#else
#define SUBTARGET_AARCH64
#endif
#ifdef LLVM_COMPONENT_AVR
#define SUBTARGET_AVR SUBTARGET(AVR)
#else
#define SUBTARGET_AVR
#endif
#ifdef LLVM_COMPONENT_M68k
#define SUBTARGET_M68K SUBTARGET(M68k)
#else
#define SUBTARGET_M68K
#endif
#ifdef LLVM_COMPONENT_MIPS
#define SUBTARGET_MIPS SUBTARGET(Mips)
#else
#define SUBTARGET_MIPS
#endif
#ifdef LLVM_COMPONENT_POWERPC
#define SUBTARGET_PPC SUBTARGET(PPC)
#else
#define SUBTARGET_PPC
#endif
#ifdef LLVM_COMPONENT_SYSTEMZ
#define SUBTARGET_SYSTEMZ SUBTARGET(SystemZ)
#else
#define SUBTARGET_SYSTEMZ
#endif
#ifdef LLVM_COMPONENT_MSP430
#define SUBTARGET_MSP430 SUBTARGET(MSP430)
#else
#define SUBTARGET_MSP430
#endif
#ifdef LLVM_COMPONENT_RISCV
#define SUBTARGET_RISCV SUBTARGET(RISCV)
#else
#define SUBTARGET_RISCV
#endif
#ifdef LLVM_COMPONENT_SPARC
#define SUBTARGET_SPARC SUBTARGET(Sparc)
#else
#define SUBTARGET_SPARC
#endif
#ifdef LLVM_COMPONENT_HEXAGON
#define SUBTARGET_HEXAGON SUBTARGET(Hexagon)
#else
#define SUBTARGET_HEXAGON
#endif
#define GEN_SUBTARGETS \
SUBTARGET_X86 \
SUBTARGET_ARM \
SUBTARGET_AARCH64 \
SUBTARGET_AVR \
SUBTARGET_M68K \
SUBTARGET_MIPS \
SUBTARGET_PPC \
SUBTARGET_SYSTEMZ \
SUBTARGET_MSP430 \
SUBTARGET_SPARC \
SUBTARGET_HEXAGON \
SUBTARGET_RISCV \
#define SUBTARGET(x) \
namespace llvm { \
extern const SubtargetFeatureKV x##FeatureKV[]; \
extern const SubtargetFeatureKV x##SubTypeKV[]; \
}
GEN_SUBTARGETS
#undef SUBTARGET
extern "C" bool LLVMRustHasFeature(LLVMTargetMachineRef TM,
const char *Feature) {
TargetMachine *Target = unwrap(TM);
const MCSubtargetInfo *MCInfo = Target->getMCSubtargetInfo();
return MCInfo->checkFeatures(std::string("+") + Feature);
}
enum class LLVMRustCodeModel {
Tiny,
Small,
Kernel,
Medium,
Large,
None,
};
static Optional<CodeModel::Model> fromRust(LLVMRustCodeModel Model) {
switch (Model) {
case LLVMRustCodeModel::Tiny:
return CodeModel::Tiny;
case LLVMRustCodeModel::Small:
return CodeModel::Small;
case LLVMRustCodeModel::Kernel:
return CodeModel::Kernel;
case LLVMRustCodeModel::Medium:
return CodeModel::Medium;
case LLVMRustCodeModel::Large:
return CodeModel::Large;
case LLVMRustCodeModel::None:
return None;
default:
report_fatal_error("Bad CodeModel.");
}
}
enum class LLVMRustCodeGenOptLevel {
None,
Less,
Default,
Aggressive,
};
static CodeGenOpt::Level fromRust(LLVMRustCodeGenOptLevel Level) {
switch (Level) {
case LLVMRustCodeGenOptLevel::None:
return CodeGenOpt::None;
case LLVMRustCodeGenOptLevel::Less:
return CodeGenOpt::Less;
case LLVMRustCodeGenOptLevel::Default:
return CodeGenOpt::Default;
case LLVMRustCodeGenOptLevel::Aggressive:
return CodeGenOpt::Aggressive;
default:
report_fatal_error("Bad CodeGenOptLevel.");
}
}
enum class LLVMRustPassBuilderOptLevel {
O0,
O1,
O2,
O3,
Os,
Oz,
};
#if LLVM_VERSION_LT(14,0)
using OptimizationLevel = PassBuilder::OptimizationLevel;
#endif
static OptimizationLevel fromRust(LLVMRustPassBuilderOptLevel Level) {
switch (Level) {
case LLVMRustPassBuilderOptLevel::O0:
return OptimizationLevel::O0;
case LLVMRustPassBuilderOptLevel::O1:
return OptimizationLevel::O1;
case LLVMRustPassBuilderOptLevel::O2:
return OptimizationLevel::O2;
case LLVMRustPassBuilderOptLevel::O3:
return OptimizationLevel::O3;
case LLVMRustPassBuilderOptLevel::Os:
return OptimizationLevel::Os;
case LLVMRustPassBuilderOptLevel::Oz:
return OptimizationLevel::Oz;
default:
report_fatal_error("Bad PassBuilderOptLevel.");
}
}
enum class LLVMRustRelocModel {
Static,
PIC,
DynamicNoPic,
ROPI,
RWPI,
ROPIRWPI,
};
static Reloc::Model fromRust(LLVMRustRelocModel RustReloc) {
switch (RustReloc) {
case LLVMRustRelocModel::Static:
return Reloc::Static;
case LLVMRustRelocModel::PIC:
return Reloc::PIC_;
case LLVMRustRelocModel::DynamicNoPic:
return Reloc::DynamicNoPIC;
case LLVMRustRelocModel::ROPI:
return Reloc::ROPI;
case LLVMRustRelocModel::RWPI:
return Reloc::RWPI;
case LLVMRustRelocModel::ROPIRWPI:
return Reloc::ROPI_RWPI;
}
report_fatal_error("Bad RelocModel.");
}
#ifdef LLVM_RUSTLLVM
/// getLongestEntryLength - Return the length of the longest entry in the table.
template<typename KV>
static size_t getLongestEntryLength(ArrayRef<KV> Table) {
size_t MaxLen = 0;
for (auto &I : Table)
MaxLen = std::max(MaxLen, std::strlen(I.Key));
return MaxLen;
}
extern "C" void LLVMRustPrintTargetCPUs(LLVMTargetMachineRef TM) {
const TargetMachine *Target = unwrap(TM);
const MCSubtargetInfo *MCInfo = Target->getMCSubtargetInfo();
const Triple::ArchType HostArch = Triple(sys::getProcessTriple()).getArch();
const Triple::ArchType TargetArch = Target->getTargetTriple().getArch();
const ArrayRef<SubtargetSubTypeKV> CPUTable = MCInfo->getCPUTable();
unsigned MaxCPULen = getLongestEntryLength(CPUTable);
printf("Available CPUs for this target:\n");
if (HostArch == TargetArch) {
const StringRef HostCPU = sys::getHostCPUName();
printf(" %-*s - Select the CPU of the current host (currently %.*s).\n",
MaxCPULen, "native", (int)HostCPU.size(), HostCPU.data());
}
for (auto &CPU : CPUTable)
printf(" %-*s\n", MaxCPULen, CPU.Key);
printf("\n");
}
extern "C" size_t LLVMRustGetTargetFeaturesCount(LLVMTargetMachineRef TM) {
const TargetMachine *Target = unwrap(TM);
const MCSubtargetInfo *MCInfo = Target->getMCSubtargetInfo();
const ArrayRef<SubtargetFeatureKV> FeatTable = MCInfo->getFeatureTable();
return FeatTable.size();
}
extern "C" void LLVMRustGetTargetFeature(LLVMTargetMachineRef TM, size_t Index,
const char** Feature, const char** Desc) {
const TargetMachine *Target = unwrap(TM);
const MCSubtargetInfo *MCInfo = Target->getMCSubtargetInfo();
const ArrayRef<SubtargetFeatureKV> FeatTable = MCInfo->getFeatureTable();
const SubtargetFeatureKV Feat = FeatTable[Index];
*Feature = Feat.Key;
*Desc = Feat.Desc;
}
#else
extern "C" void LLVMRustPrintTargetCPUs(LLVMTargetMachineRef) {
printf("Target CPU help is not supported by this LLVM version.\n\n");
}
extern "C" size_t LLVMRustGetTargetFeaturesCount(LLVMTargetMachineRef) {
return 0;
}
extern "C" void LLVMRustGetTargetFeature(LLVMTargetMachineRef, const char**, const char**) {}
#endif
extern "C" const char* LLVMRustGetHostCPUName(size_t *len) {
StringRef Name = sys::getHostCPUName();
*len = Name.size();
return Name.data();
}
extern "C" LLVMTargetMachineRef LLVMRustCreateTargetMachine(
const char *TripleStr, const char *CPU, const char *Feature,
const char *ABIStr, LLVMRustCodeModel RustCM, LLVMRustRelocModel RustReloc,
LLVMRustCodeGenOptLevel RustOptLevel, bool UseSoftFloat,
bool FunctionSections,
bool DataSections,
bool UniqueSectionNames,
bool TrapUnreachable,
bool Singlethread,
bool AsmComments,
bool EmitStackSizeSection,
bool RelaxELFRelocations,
bool UseInitArray,
const char *SplitDwarfFile) {
auto OptLevel = fromRust(RustOptLevel);
auto RM = fromRust(RustReloc);
auto CM = fromRust(RustCM);
std::string Error;
Triple Trip(Triple::normalize(TripleStr));
const llvm::Target *TheTarget =
TargetRegistry::lookupTarget(Trip.getTriple(), Error);
if (TheTarget == nullptr) {
LLVMRustSetLastError(Error.c_str());
return nullptr;
}
TargetOptions Options;
Options.FloatABIType = FloatABI::Default;
if (UseSoftFloat) {
Options.FloatABIType = FloatABI::Soft;
}
Options.DataSections = DataSections;
Options.FunctionSections = FunctionSections;
Options.UniqueSectionNames = UniqueSectionNames;
Options.MCOptions.AsmVerbose = AsmComments;
Options.MCOptions.PreserveAsmComments = AsmComments;
Options.MCOptions.ABIName = ABIStr;
if (SplitDwarfFile) {
Options.MCOptions.SplitDwarfFile = SplitDwarfFile;
}
Options.RelaxELFRelocations = RelaxELFRelocations;
Options.UseInitArray = UseInitArray;
if (TrapUnreachable) {
// Tell LLVM to codegen `unreachable` into an explicit trap instruction.
// This limits the extent of possible undefined behavior in some cases, as
// it prevents control flow from "falling through" into whatever code
// happens to be laid out next in memory.
Options.TrapUnreachable = true;
}
if (Singlethread) {
Options.ThreadModel = ThreadModel::Single;
}
Options.EmitStackSizeSection = EmitStackSizeSection;
TargetMachine *TM = TheTarget->createTargetMachine(
Trip.getTriple(), CPU, Feature, Options, RM, CM, OptLevel);
return wrap(TM);
}
extern "C" void LLVMRustDisposeTargetMachine(LLVMTargetMachineRef TM) {
delete unwrap(TM);
}
extern "C" void LLVMRustConfigurePassManagerBuilder(
LLVMPassManagerBuilderRef PMBR, LLVMRustCodeGenOptLevel OptLevel,
bool MergeFunctions, bool SLPVectorize, bool LoopVectorize, bool PrepareForThinLTO,
const char* PGOGenPath, const char* PGOUsePath, const char* PGOSampleUsePath) {
unwrap(PMBR)->MergeFunctions = MergeFunctions;
unwrap(PMBR)->SLPVectorize = SLPVectorize;
unwrap(PMBR)->OptLevel = fromRust(OptLevel);
unwrap(PMBR)->LoopVectorize = LoopVectorize;
unwrap(PMBR)->PrepareForThinLTO = PrepareForThinLTO;
if (PGOGenPath) {
assert(!PGOUsePath && !PGOSampleUsePath);
unwrap(PMBR)->EnablePGOInstrGen = true;
unwrap(PMBR)->PGOInstrGen = PGOGenPath;
} else if (PGOUsePath) {
assert(!PGOSampleUsePath);
unwrap(PMBR)->PGOInstrUse = PGOUsePath;
} else if (PGOSampleUsePath) {
unwrap(PMBR)->PGOSampleUse = PGOSampleUsePath;
}
}
// Unfortunately, the LLVM C API doesn't provide a way to set the `LibraryInfo`
// field of a PassManagerBuilder, we expose our own method of doing so.
extern "C" void LLVMRustAddBuilderLibraryInfo(LLVMPassManagerBuilderRef PMBR,
LLVMModuleRef M,
bool DisableSimplifyLibCalls) {
Triple TargetTriple(unwrap(M)->getTargetTriple());
TargetLibraryInfoImpl *TLI = new TargetLibraryInfoImpl(TargetTriple);
if (DisableSimplifyLibCalls)
TLI->disableAllFunctions();
unwrap(PMBR)->LibraryInfo = TLI;
}
// Unfortunately, the LLVM C API doesn't provide a way to create the
// TargetLibraryInfo pass, so we use this method to do so.
extern "C" void LLVMRustAddLibraryInfo(LLVMPassManagerRef PMR, LLVMModuleRef M,
bool DisableSimplifyLibCalls) {
Triple TargetTriple(unwrap(M)->getTargetTriple());
TargetLibraryInfoImpl TLII(TargetTriple);
if (DisableSimplifyLibCalls)
TLII.disableAllFunctions();
unwrap(PMR)->add(new TargetLibraryInfoWrapperPass(TLII));
}
// Unfortunately, the LLVM C API doesn't provide an easy way of iterating over
// all the functions in a module, so we do that manually here. You'll find
// similar code in clang's BackendUtil.cpp file.
extern "C" void LLVMRustRunFunctionPassManager(LLVMPassManagerRef PMR,
LLVMModuleRef M) {
llvm::legacy::FunctionPassManager *P =
unwrap<llvm::legacy::FunctionPassManager>(PMR);
P->doInitialization();
// Upgrade all calls to old intrinsics first.
for (Module::iterator I = unwrap(M)->begin(), E = unwrap(M)->end(); I != E;)
UpgradeCallsToIntrinsic(&*I++); // must be post-increment, as we remove
for (Module::iterator I = unwrap(M)->begin(), E = unwrap(M)->end(); I != E;
++I)
if (!I->isDeclaration())
P->run(*I);
P->doFinalization();
}
extern "C" void LLVMRustSetLLVMOptions(int Argc, char **Argv) {
// Initializing the command-line options more than once is not allowed. So,
// check if they've already been initialized. (This could happen if we're
// being called from rustpkg, for example). If the arguments change, then
// that's just kinda unfortunate.
static bool Initialized = false;
if (Initialized)
return;
Initialized = true;
cl::ParseCommandLineOptions(Argc, Argv);
}
enum class LLVMRustFileType {
AssemblyFile,
ObjectFile,
};
static CodeGenFileType fromRust(LLVMRustFileType Type) {
switch (Type) {
case LLVMRustFileType::AssemblyFile:
return CGFT_AssemblyFile;
case LLVMRustFileType::ObjectFile:
return CGFT_ObjectFile;
default:
report_fatal_error("Bad FileType.");
}
}
extern "C" LLVMRustResult
LLVMRustWriteOutputFile(LLVMTargetMachineRef Target, LLVMPassManagerRef PMR,
LLVMModuleRef M, const char *Path, const char *DwoPath,
LLVMRustFileType RustFileType) {
llvm::legacy::PassManager *PM = unwrap<llvm::legacy::PassManager>(PMR);
auto FileType = fromRust(RustFileType);
std::string ErrorInfo;
std::error_code EC;
raw_fd_ostream OS(Path, EC, sys::fs::OF_None);
if (EC)
ErrorInfo = EC.message();
if (ErrorInfo != "") {
LLVMRustSetLastError(ErrorInfo.c_str());
return LLVMRustResult::Failure;
}
buffer_ostream BOS(OS);
if (DwoPath) {
raw_fd_ostream DOS(DwoPath, EC, sys::fs::OF_None);
EC.clear();
if (EC)
ErrorInfo = EC.message();
if (ErrorInfo != "") {
LLVMRustSetLastError(ErrorInfo.c_str());
return LLVMRustResult::Failure;
}
buffer_ostream DBOS(DOS);
unwrap(Target)->addPassesToEmitFile(*PM, BOS, &DBOS, FileType, false);
PM->run(*unwrap(M));
} else {
unwrap(Target)->addPassesToEmitFile(*PM, BOS, nullptr, FileType, false);
PM->run(*unwrap(M));
}
// Apparently `addPassesToEmitFile` adds a pointer to our on-the-stack output
// stream (OS), so the only real safe place to delete this is here? Don't we
// wish this was written in Rust?
LLVMDisposePassManager(PMR);
return LLVMRustResult::Success;
}
extern "C" typedef void (*LLVMRustSelfProfileBeforePassCallback)(void*, // LlvmSelfProfiler
const char*, // pass name
const char*); // IR name
extern "C" typedef void (*LLVMRustSelfProfileAfterPassCallback)(void*); // LlvmSelfProfiler
std::string LLVMRustwrappedIrGetName(const llvm::Any &WrappedIr) {
if (any_isa<const Module *>(WrappedIr))
return any_cast<const Module *>(WrappedIr)->getName().str();
if (any_isa<const Function *>(WrappedIr))
return any_cast<const Function *>(WrappedIr)->getName().str();
if (any_isa<const Loop *>(WrappedIr))
return any_cast<const Loop *>(WrappedIr)->getName().str();
if (any_isa<const LazyCallGraph::SCC *>(WrappedIr))
return any_cast<const LazyCallGraph::SCC *>(WrappedIr)->getName();
return "<UNKNOWN>";
}
void LLVMSelfProfileInitializeCallbacks(
PassInstrumentationCallbacks& PIC, void* LlvmSelfProfiler,
LLVMRustSelfProfileBeforePassCallback BeforePassCallback,
LLVMRustSelfProfileAfterPassCallback AfterPassCallback) {
PIC.registerBeforeNonSkippedPassCallback([LlvmSelfProfiler, BeforePassCallback](
StringRef Pass, llvm::Any Ir) {
std::string PassName = Pass.str();
std::string IrName = LLVMRustwrappedIrGetName(Ir);
BeforePassCallback(LlvmSelfProfiler, PassName.c_str(), IrName.c_str());
});
PIC.registerAfterPassCallback(
[LlvmSelfProfiler, AfterPassCallback](StringRef Pass, llvm::Any IR,
const PreservedAnalyses &Preserved) {
AfterPassCallback(LlvmSelfProfiler);
});
PIC.registerAfterPassInvalidatedCallback(
[LlvmSelfProfiler, AfterPassCallback](StringRef Pass, const PreservedAnalyses &Preserved) {
AfterPassCallback(LlvmSelfProfiler);
});
PIC.registerBeforeAnalysisCallback([LlvmSelfProfiler, BeforePassCallback](
StringRef Pass, llvm::Any Ir) {
std::string PassName = Pass.str();
std::string IrName = LLVMRustwrappedIrGetName(Ir);
BeforePassCallback(LlvmSelfProfiler, PassName.c_str(), IrName.c_str());
});
PIC.registerAfterAnalysisCallback(
[LlvmSelfProfiler, AfterPassCallback](StringRef Pass, llvm::Any Ir) {
AfterPassCallback(LlvmSelfProfiler);
});
}
enum class LLVMRustOptStage {
PreLinkNoLTO,
PreLinkThinLTO,
PreLinkFatLTO,
ThinLTO,
FatLTO,
};
struct LLVMRustSanitizerOptions {
bool SanitizeAddress;
bool SanitizeAddressRecover;
bool SanitizeMemory;
bool SanitizeMemoryRecover;
int SanitizeMemoryTrackOrigins;
bool SanitizeThread;
bool SanitizeHWAddress;
bool SanitizeHWAddressRecover;
};
extern "C" LLVMRustResult
LLVMRustOptimizeWithNewPassManager(
LLVMModuleRef ModuleRef,
LLVMTargetMachineRef TMRef,
LLVMRustPassBuilderOptLevel OptLevelRust,
LLVMRustOptStage OptStage,
bool NoPrepopulatePasses, bool VerifyIR, bool UseThinLTOBuffers,
bool MergeFunctions, bool UnrollLoops, bool SLPVectorize, bool LoopVectorize,
bool DisableSimplifyLibCalls, bool EmitLifetimeMarkers,
LLVMRustSanitizerOptions *SanitizerOptions,
const char *PGOGenPath, const char *PGOUsePath,
bool InstrumentCoverage, bool InstrumentGCOV,
const char *PGOSampleUsePath, bool DebugInfoForProfiling,
void* LlvmSelfProfiler,
LLVMRustSelfProfileBeforePassCallback BeforePassCallback,
LLVMRustSelfProfileAfterPassCallback AfterPassCallback,
const char *ExtraPasses, size_t ExtraPassesLen) {
Module *TheModule = unwrap(ModuleRef);
TargetMachine *TM = unwrap(TMRef);
OptimizationLevel OptLevel = fromRust(OptLevelRust);
PipelineTuningOptions PTO;
PTO.LoopUnrolling = UnrollLoops;
PTO.LoopInterleaving = UnrollLoops;
PTO.LoopVectorization = LoopVectorize;
PTO.SLPVectorization = SLPVectorize;
PTO.MergeFunctions = MergeFunctions;
// FIXME: We may want to expose this as an option.
bool DebugPassManager = false;
PassInstrumentationCallbacks PIC;
StandardInstrumentations SI(DebugPassManager);
SI.registerCallbacks(PIC);
if (LlvmSelfProfiler){
LLVMSelfProfileInitializeCallbacks(PIC,LlvmSelfProfiler,BeforePassCallback,AfterPassCallback);
}
Optional<PGOOptions> PGOOpt;
if (PGOGenPath) {
assert(!PGOUsePath && !PGOSampleUsePath);
PGOOpt = PGOOptions(PGOGenPath, "", "", PGOOptions::IRInstr,
PGOOptions::NoCSAction, DebugInfoForProfiling);
} else if (PGOUsePath) {
assert(!PGOSampleUsePath);
PGOOpt = PGOOptions(PGOUsePath, "", "", PGOOptions::IRUse,
PGOOptions::NoCSAction, DebugInfoForProfiling);
} else if (PGOSampleUsePath) {
PGOOpt = PGOOptions(PGOSampleUsePath, "", "", PGOOptions::SampleUse,
PGOOptions::NoCSAction, DebugInfoForProfiling);
} else if (DebugInfoForProfiling) {
PGOOpt = PGOOptions("", "", "", PGOOptions::NoAction,
PGOOptions::NoCSAction, DebugInfoForProfiling);
}
#if LLVM_VERSION_GE(13, 0)
PassBuilder PB(TM, PTO, PGOOpt, &PIC);
LoopAnalysisManager LAM;
FunctionAnalysisManager FAM;
CGSCCAnalysisManager CGAM;
ModuleAnalysisManager MAM;
#else
PassBuilder PB(DebugPassManager, TM, PTO, PGOOpt, &PIC);
LoopAnalysisManager LAM(DebugPassManager);
FunctionAnalysisManager FAM(DebugPassManager);
CGSCCAnalysisManager CGAM(DebugPassManager);
ModuleAnalysisManager MAM(DebugPassManager);
#endif
FAM.registerPass([&] { return PB.buildDefaultAAPipeline(); });
Triple TargetTriple(TheModule->getTargetTriple());
std::unique_ptr<TargetLibraryInfoImpl> TLII(new TargetLibraryInfoImpl(TargetTriple));
if (DisableSimplifyLibCalls)
TLII->disableAllFunctions();
FAM.registerPass([&] { return TargetLibraryAnalysis(*TLII); });
PB.registerModuleAnalyses(MAM);
PB.registerCGSCCAnalyses(CGAM);
PB.registerFunctionAnalyses(FAM);
PB.registerLoopAnalyses(LAM);
PB.crossRegisterProxies(LAM, FAM, CGAM, MAM);
// We manually collect pipeline callbacks so we can apply them at O0, where the
// PassBuilder does not create a pipeline.
std::vector<std::function<void(ModulePassManager &, OptimizationLevel)>>
PipelineStartEPCallbacks;
std::vector<std::function<void(ModulePassManager &, OptimizationLevel)>>
OptimizerLastEPCallbacks;
if (VerifyIR) {
PipelineStartEPCallbacks.push_back(
[VerifyIR](ModulePassManager &MPM, OptimizationLevel Level) {
MPM.addPass(VerifierPass());
}
);
}
if (InstrumentGCOV) {
PipelineStartEPCallbacks.push_back(
[](ModulePassManager &MPM, OptimizationLevel Level) {
MPM.addPass(GCOVProfilerPass(GCOVOptions::getDefault()));
}
);
}
if (InstrumentCoverage) {
PipelineStartEPCallbacks.push_back(
[](ModulePassManager &MPM, OptimizationLevel Level) {
InstrProfOptions Options;
MPM.addPass(InstrProfiling(Options, false));
}
);
}
if (SanitizerOptions) {
if (SanitizerOptions->SanitizeMemory) {
MemorySanitizerOptions Options(
SanitizerOptions->SanitizeMemoryTrackOrigins,
SanitizerOptions->SanitizeMemoryRecover,
/*CompileKernel=*/false);
OptimizerLastEPCallbacks.push_back(
[Options](ModulePassManager &MPM, OptimizationLevel Level) {
#if LLVM_VERSION_GE(14, 0)
MPM.addPass(ModuleMemorySanitizerPass(Options));
#else
MPM.addPass(MemorySanitizerPass(Options));
#endif
MPM.addPass(createModuleToFunctionPassAdaptor(MemorySanitizerPass(Options)));
}
);
}
if (SanitizerOptions->SanitizeThread) {
OptimizerLastEPCallbacks.push_back(
[](ModulePassManager &MPM, OptimizationLevel Level) {
#if LLVM_VERSION_GE(14, 0)
MPM.addPass(ModuleThreadSanitizerPass());
#else
MPM.addPass(ThreadSanitizerPass());
#endif
MPM.addPass(createModuleToFunctionPassAdaptor(ThreadSanitizerPass()));
}
);
}
if (SanitizerOptions->SanitizeAddress) {
OptimizerLastEPCallbacks.push_back(
[SanitizerOptions](ModulePassManager &MPM, OptimizationLevel Level) {
MPM.addPass(RequireAnalysisPass<ASanGlobalsMetadataAnalysis, Module>());
#if LLVM_VERSION_GE(14, 0)
AddressSanitizerOptions opts = AddressSanitizerOptions{
/*CompileKernel=*/false,
SanitizerOptions->SanitizeAddressRecover,
/*UseAfterScope=*/true,
AsanDetectStackUseAfterReturnMode::Runtime,
};
MPM.addPass(ModuleAddressSanitizerPass(opts));
#else
MPM.addPass(ModuleAddressSanitizerPass(
/*CompileKernel=*/false, SanitizerOptions->SanitizeAddressRecover));
MPM.addPass(createModuleToFunctionPassAdaptor(AddressSanitizerPass(
/*CompileKernel=*/false, SanitizerOptions->SanitizeAddressRecover,
/*UseAfterScope=*/true)));
#endif
}
);
}
if (SanitizerOptions->SanitizeHWAddress) {
OptimizerLastEPCallbacks.push_back(
[SanitizerOptions](ModulePassManager &MPM, OptimizationLevel Level) {
#if LLVM_VERSION_GE(14, 0)
HWAddressSanitizerOptions opts(
/*CompileKernel=*/false, SanitizerOptions->SanitizeHWAddressRecover,
/*DisableOptimization=*/false);
MPM.addPass(HWAddressSanitizerPass(opts));
#else
MPM.addPass(HWAddressSanitizerPass(
/*CompileKernel=*/false, SanitizerOptions->SanitizeHWAddressRecover));
#endif
}
);
}
}
#if LLVM_VERSION_GE(13, 0)
ModulePassManager MPM;
#else
ModulePassManager MPM(DebugPassManager);
#endif
bool NeedThinLTOBufferPasses = UseThinLTOBuffers;
if (!NoPrepopulatePasses) {
// The pre-link pipelines don't support O0 and require using budilO0DefaultPipeline() instead.
// At the same time, the LTO pipelines do support O0 and using them is required.
bool IsLTO = OptStage == LLVMRustOptStage::ThinLTO || OptStage == LLVMRustOptStage::FatLTO;
if (OptLevel == OptimizationLevel::O0 && !IsLTO) {
for (const auto &C : PipelineStartEPCallbacks)
PB.registerPipelineStartEPCallback(C);
for (const auto &C : OptimizerLastEPCallbacks)
PB.registerOptimizerLastEPCallback(C);
// Pass false as we manually schedule ThinLTOBufferPasses below.
MPM = PB.buildO0DefaultPipeline(OptLevel, /* PreLinkLTO */ false);
} else {
for (const auto &C : PipelineStartEPCallbacks)
PB.registerPipelineStartEPCallback(C);
if (OptStage != LLVMRustOptStage::PreLinkThinLTO) {
for (const auto &C : OptimizerLastEPCallbacks)
PB.registerOptimizerLastEPCallback(C);
}
switch (OptStage) {
case LLVMRustOptStage::PreLinkNoLTO:
MPM = PB.buildPerModuleDefaultPipeline(OptLevel, DebugPassManager);
break;
case LLVMRustOptStage::PreLinkThinLTO:
MPM = PB.buildThinLTOPreLinkDefaultPipeline(OptLevel);
// The ThinLTOPreLink pipeline already includes ThinLTOBuffer passes. However, callback
// passes may still run afterwards. This means we need to run the buffer passes again.
// FIXME: In LLVM 13, the ThinLTOPreLink pipeline also runs OptimizerLastEPCallbacks
// before the RequiredLTOPreLinkPasses, in which case we can remove these hacks.
if (OptimizerLastEPCallbacks.empty())
NeedThinLTOBufferPasses = false;
for (const auto &C : OptimizerLastEPCallbacks)
C(MPM, OptLevel);
break;
case LLVMRustOptStage::PreLinkFatLTO:
MPM = PB.buildLTOPreLinkDefaultPipeline(OptLevel);
NeedThinLTOBufferPasses = false;
break;
case LLVMRustOptStage::ThinLTO:
// FIXME: Does it make sense to pass the ModuleSummaryIndex?
// It only seems to be needed for C++ specific optimizations.
MPM = PB.buildThinLTODefaultPipeline(OptLevel, nullptr);
break;
case LLVMRustOptStage::FatLTO:
MPM = PB.buildLTODefaultPipeline(OptLevel, nullptr);
break;
}
}
}
if (ExtraPassesLen) {
if (auto Err = PB.parsePassPipeline(MPM, StringRef(ExtraPasses, ExtraPassesLen))) {
std::string ErrMsg = toString(std::move(Err));
LLVMRustSetLastError(ErrMsg.c_str());
return LLVMRustResult::Failure;
}
}
if (NeedThinLTOBufferPasses) {
MPM.addPass(CanonicalizeAliasesPass());
MPM.addPass(NameAnonGlobalPass());
}
// Upgrade all calls to old intrinsics first.
for (Module::iterator I = TheModule->begin(), E = TheModule->end(); I != E;)
UpgradeCallsToIntrinsic(&*I++); // must be post-increment, as we remove
MPM.run(*TheModule, MAM);
return LLVMRustResult::Success;
}
// Callback to demangle function name
// Parameters:
// * name to be demangled
// * name len
// * output buffer
// * output buffer len
// Returns len of demangled string, or 0 if demangle failed.
typedef size_t (*DemangleFn)(const char*, size_t, char*, size_t);
namespace {
class RustAssemblyAnnotationWriter : public AssemblyAnnotationWriter {
DemangleFn Demangle;
std::vector<char> Buf;
public:
RustAssemblyAnnotationWriter(DemangleFn Demangle) : Demangle(Demangle) {}
// Return empty string if demangle failed
// or if name does not need to be demangled
StringRef CallDemangle(StringRef name) {
if (!Demangle) {
return StringRef();
}
if (Buf.size() < name.size() * 2) {
// Semangled name usually shorter than mangled,
// but allocate twice as much memory just in case
Buf.resize(name.size() * 2);
}
auto R = Demangle(name.data(), name.size(), Buf.data(), Buf.size());
if (!R) {
// Demangle failed.
return StringRef();
}
auto Demangled = StringRef(Buf.data(), R);
if (Demangled == name) {
// Do not print anything if demangled name is equal to mangled.
return StringRef();
}
return Demangled;
}
void emitFunctionAnnot(const Function *F,
formatted_raw_ostream &OS) override {
StringRef Demangled = CallDemangle(F->getName());
if (Demangled.empty()) {
return;
}
OS << "; " << Demangled << "\n";
}
void emitInstructionAnnot(const Instruction *I,
formatted_raw_ostream &OS) override {
const char *Name;
const Value *Value;
if (const CallInst *CI = dyn_cast<CallInst>(I)) {
Name = "call";
Value = CI->getCalledOperand();
} else if (const InvokeInst* II = dyn_cast<InvokeInst>(I)) {
Name = "invoke";
Value = II->getCalledOperand();
} else {
// Could demangle more operations, e. g.
// `store %place, @function`.
return;
}
if (!Value->hasName()) {
return;
}
StringRef Demangled = CallDemangle(Value->getName());
if (Demangled.empty()) {
return;
}
OS << "; " << Name << " " << Demangled << "\n";
}
};
} // namespace
extern "C" LLVMRustResult
LLVMRustPrintModule(LLVMModuleRef M, const char *Path, DemangleFn Demangle) {
std::string ErrorInfo;
std::error_code EC;
raw_fd_ostream OS(Path, EC, sys::fs::OF_None);
if (EC)
ErrorInfo = EC.message();
if (ErrorInfo != "") {
LLVMRustSetLastError(ErrorInfo.c_str());
return LLVMRustResult::Failure;
}
RustAssemblyAnnotationWriter AAW(Demangle);
formatted_raw_ostream FOS(OS);
unwrap(M)->print(FOS, &AAW);
return LLVMRustResult::Success;
}
extern "C" void LLVMRustPrintPasses() {
LLVMInitializePasses();
struct MyListener : PassRegistrationListener {
void passEnumerate(const PassInfo *Info) {
StringRef PassArg = Info->getPassArgument();
StringRef PassName = Info->getPassName();
if (!PassArg.empty()) {
// These unsigned->signed casts could theoretically overflow, but
// realistically never will (and even if, the result is implementation
// defined rather plain UB).
printf("%15.*s - %.*s\n", (int)PassArg.size(), PassArg.data(),
(int)PassName.size(), PassName.data());
}
}
} Listener;
PassRegistry *PR = PassRegistry::getPassRegistry();
PR->enumerateWith(&Listener);
}
extern "C" void LLVMRustAddAlwaysInlinePass(LLVMPassManagerBuilderRef PMBR,
bool AddLifetimes) {
unwrap(PMBR)->Inliner = llvm::createAlwaysInlinerLegacyPass(AddLifetimes);
}
extern "C" void LLVMRustRunRestrictionPass(LLVMModuleRef M, char **Symbols,
size_t Len) {
llvm::legacy::PassManager passes;
auto PreserveFunctions = [=](const GlobalValue &GV) {
for (size_t I = 0; I < Len; I++) {
if (GV.getName() == Symbols[I]) {
return true;
}
}
return false;
};
passes.add(llvm::createInternalizePass(PreserveFunctions));
passes.run(*unwrap(M));
}
extern "C" void LLVMRustMarkAllFunctionsNounwind(LLVMModuleRef M) {
for (Module::iterator GV = unwrap(M)->begin(), E = unwrap(M)->end(); GV != E;
++GV) {
GV->setDoesNotThrow();
Function *F = dyn_cast<Function>(GV);
if (F == nullptr)
continue;
for (Function::iterator B = F->begin(), BE = F->end(); B != BE; ++B) {
for (BasicBlock::iterator I = B->begin(), IE = B->end(); I != IE; ++I) {
if (isa<InvokeInst>(I)) {
InvokeInst *CI = cast<InvokeInst>(I);
CI->setDoesNotThrow();
}
}
}
}
}
extern "C" void
LLVMRustSetDataLayoutFromTargetMachine(LLVMModuleRef Module,
LLVMTargetMachineRef TMR) {
TargetMachine *Target = unwrap(TMR);
unwrap(Module)->setDataLayout(Target->createDataLayout());
}
extern "C" void LLVMRustSetModulePICLevel(LLVMModuleRef M) {
unwrap(M)->setPICLevel(PICLevel::Level::BigPIC);
}
extern "C" void LLVMRustSetModulePIELevel(LLVMModuleRef M) {
unwrap(M)->setPIELevel(PIELevel::Level::Large);
}
extern "C" void LLVMRustSetModuleCodeModel(LLVMModuleRef M,
LLVMRustCodeModel Model) {
auto CM = fromRust(Model);
if (!CM.hasValue())
return;
unwrap(M)->setCodeModel(*CM);
}
// Here you'll find an implementation of ThinLTO as used by the Rust compiler
// right now. This ThinLTO support is only enabled on "recent ish" versions of
// LLVM, and otherwise it's just blanket rejected from other compilers.
//
// Most of this implementation is straight copied from LLVM. At the time of
// this writing it wasn't *quite* suitable to reuse more code from upstream
// for our purposes, but we should strive to upstream this support once it's
// ready to go! I figure we may want a bit of testing locally first before
// sending this upstream to LLVM. I hear though they're quite eager to receive
// feedback like this!
//
// If you're reading this code and wondering "what in the world" or you're
// working "good lord by LLVM upgrade is *still* failing due to these bindings"
// then fear not! (ok maybe fear a little). All code here is mostly based
// on `lib/LTO/ThinLTOCodeGenerator.cpp` in LLVM.
//
// You'll find that the general layout here roughly corresponds to the `run`
// method in that file as well as `ProcessThinLTOModule`. Functions are
// specifically commented below as well, but if you're updating this code
// or otherwise trying to understand it, the LLVM source will be useful in
// interpreting the mysteries within.
//
// Otherwise I'll apologize in advance, it probably requires a relatively
// significant investment on your part to "truly understand" what's going on
// here. Not saying I do myself, but it took me awhile staring at LLVM's source
// and various online resources about ThinLTO to make heads or tails of all
// this.
// This is a shared data structure which *must* be threadsafe to share
// read-only amongst threads. This also corresponds basically to the arguments
// of the `ProcessThinLTOModule` function in the LLVM source.
struct LLVMRustThinLTOData {
// The combined index that is the global analysis over all modules we're
// performing ThinLTO for. This is mostly managed by LLVM.
ModuleSummaryIndex Index;
// All modules we may look at, stored as in-memory serialized versions. This
// is later used when inlining to ensure we can extract any module to inline
// from.
StringMap<MemoryBufferRef> ModuleMap;
// A set that we manage of everything we *don't* want internalized. Note that
// this includes all transitive references right now as well, but it may not
// always!
DenseSet<GlobalValue::GUID> GUIDPreservedSymbols;
// Not 100% sure what these are, but they impact what's internalized and
// what's inlined across modules, I believe.
StringMap<FunctionImporter::ImportMapTy> ImportLists;
StringMap<FunctionImporter::ExportSetTy> ExportLists;
StringMap<GVSummaryMapTy> ModuleToDefinedGVSummaries;
StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>> ResolvedODR;
LLVMRustThinLTOData() : Index(/* HaveGVs = */ false) {}
};
// Just an argument to the `LLVMRustCreateThinLTOData` function below.
struct LLVMRustThinLTOModule {
const char *identifier;
const char *data;
size_t len;
};
// This is copied from `lib/LTO/ThinLTOCodeGenerator.cpp`, not sure what it
// does.
static const GlobalValueSummary *
getFirstDefinitionForLinker(const GlobalValueSummaryList &GVSummaryList) {
auto StrongDefForLinker = llvm::find_if(
GVSummaryList, [](const std::unique_ptr<GlobalValueSummary> &Summary) {
auto Linkage = Summary->linkage();
return !GlobalValue::isAvailableExternallyLinkage(Linkage) &&
!GlobalValue::isWeakForLinker(Linkage);
});
if (StrongDefForLinker != GVSummaryList.end())
return StrongDefForLinker->get();
auto FirstDefForLinker = llvm::find_if(
GVSummaryList, [](const std::unique_ptr<GlobalValueSummary> &Summary) {
auto Linkage = Summary->linkage();
return !GlobalValue::isAvailableExternallyLinkage(Linkage);
});
if (FirstDefForLinker == GVSummaryList.end())
return nullptr;
return FirstDefForLinker->get();
}
// The main entry point for creating the global ThinLTO analysis. The structure
// here is basically the same as before threads are spawned in the `run`
// function of `lib/LTO/ThinLTOCodeGenerator.cpp`.
extern "C" LLVMRustThinLTOData*
LLVMRustCreateThinLTOData(LLVMRustThinLTOModule *modules,
int num_modules,
const char **preserved_symbols,
int num_symbols) {
auto Ret = std::make_unique<LLVMRustThinLTOData>();
// Load each module's summary and merge it into one combined index
for (int i = 0; i < num_modules; i++) {
auto module = &modules[i];
StringRef buffer(module->data, module->len);
MemoryBufferRef mem_buffer(buffer, module->identifier);
Ret->ModuleMap[module->identifier] = mem_buffer;
if (Error Err = readModuleSummaryIndex(mem_buffer, Ret->Index, i)) {
LLVMRustSetLastError(toString(std::move(Err)).c_str());
return nullptr;
}
}
// Collect for each module the list of function it defines (GUID -> Summary)
Ret->Index.collectDefinedGVSummariesPerModule(Ret->ModuleToDefinedGVSummaries);
// Convert the preserved symbols set from string to GUID, this is then needed
// for internalization.
for (int i = 0; i < num_symbols; i++) {
auto GUID = GlobalValue::getGUID(preserved_symbols[i]);
Ret->GUIDPreservedSymbols.insert(GUID);
}
// Collect the import/export lists for all modules from the call-graph in the
// combined index
//
// This is copied from `lib/LTO/ThinLTOCodeGenerator.cpp`
auto deadIsPrevailing = [&](GlobalValue::GUID G) {
return PrevailingType::Unknown;
};
// We don't have a complete picture in our use of ThinLTO, just our immediate
// crate, so we need `ImportEnabled = false` to limit internalization.
// Otherwise, we sometimes lose `static` values -- see #60184.
computeDeadSymbolsWithConstProp(Ret->Index, Ret->GUIDPreservedSymbols,
deadIsPrevailing, /* ImportEnabled = */ false);
ComputeCrossModuleImport(
Ret->Index,
Ret->ModuleToDefinedGVSummaries,
Ret->ImportLists,
Ret->ExportLists
);
// Resolve LinkOnce/Weak symbols, this has to be computed early be cause it
// impacts the caching.
//
// This is copied from `lib/LTO/ThinLTOCodeGenerator.cpp` with some of this
// being lifted from `lib/LTO/LTO.cpp` as well
DenseMap<GlobalValue::GUID, const GlobalValueSummary *> PrevailingCopy;
for (auto &I : Ret->Index) {
if (I.second.SummaryList.size() > 1)
PrevailingCopy[I.first] = getFirstDefinitionForLinker(I.second.SummaryList);
}
auto isPrevailing = [&](GlobalValue::GUID GUID, const GlobalValueSummary *S) {
const auto &Prevailing = PrevailingCopy.find(GUID);
if (Prevailing == PrevailingCopy.end())
return true;
return Prevailing->second == S;
};
auto recordNewLinkage = [&](StringRef ModuleIdentifier,
GlobalValue::GUID GUID,
GlobalValue::LinkageTypes NewLinkage) {
Ret->ResolvedODR[ModuleIdentifier][GUID] = NewLinkage;
};
#if LLVM_VERSION_GE(13,0)
// Uses FromPrevailing visibility scheme which works for many binary
// formats. We probably could and should use ELF visibility scheme for many of
// our targets, however.
lto::Config conf;
thinLTOResolvePrevailingInIndex(conf, Ret->Index, isPrevailing, recordNewLinkage,
Ret->GUIDPreservedSymbols);
#else
thinLTOResolvePrevailingInIndex(Ret->Index, isPrevailing, recordNewLinkage,
Ret->GUIDPreservedSymbols);
#endif
// Here we calculate an `ExportedGUIDs` set for use in the `isExported`
// callback below. This callback below will dictate the linkage for all
// summaries in the index, and we basically just only want to ensure that dead
// symbols are internalized. Otherwise everything that's already external
// linkage will stay as external, and internal will stay as internal.
std::set<GlobalValue::GUID> ExportedGUIDs;
for (auto &List : Ret->Index) {
for (auto &GVS: List.second.SummaryList) {
if (GlobalValue::isLocalLinkage(GVS->linkage()))
continue;
auto GUID = GVS->getOriginalName();
if (GVS->flags().Live)
ExportedGUIDs.insert(GUID);
}
}
auto isExported = [&](StringRef ModuleIdentifier, ValueInfo VI) {
const auto &ExportList = Ret->ExportLists.find(ModuleIdentifier);
return (ExportList != Ret->ExportLists.end() &&
ExportList->second.count(VI)) ||
ExportedGUIDs.count(VI.getGUID());
};
thinLTOInternalizeAndPromoteInIndex(Ret->Index, isExported, isPrevailing);
return Ret.release();
}
extern "C" void
LLVMRustFreeThinLTOData(LLVMRustThinLTOData *Data) {
delete Data;
}
// Below are the various passes that happen *per module* when doing ThinLTO.
//
// In other words, these are the functions that are all run concurrently
// with one another, one per module. The passes here correspond to the analysis
// passes in `lib/LTO/ThinLTOCodeGenerator.cpp`, currently found in the
// `ProcessThinLTOModule` function. Here they're split up into separate steps
// so rustc can save off the intermediate bytecode between each step.
static bool
clearDSOLocalOnDeclarations(Module &Mod, TargetMachine &TM) {
// When linking an ELF shared object, dso_local should be dropped. We
// conservatively do this for -fpic.
bool ClearDSOLocalOnDeclarations =
TM.getTargetTriple().isOSBinFormatELF() &&
TM.getRelocationModel() != Reloc::Static &&
Mod.getPIELevel() == PIELevel::Default;
return ClearDSOLocalOnDeclarations;
}
extern "C" bool
LLVMRustPrepareThinLTORename(const LLVMRustThinLTOData *Data, LLVMModuleRef M,
LLVMTargetMachineRef TM) {
Module &Mod = *unwrap(M);
TargetMachine &Target = *unwrap(TM);
bool ClearDSOLocal = clearDSOLocalOnDeclarations(Mod, Target);
bool error = renameModuleForThinLTO(Mod, Data->Index, ClearDSOLocal);
if (error) {
LLVMRustSetLastError("renameModuleForThinLTO failed");
return false;
}
return true;
}
extern "C" bool
LLVMRustPrepareThinLTOResolveWeak(const LLVMRustThinLTOData *Data, LLVMModuleRef M) {
Module &Mod = *unwrap(M);
const auto &DefinedGlobals = Data->ModuleToDefinedGVSummaries.lookup(Mod.getModuleIdentifier());
#if LLVM_VERSION_GE(14, 0)
thinLTOFinalizeInModule(Mod, DefinedGlobals, /*PropagateAttrs=*/true);
#else
thinLTOResolvePrevailingInModule(Mod, DefinedGlobals);
#endif
return true;
}
extern "C" bool
LLVMRustPrepareThinLTOInternalize(const LLVMRustThinLTOData *Data, LLVMModuleRef M) {
Module &Mod = *unwrap(M);
const auto &DefinedGlobals = Data->ModuleToDefinedGVSummaries.lookup(Mod.getModuleIdentifier());
thinLTOInternalizeModule(Mod, DefinedGlobals);
return true;
}
extern "C" bool
LLVMRustPrepareThinLTOImport(const LLVMRustThinLTOData *Data, LLVMModuleRef M,
LLVMTargetMachineRef TM) {
Module &Mod = *unwrap(M);
TargetMachine &Target = *unwrap(TM);
const auto &ImportList = Data->ImportLists.lookup(Mod.getModuleIdentifier());
auto Loader = [&](StringRef Identifier) {
const auto &Memory = Data->ModuleMap.lookup(Identifier);
auto &Context = Mod.getContext();
auto MOrErr = getLazyBitcodeModule(Memory, Context, true, true);
if (!MOrErr)
return MOrErr;
// The rest of this closure is a workaround for
// https://bugs.llvm.org/show_bug.cgi?id=38184 where during ThinLTO imports
// we accidentally import wasm custom sections into different modules,
// duplicating them by in the final output artifact.
//
// The issue is worked around here by manually removing the
// `wasm.custom_sections` named metadata node from any imported module. This
// we know isn't used by any optimization pass so there's no need for it to
// be imported.
//
// Note that the metadata is currently lazily loaded, so we materialize it
// here before looking up if there's metadata inside. The `FunctionImporter`
// will immediately materialize metadata anyway after an import, so this
// shouldn't be a perf hit.
if (Error Err = (*MOrErr)->materializeMetadata()) {
Expected<std::unique_ptr<Module>> Ret(std::move(Err));
return Ret;
}
auto *WasmCustomSections = (*MOrErr)->getNamedMetadata("wasm.custom_sections");
if (WasmCustomSections)
WasmCustomSections->eraseFromParent();
return MOrErr;
};
bool ClearDSOLocal = clearDSOLocalOnDeclarations(Mod, Target);
FunctionImporter Importer(Data->Index, Loader, ClearDSOLocal);
Expected<bool> Result = Importer.importFunctions(Mod, ImportList);
if (!Result) {
LLVMRustSetLastError(toString(Result.takeError()).c_str());
return false;
}
return true;
}
extern "C" typedef void (*LLVMRustModuleNameCallback)(void*, // payload
const char*, // importing module name
const char*); // imported module name
// Calls `module_name_callback` for each module import done by ThinLTO.
// The callback is provided with regular null-terminated C strings.
extern "C" void
LLVMRustGetThinLTOModules(const LLVMRustThinLTOData *data,
LLVMRustModuleNameCallback module_name_callback,
void* callback_payload) {
for (const auto& importing_module : data->ImportLists) {
const std::string importing_module_id = importing_module.getKey().str();
const auto& imports = importing_module.getValue();
for (const auto& imported_module : imports) {
const std::string imported_module_id = imported_module.getKey().str();
module_name_callback(callback_payload,
importing_module_id.c_str(),
imported_module_id.c_str());
}
}
}
// This struct and various functions are sort of a hack right now, but the
// problem is that we've got in-memory LLVM modules after we generate and
// optimize all codegen-units for one compilation in rustc. To be compatible
// with the LTO support above we need to serialize the modules plus their
// ThinLTO summary into memory.
//
// This structure is basically an owned version of a serialize module, with
// a ThinLTO summary attached.
struct LLVMRustThinLTOBuffer {
std::string data;
};
extern "C" LLVMRustThinLTOBuffer*
LLVMRustThinLTOBufferCreate(LLVMModuleRef M) {
auto Ret = std::make_unique<LLVMRustThinLTOBuffer>();
{
raw_string_ostream OS(Ret->data);
{
legacy::PassManager PM;
PM.add(createWriteThinLTOBitcodePass(OS));
PM.run(*unwrap(M));
}
}
return Ret.release();
}
extern "C" void
LLVMRustThinLTOBufferFree(LLVMRustThinLTOBuffer *Buffer) {
delete Buffer;
}
extern "C" const void*
LLVMRustThinLTOBufferPtr(const LLVMRustThinLTOBuffer *Buffer) {
return Buffer->data.data();
}
extern "C" size_t
LLVMRustThinLTOBufferLen(const LLVMRustThinLTOBuffer *Buffer) {
return Buffer->data.length();
}
// This is what we used to parse upstream bitcode for actual ThinLTO
// processing. We'll call this once per module optimized through ThinLTO, and
// it'll be called concurrently on many threads.
extern "C" LLVMModuleRef
LLVMRustParseBitcodeForLTO(LLVMContextRef Context,
const char *data,
size_t len,
const char *identifier) {
StringRef Data(data, len);
MemoryBufferRef Buffer(Data, identifier);
unwrap(Context)->enableDebugTypeODRUniquing();
Expected<std::unique_ptr<Module>> SrcOrError =
parseBitcodeFile(Buffer, *unwrap(Context));
if (!SrcOrError) {
LLVMRustSetLastError(toString(SrcOrError.takeError()).c_str());
return nullptr;
}
return wrap(std::move(*SrcOrError).release());
}
// Find the bitcode section in the object file data and return it as a slice.
// Fail if the bitcode section is present but empty.
//
// On success, the return value is the pointer to the start of the slice and
// `out_len` is filled with the (non-zero) length. On failure, the return value
// is `nullptr` and `out_len` is set to zero.
extern "C" const char*
LLVMRustGetBitcodeSliceFromObjectData(const char *data,
size_t len,
size_t *out_len) {
*out_len = 0;
StringRef Data(data, len);
MemoryBufferRef Buffer(Data, ""); // The id is unused.
Expected<MemoryBufferRef> BitcodeOrError =
object::IRObjectFile::findBitcodeInMemBuffer(Buffer);
if (!BitcodeOrError) {
LLVMRustSetLastError(toString(BitcodeOrError.takeError()).c_str());
return nullptr;
}
*out_len = BitcodeOrError->getBufferSize();
return BitcodeOrError->getBufferStart();
}
// Rewrite all `DICompileUnit` pointers to the `DICompileUnit` specified. See
// the comment in `back/lto.rs` for why this exists.
extern "C" void
LLVMRustLTOGetDICompileUnit(LLVMModuleRef Mod,
DICompileUnit **A,
DICompileUnit **B) {
Module *M = unwrap(Mod);
DICompileUnit **Cur = A;
DICompileUnit **Next = B;
for (DICompileUnit *CU : M->debug_compile_units()) {
*Cur = CU;
Cur = Next;
Next = nullptr;
if (Cur == nullptr)
break;
}
}
// Rewrite all `DICompileUnit` pointers to the `DICompileUnit` specified. See
// the comment in `back/lto.rs` for why this exists.
extern "C" void
LLVMRustLTOPatchDICompileUnit(LLVMModuleRef Mod, DICompileUnit *Unit) {
Module *M = unwrap(Mod);
// If the original source module didn't have a `DICompileUnit` then try to
// merge all the existing compile units. If there aren't actually any though
// then there's not much for us to do so return.
if (Unit == nullptr) {
for (DICompileUnit *CU : M->debug_compile_units()) {
Unit = CU;
break;
}
if (Unit == nullptr)
return;
}
// Use LLVM's built-in `DebugInfoFinder` to find a bunch of debuginfo and
// process it recursively. Note that we used to specifically iterate over
// instructions to ensure we feed everything into it, but `processModule`
// started doing this the same way in LLVM 7 (commit d769eb36ab2b8).
DebugInfoFinder Finder;
Finder.processModule(*M);
// After we've found all our debuginfo, rewrite all subprograms to point to
// the same `DICompileUnit`.
for (auto &F : Finder.subprograms()) {
F->replaceUnit(Unit);
}
// Erase any other references to other `DICompileUnit` instances, the verifier
// will later ensure that we don't actually have any other stale references to
// worry about.
auto *MD = M->getNamedMetadata("llvm.dbg.cu");
MD->clearOperands();
MD->addOperand(Unit);
}
// Computes the LTO cache key for the provided 'ModId' in the given 'Data',
// storing the result in 'KeyOut'.
// Currently, this cache key is a SHA-1 hash of anything that could affect
// the result of optimizing this module (e.g. module imports, exports, liveness
// of access globals, etc).
// The precise details are determined by LLVM in `computeLTOCacheKey`, which is
// used during the normal linker-plugin incremental thin-LTO process.
extern "C" void
LLVMRustComputeLTOCacheKey(RustStringRef KeyOut, const char *ModId, LLVMRustThinLTOData *Data) {
SmallString<40> Key;
llvm::lto::Config conf;
const auto &ImportList = Data->ImportLists.lookup(ModId);
const auto &ExportList = Data->ExportLists.lookup(ModId);
const auto &ResolvedODR = Data->ResolvedODR.lookup(ModId);
const auto &DefinedGlobals = Data->ModuleToDefinedGVSummaries.lookup(ModId);
std::set<GlobalValue::GUID> CfiFunctionDefs;
std::set<GlobalValue::GUID> CfiFunctionDecls;
// Based on the 'InProcessThinBackend' constructor in LLVM
for (auto &Name : Data->Index.cfiFunctionDefs())
CfiFunctionDefs.insert(
GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Name)));
for (auto &Name : Data->Index.cfiFunctionDecls())
CfiFunctionDecls.insert(
GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Name)));
llvm::computeLTOCacheKey(Key, conf, Data->Index, ModId,
ImportList, ExportList, ResolvedODR, DefinedGlobals, CfiFunctionDefs, CfiFunctionDecls
);
LLVMRustStringWriteImpl(KeyOut, Key.c_str(), Key.size());
}
| C++ | 4 | rizalgowandy/rust | compiler/rustc_llvm/llvm-wrapper/PassWrapper.cpp | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
yield "prefixed"
| Smarty | 0 | yiou362/spring-boot-2.2.9.RELEASE | spring-boot-project/spring-boot-autoconfigure/src/test/resources/templates/prefix/prefixed.tpl | [
"Apache-2.0"
] |
exec("swigtest.start", -1);
try
baseInt = new_BaseInt();
catch
swigtesterror();
end
try
delete_BaseInt(baseInt);
catch
swigtesterror();
end
try
derivedInt = new_DerivedInt();
catch
swigtesterror();
end
try
delete_DerivedInt(derivedInt);
catch
swigtesterror();
end
try
bottomInt = new_BottomInt();
catch
swigtesterror();
end
try
delete_BottomInt(bottomInt);
catch
swigtesterror();
end
exec("swigtest.quit", -1);
| Scilab | 3 | kyletanyag/LL-Smartcard | cacreader/swig-4.0.2/Examples/test-suite/scilab/access_change_runme.sci | [
"BSD-3-Clause"
] |
-- Copyright 2021 Jeff Foley. All rights reserved.
-- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
local url = require("url")
name = "PKey"
type = "scrape"
function start()
set_rate_limit(1)
end
function vertical(ctx, domain)
local params = {
['zone']=domain,
['submit']="",
}
scrape(ctx, {
url="https://www.pkey.in/tools-i/search-subdomains",
method="POST",
data=url.build_query_string(params),
headers={['Content-Type']="application/x-www-form-urlencoded"},
})
end
| Ada | 4 | Elon143/Amass | resources/scripts/scrape/pkey.ads | [
"Apache-2.0"
] |
\*
Copyright (c) 2010-2015, Mark Tarver
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of Mark Tarver may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY Mark Tarver ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL Mark Tarver BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*\
(package shen []
(define read-char-code
Stream -> (read-byte Stream))
(define read-file-as-bytelist
File -> (read-file-as-Xlist File (/. S (read-byte S))))
(define read-file-as-charlist
File -> (read-file-as-Xlist File (/. S (read-char-code S))))
(define read-file-as-Xlist
File F -> (let Stream (open File in)
X (F Stream)
Xs (read-file-as-Xlist-help Stream F X [])
Close (close Stream)
(reverse Xs)))
(define read-file-as-Xlist-help
Stream F -1 Xs -> Xs
Stream F X Xs -> (read-file-as-Xlist-help Stream
F
(F Stream)
[X | Xs]))
(define read-file-as-string
File -> (let Stream (open File in)
(rfas-h Stream (read-char-code Stream) "")))
(define rfas-h
Stream -1 String -> (do (close Stream) String)
Stream N String -> (rfas-h Stream (read-char-code Stream)
(cn String (n->string N))))
(define input
Stream -> (eval-kl (read Stream)))
(define input+
Type Stream -> (let Mono? (monotype Type)
Input (read Stream)
(if (= false (typecheck Input (demodulate Type)))
(error "type error: ~R is not of type ~R~%" Input Type)
(eval-kl Input))))
(define monotype
[X | Y] -> (map (/. Z (monotype Z)) [X | Y])
X -> (if (variable? X) (error "input+ expects a monotype: not ~A~%" X) X))
(define read
Stream -> (hd (read-loop Stream (read-char-code Stream) [])))
(define it
-> (value *it*))
(define read-loop
_ 94 Chars -> (error "read aborted")
_ -1 Chars -> (if (empty? Chars)
(simple-error "error: empty stream")
(compile (/. X (<st_input> X)) Chars (/. E E)))
Stream Char Chars
-> (let AllChars (append Chars [Char])
It (record-it AllChars)
Read (compile (/. X (<st_input> X)) AllChars (/. E nextbyte))
(if (or (= Read nextbyte) (empty? Read))
(read-loop Stream (read-char-code Stream) AllChars)
Read))
where (terminator? Char)
Stream Char Chars -> (read-loop Stream (read-char-code Stream)
(append Chars [Char])))
(define terminator?
Char -> (element? Char [9 10 13 32 34 41 93]))
(define lineread
Stream -> (lineread-loop (read-char-code Stream) [] Stream))
(define lineread-loop
-1 Chars Stream -> (if (empty? Chars)
(simple-error "empty stream")
(compile (/. X (<st_input> X)) Chars (/. E E)))
Char _ Stream -> (error "line read aborted") where (= Char (hat))
Char Chars Stream
-> (let Line (compile (/. X (<st_input> X)) Chars (/. E nextline))
It (record-it Chars)
(if (or (= Line nextline) (empty? Line))
(lineread-loop (read-char-code Stream) (append Chars [Char]) Stream)
Line))
where (element? Char [(newline) (carriage-return)])
Char Chars Stream -> (lineread-loop (read-char-code Stream)
(append Chars [Char])
Stream))
(define record-it
Chars -> (let TrimLeft (trim-whitespace Chars)
TrimRight (trim-whitespace (reverse TrimLeft))
Trimmed (reverse TrimRight)
(record-it-h Trimmed)))
(define trim-whitespace
[Char | Chars] -> (trim-whitespace Chars) where (element? Char [9 10 13 32])
Chars -> Chars)
(define record-it-h
Chars -> (do (set *it* (cn-all (map (/. X (n->string X)) Chars))) Chars))
(define cn-all
[] -> ""
[S | Ss] -> (cn S (cn-all Ss)))
(define read-file
File -> (let Charlist (read-file-as-charlist File)
(compile (/. X (<st_input> X)) Charlist (/. X (read-error X)))))
(define read-from-string
S -> (let Ns (map (/. X (string->n X)) (explode S))
(compile (/. X (<st_input> X))
Ns
(/. X (read-error X)))))
(define read-error
[[Char | Chars] _] -> (error "read error here:~%~% ~A~%"
(compress-50 50 [Char | Chars]))
_ -> (error "read error~%"))
(define compress-50
_ [] -> ""
0 _ -> ""
N [Char | Chars] -> (cn (n->string Char) (compress-50 (- N 1) Chars)))
(defcc <st_input>
<lsb> <st_input1> <rsb> <st_input2>
:= [(macroexpand (cons_form <st_input1>)) | <st_input2>];
<lrb> <st_input1> <rrb> <st_input2>
:= (package-macro (macroexpand <st_input1>) <st_input2>);
<lcurly> <st_input> := [{ | <st_input>];
<rcurly> <st_input> := [} | <st_input>];
<bar> <st_input> := [bar! | <st_input>];
<semicolon> <st_input> := [; | <st_input>];
<colon> <equal> <st_input> := [:= | <st_input>];
<colon> <minus> <st_input> := [:- | <st_input>];
<colon> <st_input> := [: | <st_input>];
<comma> <st_input> := [(intern ",") | <st_input>];
<comment> <st_input> := <st_input>;
<atom> <st_input> := [(macroexpand <atom>) | <st_input>];
<whitespaces> <st_input> := <st_input>;
<e> := [];)
(defcc <lsb>
91 := skip;)
(defcc <rsb>
93 := skip;)
(defcc <lcurly>
123 := skip;)
(defcc <rcurly>
125 := skip;)
(defcc <bar>
124 := skip;)
(defcc <semicolon>
59 := skip;)
(defcc <colon>
58 := skip;)
(defcc <comma>
44 := skip;)
(defcc <equal>
61 := skip;)
(defcc <minus>
45 := skip;)
(defcc <lrb>
40 := skip;)
(defcc <rrb>
41 := skip;)
(defcc <atom>
<str> := (control-chars <str>);
<number> := <number>;
<sym> := (if (= <sym> "<>")
[vector 0]
(intern <sym>));)
(define control-chars
[] -> ""
["c" "#" | Ss]
-> (let CodePoint (code-point Ss)
AfterCodePoint (after-codepoint Ss)
(@s (n->string (decimalise CodePoint)) (control-chars AfterCodePoint)))
[S | Ss] -> (@s S (control-chars Ss)))
(define code-point
[";" | _] -> ""
[S | Ss] -> [S | (code-point Ss)]
where (element? S ["0" "1" "2" "3" "4" "5" "6" "7" "8" "9" "0"])
S -> (error "code point parse error ~A~%" S))
(define after-codepoint
[] -> []
[";" | Ss] -> Ss
[_ | Ss] -> (after-codepoint Ss))
(define decimalise
S -> (pre (reverse (digits->integers S)) 0))
(define digits->integers
["0" | S] -> [0 | (digits->integers S)]
["1" | S] -> [1 | (digits->integers S)]
["2" | S] -> [2 | (digits->integers S)]
["3" | S] -> [3 | (digits->integers S)]
["4" | S] -> [4 | (digits->integers S)]
["5" | S] -> [5 | (digits->integers S)]
["6" | S] -> [6 | (digits->integers S)]
["7" | S] -> [7 | (digits->integers S)]
["8" | S] -> [8 | (digits->integers S)]
["9" | S] -> [9 | (digits->integers S)]
_ -> [])
(defcc <sym>
<alpha> <alphanums> := (@s <alpha> <alphanums>);)
(defcc <alphanums>
<alphanum> <alphanums> := (@s <alphanum> <alphanums>);
<e> := "";)
(defcc <alphanum>
<alpha> := <alpha>;
<num> := <num>;)
(defcc <num>
Char := (n->string Char) where (numbyte? Char);)
(define numbyte?
48 -> true
49 -> true
50 -> true
51 -> true
52 -> true
53 -> true
54 -> true
55 -> true
56 -> true
57 -> true
_ -> false)
(defcc <alpha>
Char := (n->string Char) where (symbol-code? Char);)
(define symbol-code?
N -> (or (= N 126)
(and (> N 94) (< N 123))
(and (> N 59) (< N 91))
(and (> N 41) (< N 58) (not (= N 44)))
(and (> N 34) (< N 40))
(= N 33)))
(defcc <str>
<dbq> <strcontents> <dbq> := <strcontents>;)
(defcc <dbq>
Char := Char where (= Char 34);)
(defcc <strcontents>
<strc> <strcontents> := [<strc> | <strcontents>];
<e> := [];)
(defcc <byte>
Char := (n->string Char);)
(defcc <strc>
Char := (n->string Char) where (not (= Char 34));)
(defcc <number>
<minus> <number> := (- 0 <number>);
<plus> <number> := <number>;
<predigits> <stop> <postdigits> <E> <log10>
:= (* (expt 10 <log10>)
(+ (pre (reverse <predigits>) 0)
(post <postdigits> 1)));
<digits> <E> <log10> := (* (expt 10 <log10>) (pre (reverse <digits>) 0));
<predigits> <stop> <postdigits>
:= (+ (pre (reverse <predigits>) 0) (post <postdigits> 1));
<digits> := (pre (reverse <digits>) 0);)
(defcc <E>
101 := skip;)
(defcc <log10>
<minus> <digits> := (- 0 (pre (reverse <digits>) 0));
<digits> := (pre (reverse <digits>) 0);)
(defcc <plus>
Char := Char where (= Char 43);)
(defcc <stop>
Char := Char where (= Char 46);)
(defcc <predigits>
<digits> := <digits>;
<e> := [];)
(defcc <postdigits>
<digits> := <digits>;)
(defcc <digits>
<digit> <digits> := [<digit> | <digits>];
<digit> := [<digit>];)
(defcc <digit>
X := (byte->digit X) where (numbyte? X);)
(define byte->digit
48 -> 0
49 -> 1
50 -> 2
51 -> 3
52 -> 4
53 -> 5
54 -> 6
55 -> 7
56 -> 8
57 -> 9)
(define pre
[] _ -> 0
[N | Ns] Expt -> (+ (* (expt 10 Expt) N) (pre Ns (+ Expt 1))))
(define post
[] _ -> 0
[N | Ns] Expt -> (+ (* (expt 10 (- 0 Expt)) N) (post Ns (+ Expt 1))))
(define expt
_ 0 -> 1
Base Expt -> (* Base (expt Base (- Expt 1))) where (> Expt 0)
Base Expt -> (* 1.0 (/ (expt Base (+ Expt 1)) Base)))
(defcc <st_input1>
<st_input> := <st_input>;)
(defcc <st_input2>
<st_input> := <st_input>;)
(defcc <comment>
<singleline> := skip;
<multiline> := skip;)
(defcc <singleline>
<backslash> <backslash> <anysingle> <return> := skip;)
(defcc <backslash>
92 := skip;)
(defcc <anysingle>
<non-return> <anysingle> := skip;
<e> := skip;)
(defcc <non-return>
X := skip where (not (element? X [10 13]));)
(defcc <return>
X := skip where (element? X [10 13]);)
(defcc <multiline>
<backslash> <times> <anymulti> := skip;)
(defcc <times>
42 := skip;)
(defcc <anymulti>
<comment> <anymulti> := skip;
<times> <backslash> := skip;
X <anymulti> := skip;)
(defcc <whitespaces>
<whitespace> <whitespaces> := skip;
<whitespace> := skip;)
(defcc <whitespace>
X := skip where (let Case X
(or (= Case 32)
(= Case 13)
(= Case 10)
(= Case 9)));)
(define cons_form
[] -> []
[X Bar Y] -> [cons X Y] where (= Bar bar!)
[X | Y] -> [cons X (cons_form Y)])
(define package-macro
[$ S] Stream -> (append (explode S) Stream)
[package null _ | Code] Stream -> (append Code Stream)
[package PackageName Exceptions | Code] Stream
-> (let ListofExceptions (eval-without-macros Exceptions)
External (record-exceptions ListofExceptions PackageName)
PackageNameDot (intern (cn (str PackageName) "."))
ExpPackageNameDot (explode PackageNameDot)
Packaged (packageh PackageNameDot ListofExceptions Code
ExpPackageNameDot)
Internal (record-internal
PackageName (internal-symbols ExpPackageNameDot Packaged))
(append Packaged Stream))
X Stream -> [X | Stream])
(define record-exceptions
ListofExceptions PackageName
-> (let CurrExceptions (trap-error
(get PackageName external-symbols)
(/. E []))
AllExceptions (union ListofExceptions CurrExceptions)
(put PackageName external-symbols AllExceptions)))
(define record-internal
PackageName Internal -> (put PackageName internal-symbols
(union Internal
(trap-error
(get PackageName internal-symbols)
(/. E [])))))
(define internal-symbols
ExpPackageNameDot PackageSymbol -> [PackageSymbol]
where (and (symbol? PackageSymbol)
(prefix? ExpPackageNameDot (explode PackageSymbol)))
ExpPackageNameDot [X | Y] -> (union (internal-symbols ExpPackageNameDot X)
(internal-symbols ExpPackageNameDot Y))
_ _ -> [])
(define packageh
PackageNameDot Exceptions [X | Y] ExpPackageNameDot
-> [(packageh PackageNameDot Exceptions X ExpPackageNameDot) |
(packageh PackageNameDot Exceptions Y ExpPackageNameDot)]
PackageNameDot Exceptions X ExpPackageNameDot -> X
where (or (sysfunc? X)
(variable? X)
(element? X Exceptions)
(doubleunderline? X)
(singleunderline? X))
PackageNameDot Exceptions X ExpPackageNameDot -> (concat PackageNameDot X)
where (and (symbol? X)
(let ExplodeX (explode X)
(and (not (prefix? [($ shen.)] ExplodeX))
(not (prefix? ExpPackageNameDot ExplodeX)))))
_ _ X _ -> X)
)
| Shen | 3 | nondejus/shen-go | ShenOSKernel-22.2/sources/reader.shen | [
"BSD-3-Clause"
] |
<!---================= Room Booking System / https://github.com/neokoenig =======================--->
<cfoutput>
#errormessagesFor("permission")#
<h3>#permission.id#</h3>
<cfloop list="#application.rbs.roles#" index="i">
#checkbox(objectName="permission", property=i, label=i)#
</cfloop>
<span class="help-block">#permission.notes#</span>
</cfoutput> | ColdFusion | 2 | fintecheando/RoomBooking | views/permissions/_form.cfm | [
"Apache-1.1"
] |
---
title: Gallery
page-header: Gallery
page-header-description: 1-12 of 241 photos
page-header-actions: photos
menu: extra.gallery
---
{% assign horizontal = 0 %}
<div class="row row-cards">
{% assign photos = site.data.photos | where: "horizontal", true %}
{% for photo in photos limit: 12 %}
{% assign person = site.data.people[forloop.index0] %}
<div class="col-sm-6 col-lg-4">
{% include cards/gallery-photo.html person=person %}
</div>
{% endfor %}
</div>
<div class="d-flex">
{% include ui/pagination.html class="ms-auto" %}
</div>
| HTML | 3 | muhginanjar/tabler | src/pages/gallery.html | [
"MIT"
] |
static const uint16_t in_weighted_sum_val[50] = {
0x30a6, 0x36e9, 0x3b67, 0x3173, 0x362c, 0x3bfd, 0x2ef6, 0x37ae,
0x38bd, 0x36e6, 0x369f, 0x3bac, 0x3953, 0x3b9f, 0x3881, 0x38e0,
0x3b1f, 0x1960, 0x3956, 0x3a83, 0x3174, 0x343c, 0x3998, 0x39e8,
0x379a, 0x3707, 0x3999, 0x37d3, 0x2f65, 0x2f64, 0x38b1, 0x353e,
0x3713, 0x3a04, 0x379f, 0x37dc, 0x386c, 0x3966, 0x39a5, 0x3bbc,
0x383a, 0x3912, 0x2a4a, 0x3756, 0x354c, 0x3663, 0x2402, 0x3458,
0x3b4d, 0x393f
};
static const uint16_t in_weighted_sum_coeff[50] = {
0x34e2, 0x282f, 0x3443, 0x38f1, 0x30e5, 0x3a33, 0x3aca, 0x3830,
0x2f6d, 0x3932, 0x33e5, 0x3a9d, 0x3bbe, 0x3488, 0x3ac7, 0x39c4,
0x37a2, 0x3911, 0x38c6, 0x3aa9, 0x3058, 0x38dc, 0x3b52, 0x3799,
0x3a40, 0x2d66, 0x28f8, 0x2b0c, 0x3559, 0x354d, 0x38c3, 0x3719,
0x38e7, 0x30e1, 0x34fd, 0x31ab, 0x3852, 0x3b88, 0x3955, 0x1958,
0x2df2, 0x3027, 0x39ae, 0x37d2, 0x37a9, 0x3905, 0x175b, 0x34cd,
0x3917, 0x2e92
};
static const uint32_t ref_f32[256] = {
0x3e6dc924, 0x3e2486b6, 0x3ea0c4b0, 0x3eb8873d,
0x3e2a5dcc, 0x3f3a8256, 0x3e7ebb3f, 0x3f0537d7,
0x3ec9d94d, 0x3f10e8eb, 0x3e8ac054, 0x3e8de34d,
0x3f38553f, 0x3e12ab5c, 0x3f741331, 0x3f6d0edf,
0x3e98e5bc, 0x3ee8441e, 0x3f5abe5e, 0x3f228ce2,
0x3ca9b3f0, 0x3e4ea407, 0x3f414244, 0x3e244fbe,
0x3f5c38b0, 0x3ee9f27c, 0x3f4c6833, 0x3f1b48e3,
0x3f6b4071, 0x3f5724df, 0x3f62091b, 0x3f49e803,
0x3f5f64a1, 0x3f3d3de7, 0x3f5a0a5b, 0x3f38caf3,
0x3d83c65c, 0x3e1f44b3, 0x3e97bd96, 0x3f1a26d1,
0x3f2b3656, 0x3f1161b7, 0x3ce00b2d, 0x3e55f2a5,
0x3ec84050, 0x3ea41c61, 0x3e75bd9c, 0x3f3e0d99,
0x3e9ab80e, 0x3e9847ac, 0x3eadd8f5, 0x3f1b38b1,
0x3f4d8e05, 0x3f4887ab, 0x3e9a3928, 0x3ec8bf3b,
0x3f682c8c, 0x3f48f40f, 0x3f5214d5, 0x3f0e1bd0,
0x3e7fc575, 0x3ecbc2d6, 0x3f4424c0, 0x3dd13961,
0x3f6ece1e, 0x3e6e27da, 0x3eb43742, 0x3ed3e600,
0x3f265621, 0x3f294646, 0x3e23da06, 0x3f03de74,
0x3ecdaae9, 0x3f23af22, 0x3e3d66f3, 0x3e9eb1b7,
0x3f7f4ccb, 0x3ee2cf65, 0x3f2fe785, 0x3f4ab2ea,
0x3ee6d007, 0x3f5b7500, 0x3dd48a16, 0x3f5de4c3,
0x3d578efb, 0x3e6a74b3, 0x3ef59b6f, 0x3f7cfa5f,
0x3d959e7c, 0x3f376e35, 0x3eb14546, 0x3d26fa91,
0x3f462803, 0x3ef7f86d, 0x3e81cc9e, 0x3e3ec7f1,
0x3eff5680, 0x3f70f0df, 0x3f65a925, 0x3f41b77f,
0x3f02b49b, 0x3eb8ed41, 0x3f6c9d8d, 0x3e5a750f,
0x3ede8d52, 0x3f1bcba6, 0x3ef9eece, 0x3e5db8a2,
0x3e0c70ea, 0x3f28f4c1, 0x3e350932, 0x3e5e62e1,
0x3f1f5b05, 0x3d50808b, 0x3f3c98fb, 0x3f11791d,
0x3e973a8d, 0x3f4a303f, 0x3f41abaa, 0x3e860968,
0x3f479891, 0x3ebd22dd, 0x3ea2b1a4, 0x3d90e7fd,
0x3f121ec0, 0x3f49077b, 0x3f43fcc1, 0x3dc018fa,
0x3e92f7a8, 0x3e28acbb, 0x3f2b62f0, 0x3e8ab40e,
0x3f0759ef, 0x3e6b4c76, 0x3e7ccd69, 0x3d0b5c0e,
0x3e2b6c0b, 0x3f7b4725, 0x3e09f429, 0x3edc5225,
0x3e5052ff, 0x3c2d5312, 0x3f17ef38, 0x3e68e722,
0x3f0124b8, 0x3db054ad, 0x3d7d99d6, 0x3dbc5b8b,
0x3f320806, 0x3ef488da, 0x3f0f46bb, 0x3ecdab35,
0x3f51118c, 0x3ed5fe3d, 0x3e82b4a4, 0x3e0d677a,
0x3f5d5e34, 0x3f549e4d, 0x3f800000, 0x3e878bf5,
0x3e835ee8, 0x3f032fc2, 0x3c92f727, 0x3eb906cc,
0x3e2b9f88, 0x3deed844, 0x3f747000, 0x3f32ba35,
0x3ef305c4, 0x3f3c8745, 0x3f0602ba, 0x3f2b4d46,
0x3f20c6ff, 0x3f29bd96, 0x3f48bad0, 0x3e1a4a43,
0x3eda17ca, 0x3f676708, 0x3f430ff7, 0x3db5eb23,
0x3e338ac1, 0x3dc18b6d, 0x3f570079, 0x3f678ffc,
0x3f1c6a9f, 0x3f791831, 0x3ec02bb9, 0x3ed12fa1,
0x3e8d1691, 0x3eac1e7c, 0x3f2f4073, 0x3f33a19a,
0x3f611b48, 0x3f59ffff, 0x3f30166e, 0x3edd6d54,
0x3ef15ef6, 0x3eff0b45, 0x3f6265fb, 0x3f0a5736,
0x3f30b3c8, 0x3ed045e9, 0x3df4920d, 0x3f5f212a,
0x3f171a71, 0x3f546ed0, 0x3cdcbfbb, 0x3f62bdb0,
0x3bf57904, 0x3c9dc503, 0x3eb6234c, 0x3f02a4e8,
0x3ee085d6, 0x3ca99f7a, 0x3f4ef040, 0x3f0e7aed,
0x3e2ca85b, 0x3f241250, 0x3f6df3e2, 0x3eba5aab,
0x3f4e8c84, 0x3e6a6d03, 0x3be552df, 0x3f7ad6b8,
0x3ebde06c, 0x3f393af9, 0x3ea85de8, 0x3dc52f10,
0x3f32f9b1, 0x3d69c847, 0x3ea4c4d4, 0x3f4827cc,
0x3f1050e4, 0x3da28f6e, 0x3eac631d, 0x3f04541c,
0x390ca629, 0x3e225f7d, 0x3e68a5b0, 0x3f09ff3f,
0x3df47be2, 0x3db00868, 0x3f6009b6, 0x3f37bb10,
0x3e3e7cc2, 0x3e856c5f, 0x3d880450, 0x3e40e56d,
0x3f312dda, 0x3e9760cd, 0x3e27a550, 0x3ec3437a,
0x3ee71457, 0x3f5a881e, 0x3f6b4411, 0x3f040cf0
};
static const q15_t ref_q15[256] = {
0x1DB9, 0x1491, 0x2831, 0x2E22, 0x154C, 0x5D41, 0x1FD7, 0x429C,
0x3276, 0x4874, 0x22B0, 0x2379, 0x5C2B, 0x1255, 0x7A0A, 0x7687,
0x2639, 0x3A11, 0x6D5F, 0x5146, 0x02A7, 0x19D5, 0x60A1, 0x148A,
0x6E1C, 0x3A7D, 0x6634, 0x4DA4, 0x75A0, 0x6B92, 0x7105, 0x64F4,
0x6FB2, 0x5E9F, 0x6D05, 0x5C65, 0x083C, 0x13E9, 0x25EF, 0x4D13,
0x559B, 0x48B1, 0x0380, 0x1ABE, 0x3210, 0x2907, 0x1EB8, 0x5F07,
0x26AE, 0x2612, 0x2B76, 0x4D9C, 0x66C7, 0x6444, 0x268E, 0x3230,
0x7416, 0x647A, 0x690A, 0x470E, 0x1FF9, 0x32F1, 0x6212, 0x0D14,
0x7767, 0x1DC5, 0x2D0E, 0x34FA, 0x532B, 0x54A3, 0x147B, 0x41EF,
0x336B, 0x51D8, 0x17AD, 0x27AC, 0x7FA6, 0x38B4, 0x57F4, 0x6559,
0x39B4, 0x6DBB, 0x0D49, 0x6EF2, 0x06BC, 0x1D4F, 0x3D67, 0x7E7D,
0x095A, 0x5BB7, 0x2C51, 0x0538, 0x6314, 0x3DFE, 0x2073, 0x17D9,
0x3FD6, 0x7878, 0x72D5, 0x60DC, 0x415A, 0x2E3B, 0x764F, 0x1B4F,
0x37A3, 0x4DE6, 0x3E7C, 0x1BB7, 0x118E, 0x547A, 0x16A1, 0x1BCC,
0x4FAE, 0x0684, 0x5E4C, 0x48BD, 0x25CF, 0x6518, 0x60D6, 0x2182,
0x63CC, 0x2F49, 0x28AC, 0x090E, 0x490F, 0x6484, 0x61FE, 0x0C02,
0x24BE, 0x1516, 0x55B1, 0x22AD, 0x43AD, 0x1D6A, 0x1F9A, 0x045B,
0x156E, 0x7DA4, 0x113F, 0x3715, 0x1A0A, 0x015B, 0x4BF8, 0x1D1D,
0x4092, 0x0B05, 0x07ED, 0x0BC6, 0x5904, 0x3D22, 0x47A3, 0x336B,
0x6889, 0x3580, 0x20AD, 0x11AD, 0x6EAF, 0x6A4F, 0x7FFF, 0x21E3,
0x20D8, 0x4198, 0x024C, 0x2E42, 0x1574, 0x0EEE, 0x7A38, 0x595D,
0x3CC1, 0x5E44, 0x4301, 0x55A7, 0x5063, 0x54DF, 0x645D, 0x1349,
0x3686, 0x73B4, 0x6188, 0x0B5F, 0x1671, 0x0C19, 0x6B80, 0x73C8,
0x4E35, 0x7C8C, 0x300B, 0x344C, 0x2346, 0x2B08, 0x57A0, 0x59D1,
0x708E, 0x6D00, 0x580B, 0x375B, 0x3C58, 0x3FC3, 0x7133, 0x452C,
0x585A, 0x3411, 0x0F49, 0x6F91, 0x4B8D, 0x6A37, 0x0373, 0x715F,
0x00F5, 0x0277, 0x2D89, 0x4152, 0x3821, 0x02A6, 0x6778, 0x473D,
0x1595, 0x5209, 0x76FA, 0x2E97, 0x6746, 0x1D4E, 0x00E5, 0x7D6B,
0x2F78, 0x5C9D, 0x2A17, 0x0C53, 0x597D, 0x074E, 0x2931, 0x6414,
0x4828, 0x0A29, 0x2B19, 0x422A, 0x0004, 0x144C, 0x1D15, 0x4500,
0x0F48, 0x0B01, 0x7005, 0x5BDE, 0x17D0, 0x215B, 0x0880, 0x181D,
0x5897, 0x25D8, 0x14F5, 0x30D1, 0x39C5, 0x6D44, 0x75A2, 0x4206
};
static const uint16_t ref_f16[256] = {
0x336e, 0x3124, 0x3506, 0x35c4, 0x3153, 0x39d4, 0x33f6, 0x382a,
0x364f, 0x3887, 0x3456, 0x346f, 0x39c3, 0x3095, 0x3ba1, 0x3b68,
0x34c7, 0x3742, 0x3ad6, 0x3914, 0x254e, 0x3275, 0x3a0a, 0x3122,
0x3ae2, 0x3750, 0x3a63, 0x38da, 0x3b5a, 0x3ab9, 0x3b10, 0x3a4f,
0x3afb, 0x39ea, 0x3ad0, 0x39c6, 0x2c1e, 0x30fa, 0x34be, 0x38d1,
0x395a, 0x388b, 0x2700, 0x32b0, 0x3642, 0x3521, 0x33ae, 0x39f0,
0x34d6, 0x34c2, 0x356f, 0x38da, 0x3a6c, 0x3a44, 0x34d2, 0x3646,
0x3b41, 0x3a48, 0x3a91, 0x3871, 0x33fe, 0x365e, 0x3a21, 0x2e8a,
0x3b76, 0x3371, 0x35a2, 0x369f, 0x3933, 0x394a, 0x311f, 0x381f,
0x366d, 0x391d, 0x31eb, 0x34f6, 0x3bfa, 0x3716, 0x397f, 0x3a56,
0x3737, 0x3adc, 0x2ea4, 0x3aef, 0x2abc, 0x3354, 0x37ad, 0x3be8,
0x2cad, 0x39bb, 0x358a, 0x2938, 0x3a31, 0x37c0, 0x340e, 0x31f6,
0x37fb, 0x3b88, 0x3b2d, 0x3a0e, 0x3816, 0x35c7, 0x3b65, 0x32d4,
0x36f4, 0x38de, 0x37cf, 0x32ee, 0x3064, 0x3948, 0x31a8, 0x32f3,
0x38fb, 0x2a84, 0x39e5, 0x388c, 0x34ba, 0x3a52, 0x3a0d, 0x3430,
0x3a3d, 0x35e9, 0x3516, 0x2c87, 0x3891, 0x3a48, 0x3a20, 0x2e01,
0x3498, 0x3145, 0x395b, 0x3456, 0x383b, 0x335a, 0x33e6, 0x285b,
0x315b, 0x3bda, 0x3050, 0x36e3, 0x3283, 0x216b, 0x38bf, 0x3347,
0x3809, 0x2d83, 0x2bed, 0x2de3, 0x3990, 0x37a4, 0x387a, 0x366d,
0x3a89, 0x36b0, 0x3416, 0x306b, 0x3aeb, 0x3aa5, 0x3c00, 0x343c,
0x341b, 0x3819, 0x2498, 0x35c8, 0x315d, 0x2f77, 0x3ba3, 0x3996,
0x3798, 0x39e4, 0x3830, 0x395a, 0x3906, 0x394e, 0x3a46, 0x30d2,
0x36d1, 0x3b3b, 0x3a18, 0x2daf, 0x319c, 0x2e0c, 0x3ab8, 0x3b3c,
0x38e3, 0x3bc9, 0x3601, 0x3689, 0x3469, 0x3561, 0x397a, 0x399d,
0x3b09, 0x3ad0, 0x3981, 0x36eb, 0x378b, 0x37f8, 0x3b13, 0x3853,
0x3986, 0x3682, 0x2fa5, 0x3af9, 0x38b9, 0x3aa3, 0x26e6, 0x3b16,
0x1fac, 0x24ee, 0x35b1, 0x3815, 0x3704, 0x254d, 0x3a78, 0x3874,
0x3165, 0x3921, 0x3b70, 0x35d3, 0x3a74, 0x3353, 0x1f2b, 0x3bd7,
0x35ef, 0x39ca, 0x3543, 0x2e29, 0x3998, 0x2b4e, 0x3526, 0x3a41,
0x3883, 0x2d14, 0x3563, 0x3823, 0x865, 0x3113, 0x3345, 0x3850,
0x2fa4, 0x2d80, 0x3b00, 0x39be, 0x31f4, 0x342b, 0x2c40, 0x3207,
0x3989, 0x34bb, 0x313d, 0x361a, 0x3739, 0x3ad4, 0x3b5a, 0x3820
};
static const uint16_t ref_weighted_sum[3] = {
0x3720, 0x388f, 0x3884
};
| Max | 2 | ldalek/zephyr | tests/lib/cmsis_dsp/support/src/f16.pat | [
"Apache-2.0"
] |
<?xml version="1.0" encoding="UTF-8"?>
<!-- ******************************************************************* -->
<!-- -->
<!-- Copyright IBM Corp. 2010, 2014 -->
<!-- -->
<!-- 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. -->
<!-- -->
<!-- ******************************************************************* -->
<!-- DO NOT EDIT. THIS FILE IS GENERATED. -->
<faces-config>
<faces-config-extension>
<namespace-uri>http://www.ibm.com/xsp/coreex</namespace-uri>
<default-prefix>xe</default-prefix>
<designer-extension>
<control-subpackage-name>jdbc</control-subpackage-name>
</designer-extension>
</faces-config-extension>
<group>
<group-type>com.ibm.xsp.extlib.relational.group.connection</group-type>
<property>
<description>%property.connectionName.group.connection.descr%</description>
<display-name>%property.connectionName.group.connection.name%</display-name>
<property-name>connectionName</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<editor>com.ibm.workplace.designer.property.editors.comboParameterEditor</editor>
<editor-parameter>
java:comp/env/jdbc/databaseName
</editor-parameter>
</designer-extension>
</property-extension>
</property>
<property>
<description>%property.connectionUrl.group.connection.descr%</description>
<display-name>%property.connectionUrl.group.connection.name%</display-name>
<property-name>connectionUrl</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<editor>com.ibm.workplace.designer.property.editors.comboParameterEditor</editor>
<editor-parameter>
jdbc:db2:databaseName
jdbc:db2//server/database
jdbc:db2//server:port/database
</editor-parameter>
</designer-extension>
</property-extension>
</property>
<group-extension>
<designer-extension>
<tags>
group-in-complex
</tags>
</designer-extension>
</group-extension>
</group>
<group>
<group-type>com.ibm.xsp.extlib.relational.group.connection_control</group-type>
<property>
<description>%property.connectionName.group.connection.descr%</description>
<display-name>%property.connectionName.group.connection.name%</display-name>
<property-name>connectionName</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>data</category>
<editor>com.ibm.workplace.designer.property.editors.comboParameterEditor</editor>
<editor-parameter>
java:comp/env/jdbc/databaseName
</editor-parameter>
</designer-extension>
</property-extension>
</property>
<property>
<description>%property.connectionUrl.group.connection.descr%</description>
<display-name>%property.connectionUrl.group.connection.name%</display-name>
<property-name>connectionUrl</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>data</category>
<editor>com.ibm.workplace.designer.property.editors.comboParameterEditor</editor>
<editor-parameter>
jdbc:db2:databaseName
jdbc:db2//server/database
jdbc:db2//server:port/database
</editor-parameter>
</designer-extension>
</property-extension>
</property>
<group-extension>
<designer-extension>
<tags>
group-in-control
</tags>
</designer-extension>
</group-extension>
</group>
<group>
<group-type>com.ibm.xsp.extlib.relational.group.connectionManager</group-type>
<property>
<description>%property.connectionManager.descr%</description>
<display-name>%property.connectionManager.name%</display-name>
<property-name>connectionManager</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<editor>com.ibm.xsp.extlib.designer.tooling.editor.XPageControlIDEditor</editor>
<editor-parameter>
http://www.ibm.com/xsp/coreex|jdbcConnectionManager
</editor-parameter>
</designer-extension>
</property-extension>
</property>
<group-extension>
<designer-extension>
<tags>
group-in-complex
</tags>
</designer-extension>
</group-extension>
</group>
<group>
<group-type>com.ibm.xsp.extlib.relational.group.query</group-type>
<property>
<description>%property.sqlFile.descr%</description>
<display-name>%property.sqlFile.name%</display-name>
<property-name>sqlFile</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension/>
</property-extension>
</property>
<property>
<description>%property.sqlQuery.descr%</description>
<display-name>%property.sqlQuery.name%</display-name>
<property-name>sqlQuery</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<editor>com.ibm.std.MultiLine</editor>
</designer-extension>
</property-extension>
</property>
<property>
<description>%property.sqlTable.descr%</description>
<display-name>%property.sqlTable.name%</display-name>
<property-name>sqlTable</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension/>
</property-extension>
</property>
<property>
<description>%property.sqlParameters.descr%</description>
<display-name>%property.sqlParameters.name%</display-name>
<property-name>sqlParameters</property-name>
<property-class>java.util.List</property-class>
<property-extension>
<allow-run-time-binding>false</allow-run-time-binding>
<collection-property>true</collection-property>
<property-item-class>com.ibm.xsp.extlib.relational.jdbc.model.SqlParameter</property-item-class>
<property-add-method>addSqlParameter</property-add-method>
<designer-extension/>
</property-extension>
</property>
<group-extension>
<designer-extension>
<tags>
group-in-complex
</tags>
</designer-extension>
</group-extension>
</group>
<component>
<description>%component.jdbcConnectionManager.descr%</description>
<display-name>%component.jdbcConnectionManager.name%</display-name>
<component-type>com.ibm.xsp.extlib.relational.jdbc.JdbcConnectionManager</component-type>
<component-class>com.ibm.xsp.extlib.relational.component.jdbc.UIJdbcConnectionManager</component-class>
<group-type-ref>com.ibm.xsp.extlib.relational.group.connection_control</group-type-ref>
<property>
<description>%property.autoCommit.descr%</description>
<display-name>%property.autoCommit.name%</display-name>
<property-name>autoCommit</property-name>
<property-class>boolean</property-class>
<property-extension>
<designer-extension>
<category>data</category>
</designer-extension>
</property-extension>
</property>
<property>
<description>%property.transactionIsolation.descr%</description>
<display-name>%property.transactionIsolation.name%</display-name>
<property-name>transactionIsolation</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>data</category>
<editor>com.ibm.workplace.designer.property.editors.comboParameterEditor</editor>
<editor-parameter>
TRANSACTION_NONE
TRANSACTION_READ_COMMITTED
TRANSACTION_READ_UNCOMMITTED
TRANSACTION_REPEATABLE_READ
TRANSACTION_SERIALIZABLE
</editor-parameter>
</designer-extension>
</property-extension>
</property>
<property>
<description>%property.initConnection.descr%</description>
<display-name>%property.initConnection.name%</display-name>
<property-name>initConnection</property-name>
<property-class>javax.faces.el.MethodBinding</property-class>
<property-extension>
<method-binding-property>true</method-binding-property>
<designer-extension>
<category>data</category>
</designer-extension>
</property-extension>
</property>
<component-extension>
<base-component-type>javax.faces.Component</base-component-type>
<component-family>com.ibm.xsp.extlib.relational.jdbc.JdbcConnectionManager</component-family>
<renderer-type>com.ibm.xsp.extlib.relational.jdbc.JdbcConnectionManager</renderer-type>
<tag-name>jdbcConnectionManager</tag-name>
<designer-extension>
<in-palette>true</in-palette>
<category>Data Access</category>
<tags>
no-faces-config-renderer
no-rendered-output
</tags>
</designer-extension>
</component-extension>
</component>
<complex-type>
<description>%complex-type.jdbcQuery.descr%</description>
<display-name>%complex-type.jdbcQuery.name%</display-name>
<complex-id>com.ibm.xsp.extlib.relational.jdbc.model.JdbcDataSource</complex-id>
<complex-class>com.ibm.xsp.extlib.relational.jdbc.model.JdbcDataSource</complex-class>
<group-type-ref>com.ibm.xsp.extlib.relational.group.connection</group-type-ref>
<group-type-ref>com.ibm.xsp.extlib.relational.group.connectionManager</group-type-ref>
<group-type-ref>com.ibm.xsp.extlib.relational.group.query</group-type-ref>
<property>
<description>%property.calculateCount.descr%</description>
<display-name>%property.calculateCount.name%</display-name>
<property-name>calculateCount</property-name>
<property-class>boolean</property-class>
<property-extension>
<designer-extension/>
</property-extension>
</property>
<property>
<description>%property.sqlCountQuery.descr%</description>
<display-name>%property.sqlCountQuery.name%</display-name>
<property-name>sqlCountQuery</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<editor>com.ibm.std.MultiLine</editor>
</designer-extension>
</property-extension>
</property>
<property>
<description>%property.sqlCountFile.descr%</description>
<display-name>%property.sqlCountFile.name%</display-name>
<property-name>sqlCountFile</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension/>
</property-extension>
</property>
<property>
<description>%property.defaultOrderBy.descr%</description>
<display-name>%property.defaultOrderBy.name%</display-name>
<property-name>defaultOrderBy</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension/>
</property-extension>
</property>
<complex-extension>
<tag-name>jdbcQuery</tag-name>
<base-complex-id>com.ibm.xsp.extlib.model.DataAccessorBlockSource</base-complex-id>
</complex-extension>
</complex-type>
<complex-type>
<description>%complex-type.sqlParameter.descr%</description>
<display-name>%complex-type.sqlParameter.name%</display-name>
<complex-id>com.ibm.xsp.extlib.relational.jdbc.model.SqlParameter</complex-id>
<complex-class>com.ibm.xsp.extlib.relational.jdbc.model.SqlParameter</complex-class>
<property>
<description>%property.value.descr%</description>
<display-name>%property.value.name%</display-name>
<property-name>value</property-name>
<property-class>java.lang.Object</property-class>
<property-extension/>
</property>
<complex-extension>
<tag-name>sqlParameter</tag-name>
</complex-extension>
</complex-type>
<complex-type>
<description>%complex-type.jdbcRowSet.descr%</description>
<display-name>%complex-type.jdbcRowSet.name%</display-name>
<complex-id>com.ibm.xsp.extlib.relational.jdbc.model.JdbcRowSetSource</complex-id>
<complex-class>com.ibm.xsp.extlib.relational.jdbc.model.JdbcRowSetSource</complex-class>
<group-type-ref>com.ibm.xsp.extlib.relational.group.connection</group-type-ref>
<group-type-ref>com.ibm.xsp.extlib.relational.group.connectionManager</group-type-ref>
<group-type-ref>com.ibm.xsp.extlib.relational.group.query</group-type-ref>
<property>
<description>%property.rowSetJavaClass.descr%</description>
<display-name>%property.rowSetJavaClass.name%</display-name>
<property-name>rowSetJavaClass</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<tags>
not-css-class
</tags>
</designer-extension>
</property-extension>
</property>
<property>
<description>%property.maxRows.descr%</description>
<display-name>%property.maxRows.name%</display-name>
<property-name>maxRows</property-name>
<property-class>int</property-class>
<property-extension>
<designer-extension/>
</property-extension>
</property>
<property>
<description>%property.showDeleted.descr%</description>
<display-name>%property.showDeleted.name%</display-name>
<property-name>showDeleted</property-name>
<property-class>boolean</property-class>
<property-extension>
<designer-extension/>
</property-extension>
</property>
<complex-extension>
<tag-name>jdbcRowSet</tag-name>
<base-complex-id>com.ibm.xsp.extlib.model.DataAccessorSource</base-complex-id>
<designer-extension/>
</complex-extension>
</complex-type>
</faces-config>
| XPages | 3 | jesse-gallagher/XPagesExtensionLibrary | extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.relational/src/com/ibm/xsp/extlib/relational/config/relational-jdbc.xsp-config | [
"Apache-2.0"
] |
#!/usr/bin/osascript
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title Play Track or Playlist
# @raycast.mode silent
# Optional parameters:
# @raycast.packageName Spotify
# @raycast.icon images/spotify-logo.png
# Documentation:
# @raycast.author Thomas Paul Mann
# @raycast.authorURL https://github.com/thomaspaulmann
# @raycast.description Play playlist or track in Spotify.
# Customization:
# 1. Copy URI of track or playlist from Spotify, e.g. your discover weekly
# 2. Adjust title and description of command
property uri: ""
tell application "Spotify" to play track uri | AppleScript | 4 | daviddzhou/script-commands | commands/media/spotify/spotify-play-playlist.template.applescript | [
"MIT"
] |
" Vim syntax file
" Language: CHILL
" Maintainer: YoungSang Yoon <[email protected]>
" Last change: 2004 Jan 21
"
" first created by [email protected] & modified by [email protected]
" CHILL (CCITT High Level Programming Language) is used for
" developing software of ATM switch at LGIC (LG Information
" & Communications LTd.)
" quit when a syntax file was already loaded
if exists("b:current_syntax")
finish
endif
" A bunch of useful CHILL keywords
syn keyword chillStatement goto GOTO return RETURN returns RETURNS
syn keyword chillLabel CASE case ESAC esac
syn keyword chillConditional if IF else ELSE elsif ELSIF switch SWITCH THEN then FI fi
syn keyword chillLogical NOT not
syn keyword chillRepeat while WHILE for FOR do DO od OD TO to
syn keyword chillProcess START start STACKSIZE stacksize PRIORITY priority THIS this STOP stop
syn keyword chillBlock PROC proc PROCESS process
syn keyword chillSignal RECEIVE receive SEND send NONPERSISTENT nonpersistent PERSISTENT persistent SET set EVER ever
syn keyword chillTodo contained TODO FIXME XXX
" String and Character constants
" Highlight special characters (those which have a backslash) differently
syn match chillSpecial contained "\\x\x\+\|\\\o\{1,3\}\|\\.\|\\$"
syn region chillString start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=chillSpecial
syn match chillCharacter "'[^\\]'"
syn match chillSpecialCharacter "'\\.'"
syn match chillSpecialCharacter "'\\\o\{1,3\}'"
"when wanted, highlight trailing white space
if exists("chill_space_errors")
syn match chillSpaceError "\s*$"
syn match chillSpaceError " \+\t"me=e-1
endif
"catch errors caused by wrong parenthesis
syn cluster chillParenGroup contains=chillParenError,chillIncluded,chillSpecial,chillTodo,chillUserCont,chillUserLabel,chillBitField
syn region chillParen transparent start='(' end=')' contains=ALLBUT,@chillParenGroup
syn match chillParenError ")"
syn match chillInParen contained "[{}]"
"integer number, or floating point number without a dot and with "f".
syn case ignore
syn match chillNumber "\<\d\+\(u\=l\=\|lu\|f\)\>"
"floating point number, with dot, optional exponent
syn match chillFloat "\<\d\+\.\d*\(e[-+]\=\d\+\)\=[fl]\=\>"
"floating point number, starting with a dot, optional exponent
syn match chillFloat "\.\d\+\(e[-+]\=\d\+\)\=[fl]\=\>"
"floating point number, without dot, with exponent
syn match chillFloat "\<\d\+e[-+]\=\d\+[fl]\=\>"
"hex number
syn match chillNumber "\<0x\x\+\(u\=l\=\|lu\)\>"
"syn match chillIdentifier "\<[a-z_][a-z0-9_]*\>"
syn case match
" flag an octal number with wrong digits
syn match chillOctalError "\<0\o*[89]"
if exists("chill_comment_strings")
" A comment can contain chillString, chillCharacter and chillNumber.
" But a "*/" inside a chillString in a chillComment DOES end the comment! So we
" need to use a special type of chillString: chillCommentString, which also ends on
" "*/", and sees a "*" at the start of the line as comment again.
" Unfortunately this doesn't very well work for // type of comments :-(
syntax match chillCommentSkip contained "^\s*\*\($\|\s\+\)"
syntax region chillCommentString contained start=+"+ skip=+\\\\\|\\"+ end=+"+ end=+\*/+me=s-1 contains=chillSpecial,chillCommentSkip
syntax region chillComment2String contained start=+"+ skip=+\\\\\|\\"+ end=+"+ end="$" contains=chillSpecial
syntax region chillComment start="/\*" end="\*/" contains=chillTodo,chillCommentString,chillCharacter,chillNumber,chillFloat,chillSpaceError
syntax match chillComment "//.*" contains=chillTodo,chillComment2String,chillCharacter,chillNumber,chillSpaceError
else
syn region chillComment start="/\*" end="\*/" contains=chillTodo,chillSpaceError
syn match chillComment "//.*" contains=chillTodo,chillSpaceError
endif
syntax match chillCommentError "\*/"
syn keyword chillOperator SIZE size
syn keyword chillType dcl DCL int INT char CHAR bool BOOL REF ref LOC loc INSTANCE instance
syn keyword chillStructure struct STRUCT enum ENUM newmode NEWMODE synmode SYNMODE
"syn keyword chillStorageClass
syn keyword chillBlock PROC proc END end
syn keyword chillScope GRANT grant SEIZE seize
syn keyword chillEDML select SELECT delete DELETE update UPDATE in IN seq SEQ WHERE where INSERT insert include INCLUDE exclude EXCLUDE
syn keyword chillBoolConst true TRUE false FALSE
syn region chillPreCondit start="^\s*#\s*\(if\>\|ifdef\>\|ifndef\>\|elif\>\|else\>\|endif\>\)" skip="\\$" end="$" contains=chillComment,chillString,chillCharacter,chillNumber,chillCommentError,chillSpaceError
syn region chillIncluded contained start=+"+ skip=+\\\\\|\\"+ end=+"+
syn match chillIncluded contained "<[^>]*>"
syn match chillInclude "^\s*#\s*include\>\s*["<]" contains=chillIncluded
"syn match chillLineSkip "\\$"
syn cluster chillPreProcGroup contains=chillPreCondit,chillIncluded,chillInclude,chillDefine,chillInParen,chillUserLabel
syn region chillDefine start="^\s*#\s*\(define\>\|undef\>\)" skip="\\$" end="$" contains=ALLBUT,@chillPreProcGroup
syn region chillPreProc start="^\s*#\s*\(pragma\>\|line\>\|warning\>\|warn\>\|error\>\)" skip="\\$" end="$" contains=ALLBUT,@chillPreProcGroup
" Highlight User Labels
syn cluster chillMultiGroup contains=chillIncluded,chillSpecial,chillTodo,chillUserCont,chillUserLabel,chillBitField
syn region chillMulti transparent start='?' end=':' contains=ALLBUT,@chillMultiGroup
" Avoid matching foo::bar() in C++ by requiring that the next char is not ':'
syn match chillUserCont "^\s*\I\i*\s*:$" contains=chillUserLabel
syn match chillUserCont ";\s*\I\i*\s*:$" contains=chillUserLabel
syn match chillUserCont "^\s*\I\i*\s*:[^:]"me=e-1 contains=chillUserLabel
syn match chillUserCont ";\s*\I\i*\s*:[^:]"me=e-1 contains=chillUserLabel
syn match chillUserLabel "\I\i*" contained
" Avoid recognizing most bitfields as labels
syn match chillBitField "^\s*\I\i*\s*:\s*[1-9]"me=e-1
syn match chillBitField ";\s*\I\i*\s*:\s*[1-9]"me=e-1
syn match chillBracket contained "[<>]"
if !exists("chill_minlines")
let chill_minlines = 15
endif
exec "syn sync ccomment chillComment minlines=" . chill_minlines
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
hi def link chillLabel Label
hi def link chillUserLabel Label
hi def link chillConditional Conditional
" hi def link chillConditional term=bold ctermfg=red guifg=red gui=bold
hi def link chillRepeat Repeat
hi def link chillProcess Repeat
hi def link chillSignal Repeat
hi def link chillCharacter Character
hi def link chillSpecialCharacter chillSpecial
hi def link chillNumber Number
hi def link chillFloat Float
hi def link chillOctalError chillError
hi def link chillParenError chillError
hi def link chillInParen chillError
hi def link chillCommentError chillError
hi def link chillSpaceError chillError
hi def link chillOperator Operator
hi def link chillStructure Structure
hi def link chillBlock Operator
hi def link chillScope Operator
"hi def link chillEDML term=underline ctermfg=DarkRed guifg=Red
hi def link chillEDML PreProc
"hi def link chillBoolConst term=bold ctermfg=brown guifg=brown
hi def link chillBoolConst Constant
"hi def link chillLogical term=bold ctermfg=brown guifg=brown
hi def link chillLogical Constant
hi def link chillStorageClass StorageClass
hi def link chillInclude Include
hi def link chillPreProc PreProc
hi def link chillDefine Macro
hi def link chillIncluded chillString
hi def link chillError Error
hi def link chillStatement Statement
hi def link chillPreCondit PreCondit
hi def link chillType Type
hi def link chillCommentError chillError
hi def link chillCommentString chillString
hi def link chillComment2String chillString
hi def link chillCommentSkip chillComment
hi def link chillString String
hi def link chillComment Comment
" hi def link chillComment term=None ctermfg=lightblue guifg=lightblue
hi def link chillSpecial SpecialChar
hi def link chillTodo Todo
hi def link chillBlock Statement
"hi def link chillIdentifier Identifier
hi def link chillBracket Delimiter
let b:current_syntax = "chill"
" vim: ts=8
| VimL | 3 | uga-rosa/neovim | runtime/syntax/chill.vim | [
"Vim"
] |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% This file is part of Logtalk <https://logtalk.org/>
% Copyright 1998-2021 Paul Brown <[email protected]> and
% Paulo Moura <[email protected]>
% SPDX-License-Identifier: Apache-2.0
%
% 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.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
:- category(html).
:- info([
version is 0:3:0,
author is 'Paul Brown and Paulo Moura',
date is 2021-03-30,
comment is 'HTML generation.'
]).
:- public(generate/2).
:- mode(generate(+compound, ++term), one_or_error).
:- info(generate/2, [
comment is 'Generates HTML content using the representation specified in the first argument (``stream(Stream)`` or ``file(Path)``) for the term in the second argument.',
argnames is ['Sink', 'Term']
]).
:- public(void_element/1).
:- mode(void_element(?atom), zero_or_more).
:- info(void_element/1, [
comment is 'Enumerates, by backtracking, all void elements.',
argnames is ['Element']
]).
:- public(normal_element/2).
:- mode(normal_element(?atom, ?atom), zero_or_more).
:- info(normal_element/2, [
comment is 'Enumerates, by backtracking, all normal elements. The value of the ``Display`` argument is either ``inline`` or ``block``.',
argnames is ['Element', 'Display']
]).
:- private(doctype/1).
:- mode(doctype(?atom), one).
:- info(doctype/1, [
comment is 'Doctype text.',
argnames is ['DocType']
]).
generate(Sink, _) :-
\+ ground(Sink),
instantiation_error.
generate(_, Term) :-
\+ ground(Term),
instantiation_error.
generate(file(File), Term) :-
open(File, write, Stream),
write_html(Term, Stream),
close(Stream),
!.
generate(stream(Stream), Term) :-
write_html(Term, Stream),
!.
generate(Sink, _) :-
domain_error(html_sink, Sink).
write_html([], _) :-
!.
write_html([Fragment| Fragments], Stream) :-
!,
write_html(Fragment, Stream),
write_html(Fragments, Stream).
write_html(Content, Stream) :-
atomic(Content),
!,
write(Stream, Content).
write_html(Content, Stream) :-
write_html_element(Content, Stream).
write_html_doctype(Stream) :-
::doctype(Text),
write(Stream, Text), nl(Stream).
:- meta_predicate(write_html_element(::, *)).
% handle callbacks to generate content
write_html_element('::'(Object, Closure), Stream) :-
!,
call('::'(Object, Closure), Content),
write_html(Content, Stream).
% handle html/1-2 elements explicitly to output the doctype
write_html_element(html(Attributes, Content), Stream) :-
!,
write_html_doctype(Stream),
write_html_element(2, html, html(Attributes, Content), Stream).
write_html_element(html(Content), Stream) :-
!,
write_html_doctype(Stream),
write_html_element(1, html, html(Content), Stream).
% handle pre/1-2 elements explicitly to escape their content
write_html_element(pre(Attributes, Content), Stream) :-
!,
write_html_open_tag(pre, Attributes, block, Stream),
write(Stream, Content),
write_html_close_tag(pre, block, Stream).
write_html_element(pre(Content), Stream) :-
!,
write_html_open_tag(pre, block, Stream),
write(Stream, Content),
write_html_close_tag(pre, block, Stream).
% handle code/1-2 elements explicitly to escape their content
write_html_element(code(Attributes, Content), Stream) :-
!,
write_html_open_tag(code, Attributes, inline, Stream),
write(Stream, Content),
write_html_close_tag(code, inline, Stream).
write_html_element(code(Content), Stream) :-
!,
write_html_open_tag(code, inline, Stream),
write(Stream, Content),
write_html_close_tag(code, inline, Stream).
% other elements
write_html_element(Tag, Stream) :-
functor(Tag, Name, Arity),
write_html_element(Arity, Name, Tag, Stream).
% void element; only attributes allowed
write_html_element(1, Name, Tag, Stream) :-
::void_element(Name),
!,
arg(1, Tag, Attributes),
write_html_void_element(Name, Attributes, Stream).
% normal element with no attributes
write_html_element(1, Name, Tag, Stream) :-
::normal_element(Name, Breaks),
!,
write_html_open_tag(Name, Breaks, Stream),
arg(1, Tag, Content),
write_html(Content, Stream),
write_html_close_tag(Name, Breaks, Stream).
% normal element with attributes
write_html_element(2, Name, Tag, Stream) :-
::normal_element(Name, Breaks),
!,
arg(1, Tag, Attributes),
arg(2, Tag, Content),
write_html_open_tag(Name, Attributes, Breaks, Stream),
write_html(Content, Stream),
write_html_close_tag(Name, Breaks, Stream).
% invalid element
write_html_element(_, _, Tag, _) :-
domain_error(html_element, Tag).
write_html_void_element(Name, Attributes, Stream) :-
write(Stream, '<'), write(Stream, Name),
write_html_tag_attributes(Attributes, Stream),
write(Stream, ' />\n').
write_html_tag_attributes([], _).
write_html_tag_attributes([Attribute| Attributes], Stream) :-
write_html_tag_attribute(Attribute, Stream),
write_html_tag_attributes(Attributes, Stream).
write_html_tag_attributes(Key=Value, Stream) :-
write_html_tag_attribute(Key=Value, Stream).
write_html_tag_attributes(Key-Value, Stream) :-
write_html_tag_attribute(Key=Value, Stream).
write_html_tag_attribute(Key=Value, Stream) :-
write(Stream, ' '),
write(Stream, Key),
write(Stream, '="'),
write(Stream, Value),
write(Stream, '"').
write_html_tag_attribute(Key-Value, Stream) :-
write_html_tag_attribute(Key=Value, Stream).
write_html_open_tag(Name, Attributes, Breaks, Stream) :-
write(Stream, '<'), write(Stream, Name),
write_html_tag_attributes(Attributes, Stream),
write(Stream, '>'),
break(Breaks, Stream).
write_html_open_tag(Name, Breaks, Stream) :-
write(Stream, '<'), write(Stream, Name), write(Stream, '>'),
break(Breaks, Stream).
write_html_close_tag(Name, Breaks, Stream) :-
break(Breaks, Stream),
write(Stream, '</'), write(Stream, Name), write(Stream, '>'),
break(Breaks, Stream).
break(inline, _).
break(block, Stream) :-
nl(Stream).
void_element(area).
void_element(base).
void_element(br).
void_element(col).
void_element(embed).
void_element(hr).
void_element(img).
void_element(input).
void_element(link).
void_element(meta).
void_element(param).
void_element(source).
void_element(track).
void_element(wbr).
normal_element(a, inline).
normal_element(abbr, inline).
normal_element(acronym, inline).
normal_element(address, block).
normal_element(applet, block).
normal_element(article, block).
normal_element(aside, block).
normal_element(audio, inline).
normal_element(b, inline).
normal_element(basefont, block).
normal_element(bdi, inline).
normal_element(bdo, inline).
normal_element(big, inline).
normal_element(blockquote, block).
normal_element(body, block).
normal_element(button, inline).
normal_element(canvas, inline).
normal_element(caption, block).
normal_element(center, block).
normal_element(cite, inline).
normal_element(code, inline).
normal_element(colgroup, block).
normal_element(data, inline).
normal_element(datalist, inline).
normal_element(dd, block).
normal_element(del, inline).
normal_element(details, block).
normal_element(dfn, inline).
normal_element(dialog, block).
normal_element(dir, block).
normal_element(div, block).
normal_element(dl, block).
normal_element(dt, block).
normal_element(em, inline).
normal_element(fieldset, block).
normal_element(figcaption, block).
normal_element(figure, block).
normal_element(font, inline).
normal_element(footer, block).
normal_element(form, block).
normal_element(frame, block).
normal_element(frameset, block).
normal_element(head, block).
normal_element(header, block).
normal_element(hgroup, block).
normal_element(h1, block).
normal_element(h2, block).
normal_element(h3, block).
normal_element(h4, block).
normal_element(h5, block).
normal_element(h6, block).
normal_element(html, block).
normal_element(i, inline).
normal_element(iframe, inline).
normal_element(ins, inline).
normal_element(kbd, inline).
normal_element(keygen, inline).
normal_element(label, inline).
normal_element(legend, inline).
normal_element(li, block).
normal_element(main, block).
normal_element(map, block).
normal_element(mark, inline).
normal_element(menu, block).
normal_element(menuitem, inline).
normal_element(meter, inline).
normal_element(nav, block).
normal_element(noframes, block).
normal_element(noscript, inline).
normal_element(object, inline).
normal_element(ol, block).
normal_element(optgroup, block).
normal_element(option, block).
normal_element(output, inline).
normal_element(p, block).
normal_element(picture, inline).
normal_element(pre, block).
normal_element(progress, inline).
normal_element(q, inline).
normal_element(rp, inline).
normal_element(rt, inline).
normal_element(ruby, inline).
normal_element(s, inline).
normal_element(samp, inline).
normal_element(script, inline).
normal_element(section, block).
normal_element(select, inline).
normal_element(small, inline).
normal_element(span, inline).
normal_element(strike, inline).
normal_element(strong, inline).
normal_element(style, block).
normal_element(sub, inline).
normal_element(summary, block).
normal_element(sup, inline).
normal_element(svg, inline).
normal_element(table, block).
normal_element(tbody, block).
normal_element(td, block).
normal_element(template, inline).
normal_element(textarea, inline).
normal_element(tfoot, block).
normal_element(th, block).
normal_element(thead, block).
normal_element(time, inline).
normal_element(title, block).
normal_element(tr, block).
normal_element(tt, inline).
normal_element(u, inline).
normal_element(ul, block).
normal_element(var, inline).
normal_element(video, inline).
:- end_category.
:- object(html5,
imports(html)).
:- info([
version is 1:0:0,
author is 'Paul Brown and Paulo Moura',
date is 2021-03-29,
comment is 'HTML content generation using the HTML 5 doctype.'
]).
doctype('<!DOCTYPE html>').
:- end_object.
:- object(xhtml11,
imports(html)).
:- info([
version is 1:0:0,
author is 'Paul Brown and Paulo Moura',
date is 2021-03-29,
comment is 'XHTML content generation using the XHTML 1.1 doctype.'
]).
doctype('<?xml version="1.0" encoding="utf-8" standalone="no"?>\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">').
:- end_object.
| Logtalk | 5 | PaulBrownMagic/logtalk3 | library/html/html.lgt | [
"Apache-2.0"
] |
const string MODULE_LIB = "libapp_module.so";
delegate int ModuleFunc ();
public int app_func () {
return 41;
}
int main () {
Module module;
void *func;
unowned ModuleFunc mfunc;
module = Module.open (MODULE_LIB, ModuleFlags.BIND_LAZY);
module.symbol ("module_func", out func);
mfunc = (ModuleFunc) func;
print ("%d\n", mfunc ());
return 0;
}
| Vala | 3 | kira78/meson | test cases/vala/24 export dynamic shared module/app.vala | [
"Apache-2.0"
] |
@import "./settings" ;
@import "./components" ;@import "./themes";
.class{float: left;
}
| CSS | 1 | fuelingtheweb/prettier | tests/stylefmt/import/import.css | [
"MIT"
] |
:- object(marelle).
:- uses(user,[atomic_list_concat/2,downcase_atom/2,exists_directory/1,expand_file_name/2,getenv/2,is_list/1,length/2,load_files/1,prolog/0,shell/2,tmp_file/2,wildcard_match/2,writeln/1]).
:- uses('00-util',[expand_path/2]).
:- use_module(apply,[exclude/3,include/3,maplist/2,maplist/3]).
:- use_module(lists,[append/3,flatten/2,list_to_set/2,member/2]).
:- public[join/2,join_if_list/2,sh/1,sh_output/2,which/2].
:- private([already_met/1,marelle_has_been_updated/0,platform/1]).
:- discontiguous pkg/1.
:- discontiguous met/2.
% before the directive:
% :- multifile pkg/1
% add the directive:
:- public pkg/1.
% before the directive:
% :- multifile meet/2
% add the directive:
:- public meet/2.
% before the directive:
% :- multifile met/2
% add the directive:
:- public met/2.
% before the directive:
% :- multifile depends/3
% add the directive:
:- public depends/3.
% before the directive:
% :- multifile command_pkg/1
% add the directive:
:- public command_pkg/1.
% before the directive:
% :- multifile command_pkg/2
% add the directive:
:- public command_pkg/2.
:- include('marelle.pl').
:- end_object.
| Logtalk | 4 | PaulBrownMagic/logtalk3 | tools/wrapper/marelle-master/marelle.lgt | [
"Apache-2.0"
] |
/*
* Copyright 2013 The Sculptor Project Team, including the original
* author or 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.
*/
package org.sculptor.generator.transform
import javax.inject.Inject
import org.sculptor.generator.chain.ChainOverridable
import org.sculptor.generator.ext.DbHelper
import org.sculptor.generator.ext.Helper
import org.sculptor.generator.ext.Properties
import org.sculptor.generator.util.HelperBase
import sculptormetamodel.Application
import sculptormetamodel.Attribute
import sculptormetamodel.BasicType
import sculptormetamodel.DataTransferObject
import sculptormetamodel.DomainEvent
import sculptormetamodel.DomainObject
import sculptormetamodel.DomainObjectOperation
import sculptormetamodel.Entity
import sculptormetamodel.Module
import sculptormetamodel.Reference
import sculptormetamodel.RepositoryOperation
import sculptormetamodel.Resource
import sculptormetamodel.Service
import sculptormetamodel.ServiceOperation
import sculptormetamodel.Trait
import sculptormetamodel.ValueObject
/**
* Overridable helper methods for enriching generator meta model.
*/
@ChainOverridable
class TransformationHelper {
@Inject extension DbHelper dbHelper
@Inject extension HelperBase helperBase
@Inject extension Helper helper
@Inject extension Properties properties
def boolean isModifyDynamicFindersEnabled() {
true
}
def boolean isModifyPagingOperationsEnabled() {
true
}
def dispatch void addIfNotExists(DomainObject domainObject, Attribute a) {
if (!domainObject.attributes.exists(e | e.name == a.name))
domainObject.attributes.add(a)
}
def dispatch void addIfNotExists(DomainObject domainObject, Reference r) {
if (!domainObject.references.exists(e | r.name == r.name))
domainObject.references.add(r)
}
def dispatch void addIfNotExists(DomainObject domainObject, DomainObjectOperation op) {
if (((op.parameters.size != 1) || !domainObject.attributes.exists(e | "set" + e.name.toFirstUpper() == op.name))
&& (!op.parameters.isEmpty || !domainObject.attributes.exists(e | e.getGetAccessor() == op.name))
&& !domainObject.operations.exists(e | e.name == op.name && e.type == op.type && e.parameters.size == op.parameters.size))
domainObject.operations.add(op)
}
def void serviceAddDefaultValues(Module module) {
module.services.forEach[it.addDefaultValues()]
}
def void resourceAddDefaultValues(Module module) {
module.resources.forEach[it.addDefaultValues()]
}
def void modifyModuleDatabaseNames(Module module) {
module.getNonEnumDomainObjects().forEach[it.modifyDatabaseNames()]
}
def void modifyModuleReferencesDatabaseNames(Module module) {
module.getNonEnumDomainObjects().forEach[it.modifyReferencesDatabaseNames()]
}
def dispatch void modifyServiceContextParameter(Service service) {
if (!service.webService)
service.operations.forEach[it.modifyServiceContextParameter]
}
def dispatch void modifyServiceContextParameter(ServiceOperation operation) {
if (!operation.isEventSubscriberOperation())
// no method in ext language to add obj first in a list, using Java instead
addServiceContextParameter(operation)
}
def void modifyApplicationException(Service service) {
service.operations.forEach[modifyApplicationExceptionOperation()]
}
def void modifyApplicationExceptionOperation(ServiceOperation operation) {
if (operation.^throws == "ApplicationException")
operation.setThrows(applicationExceptionClass())
}
// when using scaffold method names gapClass is wrong and must be redefined
def dispatch void modifyGapClass(Service service) {
if (!service.gapClass && !service.operations.isEmpty && service.operations.exists(op | op.isImplementedInGapClass()))
service.setGapClass(true)
}
def dispatch void modifyGapClass(Resource resource) {
if (!resource.gapClass && !resource.operations.isEmpty && resource.operations.exists(op | op.isImplementedInGapClass()))
resource.setGapClass(true)
}
def dispatch void modifyGapClass(DomainObject domainObject) {
if (domainObject.operations.exists(op | op.isImplementedInGapClass()))
domainObject.setGapClass(true)
}
def void modifyTransient(DomainObject domainObject) {
if (domainObject.isPersistent())
domainObject.references.filter(e | !e.isEnumReference() && !e.to.isPersistent()).forEach[it.modifyTransientToTrue()]
}
def void modifyTransientToTrue(Reference reference) {
reference.setTransient(true)
}
def dispatch void modifyChangeable(DomainObject domainObject) {
defaultModifyChangeable(domainObject)
}
def dispatch void modifyChangeable(ValueObject valueObject) {
defaultModifyChangeable(valueObject)
if (valueObject.immutable) {
valueObject.attributes.filter(a | a.name != "uuid").forEach[modifyChangeableToFalse()]
valueObject.references.filter(r | !r.many).forEach[modifyChangeableToFalse()]
}
}
def dispatch void modifyChangeable(DataTransferObject dto) {
dto.attributes.filter(a | a.naturalKey).forEach[it.modifyChangeableToFalse()]
dto.references.filter(r | r.naturalKey).forEach[it.modifyChangeableToFalse()]
}
def dispatch void modifyChangeable(Trait trait) {
trait.attributes.filter(a | a.naturalKey).forEach[modifyChangeableToFalse()]
trait.references.filter(r | r.naturalKey).forEach[modifyChangeableToFalse()]
}
def void defaultModifyChangeable(DomainObject domainObject) {
domainObject.attributes.filter(a | a == domainObject.getIdAttribute()).forEach[modifyChangeableToFalse()]
domainObject.attributes.filter(a | a.naturalKey).forEach[modifyChangeableToFalse()]
domainObject.references.filter(r | r.naturalKey).forEach[modifyChangeableToFalse()]
}
def dispatch void modifyChangeableToFalse(Attribute attribute) {
attribute.setChangeable(false)
}
def dispatch void modifyChangeableToFalse(Reference reference) {
reference.setChangeable(false)
}
def dispatch void modifyAuditable(Entity entity) {
if (!isAuditableToBeGenerated())
entity.setAuditable(false)
if (entity.auditable && (entity.^extends === null || !((entity.^extends as Entity).auditable)))
addAuditable(entity)
}
def dispatch void modifyAuditable(DomainObject domainObject) {
}
def dispatch void modifyOptimisticLocking(DomainObject domainObject) {
if (isOptimisticLockingToBeGenerated() && domainObject.optimisticLocking && (domainObject.^extends === null || !domainObject.^extends.optimisticLocking))
addVersionAttribute(domainObject)
}
def dispatch void modifyOptimisticLocking(ValueObject valueObject) {
if (isOptimisticLockingToBeGenerated() && valueObject.persistent && !valueObject.immutable && valueObject.optimisticLocking && (valueObject.^extends === null || !valueObject.^extends.optimisticLocking))
addVersionAttribute(valueObject)
}
def dispatch void modifyOptimisticLocking(Trait trait) {
}
def dispatch void modifyOptimisticLocking(BasicType basicType) {
}
def dispatch void modifyDatabaseNames(DomainObject domainObject) {
if (domainObject.databaseTable === null)
domainObject.setDatabaseTable(domainObject.getDefaultDatabaseName())
domainObject.attributes.forEach[it.modifyDatabaseColumn()]
}
def dispatch void modifyDatabaseNames(ValueObject valueObject) {
if (valueObject.persistent) {
if (valueObject.databaseTable === null)
valueObject.setDatabaseTable(valueObject.getDefaultDatabaseName())
valueObject.attributes.forEach[modifyDatabaseColumn()]
}
}
def dispatch void modifyDatabaseNames(BasicType basicType) {
basicType.attributes.forEach[modifyDatabaseColumn()]
}
def void modifyReferencesDatabaseNames(DomainObject domainObject) {
if (domainObject.isPersistent())
domainObject.references.forEach[modifyDatabaseColumn()]
}
def dispatch void modifyDatabaseColumn(Attribute attribute) {
if (attribute.databaseColumn === null)
(if (attribute.name == "id" && getBooleanProperty("db.useTablePrefixedIdColumn"))
attribute.setDatabaseColumn(attribute.getDomainObject().getDatabaseName() + "_" + attribute.getDefaultDatabaseName())
else
attribute.setDatabaseColumn(attribute.getDefaultDatabaseName()))
}
def dispatch void modifyDatabaseColumn(Reference reference) {
if (reference.databaseColumn === null)
reference.setDatabaseColumn(reference.getDefaultForeignKeyName())
}
def dispatch void modifyIdAttribute(BasicType basicType) {
}
def dispatch void modifyIdAttribute(DataTransferObject dto) {
}
def dispatch void modifyIdAttribute(Trait trait) {
}
def dispatch void modifyIdAttribute(ValueObject valueObject) {
if (valueObject.persistent)
addIdAttribute(valueObject)
}
def dispatch void modifyIdAttribute(DomainObject domainObject) {
addIdAttribute(domainObject)
}
def void addIdAttribute(DomainObject domainObject) {
if (!domainObject.attributes.exists(a | a.name == "id"))
addIdAttributeImpl(domainObject)
}
def void modifyExtends(DomainObject domainObject) {
if (domainObject.extendsName !== null) {
val matchingDomainObject = findDomainObjectByName(domainObject.module.application, domainObject.extendsName)
if (matchingDomainObject !== null) {
domainObject.setExtends(matchingDomainObject)
domainObject.setExtendsName(null)
}
}
}
def void modifyBelongsToAggregate(DomainObject domainObject) {
if (domainObject.belongsToAggregate === null)
domainObject.setBelongsToAggregate(domainObject.getAggregateRootObject())
}
def private DomainObject findDomainObjectByName(Application app, String domainObjectName) {
val match = app.modules.map[domainObjects].flatten.filter(e | e.name == domainObjectName)
if (match.isEmpty)
null
else
match.head
}
def dispatch void modifySubclassesPersistent(ValueObject domainObject) {
if (!domainObject.persistent)
domainObject.getAllSubclasses().filter[it instanceof ValueObject].forEach[(it as ValueObject).setPersistent(false)]
}
// different defaults for DomainEvent
def dispatch void modifySubclassesPersistent(DomainEvent domainObject) {
if (domainObject.persistent)
domainObject.getAllSubclasses().filter[it instanceof ValueObject].forEach[(it as ValueObject).setPersistent(true)]
}
def void modifyAbstractPersistent(ValueObject domainObject) {
if (domainObject.^abstract && !domainObject.getAllSubclasses().filter[it instanceof ValueObject].exists(e|(e as ValueObject).persistent))
domainObject.setPersistent(false)
}
def void modifyUuid(DomainObject domainObject) {
if (domainObject.^extends !== null)
domainObject.^extends.modifyUuid()
if (domainObject.hasOwnDatabaseRepresentation() &&
!domainObject.hasUuidAttribute() &&
!domainObject.hasNaturalKey() &&
(!domainObject.^abstract || domainObject.getSubclasses().isEmpty || !domainObject.getSubclasses().forall(sub | sub.hasNaturalKey())))
domainObject.addUuidAttribute()
}
def private boolean hasUuidAttribute(DomainObject domainObject) {
domainObject.getAllAttributes().exists(e | e.name == "uuid")
}
def void modifyInheritance(DomainObject domainObject) {
if (!domainObject.hasSubClass())
domainObject.setInheritance(null)
if (domainObject.hasSuperClass() && domainObject.getRootExtends().isInheritanceTypeSingleTable())
domainObject.setInheritance(null)
if (!domainObject.hasSuperClass())
domainObject.setDiscriminatorColumnValue(null)
}
def void addCountAllHint(RepositoryOperation pagedFindAll) {
val base = if (pagedFindAll.hint === null) "" else (pagedFindAll.hint + ", ")
pagedFindAll.setHint(base + "countOperation=countAll")
}
def void modifyPagingOperation(RepositoryOperation op) {
if ((op.type == "PagedResult" || op.type === null) && op.domainObjectType === null) {
op.setType("PagedResult")
op.setDomainObjectType(op.repository.aggregateRoot)
}
}
}
| Xtend | 4 | sculptor/sculptor | sculptor-generator/sculptor-generator-core/src/main/java/org/sculptor/generator/transform/TransformationHelper.xtend | [
"Apache-2.0"
] |
{-# OPTIONS --rewriting #-}
module Issue4048 where
data _==_ {i} {A : Set i} : (x y : A) → Set i where
refl : {a : A} → a == a
{-# BUILTIN REWRITE _==_ #-}
postulate
Π : (A : Set) (B : A → Set) → Set
lam : {A : Set} {B : A → Set} (b : (a : A) → B a) → Π A B
app : {A : Set} {B : A → Set} (f : Π A B) (a : A) → B a
Π-β : {A : Set} {B : A → Set} (b : (a : A) → B a) (a : A) → app (lam b) a == b a
{-# REWRITE Π-β #-}
postulate
⊤ : Set
tt : ⊤
⊤-elim : ∀ {i} (A : ⊤ → Set i) (d : A tt) (x : ⊤) → A x
⊤-β : ∀ {i} (A : ⊤ → Set i) (d : A tt) → ⊤-elim A d tt == d
{-# REWRITE ⊤-β #-}
tt' : ⊤
tt' = tt
module _
(C : (p : ⊤) → Set)
(z : C tt)
where
F : (n p x : ⊤) → C p
F n p = app (⊤-elim (λ n → (p : ⊤) → Π ⊤ (λ _ → C p))
(⊤-elim _ (lam (⊤-elim _ z)))
n p)
F-red : F tt tt tt == z
F-red = refl
-- Bug?
F-red' : F tt tt' tt == z
F-red' = refl -- Not accepted, even though tt' is tt by definition.
| Agda | 4 | cruhland/agda | test/Succeed/Issue4048.agda | [
"MIT"
] |
yield "custom"
| Smarty | 1 | yiou362/spring-boot-2.2.9.RELEASE | spring-boot-project/spring-boot-autoconfigure/src/test/resources/custom-templates/custom.tpl | [
"Apache-2.0"
] |
@rem Copyright 2016 gRPC authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem http://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem Runs C# tests for given assembly from command line. The Grpc.sln solution needs to be built before running the tests.
setlocal
if not "%CONFIG%" == "gcov" (
goto :EOF
)
@rem enter src/csharp directory
cd /d %~dp0\..\..\..\src\csharp
@rem Generate code coverage report
@rem TODO(jtattermusch): currently the report list is hardcoded
packages\ReportGenerator.2.4.4.0\tools\ReportGenerator.exe -reports:"coverage_csharp_*.xml" -targetdir:"..\..\reports\csharp_coverage" -reporttypes:"Html;TextSummary" || goto :error
@rem Generate the index.html file
echo ^<html^>^<head^>^</head^>^<body^>^<a href='csharp_coverage/index.htm'^>csharp coverage^</a^>^<br/^>^</body^>^</html^> >..\..\reports\index.html
endlocal
goto :EOF
:error
echo Failed!
exit /b %errorlevel%
| Batchfile | 4 | samotarnik/grpc | tools/run_tests/helper_scripts/post_tests_csharp.bat | [
"Apache-2.0"
] |
# Chinese menus
[[docs]]
name = "关于 Hugo"
weight = 1
identifier = "about"
url = "/zh/about/"
[[docs]]
name = "入门"
weight = 5
identifier = "getting-started"
url = "/zh/getting-started/"
[[docs]]
name = "主题"
weight = 15
identifier = "themes"
post = "break"
url = "/zh/themes/"
# Core languages.zh.menus
[[docs]]
name = "内容管理"
weight = 20
identifier = "content-management"
post = "expanded"
url = "/zh/content-management/"
[[docs]]
name = "模板"
weight = 25
identifier = "templates"
url = "/zh/templates/"
[[docs]]
name = "函数"
weight = 30
identifier = "functions"
url = "/zh/functions/"
[[docs]]
name = "变量"
weight = 35
identifier = "variables"
url = "/zh/variables/"
[[docs]]
name = "CLI"
weight = 40
post = "break"
identifier = "commands"
url = "/commands/"
# LOW LEVEL ITEMS
[[docs]]
name = "故障排除"
weight = 60
identifier = "troubleshooting"
url = "/zh/troubleshooting/"
[[docs]]
name = "工具"
weight = 70
identifier = "tools"
url = "/zh/tools/"
[[docs]]
name = "托管与部署"
weight = 80
identifier = "hosting-and-deployment"
url = "/zh/hosting-and-deployment/"
[[docs]]
name = "贡献"
weight = 100
post = "break"
identifier = "contribute"
url = "/zh/contribute/"
[[global]]
name = "新闻"
weight = 1
identifier = "news"
url = "/zh/news/"
[[global]]
name = "文档"
weight = 5
identifier = "docs"
url = "/zh/documentation/"
[[global]]
name = "主题"
weight = 10
identifier = "themes"
url = "https://themes.gohugo.io/"
[[global]]
name = "作品展示"
weight = 20
identifier = "showcase"
url = "/zh/showcase/"
# Anything with a weight > 100 gets an external icon
[[global]]
name = "社区"
weight = 150
icon = true
identifier = "community"
post = "external"
url = "https://discourse.gohugo.io/"
[[global]]
name = "GitHub"
weight = 200
identifier = "github"
post = "external"
url = "https://github.com/gohugoio/hugo"
| TOML | 4 | jlevon/hugo | docs/config/_default/menus/menus.zh.toml | [
"Apache-2.0"
] |
// death star surface
// set perspective
rotate 270, 0,1,0
move -10,1,0
// scale oscillating along with wave,
// - bigger on left (size scaled)
// - faster on left (velocity scaled)
w1: wave(500)
pos: map(w1, 0,1, -3,3)
move 0,0,pos
// wave inside particle won't work :(
//particle 0.2
// color hsv(wave(100)*50, 200,200)
// box 0.2
//end
// color colorizes all the particles (in current frame)
//color hsv(wave(100)*50, 200,200)
//particle 0.2
// box 0.2
//end
// multiple particles emitors with diffrent colors - WON'T WORK
// paricle emittors will be the same (as the first one
// - looks like it's the same isntance of particle emittor, even if it's inside loop
for i: -5 to 5 step 2
push
move 0,0,i
particle 0.1
//box 0.1
color hsv(map(i, -5,5, 0,150), 200, 200)
box map(i, -5,5, 0.1,0.5)
end
pop
end
// without loop, separate pieces of code for emitters
push
move 0,0,-5
particle 0.1
// color must be placed inside partricle block to work
color red
box 0.1
end
pop
push
move 0,0,-3
particle 0.1
color yellow
box 0.1
end
pop
| Cycript | 4 | marcinbiegun/creativecoding-sketches | Cyril/data/code_experiments/5.cy | [
"MIT"
] |
syntax = "proto3";
import "tensorflow/core/framework/tensor_shape.proto";
import "tensorflow/core/framework/types.proto";
package tensorflow.tfprof;
message TFProfTensorProto {
DataType dtype = 1;
// Flatten tensor in row-major.
// Only one of the following array is set.
repeated double value_double = 2;
repeated int64 value_int64 = 3;
repeated string value_str = 4;
}
// A node in TensorFlow graph. Used by scope/graph view.
message GraphNodeProto {
// op name.
string name = 1;
// tensor value restored from checkpoint.
TFProfTensorProto tensor_value = 15;
// op execution time.
// A node can be defined once but run multiple times in tf.while_loop.
// the times sum up all different runs.
int64 run_count = 21;
int64 exec_micros = 2;
int64 accelerator_exec_micros = 17;
int64 cpu_exec_micros = 18;
// Total bytes requested by the op.
int64 requested_bytes = 3;
// Max bytes allocated and being used by the op at a point.
int64 peak_bytes = 24;
// Total bytes requested by the op and not released before end.
int64 residual_bytes = 25;
// Total bytes output by the op (not necessarily allocated by the op).
int64 output_bytes = 26;
// Number of parameters if available.
int64 parameters = 4;
// Number of float operations.
int64 float_ops = 13;
// Device the op is assigned to.
// Since an op can fire multiple kernel calls, there can be multiple devices.
repeated string devices = 10;
// The following are the aggregated stats from all *accounted* children and
// the node itself. The actual children depend on the data structure used.
// In graph view, children are inputs recursively.
// In scope view, children are nodes under the name scope.
int64 total_definition_count = 23;
int64 total_run_count = 22;
int64 total_exec_micros = 6;
int64 total_accelerator_exec_micros = 19;
int64 total_cpu_exec_micros = 20;
int64 total_requested_bytes = 7;
int64 total_peak_bytes = 27;
int64 total_residual_bytes = 28;
int64 total_output_bytes = 29;
int64 total_parameters = 8;
int64 total_float_ops = 14;
// shape information, if available.
// TODO(xpan): Why is this repeated?
repeated TensorShapeProto shapes = 11;
map<int32, TensorShapeProto> input_shapes = 16;
// Descendants of the graph. The actual descendants depend on the data
// structure used (scope, graph).
repeated GraphNodeProto children = 12;
}
// A node that groups multiple GraphNodeProto.
// Depending on the 'view', the semantics of the TFmultiGraphNodeProto
// is different:
// code view: A node groups all TensorFlow graph nodes created by the
// Python code.
// op view: A node groups all TensorFlow graph nodes that are of type
// of the op (e.g. MatMul, Conv2D).
message MultiGraphNodeProto {
// Name of the node.
string name = 1;
// code execution time.
int64 exec_micros = 2;
int64 accelerator_exec_micros = 12;
int64 cpu_exec_micros = 13;
// Total requested bytes by the code.
int64 requested_bytes = 3;
// Max bytes allocated and being used by the op at a point.
int64 peak_bytes = 16;
// Total bytes requested by the op and not released before end.
int64 residual_bytes = 17;
// Total bytes output by the op (not necessarily allocated by the op).
int64 output_bytes = 18;
// Number of parameters if available.
int64 parameters = 4;
// Number of float operations.
int64 float_ops = 5;
// The following are the aggregated stats from descendants.
// The actual descendants depend on the data structure used.
int64 total_exec_micros = 6;
int64 total_accelerator_exec_micros = 14;
int64 total_cpu_exec_micros = 15;
int64 total_requested_bytes = 7;
int64 total_peak_bytes = 19;
int64 total_residual_bytes = 20;
int64 total_output_bytes = 21;
int64 total_parameters = 8;
int64 total_float_ops = 9;
// TensorFlow graph nodes contained by the MultiGraphNodeProto.
repeated GraphNodeProto graph_nodes = 10;
// Descendants of the node. The actual descendants depend on the data
// structure used.
repeated MultiGraphNodeProto children = 11;
}
message AdviceProto {
// checker name -> a list of reports from the checker.
map<string, Checker> checkers = 1;
message Checker {
repeated string reports = 2;
}
}
| Protocol Buffer | 5 | abhaikollara/tensorflow | tensorflow/core/profiler/tfprof_output.proto | [
"Apache-2.0"
] |
16693 bwk me
15713 srb
9748 a68
9748 a68
9748 a68
9492 sif
9190 pjw
8912 nls
8895 dmr
8491 cda
8491 cda
8491 cda
8372 bs
8372 bs
8252 llc
7450 mb
7450 mb
7360 ava
7360 ava
7360 ava
7273 jrv
7080 bin
7080 bin
7063 greg
6567 dict
6462 lck
6291 rje
6211 lwf
5671 dave
5671 dave
5671 dave
5373 jhc
5220 agf
5220 agf
5220 agf
5167 doug
5007 valerie
5007 valerie
5007 valerie
3963 jca
3963 jca
3963 jca
3895 bbs
3895 bbs
3796 moh
3481 xchar
3481 xchar
3481 xchar
3200 tbl
3200 tbl
2845 s
2774 tgs
2641 met
2566 jck
2511 port
2479 sue
2127 root
1989 bsb
1989 bsb
1989 jeg
1933 eag
1933 eag
1933 eag
1801 pdj
1590 tpc
1385 cvw
1370 rwm
1316 avg
1316 avg
1316 avg
1205 eg
1194 jam
1194 jam
1194 jam
1153 dl
1150 lgm
1031 cmb
1031 cmb
1018 jwr
950 gdb
950 gdb
931 marc
931 marc
931 marc
898 usg
865 ggr
822 daemon
822 daemon
822 daemon
803 mihalis
803 mihalis
803 mihalis
700 honey
624 tad
624 tad
624 tad
559 acs
559 acs
559 acs
541 uucp
523 raf
523 raf
523 raf
495 adh
495 adh
495 adh
456 kec
414 craig
414 craig
414 craig
386 donmac
386 donmac
386 donmac
375 jj
348 ravi
348 ravi
348 ravi
344 drw
327 stars
327 stars
327 stars
288 mrg
272 jcb
272 jcb
263 ralph
263 ralph
263 ralph
253 tom
251 sjb
251 sjb
248 haight
248 haight
248 haight
224 sharon
224 sharon
224 sharon
222 chuck
213 dsj
201 bill
201 bill
184 god
176 sys
166 meh
163 jon
144 dan
144 dan
144 dan
143 fox
123 dale
123 dale
123 dale
116 kab
116 kab
116 kab
116 kab
95 buz
95 buz
80 asc
80 asc
80 asc
79 jas
79 jas
79 jas
79 trt
64 wsb
64 wsb
62 dwh
56 ktf
54 lr
47 dlc
45 dls
45 jwf
44 mash
44 mash
44 mash
43 ars
43 ars
43 ars
43 vgl
37 jfo
32 rab
32 rab
32 rab
32 rab
31 pd
29 jns
25 spm
22 rob
22 rob
15 egb
15 egb
10 hm
10 mhb
10 mhb
6 aed
6 aed
6 aed
6 cpb
6 cpb
5 evp
4 ber
4 ber
4 men
4 mitch
3 ast
3 ast
3 ast
3 jfr
3 lax
3 lax
3 lax
3 nel
2 blue
2 blue
2 jfk
2 njas
2 njas
2 njas
1 122sec
1 ddwar
1 ddwar
1 ddwar
1 gopi
1 jk
1 learn
1 learn
1 learn
1 low
1 nac
1 nac
1 nac
1 sidor
1root:EMpNB8Zp56:0:0:Super-User,,,,,,,:/:/bin/sh
1root:EMpNB8Zp56:0:0:Super-User,,,,,,,:/:/bin/sh
2roottcsh:*:0:0:Super-User running tcsh [cbm]:/:/bin/tcsh
2roottcsh:*:0:0:Super-User running tcsh [cbm]:/:/bin/tcsh
3sysadm:*:0:0:System V Administration:/usr/admin:/bin/sh
3sysadm:*:0:0:System V Administration:/usr/admin:/bin/sh
3sysadm:*:0:0:System V Administration:/usr/admin:/bin/sh
3sysadm:*:0:0:System V Administration:/usr/admin:/bin/sh
4diag:*:0:996:Hardware Diagnostics:/usr/diags:/bin/csh
4diag:*:0:996:Hardware Diagnostics:/usr/diags:/bin/csh
4diag:*:0:996:Hardware Diagnostics:/usr/diags:/bin/csh
4diag:*:0:996:Hardware Diagnostics:/usr/diags:/bin/csh
5daemon:*:1:1:daemons:/:/bin/sh
5daemon:*:1:1:daemons:/:/bin/sh
5daemon:*:1:1:daemons:/:/bin/sh
5daemon:*:1:1:daemons:/:/bin/sh
6bin:*:2:2:System Tools Owner:/bin:/dev/null
6bin:*:2:2:System Tools Owner:/bin:/dev/null
7nuucp:BJnuQbAo:6:10:UUCP.Admin:/usr/spool/uucppublic:/usr/lib/uucp/uucico
7nuucp:BJnuQbAo:6:10:UUCP.Admin:/usr/spool/uucppublic:/usr/lib/uucp/uucico
8uucp:*:3:5:UUCP.Admin:/usr/lib/uucp:
8uucp:*:3:5:UUCP.Admin:/usr/lib/uucp:
9sys:*:4:0:System Activity Owner:/usr/adm:/bin/sh
9sys:*:4:0:System Activity Owner:/usr/adm:/bin/sh
9sys:*:4:0:System Activity Owner:/usr/adm:/bin/sh
9sys:*:4:0:System Activity Owner:/usr/adm:/bin/sh
10adm:*:5:3:Accounting Files Owner:/usr/adm:/bin/sh
10adm:*:5:3:Accounting Files Owner:/usr/adm:/bin/sh
10adm:*:5:3:Accounting Files Owner:/usr/adm:/bin/sh
10adm:*:5:3:Accounting Files Owner:/usr/adm:/bin/sh
11lp:*:9:9:Print Spooler Owner:/var/spool/lp:/bin/sh
11lp:*:9:9:Print Spooler Owner:/var/spool/lp:/bin/sh
11lp:*:9:9:Print Spooler Owner:/var/spool/lp:/bin/sh
11lp:*:9:9:Print Spooler Owner:/var/spool/lp:/bin/sh
12auditor:*:11:0:Audit Activity Owner:/auditor:/bin/sh
12auditor:*:11:0:Audit Activity Owner:/auditor:/bin/sh
12auditor:*:11:0:Audit Activity Owner:/auditor:/bin/sh
12auditor:*:11:0:Audit Activity Owner:/auditor:/bin/sh
13dbadmin:*:12:0:Security Database Owner:/dbadmin:/bin/sh
13dbadmin:*:12:0:Security Database Owner:/dbadmin:/bin/sh
13dbadmin:*:12:0:Security Database Owner:/dbadmin:/bin/sh
13dbadmin:*:12:0:Security Database Owner:/dbadmin:/bin/sh
14bootes:dcon:50:1:Tom Killian (DO NOT REMOVE):/tmp:
14bootes:dcon:50:1:Tom Killian (DO NOT REMOVE):/tmp:
14bootes:dcon:50:1:Tom Killian (DO NOT REMOVE):/tmp:
14bootes:dcon:50:1:Tom Killian (DO NOT REMOVE):/tmp:
15cdjuke:dcon:51:1:Tom Killian (DO NOT REMOVE):/tmp:
15cdjuke:dcon:51:1:Tom Killian (DO NOT REMOVE):/tmp:
15cdjuke:dcon:51:1:Tom Killian (DO NOT REMOVE):/tmp:
16rfindd:*:66:1:Rfind Daemon and Fsdump:/var/rfindd:/bin/sh
16rfindd:*:66:1:Rfind Daemon and Fsdump:/var/rfindd:/bin/sh
16rfindd:*:66:1:Rfind Daemon and Fsdump:/var/rfindd:/bin/sh
16rfindd:*:66:1:Rfind Daemon and Fsdump:/var/rfindd:/bin/sh
17EZsetup:*:992:998:System Setup:/var/sysadmdesktop/EZsetup:/bin/csh
17EZsetup:*:992:998:System Setup:/var/sysadmdesktop/EZsetup:/bin/csh
17EZsetup:*:992:998:System Setup:/var/sysadmdesktop/EZsetup:/bin/csh
17EZsetup:*:992:998:System Setup:/var/sysadmdesktop/EZsetup:/bin/csh
18demos:*:993:997:Demonstration User:/usr/demos:/bin/csh
18demos:*:993:997:Demonstration User:/usr/demos:/bin/csh
18demos:*:993:997:Demonstration User:/usr/demos:/bin/csh
18demos:*:993:997:Demonstration User:/usr/demos:/bin/csh
19tutor:*:994:997:Tutorial User:/usr/tutor:/bin/csh
19tutor:*:994:997:Tutorial User:/usr/tutor:/bin/csh
19tutor:*:994:997:Tutorial User:/usr/tutor:/bin/csh
19tutor:*:994:997:Tutorial User:/usr/tutor:/bin/csh
20tour:*:995:997:IRIS Space Tour:/usr/people/tour:/bin/csh
20tour:*:995:997:IRIS Space Tour:/usr/people/tour:/bin/csh
20tour:*:995:997:IRIS Space Tour:/usr/people/tour:/bin/csh
20tour:*:995:997:IRIS Space Tour:/usr/people/tour:/bin/csh
21guest:nfP4/Wpvio/Rw:998:998:Guest Account:/usr/people/guest:/bin/csh
21guest:nfP4/Wpvio/Rw:998:998:Guest Account:/usr/people/guest:/bin/csh
224Dgifts:0nWRTZsOMt.:999:998:4Dgifts Account:/usr/people/4Dgifts:/bin/csh
224Dgifts:0nWRTZsOMt.:999:998:4Dgifts Account:/usr/people/4Dgifts:/bin/csh
23nobody:*:60001:60001:SVR4 nobody uid:/dev/null:/dev/null
23nobody:*:60001:60001:SVR4 nobody uid:/dev/null:/dev/null
24noaccess:*:60002:60002:uid no access:/dev/null:/dev/null
24noaccess:*:60002:60002:uid no access:/dev/null:/dev/null
24noaccess:*:60002:60002:uid no access:/dev/null:/dev/null
25nobody:*:-2:-2:original nobody uid:/dev/null:/dev/null
25nobody:*:-2:-2:original nobody uid:/dev/null:/dev/null
25nobody:*:-2:-2:original nobody uid:/dev/null:/dev/null
25nobody:*:-2:-2:original nobody uid:/dev/null:/dev/null
26rje:*:8:8:RJE Owner:/usr/spool/rje:
27changes:*:11:11:system change log:/:
27changes:*:11:11:system change log:/:
27changes:*:11:11:system change log:/:
28dist:sorry:9999:4:file distributions:/v/adm/dist:/v/bin/sh
28dist:sorry:9999:4:file distributions:/v/adm/dist:/v/bin/sh
28dist:sorry:9999:4:file distributions:/v/adm/dist:/v/bin/sh
28dist:sorry:9999:4:file distributions:/v/adm/dist:/v/bin/sh
29man:*:99:995:On-line Manual Owner:/:
29man:*:99:995:On-line Manual Owner:/:
29man:*:99:995:On-line Manual Owner:/:
30phoneca:*:991:991:phone call log [tom]:/v/adm/log:/v/bin/sh
30phoneca:*:991:991:phone call log [tom]:/v/adm/log:/v/bin/sh
30phoneca:*:991:991:phone call log [tom]:/v/adm/log:/v/bin/sh
30phoneca:*:991:991:phone call log [tom]:/v/adm/log:/v/bin/sh
1r oot EMpNB8Zp56 0 0 Super-User,,,,,,, / /bin/sh
1r oot EMpNB8Zp56 0 0 Super-User,,,,,,, / /bin/sh
2r oottcsh * 0 0 Super-User running tcsh [cbm] / /bin/tcsh
2r oottcsh * 0 0 Super-User running tcsh [cbm] / /bin/tcsh
3s ysadm * 0 0 System V Administration /usr/admin /bin/sh
3s ysadm * 0 0 System V Administration /usr/admin /bin/sh
3s ysadm * 0 0 System V Administration /usr/admin /bin/sh
3s ysadm * 0 0 System V Administration /usr/admin /bin/sh
4d iag * 0 996 Hardware Diagnostics /usr/diags /bin/csh
4d iag * 0 996 Hardware Diagnostics /usr/diags /bin/csh
4d iag * 0 996 Hardware Diagnostics /usr/diags /bin/csh
4d iag * 0 996 Hardware Diagnostics /usr/diags /bin/csh
5d aemon * 1 1 daemons / /bin/sh
5d aemon * 1 1 daemons / /bin/sh
5d aemon * 1 1 daemons / /bin/sh
5d aemon * 1 1 daemons / /bin/sh
6b in * 2 2 System Tools Owner /bin /dev/null
6b in * 2 2 System Tools Owner /bin /dev/null
7n uucp BJnuQbAo 6 10 UUCP.Admin /usr/spool/uucppublic /usr/lib/uucp/uucico
7n uucp BJnuQbAo 6 10 UUCP.Admin /usr/spool/uucppublic /usr/lib/uucp/uucico
8u ucp * 3 5 UUCP.Admin /usr/lib/uucp
8u ucp * 3 5 UUCP.Admin /usr/lib/uucp
9s ys * 4 0 System Activity Owner /usr/adm /bin/sh
9s ys * 4 0 System Activity Owner /usr/adm /bin/sh
9s ys * 4 0 System Activity Owner /usr/adm /bin/sh
9s ys * 4 0 System Activity Owner /usr/adm /bin/sh
10 adm * 5 3 Accounting Files Owner /usr/adm /bin/sh
10 adm * 5 3 Accounting Files Owner /usr/adm /bin/sh
10 adm * 5 3 Accounting Files Owner /usr/adm /bin/sh
10 adm * 5 3 Accounting Files Owner /usr/adm /bin/sh
11 lp * 9 9 Print Spooler Owner /var/spool/lp /bin/sh
11 lp * 9 9 Print Spooler Owner /var/spool/lp /bin/sh
11 lp * 9 9 Print Spooler Owner /var/spool/lp /bin/sh
11 lp * 9 9 Print Spooler Owner /var/spool/lp /bin/sh
12 auditor * 11 0 Audit Activity Owner /auditor /bin/sh
12 auditor * 11 0 Audit Activity Owner /auditor /bin/sh
12 auditor * 11 0 Audit Activity Owner /auditor /bin/sh
12 auditor * 11 0 Audit Activity Owner /auditor /bin/sh
13 dbadmin * 12 0 Security Database Owner /dbadmin /bin/sh
13 dbadmin * 12 0 Security Database Owner /dbadmin /bin/sh
13 dbadmin * 12 0 Security Database Owner /dbadmin /bin/sh
13 dbadmin * 12 0 Security Database Owner /dbadmin /bin/sh
14 bootes dcon 50 1 Tom Killian (DO NOT REMOVE) /tmp
14 bootes dcon 50 1 Tom Killian (DO NOT REMOVE) /tmp
14 bootes dcon 50 1 Tom Killian (DO NOT REMOVE) /tmp
14 bootes dcon 50 1 Tom Killian (DO NOT REMOVE) /tmp
15 cdjuke dcon 51 1 Tom Killian (DO NOT REMOVE) /tmp
15 cdjuke dcon 51 1 Tom Killian (DO NOT REMOVE) /tmp
15 cdjuke dcon 51 1 Tom Killian (DO NOT REMOVE) /tmp
16 rfindd * 66 1 Rfind Daemon and Fsdump /var/rfindd /bin/sh
16 rfindd * 66 1 Rfind Daemon and Fsdump /var/rfindd /bin/sh
16 rfindd * 66 1 Rfind Daemon and Fsdump /var/rfindd /bin/sh
16 rfindd * 66 1 Rfind Daemon and Fsdump /var/rfindd /bin/sh
17 EZsetup * 992 998 System Setup /var/sysadmdesktop/EZsetup /bin/csh
17 EZsetup * 992 998 System Setup /var/sysadmdesktop/EZsetup /bin/csh
17 EZsetup * 992 998 System Setup /var/sysadmdesktop/EZsetup /bin/csh
17 EZsetup * 992 998 System Setup /var/sysadmdesktop/EZsetup /bin/csh
18 demos * 993 997 Demonstration User /usr/demos /bin/csh
18 demos * 993 997 Demonstration User /usr/demos /bin/csh
18 demos * 993 997 Demonstration User /usr/demos /bin/csh
18 demos * 993 997 Demonstration User /usr/demos /bin/csh
19 tutor * 994 997 Tutorial User /usr/tutor /bin/csh
19 tutor * 994 997 Tutorial User /usr/tutor /bin/csh
19 tutor * 994 997 Tutorial User /usr/tutor /bin/csh
19 tutor * 994 997 Tutorial User /usr/tutor /bin/csh
20 tour * 995 997 IRIS Space Tour /usr/people/tour /bin/csh
20 tour * 995 997 IRIS Space Tour /usr/people/tour /bin/csh
20 tour * 995 997 IRIS Space Tour /usr/people/tour /bin/csh
20 tour * 995 997 IRIS Space Tour /usr/people/tour /bin/csh
21 guest nfP4/Wpvio/Rw 998 998 Guest Account /usr/people/guest /bin/csh
21 guest nfP4/Wpvio/Rw 998 998 Guest Account /usr/people/guest /bin/csh
22 4Dgifts 0nWRTZsOMt. 999 998 4Dgifts Account /usr/people/4Dgifts /bin/csh
22 4Dgifts 0nWRTZsOMt. 999 998 4Dgifts Account /usr/people/4Dgifts /bin/csh
23 nobody * 60001 60001 SVR4 nobody uid /dev/null /dev/null
23 nobody * 60001 60001 SVR4 nobody uid /dev/null /dev/null
24 noaccess * 60002 60002 uid no access /dev/null /dev/null
24 noaccess * 60002 60002 uid no access /dev/null /dev/null
24 noaccess * 60002 60002 uid no access /dev/null /dev/null
25 nobody * -2 -2 original nobody uid /dev/null /dev/null
25 nobody * -2 -2 original nobody uid /dev/null /dev/null
25 nobody * -2 -2 original nobody uid /dev/null /dev/null
25 nobody * -2 -2 original nobody uid /dev/null /dev/null
26 rje * 8 8 RJE Owner /usr/spool/rje
27 changes * 11 11 system change log /
27 changes * 11 11 system change log /
27 changes * 11 11 system change log /
28 dist sorry 9999 4 file distributions /v/adm/dist /v/bin/sh
28 dist sorry 9999 4 file distributions /v/adm/dist /v/bin/sh
28 dist sorry 9999 4 file distributions /v/adm/dist /v/bin/sh
28 dist sorry 9999 4 file distributions /v/adm/dist /v/bin/sh
29 man * 99 995 On-line Manual Owner /
29 man * 99 995 On-line Manual Owner /
29 man * 99 995 On-line Manual Owner /
30 phoneca * 991 991 phone call log [tom] /v/adm/log /v/bin/sh
30 phoneca * 991 991 phone call log [tom] /v/adm/log /v/bin/sh
30 phoneca * 991 991 phone call log [tom] /v/adm/log /v/bin/sh
30 phoneca * 991 991 phone call log [tom] /v/adm/log /v/bin/sh
| Max | 1 | Crestwave/goawk | testdata/output/t.pat | [
"MIT"
] |
' 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.Collections.Immutable
Imports System.Runtime.CompilerServices
Imports Microsoft.CodeAnalysis.ExpressionEvaluator
Imports Microsoft.VisualStudio.Debugger.Clr
Imports Microsoft.VisualStudio.Debugger.ComponentInterfaces
Imports Microsoft.VisualStudio.Debugger.Evaluation
Imports Microsoft.VisualStudio.Debugger.Evaluation.ClrCompilation
Namespace Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.UnitTests
Friend Module TestTypeExtensions
<Extension>
Public Function GetTypeName(type As System.Type, Optional typeInfo As DkmClrCustomTypeInfo = Nothing, Optional escapeKeywordIdentifiers As Boolean = False, Optional inspectionContext As DkmInspectionContext = Nothing) As String
Dim formatter = New VisualBasicFormatter()
Dim clrType = New DkmClrType(New TypeImpl(type))
If inspectionContext Is Nothing Then
Dim inspectionSession = New DkmInspectionSession(ImmutableArray.Create(Of IDkmClrFormatter)(New VisualBasicFormatter()), ImmutableArray.Create(Of IDkmClrResultProvider)(New VisualBasicResultProvider()))
inspectionContext = New DkmInspectionContext(inspectionSession, DkmEvaluationFlags.None, radix:=10, runtimeInstance:=Nothing)
End If
Return If(escapeKeywordIdentifiers,
DirectCast(formatter, IDkmClrFullNameProvider).GetClrTypeName(inspectionContext, clrType, typeInfo),
DirectCast(formatter, IDkmClrFormatter).GetTypeName(inspectionContext, clrType, typeInfo, Microsoft.CodeAnalysis.ExpressionEvaluator.Formatter.NoFormatSpecifiers))
End Function
End Module
End Namespace
| Visual Basic | 3 | ffMathy/roslyn | src/ExpressionEvaluator/VisualBasic/Test/ResultProvider/Helpers/TestTypeExtensions.vb | [
"MIT"
] |
all: help
help:
@echo ""
@echo "-- Help Menu"
@echo ""
@echo " 1. make build - build all images"
@echo " 2. make pull - pull all images"
@echo " 3. make clean - remove all images"
@echo ""
build:
@docker build --tag=ros:$release_name-ros-$os_code_name ros/.
pull:
@docker pull ros:$release_name-ros-$os_code_name
clean:
@docker rmi -f ros:$release_name-ros-$os_code_name
| EmberScript | 4 | christophebedard/docker_images-1 | ros/.config/legacy/Makefile.em | [
"Apache-2.0"
] |
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.spark.sql.catalyst.analysis
import org.apache.spark.sql.catalyst.QueryPlanningTracker
import org.apache.spark.sql.catalyst.dsl.expressions._
import org.apache.spark.sql.catalyst.dsl.plans._
import org.apache.spark.sql.catalyst.expressions._
import org.apache.spark.sql.catalyst.plans.logical.{LocalRelation, LogicalPlan}
/**
* Test suite for resolving Uuid expressions.
*/
class ResolvedUuidExpressionsSuite extends AnalysisTest {
private lazy val a = 'a.int
private lazy val r = LocalRelation(a)
private lazy val uuid1 = Uuid().as('_uuid1)
private lazy val uuid2 = Uuid().as('_uuid2)
private lazy val uuid3 = Uuid().as('_uuid3)
private lazy val uuid1Ref = uuid1.toAttribute
private val tracker = new QueryPlanningTracker
private val analyzer = getAnalyzer
private def getUuidExpressions(plan: LogicalPlan): Seq[Uuid] = {
plan.flatMap {
case p =>
p.expressions.flatMap(_.collect {
case u: Uuid => u
})
}
}
test("analyzed plan sets random seed for Uuid expression") {
val plan = r.select(a, uuid1)
val resolvedPlan = analyzer.executeAndCheck(plan, tracker)
getUuidExpressions(resolvedPlan).foreach { u =>
assert(u.resolved)
assert(u.randomSeed.isDefined)
}
}
test("Uuid expressions should have different random seeds") {
val plan = r.select(a, uuid1).groupBy(uuid1Ref)(uuid2, uuid3)
val resolvedPlan = analyzer.executeAndCheck(plan, tracker)
assert(getUuidExpressions(resolvedPlan).map(_.randomSeed.get).distinct.length == 3)
}
test("Different analyzed plans should have different random seeds in Uuids") {
val plan = r.select(a, uuid1).groupBy(uuid1Ref)(uuid2, uuid3)
val resolvedPlan1 = analyzer.executeAndCheck(plan, tracker)
val resolvedPlan2 = analyzer.executeAndCheck(plan, tracker)
val uuids1 = getUuidExpressions(resolvedPlan1)
val uuids2 = getUuidExpressions(resolvedPlan2)
assert(uuids1.distinct.length == 3)
assert(uuids2.distinct.length == 3)
assert(uuids1.intersect(uuids2).length == 0)
}
}
| Scala | 5 | kesavanvt/spark | sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/analysis/ResolvedUuidExpressionsSuite.scala | [
"BSD-2-Clause",
"Apache-2.0",
"CC0-1.0",
"MIT",
"MIT-0",
"ECL-2.0",
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] |
MODULE JPEG2000
DESCRIPTION IDL JPEG2000 Support
VERSION Kakadu ITT 2.2.02.1
SOURCE ITT Visual Information Solutions
BUILD_DATE AUG 21 2009
CHECKSUM YMJC54KU
FUNCTION IDLFFJPEG2000::GETDATA 1 1 KEYWORDS
FUNCTION IDLFFJPEG2000::GETUUID 2 2 KEYWORDS
FUNCTION IDLFFJPEG2000::INIT 2 2 KEYWORDS
PROCEDURE IDLFFJPEG2000::CLEANUP 1 1 KEYWORDS
PROCEDURE IDLFFJPEG2000::GETPROPERTY 1 1 KEYWORDS
PROCEDURE IDLFFJPEG2000::GETTILEPROPERTY 1 3 KEYWORDS
PROCEDURE IDLFFJPEG2000::SETDATA 2 IDL_MAXPARAMS KEYWORDS
PROCEDURE IDLFFJPEG2000::SETPROPERTY 1 1 KEYWORDS
PROCEDURE IDLFFJPEG2000::SETUUID 3 3
STRUCTURE IDLffJPEG2000
| IDL | 3 | rogerionegri/GeotexInspector | GeotexInspector_Linux/idl71/bin/bin.linux.x86_64/idl_jpeg2000.dlm | [
"MIT"
] |
require: "../../../src/multilang/fy/storm"
class MockedIO {
def initialize {
@out = []
@in = []
}
def print: string {
@out << (string to_s)
}
def println: string {
@out << (string ++ "\n")
}
def input: input {
input each: |i| {
@in << (i ++ "\n")
@in << "end\n"
}
}
def readline {
if: (@in empty?) then: {
"No input left" raise!
}
@in shift
}
def receive_msg: msg {
@in << (msg ++ "\n")
@in << "end\n"
}
def clear {
@in = []
@out = []
}
def flush {
}
def received {
@in
}
def sent {
@out
}
}
class Storm Protocol {
Input = MockedIO new
Output = MockedIO new
} | Fancy | 3 | desmorto/storm | storm-core/test/multilang/fy/mocks.fy | [
"Apache-2.0"
] |
dnl A placeholder for <stddef.h>, for platforms that have issues.
# stddef_h.m4 serial 5
dnl Copyright (C) 2009-2017 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
AC_DEFUN([gl_STDDEF_H],
[
AC_REQUIRE([gl_STDDEF_H_DEFAULTS])
AC_REQUIRE([gt_TYPE_WCHAR_T])
STDDEF_H=
AC_CHECK_TYPE([max_align_t], [], [HAVE_MAX_ALIGN_T=0; STDDEF_H=stddef.h],
[[#include <stddef.h>
]])
if test $gt_cv_c_wchar_t = no; then
HAVE_WCHAR_T=0
STDDEF_H=stddef.h
fi
AC_CACHE_CHECK([whether NULL can be used in arbitrary expressions],
[gl_cv_decl_null_works],
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stddef.h>
int test[2 * (sizeof NULL == sizeof (void *)) -1];
]])],
[gl_cv_decl_null_works=yes],
[gl_cv_decl_null_works=no])])
if test $gl_cv_decl_null_works = no; then
REPLACE_NULL=1
STDDEF_H=stddef.h
fi
AC_SUBST([STDDEF_H])
AM_CONDITIONAL([GL_GENERATE_STDDEF_H], [test -n "$STDDEF_H"])
if test -n "$STDDEF_H"; then
gl_NEXT_HEADERS([stddef.h])
fi
])
AC_DEFUN([gl_STDDEF_MODULE_INDICATOR],
[
dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
AC_REQUIRE([gl_STDDEF_H_DEFAULTS])
gl_MODULE_INDICATOR_SET_VARIABLE([$1])
])
AC_DEFUN([gl_STDDEF_H_DEFAULTS],
[
dnl Assume proper GNU behavior unless another module says otherwise.
REPLACE_NULL=0; AC_SUBST([REPLACE_NULL])
HAVE_MAX_ALIGN_T=1; AC_SUBST([HAVE_MAX_ALIGN_T])
HAVE_WCHAR_T=1; AC_SUBST([HAVE_WCHAR_T])
])
| M4 | 4 | YuPf1989/BGAQRCode-Android | zbar/src/main/jni/libiconv-1.15/srcm4/stddef_h.m4 | [
"Apache-2.0"
] |
frequency,raw
20.00,0.21
20.20,0.22
20.40,0.23
20.61,0.25
20.81,0.26
21.02,0.27
21.23,0.28
21.44,0.29
21.66,0.30
21.87,0.31
22.09,0.32
22.31,0.34
22.54,0.35
22.76,0.36
22.99,0.37
23.22,0.38
23.45,0.40
23.69,0.41
23.92,0.43
24.16,0.44
24.40,0.45
24.65,0.46
24.89,0.47
25.14,0.49
25.39,0.50
25.65,0.51
25.91,0.52
26.16,0.53
26.43,0.54
26.69,0.55
26.96,0.57
27.23,0.58
27.50,0.60
27.77,0.61
28.05,0.62
28.33,0.63
28.62,0.64
28.90,0.66
29.19,0.67
29.48,0.68
29.78,0.69
30.08,0.70
30.38,0.72
30.68,0.73
30.99,0.75
31.30,0.76
31.61,0.77
31.93,0.79
32.24,0.80
32.57,0.81
32.89,0.82
33.22,0.83
33.55,0.84
33.89,0.86
34.23,0.87
34.57,0.88
34.92,0.89
35.27,0.90
35.62,0.91
35.97,0.93
36.33,0.94
36.70,0.95
37.06,0.96
37.43,0.97
37.81,0.98
38.19,1.00
38.57,1.01
38.95,1.02
39.34,1.03
39.74,1.03
40.14,1.04
40.54,1.06
40.94,1.07
41.35,1.08
41.76,1.09
42.18,1.10
42.60,1.11
43.03,1.12
43.46,1.13
43.90,1.15
44.33,1.16
44.78,1.17
45.23,1.18
45.68,1.19
46.13,1.20
46.60,1.22
47.06,1.23
47.53,1.25
48.01,1.26
48.49,1.27
48.97,1.28
49.46,1.29
49.96,1.30
50.46,1.31
50.96,1.32
51.47,1.33
51.99,1.34
52.51,1.35
53.03,1.35
53.56,1.36
54.10,1.36
54.64,1.37
55.18,1.37
55.74,1.38
56.29,1.38
56.86,1.38
57.42,1.38
58.00,1.38
58.58,1.38
59.16,1.38
59.76,1.37
60.35,1.37
60.96,1.37
61.57,1.36
62.18,1.36
62.80,1.35
63.43,1.35
64.07,1.34
64.71,1.33
65.35,1.32
66.01,1.31
66.67,1.30
67.33,1.30
68.01,1.29
68.69,1.28
69.37,1.28
70.07,1.27
70.77,1.26
71.48,1.26
72.19,1.25
72.91,1.24
73.64,1.24
74.38,1.24
75.12,1.24
75.87,1.24
76.63,1.24
77.40,1.24
78.17,1.25
78.95,1.26
79.74,1.27
80.54,1.28
81.35,1.28
82.16,1.29
82.98,1.31
83.81,1.32
84.65,1.33
85.50,1.35
86.35,1.37
87.22,1.39
88.09,1.41
88.97,1.43
89.86,1.46
90.76,1.48
91.66,1.50
92.58,1.53
93.51,1.56
94.44,1.58
95.39,1.61
96.34,1.63
97.30,1.66
98.28,1.68
99.26,1.70
100.25,1.72
101.25,1.74
102.27,1.75
103.29,1.76
104.32,1.76
105.37,1.77
106.42,1.78
107.48,1.79
108.56,1.79
109.64,1.79
110.74,1.79
111.85,1.79
112.97,1.78
114.10,1.78
115.24,1.77
116.39,1.76
117.55,1.76
118.73,1.75
119.92,1.75
121.12,1.74
122.33,1.74
123.55,1.74
124.79,1.74
126.03,1.74
127.29,1.74
128.57,1.74
129.85,1.75
131.15,1.75
132.46,1.76
133.79,1.76
135.12,1.77
136.48,1.77
137.84,1.78
139.22,1.78
140.61,1.78
142.02,1.79
143.44,1.79
144.87,1.79
146.32,1.79
147.78,1.79
149.26,1.79
150.75,1.78
152.26,1.78
153.78,1.78
155.32,1.77
156.88,1.77
158.44,1.77
160.03,1.76
161.63,1.76
163.24,1.75
164.88,1.74
166.53,1.73
168.19,1.72
169.87,1.71
171.57,1.70
173.29,1.69
175.02,1.67
176.77,1.65
178.54,1.63
180.32,1.62
182.13,1.60
183.95,1.57
185.79,1.55
187.65,1.53
189.52,1.51
191.42,1.49
193.33,1.47
195.27,1.45
197.22,1.43
199.19,1.40
201.18,1.38
203.19,1.35
205.23,1.33
207.28,1.30
209.35,1.27
211.44,1.25
213.56,1.22
215.69,1.18
217.85,1.15
220.03,1.14
222.23,1.11
224.45,1.09
226.70,1.05
228.96,1.03
231.25,1.02
233.57,1.01
235.90,1.00
238.26,1.00
240.64,1.00
243.05,1.00
245.48,1.00
247.93,1.00
250.41,1.01
252.92,1.01
255.45,1.02
258.00,1.03
260.58,1.03
263.19,1.03
265.82,1.03
268.48,1.05
271.16,1.06
273.87,1.06
276.61,1.07
279.38,1.08
282.17,1.09
284.99,1.10
287.84,1.12
290.72,1.15
293.63,1.17
296.57,1.19
299.53,1.21
302.53,1.23
305.55,1.24
308.61,1.23
311.69,1.23
314.81,1.24
317.96,1.24
321.14,1.24
324.35,1.23
327.59,1.23
330.87,1.25
334.18,1.26
337.52,1.27
340.90,1.28
344.30,1.29
347.75,1.30
351.23,1.30
354.74,1.29
358.28,1.28
361.87,1.28
365.49,1.27
369.14,1.27
372.83,1.26
376.56,1.24
380.33,1.24
384.13,1.23
387.97,1.23
391.85,1.22
395.77,1.22
399.73,1.21
403.72,1.21
407.76,1.20
411.84,1.18
415.96,1.16
420.12,1.15
424.32,1.13
428.56,1.12
432.85,1.12
437.18,1.12
441.55,1.12
445.96,1.12
450.42,1.12
454.93,1.13
459.48,1.13
464.07,1.14
468.71,1.14
473.40,1.14
478.13,1.15
482.91,1.15
487.74,1.16
492.62,1.16
497.55,1.17
502.52,1.17
507.55,1.17
512.62,1.17
517.75,1.17
522.93,1.17
528.16,1.17
533.44,1.18
538.77,1.18
544.16,1.19
549.60,1.20
555.10,1.21
560.65,1.22
566.25,1.23
571.92,1.22
577.64,1.23
583.41,1.22
589.25,1.23
595.14,1.22
601.09,1.23
607.10,1.23
613.17,1.24
619.30,1.23
625.50,1.23
631.75,1.25
638.07,1.25
644.45,1.26
650.89,1.26
657.40,1.28
663.98,1.29
670.62,1.29
677.32,1.31
684.10,1.32
690.94,1.34
697.85,1.34
704.83,1.35
711.87,1.34
718.99,1.33
726.18,1.32
733.44,1.31
740.78,1.29
748.19,1.27
755.67,1.25
763.23,1.25
770.86,1.24
778.57,1.23
786.35,1.21
794.22,1.21
802.16,1.19
810.18,1.18
818.28,1.16
826.46,1.13
834.73,1.12
843.08,1.09
851.51,1.07
860.02,1.04
868.62,1.03
877.31,1.00
886.08,0.98
894.94,0.96
903.89,0.94
912.93,0.92
922.06,0.90
931.28,0.88
940.59,0.88
950.00,0.87
959.50,0.86
969.09,0.85
978.78,0.84
988.57,0.83
998.46,0.82
1008.44,0.82
1018.53,0.82
1028.71,0.83
1039.00,0.82
1049.39,0.81
1059.88,0.81
1070.48,0.81
1081.19,0.80
1092.00,0.80
1102.92,0.79
1113.95,0.78
1125.09,0.77
1136.34,0.76
1147.70,0.75
1159.18,0.75
1170.77,0.74
1182.48,0.74
1194.30,0.73
1206.25,0.72
1218.31,0.70
1230.49,0.70
1242.80,0.70
1255.22,0.70
1267.78,0.70
1280.45,0.68
1293.26,0.68
1306.19,0.67
1319.25,0.67
1332.45,0.67
1345.77,0.67
1359.23,0.67
1372.82,0.68
1386.55,0.68
1400.41,0.67
1414.42,0.67
1428.56,0.66
1442.85,0.65
1457.28,0.65
1471.85,0.63
1486.57,0.63
1501.43,0.61
1516.45,0.60
1531.61,0.59
1546.93,0.57
1562.40,0.57
1578.02,0.56
1593.80,0.54
1609.74,0.52
1625.84,0.51
1642.10,0.50
1658.52,0.48
1675.10,0.46
1691.85,0.44
1708.77,0.42
1725.86,0.40
1743.12,0.37
1760.55,0.36
1778.15,0.36
1795.94,0.35
1813.90,0.34
1832.03,0.32
1850.36,0.31
1868.86,0.31
1887.55,0.31
1906.42,0.31
1925.49,0.31
1944.74,0.31
1964.19,0.33
1983.83,0.35
2003.67,0.36
2023.71,0.38
2043.94,0.39
2064.38,0.41
2085.03,0.42
2105.88,0.44
2126.94,0.46
2148.20,0.47
2169.69,0.47
2191.38,0.46
2213.30,0.45
2235.43,0.44
2257.78,0.44
2280.36,0.42
2303.17,0.41
2326.20,0.41
2349.46,0.41
2372.95,0.41
2396.68,0.41
2420.65,0.42
2444.86,0.44
2469.31,0.46
2494.00,0.48
2518.94,0.49
2544.13,0.51
2569.57,0.53
2595.27,0.57
2621.22,0.61
2647.43,0.65
2673.90,0.68
2700.64,0.73
2727.65,0.77
2754.93,0.82
2782.48,0.88
2810.30,0.94
2838.40,1.01
2866.79,1.09
2895.46,1.19
2924.41,1.29
2953.65,1.40
2983.19,1.53
3013.02,1.66
3043.15,1.80
3073.58,1.94
3104.32,2.10
3135.36,2.27
3166.72,2.42
3198.38,2.59
3230.37,2.75
3262.67,2.91
3295.30,3.02
3328.25,3.13
3361.53,3.25
3395.15,3.35
3429.10,3.45
3463.39,3.56
3498.03,3.65
3533.01,3.75
3568.34,3.85
3604.02,3.96
3640.06,4.07
3676.46,4.18
3713.22,4.32
3750.36,4.44
3787.86,4.56
3825.74,4.69
3864.00,4.81
3902.64,4.94
3941.66,5.07
3981.08,5.21
4020.89,5.32
4061.10,5.40
4101.71,5.47
4142.73,5.54
4184.15,5.59
4226.00,5.63
4268.26,5.67
4310.94,5.70
4354.05,5.70
4397.59,5.69
4441.56,5.68
4485.98,5.67
4530.84,5.66
4576.15,5.65
4621.91,5.65
4668.13,5.67
4714.81,5.69
4761.96,5.72
4809.58,5.76
4857.67,5.81
4906.25,5.86
4955.31,5.92
5004.87,5.99
5054.91,6.05
5105.46,6.11
5156.52,6.16
5208.08,6.22
5260.16,6.25
5312.77,6.29
5365.89,6.35
5419.55,6.39
5473.75,6.42
5528.49,6.45
5583.77,6.48
5639.61,6.51
5696.00,6.53
5752.96,6.54
5810.49,6.55
5868.60,6.57
5927.28,6.58
5986.56,6.60
6046.42,6.62
6106.89,6.64
6167.96,6.65
6229.64,6.65
6291.93,6.64
6354.85,6.61
6418.40,6.54
6482.58,6.44
6547.41,6.31
6612.88,6.13
6679.01,5.89
6745.80,5.61
6813.26,5.28
6881.39,4.92
6950.21,4.51
7019.71,4.08
7089.91,3.62
7160.81,3.12
7232.41,2.62
7304.74,2.09
7377.79,1.56
7451.56,1.03
7526.08,0.50
7601.34,-0.04
7677.35,-0.56
7754.13,-1.06
7831.67,-1.53
7909.98,-1.95
7989.08,-2.33
8068.98,-2.67
8149.67,-2.96
8231.16,-3.18
8313.47,-3.34
8396.61,-3.42
8480.57,-3.43
8565.38,-3.37
8651.03,-3.23
8737.54,-3.04
8824.92,-2.79
8913.17,-2.50
9002.30,-2.16
9092.32,-1.82
9183.25,-1.47
9275.08,-1.13
9367.83,-0.84
9461.51,-0.59
9556.12,-0.40
9651.68,-0.24
9748.20,-0.14
9845.68,-0.10
9944.14,-0.10
10043.58,-0.15
10144.02,-0.22
10245.46,-0.31
10347.91,-0.41
10451.39,-0.49
10555.91,-0.55
10661.46,-0.59
10768.08,-0.62
10875.76,-0.63
10984.52,-0.60
11094.36,-0.54
11205.31,-0.48
11317.36,-0.41
11430.53,-0.36
11544.84,-0.37
11660.29,-0.40
11776.89,-0.48
11894.66,-0.61
12013.60,-0.77
12133.74,-0.97
12255.08,-1.21
12377.63,-1.46
12501.41,-1.70
12626.42,-1.95
12752.68,-2.20
12880.21,-2.41
13009.01,-2.60
13139.10,-2.73
13270.49,-2.78
13403.20,-2.78
13537.23,-2.74
13672.60,-2.68
13809.33,-2.60
13947.42,-2.50
14086.90,-2.42
14227.77,-2.31
14370.04,-2.23
14513.74,-2.19
14658.88,-2.22
14805.47,-2.33
14953.52,-2.52
15103.06,-2.80
15254.09,-3.16
15406.63,-3.61
15560.70,-4.11
15716.30,-4.65
15873.47,-5.21
16032.20,-5.77
16192.52,-6.30
16354.45,-6.92
16517.99,-7.49
16683.17,-8.00
16850.01,-8.42
17018.51,-8.77
17188.69,-9.04
17360.58,-9.26
17534.18,-9.59
17709.53,-9.93
17886.62,-10.22
18065.49,-10.49
18246.14,-10.78
18428.60,-11.08
18612.89,-11.35
18799.02,-11.96
18987.01,-12.64
19176.88,-13.30
19368.65,-13.94
19562.33,-14.56
19757.96,-15.16
19955.54,-15.73
| CSV | 1 | vinzmc/AutoEq | measurements/referenceaudioanalyzer/resources/referenceaudioanalyzer_compensation_hdm-x.csv | [
"MIT"
] |
use "collections"
class Timer
"""
The `Timer` class represents a timer that fires after an expiration
time, and then fires at an interval. When a `Timer` fires, it calls
the `apply` method of the `TimerNotify` object that was passed to it
when it was created.
The following example waits 5 seconds and then fires every 2
seconds, and when it fires the `TimerNotify` object prints how many
times it has been called:
```pony
use "time"
actor Main
new create(env: Env) =>
let timers = Timers
let timer = Timer(Notify(env), 5_000_000_000, 2_000_000_000)
timers(consume timer)
class Notify is TimerNotify
let _env: Env
var _counter: U32 = 0
new iso create(env: Env) =>
_env = env
fun ref apply(timer: Timer, count: U64): Bool =>
_env.out.print(_counter.string())
_counter = _counter + 1
true
```
"""
var _expiration: U64
var _interval: U64
let _notify: TimerNotify
embed _node: ListNode[Timer]
new iso create(
notify: TimerNotify iso,
expiration: U64,
interval: U64 = 0)
=>
"""
Create a new timer. The expiration time should be a nanosecond count
until the first expiration. The interval should also be in nanoseconds.
"""
_expiration = expiration + Time.nanos()
_interval = interval
_notify = consume notify
_node = ListNode[Timer]
try _node()? = this end
new abs(notify: TimerNotify, expiration: (I64, I64), interval: U64 = 0) =>
"""
Creates a new timer with an absolute expiration time rather than a relative
time. The expiration time is wall-clock adjusted system time.
"""
_expiration = _abs_expiration_time(expiration)
_interval = interval
_notify = notify
_node = ListNode[Timer]
try _node()? = this end
fun ref _cancel() =>
"""
Remove the timer from any list.
"""
_node.remove()
_notify.cancel(this)
fun ref _get_node(): ListNode[Timer] =>
"""
Returns the list node pointing to the timer. Used to schedule the timer in
a queue.
"""
_node
fun ref _slop(bits: USize) =>
"""
Apply slop bits to the expiration time and interval. This reduces the
precision by the given number of bits, effectively quantizing time.
"""
_expiration = _expiration >> bits.u64()
if _interval > 0 then
_interval = (_interval >> bits.u64()).max(1)
end
fun ref _fire(current: U64): Bool =>
"""
A timer is fired if its expiration time is in the past. The notifier is
called with a count based on the elapsed time since expiration and the
timer interval. The expiration time is set to the next expiration. Returns
true if the timer should be rescheduled, false otherwise.
"""
let elapsed = current - _expiration
if elapsed < (1 << 63) then
let count = (elapsed / _interval) + 1
_expiration = _expiration + (count * _interval)
if not _notify(this, count) then
_notify.cancel(this)
return false
end
end
(_interval > 0) or ((_expiration - current) < (1 << 63))
fun _next(): U64 =>
"""
Returns the next expiration time.
"""
_expiration
fun tag _abs_expiration_time(wall: (I64, I64)): U64 =>
"""
Converts a wall-clock adjusted system time to absolute expiration time
"""
let wall_now = Time.now()
Time.nanos()
+ (((wall._1 * 1000000000) + wall._2)
- ((wall_now._1 * 1000000000) + wall_now._2)).u64()
| Pony | 4 | presidentbeef/ponyc | packages/time/timer.pony | [
"BSD-2-Clause"
] |
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html>
<head></head>
<body>
<h1>Anonymous page</h1>
<a href="<c:url value="/login.html" />">To Login</a>
</body>
</html> | Java Server Pages | 3 | zeesh49/tutorials | spring-security-react/src/main/webapp/WEB-INF/view/anonymous.jsp | [
"MIT"
] |
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 8.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 157, 7]
NotebookDataLength[ 2095, 78]
NotebookOptionsPosition[ 1684, 58]
NotebookOutlinePosition[ 2021, 73]
CellTagsIndexPosition[ 1978, 70]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"e", " ", "=",
RowBox[{
RowBox[{"(",
RowBox[{"y", "+", "x", "+", "z", "+", "w"}], ")"}], "^",
"60"}]}]], "Input",
CellChangeTimes->{{3.5853210932731457`*^9, 3.5853211055605173`*^9}, {
3.5859133063614388`*^9, 3.5859133067826633`*^9}}],
Cell[BoxData[
SuperscriptBox[
RowBox[{"(",
RowBox[{"w", "+", "x", "+", "y", "+", "z"}], ")"}], "60"]], "Output",
CellChangeTimes->{
3.585321106954556*^9, 3.585913307610922*^9, 3.5859133919648952`*^9,
3.586195599079687*^9, {3.586195670443467*^9, 3.586195683547567*^9}}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Timing", "[",
RowBox[{
RowBox[{"g", "=",
RowBox[{"Expand", "[", "e", "]"}]}], ";"}], "]"}]], "Input",
CellChangeTimes->{{3.585321121374816*^9, 3.5853211329822598`*^9}}],
Cell[BoxData[
RowBox[{"{",
RowBox[{"0.12400699999999998`", ",", "Null"}], "}"}]], "Output",
CellChangeTimes->{
3.585321136069125*^9, 3.585913356976121*^9, 3.5859133920725183`*^9, {
3.586195603864347*^9, 3.586195632768238*^9}, {3.586195670584958*^9,
3.586195683698516*^9}}]
}, Open ]]
},
WindowSize->{740, 867},
WindowMargins->{{118, Automatic}, {Automatic, 0}},
FrontEndVersion->"8.0 for Linux x86 (64-bit) (February 23, 2011)",
StyleDefinitions->"Default.nb"
]
(* End of Notebook Content *)
(* Internal cache information *)
(*CellTagsOutline
CellTagsIndex->{}
*)
(*CellTagsIndex
CellTagsIndex->{}
*)
(*NotebookFileOutline
Notebook[{
Cell[CellGroupData[{
Cell[579, 22, 274, 7, 30, "Input"],
Cell[856, 31, 282, 6, 30, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[1175, 42, 204, 5, 30, "Input"],
Cell[1382, 49, 286, 6, 30, "Output"]
}, Open ]]
}
]
*)
(* End of internal cache information *)
| Mathematica | 3 | jmig5776/symengine | benchmarks/expand1.nb | [
"MIT"
] |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as assert from 'assert';
import { merge } from 'vs/platform/userDataSync/common/keybindingsMerge';
import { TestUserDataSyncUtilService } from 'vs/platform/userDataSync/test/common/userDataSyncClient';
suite('KeybindingsMerge - No Conflicts', () => {
test('merge when local and remote are same with one entry', async () => {
const localContent = stringify([{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' }]);
const remoteContent = stringify([{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' }]);
const actual = await mergeKeybindings(localContent, remoteContent, null);
assert.ok(!actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when local and remote are same with similar when contexts', async () => {
const localContent = stringify([{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' }]);
const remoteContent = stringify([{ key: 'alt+c', command: 'a', when: '!editorReadonly && editorTextFocus' }]);
const actual = await mergeKeybindings(localContent, remoteContent, null);
assert.ok(!actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when local and remote has entries in different order', async () => {
const localContent = stringify([
{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+a', command: 'a', when: 'editorTextFocus' }
]);
const remoteContent = stringify([
{ key: 'alt+a', command: 'a', when: 'editorTextFocus' },
{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' }
]);
const actual = await mergeKeybindings(localContent, remoteContent, null);
assert.ok(!actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when local and remote are same with multiple entries', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } }
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } }
]);
const actual = await mergeKeybindings(localContent, remoteContent, null);
assert.ok(!actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when local and remote are same with different base content', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } }
]);
const baseContent = stringify([
{ key: 'ctrl+c', command: 'e' },
{ key: 'shift+d', command: 'd', args: { text: '`' } }
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } }
]);
const actual = await mergeKeybindings(localContent, remoteContent, baseContent);
assert.ok(!actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when local and remote are same with multiple entries in different order', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } }
]);
const remoteContent = stringify([
{ key: 'cmd+c', command: 'b', args: { text: '`' } },
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, null);
assert.ok(!actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when local and remote are same when remove entry is in different order', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } }
]);
const remoteContent = stringify([
{ key: 'alt+d', command: '-a' },
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } },
]);
const actual = await mergeKeybindings(localContent, remoteContent, null);
assert.ok(!actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when a new entry is added to remote', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } },
]);
const actual = await mergeKeybindings(localContent, remoteContent, null);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, remoteContent);
});
test('merge when multiple new entries are added to remote', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } },
{ key: 'cmd+d', command: 'c' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, null);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, remoteContent);
});
test('merge when multiple new entries are added to remote from base and local has not changed', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } },
{ key: 'cmd+d', command: 'c' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, localContent);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, remoteContent);
});
test('merge when an entry is removed from remote from base and local has not changed', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } },
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, localContent);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, remoteContent);
});
test('merge when an entry (same command) is removed from remote from base and local has not changed', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, localContent);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, remoteContent);
});
test('merge when an entry is updated in remote from base and local has not changed', async () => {
const localContent = stringify([
{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' },
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, localContent);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, remoteContent);
});
test('merge when a command with multiple entries is updated from remote from base and local has not changed', async () => {
const localContent = stringify([
{ key: 'shift+c', command: 'c' },
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: 'b' },
{ key: 'cmd+c', command: 'a' },
]);
const remoteContent = stringify([
{ key: 'shift+c', command: 'c' },
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: 'b' },
{ key: 'cmd+d', command: 'a' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, localContent);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, remoteContent);
});
test('merge when remote has moved forwareded with multiple changes and local stays with base', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+e', command: 'd' },
{ key: 'cmd+d', command: 'c', when: 'context1' },
]);
const remoteContent = stringify([
{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'cmd+e', command: 'd' },
{ key: 'alt+d', command: '-a' },
{ key: 'alt+f', command: 'f' },
{ key: 'alt+d', command: '-f' },
{ key: 'cmd+d', command: 'c', when: 'context1' },
{ key: 'cmd+c', command: '-c' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, localContent);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, remoteContent);
});
test('merge when a new entry is added to local', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } },
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, null);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when multiple new entries are added to local', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } },
{ key: 'cmd+d', command: 'c' },
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, null);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when multiple new entries are added to local from base and remote is not changed', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } },
{ key: 'cmd+d', command: 'c' },
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, remoteContent);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when an entry is removed from local from base and remote has not changed', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } },
]);
const actual = await mergeKeybindings(localContent, remoteContent, remoteContent);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when an entry (with same command) is removed from local from base and remote has not changed', async () => {
const localContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: '-a' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, remoteContent);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when an entry is updated in local from base and remote has not changed', async () => {
const localContent = stringify([
{ key: 'alt+d', command: 'a', when: 'editorTextFocus' },
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, remoteContent);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when a command with multiple entries is updated from local from base and remote has not changed', async () => {
const localContent = stringify([
{ key: 'shift+c', command: 'c' },
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: 'b' },
{ key: 'cmd+c', command: 'a' },
]);
const remoteContent = stringify([
{ key: 'shift+c', command: 'c' },
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+d', command: 'b' },
{ key: 'cmd+d', command: 'a' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, remoteContent);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, localContent);
});
test('merge when local has moved forwareded with multiple changes and remote stays with base', async () => {
const localContent = stringify([
{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'cmd+e', command: 'd' },
{ key: 'alt+d', command: '-a' },
{ key: 'alt+f', command: 'f' },
{ key: 'alt+d', command: '-f' },
{ key: 'cmd+d', command: 'c', when: 'context1' },
{ key: 'cmd+c', command: '-c' },
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'cmd+c', command: 'b', args: { text: '`' } },
{ key: 'alt+d', command: '-a' },
{ key: 'cmd+e', command: 'd' },
{ key: 'cmd+d', command: 'c', when: 'context1' },
]);
const expected = stringify([
{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'cmd+e', command: 'd' },
{ key: 'alt+d', command: '-a' },
{ key: 'alt+f', command: 'f' },
{ key: 'alt+d', command: '-f' },
{ key: 'cmd+d', command: 'c', when: 'context1' },
{ key: 'cmd+c', command: '-c' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, remoteContent);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, expected);
});
test('merge when local and remote has moved forwareded with conflicts', async () => {
const baseContent = stringify([
{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'ctrl+c', command: '-a' },
{ key: 'cmd+e', command: 'd' },
{ key: 'alt+a', command: 'f' },
{ key: 'alt+d', command: '-f' },
{ key: 'cmd+d', command: 'c', when: 'context1' },
{ key: 'cmd+c', command: '-c' },
]);
const localContent = stringify([
{ key: 'alt+d', command: '-f' },
{ key: 'cmd+e', command: 'd' },
{ key: 'cmd+c', command: '-c' },
{ key: 'cmd+d', command: 'c', when: 'context1' },
{ key: 'alt+a', command: 'f' },
{ key: 'alt+e', command: 'e' },
]);
const remoteContent = stringify([
{ key: 'alt+a', command: 'f' },
{ key: 'cmd+c', command: '-c' },
{ key: 'cmd+d', command: 'd' },
{ key: 'alt+d', command: '-f' },
{ key: 'alt+c', command: 'c', when: 'context1' },
{ key: 'alt+g', command: 'g', when: 'context2' },
]);
const expected = stringify([
{ key: 'alt+d', command: '-f' },
{ key: 'cmd+d', command: 'd' },
{ key: 'cmd+c', command: '-c' },
{ key: 'alt+c', command: 'c', when: 'context1' },
{ key: 'alt+a', command: 'f' },
{ key: 'alt+e', command: 'e' },
{ key: 'alt+g', command: 'g', when: 'context2' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, baseContent);
assert.ok(actual.hasChanges);
assert.ok(!actual.hasConflicts);
assert.strictEqual(actual.mergeContent, expected);
});
test('merge when local and remote with one entry but different value', async () => {
const localContent = stringify([{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' }]);
const remoteContent = stringify([{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' }]);
const actual = await mergeKeybindings(localContent, remoteContent, null);
assert.ok(actual.hasChanges);
assert.ok(actual.hasConflicts);
assert.strictEqual(actual.mergeContent,
`[
{
"key": "alt+d",
"command": "a",
"when": "editorTextFocus && !editorReadonly"
}
]`);
});
test('merge when local and remote with different keybinding', async () => {
const localContent = stringify([
{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+a', command: '-a', when: 'editorTextFocus && !editorReadonly' }
]);
const remoteContent = stringify([
{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+a', command: '-a', when: 'editorTextFocus && !editorReadonly' }
]);
const actual = await mergeKeybindings(localContent, remoteContent, null);
assert.ok(actual.hasChanges);
assert.ok(actual.hasConflicts);
assert.strictEqual(actual.mergeContent,
`[
{
"key": "alt+d",
"command": "a",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+a",
"command": "-a",
"when": "editorTextFocus && !editorReadonly"
}
]`);
});
test('merge when the entry is removed in local but updated in remote', async () => {
const baseContent = stringify([{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' }]);
const localContent = stringify([]);
const remoteContent = stringify([{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' }]);
const actual = await mergeKeybindings(localContent, remoteContent, baseContent);
assert.ok(actual.hasChanges);
assert.ok(actual.hasConflicts);
assert.strictEqual(actual.mergeContent,
`[]`);
});
test('merge when the entry is removed in local but updated in remote and a new entry is added in local', async () => {
const baseContent = stringify([{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' }]);
const localContent = stringify([{ key: 'alt+b', command: 'b' }]);
const remoteContent = stringify([{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' }]);
const actual = await mergeKeybindings(localContent, remoteContent, baseContent);
assert.ok(actual.hasChanges);
assert.ok(actual.hasConflicts);
assert.strictEqual(actual.mergeContent,
`[
{
"key": "alt+b",
"command": "b"
}
]`);
});
test('merge when the entry is removed in remote but updated in local', async () => {
const baseContent = stringify([{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' }]);
const localContent = stringify([{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' }]);
const remoteContent = stringify([]);
const actual = await mergeKeybindings(localContent, remoteContent, baseContent);
assert.ok(actual.hasChanges);
assert.ok(actual.hasConflicts);
assert.strictEqual(actual.mergeContent,
`[
{
"key": "alt+c",
"command": "a",
"when": "editorTextFocus && !editorReadonly"
}
]`);
});
test('merge when the entry is removed in remote but updated in local and a new entry is added in remote', async () => {
const baseContent = stringify([{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' }]);
const localContent = stringify([{ key: 'alt+c', command: 'a', when: 'editorTextFocus && !editorReadonly' }]);
const remoteContent = stringify([{ key: 'alt+b', command: 'b' }]);
const actual = await mergeKeybindings(localContent, remoteContent, baseContent);
assert.ok(actual.hasChanges);
assert.ok(actual.hasConflicts);
assert.strictEqual(actual.mergeContent,
`[
{
"key": "alt+c",
"command": "a",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+b",
"command": "b"
}
]`);
});
test('merge when local and remote has moved forwareded with conflicts', async () => {
const baseContent = stringify([
{ key: 'alt+d', command: 'a', when: 'editorTextFocus && !editorReadonly' },
{ key: 'alt+c', command: '-a' },
{ key: 'cmd+e', command: 'd' },
{ key: 'alt+a', command: 'f' },
{ key: 'alt+d', command: '-f' },
{ key: 'cmd+d', command: 'c', when: 'context1' },
{ key: 'cmd+c', command: '-c' },
]);
const localContent = stringify([
{ key: 'alt+d', command: '-f' },
{ key: 'cmd+e', command: 'd' },
{ key: 'cmd+c', command: '-c' },
{ key: 'cmd+d', command: 'c', when: 'context1' },
{ key: 'alt+a', command: 'f' },
{ key: 'alt+e', command: 'e' },
]);
const remoteContent = stringify([
{ key: 'alt+a', command: 'f' },
{ key: 'cmd+c', command: '-c' },
{ key: 'cmd+d', command: 'd' },
{ key: 'alt+d', command: '-f' },
{ key: 'alt+c', command: 'c', when: 'context1' },
{ key: 'alt+g', command: 'g', when: 'context2' },
]);
const actual = await mergeKeybindings(localContent, remoteContent, baseContent);
assert.ok(actual.hasChanges);
assert.ok(actual.hasConflicts);
assert.strictEqual(actual.mergeContent,
`[
{
"key": "alt+d",
"command": "-f"
},
{
"key": "cmd+d",
"command": "d"
},
{
"key": "cmd+c",
"command": "-c"
},
{
"key": "cmd+d",
"command": "c",
"when": "context1"
},
{
"key": "alt+a",
"command": "f"
},
{
"key": "alt+e",
"command": "e"
},
{
"key": "alt+g",
"command": "g",
"when": "context2"
}
]`);
});
});
async function mergeKeybindings(localContent: string, remoteContent: string, baseContent: string | null) {
const userDataSyncUtilService = new TestUserDataSyncUtilService();
const formattingOptions = await userDataSyncUtilService.resolveFormattingOptions();
return merge(localContent, remoteContent, baseContent, formattingOptions, userDataSyncUtilService);
}
function stringify(value: any): string {
return JSON.stringify(value, null, '\t');
}
| TypeScript | 5 | sbj42/vscode | src/vs/platform/userDataSync/test/common/keybindingsMerge.test.ts | [
"MIT"
] |
:orphan:
ddp_mnist_torch
~~~~~~~~~~~~~~~
.. literalinclude:: /../../python/ray/tune/examples/ddp_mnist_torch.py
| reStructuredText | 2 | firebolt55439/ray | doc/source/tune/examples/ddp_mnist_torch.rst | [
"Apache-2.0"
] |
:- encoding('US-ASCII').
% the encoding/1 directive, when present, must be the
% first term, in the first line, of a source file
name('Paulo Moura').
name('John Smith').
| Logtalk | 4 | jfmc/logtalk3 | tests/logtalk/directives/encoding_1/include_us_ascii.lgt | [
"Apache-2.0"
] |
background hsv(210,255,255)
move 0,0,0
color hsv(wave(1000)*100,255,255)
x: F1*10
tile x,x,x
box 0.5 + wave(1000)*0.5
end
| Cycript | 3 | marcinbiegun/creativecoding-sketches | Cyril/data/code_old/8.cy | [
"MIT"
] |
# For more information see: http://emberjs.com/guides/routing/
<%= application_name.camelize %>.Router.map ->
# @resource('posts')
| EmberScript | 2 | JakeKaad/ember-rails | lib/generators/templates/router.em | [
"MIT"
] |
val z = Badcache1.x * 2
| UrWeb | 0 | apple314159/urweb | tests/badcache2.ur | [
"BSD-3-Clause"
] |
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 -10.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 -80.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 -91.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 -83.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 -10.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 -7.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 -91.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 -28.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 -10.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 -53.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 -91.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 -91.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 -10.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 -86.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 -91.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 -32.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 -10.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 -8.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 -91.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 -48.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 -80.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 -7.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 -83.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 -28.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 -80.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 -53.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 -83.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 -91.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 -80.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 -86.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 -83.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 -32.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 -80.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 -8.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 -83.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 -48.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 -7.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 -53.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 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -91.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 -7.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 -86.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 -28.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 -32.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 -7.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 -8.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 -28.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 -48.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 -53.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 -86.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 -91.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 -32.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 -53.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 -8.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 -91.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 -48.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 -86.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 -8.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 -32.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 -48.00
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 -10.00
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 -80.00
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 -7.00
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 -53.00
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 -86.00
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 -8.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 9.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 17.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 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 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 9.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 68.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 52.00
| Matlab | 2 | yinrun/LOPDC-Benchmarks | strippacking/matlab/sp-6-41-one.matlab | [
"MIT"
] |
{"obj/api/alps_.net_api.abstracPass.yml":{"~/obj/api/alps_.net_api.abstracPass.yml":"~/api/alps_.net_api.abstracPass.html"},"obj/api/alps_.net_api.IOwlThing.yml":{"~/obj/api/alps_.net_api.IOwlThing.yml":"~/api/alps_.net_api.IOwlThing.html"},"obj/api/alps_.net_api.OwlGraph.yml":{"~/obj/api/alps_.net_api.OwlGraph.yml":"~/api/alps_.net_api.OwlGraph.html"},"obj/api/alps_.net_api.ITreeNode.yml":{"~/obj/api/alps_.net_api.ITreeNode.yml":"~/api/alps_.net_api.ITreeNode.html"},"obj/api/alps_.net_api.SimplePASSElement.yml":{"~/obj/api/alps_.net_api.SimplePASSElement.yml":"~/api/alps_.net_api.SimplePASSElement.html"},"obj/api/alps_.net_api.TreeNode.yml":{"~/obj/api/alps_.net_api.TreeNode.yml":"~/api/alps_.net_api.TreeNode.html"},"api/index.md":{"~/api/index.md":"~/api/index.html"},"articles/intro.md":{"~/articles/intro.md":"~/articles/intro.html"},"index.md":{"~/index.md":"~/index.html"},"obj/api/alps_.net_api.PASSProcessModelElement.yml":{"~/obj/api/alps_.net_api.PASSProcessModelElement.yml":"~/api/alps_.net_api.PASSProcessModelElement.html"},"obj/api/alps_.net_api.CalenderBasedReminderTransition.yml":{"~/obj/api/alps_.net_api.CalenderBasedReminderTransition.yml":"~/api/alps_.net_api.CalenderBasedReminderTransition.html"},"obj/api/alps_.net_api.CustomOrExternalDataTypeDefintion.yml":{"~/obj/api/alps_.net_api.CustomOrExternalDataTypeDefintion.yml":"~/api/alps_.net_api.CustomOrExternalDataTypeDefintion.html"},"obj/api/alps_.net_api.DataMappingIncomingToLocal.yml":{"~/obj/api/alps_.net_api.DataMappingIncomingToLocal.yml":"~/api/alps_.net_api.DataMappingIncomingToLocal.html"},"obj/api/alps_.net_api.DataTypeDefintion.yml":{"~/obj/api/alps_.net_api.DataTypeDefintion.yml":"~/api/alps_.net_api.DataTypeDefintion.html"},"obj/api/alps_.net_api.DoFunction.yml":{"~/obj/api/alps_.net_api.DoFunction.yml":"~/api/alps_.net_api.DoFunction.html"},"obj/api/alps_.net_api.EndState.yml":{"~/obj/api/alps_.net_api.EndState.yml":"~/api/alps_.net_api.EndState.html"},"obj/api/alps_.net_api.GuardBehavior.yml":{"~/obj/api/alps_.net_api.GuardBehavior.yml":"~/api/alps_.net_api.GuardBehavior.html"},"obj/api/alps_.net_api.ICalenderBasedReminderTransition.yml":{"~/obj/api/alps_.net_api.ICalenderBasedReminderTransition.yml":"~/api/alps_.net_api.ICalenderBasedReminderTransition.html"},"obj/api/alps_.net_api.ICalenderBasedReminderTransitionCondition.yml":{"~/obj/api/alps_.net_api.ICalenderBasedReminderTransitionCondition.yml":"~/api/alps_.net_api.ICalenderBasedReminderTransitionCondition.html"},"obj/api/alps_.net_api.IDataMappingFunction.yml":{"~/obj/api/alps_.net_api.IDataMappingFunction.yml":"~/api/alps_.net_api.IDataMappingFunction.html"},"obj/api/alps_.net_api.IDataMappingIncomingToLocal.yml":{"~/obj/api/alps_.net_api.IDataMappingIncomingToLocal.yml":"~/api/alps_.net_api.IDataMappingIncomingToLocal.html"},"obj/api/alps_.net_api.IDayTimerTransitionCondition.yml":{"~/obj/api/alps_.net_api.IDayTimerTransitionCondition.yml":"~/api/alps_.net_api.IDayTimerTransitionCondition.html"},"obj/api/alps_.net_api.IDayTimeTimerTransition.yml":{"~/obj/api/alps_.net_api.IDayTimeTimerTransition.yml":"~/api/alps_.net_api.IDayTimeTimerTransition.html"},"obj/api/alps_.net_api.IFunctionSpecification.yml":{"~/obj/api/alps_.net_api.IFunctionSpecification.yml":"~/api/alps_.net_api.IFunctionSpecification.html"},"obj/api/alps_.net_api.IGenericReturnToOriginRefrence.yml":{"~/obj/api/alps_.net_api.IGenericReturnToOriginRefrence.yml":"~/api/alps_.net_api.IGenericReturnToOriginRefrence.html"},"obj/api/alps_.net_api.IInputPoolConstraintHandlingStrategy.yml":{"~/obj/api/alps_.net_api.IInputPoolConstraintHandlingStrategy.yml":"~/api/alps_.net_api.IInputPoolConstraintHandlingStrategy.html"},"obj/api/alps_.net_api.IInteractionDescriptionComponent.yml":{"~/obj/api/alps_.net_api.IInteractionDescriptionComponent.yml":"~/api/alps_.net_api.IInteractionDescriptionComponent.html"},"obj/api/alps_.net_api.IMessageExchange.yml":{"~/obj/api/alps_.net_api.IMessageExchange.yml":"~/api/alps_.net_api.IMessageExchange.html"},"obj/api/alps_.net_api.IMessageExchangeCondition.yml":{"~/obj/api/alps_.net_api.IMessageExchangeCondition.yml":"~/api/alps_.net_api.IMessageExchangeCondition.html"},"obj/api/alps_.net_api.InitialStateOfBehavior.yml":{"~/obj/api/alps_.net_api.InitialStateOfBehavior.yml":"~/api/alps_.net_api.InitialStateOfBehavior.html"},"obj/api/alps_.net_api.InitialStateOfChoiceSegmentPath.yml":{"~/obj/api/alps_.net_api.InitialStateOfChoiceSegmentPath.yml":"~/api/alps_.net_api.InitialStateOfChoiceSegmentPath.html"},"obj/api/alps_.net_api.IOWLDataTypeDefintion.yml":{"~/obj/api/alps_.net_api.IOWLDataTypeDefintion.yml":"~/api/alps_.net_api.IOWLDataTypeDefintion.html"},"obj/api/alps_.net_api.IReceiveTransition.yml":{"~/obj/api/alps_.net_api.IReceiveTransition.yml":"~/api/alps_.net_api.IReceiveTransition.html"},"obj/api/alps_.net_api.IReceiveTransitionCondition.yml":{"~/obj/api/alps_.net_api.IReceiveTransitionCondition.yml":"~/api/alps_.net_api.IReceiveTransitionCondition.html"},"obj/api/alps_.net_api.IReceiveType.yml":{"~/obj/api/alps_.net_api.IReceiveType.yml":"~/api/alps_.net_api.IReceiveType.html"},"obj/api/alps_.net_api.IReminderEventTransitionCondition.yml":{"~/obj/api/alps_.net_api.IReminderEventTransitionCondition.yml":"~/api/alps_.net_api.IReminderEventTransitionCondition.html"},"obj/api/alps_.net_api.ISubject.yml":{"~/obj/api/alps_.net_api.ISubject.yml":"~/api/alps_.net_api.ISubject.html"},"obj/api/alps_.net_api.ISubjectBaseBehavior.yml":{"~/obj/api/alps_.net_api.ISubjectBaseBehavior.yml":"~/api/alps_.net_api.ISubjectBaseBehavior.html"},"obj/api/alps_.net_api.ISubjectBehavior.yml":{"~/obj/api/alps_.net_api.ISubjectBehavior.yml":"~/api/alps_.net_api.ISubjectBehavior.html"},"obj/api/alps_.net_api.ISubjectDataDefinition.yml":{"~/obj/api/alps_.net_api.ISubjectDataDefinition.yml":"~/api/alps_.net_api.ISubjectDataDefinition.html"},"obj/api/alps_.net_api.IYearMonthTimerTransitionCondition.yml":{"~/obj/api/alps_.net_api.IYearMonthTimerTransitionCondition.yml":"~/api/alps_.net_api.IYearMonthTimerTransitionCondition.html"},"obj/api/alps_.net_api.JSONDataTypeDefintion.yml":{"~/obj/api/alps_.net_api.JSONDataTypeDefintion.yml":"~/api/alps_.net_api.JSONDataTypeDefintion.html"},"obj/api/alps_.net_api.MacroBehavior.yml":{"~/obj/api/alps_.net_api.MacroBehavior.yml":"~/api/alps_.net_api.MacroBehavior.html"},"obj/api/alps_.net_api.MacroState.yml":{"~/obj/api/alps_.net_api.MacroState.yml":"~/api/alps_.net_api.MacroState.html"},"obj/api/alps_.net_api.OWLDataTypeDefintion.yml":{"~/obj/api/alps_.net_api.OWLDataTypeDefintion.yml":"~/api/alps_.net_api.OWLDataTypeDefintion.html"},"obj/api/alps_.net_api.OwlThing.yml":{"~/obj/api/alps_.net_api.OwlThing.yml":"~/api/alps_.net_api.OwlThing.html"},"obj/api/alps_.net_api.SendingFailedCondition.yml":{"~/obj/api/alps_.net_api.SendingFailedCondition.yml":"~/api/alps_.net_api.SendingFailedCondition.html"},"obj/api/alps_.net_api.SendingFailedTransition.yml":{"~/obj/api/alps_.net_api.SendingFailedTransition.yml":"~/api/alps_.net_api.SendingFailedTransition.html"},"obj/api/alps_.net_api.SendState.yml":{"~/obj/api/alps_.net_api.SendState.yml":"~/api/alps_.net_api.SendState.html"},"obj/api/alps_.net_api.SendTransition.yml":{"~/obj/api/alps_.net_api.SendTransition.yml":"~/api/alps_.net_api.SendTransition.html"},"obj/api/alps_.net_api.TimeBasedReminderTransition.yml":{"~/obj/api/alps_.net_api.TimeBasedReminderTransition.yml":"~/api/alps_.net_api.TimeBasedReminderTransition.html"},"obj/api/alps_.net_api.TimeBasedReminderTransitionCondition.yml":{"~/obj/api/alps_.net_api.TimeBasedReminderTransitionCondition.yml":"~/api/alps_.net_api.TimeBasedReminderTransitionCondition.html"},"obj/api/alps_.net_api.TimerTransition.yml":{"~/obj/api/alps_.net_api.TimerTransition.yml":"~/api/alps_.net_api.TimerTransition.html"},"obj/api/alps_.net_api.TimerTransitionCondition.yml":{"~/obj/api/alps_.net_api.TimerTransitionCondition.yml":"~/api/alps_.net_api.TimerTransitionCondition.html"},"obj/api/alps_.net_api.BehaviorDescriptionComponent.yml":{"~/obj/api/alps_.net_api.BehaviorDescriptionComponent.yml":"~/api/alps_.net_api.BehaviorDescriptionComponent.html"},"obj/api/alps_.net_api.CalenderBasedReminderTransitionCondition.yml":{"~/obj/api/alps_.net_api.CalenderBasedReminderTransitionCondition.yml":"~/api/alps_.net_api.CalenderBasedReminderTransitionCondition.html"},"obj/api/alps_.net_api.ChoiceSegmentPath.yml":{"~/obj/api/alps_.net_api.ChoiceSegmentPath.yml":"~/api/alps_.net_api.ChoiceSegmentPath.html"},"obj/api/alps_.net_api.DataDescribingComponent.yml":{"~/obj/api/alps_.net_api.DataDescribingComponent.yml":"~/api/alps_.net_api.DataDescribingComponent.html"},"obj/api/alps_.net_api.DataObjectDefiniton.yml":{"~/obj/api/alps_.net_api.DataObjectDefiniton.yml":"~/api/alps_.net_api.DataObjectDefiniton.html"},"obj/api/alps_.net_api.DayTimeTimerTransition.yml":{"~/obj/api/alps_.net_api.DayTimeTimerTransition.yml":"~/api/alps_.net_api.DayTimeTimerTransition.html"},"obj/api/alps_.net_api.DoTransitionCondition.yml":{"~/obj/api/alps_.net_api.DoTransitionCondition.yml":"~/api/alps_.net_api.DoTransitionCondition.html"},"obj/api/alps_.net_api.GenericReturnToOriginReference.yml":{"~/obj/api/alps_.net_api.GenericReturnToOriginReference.yml":"~/api/alps_.net_api.GenericReturnToOriginReference.html"},"obj/api/alps_.net_api.IBuisnessDayTimerTransition.yml":{"~/obj/api/alps_.net_api.IBuisnessDayTimerTransition.yml":"~/api/alps_.net_api.IBuisnessDayTimerTransition.html"},"obj/api/alps_.net_api.IBusinessDayTimerTransitionCondition.yml":{"~/obj/api/alps_.net_api.IBusinessDayTimerTransitionCondition.yml":"~/api/alps_.net_api.IBusinessDayTimerTransitionCondition.html"},"obj/api/alps_.net_api.ICustomOrExternalDataTypeDefintion.yml":{"~/obj/api/alps_.net_api.ICustomOrExternalDataTypeDefintion.yml":"~/api/alps_.net_api.ICustomOrExternalDataTypeDefintion.html"},"obj/api/alps_.net_api.IDataDescribingComponent.yml":{"~/obj/api/alps_.net_api.IDataDescribingComponent.yml":"~/api/alps_.net_api.IDataDescribingComponent.html"},"obj/api/alps_.net_api.IGuardBehavior.yml":{"~/obj/api/alps_.net_api.IGuardBehavior.yml":"~/api/alps_.net_api.IGuardBehavior.html"},"obj/api/alps_.net_api.IInitialStateOfBehavior.yml":{"~/obj/api/alps_.net_api.IInitialStateOfBehavior.yml":"~/api/alps_.net_api.IInitialStateOfBehavior.html"},"obj/api/alps_.net_api.IMacroBehavior.yml":{"~/obj/api/alps_.net_api.IMacroBehavior.yml":"~/api/alps_.net_api.IMacroBehavior.html"},"obj/api/alps_.net_api.IMacroState.yml":{"~/obj/api/alps_.net_api.IMacroState.yml":"~/api/alps_.net_api.IMacroState.html"},"obj/api/alps_.net_api.IMessageSpecification.yml":{"~/obj/api/alps_.net_api.IMessageSpecification.yml":"~/api/alps_.net_api.IMessageSpecification.html"},"obj/api/alps_.net_api.IMessageTypeConstraint.yml":{"~/obj/api/alps_.net_api.IMessageTypeConstraint.yml":"~/api/alps_.net_api.IMessageTypeConstraint.html"},"obj/api/alps_.net_api.InputPoolConstraint.yml":{"~/obj/api/alps_.net_api.InputPoolConstraint.yml":"~/api/alps_.net_api.InputPoolConstraint.html"},"obj/api/alps_.net_api.InputPoolConstraintHandlingStrategy.yml":{"~/obj/api/alps_.net_api.InputPoolConstraintHandlingStrategy.yml":"~/api/alps_.net_api.InputPoolConstraintHandlingStrategy.html"},"obj/api/alps_.net_api.IPassProcessModell.yml":{"~/obj/api/alps_.net_api.IPassProcessModell.yml":"~/api/alps_.net_api.IPassProcessModell.html"},"obj/api/alps_.net_api.IPASSProcessModellElement.yml":{"~/obj/api/alps_.net_api.IPASSProcessModellElement.yml":"~/api/alps_.net_api.IPASSProcessModellElement.html"},"obj/api/alps_.net_api.IReminderTransition.yml":{"~/obj/api/alps_.net_api.IReminderTransition.yml":"~/api/alps_.net_api.IReminderTransition.html"},"obj/api/alps_.net_api.ISenderTypeConstraint.yml":{"~/obj/api/alps_.net_api.ISenderTypeConstraint.yml":"~/api/alps_.net_api.ISenderTypeConstraint.html"},"obj/api/alps_.net_api.IStandartPASSState.yml":{"~/obj/api/alps_.net_api.IStandartPASSState.yml":"~/api/alps_.net_api.IStandartPASSState.html"},"obj/api/alps_.net_api.IStartSubject.yml":{"~/obj/api/alps_.net_api.IStartSubject.yml":"~/api/alps_.net_api.IStartSubject.html"},"obj/api/alps_.net_api.IState.yml":{"~/obj/api/alps_.net_api.IState.yml":"~/api/alps_.net_api.IState.html"},"obj/api/alps_.net_api.IStateReference.yml":{"~/obj/api/alps_.net_api.IStateReference.yml":"~/api/alps_.net_api.IStateReference.html"},"obj/api/alps_.net_api.IUserCancelTransition.yml":{"~/obj/api/alps_.net_api.IUserCancelTransition.yml":"~/api/alps_.net_api.IUserCancelTransition.html"},"obj/api/alps_.net_api.IXSDDataTypeDefintion.yml":{"~/obj/api/alps_.net_api.IXSDDataTypeDefintion.yml":"~/api/alps_.net_api.IXSDDataTypeDefintion.html"},"obj/api/alps_.net_api.IYearMonthTimerTransition.yml":{"~/obj/api/alps_.net_api.IYearMonthTimerTransition.yml":"~/api/alps_.net_api.IYearMonthTimerTransition.html"},"obj/api/alps_.net_api.MessageExchangeList.yml":{"~/obj/api/alps_.net_api.MessageExchangeList.yml":"~/api/alps_.net_api.MessageExchangeList.html"},"obj/api/alps_.net_api.MessageSenderTypeConstraint.yml":{"~/obj/api/alps_.net_api.MessageSenderTypeConstraint.yml":"~/api/alps_.net_api.MessageSenderTypeConstraint.html"},"obj/api/alps_.net_api.MessageSpecification.yml":{"~/obj/api/alps_.net_api.MessageSpecification.yml":"~/api/alps_.net_api.MessageSpecification.html"},"obj/api/alps_.net_api.MessageTypeConstraint.yml":{"~/obj/api/alps_.net_api.MessageTypeConstraint.yml":"~/api/alps_.net_api.MessageTypeConstraint.html"},"obj/api/alps_.net_api.ReceiveState.yml":{"~/obj/api/alps_.net_api.ReceiveState.yml":"~/api/alps_.net_api.ReceiveState.html"},"obj/api/alps_.net_api.ReceiveTransition.yml":{"~/obj/api/alps_.net_api.ReceiveTransition.yml":"~/api/alps_.net_api.ReceiveTransition.html"},"obj/api/alps_.net_api.ReceiveTransitionCondition.yml":{"~/obj/api/alps_.net_api.ReceiveTransitionCondition.yml":"~/api/alps_.net_api.ReceiveTransitionCondition.html"},"obj/api/alps_.net_api.ReceiveType.yml":{"~/obj/api/alps_.net_api.ReceiveType.yml":"~/api/alps_.net_api.ReceiveType.html"},"obj/api/alps_.net_api.SendTransitionCondition.yml":{"~/obj/api/alps_.net_api.SendTransitionCondition.yml":"~/api/alps_.net_api.SendTransitionCondition.html"},"obj/api/alps_.net_api.SendType.yml":{"~/obj/api/alps_.net_api.SendType.yml":"~/api/alps_.net_api.SendType.html"},"obj/api/alps_.net_api.SingleSubject.yml":{"~/obj/api/alps_.net_api.SingleSubject.yml":"~/api/alps_.net_api.SingleSubject.html"},"obj/api/alps_.net_api.TimeTransition.yml":{"~/obj/api/alps_.net_api.TimeTransition.yml":"~/api/alps_.net_api.TimeTransition.html"},"obj/api/alps_.net_api.TimeTransitionCondition.yml":{"~/obj/api/alps_.net_api.TimeTransitionCondition.yml":"~/api/alps_.net_api.TimeTransitionCondition.html"},"obj/api/alps_.net_api.Transition.yml":{"~/obj/api/alps_.net_api.Transition.yml":"~/api/alps_.net_api.Transition.html"},"obj/api/alps_.net_api.TransitionCondition.yml":{"~/obj/api/alps_.net_api.TransitionCondition.yml":"~/api/alps_.net_api.TransitionCondition.html"},"obj/api/alps_.net_api.Action.yml":{"~/obj/api/alps_.net_api.Action.yml":"~/api/alps_.net_api.Action.html"},"obj/api/alps_.net_api.BusinessDayTimerTransitionCondition.yml":{"~/obj/api/alps_.net_api.BusinessDayTimerTransitionCondition.yml":"~/api/alps_.net_api.BusinessDayTimerTransitionCondition.html"},"obj/api/alps_.net_api.CommunicationTransition.yml":{"~/obj/api/alps_.net_api.CommunicationTransition.yml":"~/api/alps_.net_api.CommunicationTransition.html"},"obj/api/alps_.net_api.DataMappingFunction.yml":{"~/obj/api/alps_.net_api.DataMappingFunction.yml":"~/api/alps_.net_api.DataMappingFunction.html"},"obj/api/alps_.net_api.DataObjectListDefiniton.yml":{"~/obj/api/alps_.net_api.DataObjectListDefiniton.yml":"~/api/alps_.net_api.DataObjectListDefiniton.html"},"obj/api/alps_.net_api.DoState.yml":{"~/obj/api/alps_.net_api.DoState.yml":"~/api/alps_.net_api.DoState.html"},"obj/api/alps_.net_api.FullySpecifiedSubject.yml":{"~/obj/api/alps_.net_api.FullySpecifiedSubject.yml":"~/api/alps_.net_api.FullySpecifiedSubject.html"},"obj/api/alps_.net_api.IBehaviorDescriptionComponent.yml":{"~/obj/api/alps_.net_api.IBehaviorDescriptionComponent.yml":"~/api/alps_.net_api.IBehaviorDescriptionComponent.html"},"obj/api/alps_.net_api.ICommunicationAct.yml":{"~/obj/api/alps_.net_api.ICommunicationAct.yml":"~/api/alps_.net_api.ICommunicationAct.html"},"obj/api/alps_.net_api.ICommunicationTransition.yml":{"~/obj/api/alps_.net_api.ICommunicationTransition.yml":"~/api/alps_.net_api.ICommunicationTransition.html"},"obj/api/alps_.net_api.IDataObjectListDefiniton.yml":{"~/obj/api/alps_.net_api.IDataObjectListDefiniton.yml":"~/api/alps_.net_api.IDataObjectListDefiniton.html"},"obj/api/alps_.net_api.IDataTypeDefintion.yml":{"~/obj/api/alps_.net_api.IDataTypeDefintion.yml":"~/api/alps_.net_api.IDataTypeDefintion.html"},"obj/api/alps_.net_api.IDoTransition.yml":{"~/obj/api/alps_.net_api.IDoTransition.yml":"~/api/alps_.net_api.IDoTransition.html"},"obj/api/alps_.net_api.IDoTransitionCondition.yml":{"~/obj/api/alps_.net_api.IDoTransitionCondition.yml":"~/api/alps_.net_api.IDoTransitionCondition.html"},"obj/api/alps_.net_api.IInitialstateOfChoiceSegmentPath.yml":{"~/obj/api/alps_.net_api.IInitialstateOfChoiceSegmentPath.yml":"~/api/alps_.net_api.IInitialstateOfChoiceSegmentPath.html"},"obj/api/alps_.net_api.IInputPoolConstraint.yml":{"~/obj/api/alps_.net_api.IInputPoolConstraint.yml":"~/api/alps_.net_api.IInputPoolConstraint.html"},"obj/api/alps_.net_api.IMandatoryToEndChoiceSegmentPath.yml":{"~/obj/api/alps_.net_api.IMandatoryToEndChoiceSegmentPath.yml":"~/api/alps_.net_api.IMandatoryToEndChoiceSegmentPath.html"},"obj/api/alps_.net_api.IMandatoryToStartChoiceSegmentPath.yml":{"~/obj/api/alps_.net_api.IMandatoryToStartChoiceSegmentPath.yml":"~/api/alps_.net_api.IMandatoryToStartChoiceSegmentPath.html"},"obj/api/alps_.net_api.IModelBuiltInDataTypes.yml":{"~/obj/api/alps_.net_api.IModelBuiltInDataTypes.yml":"~/api/alps_.net_api.IModelBuiltInDataTypes.html"},"obj/api/alps_.net_api.IMultiSubject.yml":{"~/obj/api/alps_.net_api.IMultiSubject.yml":"~/api/alps_.net_api.IMultiSubject.html"},"obj/api/alps_.net_api.IOptionalToEndChoiceSegmentPath.yml":{"~/obj/api/alps_.net_api.IOptionalToEndChoiceSegmentPath.yml":"~/api/alps_.net_api.IOptionalToEndChoiceSegmentPath.html"},"obj/api/alps_.net_api.IOptionalToStartChoiceSegmentPath.yml":{"~/obj/api/alps_.net_api.IOptionalToStartChoiceSegmentPath.yml":"~/api/alps_.net_api.IOptionalToStartChoiceSegmentPath.html"},"obj/api/alps_.net_api.IReceiveFunction.yml":{"~/obj/api/alps_.net_api.IReceiveFunction.yml":"~/api/alps_.net_api.IReceiveFunction.html"},"obj/api/alps_.net_api.IReceiveState.yml":{"~/obj/api/alps_.net_api.IReceiveState.yml":"~/api/alps_.net_api.IReceiveState.html"},"obj/api/alps_.net_api.ISendTransition.yml":{"~/obj/api/alps_.net_api.ISendTransition.yml":"~/api/alps_.net_api.ISendTransition.html"},"obj/api/alps_.net_api.ISendTransitionCondition.yml":{"~/obj/api/alps_.net_api.ISendTransitionCondition.yml":"~/api/alps_.net_api.ISendTransitionCondition.html"},"obj/api/alps_.net_api.ISendType.yml":{"~/obj/api/alps_.net_api.ISendType.yml":"~/api/alps_.net_api.ISendType.html"},"obj/api/alps_.net_api.ISingleSubject.yml":{"~/obj/api/alps_.net_api.ISingleSubject.yml":"~/api/alps_.net_api.ISingleSubject.html"},"obj/api/alps_.net_api.ITimeTransition.yml":{"~/obj/api/alps_.net_api.ITimeTransition.yml":"~/api/alps_.net_api.ITimeTransition.html"},"obj/api/alps_.net_api.ITimeTransitionCondition.yml":{"~/obj/api/alps_.net_api.ITimeTransitionCondition.yml":"~/api/alps_.net_api.ITimeTransitionCondition.html"},"obj/api/alps_.net_api.ITransition.yml":{"~/obj/api/alps_.net_api.ITransition.yml":"~/api/alps_.net_api.ITransition.html"},"obj/api/alps_.net_api.ITransitionCondition.yml":{"~/obj/api/alps_.net_api.ITransitionCondition.yml":"~/api/alps_.net_api.ITransitionCondition.html"},"obj/api/alps_.net_api.ModelBuiltInDataTypes.yml":{"~/obj/api/alps_.net_api.ModelBuiltInDataTypes.yml":"~/api/alps_.net_api.ModelBuiltInDataTypes.html"},"obj/api/alps_.net_api.MultiSubject.yml":{"~/obj/api/alps_.net_api.MultiSubject.yml":"~/api/alps_.net_api.MultiSubject.html"},"obj/api/alps_.net_api.OptionalToEndChoiceSegmentPath.yml":{"~/obj/api/alps_.net_api.OptionalToEndChoiceSegmentPath.yml":"~/api/alps_.net_api.OptionalToEndChoiceSegmentPath.html"},"obj/api/alps_.net_api.OptionalToStartChoiceSegmentPath.yml":{"~/obj/api/alps_.net_api.OptionalToStartChoiceSegmentPath.yml":"~/api/alps_.net_api.OptionalToStartChoiceSegmentPath.html"},"obj/api/alps_.net_api.ReminderEventTransitionCondition.yml":{"~/obj/api/alps_.net_api.ReminderEventTransitionCondition.yml":"~/api/alps_.net_api.ReminderEventTransitionCondition.html"},"obj/api/alps_.net_api.ReminderTransition.yml":{"~/obj/api/alps_.net_api.ReminderTransition.yml":"~/api/alps_.net_api.ReminderTransition.html"},"obj/api/alps_.net_api.SenderTypeConstraint.yml":{"~/obj/api/alps_.net_api.SenderTypeConstraint.yml":"~/api/alps_.net_api.SenderTypeConstraint.html"},"obj/api/alps_.net_api.SendFunction.yml":{"~/obj/api/alps_.net_api.SendFunction.yml":"~/api/alps_.net_api.SendFunction.html"},"obj/api/alps_.net_api.Subject.yml":{"~/obj/api/alps_.net_api.Subject.yml":"~/api/alps_.net_api.Subject.html"},"obj/api/alps_.net_api.SubjectBaseBehavior.yml":{"~/obj/api/alps_.net_api.SubjectBaseBehavior.yml":"~/api/alps_.net_api.SubjectBaseBehavior.html"},"obj/api/alps_.net_api.SubjectBehavior.yml":{"~/obj/api/alps_.net_api.SubjectBehavior.yml":"~/api/alps_.net_api.SubjectBehavior.html"},"obj/api/alps_.net_api.SubjectDataDefinition.yml":{"~/obj/api/alps_.net_api.SubjectDataDefinition.yml":"~/api/alps_.net_api.SubjectDataDefinition.html"},"obj/api/alps_.net_api.YearMonthTimerTransitionCondition.yml":{"~/obj/api/alps_.net_api.YearMonthTimerTransitionCondition.yml":"~/api/alps_.net_api.YearMonthTimerTransitionCondition.html"},"obj/api/alps_.net_api.yml":{"~/obj/api/alps_.net_api.yml":"~/api/alps_.net_api.html"},"obj/api/alps_.net_api.BuisnessDayTimerTransition.yml":{"~/obj/api/alps_.net_api.BuisnessDayTimerTransition.yml":"~/api/alps_.net_api.BuisnessDayTimerTransition.html"},"obj/api/alps_.net_api.ChoiceSegment.yml":{"~/obj/api/alps_.net_api.ChoiceSegment.yml":"~/api/alps_.net_api.ChoiceSegment.html"},"obj/api/alps_.net_api.CommunicationAct.yml":{"~/obj/api/alps_.net_api.CommunicationAct.yml":"~/api/alps_.net_api.CommunicationAct.html"},"obj/api/alps_.net_api.DataMappingLocalToOutgoing.yml":{"~/obj/api/alps_.net_api.DataMappingLocalToOutgoing.yml":"~/api/alps_.net_api.DataMappingLocalToOutgoing.html"},"obj/api/alps_.net_api.DayTimerTransitionCondition.yml":{"~/obj/api/alps_.net_api.DayTimerTransitionCondition.yml":"~/api/alps_.net_api.DayTimerTransitionCondition.html"},"obj/api/alps_.net_api.DoTransition.yml":{"~/obj/api/alps_.net_api.DoTransition.yml":"~/api/alps_.net_api.DoTransition.html"},"obj/api/alps_.net_api.FunctionSpecification.yml":{"~/obj/api/alps_.net_api.FunctionSpecification.yml":"~/api/alps_.net_api.FunctionSpecification.html"},"obj/api/alps_.net_api.IAction.yml":{"~/obj/api/alps_.net_api.IAction.yml":"~/api/alps_.net_api.IAction.html"},"obj/api/alps_.net_api.IChoiceSegment.yml":{"~/obj/api/alps_.net_api.IChoiceSegment.yml":"~/api/alps_.net_api.IChoiceSegment.html"},"obj/api/alps_.net_api.IChoiceSegmentPath.yml":{"~/obj/api/alps_.net_api.IChoiceSegmentPath.yml":"~/api/alps_.net_api.IChoiceSegmentPath.html"},"obj/api/alps_.net_api.IDataMappingLocalToOutgoing.yml":{"~/obj/api/alps_.net_api.IDataMappingLocalToOutgoing.yml":"~/api/alps_.net_api.IDataMappingLocalToOutgoing.html"},"obj/api/alps_.net_api.IDataObjectDefiniton.yml":{"~/obj/api/alps_.net_api.IDataObjectDefiniton.yml":"~/api/alps_.net_api.IDataObjectDefiniton.html"},"obj/api/alps_.net_api.IDoFunction.yml":{"~/obj/api/alps_.net_api.IDoFunction.yml":"~/api/alps_.net_api.IDoFunction.html"},"obj/api/alps_.net_api.IDoState.yml":{"~/obj/api/alps_.net_api.IDoState.yml":"~/api/alps_.net_api.IDoState.html"},"obj/api/alps_.net_api.IEndState.yml":{"~/obj/api/alps_.net_api.IEndState.yml":"~/api/alps_.net_api.IEndState.html"},"obj/api/alps_.net_api.IFullySpecifiedSubject.yml":{"~/obj/api/alps_.net_api.IFullySpecifiedSubject.yml":"~/api/alps_.net_api.IFullySpecifiedSubject.html"},"obj/api/alps_.net_api.IInterfaceSubject.yml":{"~/obj/api/alps_.net_api.IInterfaceSubject.yml":"~/api/alps_.net_api.IInterfaceSubject.html"},"obj/api/alps_.net_api.IJSONDataTypeDefintion.yml":{"~/obj/api/alps_.net_api.IJSONDataTypeDefintion.yml":"~/api/alps_.net_api.IJSONDataTypeDefintion.html"},"obj/api/alps_.net_api.IMessageExchangeList.yml":{"~/obj/api/alps_.net_api.IMessageExchangeList.yml":"~/api/alps_.net_api.IMessageExchangeList.html"},"obj/api/alps_.net_api.IMessageSenderTypeConstraint.yml":{"~/obj/api/alps_.net_api.IMessageSenderTypeConstraint.yml":"~/api/alps_.net_api.IMessageSenderTypeConstraint.html"},"obj/api/alps_.net_api.InteractionDescriptionComponent.yml":{"~/obj/api/alps_.net_api.InteractionDescriptionComponent.yml":"~/api/alps_.net_api.InteractionDescriptionComponent.html"},"obj/api/alps_.net_api.InterfaceSubject.yml":{"~/obj/api/alps_.net_api.InterfaceSubject.yml":"~/api/alps_.net_api.InterfaceSubject.html"},"obj/api/alps_.net_api.IPayloadDataObjectDefinition.yml":{"~/obj/api/alps_.net_api.IPayloadDataObjectDefinition.yml":"~/api/alps_.net_api.IPayloadDataObjectDefinition.html"},"obj/api/alps_.net_api.IPayloadDescription.yml":{"~/obj/api/alps_.net_api.IPayloadDescription.yml":"~/api/alps_.net_api.IPayloadDescription.html"},"obj/api/alps_.net_api.ISendFunction.yml":{"~/obj/api/alps_.net_api.ISendFunction.yml":"~/api/alps_.net_api.ISendFunction.html"},"obj/api/alps_.net_api.ISendingFailedCondition.yml":{"~/obj/api/alps_.net_api.ISendingFailedCondition.yml":"~/api/alps_.net_api.ISendingFailedCondition.html"},"obj/api/alps_.net_api.ISendingFailedTransition.yml":{"~/obj/api/alps_.net_api.ISendingFailedTransition.yml":"~/api/alps_.net_api.ISendingFailedTransition.html"},"obj/api/alps_.net_api.ISendState.yml":{"~/obj/api/alps_.net_api.ISendState.yml":"~/api/alps_.net_api.ISendState.html"},"obj/api/alps_.net_api.ITimeBasedReminderTransition.yml":{"~/obj/api/alps_.net_api.ITimeBasedReminderTransition.yml":"~/api/alps_.net_api.ITimeBasedReminderTransition.html"},"obj/api/alps_.net_api.ITimeBasedReminderTransitionCondition.yml":{"~/obj/api/alps_.net_api.ITimeBasedReminderTransitionCondition.yml":"~/api/alps_.net_api.ITimeBasedReminderTransitionCondition.html"},"obj/api/alps_.net_api.ITimerTransition.yml":{"~/obj/api/alps_.net_api.ITimerTransition.yml":"~/api/alps_.net_api.ITimerTransition.html"},"obj/api/alps_.net_api.ITimerTransitionCondition.yml":{"~/obj/api/alps_.net_api.ITimerTransitionCondition.yml":"~/api/alps_.net_api.ITimerTransitionCondition.html"},"obj/api/alps_.net_api.MandatoryToEndChoiceSegment.yml":{"~/obj/api/alps_.net_api.MandatoryToEndChoiceSegment.yml":"~/api/alps_.net_api.MandatoryToEndChoiceSegment.html"},"obj/api/alps_.net_api.MandatoryToStartChoiceSegment.yml":{"~/obj/api/alps_.net_api.MandatoryToStartChoiceSegment.yml":"~/api/alps_.net_api.MandatoryToStartChoiceSegment.html"},"obj/api/alps_.net_api.MessageExchange.yml":{"~/obj/api/alps_.net_api.MessageExchange.yml":"~/api/alps_.net_api.MessageExchange.html"},"obj/api/alps_.net_api.MessageExchangeCondition.yml":{"~/obj/api/alps_.net_api.MessageExchangeCondition.yml":"~/api/alps_.net_api.MessageExchangeCondition.html"},"obj/api/alps_.net_api.PassProcessModell.yml":{"~/obj/api/alps_.net_api.PassProcessModell.yml":"~/api/alps_.net_api.PassProcessModell.html"},"obj/api/alps_.net_api.PayloadDataObjectDefinition.yml":{"~/obj/api/alps_.net_api.PayloadDataObjectDefinition.yml":"~/api/alps_.net_api.PayloadDataObjectDefinition.html"},"obj/api/alps_.net_api.PayloadDescription.yml":{"~/obj/api/alps_.net_api.PayloadDescription.yml":"~/api/alps_.net_api.PayloadDescription.html"},"obj/api/alps_.net_api.ReceiveFunction.yml":{"~/obj/api/alps_.net_api.ReceiveFunction.yml":"~/api/alps_.net_api.ReceiveFunction.html"},"obj/api/alps_.net_api.StandartPASSState.yml":{"~/obj/api/alps_.net_api.StandartPASSState.yml":"~/api/alps_.net_api.StandartPASSState.html"},"obj/api/alps_.net_api.StartSubject.yml":{"~/obj/api/alps_.net_api.StartSubject.yml":"~/api/alps_.net_api.StartSubject.html"},"obj/api/alps_.net_api.State.yml":{"~/obj/api/alps_.net_api.State.yml":"~/api/alps_.net_api.State.html"},"obj/api/alps_.net_api.StateReference.yml":{"~/obj/api/alps_.net_api.StateReference.yml":"~/api/alps_.net_api.StateReference.html"},"obj/api/alps_.net_api.UserCancelTransition.yml":{"~/obj/api/alps_.net_api.UserCancelTransition.yml":"~/api/alps_.net_api.UserCancelTransition.html"},"obj/api/alps_.net_api.XSDDataTypeDefintion.yml":{"~/obj/api/alps_.net_api.XSDDataTypeDefintion.yml":"~/api/alps_.net_api.XSDDataTypeDefintion.html"},"obj/api/alps_.net_api.YearMonthTimerTransition.yml":{"~/obj/api/alps_.net_api.YearMonthTimerTransition.yml":"~/api/alps_.net_api.YearMonthTimerTransition.html"},"toc.yml":{"~/toc.yml":"~/toc.html"},"obj/api/toc.yml":{"~/obj/api/toc.yml":"~/api/toc.html"},"articles/toc.md":{"~/articles/toc.md":"~/articles/toc.html"}} | Ecere Projects | 3 | NicoBaumann454/alsp.net.api | alps .net api/obj/.cache/build/aglw3apg.sou/baglonic.epj | [
"MIT"
] |
-- @shouldWarnWith WarningParsingModule
module Main where
class R (a :: # Type)
| PureScript | 2 | andys8/purescript | tests/purs/warning/DeprecatedRowKindSyntax.purs | [
"BSD-3-Clause"
] |
(*** This file is part of Lem. eth-isabelle project just uses it. See lem-license. ***)
(*========================================================================*)
(* Lem *)
(* *)
(* Dominic Mulligan, University of Cambridge *)
(* Francesco Zappa Nardelli, INRIA Paris-Rocquencourt *)
(* Gabriel Kerneis, University of Cambridge *)
(* Kathy Gray, University of Cambridge *)
(* Peter Boehm, University of Cambridge (while working on Lem) *)
(* Peter Sewell, University of Cambridge *)
(* Scott Owens, University of Kent *)
(* Thomas Tuerk, University of Cambridge *)
(* *)
(* The Lem sources are copyright 2010-2013 *)
(* by the UK authors above and Institut National de Recherche en *)
(* Informatique et en Automatique (INRIA). *)
(* *)
(* All files except ocaml-lib/pmap.{ml,mli} and ocaml-libpset.{ml,mli} *)
(* are distributed under the license below. The former are distributed *)
(* under the LGPLv2, as in the LICENSE file. *)
(* *)
(* *)
(* Redistribution and use in source and binary forms, with or without *)
(* modification, are permitted provided that the following conditions *)
(* are met: *)
(* 1. Redistributions of source code must retain the above copyright *)
(* notice, this list of conditions and the following disclaimer. *)
(* 2. Redistributions in binary form must reproduce the above copyright *)
(* notice, this list of conditions and the following disclaimer in the *)
(* documentation and/or other materials provided with the distribution. *)
(* 3. The names of the authors may not be used to endorse or promote *)
(* products derived from this software without specific prior written *)
(* permission. *)
(* *)
(* THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS *)
(* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED *)
(* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE *)
(* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY *)
(* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL *)
(* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE *)
(* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS *)
(* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER *)
(* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR *)
(* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN *)
(* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *)
(*========================================================================*)
(* header{* Mappings of Syntax needed by Lem *} *)
theory "Lem"
imports
Main
LemExtraDefs
"~~/src/HOL/Map"
"~~/src/HOL/Library/Code_Target_Numeral"
begin
type_synonym numeral = nat
subsection{* Finite Maps *}
abbreviation (input) "map_find k m \<equiv> the (m k)"
abbreviation (input) "map_update k v m \<equiv> m (k \<mapsto> v)"
abbreviation (input) "map_remove k m \<equiv> m |` (- {k})"
abbreviation (input) "map_any P m \<equiv> \<exists> (k, v) \<in> map_to_set m. P k v"
abbreviation (input) "map_all P m \<equiv> \<forall> (k, v) \<in> map_to_set m. P k v"
subsection{* Lists *}
abbreviation (input) "list_mem e l \<equiv> (e \<in> set l)"
abbreviation (input) "list_forall P l \<equiv> (\<forall>e\<in>set l. P e)"
abbreviation (input) "list_exists P l \<equiv> (\<exists>e\<in>set l. P e)"
abbreviation (input) "list_unzip l \<equiv> (map fst l, map snd l)"
subsection{* Sets *}
abbreviation (input) "set_filter P (s::'a set) \<equiv> {x \<in> s. P x}"
abbreviation (input) "set_bigunion S \<equiv> \<Union> S"
abbreviation (input) "set_biginter S \<equiv> \<Inter> S"
subsection{* Natural numbers *}
subsection{* Integers *}
subsection {* Dummy *}
definition bitwise_xor :: "nat \<Rightarrow> nat \<Rightarrow> nat" where
"bitwise_xor x y = undefined"
definition num_asr :: "nat \<Rightarrow> nat \<Rightarrow> nat" where
"num_asr n m = undefined"
definition num_lsl :: "nat \<Rightarrow> nat \<Rightarrow> nat" where
"num_lsl n m = undefined"
definition bitwise_or :: "nat \<Rightarrow> nat \<Rightarrow> nat" where
"bitwise_or n m = undefined"
definition bitwise_not :: "nat \<Rightarrow> nat" where
"bitwise_not n = undefined"
definition bitwise_and :: "nat \<Rightarrow> nat \<Rightarrow> nat" where
"bitwise_and n m = undefined"
end
| Isabelle | 4 | pirapira/eth-isabelle | lem/Lem.thy | [
"Apache-2.0"
] |
# culture="en-US"
ConvertFrom-StringData @'
messageDate = Today is
d0 = Sunday
d1 = Monday
d2 = Tuesday
d3 = Wednesday
d4 = Thursday
d5 = Friday
d6 = Saturday
'@
| PowerShell | 3 | Jellyfrog/PowerShell | test/powershell/Modules/Microsoft.PowerShell.Utility/assets/en-US/localized.psd1 | [
"MIT"
] |
USING: arrays definitions fuel.xref fuel.xref.private io.pathnames kernel math
sequences sets tools.test ;
QUALIFIED: tools.crossref
IN: fuel.xref.tests
{ t } [
"fuel" apropos-xref empty? not
] unit-test
{ t } [
"fuel" vocab-xref length 2 =
] unit-test
{ { } } [
"i-dont-exist!" callees-xref
] unit-test
: random-word ( -- )
3 dup 2drop
3 1array drop ;
{ 2 } [
\ random-word tools.crossref:uses format-xrefs group-xrefs
members length
] unit-test
{ f f } [
\ drop where normalize-loc
] unit-test
{ t t } [
\ where where normalize-loc [ absolute-path? ] [ integer? ] bi*
] unit-test
| Factor | 3 | alex-ilin/factor | extra/fuel/xref/xref-tests.factor | [
"BSD-2-Clause"
] |
// Copyright 2011 Google Inc. All Rights Reserved.
//
// Use of this source code is governed by a BSD-style license
// that can be found in the COPYING file in the root of the source
// tree. An additional intellectual property rights grant can be found
// in the file PATENTS. All contributing project authors may
// be found in the AUTHORS file in the root of the source tree.
// -----------------------------------------------------------------------------
//
// Quantize levels for specified number of quantization-levels ([2, 256]).
// Min and max values are preserved (usual 0 and 255 for alpha plane).
//
// Author: Skal ([email protected])
#include <assert.h>
#include "src/utils/quant_levels_utils.h"
#define NUM_SYMBOLS 256
#define MAX_ITER 6 // Maximum number of convergence steps.
#define ERROR_THRESHOLD 1e-4 // MSE stopping criterion.
// -----------------------------------------------------------------------------
// Quantize levels.
int QuantizeLevels(uint8_t* const data, int width, int height,
int num_levels, uint64_t* const sse) {
int freq[NUM_SYMBOLS] = { 0 };
int q_level[NUM_SYMBOLS] = { 0 };
double inv_q_level[NUM_SYMBOLS] = { 0 };
int min_s = 255, max_s = 0;
const size_t data_size = height * width;
int i, num_levels_in, iter;
double last_err = 1.e38, err = 0.;
const double err_threshold = ERROR_THRESHOLD * data_size;
if (data == NULL) {
return 0;
}
if (width <= 0 || height <= 0) {
return 0;
}
if (num_levels < 2 || num_levels > 256) {
return 0;
}
{
size_t n;
num_levels_in = 0;
for (n = 0; n < data_size; ++n) {
num_levels_in += (freq[data[n]] == 0);
if (min_s > data[n]) min_s = data[n];
if (max_s < data[n]) max_s = data[n];
++freq[data[n]];
}
}
if (num_levels_in <= num_levels) goto End; // nothing to do!
// Start with uniformly spread centroids.
for (i = 0; i < num_levels; ++i) {
inv_q_level[i] = min_s + (double)(max_s - min_s) * i / (num_levels - 1);
}
// Fixed values. Won't be changed.
q_level[min_s] = 0;
q_level[max_s] = num_levels - 1;
assert(inv_q_level[0] == min_s);
assert(inv_q_level[num_levels - 1] == max_s);
// k-Means iterations.
for (iter = 0; iter < MAX_ITER; ++iter) {
double q_sum[NUM_SYMBOLS] = { 0 };
double q_count[NUM_SYMBOLS] = { 0 };
int s, slot = 0;
// Assign classes to representatives.
for (s = min_s; s <= max_s; ++s) {
// Keep track of the nearest neighbour 'slot'
while (slot < num_levels - 1 &&
2 * s > inv_q_level[slot] + inv_q_level[slot + 1]) {
++slot;
}
if (freq[s] > 0) {
q_sum[slot] += s * freq[s];
q_count[slot] += freq[s];
}
q_level[s] = slot;
}
// Assign new representatives to classes.
if (num_levels > 2) {
for (slot = 1; slot < num_levels - 1; ++slot) {
const double count = q_count[slot];
if (count > 0.) {
inv_q_level[slot] = q_sum[slot] / count;
}
}
}
// Compute convergence error.
err = 0.;
for (s = min_s; s <= max_s; ++s) {
const double error = s - inv_q_level[q_level[s]];
err += freq[s] * error * error;
}
// Check for convergence: we stop as soon as the error is no
// longer improving.
if (last_err - err < err_threshold) break;
last_err = err;
}
// Remap the alpha plane to quantized values.
{
// double->int rounding operation can be costly, so we do it
// once for all before remapping. We also perform the data[] -> slot
// mapping, while at it (avoid one indirection in the final loop).
uint8_t map[NUM_SYMBOLS];
int s;
size_t n;
for (s = min_s; s <= max_s; ++s) {
const int slot = q_level[s];
map[s] = (uint8_t)(inv_q_level[slot] + .5);
}
// Final pass.
for (n = 0; n < data_size; ++n) {
data[n] = map[data[n]];
}
}
End:
// Store sum of squared error if needed.
if (sse != NULL) *sse = (uint64_t)err;
return 1;
}
| C | 4 | thisisgopalmandal/opencv | 3rdparty/libwebp/src/utils/quant_levels_utils.c | [
"BSD-3-Clause"
] |
module lineup(num, space) {
for (i = [0 : num-1])
translate([ space*i, 0, 0 ]) child(0);
}
lineup(2, 65) sphere(30); | OpenSCAD | 4 | heristhesiya/OpenJSCAD.org | packages/io/scad-deserializer/tests/modules/modulesChildEx1.scad | [
"MIT"
] |
@0xd5753aeadc144c23;
using TestOverride = import "test-default-parent-module-override.capnp";
struct Foo {
s @0 :Text;
b @1 :TestOverride.Baz;
}
struct Bar {
f @0 :Foo;
}
| Cap'n Proto | 2 | tomkris/capnproto-rust | capnpc/test/test-default-parent-module.capnp | [
"MIT"
] |
^:clj (ns c2.svg
(:use [c2.core :only [unify]]
[c2.maths :only [Pi Tau radians-per-degree
sin cos mean]]))
^:cljs (ns c2.svg
(:use [c2.core :only [unify]]
[c2.maths :only [Pi Tau radians-per-degree
sin cos mean]])
(:require [c2.dom :as dom]))
;;Stub for float fn, which does not exist on cljs runtime
^:cljs (def float identity)
(defn ->xy
"Convert coordinates (potentially map of `{:x :y}`) to 2-vector."
[coordinates]
(cond
(and (vector? coordinates) (= 2 (count coordinates))) coordinates
(map? coordinates) [(:x coordinates) (:y coordinates)]))
| Clojure | 5 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/Clojure/svg.cljx | [
"MIT"
] |
description: Resident 1 trying to update Resident 2 age
url: /v1/query
status: 200
headers:
X-Hasura-Role: resident
X-Hasura-Resident-Id: '1'
# affects zero rows
response:
returning: []
affected_rows: 0
query:
type: insert
args:
table: resident
objects:
- id: 1
name: Resident 2
age: 23
on_conflict:
constraint: resident_name_key
action: update
returning:
- id
- name
- age
| YAML | 3 | gh-oss-contributor/graphql-engine-1 | server/tests-py/queries/v1/insert/permissions/resident_1_modifies_resident_2_upsert.yaml | [
"Apache-2.0",
"MIT"
] |
# @package layer_model_helper
# Module caffe2.python.layer_model_helper
from caffe2.python import core, model_helper, schema, scope, utils, muji
from caffe2.python.modeling.parameter_info import (
ParameterInfo,
)
from caffe2.python.modeling.parameter_sharing import (
parameter_sharing_context,
)
from caffe2.python.modeling.net_modifier import NetModifier
from caffe2.python.optimizer import get_param_device, Optimizer
from caffe2.python.regularizer import Regularizer, RegularizationBy
from caffe2.python.layers import layers
from future.utils import viewitems, viewvalues
import logging
import numpy as np
import copy
logger = logging.getLogger(__name__)
class LayerModelHelper(model_helper.ModelHelper):
"""
Model helper for building models on top of layers abstractions.
Each layer is the abstraction that is higher level than Operator. Layer
is responsible for ownership of it's own parameters and can easily be
instantiated in multiple nets possible with different sets of ops.
As an example: one can easily instantiate predict and train nets from
the same set of layers, where predict net will have subset of the
operators from train net.
"""
def __init__(self, name, input_feature_schema, trainer_extra_schema,
keep_blobs=False,
use_attribution=True):
''' TODO(amalevich): more documnetation on input args
use_attribution:
if True, will generate the atrribution net for feature importance
calculation; Need to turn it to false when FC is quantized as FP16
This attribute access will be consistent with MTML model.
'''
super(LayerModelHelper, self).__init__(name=name)
self._layer_names = set()
self._layers = []
self._param_to_shape = {}
# seed default
self._seed = None
self._sequence_seed = True
# optimizer bookkeeping
self.param_to_optim = {}
self.param_to_reg = {}
self._default_optimizer = None
self._loss = None
self._prediction = []
self._output_schema = None
self._post_grad_net_modifiers = []
self._final_net_modifiers = []
# breakdown map; breakdown features are categorical (like dense) but not
# necessarily used to represent data for training
self._breakdown_map = None
# Connect Schema to self.net. That particular instance of schmea will be
# use for generation of the Layers across the network and would be used
# for connection with Readers.
self._input_feature_schema = schema.NewRecord(
self.net,
input_feature_schema
) if not keep_blobs else input_feature_schema.clone()
self._trainer_extra_schema = schema.NewRecord(
self.net,
trainer_extra_schema
) if not keep_blobs else trainer_extra_schema.clone()
self._metrics_schema = schema.Struct()
self._preproc_output_schema = None
self._init_global_constants()
self.param_init_net = self.create_init_net('param_init_net')
self._initialize_params = True
self._transfer_learning_blob_name_mappings = None
# additional (hard-coded) diagnose_options to report based on the model
# TODO(xlwang): it's hack!
self.ad_hoc_diagnose_blobs_and_operations = []
self.ad_hoc_plot_blobs = []
self.use_attribution = use_attribution
def clear_output_schema(self):
self._output_schema = None
def set_initialize_params(self, initialize_params):
self._initialize_params = initialize_params
def add_metric_field(self, name, value):
assert name not in self._metrics_schema.fields, (
"Try to add metric field twice: {}".format(name))
self._metrics_schema = self._metrics_schema + schema.Struct(
(name, value)
)
# an empty white_set will skip everything
def filter_metrics_schema(self, white_set):
logger.info("Filter metric schema with white_set {}".format(white_set))
field_names = self._metrics_schema.field_names()
for name in field_names:
if name not in white_set:
self._metrics_schema = self._metrics_schema - schema.Struct((name, schema.Scalar()))
def add_ad_hoc_plot_blob(self, blob, dtype=None):
assert isinstance(
blob, (str, core.BlobReference)
), "expect type str or BlobReference, but got {}".format(type(blob))
dtype = dtype or (np.float, (1, ))
self.add_metric_field(str(blob), schema.Scalar(dtype, blob))
self.ad_hoc_plot_blobs.append(blob)
@staticmethod
def _get_global_constant_initializer_op(
blob_name, array=None, dtype=None, initializer=None
):
# to add a global constant to model, one first need to get the
# initializer
if array is not None:
assert initializer is None,\
"Only one from array and initializer should be specified"
if dtype is None:
array = np.array(array)
else:
array = np.array(array, dtype=dtype)
# TODO: make GivenTensor generic
op_name = None
if array.dtype == np.int32:
op_name = 'GivenTensorIntFill'
elif array.dtype == np.int64:
op_name = 'GivenTensorInt64Fill'
elif array.dtype == np.str:
op_name = 'GivenTensorStringFill'
elif array.dtype == np.bool:
op_name = 'GivenTensorBoolFill'
else:
op_name = 'GivenTensorFill'
def initializer(blob_name):
return core.CreateOperator(
op_name, [],
blob_name,
shape=array.shape,
values=array.flatten().tolist()
)
else:
assert initializer is not None
initializer_op = initializer(blob_name)
return initializer_op
def add_global_constant(
self, name, array=None, dtype=None, initializer=None
):
assert isinstance(name, str), (
'name should be a string as we are using it as map key')
# This is global namescope for constants. They will be created in all
# init_nets and there should be very few of them.
assert name not in self.global_constants, \
"%s already added in global_constants" % name
blob_name = self.net.NextBlob(name)
self.global_constants[name] = blob_name
initializer_op = LayerModelHelper._get_global_constant_initializer_op(
blob_name, array, dtype, initializer
)
assert blob_name not in self.global_constant_initializers, \
"there is already a initializer op associated with blob %s" % \
blob_name
self.global_constant_initializers[blob_name] = initializer_op
return blob_name
def maybe_add_global_constant(self, name, *args, **kwargs):
# To ad hoc add new global constants without duplication
# if the name was already registered in global_constants, it will not be
# added even if the intended value is different from its original value
if name in self.global_constants:
blob_name = self.global_constants[name]
initializer_op = \
LayerModelHelper._get_global_constant_initializer_op(
blob_name, *args, **kwargs
)
# check if the original initializer is the same as the one intended
# now
assert utils.OpAlmostEqual(
initializer_op,
self.global_constant_initializers[blob_name],
'debug_info'
), \
"conflict initializers for global constant %s, " \
"previous %s, now %s" % (
blob_name, str(initializer_op),
str(self.global_constant_initializers[blob_name]))
return blob_name
return self.add_global_constant(name, *args, **kwargs)
def _init_global_constants(self):
self.global_constants = {}
self.global_constant_initializers = {}
self.add_global_constant('ONE', 1.0)
self.add_global_constant('NAN', float("NaN"))
self.add_global_constant('ZERO', 0.0)
self.add_global_constant('ZERO_RANGE', [0, 0], dtype='int32')
def _add_global_constants(self, init_net):
for initializer_op in viewvalues(self.global_constant_initializers):
init_net._net.op.extend([initializer_op])
def create_init_net(self, name):
init_net = core.Net(name)
self._add_global_constants(init_net)
return init_net
def _validate_param_shape(self, param_name, shape):
if param_name not in self._param_to_shape:
return
ref_shape = self._param_to_shape[param_name]
if shape != ref_shape:
raise ValueError(
"Got inconsistent shapes between shared parameters "
"when trying to map a blob in scope {0} to {1}. ref_shape : "
" {2}, shape : {3}".format(
scope.CurrentNameScope(), param_name, ref_shape, shape)
)
def _validate_param_optim(self, param_name, optim):
# there are three possible values for optim:
# 1) None (which will use self._default_optimizer after this layer is instantiated)
# 2) self.NoOptim
# 3) an instance of Optimizer class such as AdagradOptimizer
# this implies this parameter is not shared with any other parameter so far
if param_name not in self.param_to_optim:
return
logger.info("{} shares the same parameter with another parameter. "
"Validating if the same optimizer has been specified for them.".format(
param_name,
))
ref_optim = self.param_to_optim[param_name]
if optim is None:
assert ref_optim == self._default_optimizer, (
"Optim for {} is None which will fall back to use default_optimizer. "
"However, the optimizer that has been specified for this shared parameter "
"is {} which is different from default_optimizer {}. "
"Please check the optimizers specified for parameters shared "
"with {} and the default_optimizer to ensure the consistency.".format(
param_name, ref_optim, self._default_optimizer, param_name
)
)
elif optim == self.NoOptim:
assert ref_optim == self.NoOptim, (
"Optim for {} is NoOptim. However, the optimizer for the parameters "
"shared with {} is {} which is different from NoOptim. "
"Please check the optimizer specified for other parameters in the "
"shared group to ensure consistency.".format(
param_name, param_name, ref_optim
)
)
elif isinstance(optim, Optimizer):
assert isinstance(ref_optim, Optimizer), (
"Optim for {} is an instance of Optimizer. However, the optimizer "
"for the parameters shared with {} is {} which is not an instance "
"of Optimizer. Please check the optimizer specified for other "
" parameters in the shared group to ensure consistency.".format(
param_name, param_name, ref_optim, optim
)
)
assert type(optim) is type(ref_optim) and optim.attributes == ref_optim.attributes, (
"Optim for {} is an instance of Optimizer. However, the optimizer "
"for the parameters shared with {} is {}. "
"This optimizer either doesn't have the same type as the current optimizer: "
"{} vs {}, or its attributes such as learning rate are different from "
"that of current optimizer which is {} vs {}. "
"Please check the optimizer specified for other parameters in the "
"shared group to ensure consistency.".format(
param_name, param_name, ref_optim, type(optim), type(ref_optim), optim.attributes, ref_optim.attributes
)
)
else:
raise ValueError("optim should be either None, NoOptim, or an instance of Optimizer, Got {} ".format(optim))
def create_param(self, param_name, shape, initializer, optimizer=None,
ps_param=None, regularizer=None):
if isinstance(param_name, core.BlobReference):
param_name = str(param_name)
elif isinstance(param_name, str):
# Parameter name will be equal to current Namescope that got
# resolved with the respect of parameter sharing of the scopes.
param_name = parameter_sharing_context.get_parameter_name(
param_name)
else:
raise ValueError("Unsupported type for param_name")
param_blob = core.BlobReference(param_name)
if len(initializer) == 1:
init_op_args = {}
else:
assert len(initializer) == 2
init_op_args = copy.deepcopy(initializer[1])
if shape is not None:
assert 'shape' not in init_op_args
init_op_args.update({'shape': shape})
initializer_op = None
if self._initialize_params:
initializer_op = core.CreateOperator(
initializer[0],
[],
param_blob,
**init_op_args
)
param = layers.LayerParameter(
parameter=param_blob,
initializer=initializer_op,
optimizer=optimizer,
ps_param=ps_param,
regularizer=regularizer
)
self._validate_param_shape(param_name, shape)
self._validate_param_optim(param_name, optimizer)
self._param_to_shape[param_name] = shape
return param
def next_layer_name(self, prefix):
base_name = core.ScopedName(prefix)
name = base_name
index = 0
while name in self._layer_names:
name = base_name + '_auto_' + str(index)
index += 1
self._layer_names.add(name)
return name
def add_layer(self, layer):
self._layers.append(layer)
for param in layer.get_parameters():
assert isinstance(param.parameter, core.BlobReference)
self.param_to_optim[str(param.parameter)] = \
param.optimizer or self.default_optimizer
self.params.append(param.parameter)
if isinstance(param, layers.LayerParameter):
logger.info("Add parameter regularizer {0}".format(param.parameter))
self.param_to_reg[param.parameter] = param.regularizer
elif isinstance(param, ParameterInfo):
# TODO:
# Currently, LSTM and RNNcells, which use ModelHelper instead of
# LayerModelHelper as super class, are called in pooling_methods
# In ModelHelper, regularization is not supported in create_param
# We will unify the way of create_param of ModelHelper and
# LayerModelHelper in the future.
logger.info('regularization is unsupported for ParameterInfo object')
else:
raise ValueError(
'unknown object type besides ParameterInfo and LayerParameter: {}'
.format(param)
)
# The primary value of adding everything to self.net - generation of the
# operators right away, i.e. if error happens it'll be detected
# immediately. Other than this - create_x_net should be called.
layer.add_operators(self.net, self.param_init_net)
return layer.output_schema
def get_parameter_blobs(self):
param_blobs = []
for layer in self._layers:
for param in layer.get_parameters():
param_blobs.append(param.parameter)
return param_blobs
def add_post_grad_net_modifiers(self, modifier):
assert modifier not in self._post_grad_net_modifiers,\
"{0} is already in {1}".format(modifier, self._post_grad_net_modifiers)
assert isinstance(modifier, NetModifier),\
"{} has to be a NetModifier instance".format(modifier)
self._post_grad_net_modifiers.append(modifier)
def add_final_net_modifiers(self, modifier):
assert modifier not in self._final_net_modifiers,\
"{0} is already in {1}".format(modifier, self._final_net_modifiers)
assert isinstance(modifier, NetModifier),\
"{} has to be a NetModifier instance".format(modifier)
self._final_net_modifiers.append(modifier)
@property
def seed(self):
return self._seed
@property
def sequence_seed(self):
return self._sequence_seed
def store_seed(self, seed, sequence_seed=True):
# Store seed config that will be applied to each op in the net.
self._seed = seed
# If sequence_seed is True, the i-th op has rand_seed=`seed + i`
self._sequence_seed = sequence_seed
def apply_seed(self, net):
if self._seed:
net.set_rand_seed(self._seed, self._sequence_seed)
@property
def default_optimizer(self):
return self._default_optimizer
@default_optimizer.setter
def default_optimizer(self, optimizer):
self._default_optimizer = optimizer
@property
def input_feature_schema(self):
return self._input_feature_schema
@property
def trainer_extra_schema(self):
return self._trainer_extra_schema
@property
def metrics_schema(self):
"""
Returns the schema that represents model output that should be used for
metric reporting.
During the training/evaluation this schema will be appended to the
schema that represents model output.
"""
return self._metrics_schema
@property
def output_schema(self):
assert self._output_schema is not None
return self._output_schema
@output_schema.setter
def output_schema(self, schema):
assert self._output_schema is None
self._output_schema = schema
@property
def preproc_output_schema(self):
assert self._preproc_output_schema is not None
return self._preproc_output_schema
@preproc_output_schema.setter
def preproc_output_schema(self, schema):
assert self._preproc_output_schema is None
self._preproc_output_schema = schema
@property
def prediction(self):
assert self._prediction, "model prediction is empty"
return self._prediction
def add_prediction(self, prediction, weight=1.0):
assert prediction is not None, "Added prediction should not be None"
self._prediction.append((prediction, weight))
@property
def transfer_learning_blob_name_mappings(self):
return self._transfer_learning_blob_name_mappings
@transfer_learning_blob_name_mappings.setter
def transfer_learning_blob_name_mappings(self, blob_name_mappings):
assert blob_name_mappings is not None, "Transfer learning blob name mappings should not be None"
self._transfer_learning_blob_name_mappings = blob_name_mappings
@property
def loss(self):
assert self._loss is not None
return self._loss
@loss.setter
def loss(self, loss):
assert self._loss is None
self._loss = loss
def has_loss(self):
return self._loss is not None
def add_loss(self, loss, name='unnamed'):
assert loss is not None, "Added loss should not be None"
assert isinstance(loss, schema.Scalar) or isinstance(
loss, schema.Struct
), "Added loss should be a scalar or a struct"
if self._loss is None:
self._loss = schema.Struct((name, loss))
else:
# loss could've been set through model.loss directly which could be
# a scalar
if isinstance(self._loss, schema.Scalar):
self._loss = schema.Struct(('unnamed', self._loss))
prefix_base = name + '_auto_'
index = 0
prefix = name
while prefix in self._loss:
prefix = prefix_base + str(index)
index += 1
loss_struct = schema.Struct((prefix, loss))
self._loss = self._loss + loss_struct
def add_output_schema(self, name, value):
assert value is not None, \
'Added output schema {} should not be None'.format(name)
assert isinstance(value, schema.Scalar) or \
isinstance(value, schema.Struct), \
'Added output schema {} should be a scalar or a struct.\n\
Now it is {}.'.format(name, type(value))
if self._output_schema is None: # be the first field
self._output_schema = schema.Struct((name, value))
else: # merge with other fields
assert name not in self._output_schema.fields, \
'Output Schema Field {} already exists'.format(name)
self._output_schema = \
self._output_schema + schema.Struct((name, value))
def add_trainer_extra_schema(self, trainer_extra_schema):
trainer_extra_record = schema.NewRecord(self.net, trainer_extra_schema)
self._trainer_extra_schema += trainer_extra_record
def __getattr__(self, layer):
def is_functional_layer(layer):
if core.IsOperator(layer):
return True
elif layer.startswith('FunctionalLayer'):
return True
else:
return False
def resolve_functional_layer(layer):
if core.IsOperator(layer):
return layer
elif layer.startswith('FunctionalLayer'):
return layer[len('FunctionalLayer'):]
else:
raise ValueError(
'%s cannot be resolved as functional layer' % layer
)
if layer.startswith('__'):
raise AttributeError(layer)
# TODO(amalevich): Add add support for ifbpy inline documentation
if layers.layer_exists(layer):
def wrapper(*args, **kwargs):
new_layer = layers.create_layer(layer, self, *args, **kwargs)
if kwargs.get("output_to_metrics", False):
new_layer.export_output_for_metrics()
if kwargs.get("params_to_metrics", False):
new_layer.export_params_for_metrics()
return self.add_layer(new_layer)
return wrapper
elif is_functional_layer(layer):
# TODO(xlwang): Desginated layer shadows the usage of an op as a
# single layer. To enforce using an op (e.g. Split) as functional
# layer, one can call 'model.FunctionalLayerSplit'
layer = resolve_functional_layer(layer)
def wrapper(*args, **kwargs):
def apply_operator(net, in_record, out_record, **kwargs):
# TODO(amalevich): Switch to net.operator as soon as it gets
# landed
net.__getattr__(layer)(in_record.field_blobs(),
out_record.field_blobs(),
**kwargs)
if 'name' not in kwargs:
kwargs['name'] = layer
new_layer = layers.create_layer(
'Functional',
self, *args, function=apply_operator,
**kwargs
)
if kwargs.get("output_to_metrics", False):
new_layer.export_output_for_metrics()
if kwargs.get("params_to_metrics", False):
new_layer.export_params_for_metrics()
return self.add_layer(new_layer)
return wrapper
else:
# this needs to be an AttributeError to fit hasattr semantics
raise AttributeError(
"Trying to create non-registered layer: {}".format(layer))
@property
def layers(self):
return self._layers
def apply_regularizers_on_loss(
self,
train_net,
train_init_net,
blob_to_device=None,
):
logger.info("apply regularizer on loss")
for param, regularizer in viewitems(self.param_to_reg):
if regularizer is None:
continue
logger.info("add regularizer {0} for param {1} to loss".format(regularizer, param))
assert isinstance(regularizer, Regularizer)
added_loss_blob = regularizer(train_net, train_init_net, param, grad=None,
by=RegularizationBy.ON_LOSS)
logger.info(added_loss_blob)
if added_loss_blob is not None:
self.add_loss(
schema.Scalar(blob=added_loss_blob),
str(added_loss_blob)
)
def apply_regularizers_after_optimizer(
self,
train_net,
train_init_net,
grad_map,
blob_to_device=None,
):
logger.info("apply regularizer after optimizer")
CPU = muji.OnCPU()
# if given, blob_to_device is a map from blob to device_option
blob_to_device = blob_to_device or {}
for param, regularizer in viewitems(self.param_to_reg):
if regularizer is None:
continue
assert isinstance(regularizer, Regularizer)
logger.info("add regularizer {0} for param {1} to optimizer".format(regularizer, param))
device = get_param_device(
param,
grad_map.get(str(param)),
param_to_device=blob_to_device,
default_device=CPU,
)
with core.DeviceScope(device):
regularizer(
train_net, train_init_net, param, grad=grad_map.get(str(param)),
by=RegularizationBy.AFTER_OPTIMIZER
)
def apply_post_grad_net_modifiers(
self,
trainer_net,
trainer_init_net,
grad_map,
blob_to_device=None,
modify_output_record=False,
):
param_grad_map = {param: grad_map[param]
for param in self.param_to_optim.keys() if param in grad_map}
for modifier in self._post_grad_net_modifiers:
modifier(trainer_net, trainer_init_net, param_grad_map,
blob_to_device=blob_to_device,
modify_output_record=modify_output_record)
def apply_final_net_modifiers(
self,
trainer_net,
trainer_init_net,
grad_map,
blob_to_device=None,
modify_output_record=False,
):
for modifier in self._final_net_modifiers:
modifier(trainer_net, trainer_init_net, grad_map,
blob_to_device=blob_to_device,
modify_output_record=modify_output_record)
def apply_optimizers(
self,
train_net,
train_init_net,
grad_map,
blob_to_device=None,
):
CPU = muji.OnCPU()
# if given, blob_to_device is a map from blob to device_option
blob_to_device = blob_to_device or {}
for param, optimizer in viewitems(self.param_to_optim):
assert optimizer is not None, \
"default optimizer must have been set in add_layer"
# note that not all params has gradient and thus we sent None if
# gradient does not exists
device = get_param_device(
param,
grad_map.get(str(param)),
param_to_device=blob_to_device,
default_device=CPU,
)
if device is not None:
# extra info is not applicable for optimizers
del device.extra_info[:]
with core.DeviceScope(device):
optimizer(
train_net, train_init_net, param, grad_map.get(str(param)))
def _GetOne(self):
return self.global_constants['ONE']
# An optimizer which allows us to do NO optimization
def NoOptim(self, *args, **kwargs):
pass
@property
def breakdown_map(self):
return self._breakdown_map
@breakdown_map.setter
def breakdown_map(self, breakdown_map):
# TODO(xlwang): provide more rich feature information in breakdown_map;
# and change the assertion accordingly
assert isinstance(breakdown_map, dict)
assert all(isinstance(k, str) for k in breakdown_map)
assert sorted(breakdown_map.values()) == list(range(len(breakdown_map)))
self._breakdown_map = breakdown_map
| Python | 5 | Hacky-DH/pytorch | caffe2/python/layer_model_helper.py | [
"Intel"
] |
#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
float4 ApplyPivotTransform(float4 pivot, float4x4 pivotTransform, float pivotRealZ)
{
float4 transformedPivot = pivot;
float w = transformedPivot.w;
transformedPivot.xyw = (pivotTransform * float4(transformedPivot.xy, pivotRealZ, w)).xyw;
transformedPivot.z *= transformedPivot.w / w;
return transformedPivot;
}
float2 CalcLineTransformedAxisPos(float2 originalAxisPos, float2 shiftedPos, float4x4 modelView, float halfWidth)
{
float2 p = (float4(shiftedPos, 0.0, 1.0) * modelView).xy;
float2 d = p - originalAxisPos;
if (dot(d, d) != 0.0)
return originalAxisPos + normalize(d) * halfWidth;
else
return originalAxisPos;
}
float4 ApplyBillboardPivotTransform(float4 pivot, float4x4 pivotTransform, float pivotRealZ, float2 offset)
{
float logicZ = pivot.z / pivot.w;
float4 transformedPivot = pivotTransform * float4(pivot.xy, pivotRealZ, pivot.w);
float4 scale = pivotTransform * float4(1.0, -1.0, 0.0, 1.0);
return float4(transformedPivot.xy / transformedPivot.w, logicZ, 1.0) + float4(offset / scale.w * scale.x, 0.0, 0.0);
}
| Metal | 5 | kudlav/organicmaps | shaders/Metal/shaders_lib.metal | [
"Apache-2.0"
] |
exec("swigtest.start", -1);
try
x = new_Foo();
catch
swigtesterror();
end
if Foo_test(x, 1) <> 1 then swigtesterror(); end
if Foo_test(x, "Hello swig!") <> 2 then swigtesterror(); end
if Foo_test(x, 2, 3) <> 3 then swigtesterror(); end
if Foo_test(x, x) <> 30 then swigtesterror(); end
if Foo_test(x, x, 4) <> 24 then swigtesterror(); end
if Foo_test(x, x, 4, 5) <> 9 then swigtesterror(); end
exec("swigtest.quit", -1);
| Scilab | 3 | kyletanyag/LL-Smartcard | cacreader/swig-4.0.2/Examples/test-suite/scilab/overload_extend2_runme.sci | [
"BSD-3-Clause"
] |
@custom-selector :--heading h1, h2, h3, h4, h5, h6;
@custom-selector :--heading h1,h2,h3,h4,h5,h6;
@custom-selector :--heading h1 , h2 , h3 , h4 , h5 , h6 ;
@custom-selector :--heading
h1, h2, h3, h4, h5, h6;
@custom-selector
:--heading
h1,
h2,
h3,
h4,
h5,
h6;
@custom-selector
:--heading
h1
,
h2
,
h3
,
h4
,
h5
,
h6
;
@custom-selector
:--heading
h1
,
h2
,
h3
,
h4
,
h5
,
h6
;
@custom-selector :--very-very-very-very-very-very-very-very-very-long-selector-name h1, h2, h3, h4, h5, h6;
@custom-selector :--very-very-very-very-very-very-very-very-very-long-selector-name h1 + h1, h2, h3, h4, h5, h6;
@custom-selector :--very-very-very-very-very-very-very-very-very-long-selector-name .very-very-very-very-very-very-very-very-very-long-selector-name + very-very-very-very-very-very-very-very-very-long-selector-name-other, h2, h3, h4, h5, h6;
@custom-selector :--very-very-very-very-very-very-very-very-very-long-selector-name h1 h1, h2, h3, h4, h5, h6;
@custom-selector :--heading .very-very-very-very-very-very-very-very-very-very-long-class-name, .very-very-very-very-very-very-very-very-very-very-long-class-name-other;
@custom-selector :--enter :hover, :focus;
@custom-selector :--visible :global.visible;
@custom-selector :--icon i[class^='icon-'], i[class*=' icon-'];
@custom-selector :--placeholder :placehoder-shown, ::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder;
@custom-selector :--enter :matches(:hover, :focus, :active);
| CSS | 2 | fuelingtheweb/prettier | tests/css_atrule/custom-selector.css | [
"MIT"
] |
#tag Class
Protected Class Configuration
#tag Method, Flags = &h0
Sub AddChat(timestamp As Boolean, ParamArray values As Variant)
Dim js As String = "", c As Color = Colors.UI.ControlTextColor
js = js + "var scrollAfterInsert = (window.innerHeight + window.scrollY >= document.body.offsetHeight);"
js = js + "var body = document.getElementsByTagName('body')[0];"
js = js + "var line = document.createElement('div');"
If timestamp = True And Me.Timestamp <> Me.TimestampOff Then
Dim oTimestamp As New Date(), sTimestamp As String = "["
If BitAnd(Me.Timestamp, Me.TimestampShortDate) > 0 Then
sTimestamp = sTimestamp + oTimestamp.ShortDate + " "
End If
If BitAnd(Me.Timestamp, Me.TimestampAbbreviatedDate) > 0 Then
sTimestamp = sTimestamp + oTimestamp.AbbreviatedDate + " "
End If
If BitAnd(Me.Timestamp, Me.TimestampLongDate) > 0 Then
sTimestamp = sTimestamp + oTimestamp.LongDate + " "
End If
If BitAnd(Me.Timestamp, Me.TimestampShortTime) > 0 Then
If BitAnd(Me.Timestamp, Me.TimestampMilitaryTime) > 0 Then
sTimestamp = sTimestamp + Right("0" + Format(oTimestamp.Hour, "-#"), 2) + ":" _
+ Right("0" + Format(oTimestamp.Minute, "-#"), 2) + " "
Else
sTimestamp = sTimestamp + oTimestamp.ShortTime + " "
End If
End If
If BitAnd(Me.Timestamp, Me.TimestampLongTime) > 0 Then
If BitAnd(Me.Timestamp, Me.TimestampMilitaryTime) > 0 Then
sTimestamp = sTimestamp + Right("0" + Format(oTimestamp.Hour, "-#"), 2) + ":" _
+ Right("0" + Format(oTimestamp.Minute, "-#"), 2) + ":" _
+ Right("0" + Format(oTimestamp.Second, "-#"), 2) + " "
Else
sTimestamp = sTimestamp + oTimestamp.LongTime + " "
End If
End If
If Right(sTimestamp, 1) = " " Then sTimestamp = Left(sTimestamp, Len(sTimestamp) - 1)
sTimestamp = sTimestamp + "] "
js = js + "var chat = document.createElement('span');"
js = js + "chat.style.color = 'rgb(" _
+ Format(Colors.Gray.Red, "-#") + "," _
+ Format(Colors.Gray.Green, "-#") + "," _
+ Format(Colors.Gray.Blue, "-#") + ")';"
js = js + "chat.innerText = " + StringToJSON(sTimestamp) + ";"
js = js + "line.appendChild(chat);"
End If
Dim p As Pair
For Each value As Variant In values
If value.Type = Variant.TypeColor Then
c = value.ColorValue
ElseIf value.Type = Variant.TypeString Then
js = js + "var chat = document.createElement('span');"
js = js + "chat.style.color = 'rgb(" _
+ Format(c.Red, "-#") + "," _
+ Format(c.Green, "-#") + "," _
+ Format(c.Blue, "-#") + ")';"
js = js + "chat.innerText = " + StringToJSON(value.StringValue) + ";"
js = js + "chat.innerHTML = urlify(chat.innerHTML);"
js = js + "line.appendChild(chat);"
ElseIf value.Type = Variant.TypeObject And value.ObjectValue IsA Pair Then
p = Pair(value.ObjectValue)
Select Case p.Left
Case "Bold"
js = js + "var chat = document.createElement('span');"
js = js + "chat.style.color = 'rgb(" _
+ Format(c.Red, "-#") + "," _
+ Format(c.Green, "-#") + "," _
+ Format(c.Blue, "-#") + ")';"
js = js + "chat.style.fontWeight = 'bold';"
js = js + "chat.innerText = " + StringToJSON(p.Right) + ";"
js = js + "chat.innerHTML = urlify(chat.innerHTML);"
js = js + "line.appendChild(chat);"
Case "HTML"
js = js + "var chat = document.createElement('span');"
js = js + "chat.style.color = 'rgb(" _
+ Format(c.Red, "-#") + "," _
+ Format(c.Green, "-#") + "," _
+ Format(c.Blue, "-#") + ")';"
js = js + "chat.innerHTML = " + StringToJSON(p.Right) + ";"
js = js + "line.appendChild(chat);"
Case "Monospace"
js = js + "var chat = document.createElement('span');"
js = js + "chat.style.color = 'rgb(" _
+ Format(c.Red, "-#") + "," _
+ Format(c.Green, "-#") + "," _
+ Format(c.Blue, "-#") + ")';"
js = js + "chat.innerText = " + StringToJSON(p.Right) + ";"
js = js + "chat.style['font-family'] = 'monospace';"
js = js + "chat.innerHTML = urlify(chat.innerHTML);"
js = js + "line.appendChild(chat);"
Case Else
Dim e As New RuntimeException()
e.Message = "Unknown string pattern"
Raise e
End Select
End If
Next
js = js + "body.appendChild(line);"
js = js + "if (scrollAfterInsert) chat.scrollIntoView({block:""end"",behavior:""auto""});"
Me.Container.oChatOutput.ExecuteJavaScript(js)
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Sub ClearChat(Silently As Boolean)
Me.Container.oChatOutput.LoadURL("about:blank")
If Silently = False Then
Me.AddChat(True, Colors.SkyBlue, "Chat screen cleared.")
End If
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Sub Constructor()
Me.BNET = New BNETSocket()
Me.BNET.Config = Me
Me.Container = New ChatContainer()
Me.Container.Config = Me
Me.CacheChatMention = False
Me.CacheChatUnread = False
Me.CachelstUsers_View_Channel = ChatContainer.lstUsers_View_Channel_Flags
Me.CachelstUsers_View_Friends = ChatContainer.lstUsers_View_Friends_Entry
Me.CachelstUsers_View_Clan = ChatContainer.lstUsers_View_Clan_Rank
Me.CachelstUsers_View_ChannelList = ChatContainer.lstUsers_View_ChannelList_Entry
Me.CachelstUsers_View = Me.CachelstUsers_View_Channel
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Sub Destructor()
Me.BNET.Disconnect()
Me.BNET = Nil
Me.Container = Nil
End Sub
#tag EndMethod
#tag Property, Flags = &h0
AutoRejoinWhenKicked As Boolean
#tag EndProperty
#tag Property, Flags = &h0
BNET As BNETSocket
#tag EndProperty
#tag Property, Flags = &h0
BNETHost As String
#tag EndProperty
#tag Property, Flags = &h0
BNLSEnabled As Boolean
#tag EndProperty
#tag Property, Flags = &h0
BNLSHost As String
#tag EndProperty
#tag Property, Flags = &h0
BNLSVersionCheck As Boolean
#tag EndProperty
#tag Property, Flags = &h0
CacheChatMention As Boolean
#tag EndProperty
#tag Property, Flags = &h0
CacheChatUnread As Boolean
#tag EndProperty
#tag Property, Flags = &h0
CacheInputMessage As String
#tag EndProperty
#tag Property, Flags = &h0
CachelstUsers_LastView As Integer
#tag EndProperty
#tag Property, Flags = &h0
CachelstUsers_View As Integer
#tag EndProperty
#tag Property, Flags = &h0
CachelstUsers_View_Channel As Integer
#tag EndProperty
#tag Property, Flags = &h0
CachelstUsers_View_ChannelList As Integer
#tag EndProperty
#tag Property, Flags = &h0
CachelstUsers_View_Clan As Integer
#tag EndProperty
#tag Property, Flags = &h0
CachelstUsers_View_Friends As Integer
#tag EndProperty
#tag Property, Flags = &h0
CDKey As String
#tag EndProperty
#tag Property, Flags = &h0
CDKeyExpansion As String
#tag EndProperty
#tag Property, Flags = &h0
CDKeyOwner As String
#tag EndProperty
#tag Property, Flags = &h0
CDKeySpawn As Boolean
#tag EndProperty
#tag Property, Flags = &h0
ConfirmRemovingClanMembers As Boolean
#tag EndProperty
#tag Property, Flags = &h0
Container As ChatContainer
#tag EndProperty
#tag Property, Flags = &h0
CreateAccountsFirst As Boolean
#tag EndProperty
#tag Property, Flags = &h0
EmailAddress As String
#tag EndProperty
#tag Property, Flags = &h0
EnableUDP As Boolean
#tag EndProperty
#tag Property, Flags = &h0
EnableUTF8 As Boolean
#tag EndProperty
#tag Property, Flags = &h0
HomeChannel As String
#tag EndProperty
#tag Property, Flags = &h0
IgnoreBanKickUnban As Boolean
#tag EndProperty
#tag Property, Flags = &h0
Init6Protocol As Boolean
#tag EndProperty
#tag Property, Flags = &h0
Name As String
#tag EndProperty
#tag Property, Flags = &h0
Password As String
#tag EndProperty
#tag Property, Flags = &h0
PingSpoof As Integer
#tag EndProperty
#tag Property, Flags = &h0
Product As UInt32
#tag EndProperty
#tag Property, Flags = &h0
ProxyHost As String
#tag EndProperty
#tag Property, Flags = &h0
ProxyType As Byte
#tag EndProperty
#tag Property, Flags = &h0
ReconnectInterval As UInt32
#tag EndProperty
#tag Property, Flags = &h0
ShowJoinLeaveMessages As Boolean
#tag EndProperty
#tag Property, Flags = &h0
ShowUserUpdateMessages As Boolean
#tag EndProperty
#tag Property, Flags = &h0
SpamPrevention As Boolean
#tag EndProperty
#tag Property, Flags = &h0
Timestamp As Byte
#tag EndProperty
#tag Property, Flags = &h0
Username As String
#tag EndProperty
#tag Property, Flags = &h0
VerbosePackets As Boolean
#tag EndProperty
#tag Property, Flags = &h0
VersionByte As UInt32
#tag EndProperty
#tag Constant, Name = PingSpoofNegative, Type = Double, Dynamic = False, Default = \"-1", Scope = Public
#tag EndConstant
#tag Constant, Name = PingSpoofOff, Type = Double, Dynamic = False, Default = \"-2", Scope = Public
#tag EndConstant
#tag Constant, Name = PingSpoofZero, Type = Double, Dynamic = False, Default = \"0", Scope = Public
#tag EndConstant
#tag Constant, Name = ProxyHTTP, Type = Double, Dynamic = False, Default = \"&H01", Scope = Public
#tag EndConstant
#tag Constant, Name = ProxyOff, Type = Double, Dynamic = False, Default = \"&H00", Scope = Public
#tag EndConstant
#tag Constant, Name = ProxySOCKS4, Type = Double, Dynamic = False, Default = \"&H02", Scope = Public
#tag EndConstant
#tag Constant, Name = ProxySOCKS5, Type = Double, Dynamic = False, Default = \"&H03", Scope = Public
#tag EndConstant
#tag Constant, Name = TimestampAbbreviatedDate, Type = Double, Dynamic = False, Default = \"&H02", Scope = Public
#tag EndConstant
#tag Constant, Name = TimestampLongDate, Type = Double, Dynamic = False, Default = \"&H04", Scope = Public
#tag EndConstant
#tag Constant, Name = TimestampLongTime, Type = Double, Dynamic = False, Default = \"&H10", Scope = Public
#tag EndConstant
#tag Constant, Name = TimestampMilitaryTime, Type = Double, Dynamic = False, Default = \"&H20", Scope = Public
#tag EndConstant
#tag Constant, Name = TimestampOff, Type = Double, Dynamic = False, Default = \"&H00", Scope = Public
#tag EndConstant
#tag Constant, Name = TimestampShortDate, Type = Double, Dynamic = False, Default = \"&H01", Scope = Public
#tag EndConstant
#tag Constant, Name = TimestampShortTime, Type = Double, Dynamic = False, Default = \"&H08", Scope = Public
#tag EndConstant
#tag ViewBehavior
#tag ViewProperty
Name="AutoRejoinWhenKicked"
Group="Behavior"
InitialValue="0"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="BNETHost"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="BNLSEnabled"
Group="Behavior"
InitialValue="0"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="BNLSHost"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="BNLSVersionCheck"
Group="Behavior"
InitialValue="0"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="CacheChatMention"
Group="Behavior"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="CacheChatUnread"
Group="Behavior"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="CacheInputMessage"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="CachelstUsers_LastView"
Group="Behavior"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="CachelstUsers_View"
Group="Behavior"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="CachelstUsers_View_Channel"
Group="Behavior"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="CachelstUsers_View_ChannelList"
Group="Behavior"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="CachelstUsers_View_Clan"
Group="Behavior"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="CachelstUsers_View_Friends"
Group="Behavior"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="CDKey"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="CDKeyExpansion"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="CDKeyOwner"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="CDKeySpawn"
Group="Behavior"
InitialValue="0"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="ConfirmRemovingClanMembers"
Group="Behavior"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="CreateAccountsFirst"
Group="Behavior"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="EmailAddress"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="EnableUDP"
Group="Behavior"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="EnableUTF8"
Group="Behavior"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="HomeChannel"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="IgnoreBanKickUnban"
Group="Behavior"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="Index"
Visible=true
Group="ID"
InitialValue="-2147483648"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Init6Protocol"
Group="Behavior"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="Left"
Visible=true
Group="Position"
InitialValue="0"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Name"
Visible=true
Group="ID"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Password"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="PingSpoof"
Group="Behavior"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="ProxyHost"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="ShowJoinLeaveMessages"
Group="Behavior"
InitialValue="0"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="ShowUserUpdateMessages"
Group="Behavior"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="SpamPrevention"
Group="Behavior"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="Super"
Visible=true
Group="ID"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Top"
Visible=true
Group="Position"
InitialValue="0"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Username"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="VerbosePackets"
Group="Behavior"
InitialValue="0"
Type="Boolean"
#tag EndViewProperty
#tag EndViewBehavior
End Class
#tag EndClass
| REALbasic | 4 | carlbennett/BNRBot | src/Classes/Configuration.rbbas | [
"MIT"
] |
/*
* Copyright (c) 2018-2021, Andreas Kling <[email protected]>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
#include <AK/JsonValue.h>
#include <AK/StringBuilder.h>
#include <LibCore/ArgsParser.h>
#include <LibCore/File.h>
#include <LibCore/System.h>
#include <LibMain/Main.h>
#include <unistd.h>
static bool use_color = false;
static void print(StringView name, JsonValue const&, Vector<String>& trail);
static StringView color_name = ""sv;
static StringView color_index = ""sv;
static StringView color_brace = ""sv;
static StringView color_bool = ""sv;
static StringView color_null = ""sv;
static StringView color_string = ""sv;
static StringView color_off = ""sv;
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
TRY(Core::System::pledge("stdio rpath tty"));
if (isatty(STDOUT_FILENO))
use_color = true;
TRY(Core::System::pledge("stdio rpath"));
Core::ArgsParser args_parser;
args_parser.set_general_help("Print each value in a JSON file with its fully expanded key.");
StringView path;
args_parser.add_positional_argument(path, "Input", "input", Core::ArgsParser::Required::No);
args_parser.parse(arguments);
RefPtr<Core::File> file;
if (path.is_null())
file = Core::File::standard_input();
else
file = TRY(Core::File::open(path, Core::OpenMode::ReadOnly));
TRY(Core::System::pledge("stdio"));
auto file_contents = file->read_all();
auto json = TRY(JsonValue::from_string(file_contents));
if (use_color) {
color_name = "\033[33;1m"sv;
color_index = "\033[35;1m"sv;
color_brace = "\033[36m"sv;
color_bool = "\033[32;1m"sv;
color_string = "\033[31;1m"sv;
color_null = "\033[34;1m"sv;
color_off = "\033[0m"sv;
}
Vector<String> trail;
print("json"sv, json, trail);
return 0;
}
static void print(StringView name, JsonValue const& value, Vector<String>& trail)
{
for (size_t i = 0; i < trail.size(); ++i)
out("{}", trail[i]);
out("{}{}{} = ", color_name, name, color_off);
if (value.is_object()) {
outln("{}{{}}{};", color_brace, color_off);
trail.append(String::formatted("{}{}{}.", color_name, name, color_off));
value.as_object().for_each_member([&](auto& on, auto& ov) { print(on, ov, trail); });
trail.take_last();
return;
}
if (value.is_array()) {
outln("{}[]{};", color_brace, color_off);
trail.append(String::formatted("{}{}{}", color_name, name, color_off));
for (size_t i = 0; i < value.as_array().size(); ++i) {
auto element_name = String::formatted("{}{}[{}{}{}{}{}]{}", color_off, color_brace, color_off, color_index, i, color_off, color_brace, color_off);
print(element_name, value.as_array()[i], trail);
}
trail.take_last();
return;
}
switch (value.type()) {
case JsonValue::Type::Null:
out("{}", color_null);
break;
case JsonValue::Type::Bool:
out("{}", color_bool);
break;
case JsonValue::Type::String:
out("{}", color_string);
break;
default:
out("{}", color_index);
break;
}
outln("{}{};", value.serialized<StringBuilder>(), color_off);
}
| C++ | 4 | r00ster91/serenity | Userland/Utilities/gron.cpp | [
"BSD-2-Clause"
] |
#--------------------+-----------------
# CFC pkg parameter setting
# lines starting with "#" are comments
#--------------------+-----------------
# atmCFC_inpFile : file name of Atmospheric CFC time series (ASCII file)
# default = 'cfc1112.atm'
# atmCFC_recSepTime : time spacing between 2 records of atmos CFC [s]
# default = 31104000. (360 days)
# atmCFC_timeOffset : time offset for atmos CFC (cfcTime = myTime + offSet)
# default = recSepTime - deltaT * PTRACERS_Iter0
# atmCFC_yNorthBnd : Northern Lat boundary for interpolation [y-unit]
# default = +10.
# atmCFC_ySouthBnd : Southern Lat boundary for interpolation [y-unit]
# default = -10.
# CFC_windFile : file name of wind speeds ; default = ' '
# CFC_atmospFile : file name of atmospheric pressure ; default = ' '
# CFC_iceFile : file name of seaice fraction ; default = ' '
# CFC_forcingPeriod : record spacing time for CFC forcing (seconds)
# default = externForcingPeriod
# CFC_forcingCycle : periodic-cycle freq for CFC forcing (seconds)
# default = externForcingCycle
#--------------------+-----------------
&CFC_FORCING
#- default atmCFC_timeOffset is set according to PTRACERS_Iter0
# and corresponds to -5899*360*86400 as set just below:
# atmCFC_timeOffset = -183482496000.,
CFC_iceFile='fice.bin',
CFC_windFile='tren_speed.bin',
&
| ColdFusion CFC | 4 | ElizabethYankovsky/MITgcm | verification/tutorial_cfc_offline/input/data.cfc | [
"MIT"
] |
OPAL-1.0 Object
MODBUS::Block {
name=Modbus_device
device=modbus_slv
}
MODBUS::Slave {
name=modbus_slv
proto_name=TCP
ip=192.168.10.30
port=1024
slave_id=17
verbose=0
nb_bits=1
nb_input_bits=1
nb_registers=2002
nb_input_registers=25
pinout {
incoming_bits {
pins {
item {
addr=0
}
}
}
incoming_input_bits {
pins {
item {
addr=0
}
}
}
incoming_registers {
pins {
item {
addr=0
}
}
}
incoming_input_registers {
pins {
item {
addr=0
}
item {
addr=1
}
item {
addr=2
}
item {
addr=3
}
item {
addr=4
}
item {
addr=5
}
item {
addr=6
}
item {
addr=7
}
item {
addr=8
}
item {
addr=9
}
item {
addr=10
}
item {
addr=11
}
item {
addr=12
}
item {
addr=13
}
item {
addr=14
}
item {
addr=15
}
item {
addr=16
}
item {
addr=17
}
item {
addr=18
}
item {
addr=19
}
item {
addr=20
}
item {
addr=21
}
item {
addr=22
}
item {
addr=23
}
item {
addr=24
}
}
}
outgoing_bits {
pins {
item {
addr=0
}
}
}
outgoing_registers{
pins {
item {
addr=2000
}
item {
addr=2001
}
}
}
}
tasks {
MODBUS::Task {
type=mailbox
deadline=100
}
}
} | Opal | 3 | MITLL-HIL-GROUP/HIL_2015_Symposium | HIL2015_Symposium_Package/04 Top Level Model/relay_slave_cfg1.opal | [
"MIT"
] |
--TEST--
Bug #54304 (Setting replacement value for RegexIterator doesn't work)
--FILE--
<?php
class foo extends ArrayIterator {
public function __construct( ) {
parent::__construct(array(
'test3'=>'test999'));
}
}
$h = new foo;
$i = new RegexIterator($h, '/^test(.*)/', RegexIterator::REPLACE);
$i->replacement = "42";
var_dump($i->replacement);
foreach ($i as $name=>$value) {
var_dump($name, $value);
}
var_dump($i->replacement);
?>
--EXPECT--
string(2) "42"
string(5) "test3"
string(2) "42"
string(2) "42"
| PHP | 3 | NathanFreeman/php-src | ext/spl/tests/bug54304.phpt | [
"PHP-3.01"
] |
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<ProductVersion>3.5</ProductVersion>
<ProjectGuid>{37626f77-cb09-429c-909e-516216faf34b}</ProjectGuid>
<RootNamespace>Debugger</RootNamespace>
<StartupClass />
<OutputType>winexe</OutputType>
<AssemblyName>Debugger</AssemblyName>
<AllowGlobals>False</AllowGlobals>
<AllowLegacyWith>False</AllowLegacyWith>
<AllowLegacyOutParams>False</AllowLegacyOutParams>
<AllowLegacyCreate>False</AllowLegacyCreate>
<AllowUnsafeCode>False</AllowUnsafeCode>
<ApplicationIcon>Properties\App.ico</ApplicationIcon>
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<Name>Debugger</Name>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>.\bin\Debug</OutputPath>
<DefineConstants>DEBUG;TRACE;</DefineConstants>
<GeneratePDB>True</GeneratePDB>
<GenerateMDB>False</GenerateMDB>
<EnableAsserts>True</EnableAsserts>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<CaptureConsoleOutput>False</CaptureConsoleOutput>
<StartMode>Project</StartMode>
<RegisterForComInterop>False</RegisterForComInterop>
<CpuType>anycpu</CpuType>
<RuntimeVersion>v25</RuntimeVersion>
<XmlDoc>False</XmlDoc>
<XmlDocWarningLevel>WarningOnPublicMembers</XmlDocWarningLevel>
<EnableUnmanagedDebugging>False</EnableUnmanagedDebugging>
<WarnOnCaseMismatch>True</WarnOnCaseMismatch>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>.\bin\Release</OutputPath>
<GeneratePDB>False</GeneratePDB>
<GenerateMDB>False</GenerateMDB>
<EnableAsserts>False</EnableAsserts>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<CaptureConsoleOutput>False</CaptureConsoleOutput>
<StartMode>Project</StartMode>
<RegisterForComInterop>False</RegisterForComInterop>
<CpuType>anycpu</CpuType>
<RuntimeVersion>v25</RuntimeVersion>
<XmlDoc>False</XmlDoc>
<XmlDocWarningLevel>WarningOnPublicMembers</XmlDocWarningLevel>
<EnableUnmanagedDebugging>False</EnableUnmanagedDebugging>
<WarnOnCaseMismatch>True</WarnOnCaseMismatch>
</PropertyGroup>
<ItemGroup>
<Reference Include="ICSharpCode.TextEditor">
<HintPath>..\..\..\Source\ICSharpCode.TextEditor.dll</HintPath>
</Reference>
<Reference Include="mscorlib" />
<Reference Include="RemObjects.Script">
<HintPath>..\..\..\Source\RemObjects.Script\obj\Debug\RemObjects.Script.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="MainForm.Commands.pas">
<SubType>Form</SubType>
</Compile>
<Compile Include="MainForm.Designer.pas">
<SubType>Form</SubType>
<DependentUpon>MainForm.pas</DependentUpon>
</Compile>
<Compile Include="MainForm.pas">
<SubType>Form</SubType>
<DesignableClassName>Debugger.MainForm</DesignableClassName>
</Compile>
<Compile Include="Program.pas" />
<Compile Include="Properties\AssemblyInfo.pas" />
<Content Include="Properties\App.ico" />
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.pas</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.pas" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
</None>
<Compile Include="Properties\Settings.Designer.pas" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\RemObjects Software\Elements\RemObjects.Elements.Echoes.targets" />
<PropertyGroup>
<PreBuildEvent />
</PropertyGroup>
</Project> | Oxygene | 2 | remobjects/script | Samples/Oxygene/Debugger/Debugger.oxygene | [
"BSD-3-Clause"
] |
//
// Copyright 2020 Google Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
@use 'sass:math';
@use '@material/feature-targeting/feature-targeting';
@use '@material/rtl/rtl';
// stylelint-disable selector-class-pattern -- MDC internal usage.
$space-between-chips: 8px;
///
/// Sets the horiontal space between the chips in the chip set.
/// @param {Number} $space - The horizontal space between the chips.
///
@mixin horizontal-space-between-chips($space, $query: feature-targeting.all()) {
$feat-structure: feature-targeting.create-target($query, structure);
///
/// We should use the column-gap property when our browser matrix allows.
///
.mdc-evolution-chip-set__chips {
@include feature-targeting.targets($feat-structure) {
// Set the margin to the negative horizontal space to account for chips
// being inset on the leading edge.
@include rtl.reflexive-property(margin, -$space, 0);
}
}
.mdc-evolution-chip {
@include feature-targeting.targets($feat-structure) {
@include rtl.reflexive-property(margin, $space, 0);
}
}
}
///
/// Sets the vertical space between the chips in the chip set.
/// @param {Number} $space - The vertical space between the chips.
///
@mixin vertical-space-between-chips($space, $query: feature-targeting.all()) {
$feat-structure: feature-targeting.create-target($query, structure);
///
/// We should use the row-gap property when our browser matrix allows.
///
.mdc-evolution-chip {
@include feature-targeting.targets($feat-structure) {
// Set top and bottom to half the vertical space since there's no
// well supported method for vertical wrapping gaps.
margin-top: math.div($space, 2);
margin-bottom: math.div($space, 2);
}
}
}
| SCSS | 4 | simonziegler/material-components-web | packages/mdc-chips/_chip-set-theme.scss | [
"MIT"
] |
pub struct Snarks;
| Rust | 1 | narpfel/rust-clippy | tests/ui-cargo/module_style/fail_mod/src/bad/inner/stuff/most.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
<h2><%= title %></h2>
<span><%= date %></h2>
<p><%= body %></p>
| RHTML | 3 | dhenze/toto | test/templates/article.rhtml | [
"MIT"
] |
2016-03-02 11:51:53 twitter_z1lt0id To finish OAuth authentication, please visit https://api.twitter.com/oauth/authorize?oauth_token=NXhZuQAAAAAAAfDCAAABUzTPSaY&oauth_token_secret=yLl0bWckIRRwGUNk9GhAVFx6P1pGEjSp&oauth_callback_confirmed=true and respond with the resulting PIN code.
2016-03-02 11:53:15 fsociety 6336277
2016-03-16 07:29:37 twitter_z1lt0id To finish OAuth authentication, please visit https://api.twitter.com/oauth/authorize?oauth_token=uel7HAAAAAAAAfDCAAABU3v4M3o&oauth_token_secret=IBZutW8DCZdBuwxDK6Oz2HfNjfcjuacH&oauth_callback_confirmed=true and respond with the resulting PIN code.
2016-03-16 07:31:00 fsociety 4081117
2016-04-06 15:02:40 twitter_z1lt0id To finish OAuth authentication, please visit https://api.twitter.com/oauth/authorize?oauth_token=zjIt2gAAAAAAAfDCAAABU-n0bWY&oauth_token_secret=ZpWTlfIe51ySVYsfXTS87nhEyOOGUkDU&oauth_callback_confirmed=true and respond with the resulting PIN code.
2016-04-06 15:02:40 [15:02]
2016-04-06 15:03:34 fsociety 3518626
| IRC log | 0 | 0x4b1dN/2016-dots | misc/weechat/logs/irc.bitlbee.twitter_z1lt0id.weechatlog | [
"MIT"
] |
loadlib user32.dll
value user32
private
user32 1 dllfun GetKeyState GetKeyState
user32 2 dllfun MapVirtualKey MapVirtualKeyA
user32 3 dllfun GetKeyNameText GetKeyNameTextA
user32 5 dllfun ToAscii ToAscii
\ an array of bytes to store key states
\ (behaves like the lpKeyState parameter to the ToAscii function)
create keys 256 allot does> swap + ;
\ mark a key as pressed or unpressed
: setkey -1 swap keys c! ;
: clrkey 0 swap keys c! ;
\ get state of key, test high bit
: pressed? GetKeyState 15 >> 1 and if -1 else 0 then ;
\ if the key was previously pressed, print its ASCII representation
: decode dup 0 MapVirtualKey 0 keys here 0 ToAscii ;
: .nl? 13 = if 10 emit then ;
: .clamp dup 32 < if +rev [char] ^ emit 64 + emit -rev else emit then ;
: .key decode if here c@ dup .nl? .clamp then ;
: report? dup keys c@ if drop else .key then ;
\ check if a key is pressed, and mark the state accordingly
: testkey dup pressed? if dup report? setkey else clrkey then ;
\ test all the keys
: keymap 223 0 do i testkey loop ;
\ keylog for a little while
: flush key? if key drop tail then ;
: quit? key? if key [char] q = else 0 then ;
: keylog quit? if cr .post else 10 ms keymap tail then ;
public{
: keylog flush .pre keylog ;
: keylog! 10 ms keymap tail ;
}public
: init keylog 0 ExitThread ;
popinput
| Forth | 3 | jephthai/EvilVM | samples/keylogger.fth | [
"MIT"
] |
/*
Copyright © 2011 MLstate
This file is part of Opa.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/**
* {1 About this module}
*
* It updates the function OpaTsc.get to support fallback on the server OpaTsc.get from the client side
*
*/
@server
@private
OpaTsc_server_get(ident) = OpaTsc_get.get(ident)
@client
UpdateOpaTsc = {{
/* Remark: evaluating the pros (less request) and the cons (send too much type or need client state)
of pre-sending dependencies of the current asked type => don't do it */
get_fallback(ident) =
add = %%BslValue.Tsc.add%%
r = OpaTsc_server_get(ident)
do Option.iter(def->add(ident,def),r)
r
/* plug the new get function */
process_update =
do OpaTsc_get.update_fallback(UpdateOpaTsc.get_fallback)
void
}}
| Opa | 4 | Machiaweliczny/oppailang | lib/stdlib/core/rpc/core/opatype_update.opa | [
"MIT"
] |
<?Lassoscript
define_atbegin: {
if: file_exists: '/urlhandler.inc';
include: '/urlhandler.inc';
/if;
};
?> | Lasso | 2 | subethaedit/SubEthaEd | Documentation/ModeDevelopment/Reference Files/LassoScript-HTML/itpage/LassoStartup/urlhandler_atbegin.lasso | [
"MIT"
] |
package io.swagger.client.model {
import io.swagger.common.ListWrapper;
import io.swagger.client.model.Animal;
public class CatList implements ListWrapper {
// This declaration below of _Cat_obj_class is to force flash compiler to include this class
private var _cat_obj_class: io.swagger.client.model.Cat = null;
[XmlElements(name="cat", type="io.swagger.client.model.Cat")]
public var cat: Array = new Array();
public function getList(): Array{
return cat;
}
}
}
| ActionScript | 4 | wwadge/swagger-codegen | samples/client/petstore/flash/flash/src/io/swagger/client/model/CatList.as | [
"Apache-2.0"
] |
import createSvgIcon from './utils/createSvgIcon';
import { jsx as _jsx } from "react/jsx-runtime";
export default createSvgIcon([/*#__PURE__*/_jsx("circle", {
cx: "9",
cy: "12",
r: "3",
opacity: ".3"
}, "0"), /*#__PURE__*/_jsx("path", {
d: "M13.9 11c-.46-2.28-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.44-1.72 4.9-4h4.27l-1.59 1.59L18 16l4-4-4-4-1.41 1.41L18.17 11H13.9zM9 9c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z"
}, "1")], 'SwipeRightAltTwoTone'); | JavaScript | 4 | dany-freeman/material-ui | packages/mui-icons-material/lib/esm/SwipeRightAltTwoTone.js | [
"MIT"
] |
import './another.ni' as otherFile
const main = fn() {
otherFile()
}
println("Calling main() from ", _FILE)
main()
| Inform 7 | 3 | lfkeitel/nitrogen | examples/fileset/main.ni | [
"BSD-3-Clause"
] |
# A fixed-size, stack allocated array.
#
# `StaticArray` is a generic type with type argument `T` specifying the type of
# its elements and `N` the fixed size. For example `StaticArray(Int32, 3)`
# is a static array of `Int32` with three elements.
#
# Instantiations of this static array type:
#
# ```
# StaticArray(Int32, 3).new(42) # => StaticArray[42, 42, 42]
# StaticArray(Int32, 3).new { |i| i * 2 } # => StaticArray[0, 2, 4]
# StaticArray[0, 8, 15] # => StaticArray[0, 8, 15]
# ```
#
# This type can also be expressed as `Int32[3]` (only in type grammar). A typical use
# case is in combination with `uninitialized`:
#
# ```
# ints = uninitialized Int32[3]
# ints[0] = 0
# ints[1] = 8
# ints[2] = 15
# ```
#
# For number types there is also `Number.static_array` which can be used to initialize
# a static array:
#
# ```
# Int32.static_array(0, 8, 15) # => StaticArray[0, 8, 15]
# ```
#
# The generic argument type `N` is a special case in the type grammar as it
# doesn't specify a type but a size. Its value can be an `Int32` literal or
# constant.
struct StaticArray(T, N)
include Comparable(StaticArray)
include Indexable::Mutable(T)
# Creates a new `StaticArray` with the given *args*. The type of the
# static array will be the union of the type of the given *args*,
# and its size will be the number of elements in *args*.
#
# ```
# ary = StaticArray[1, 'a']
# ary[0] # => 1
# ary[1] # => 'a'
# ary.class # => StaticArray(Char | Int32, 2)
# ```
#
# See also: `Number.static_array`.
macro [](*args)
%array = uninitialized StaticArray(typeof({{*args}}), {{args.size}})
{% for arg, i in args %}
%array.to_unsafe[{{i}}] = {{arg}}
{% end %}
%array
end
# Creates a new static array and invokes the
# block once for each index of the array, assigning the
# block's value in that index.
#
# ```
# StaticArray(Int32, 3).new { |i| i * 2 } # => StaticArray[0, 2, 4]
# ```
def self.new(& : Int32 -> T)
array = uninitialized self
N.times do |i|
array.to_unsafe[i] = yield i
end
array
end
# Creates a new static array filled with the given value.
#
# ```
# StaticArray(Int32, 3).new(42) # => StaticArray[42, 42, 42]
# ```
def self.new(value : T)
new { value }
end
# Disallow creating an uninitialized StaticArray with new.
# If this is desired, one can use `array = uninitialized ...`
# which makes it clear that it's unsafe.
private def initialize
end
# Equality. Returns `true` if each element in `self` is equal to each
# corresponding element in *other*.
#
# ```
# array = StaticArray(Int32, 3).new 0 # => StaticArray[0, 0, 0]
# array2 = StaticArray(Int32, 3).new 0 # => StaticArray[0, 0, 0]
# array3 = StaticArray(Int32, 3).new 1 # => StaticArray[1, 1, 1]
# array == array2 # => true
# array == array3 # => false
# ```
def ==(other : StaticArray)
return false unless size == other.size
each_with_index do |e, i|
return false unless e == other[i]
end
true
end
# Equality with another object. Always returns `false`.
#
# ```
# array = StaticArray(Int32, 3).new 0 # => StaticArray[0, 0, 0]
# array == nil # => false
# ```
def ==(other)
false
end
def <=>(other : StaticArray)
to_slice <=> other.to_slice
end
@[AlwaysInline]
def unsafe_fetch(index : Int) : T
to_unsafe[index]
end
@[AlwaysInline]
def unsafe_put(index : Int, value : T)
to_unsafe[index] = value
end
# Returns the size of `self`
#
# ```
# array = StaticArray(Int32, 3).new { |i| i + 1 }
# array.size # => 3
# ```
def size : Int32
N
end
# :inherit:
def fill(value : T) : self
# enable memset optimization
to_slice.fill(value)
self
end
# :inherit:
def fill(value : T, start : Int, count : Int) : self
to_slice.fill(value, start, count)
self
end
# :inherit:
def fill(value : T, range : Range) : self
to_slice.fill(value, range)
self
end
# Returns a new static array where elements are mapped by the given block.
#
# ```
# array = StaticArray[1, 2.5, "a"]
# array.map &.to_s # => StaticArray["1", "2.5", "a"]
# ```
def map(&block : T -> U) : StaticArray(U, N) forall U
StaticArray(U, N).new { |i| yield to_unsafe[i] }
end
# Like `map`, but the block gets passed both the element and its index.
#
# Accepts an optional *offset* parameter, which tells it to start counting
# from there.
def map_with_index(offset = 0, &block : (T, Int32) -> U) : StaticArray(U, N) forall U
StaticArray(U, N).new { |i| yield to_unsafe[i], offset + i }
end
# Returns a new instance with all elements sorted based on the return value of
# their comparison method `T#<=>` (see `Comparable#<=>`), using a stable sort algorithm.
#
# ```
# a = StaticArray[3, 1, 2]
# a.sort # => StaticArray[1, 2, 3]
# a # => StaticArray[3, 1, 2]
# ```
#
# See `Indexable::Mutable#sort!` for details on the sorting mechanism.
#
# Raises `ArgumentError` if the comparison between any two elements returns `nil`.
def sort : StaticArray(T, N)
# the return value of `dup` must be assigned to a variable first, otherwise
# `self` will be mutated if the `sort!` call is chained directly
ary = dup
ary.sort!
end
# Returns a new instance with all elements sorted based on the return value of
# their comparison method `T#<=>` (see `Comparable#<=>`), using an unstable sort algorithm.
#
# ```
# a = StaticArray[3, 1, 2]
# a.unstable_sort # => StaticArray[1, 2, 3]
# a # => StaticArray[3, 1, 2]
# ```
#
# See `Indexable::Mutable#unstable_sort!` for details on the sorting mechanism.
#
# Raises `ArgumentError` if the comparison between any two elements returns `nil`.
def unstable_sort : StaticArray(T, N)
ary = dup
ary.unstable_sort!
end
# Returns a new instance with all elements sorted based on the comparator in the
# given block, using a stable sort algorithm.
#
# ```
# a = StaticArray[3, 1, 2]
# b = a.sort { |a, b| b <=> a }
#
# b # => StaticArray[3, 2, 1]
# a # => StaticArray[3, 1, 2]
# ```
#
# See `Indexable::Mutable#sort!(&block : T, T -> U)` for details on the sorting mechanism.
#
# Raises `ArgumentError` if for any two elements the block returns `nil`.=
def sort(&block : T, T -> U) : StaticArray(T, N) forall U
{% unless U <= Int32? %}
{% raise "expected block to return Int32 or Nil, not #{U}" %}
{% end %}
ary = dup
ary.sort!(&block)
end
# Returns a new instance with all elements sorted based on the comparator in the
# given block, using an unstable sort algorithm.
#
# ```
# a = StaticArray[3, 1, 2]
# b = a.unstable_sort { |a, b| b <=> a }
#
# b # => StaticArray[3, 2, 1]
# a # => StaticArray[3, 1, 2]
# ```
#
# See `Indexable::Mutable#unstable_sort!(&block : T, T -> U)` for details on the sorting mechanism.
#
# Raises `ArgumentError` if for any two elements the block returns `nil`.
def unstable_sort(&block : T, T -> U) : StaticArray(T, N) forall U
{% unless U <= Int32? %}
{% raise "expected block to return Int32 or Nil, not #{U}" %}
{% end %}
ary = dup
ary.unstable_sort!(&block)
end
# :inherit:
def sort! : self
to_slice.sort!
self
end
# :inherit:
def unstable_sort! : self
to_slice.unstable_sort!
self
end
# :inherit:
def sort!(&block : T, T -> U) : self forall U
{% unless U <= Int32? %}
{% raise "expected block to return Int32 or Nil, not #{U}" %}
{% end %}
to_slice.sort!(&block)
self
end
# :inherit:
def unstable_sort!(&block : T, T -> U) : self forall U
{% unless U <= Int32? %}
{% raise "expected block to return Int32 or Nil, not #{U}" %}
{% end %}
to_slice.unstable_sort!(&block)
self
end
# Returns a new instance with all elements sorted by the output value of the
# block. The output values are compared via the comparison method `T#<=>`
# (see `Comparable#<=>`), using a stable sort algorithm.
#
# ```
# a = StaticArray["apple", "pear", "fig"]
# b = a.sort_by { |word| word.size }
# b # => StaticArray["fig", "pear", "apple"]
# a # => StaticArray["apple", "pear", "fig"]
# ```
#
# If stability is expendable, `#unstable_sort_by(&block : T -> _)` provides a
# performance advantage over stable sort.
#
# See `Indexable::Mutable#sort_by!(&block : T -> _)` for details on the sorting mechanism.
#
# Raises `ArgumentError` if the comparison between any two comparison values returns `nil`.
def sort_by(&block : T -> _) : StaticArray(T, N)
ary = dup
ary.sort_by! { |e| yield(e) }
end
# Returns a new instance with all elements sorted by the output value of the
# block. The output values are compared via the comparison method `#<=>`
# (see `Comparable#<=>`), using an unstable sort algorithm.
#
# ```
# a = StaticArray["apple", "pear", "fig"]
# b = a.unstable_sort_by { |word| word.size }
# b # => StaticArray["fig", "pear", "apple"]
# a # => StaticArray["apple", "pear", "fig"]
# ```
#
# If stability is necessary, use `#sort_by(&block : T -> _)` instead.
#
# See `Indexable::Mutable#unstable_sort!(&block : T -> _)` for details on the sorting mechanism.
#
# Raises `ArgumentError` if the comparison between any two comparison values returns `nil`.
def unstable_sort_by(&block : T -> _) : StaticArray(T, N)
ary = dup
ary.unstable_sort_by! { |e| yield(e) }
end
# :inherit:
def sort_by!(&block : T -> _) : self
sorted = map { |e| {e, yield(e)} }.sort! { |x, y| x[1] <=> y[1] }
N.times do |i|
to_unsafe[i] = sorted.to_unsafe[i][0]
end
self
end
# :inherit:
def unstable_sort_by!(&block : T -> _) : self
sorted = map { |e| {e, yield(e)} }.unstable_sort! { |x, y| x[1] <=> y[1] }
N.times do |i|
to_unsafe[i] = sorted.to_unsafe[i][0]
end
self
end
# :inherit:
def rotate!(n : Int = 1) : self
to_slice.rotate!(n)
self
end
# Returns a slice that points to the elements of this static array.
# Changes made to the returned slice also affect this static array.
#
# ```
# array = StaticArray(Int32, 3).new(2)
# slice = array.to_slice # => Slice[2, 2, 2]
# slice[0] = 3
# array # => StaticArray[3, 2, 2]
# ```
def to_slice : Slice(T)
Slice.new(to_unsafe, size)
end
# Returns a pointer to this static array's data.
#
# ```
# ary = StaticArray(Int32, 3).new(42)
# ary.to_unsafe[0] # => 42
# ```
def to_unsafe : Pointer(T)
pointerof(@buffer)
end
# Appends a string representation of this static array to the given `IO`.
#
# ```
# array = StaticArray(Int32, 3).new { |i| i + 1 }
# array.to_s # => "StaticArray[1, 2, 3]"
# ```
def to_s(io : IO) : Nil
io << "StaticArray["
join io, ", ", &.inspect(io)
io << ']'
end
def pretty_print(pp)
# Don't pass `self` here because we'll pass `self` by
# value and for big static arrays that seems to make
# LLVM really slow.
# TODO: investigate why, maybe report a bug to LLVM?
pp.list("StaticArray[", to_slice, "]")
end
# Returns a new `StaticArray` where each element is cloned from elements in `self`.
def clone
array = uninitialized self
N.times do |i|
array.to_unsafe[i] = to_unsafe[i].clone
end
array
end
def index(object, offset : Int = 0)
# Optimize for the case of looking for a byte in a byte slice
if T.is_a?(UInt8.class) &&
(object.is_a?(UInt8) || (object.is_a?(Int) && 0 <= object < 256))
return to_slice.fast_index(object, offset)
end
super
end
end
| Crystal | 5 | mgomes/crystal | src/static_array.cr | [
"Apache-2.0"
] |
--TEST--
Bug #81684: ??= on $GLOBALS produces an invalid opcode
--FILE--
<?php
$GLOBALS['x'] ??= 'x'; // Fatal error: Invalid opcode 23/1/0
var_dump($GLOBALS['x']);
echo "Done.\n";
?>
--EXPECT--
string(1) "x"
Done.
| PHP | 2 | NathanFreeman/php-src | Zend/tests/bug81684.phpt | [
"PHP-3.01"
] |
frequency,raw,error,smoothed,error_smoothed,equalization,parametric_eq,fixed_band_eq,equalized_raw,equalized_smoothed,target
20.00,9.53,3.15,9.51,3.13,-3.14,-3.05,-1.57,6.39,6.37,6.38
20.20,9.50,3.11,9.53,3.14,-3.14,-3.06,-1.61,6.36,6.38,6.39
20.40,9.55,3.15,9.54,3.15,-3.15,-3.07,-1.66,6.40,6.40,6.40
20.61,9.55,3.14,9.56,3.15,-3.15,-3.08,-1.70,6.40,6.41,6.41
20.81,9.60,3.19,9.59,3.18,-3.15,-3.09,-1.75,6.45,6.43,6.41
21.02,9.60,3.18,9.60,3.18,-3.16,-3.10,-1.80,6.44,6.44,6.42
21.23,9.60,3.17,9.60,3.17,-3.16,-3.12,-1.85,6.44,6.44,6.43
21.44,9.60,3.15,9.60,3.15,-3.17,-3.13,-1.90,6.43,6.43,6.45
21.66,9.60,3.15,9.60,3.15,-3.17,-3.14,-1.95,6.43,6.43,6.45
21.87,9.61,3.15,9.62,3.16,-3.18,-3.15,-2.00,6.43,6.44,6.46
22.09,9.64,3.18,9.64,3.18,-3.18,-3.16,-2.06,6.46,6.46,6.46
22.31,9.68,3.21,9.67,3.20,-3.19,-3.17,-2.11,6.49,6.48,6.47
22.54,9.69,3.22,9.69,3.22,-3.20,-3.18,-2.17,6.49,6.49,6.47
22.76,9.69,3.21,9.69,3.22,-3.21,-3.19,-2.23,6.48,6.48,6.48
22.99,9.69,3.21,9.69,3.22,-3.23,-3.20,-2.29,6.46,6.46,6.47
23.22,9.69,3.22,9.70,3.23,-3.24,-3.22,-2.35,6.45,6.46,6.47
23.45,9.74,3.26,9.72,3.25,-3.26,-3.23,-2.42,6.48,6.47,6.48
23.69,9.75,3.27,9.75,3.27,-3.27,-3.24,-2.48,6.48,6.48,6.48
23.92,9.78,3.30,9.78,3.30,-3.29,-3.25,-2.55,6.49,6.50,6.48
24.16,9.81,3.32,9.81,3.31,-3.30,-3.26,-2.61,6.51,6.50,6.49
24.40,9.83,3.33,9.82,3.33,-3.32,-3.27,-2.68,6.51,6.51,6.50
24.65,9.83,3.33,9.83,3.33,-3.33,-3.28,-2.75,6.50,6.51,6.50
24.89,9.83,3.33,9.83,3.33,-3.33,-3.29,-2.82,6.50,6.50,6.50
25.14,9.83,3.33,9.83,3.33,-3.33,-3.31,-2.89,6.50,6.50,6.50
25.39,9.83,3.33,9.83,3.33,-3.33,-3.32,-2.96,6.50,6.50,6.50
25.65,9.83,3.33,9.83,3.33,-3.33,-3.33,-3.03,6.50,6.50,6.50
25.91,9.83,3.33,9.83,3.33,-3.33,-3.34,-3.10,6.50,6.50,6.50
26.16,9.83,3.32,9.83,3.33,-3.34,-3.35,-3.17,6.49,6.49,6.51
26.43,9.83,3.32,9.84,3.33,-3.35,-3.36,-3.25,6.48,6.49,6.50
26.69,9.85,3.35,9.85,3.35,-3.36,-3.38,-3.32,6.49,6.49,6.50
26.96,9.88,3.38,9.87,3.37,-3.38,-3.39,-3.38,6.50,6.49,6.50
27.23,9.90,3.40,9.90,3.40,-3.40,-3.40,-3.45,6.50,6.50,6.50
27.50,9.92,3.42,9.93,3.42,-3.42,-3.41,-3.52,6.50,6.51,6.50
27.77,9.96,3.45,9.95,3.44,-3.43,-3.42,-3.58,6.53,6.52,6.51
28.05,9.97,3.46,9.97,3.46,-3.45,-3.43,-3.65,6.52,6.52,6.51
28.33,9.97,3.46,9.97,3.46,-3.45,-3.45,-3.71,6.52,6.52,6.51
28.62,9.97,3.46,9.97,3.46,-3.46,-3.46,-3.76,6.51,6.51,6.51
28.90,9.97,3.46,9.97,3.46,-3.46,-3.47,-3.82,6.51,6.51,6.51
29.19,9.97,3.46,9.97,3.46,-3.46,-3.48,-3.87,6.51,6.51,6.51
29.48,9.97,3.46,9.97,3.45,-3.46,-3.49,-3.92,6.51,6.50,6.51
29.78,9.97,3.46,9.97,3.46,-3.47,-3.51,-3.96,6.50,6.50,6.51
30.08,9.97,3.45,9.98,3.47,-3.48,-3.52,-4.00,6.49,6.50,6.52
30.38,10.01,3.50,10.00,3.49,-3.50,-3.53,-4.03,6.51,6.50,6.51
30.68,10.02,3.51,10.02,3.52,-3.52,-3.54,-4.06,6.50,6.50,6.50
30.99,10.06,3.56,10.05,3.55,-3.54,-3.56,-4.09,6.52,6.51,6.50
31.30,10.06,3.56,10.07,3.57,-3.56,-3.57,-4.11,6.50,6.51,6.50
31.61,10.11,3.61,10.09,3.59,-3.58,-3.58,-4.13,6.53,6.51,6.50
31.93,10.09,3.60,10.09,3.60,-3.59,-3.60,-4.14,6.50,6.50,6.49
32.24,10.09,3.59,10.09,3.61,-3.60,-3.61,-4.15,6.49,6.49,6.49
32.57,10.09,3.61,10.09,3.60,-3.61,-3.62,-4.16,6.48,6.48,6.48
32.89,10.09,3.61,10.09,3.61,-3.61,-3.64,-4.16,6.48,6.48,6.48
33.22,10.09,3.61,10.09,3.61,-3.61,-3.65,-4.16,6.47,6.47,6.48
33.55,10.09,3.61,10.09,3.61,-3.62,-3.66,-4.15,6.47,6.47,6.48
33.89,10.09,3.62,10.09,3.62,-3.62,-3.68,-4.14,6.47,6.47,6.47
34.23,10.09,3.63,10.09,3.63,-3.63,-3.69,-4.13,6.46,6.46,6.46
34.57,10.09,3.63,10.09,3.63,-3.63,-3.71,-4.12,6.46,6.46,6.46
34.92,10.09,3.64,10.09,3.64,-3.64,-3.72,-4.10,6.45,6.45,6.44
35.27,10.09,3.64,10.09,3.65,-3.65,-3.74,-4.09,6.44,6.44,6.45
35.62,10.09,3.66,10.09,3.66,-3.66,-3.75,-4.07,6.43,6.43,6.43
35.97,10.09,3.66,10.09,3.67,-3.67,-3.76,-4.05,6.42,6.42,6.42
36.33,10.09,3.68,10.09,3.68,-3.68,-3.78,-4.03,6.41,6.41,6.41
36.70,10.09,3.69,10.09,3.69,-3.69,-3.79,-4.01,6.40,6.40,6.40
37.06,10.09,3.71,10.09,3.71,-3.70,-3.81,-3.99,6.39,6.39,6.38
37.43,10.09,3.72,10.09,3.72,-3.72,-3.83,-3.97,6.37,6.37,6.37
37.81,10.09,3.73,10.09,3.73,-3.73,-3.84,-3.96,6.36,6.36,6.36
38.19,10.09,3.75,10.09,3.75,-3.75,-3.86,-3.94,6.34,6.34,6.34
38.57,10.09,3.76,10.09,3.76,-3.76,-3.87,-3.92,6.33,6.33,6.33
38.95,10.09,3.78,10.09,3.78,-3.78,-3.89,-3.91,6.31,6.31,6.31
39.34,10.09,3.80,10.09,3.80,-3.80,-3.91,-3.90,6.29,6.29,6.29
39.74,10.09,3.82,10.09,3.81,-3.81,-3.92,-3.89,6.28,6.28,6.27
40.14,10.09,3.83,10.09,3.83,-3.83,-3.94,-3.88,6.26,6.26,6.26
40.54,10.09,3.85,10.09,3.85,-3.85,-3.96,-3.88,6.24,6.24,6.24
40.94,10.09,3.87,10.09,3.87,-3.87,-3.97,-3.87,6.22,6.22,6.22
41.35,10.09,3.89,10.09,3.89,-3.89,-3.99,-3.87,6.20,6.20,6.20
41.76,10.09,3.91,10.09,3.91,-3.91,-4.01,-3.87,6.18,6.18,6.18
42.18,10.09,3.93,10.09,3.93,-3.93,-4.03,-3.88,6.16,6.16,6.16
42.60,10.09,3.95,10.09,3.96,-3.96,-4.04,-3.89,6.13,6.13,6.13
43.03,10.09,3.98,10.09,3.98,-3.98,-4.06,-3.90,6.11,6.11,6.11
43.46,10.09,4.01,10.09,4.01,-4.01,-4.08,-3.91,6.08,6.08,6.08
43.90,10.09,4.03,10.09,4.04,-4.03,-4.10,-3.93,6.06,6.06,6.05
44.33,10.09,4.06,10.09,4.06,-4.06,-4.12,-3.95,6.03,6.03,6.03
44.78,10.09,4.09,10.09,4.09,-4.09,-4.14,-3.97,6.00,6.00,6.00
45.23,10.09,4.11,10.09,4.12,-4.12,-4.16,-3.99,5.97,5.97,5.98
45.68,10.09,4.15,10.09,4.15,-4.15,-4.18,-4.02,5.94,5.94,5.94
46.13,10.09,4.18,10.09,4.18,-4.18,-4.20,-4.06,5.91,5.91,5.90
46.60,10.09,4.21,10.09,4.21,-4.21,-4.22,-4.09,5.88,5.88,5.88
47.06,10.09,4.24,10.09,4.24,-4.25,-4.24,-4.13,5.84,5.84,5.85
47.53,10.09,4.27,10.09,4.28,-4.28,-4.26,-4.17,5.80,5.80,5.82
48.01,10.09,4.32,10.09,4.32,-4.32,-4.28,-4.21,5.77,5.77,5.77
48.49,10.09,4.35,10.09,4.35,-4.36,-4.30,-4.25,5.73,5.73,5.74
48.97,10.09,4.39,10.09,4.40,-4.40,-4.32,-4.30,5.69,5.70,5.70
49.46,10.09,4.42,10.09,4.44,-4.43,-4.34,-4.35,5.66,5.67,5.67
49.96,10.11,4.49,10.09,4.47,-4.45,-4.36,-4.40,5.66,5.64,5.61
50.46,10.07,4.49,10.08,4.50,-4.47,-4.39,-4.46,5.60,5.61,5.58
50.96,10.06,4.51,10.05,4.50,-4.49,-4.41,-4.51,5.57,5.56,5.55
51.47,10.02,4.50,10.01,4.50,-4.51,-4.43,-4.57,5.51,5.50,5.52
51.99,9.97,4.50,9.99,4.51,-4.53,-4.45,-4.63,5.44,5.46,5.47
52.51,9.97,4.53,9.97,4.52,-4.55,-4.48,-4.69,5.42,5.42,5.44
53.03,9.97,4.55,9.96,4.56,-4.57,-4.50,-4.75,5.40,5.39,5.42
53.56,9.97,4.60,9.97,4.60,-4.60,-4.52,-4.81,5.37,5.37,5.37
54.10,9.97,4.64,9.97,4.64,-4.64,-4.55,-4.86,5.33,5.33,5.33
54.64,9.97,4.68,9.97,4.68,-4.68,-4.57,-4.92,5.29,5.29,5.29
55.18,9.97,4.72,9.97,4.72,-4.72,-4.60,-4.98,5.25,5.25,5.25
55.74,9.97,4.76,9.97,4.76,-4.76,-4.62,-5.04,5.21,5.21,5.21
56.29,9.97,4.79,9.97,4.79,-4.79,-4.65,-5.09,5.18,5.18,5.18
56.86,9.97,4.82,9.97,4.83,-4.81,-4.67,-5.14,5.16,5.16,5.15
57.42,9.97,4.86,9.96,4.85,-4.83,-4.70,-5.19,5.14,5.14,5.11
58.00,9.96,4.88,9.94,4.86,-4.84,-4.72,-5.24,5.12,5.10,5.08
58.58,9.90,4.84,9.91,4.86,-4.85,-4.75,-5.28,5.04,5.06,5.06
59.16,9.88,4.85,9.88,4.85,-4.87,-4.77,-5.32,5.01,5.01,5.03
59.76,9.85,4.85,9.85,4.86,-4.89,-4.80,-5.36,4.96,4.96,5.00
60.35,9.83,4.89,9.84,4.89,-4.91,-4.83,-5.39,4.92,4.92,4.94
60.96,9.83,4.93,9.83,4.93,-4.94,-4.85,-5.41,4.88,4.88,4.90
61.57,9.83,4.98,9.83,4.98,-4.98,-4.88,-5.43,4.85,4.84,4.85
62.18,9.83,5.03,9.83,5.03,-5.02,-4.91,-5.45,4.80,4.80,4.80
62.80,9.83,5.08,9.83,5.08,-5.07,-4.93,-5.46,4.76,4.76,4.75
63.43,9.83,5.12,9.83,5.13,-5.11,-4.96,-5.47,4.72,4.73,4.71
64.07,9.83,5.16,9.83,5.16,-5.14,-4.99,-5.47,4.69,4.69,4.67
64.71,9.83,5.20,9.81,5.18,-5.17,-5.01,-5.47,4.66,4.65,4.63
65.35,9.79,5.19,9.79,5.19,-5.19,-5.04,-5.46,4.60,4.60,4.60
66.01,9.74,5.18,9.76,5.20,-5.21,-5.07,-5.45,4.53,4.55,4.56
66.67,9.74,5.21,9.73,5.21,-5.23,-5.10,-5.43,4.51,4.50,4.53
67.33,9.72,5.24,9.71,5.23,-5.25,-5.12,-5.41,4.47,4.46,4.48
68.01,9.69,5.25,9.70,5.26,-5.27,-5.15,-5.39,4.42,4.43,4.44
68.69,9.69,5.29,9.69,5.29,-5.29,-5.18,-5.37,4.40,4.41,4.40
69.37,9.69,5.32,9.68,5.32,-5.31,-5.21,-5.34,4.38,4.37,4.37
70.07,9.69,5.37,9.67,5.35,-5.34,-5.23,-5.31,4.35,4.34,4.32
70.77,9.64,5.36,9.65,5.37,-5.37,-5.26,-5.28,4.27,4.28,4.28
71.48,9.63,5.40,9.62,5.39,-5.41,-5.29,-5.24,4.22,4.22,4.23
72.19,9.60,5.41,9.60,5.42,-5.44,-5.32,-5.21,4.16,4.17,4.19
72.91,9.60,5.46,9.60,5.46,-5.47,-5.34,-5.18,4.13,4.13,4.14
73.64,9.60,5.50,9.60,5.50,-5.50,-5.37,-5.15,4.10,4.10,4.09
74.38,9.60,5.54,9.60,5.55,-5.52,-5.40,-5.11,4.07,4.08,4.06
75.12,9.60,5.58,9.59,5.57,-5.55,-5.42,-5.08,4.05,4.04,4.02
75.87,9.58,5.59,9.57,5.59,-5.57,-5.45,-5.05,4.01,4.00,3.99
76.63,9.53,5.58,9.53,5.59,-5.59,-5.48,-5.02,3.94,3.95,3.95
77.40,9.50,5.58,9.50,5.58,-5.60,-5.50,-4.99,3.90,3.89,3.92
78.17,9.46,5.59,9.47,5.59,-5.61,-5.53,-4.97,3.85,3.86,3.87
78.95,9.46,5.61,9.46,5.61,-5.62,-5.55,-4.95,3.84,3.84,3.85
79.74,9.46,5.64,9.45,5.63,-5.62,-5.58,-4.93,3.83,3.82,3.82
80.54,9.42,5.64,9.43,5.65,-5.63,-5.60,-4.91,3.79,3.80,3.78
81.35,9.41,5.66,9.40,5.65,-5.64,-5.63,-4.89,3.76,3.75,3.75
82.16,9.36,5.64,9.36,5.65,-5.65,-5.65,-4.88,3.70,3.71,3.72
82.98,9.33,5.65,9.34,5.66,-5.66,-5.68,-4.87,3.67,3.68,3.68
83.81,9.32,5.68,9.31,5.67,-5.67,-5.70,-4.87,3.65,3.64,3.64
84.65,9.29,5.68,9.29,5.69,-5.68,-5.72,-4.87,3.61,3.61,3.60
85.50,9.27,5.70,9.26,5.69,-5.69,-5.74,-4.87,3.58,3.57,3.57
86.35,9.22,5.68,9.22,5.69,-5.70,-5.76,-4.88,3.52,3.52,3.53
87.22,9.19,5.69,9.20,5.70,-5.72,-5.79,-4.89,3.47,3.48,3.50
88.09,9.19,5.73,9.19,5.72,-5.74,-5.80,-4.90,3.45,3.45,3.46
88.97,9.18,5.75,9.18,5.75,-5.75,-5.82,-4.92,3.43,3.43,3.43
89.86,9.18,5.79,9.17,5.78,-5.77,-5.84,-4.94,3.41,3.41,3.39
90.76,9.15,5.80,9.15,5.80,-5.78,-5.86,-4.96,3.37,3.38,3.35
91.66,9.13,5.82,9.12,5.81,-5.79,-5.88,-4.99,3.34,3.34,3.31
92.58,9.08,5.80,9.08,5.80,-5.80,-5.89,-5.02,3.28,3.28,3.28
93.51,9.03,5.79,9.03,5.79,-5.81,-5.91,-5.06,3.22,3.23,3.24
94.44,8.99,5.78,8.99,5.78,-5.81,-5.92,-5.09,3.18,3.17,3.21
95.39,8.94,5.78,8.95,5.79,-5.82,-5.94,-5.14,3.12,3.14,3.16
96.34,8.94,5.83,8.94,5.82,-5.82,-5.95,-5.18,3.12,3.11,3.11
97.30,8.92,5.84,8.91,5.84,-5.83,-5.96,-5.23,3.09,3.08,3.08
98.28,8.89,5.86,8.88,5.85,-5.83,-5.97,-5.28,3.06,3.05,3.03
99.26,8.83,5.85,8.84,5.85,-5.84,-5.98,-5.34,2.99,3.00,2.98
100.25,8.80,5.85,8.79,5.85,-5.85,-5.99,-5.39,2.95,2.95,2.95
101.25,8.76,5.84,8.76,5.85,-5.85,-5.99,-5.45,2.91,2.91,2.92
102.27,8.72,5.84,8.73,5.85,-5.85,-6.00,-5.51,2.87,2.88,2.88
103.29,8.71,5.87,8.69,5.85,-5.85,-6.01,-5.57,2.86,2.84,2.84
104.32,8.66,5.84,8.66,5.85,-5.85,-6.01,-5.64,2.81,2.81,2.81
105.37,8.62,5.84,8.63,5.85,-5.85,-6.01,-5.70,2.77,2.78,2.78
106.42,8.59,5.84,8.58,5.84,-5.85,-6.02,-5.77,2.74,2.74,2.75
107.48,8.55,5.85,8.55,5.84,-5.84,-6.02,-5.83,2.70,2.71,2.70
108.56,8.51,5.84,8.51,5.84,-5.84,-6.02,-5.90,2.67,2.68,2.67
109.64,8.48,5.84,8.48,5.84,-5.83,-6.01,-5.96,2.65,2.65,2.64
110.74,8.43,5.83,8.43,5.83,-5.82,-6.01,-6.02,2.61,2.61,2.60
111.85,8.39,5.83,8.38,5.82,-5.81,-6.01,-6.08,2.58,2.57,2.56
112.97,8.31,5.79,8.32,5.79,-5.81,-6.00,-6.14,2.50,2.51,2.52
114.10,8.27,5.78,8.26,5.78,-5.80,-6.00,-6.19,2.47,2.46,2.49
115.24,8.20,5.76,8.22,5.77,-5.80,-5.99,-6.24,2.40,2.42,2.44
116.39,8.20,5.80,8.19,5.79,-5.79,-5.98,-6.29,2.41,2.39,2.40
117.55,8.15,5.79,8.15,5.80,-5.78,-5.97,-6.33,2.36,2.37,2.36
118.73,8.13,5.81,8.13,5.81,-5.78,-5.96,-6.37,2.35,2.35,2.31
119.92,8.08,5.80,8.07,5.79,-5.77,-5.95,-6.40,2.30,2.30,2.28
121.12,8.03,5.77,8.02,5.77,-5.77,-5.94,-6.43,2.26,2.25,2.26
122.33,7.95,5.74,7.97,5.75,-5.76,-5.93,-6.45,2.19,2.20,2.21
123.55,7.92,5.74,7.92,5.74,-5.75,-5.92,-6.46,2.17,2.17,2.18
124.79,7.89,5.74,7.88,5.74,-5.74,-5.90,-6.46,2.15,2.14,2.15
126.03,7.85,5.74,7.85,5.74,-5.74,-5.89,-6.46,2.11,2.11,2.11
127.29,7.80,5.73,7.81,5.74,-5.74,-5.87,-6.46,2.06,2.07,2.06
128.57,7.77,5.75,7.76,5.74,-5.75,-5.86,-6.44,2.02,2.02,2.02
129.85,7.73,5.74,7.73,5.74,-5.75,-5.84,-6.42,1.97,1.97,1.98
131.15,7.69,5.74,7.71,5.76,-5.77,-5.82,-6.40,1.92,1.94,1.95
132.46,7.69,5.78,7.69,5.78,-5.78,-5.80,-6.37,1.91,1.91,1.91
133.79,7.69,5.82,7.67,5.80,-5.79,-5.79,-6.33,1.90,1.88,1.87
135.12,7.64,5.81,7.65,5.81,-5.80,-5.77,-6.29,1.84,1.85,1.83
136.48,7.61,5.80,7.62,5.81,-5.81,-5.75,-6.25,1.80,1.80,1.81
137.84,7.59,5.82,7.58,5.81,-5.82,-5.73,-6.20,1.77,1.76,1.77
139.22,7.55,5.82,7.55,5.82,-5.82,-5.71,-6.14,1.73,1.73,1.73
140.61,7.52,5.82,7.52,5.82,-5.82,-5.69,-6.09,1.70,1.71,1.70
142.02,7.50,5.83,7.49,5.82,-5.81,-5.67,-6.03,1.69,1.68,1.67
143.44,7.45,5.81,7.45,5.81,-5.80,-5.65,-5.97,1.65,1.65,1.64
144.87,7.42,5.80,7.41,5.80,-5.80,-5.63,-5.91,1.62,1.62,1.62
146.32,7.36,5.77,7.37,5.78,-5.79,-5.61,-5.85,1.57,1.58,1.59
147.78,7.33,5.77,7.33,5.77,-5.78,-5.59,-5.79,1.55,1.55,1.56
149.26,7.30,5.77,7.30,5.77,-5.78,-5.58,-5.73,1.52,1.52,1.53
150.75,7.27,5.78,7.27,5.77,-5.77,-5.56,-5.68,1.50,1.50,1.49
152.26,7.24,5.76,7.24,5.77,-5.77,-5.54,-5.62,1.47,1.47,1.48
153.78,7.22,5.78,7.21,5.77,-5.77,-5.52,-5.56,1.45,1.45,1.44
155.32,7.18,5.76,7.18,5.77,-5.76,-5.50,-5.51,1.42,1.42,1.42
156.88,7.15,5.77,7.15,5.77,-5.76,-5.49,-5.46,1.39,1.39,1.38
158.44,7.11,5.76,7.11,5.76,-5.75,-5.47,-5.41,1.35,1.35,1.35
160.03,7.06,5.74,7.06,5.74,-5.75,-5.46,-5.36,1.31,1.31,1.32
161.63,7.01,5.72,7.01,5.73,-5.74,-5.44,-5.32,1.27,1.27,1.28
163.24,6.96,5.72,6.97,5.72,-5.72,-5.43,-5.27,1.24,1.24,1.24
164.88,6.92,5.71,6.92,5.71,-5.70,-5.42,-5.24,1.21,1.22,1.21
166.53,6.89,5.71,6.88,5.70,-5.69,-5.41,-5.20,1.20,1.19,1.17
168.19,6.82,5.67,6.82,5.68,-5.67,-5.40,-5.17,1.15,1.15,1.15
169.87,6.76,5.65,6.76,5.65,-5.65,-5.39,-5.15,1.11,1.10,1.11
171.57,6.68,5.61,6.70,5.62,-5.64,-5.38,-5.12,1.04,1.06,1.07
173.29,6.65,5.61,6.64,5.61,-5.62,-5.38,-5.11,1.03,1.02,1.04
175.02,6.61,5.61,6.60,5.59,-5.60,-5.37,-5.09,1.01,0.99,1.00
176.77,6.54,5.57,6.55,5.59,-5.59,-5.37,-5.08,0.95,0.97,0.97
178.54,6.50,5.57,6.50,5.57,-5.57,-5.37,-5.07,0.93,0.93,0.93
180.32,6.45,5.56,6.45,5.55,-5.54,-5.37,-5.07,0.91,0.90,0.89
182.13,6.40,5.54,6.39,5.53,-5.52,-5.37,-5.07,0.88,0.87,0.86
183.95,6.32,5.49,6.33,5.50,-5.49,-5.37,-5.07,0.83,0.84,0.82
185.79,6.25,5.47,6.25,5.47,-5.46,-5.37,-5.08,0.79,0.80,0.78
187.65,6.19,5.44,6.17,5.42,-5.43,-5.38,-5.09,0.76,0.75,0.75
189.52,6.10,5.39,6.10,5.39,-5.40,-5.39,-5.11,0.70,0.70,0.71
191.42,6.03,5.34,6.04,5.36,-5.38,-5.39,-5.13,0.65,0.66,0.68
193.33,6.00,5.35,5.99,5.35,-5.36,-5.40,-5.15,0.63,0.63,0.65
195.27,5.96,5.35,5.96,5.35,-5.36,-5.41,-5.17,0.60,0.61,0.61
197.22,5.94,5.37,5.93,5.36,-5.36,-5.42,-5.20,0.58,0.58,0.57
199.19,5.91,5.37,5.91,5.37,-5.36,-5.44,-5.23,0.55,0.54,0.54
201.18,5.88,5.37,5.89,5.38,-5.37,-5.45,-5.26,0.51,0.52,0.51
203.19,5.87,5.39,5.87,5.39,-5.38,-5.46,-5.30,0.49,0.49,0.48
205.23,5.87,5.41,5.86,5.40,-5.40,-5.48,-5.33,0.47,0.46,0.46
207.28,5.85,5.42,5.84,5.42,-5.41,-5.49,-5.37,0.44,0.43,0.43
209.35,5.82,5.42,5.83,5.43,-5.43,-5.51,-5.41,0.39,0.40,0.40
211.44,5.82,5.45,5.82,5.44,-5.45,-5.53,-5.45,0.36,0.36,0.37
213.56,5.82,5.47,5.81,5.46,-5.48,-5.54,-5.49,0.34,0.33,0.35
215.69,5.82,5.49,5.82,5.49,-5.51,-5.55,-5.53,0.31,0.31,0.33
217.85,5.82,5.51,5.83,5.53,-5.54,-5.57,-5.57,0.28,0.29,0.31
220.03,5.86,5.59,5.85,5.58,-5.56,-5.58,-5.60,0.30,0.29,0.27
222.23,5.87,5.62,5.87,5.61,-5.58,-5.59,-5.64,0.28,0.28,0.25
224.45,5.87,5.64,5.86,5.63,-5.60,-5.60,-5.67,0.26,0.26,0.23
226.70,5.84,5.63,5.84,5.62,-5.62,-5.61,-5.70,0.22,0.21,0.21
228.96,5.80,5.60,5.80,5.61,-5.63,-5.61,-5.73,0.17,0.17,0.20
231.25,5.77,5.59,5.78,5.60,-5.63,-5.61,-5.75,0.14,0.15,0.18
233.57,5.77,5.61,5.77,5.61,-5.62,-5.61,-5.77,0.15,0.15,0.16
235.90,5.77,5.63,5.76,5.62,-5.60,-5.61,-5.78,0.17,0.16,0.14
238.26,5.74,5.62,5.73,5.60,-5.58,-5.60,-5.79,0.16,0.15,0.12
240.64,5.68,5.56,5.68,5.56,-5.55,-5.58,-5.79,0.13,0.14,0.12
243.05,5.61,5.50,5.62,5.51,-5.51,-5.57,-5.78,0.10,0.11,0.11
245.48,5.55,5.46,5.55,5.46,-5.46,-5.54,-5.77,0.09,0.09,0.09
247.93,5.48,5.41,5.47,5.40,-5.41,-5.51,-5.75,0.07,0.07,0.07
250.41,5.40,5.33,5.40,5.34,-5.34,-5.48,-5.72,0.06,0.06,0.07
252.92,5.33,5.26,5.33,5.27,-5.28,-5.44,-5.69,0.05,0.05,0.07
255.45,5.27,5.22,5.26,5.21,-5.21,-5.40,-5.64,0.06,0.05,0.05
258.00,5.19,5.15,5.19,5.15,-5.15,-5.35,-5.60,0.04,0.04,0.04
260.58,5.13,5.09,5.13,5.10,-5.09,-5.30,-5.54,0.04,0.04,0.04
263.19,5.06,5.03,5.06,5.03,-5.03,-5.24,-5.48,0.03,0.03,0.03
265.82,5.00,4.98,4.99,4.97,-4.97,-5.18,-5.41,0.03,0.02,0.02
268.48,4.91,4.89,4.92,4.90,-4.91,-5.11,-5.34,-0.01,0.01,0.02
271.16,4.86,4.85,4.86,4.85,-4.86,-5.04,-5.26,-0.00,-0.00,0.01
273.87,4.82,4.81,4.81,4.80,-4.81,-4.96,-5.17,0.01,-0.01,0.01
276.61,4.76,4.76,4.76,4.77,-4.76,-4.88,-5.08,-0.01,-0.00,0.00
279.38,4.71,4.72,4.72,4.72,-4.72,-4.80,-4.99,-0.01,0.00,-0.01
282.17,4.68,4.69,4.67,4.68,-4.67,-4.71,-4.89,0.01,0.00,-0.01
284.99,4.62,4.62,4.62,4.63,-4.62,-4.62,-4.79,0.00,0.01,-0.00
287.84,4.57,4.57,4.56,4.57,-4.56,-4.53,-4.69,0.01,0.00,0.00
290.72,4.49,4.50,4.50,4.50,-4.50,-4.44,-4.59,-0.01,-0.01,-0.01
293.63,4.43,4.43,4.43,4.44,-4.44,-4.34,-4.48,-0.01,-0.01,-0.01
296.57,4.37,4.37,4.37,4.37,-4.37,-4.25,-4.37,-0.00,-0.01,0.00
299.53,4.31,4.31,4.30,4.30,-4.30,-4.15,-4.27,0.00,0.00,-0.00
302.53,4.24,4.24,4.24,4.24,-4.23,-4.05,-4.16,0.01,0.01,0.00
305.55,4.16,4.16,4.17,4.16,-4.16,-3.96,-4.05,-0.00,0.01,0.00
308.61,4.10,4.09,4.09,4.09,-4.09,-3.86,-3.94,0.01,0.00,0.01
311.69,4.01,4.01,4.01,4.01,-4.01,-3.76,-3.83,-0.00,0.00,0.00
314.81,3.94,3.93,3.94,3.93,-3.93,-3.66,-3.73,0.01,0.00,0.01
317.96,3.86,3.85,3.86,3.85,-3.85,-3.57,-3.62,0.00,0.00,0.01
321.14,3.78,3.76,3.78,3.77,-3.77,-3.47,-3.52,0.01,0.01,0.02
324.35,3.71,3.70,3.71,3.69,-3.69,-3.38,-3.42,0.02,0.02,0.01
327.59,3.63,3.60,3.63,3.61,-3.60,-3.28,-3.32,0.03,0.03,0.03
330.87,3.55,3.52,3.55,3.52,-3.51,-3.19,-3.22,0.04,0.04,0.03
334.18,3.46,3.43,3.46,3.43,-3.42,-3.10,-3.12,0.04,0.04,0.02
337.52,3.37,3.34,3.36,3.33,-3.32,-3.01,-3.02,0.05,0.04,0.03
340.90,3.26,3.22,3.26,3.22,-3.22,-2.92,-2.93,0.04,0.04,0.04
344.30,3.16,3.11,3.16,3.11,-3.12,-2.84,-2.84,0.04,0.04,0.05
347.75,3.07,3.01,3.06,3.01,-3.03,-2.75,-2.75,0.04,0.04,0.06
351.23,2.97,2.92,2.98,2.92,-2.93,-2.67,-2.66,0.04,0.05,0.05
354.74,2.90,2.83,2.90,2.84,-2.84,-2.59,-2.57,0.06,0.06,0.07
358.28,2.84,2.77,2.83,2.76,-2.75,-2.51,-2.49,0.09,0.08,0.07
361.87,2.76,2.68,2.76,2.68,-2.67,-2.43,-2.41,0.09,0.09,0.08
365.49,2.68,2.59,2.68,2.60,-2.59,-2.35,-2.33,0.09,0.09,0.09
369.14,2.60,2.50,2.61,2.51,-2.51,-2.27,-2.25,0.09,0.10,0.10
372.83,2.54,2.44,2.53,2.43,-2.43,-2.20,-2.17,0.11,0.10,0.10
376.56,2.45,2.35,2.45,2.35,-2.35,-2.13,-2.09,0.10,0.10,0.10
380.33,2.37,2.26,2.38,2.27,-2.27,-2.05,-2.02,0.10,0.11,0.11
384.13,2.31,2.19,2.30,2.18,-2.19,-1.98,-1.95,0.12,0.12,0.12
387.97,2.24,2.11,2.23,2.11,-2.11,-1.92,-1.88,0.13,0.13,0.13
391.85,2.16,2.02,2.17,2.03,-2.03,-1.85,-1.81,0.13,0.14,0.14
395.77,2.10,1.96,2.10,1.96,-1.95,-1.78,-1.75,0.14,0.14,0.14
399.73,2.03,1.88,2.03,1.88,-1.88,-1.72,-1.68,0.15,0.15,0.14
403.72,1.97,1.81,1.97,1.81,-1.81,-1.66,-1.62,0.16,0.16,0.16
407.76,1.91,1.75,1.91,1.74,-1.75,-1.59,-1.56,0.16,0.16,0.16
411.84,1.86,1.69,1.86,1.69,-1.69,-1.53,-1.50,0.17,0.17,0.17
415.96,1.81,1.63,1.81,1.64,-1.64,-1.47,-1.44,0.17,0.17,0.18
420.12,1.78,1.60,1.77,1.58,-1.60,-1.41,-1.38,0.18,0.17,0.18
424.32,1.72,1.53,1.73,1.54,-1.56,-1.36,-1.32,0.16,0.17,0.19
428.56,1.71,1.50,1.71,1.51,-1.52,-1.30,-1.27,0.19,0.19,0.21
432.85,1.71,1.49,1.70,1.49,-1.49,-1.25,-1.21,0.22,0.22,0.22
437.18,1.70,1.48,1.69,1.47,-1.45,-1.19,-1.16,0.25,0.24,0.22
441.55,1.67,1.44,1.66,1.44,-1.41,-1.14,-1.11,0.26,0.25,0.22
445.96,1.61,1.37,1.61,1.38,-1.37,-1.08,-1.06,0.24,0.25,0.23
450.42,1.56,1.32,1.56,1.32,-1.32,-1.03,-1.01,0.24,0.24,0.24
454.93,1.51,1.26,1.51,1.26,-1.27,-0.98,-0.96,0.24,0.24,0.25
459.48,1.47,1.21,1.47,1.21,-1.22,-0.93,-0.91,0.25,0.26,0.26
464.07,1.44,1.16,1.43,1.15,-1.16,-0.88,-0.87,0.28,0.27,0.28
468.71,1.39,1.10,1.39,1.10,-1.10,-0.83,-0.82,0.29,0.29,0.29
473.40,1.35,1.05,1.35,1.04,-1.05,-0.78,-0.78,0.30,0.30,0.30
478.13,1.30,0.99,1.30,0.99,-0.99,-0.74,-0.73,0.31,0.31,0.31
482.91,1.25,0.93,1.26,0.94,-0.94,-0.69,-0.69,0.31,0.32,0.32
487.74,1.22,0.89,1.21,0.88,-0.88,-0.64,-0.65,0.34,0.33,0.33
492.62,1.16,0.82,1.16,0.83,-0.82,-0.59,-0.61,0.34,0.34,0.34
497.55,1.11,0.76,1.12,0.77,-0.76,-0.55,-0.57,0.35,0.36,0.35
502.52,1.07,0.71,1.06,0.70,-0.70,-0.50,-0.53,0.37,0.36,0.36
507.55,1.01,0.63,1.01,0.63,-0.63,-0.46,-0.49,0.37,0.37,0.38
512.62,0.95,0.56,0.95,0.56,-0.57,-0.41,-0.45,0.38,0.38,0.39
517.75,0.90,0.49,0.90,0.50,-0.50,-0.37,-0.41,0.40,0.40,0.41
522.93,0.85,0.43,0.85,0.43,-0.43,-0.32,-0.37,0.41,0.41,0.42
528.16,0.80,0.37,0.80,0.37,-0.37,-0.28,-0.34,0.43,0.43,0.43
533.44,0.74,0.30,0.74,0.30,-0.30,-0.23,-0.30,0.44,0.44,0.43
538.77,0.68,0.23,0.68,0.23,-0.23,-0.19,-0.26,0.45,0.45,0.44
544.16,0.62,0.15,0.62,0.16,-0.17,-0.14,-0.23,0.45,0.46,0.46
549.60,0.57,0.10,0.57,0.10,-0.10,-0.10,-0.19,0.47,0.48,0.47
555.10,0.53,0.04,0.52,0.03,-0.03,-0.06,-0.15,0.50,0.50,0.49
560.65,0.48,-0.02,0.47,-0.03,0.04,-0.01,-0.12,0.52,0.52,0.50
566.25,0.41,-0.10,0.41,-0.10,0.11,0.03,-0.08,0.52,0.52,0.51
571.92,0.35,-0.17,0.35,-0.17,0.16,0.08,-0.05,0.51,0.51,0.52
577.64,0.29,-0.24,0.29,-0.24,0.22,0.12,-0.01,0.51,0.51,0.53
583.41,0.25,-0.29,0.25,-0.29,0.27,0.17,0.02,0.52,0.52,0.54
589.25,0.22,-0.33,0.23,-0.32,0.31,0.22,0.06,0.53,0.54,0.55
595.14,0.22,-0.34,0.21,-0.35,0.36,0.26,0.09,0.58,0.57,0.56
601.09,0.19,-0.38,0.19,-0.39,0.41,0.31,0.13,0.60,0.60,0.57
607.10,0.16,-0.43,0.16,-0.43,0.46,0.36,0.17,0.61,0.61,0.59
613.17,0.11,-0.50,0.11,-0.50,0.51,0.41,0.20,0.62,0.62,0.61
619.30,0.07,-0.56,0.07,-0.56,0.56,0.45,0.24,0.63,0.63,0.63
625.50,0.02,-0.63,0.02,-0.63,0.63,0.50,0.28,0.65,0.65,0.65
631.75,-0.03,-0.69,-0.03,-0.69,0.69,0.55,0.31,0.66,0.67,0.66
638.07,-0.08,-0.76,-0.08,-0.76,0.76,0.61,0.35,0.68,0.68,0.68
644.45,-0.13,-0.83,-0.13,-0.83,0.83,0.66,0.39,0.70,0.70,0.70
650.89,-0.18,-0.89,-0.18,-0.90,0.89,0.71,0.43,0.71,0.71,0.71
657.40,-0.23,-0.97,-0.23,-0.96,0.95,0.76,0.47,0.72,0.72,0.74
663.98,-0.27,-1.02,-0.26,-1.01,1.00,0.82,0.51,0.73,0.74,0.75
670.62,-0.29,-1.06,-0.29,-1.06,1.05,0.88,0.55,0.76,0.76,0.77
677.32,-0.29,-1.08,-0.30,-1.09,1.10,0.93,0.59,0.81,0.80,0.79
684.10,-0.33,-1.14,-0.32,-1.13,1.15,0.99,0.64,0.82,0.83,0.81
690.94,-0.34,-1.17,-0.35,-1.18,1.20,1.05,0.68,0.86,0.85,0.83
697.85,-0.38,-1.23,-0.39,-1.24,1.24,1.11,0.72,0.86,0.85,0.85
704.83,-0.43,-1.30,-0.42,-1.29,1.29,1.17,0.77,0.85,0.86,0.87
711.87,-0.46,-1.35,-0.46,-1.34,1.33,1.23,0.81,0.87,0.87,0.89
718.99,-0.48,-1.39,-0.48,-1.39,1.37,1.29,0.86,0.89,0.89,0.91
726.18,-0.48,-1.41,-0.50,-1.42,1.42,1.35,0.90,0.94,0.92,0.93
733.44,-0.52,-1.47,-0.50,-1.45,1.46,1.41,0.95,0.94,0.96,0.95
740.78,-0.52,-1.49,-0.52,-1.49,1.50,1.47,1.00,0.98,0.99,0.97
748.19,-0.52,-1.51,-0.54,-1.53,1.54,1.52,1.05,1.02,1.00,0.99
755.67,-0.57,-1.58,-0.57,-1.57,1.58,1.58,1.10,1.01,1.01,1.01
763.23,-0.60,-1.63,-0.60,-1.63,1.61,1.64,1.15,1.01,1.01,1.03
770.86,-0.62,-1.67,-0.61,-1.66,1.65,1.69,1.20,1.02,1.03,1.05
778.57,-0.62,-1.69,-0.61,-1.68,1.68,1.74,1.25,1.06,1.07,1.07
786.35,-0.59,-1.68,-0.61,-1.70,1.71,1.78,1.30,1.12,1.10,1.09
794.22,-0.61,-1.73,-0.61,-1.72,1.73,1.83,1.35,1.12,1.12,1.12
802.16,-0.62,-1.76,-0.61,-1.75,1.75,1.86,1.40,1.13,1.14,1.14
810.18,-0.62,-1.78,-0.63,-1.78,1.77,1.90,1.45,1.15,1.14,1.16
818.28,-0.62,-1.80,-0.62,-1.80,1.79,1.92,1.51,1.17,1.17,1.18
826.46,-0.62,-1.82,-0.60,-1.80,1.81,1.94,1.56,1.19,1.21,1.20
834.73,-0.58,-1.81,-0.59,-1.81,1.84,1.96,1.61,1.26,1.25,1.23
843.08,-0.57,-1.82,-0.59,-1.84,1.87,1.97,1.66,1.30,1.28,1.25
851.51,-0.62,-1.89,-0.61,-1.88,1.90,1.98,1.71,1.28,1.29,1.27
860.02,-0.64,-1.94,-0.64,-1.94,1.92,1.98,1.75,1.28,1.28,1.30
868.62,-0.66,-1.99,-0.65,-1.98,1.94,1.98,1.80,1.28,1.28,1.33
877.31,-0.64,-1.99,-0.64,-1.99,1.95,1.97,1.85,1.31,1.31,1.35
886.08,-0.59,-1.97,-0.60,-1.97,1.96,1.95,1.89,1.36,1.36,1.38
894.94,-0.55,-1.95,-0.55,-1.95,1.95,1.94,1.93,1.40,1.41,1.40
903.89,-0.49,-1.92,-0.49,-1.92,1.94,1.92,1.97,1.45,1.45,1.43
912.93,-0.44,-1.90,-0.44,-1.90,1.92,1.90,2.00,1.48,1.48,1.46
922.06,-0.39,-1.89,-0.40,-1.89,1.90,1.88,2.03,1.51,1.50,1.50
931.28,-0.36,-1.89,-0.36,-1.88,1.88,1.85,2.06,1.52,1.52,1.53
940.59,-0.31,-1.87,-0.31,-1.87,1.86,1.83,2.09,1.55,1.54,1.56
950.00,-0.27,-1.86,-0.26,-1.84,1.84,1.80,2.11,1.57,1.59,1.59
959.50,-0.19,-1.81,-0.20,-1.82,1.83,1.77,2.13,1.64,1.63,1.62
969.09,-0.13,-1.79,-0.14,-1.80,1.81,1.75,2.14,1.68,1.67,1.66
978.78,-0.10,-1.79,-0.09,-1.78,1.79,1.72,2.15,1.69,1.70,1.69
988.57,-0.05,-1.78,-0.05,-1.78,1.77,1.69,2.16,1.72,1.72,1.73
998.46,-0.01,-1.77,-0.01,-1.76,1.74,1.66,2.16,1.73,1.74,1.76
1008.44,0.06,-1.74,0.06,-1.74,1.71,1.64,2.15,1.77,1.77,1.80
1018.53,0.14,-1.70,0.14,-1.70,1.68,1.61,2.15,1.82,1.82,1.84
1028.71,0.23,-1.65,0.23,-1.65,1.65,1.59,2.13,1.88,1.88,1.88
1039.00,0.31,-1.60,0.31,-1.60,1.63,1.56,2.12,1.94,1.94,1.91
1049.39,0.39,-1.56,0.38,-1.57,1.60,1.54,2.10,1.99,1.98,1.95
1059.88,0.43,-1.56,0.43,-1.56,1.57,1.51,2.07,2.00,2.01,1.99
1070.48,0.48,-1.56,0.48,-1.55,1.55,1.49,2.04,2.03,2.03,2.04
1081.19,0.53,-1.55,0.53,-1.55,1.52,1.47,2.01,2.05,2.06,2.08
1092.00,0.60,-1.53,0.60,-1.52,1.50,1.44,1.97,2.10,2.10,2.13
1102.92,0.69,-1.49,0.68,-1.49,1.48,1.42,1.93,2.17,2.16,2.18
1113.95,0.77,-1.45,0.77,-1.45,1.45,1.40,1.89,2.22,2.23,2.22
1125.09,0.86,-1.42,0.87,-1.41,1.42,1.38,1.84,2.28,2.29,2.28
1136.34,0.96,-1.37,0.95,-1.38,1.39,1.36,1.80,2.35,2.34,2.33
1147.70,1.04,-1.35,1.03,-1.36,1.36,1.33,1.75,2.40,2.39,2.39
1159.18,1.10,-1.35,1.11,-1.33,1.33,1.31,1.70,2.42,2.44,2.45
1170.77,1.20,-1.30,1.20,-1.30,1.29,1.29,1.64,2.49,2.49,2.50
1182.48,1.30,-1.26,1.29,-1.27,1.26,1.26,1.59,2.56,2.56,2.56
1194.30,1.39,-1.23,1.39,-1.23,1.23,1.24,1.53,2.62,2.63,2.62
1206.25,1.48,-1.21,1.48,-1.20,1.20,1.22,1.47,2.68,2.68,2.69
1218.31,1.59,-1.16,1.57,-1.18,1.17,1.19,1.42,2.76,2.74,2.75
1230.49,1.65,-1.16,1.66,-1.14,1.13,1.17,1.36,2.78,2.80,2.81
1242.80,1.76,-1.11,1.77,-1.10,1.10,1.14,1.30,2.85,2.87,2.87
1255.22,1.89,-1.05,1.88,-1.06,1.06,1.12,1.24,2.95,2.94,2.94
1267.78,2.00,-1.02,1.99,-1.02,1.03,1.09,1.18,3.03,3.02,3.02
1280.45,2.09,-1.00,2.10,-0.99,1.01,1.06,1.12,3.10,3.11,3.09
1293.26,2.19,-0.98,2.19,-0.97,0.98,1.03,1.06,3.17,3.17,3.17
1306.19,2.30,-0.94,2.28,-0.96,0.96,1.00,1.01,3.26,3.24,3.24
1319.25,2.36,-0.96,2.37,-0.94,0.93,0.97,0.95,3.29,3.31,3.32
1332.45,2.47,-0.92,2.46,-0.92,0.91,0.94,0.89,3.38,3.38,3.39
1345.77,2.56,-0.91,2.56,-0.91,0.89,0.91,0.83,3.45,3.46,3.47
1359.23,2.67,-0.88,2.67,-0.88,0.88,0.88,0.77,3.54,3.55,3.55
1372.82,2.78,-0.85,2.78,-0.85,0.86,0.84,0.71,3.63,3.63,3.63
1386.55,2.88,-0.83,2.88,-0.83,0.84,0.81,0.66,3.71,3.72,3.71
1400.41,2.99,-0.80,2.99,-0.80,0.81,0.77,0.60,3.80,3.80,3.79
1414.42,3.08,-0.79,3.08,-0.78,0.79,0.74,0.55,3.87,3.87,3.87
1428.56,3.19,-0.75,3.17,-0.77,0.76,0.70,0.49,3.95,3.93,3.94
1442.85,3.25,-0.77,3.27,-0.74,0.73,0.66,0.43,3.98,4.00,4.02
1457.28,3.38,-0.72,3.38,-0.71,0.70,0.63,0.38,4.08,4.08,4.10
1471.85,3.52,-0.65,3.50,-0.67,0.66,0.59,0.33,4.18,4.16,4.17
1486.57,3.62,-0.63,3.63,-0.61,0.62,0.55,0.27,4.24,4.26,4.25
1501.43,3.76,-0.57,3.76,-0.57,0.58,0.52,0.22,4.34,4.34,4.33
1516.45,3.89,-0.53,3.89,-0.53,0.54,0.48,0.17,4.43,4.43,4.42
1531.61,4.02,-0.49,4.02,-0.49,0.50,0.44,0.11,4.52,4.51,4.51
1546.93,4.15,-0.45,4.14,-0.45,0.45,0.41,0.06,4.60,4.60,4.60
1562.40,4.26,-0.43,4.27,-0.41,0.41,0.37,0.01,4.67,4.68,4.69
1578.02,4.42,-0.36,4.41,-0.37,0.36,0.34,-0.04,4.78,4.76,4.78
1593.80,4.54,-0.32,4.55,-0.31,0.31,0.31,-0.09,4.84,4.85,4.86
1609.74,4.70,-0.26,4.70,-0.26,0.25,0.27,-0.14,4.95,4.95,4.96
1625.84,4.86,-0.20,4.86,-0.20,0.19,0.24,-0.19,5.05,5.05,5.06
1642.10,5.02,-0.15,5.03,-0.14,0.13,0.21,-0.24,5.15,5.16,5.17
1658.52,5.20,-0.07,5.19,-0.07,0.08,0.19,-0.29,5.28,5.27,5.27
1675.10,5.35,-0.02,5.35,-0.01,0.03,0.16,-0.33,5.38,5.39,5.37
1691.85,5.51,0.04,5.50,0.03,-0.00,0.13,-0.38,5.51,5.50,5.47
1708.77,5.63,0.05,5.63,0.05,-0.03,0.10,-0.43,5.60,5.60,5.58
1725.86,5.75,0.05,5.75,0.06,-0.04,0.08,-0.47,5.71,5.71,5.70
1743.12,5.86,0.05,5.86,0.05,-0.05,0.05,-0.51,5.81,5.81,5.81
1760.55,5.97,0.04,5.97,0.04,-0.06,0.03,-0.56,5.91,5.91,5.93
1778.15,6.07,0.02,6.08,0.04,-0.06,0.01,-0.60,6.01,6.02,6.05
1795.94,6.21,0.05,6.21,0.04,-0.07,-0.02,-0.64,6.14,6.14,6.16
1813.90,6.35,0.06,6.34,0.06,-0.08,-0.04,-0.68,6.27,6.27,6.29
1832.03,6.49,0.08,6.50,0.09,-0.09,-0.07,-0.71,6.40,6.41,6.41
1850.36,6.66,0.12,6.65,0.12,-0.11,-0.09,-0.75,6.55,6.55,6.54
1868.86,6.82,0.15,6.80,0.14,-0.13,-0.12,-0.78,6.69,6.68,6.67
1887.55,6.94,0.14,6.95,0.16,-0.15,-0.15,-0.82,6.79,6.81,6.80
1906.42,7.09,0.16,7.09,0.16,-0.16,-0.17,-0.85,6.92,6.93,6.93
1925.49,7.24,0.18,7.23,0.17,-0.18,-0.21,-0.87,7.06,7.05,7.06
1944.74,7.38,0.18,7.39,0.19,-0.19,-0.24,-0.90,7.19,7.20,7.20
1964.19,7.54,0.21,7.54,0.21,-0.20,-0.27,-0.93,7.34,7.34,7.33
1983.83,7.69,0.22,7.68,0.22,-0.21,-0.31,-0.95,7.48,7.47,7.47
2003.67,7.82,0.22,7.82,0.23,-0.22,-0.34,-0.97,7.60,7.60,7.60
2023.71,7.96,0.24,7.95,0.24,-0.24,-0.38,-0.99,7.72,7.72,7.72
2043.94,8.08,0.24,8.08,0.25,-0.25,-0.43,-1.01,7.83,7.83,7.84
2064.38,8.22,0.27,8.22,0.27,-0.27,-0.47,-1.02,7.95,7.95,7.95
2085.03,8.36,0.29,8.36,0.30,-0.29,-0.52,-1.03,8.07,8.07,8.07
2105.88,8.52,0.33,8.52,0.33,-0.33,-0.57,-1.05,8.19,8.20,8.19
2126.94,8.69,0.38,8.68,0.37,-0.37,-0.62,-1.06,8.32,8.31,8.31
2148.20,8.85,0.42,8.85,0.42,-0.43,-0.67,-1.07,8.42,8.42,8.43
2169.69,9.02,0.47,9.03,0.48,-0.50,-0.73,-1.07,8.52,8.53,8.55
2191.38,9.23,0.56,9.23,0.56,-0.59,-0.79,-1.08,8.64,8.65,8.67
2213.30,9.46,0.67,9.46,0.67,-0.69,-0.85,-1.08,8.77,8.77,8.79
2235.43,9.71,0.80,9.70,0.80,-0.81,-0.92,-1.09,8.90,8.90,8.91
2257.78,9.95,0.93,9.95,0.93,-0.93,-0.98,-1.09,9.01,9.02,9.02
2280.36,10.21,1.07,10.21,1.07,-1.07,-1.05,-1.10,9.13,9.13,9.14
2303.17,10.47,1.22,10.47,1.22,-1.22,-1.12,-1.10,9.25,9.25,9.25
2326.20,10.72,1.35,10.73,1.36,-1.36,-1.20,-1.10,9.36,9.37,9.37
2349.46,10.99,1.50,10.98,1.50,-1.49,-1.27,-1.10,9.50,9.49,9.49
2372.95,11.22,1.63,11.22,1.63,-1.61,-1.35,-1.11,9.61,9.60,9.59
2396.68,11.44,1.76,11.43,1.75,-1.72,-1.42,-1.11,9.72,9.71,9.68
2420.65,11.61,1.83,11.62,1.84,-1.81,-1.50,-1.11,9.80,9.80,9.78
2444.86,11.78,1.91,11.78,1.91,-1.90,-1.58,-1.11,9.88,9.88,9.87
2469.31,11.93,1.97,11.92,1.96,-1.97,-1.66,-1.12,9.96,9.95,9.96
2494.00,12.04,1.98,12.06,2.01,-2.03,-1.74,-1.12,10.00,10.02,10.06
2518.94,12.20,2.06,12.19,2.06,-2.09,-1.82,-1.13,10.11,10.10,10.14
2544.13,12.33,2.12,12.34,2.12,-2.14,-1.90,-1.13,10.19,10.20,10.21
2569.57,12.48,2.19,12.48,2.19,-2.18,-1.97,-1.14,10.30,10.31,10.29
2595.27,12.62,2.25,12.61,2.24,-2.21,-2.05,-1.15,10.41,10.39,10.37
2621.22,12.72,2.27,12.71,2.27,-2.25,-2.12,-1.16,10.47,10.47,10.45
2647.43,12.79,2.27,12.79,2.28,-2.27,-2.19,-1.16,10.51,10.52,10.52
2673.90,12.86,2.28,12.86,2.28,-2.30,-2.26,-1.18,10.56,10.56,10.58
2700.64,12.93,2.29,12.94,2.30,-2.31,-2.32,-1.19,10.62,10.62,10.64
2727.65,13.02,2.32,13.02,2.32,-2.33,-2.38,-1.20,10.69,10.69,10.70
2754.93,13.11,2.35,13.10,2.34,-2.34,-2.43,-1.21,10.77,10.76,10.76
2782.48,13.17,2.35,13.17,2.35,-2.36,-2.47,-1.23,10.81,10.81,10.82
2810.30,13.23,2.36,13.23,2.37,-2.38,-2.51,-1.25,10.85,10.85,10.87
2838.40,13.29,2.39,13.29,2.39,-2.40,-2.54,-1.27,10.89,10.89,10.90
2866.79,13.36,2.43,13.35,2.42,-2.42,-2.55,-1.29,10.94,10.94,10.93
2895.46,13.41,2.44,13.41,2.44,-2.43,-2.56,-1.31,10.98,10.97,10.97
2924.41,13.46,2.46,13.46,2.46,-2.45,-2.56,-1.33,11.01,11.01,11.00
2953.65,13.49,2.46,13.50,2.47,-2.46,-2.55,-1.35,11.03,11.04,11.03
2983.19,13.54,2.48,13.53,2.47,-2.47,-2.54,-1.38,11.07,11.06,11.06
3013.02,13.56,2.47,13.56,2.48,-2.48,-2.51,-1.40,11.08,11.08,11.09
3043.15,13.59,2.48,13.59,2.48,-2.50,-2.49,-1.43,11.09,11.09,11.11
3073.58,13.62,2.49,13.63,2.49,-2.51,-2.46,-1.46,11.11,11.12,11.13
3104.32,13.67,2.51,13.67,2.52,-2.52,-2.44,-1.49,11.15,11.15,11.16
3135.36,13.73,2.55,13.72,2.55,-2.54,-2.43,-1.52,11.19,11.18,11.18
3166.72,13.77,2.58,13.77,2.58,-2.56,-2.43,-1.55,11.21,11.21,11.19
3198.38,13.80,2.61,13.79,2.60,-2.58,-2.44,-1.58,11.21,11.21,11.19
3230.37,13.80,2.61,13.80,2.61,-2.61,-2.48,-1.61,11.18,11.19,11.19
3262.67,13.81,2.63,13.82,2.64,-2.65,-2.53,-1.64,11.16,11.17,11.18
3295.30,13.84,2.66,13.85,2.67,-2.69,-2.61,-1.67,11.15,11.16,11.18
3328.25,13.91,2.73,13.90,2.73,-2.73,-2.70,-1.70,11.18,11.17,11.18
3361.53,13.96,2.79,13.95,2.79,-2.78,-2.81,-1.73,11.18,11.17,11.17
3395.15,14.01,2.85,14.01,2.86,-2.85,-2.93,-1.76,11.16,11.16,11.16
3429.10,14.06,2.92,14.07,2.93,-2.93,-3.06,-1.79,11.13,11.14,11.14
3463.39,14.14,3.02,14.13,3.01,-3.02,-3.20,-1.82,11.12,11.11,11.12
3498.03,14.21,3.10,14.22,3.11,-3.12,-3.34,-1.84,11.09,11.09,11.11
3533.01,14.31,3.22,14.31,3.22,-3.23,-3.48,-1.86,11.08,11.07,11.09
3568.34,14.41,3.35,14.41,3.35,-3.35,-3.62,-1.88,11.05,11.05,11.06
3604.02,14.51,3.48,14.51,3.49,-3.48,-3.76,-1.90,11.02,11.03,11.03
3640.06,14.62,3.62,14.62,3.62,-3.62,-3.90,-1.92,11.00,10.99,11.00
3676.46,14.73,3.77,14.72,3.76,-3.77,-4.04,-1.92,10.96,10.95,10.96
3713.22,14.83,3.90,14.83,3.91,-3.92,-4.17,-1.93,10.91,10.91,10.93
3750.36,14.94,4.04,14.94,4.05,-4.07,-4.30,-1.93,10.87,10.87,10.90
3787.86,15.05,4.19,15.04,4.18,-4.21,-4.41,-1.93,10.84,10.83,10.86
3825.74,15.14,4.31,15.14,4.32,-4.33,-4.50,-1.92,10.80,10.81,10.83
3864.00,15.22,4.43,15.23,4.44,-4.43,-4.57,-1.90,10.79,10.79,10.79
3902.64,15.28,4.53,15.27,4.52,-4.50,-4.61,-1.88,10.78,10.77,10.75
3941.66,15.27,4.56,15.26,4.55,-4.52,-4.59,-1.85,10.75,10.74,10.71
3981.08,15.19,4.51,15.19,4.52,-4.50,-4.52,-1.81,10.69,10.70,10.68
4020.89,15.07,4.43,15.06,4.43,-4.41,-4.39,-1.77,10.66,10.65,10.64
4061.10,14.86,4.27,14.87,4.28,-4.26,-4.19,-1.72,10.60,10.60,10.59
4101.71,14.62,4.08,14.61,4.07,-4.05,-3.92,-1.67,10.57,10.56,10.54
4142.73,14.29,3.79,14.29,3.80,-3.78,-3.60,-1.61,10.51,10.52,10.50
4184.15,13.92,3.47,13.91,3.46,-3.44,-3.22,-1.54,10.48,10.47,10.45
4226.00,13.46,3.05,13.46,3.06,-3.05,-2.81,-1.47,10.41,10.41,10.41
4268.26,12.97,2.61,12.98,2.62,-2.61,-2.36,-1.39,10.36,10.36,10.36
4310.94,12.44,2.13,12.44,2.13,-2.13,-1.90,-1.30,10.31,10.31,10.31
4354.05,11.89,1.63,11.88,1.62,-1.61,-1.42,-1.21,10.28,10.27,10.26
4397.59,11.27,1.06,11.28,1.07,-1.06,-0.94,-1.11,10.20,10.22,10.21
4441.56,10.67,0.51,10.66,0.50,-0.49,-0.47,-1.01,10.18,10.17,10.16
4485.98,10.02,-0.09,10.02,-0.08,0.10,0.01,-0.90,10.12,10.12,10.11
4530.84,9.39,-0.66,9.39,-0.66,0.68,0.48,-0.79,10.07,10.07,10.05
4576.15,8.76,-1.24,8.77,-1.23,1.23,0.94,-0.68,9.99,10.00,10.00
4621.91,8.18,-1.76,8.17,-1.77,1.75,1.40,-0.56,9.93,9.92,9.94
4668.13,7.58,-2.31,7.59,-2.30,2.22,1.85,-0.43,9.80,9.81,9.89
4714.81,7.02,-2.81,7.01,-2.82,2.64,2.30,-0.31,9.66,9.65,9.83
4761.96,6.43,-3.34,6.44,-3.33,3.02,2.73,-0.18,9.45,9.46,9.77
4809.58,5.87,-3.85,5.87,-3.85,3.35,3.16,-0.05,9.22,9.22,9.72
4857.67,5.32,-4.34,5.31,-4.35,3.64,3.57,0.08,8.96,8.95,9.66
4906.25,4.75,-4.85,4.77,-4.83,3.91,3.97,0.22,8.66,8.67,9.60
4955.31,4.25,-5.29,4.24,-5.30,4.15,4.34,0.36,8.40,8.39,9.54
5004.87,3.73,-5.75,3.73,-5.75,4.40,4.69,0.50,8.13,8.13,9.48
5054.91,3.24,-6.20,3.24,-6.19,4.66,5.00,0.64,7.90,7.90,9.44
5105.46,2.77,-6.62,2.77,-6.61,4.93,5.27,0.79,7.70,7.70,9.39
5156.52,2.32,-7.02,2.32,-7.02,5.19,5.50,0.93,7.51,7.51,9.34
5208.08,1.89,-7.40,1.88,-7.40,5.42,5.68,1.08,7.31,7.30,9.29
5260.16,1.45,-7.79,1.45,-7.78,5.62,5.82,1.23,7.07,7.07,9.24
5312.77,1.04,-8.15,1.03,-8.15,5.78,5.91,1.38,6.82,6.81,9.19
5365.89,0.61,-8.52,0.62,-8.51,5.90,5.97,1.53,6.51,6.52,9.13
5419.55,0.23,-8.84,0.23,-8.84,5.98,5.99,1.69,6.21,6.21,9.07
5473.75,-0.16,-9.18,-0.16,-9.17,6.03,5.99,1.85,5.87,5.87,9.02
5528.49,-0.53,-9.49,-0.54,-9.49,6.05,5.97,2.01,5.52,5.51,8.96
5583.77,-0.92,-9.83,-0.91,-9.81,6.04,5.93,2.17,5.12,5.14,8.91
5639.61,-1.27,-10.12,-1.26,-10.12,6.02,5.90,2.33,4.75,4.76,8.85
5696.00,-1.61,-10.42,-1.60,-10.41,6.01,5.86,2.50,4.39,4.40,8.81
5752.96,-1.94,-10.70,-1.92,-10.68,6.00,5.82,2.67,4.06,4.08,8.76
5810.49,-2.24,-10.95,-2.23,-10.94,6.00,5.79,2.84,3.76,3.77,8.71
5868.60,-2.56,-11.22,-2.54,-11.20,6.00,5.76,3.02,3.44,3.46,8.66
5927.28,-2.86,-11.47,-2.83,-11.44,6.00,5.74,3.20,3.14,3.17,8.61
5986.56,-3.17,-11.73,-3.12,-11.67,6.00,5.72,3.38,2.83,2.88,8.56
6046.42,-3.42,-11.91,-3.39,-11.87,6.00,5.71,3.56,2.58,2.61,8.49
6106.89,-3.71,-12.11,-3.64,-12.04,6.00,5.71,3.75,2.29,2.36,8.40
6167.96,-3.96,-12.28,-3.87,-12.19,6.00,5.71,3.94,2.04,2.13,8.32
6229.64,-4.21,-12.45,-4.10,-12.33,6.00,5.72,4.14,1.79,1.90,8.24
6291.93,-4.44,-12.60,-4.30,-12.45,6.00,5.73,4.33,1.56,1.70,8.16
6354.85,-4.67,-12.75,-4.49,-12.55,6.00,5.74,4.54,1.33,1.51,8.08
6418.40,-4.88,-12.88,-4.67,-12.64,6.00,5.76,4.74,1.12,1.33,8.00
6482.58,-5.12,-13.03,-4.84,-12.72,6.00,5.79,4.95,0.88,1.16,7.91
6547.41,-5.34,-13.17,-5.00,-12.79,6.00,5.81,5.16,0.66,1.00,7.83
6612.88,-5.58,-13.33,-5.15,-12.85,6.00,5.84,5.38,0.42,0.85,7.75
6679.01,-5.79,-13.46,-5.29,-12.88,6.00,5.87,5.59,0.21,0.71,7.67
6745.80,-6.02,-13.59,-5.40,-12.87,6.00,5.90,5.81,-0.02,0.60,7.57
6813.26,-6.19,-13.65,-5.49,-12.84,6.00,5.93,6.03,-0.19,0.51,7.46
6881.39,-6.36,-13.71,-5.59,-12.80,6.00,5.97,6.26,-0.36,0.41,7.35
6950.21,-6.54,-13.79,-5.68,-12.76,6.00,6.00,6.48,-0.54,0.32,7.25
7019.71,-6.72,-13.86,-5.78,-12.72,6.00,6.04,6.70,-0.72,0.22,7.14
7089.91,-6.85,-13.88,-5.87,-12.68,6.00,6.07,6.92,-0.85,0.13,7.03
7160.81,-6.98,-13.88,-5.98,-12.63,6.00,6.11,7.13,-0.98,0.02,6.90
7232.41,-7.07,-13.83,-6.08,-12.59,6.00,6.14,7.34,-1.07,-0.08,6.76
7304.74,-7.17,-13.79,-6.19,-12.55,6.00,6.18,7.54,-1.17,-0.19,6.62
7377.79,-7.26,-13.74,-6.31,-12.52,6.00,6.21,7.73,-1.26,-0.31,6.48
7451.56,-7.34,-13.68,-6.42,-12.49,6.00,6.25,7.92,-1.34,-0.42,6.34
7526.08,-7.40,-13.60,-6.53,-12.45,6.00,6.28,8.08,-1.40,-0.53,6.20
7601.34,-7.45,-13.51,-6.64,-12.41,6.00,6.32,8.24,-1.45,-0.64,6.06
7677.35,-7.47,-13.40,-6.73,-12.36,6.00,6.35,8.37,-1.47,-0.73,5.93
7754.13,-7.47,-13.26,-6.82,-12.29,6.00,6.39,8.48,-1.47,-0.82,5.79
7831.67,-7.47,-13.12,-6.89,-12.22,6.00,6.42,8.57,-1.47,-0.89,5.65
7909.98,-7.47,-12.99,-6.96,-12.14,6.00,6.45,8.64,-1.47,-0.96,5.52
7989.08,-7.44,-12.82,-7.02,-12.04,6.00,6.48,8.68,-1.44,-1.02,5.38
8068.98,-7.43,-12.65,-7.06,-11.93,6.00,6.51,8.70,-1.43,-1.06,5.22
8149.67,-7.38,-12.43,-7.09,-11.81,6.00,6.54,8.69,-1.38,-1.09,5.05
8231.16,-7.34,-12.23,-7.11,-11.68,6.00,6.57,8.65,-1.34,-1.11,4.89
8313.47,-7.27,-11.99,-7.12,-11.53,6.00,6.59,8.59,-1.27,-1.12,4.72
8396.61,-7.21,-11.76,-7.12,-11.38,6.00,6.62,8.51,-1.21,-1.12,4.55
8480.57,-7.12,-11.51,-7.12,-11.22,6.00,6.65,8.41,-1.12,-1.12,4.39
8565.38,-7.01,-11.21,-7.11,-11.06,6.00,6.67,8.28,-1.01,-1.11,4.20
8651.03,-6.88,-10.90,-7.10,-10.89,6.00,6.69,8.14,-0.88,-1.10,4.02
8737.54,-6.75,-10.58,-7.08,-10.71,6.00,6.71,7.99,-0.75,-1.08,3.83
8824.92,-6.61,-10.25,-7.06,-10.54,6.00,6.73,7.82,-0.61,-1.06,3.64
8913.17,-6.46,-9.91,-7.04,-10.36,6.00,6.75,7.65,-0.46,-1.04,3.45
9002.30,-6.29,-9.55,-7.02,-10.18,6.00,6.77,7.46,-0.29,-1.02,3.26
9092.32,-6.12,-9.18,-7.00,-9.99,6.00,6.79,7.28,-0.12,-1.00,3.06
9183.25,-5.95,-8.80,-6.97,-9.81,6.00,6.81,7.09,0.05,-0.97,2.85
9275.08,-5.79,-8.43,-6.95,-9.63,6.00,6.82,6.90,0.21,-0.95,2.64
9367.83,-5.63,-8.06,-6.93,-9.45,6.00,6.83,6.70,0.37,-0.93,2.43
9461.51,-5.52,-7.74,-6.90,-9.26,6.00,6.85,6.51,0.48,-0.90,2.22
9556.12,-5.44,-7.45,-6.88,-9.08,6.00,6.86,6.33,0.56,-0.88,2.01
9651.68,-5.37,-7.15,-6.86,-8.90,6.00,6.87,6.14,0.63,-0.86,1.78
9748.20,-5.37,-6.93,-6.85,-8.73,6.00,6.87,5.96,0.63,-0.85,1.56
9845.68,-5.40,-6.74,-6.83,-8.55,6.00,6.88,5.79,0.60,-0.83,1.34
9944.14,-5.47,-6.59,-6.82,-8.38,6.00,6.89,5.62,0.53,-0.82,1.12
10043.58,-5.58,-6.48,-6.81,-8.21,6.00,6.89,5.45,0.42,-0.81,0.90
10144.02,-5.72,-6.42,-6.94,-8.15,6.00,6.90,5.30,0.28,-0.94,0.70
10245.46,-5.91,-6.41,-7.06,-8.08,6.00,6.90,5.14,0.09,-1.06,0.50
10347.91,-6.14,-6.44,-7.19,-8.01,6.00,6.90,5.00,-0.14,-1.19,0.30
10451.39,-6.39,-6.49,-7.32,-7.95,6.00,6.90,4.86,-0.39,-1.32,0.10
10555.91,-6.66,-6.56,-7.45,-7.88,6.00,6.89,4.73,-0.66,-1.45,-0.10
10661.46,-6.96,-6.66,-7.58,-7.81,6.00,6.89,4.60,-0.96,-1.58,-0.30
10768.08,-7.29,-6.78,-7.71,-7.75,6.00,6.88,4.49,-1.29,-1.71,-0.51
10875.76,-7.62,-6.90,-7.85,-7.68,6.00,6.88,4.38,-1.62,-1.85,-0.72
10984.52,-7.94,-7.01,-7.99,-7.61,6.00,6.87,4.27,-1.94,-1.99,-0.93
11094.36,-8.29,-7.15,-8.13,-7.54,6.00,6.86,4.18,-2.29,-2.13,-1.14
11205.31,-8.60,-7.25,-8.27,-7.47,6.00,6.85,4.09,-2.60,-2.27,-1.35
11317.36,-8.91,-7.34,-8.41,-7.41,6.00,6.83,4.01,-2.91,-2.41,-1.57
11430.53,-9.17,-7.38,-8.56,-7.34,6.00,6.82,3.94,-3.17,-2.56,-1.79
11544.84,-9.43,-7.42,-8.70,-7.27,6.00,6.80,3.87,-3.43,-2.70,-2.01
11660.29,-9.61,-7.38,-8.85,-7.20,6.00,6.78,3.81,-3.61,-2.85,-2.23
11776.89,-9.76,-7.31,-9.00,-7.13,6.00,6.76,3.76,-3.76,-3.00,-2.45
11894.66,-9.88,-7.24,-9.15,-7.06,6.00,6.74,3.72,-3.88,-3.15,-2.64
12013.60,-9.92,-7.08,-9.31,-6.99,6.00,6.71,3.69,-3.92,-3.31,-2.84
12133.74,-9.87,-6.84,-9.46,-6.92,6.00,6.69,3.66,-3.87,-3.46,-3.03
12255.08,-9.78,-6.56,-9.62,-6.85,6.00,6.66,3.65,-3.78,-3.62,-3.22
12377.63,-9.62,-6.21,-9.78,-6.78,6.00,6.63,3.64,-3.62,-3.78,-3.41
12501.41,-9.44,-5.84,-9.94,-6.71,6.00,6.60,3.64,-3.44,-3.94,-3.60
12626.42,-9.19,-5.39,-10.10,-6.64,6.00,6.56,3.65,-3.19,-4.10,-3.80
12752.68,-8.90,-4.91,-10.27,-6.57,6.00,6.53,3.68,-2.90,-4.27,-3.99
12880.21,-8.56,-4.37,-10.44,-6.50,6.00,6.49,3.71,-2.56,-4.44,-4.19
13009.01,-8.19,-3.81,-10.60,-6.43,6.01,6.45,3.75,-2.19,-4.60,-4.38
13139.10,-7.80,-3.22,-10.77,-6.35,6.01,6.40,3.81,-1.79,-4.76,-4.58
13270.49,-7.41,-2.64,-10.95,-6.28,6.01,6.36,3.88,-1.40,-4.93,-4.77
13403.20,-7.05,-2.10,-11.12,-6.21,6.01,6.31,3.96,-1.04,-5.11,-4.95
13537.23,-6.70,-1.57,-11.30,-6.14,6.00,6.26,4.06,-0.70,-5.30,-5.13
13672.60,-6.43,-1.11,-11.47,-6.07,5.98,6.20,4.17,-0.45,-5.49,-5.32
13809.33,-6.21,-0.71,-11.65,-5.99,5.95,6.15,4.30,-0.26,-5.71,-5.50
13947.42,-6.09,-0.41,-11.83,-5.92,5.90,6.09,4.44,-0.19,-5.93,-5.68
14086.90,-6.23,-0.37,-12.02,-5.85,5.85,6.03,4.61,-0.38,-6.17,-5.86
14227.77,-6.46,-0.43,-12.20,-5.77,5.79,5.96,4.79,-0.68,-6.41,-6.03
14370.04,-6.85,-0.65,-12.39,-5.70,5.71,5.89,5.00,-1.14,-6.67,-6.20
14513.74,-7.33,-0.96,-12.57,-5.63,5.64,5.82,5.22,-1.69,-6.94,-6.37
14658.88,-7.84,-1.30,-12.76,-5.55,5.56,5.74,5.46,-2.28,-7.21,-6.54
14805.47,-8.41,-1.70,-12.96,-5.48,5.48,5.66,5.72,-2.93,-7.48,-6.71
14953.52,-8.95,-2.07,-13.15,-5.40,5.40,5.58,5.99,-3.55,-7.75,-6.88
15103.06,-9.50,-2.41,-13.35,-5.33,5.33,5.50,6.26,-4.17,-8.02,-7.09
15254.09,-9.99,-2.68,-13.54,-5.25,5.25,5.41,6.54,-4.74,-8.29,-7.31
15406.63,-10.48,-2.94,-13.74,-5.18,5.18,5.31,6.80,-5.30,-8.56,-7.54
15560.70,-10.97,-3.21,-13.94,-5.10,5.10,5.21,7.02,-5.87,-8.84,-7.76
15716.30,-11.49,-3.50,-14.14,-5.03,5.03,5.11,7.19,-6.46,-9.12,-7.99
15873.47,-12.05,-3.84,-14.35,-4.95,4.95,5.00,7.29,-7.10,-9.40,-8.21
16032.20,-12.69,-4.24,-14.56,-4.88,4.88,4.89,7.29,-7.81,-9.68,-8.45
16192.52,-13.46,-4.69,-14.76,-4.80,4.80,4.77,7.18,-8.66,-9.96,-8.77
16354.45,-14.31,-5.23,-14.97,-4.72,4.72,4.65,6.96,-9.59,-10.25,-9.08
16517.99,-14.89,-5.50,-15.18,-4.65,4.65,4.53,6.65,-10.24,-10.54,-9.39
16683.17,-15.35,-5.64,-15.40,-4.57,4.57,4.40,6.25,-10.78,-10.83,-9.71
16850.01,-15.89,-5.87,-15.61,-4.49,4.49,4.26,5.81,-11.40,-11.12,-10.02
17018.51,-16.43,-6.08,-15.83,-4.42,4.42,4.12,5.33,-12.01,-11.41,-10.35
17188.69,-16.98,-6.21,-16.05,-4.34,4.34,3.97,4.84,-12.64,-11.71,-10.77
17360.58,-17.52,-6.32,-16.27,-4.26,4.26,3.82,4.36,-13.26,-12.01,-11.20
17534.18,-18.07,-6.44,-16.49,-4.18,4.18,3.66,3.89,-13.89,-12.31,-11.63
17709.53,-18.61,-6.56,-16.72,-4.10,4.10,3.50,3.46,-14.51,-12.61,-12.05
17886.62,-19.15,-6.67,-16.94,-4.03,4.03,3.33,3.05,-15.12,-12.92,-12.48
18065.49,-19.70,-6.75,-17.17,-3.95,3.95,3.15,2.68,-15.75,-13.22,-12.95
18246.14,-20.24,-6.75,-17.40,-3.87,3.87,2.97,2.34,-16.37,-13.53,-13.49
18428.60,-20.79,-6.75,-17.63,-3.79,3.79,2.79,2.03,-17.00,-13.84,-14.04
18612.89,-21.33,-6.75,-17.86,-3.71,3.71,2.60,1.76,-17.62,-14.15,-14.58
18799.02,-21.88,-6.75,-18.10,-3.63,3.63,2.41,1.51,-18.25,-14.47,-15.13
18987.01,-22.42,-6.75,-18.34,-3.55,3.55,2.21,1.29,-18.87,-14.78,-15.67
19176.88,-22.97,-6.67,-18.57,-3.47,3.47,2.01,1.09,-19.50,-15.10,-16.30
19368.65,-23.51,-6.57,-18.82,-3.39,3.39,1.81,0.92,-20.12,-15.42,-16.94
19562.33,-24.06,-6.49,-19.06,-3.31,3.31,1.61,0.76,-20.75,-15.75,-17.57
19757.96,-24.60,-6.40,-19.30,-3.23,3.23,1.41,0.63,-21.37,-16.07,-18.20
19955.54,-25.15,-6.31,-19.55,-3.15,3.15,1.22,0.51,-22.00,-16.40,-18.84
| CSV | 1 | vinzmc/AutoEq | results/oratory1990/harman_in-ear_2019v2/MEE Audio Planamic/MEE Audio Planamic.csv | [
"MIT"
] |
query Browse($offset:Int){browse(offset:$offset)}
| GraphQL | 3 | fuelingtheweb/prettier | tests/require-pragma/graphql/without-pragma.graphql | [
"MIT"
] |
my class CompUnit::Repository::FileSystemWithRecording is CompUnit::Repository::FileSystem {
my class CompUnit::PrecompilationStore::FileSystemWithRecording is CompUnit::PrecompilationStore::File {
method load-unit(CompUnit::PrecompilationId $compiler-id,
CompUnit::PrecompilationId $precomp-id)
{
my $unit = self.CompUnit::PrecompilationStore::File::load-unit($compiler-id, $precomp-id);
if $unit {
say('LOAD-UNIT ID:', $precomp-id.id, ' DEPS:', $unit.dependencies.map(*.id.id).join(','), ' PATH:', $unit.path.Str);
}
$unit;
}
}
has $!precomp-store;
method precomp-store(--> CompUnit::PrecompilationStore:D) {
$!precomp-store //= CompUnit::PrecompilationStore::FileSystemWithRecording.new(
:prefix(self.prefix.add('.precomp')),
)
}
}
| Perl6 | 4 | raydiak/rakudo | src/vm/js/CompUnit/Repository/FileSystemWithRecording.pm6 | [
"Artistic-2.0"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.