content stringlengths 4 1.04M | lang stringclasses 358
values | score int64 0 5 | repo_name stringlengths 5 114 | repo_path stringlengths 4 229 | repo_licenses listlengths 1 8 |
|---|---|---|---|---|---|
from utils import process_bucket_with_remote_server
import torch
import torch.distributed as c10d
def allreduce_hook(state, bucket):
r"""
A ddp communication hook that uses the process_group allreduce implementation.
Args:
state (object): maintains state during the training process
bucket (GradBucket): gradient bucket
"""
cref = state.cref
tensor = bucket.buffer()
tensors = [tensor / state.process_group.size()]
key = state.get_key(bucket.get_index())
if tensor.is_sparse:
tensor = tensor.coalesce()
tensor_type = "sparse" if tensor.is_sparse else "dense"
cref.record_start("hook_future_metric", key, f"{cref.backend}_{tensor_type}_allreduce")
fut = state.process_group.allreduce(tensors).get_future()
def callback(fut):
cref.record_end("hook_future_metric", key)
return fut.wait()
return fut.then(callback)
def hybrid_hook(state, bucket):
r"""
A ddp communication hook that uses Gloo default process
group for sparse gradients and NCCL non-default process
group for dense gradients.
Args:
state (object): maintains state during the training process
bucket (GradBucket): gradient bucket
"""
cref = state.cref
tensor = bucket.buffer()
key = state.get_key(bucket.get_index())
if tensor.is_sparse:
cref.record_start("hook_c10d_metric", key, "gloo_sparse_allreduce")
tensor = tensor.coalesce()
tensor = tensor / state.process_group.size()
c10d.all_reduce(tensor, op=c10d.ReduceOp.SUM)
cref.record_end("hook_c10d_metric", key)
fut = torch.futures.Future()
fut.set_result([tensor])
else:
cref.record_start("hook_future_metric", key, "nccl_dense_allreduce")
tensors = [bucket.buffer() / state.process_group.size()]
fut = state.process_group.allreduce(tensors).get_future()
def callback(fut):
cref.record_end("hook_future_metric", key)
return fut.wait()
fut = fut.then(callback)
return fut
def rpc_hook(state, bucket):
r"""
A ddp communication hook that averages sparse and dense tensors using
process_bucket_with_remote_server method.
Args:
state (object): maintains state during the training process
bucket (GradBucket): gradient bucket
"""
return process_bucket_with_remote_server(state, bucket)
def sparse_rpc_hook(state, bucket):
r"""
A ddp communication hook that uses the current backend allreduce
implementation for dense tensors and a server for sparse tensors.
Args:
state (object): maintains state during the training process
bucket (GradBucket): gradient bucket
"""
tensor = bucket.buffer()
if tensor.is_sparse:
return process_bucket_with_remote_server(state, bucket)
else:
cref = state.cref
tensor = [tensor / state.process_group.size()]
key = state.get_key(bucket.get_index())
cref.record_start("hook_future_metric", key, f"{cref.backend}_dense_allreduce")
fut = state.process_group.allreduce(tensor).get_future()
def callback(fut):
cref.record_end("hook_future_metric", key)
return fut.wait()
return fut.then(callback)
| Python | 5 | Hacky-DH/pytorch | benchmarks/distributed/rpc/parameter_server/trainer/hooks.py | [
"Intel"
] |
</style>
| HTML | 3 | karenetheridge/OpenAPI-Specification | scripts/md2html/style-finish.html | [
"Apache-2.0"
] |
[package]
name = "subdep-crate-name"
version = "0.1.0"
authors = ["calebcartwright"]
edition = "2018"
[dependencies]
| TOML | 3 | ohno418/rust | src/tools/rustfmt/tests/cargo-fmt/source/divergent-crate-dir-names/dependency-dir-name/subdep-dir-name/Cargo.toml | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
(defmodule mkr-util
(export all))
(defun get-version ()
(lutil:get-app-version 'mkr))
(defun get-versions ()
(++ (lutil:get-versions)
`(#(mkr ,(get-version)))))
| LFE | 3 | pzel/mkr | src/mkr-util.lfe | [
"MIT"
] |
module M {
var blah: int;
}
module User {
import M.{"blah"}; // expected to fail
proc main() {
writeln(blah);
}
}
| Chapel | 2 | jhh67/chapel | test/visibility/import/enablesUnqualified/multipleUnqualified/no-literal.chpl | [
"ECL-2.0",
"Apache-2.0"
] |
BEGIN{
now = systime()
format = "%Y/%m/%d %H:%M:%S"
}
{
split($1, DATE, "/")
split($2, TIME, ":")
t = mktime(DATE[1] " " DATE[2] " " DATE[3] " " TIME[1] " " TIME[2] " " TIME[3])
if (delta == "") {
delta = now - t
}
out = strftime(format, t + delta)
for (i = 3; i <= NF; i++) {
out = out OFS $i
}
print out
}
| Awk | 3 | rapaul/mtail | log_rewriter.awk | [
"Apache-2.0"
] |
a ← 3 2 ⍴ (⍳ 5), 0.2
b ← ⍉ a
×/ (+/ b)
⍝ 1 3 5 --> 9
⍝ 2 4 0.2 --> 6.2
⍝ ---
⍝ 9×6.2=55.8
| APL | 4 | mbudde/apltail | tests/test11.apl | [
"MIT"
] |
sub main()
' onKeyEvent without a focused node should not call anything
_brs_.triggerKeyEvent("OK", true)
' Send arbitrary string
this = createComponents()
this.child.setFocus(true)
_brs_.triggerKeyEvent("foo", true)
' All 3 component handlers are called
this = createComponents()
this.child.setFocus(true)
_brs_.triggerKeyEvent("OK", true)
' Only child and parent handlers are called
_brs_.mockComponentPartial("KeyEvents_Parent", {
getReturnValue: function() : return true : end function
})
this = createComponents()
this.child.setFocus(true)
_brs_.triggerKeyEvent("OK", true)
_brs_.resetMocks()
' Only child handler is called
_brs_.mockComponentPartial("KeyEvents_Child", {
getReturnValue: function() : return true : end function
})
this = createComponents()
this.child.setFocus(true)
_brs_.triggerKeyEvent("OK", true)
_brs_.resetMocks()
end sub
function createComponents() as object
grandparent = createObject("RoSGNode", "KeyEvents_Grandparent")
parent = grandparent.findNode("parent")
child = grandparent.findNode("child")
return {
grandparent: grandparent,
parent: parent,
child: child
}
end function
| Brightscript | 4 | lkipke/brs | test/e2e/resources/components/key-events/main.brs | [
"MIT"
] |
/*
*
* Copyright 2018 gRPC authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef GRPC_CORE_LIB_SECURITY_CREDENTIALS_ALTS_CHECK_GCP_ENVIRONMENT_H
#define GRPC_CORE_LIB_SECURITY_CREDENTIALS_ALTS_CHECK_GCP_ENVIRONMENT_H
namespace grpc_core {
namespace internal {
/**
* This method is a helper function that reads a file containing system bios
* data. Exposed for testing only.
*
* - bios_file: a file containing BIOS data used to determine GCE tenancy
* information.
*
* It returns a buffer containing the data read from the file.
*/
char* read_bios_file(const char* bios_file);
/**
* This method checks if system BIOS data contains Google-specific phrases.
* Exposed for testing only.
*
* - bios_data: a buffer containing system BIOS data.
*
* It returns true if the BIOS data contains Google-specific phrases, and false
* otherwise.
*/
bool check_bios_data(const char* bios_data);
} // namespace internal
} // namespace grpc_core
/**
* This method checks if a VM (Windows or Linux) is running within Google
* compute Engine (GCE) or not. It returns true if the VM is running in GCE and
* false otherwise.
*/
bool grpc_alts_is_running_on_gcp();
#endif /* GRPC_CORE_LIB_SECURITY_CREDENTIALS_ALTS_CHECK_GCP_ENVIRONMENT_H */
| C | 4 | nishadi1995/iGoviya | node_modules/grpc/deps/grpc/src/core/lib/security/credentials/alts/check_gcp_environment.h | [
"MIT"
] |
{
width: 900,
height: 1600,
outPath: './newsTitle.mp4',
defaults: {
layer: { fontPath: './assets/Patua_One/PatuaOne-Regular.ttf' },
},
clips: [
{ duration: 10, layers: [
{ type: 'image', path: './assets/91083241_573589476840991_4224678072281051330_n.jpg' },
{ type: 'news-title', text: 'BREAKING NEWS' },
{ type: 'subtitle', text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.', backgroundColor: 'rgba(0,0,0,0.5)' }
] },
],
} | JSON5 | 3 | aaverty/editly | examples/newsTitle.json5 | [
"MIT"
] |
// Copyright (c) 2016-2019 Bluespec, Inc. All Rights Reserved
package External_Control;
// ================================================================
// This package defines control request and response types from an
// external agent (usually GDB) to the SoC.
// ================================================================
// BSV library imports
// None
// ================================================================
// External control requests
typedef struct {
Bit #(8) op;
Bit #(64) arg1;
Bit #(64) arg2;
} Control_Req
deriving (Bits, FShow);
// ----------------
// Reads and writes to the Debug Module
Bit #(8) external_control_req_op_read_control_fabric = 10; // arg1: fabric_addr
Bit #(8) external_control_req_op_write_control_fabric = 11; // arg1: fabric_addr, arg2: data
// ================================================================
// External control responses
typedef struct {
Bit #(8) status;
Bit #(64) result;
} Control_Rsp
deriving (Bits, FShow);
Bit #(8) external_control_rsp_status_ok = 0;
Bit #(8) external_control_rsp_status_err = 1;
// ================================================================
endpackage
| Bluespec | 4 | Skydive/Piccolo | src_Testbench/SoC/External_Control.bsv | [
"Apache-2.0"
] |
/**
* Monitor.x10
*
* Rudra Distributed Learning Platform
*
* Copyright (c) IBM Corporation 2016
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of Rudra nor the names of its contributors may be used
* to endorse or promote products derived from this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY,OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package rudra.util;
import x10.util.concurrent.Lock;
import x10.xrx.Worker;
import x10.xrx.Runtime;
/**
* A monitor may be used to ensure atomic execution of conditional code
* blocks by multiple activities executing simultaneously.
* Exposes a declarative (condition, action) model to the application programmer so
* that s/he does not have to directly confront await / notify / and
* the while loop for conditions.
* @author vj
*/
public class Monitor(increase:Boolean) {
protected val lock = new Lock();
protected val threads = new Rail[Worker](x10.xrx.Runtime.MAX_THREADS);
protected var size:Int = 0n;
protected val logger = new Logger(Logger.ERROR);
public def this() { this(true);}
public def this(b:Boolean) { property(b);}
protected def lock() {
lock.lock();
}
protected def unlock() { lock.unlock();}
static val TRUE = ()=>true;
static val NOTHING = ()=>Unit();
/**
* Awaken all activities, if any, waiting on this monitor. Typically
* used when some condition has been set (such as a stream being
* closed) which will be checked by the awakened activities.
*/
public def awaken() { on(TRUE, NOTHING); }
/**
* Await this condition on the monitor.
*/
public def await(cond:()=>Boolean) { on(cond, NOTHING);}
/**
* Perform this action atomically with respect to all other
* actions executing on this monitor.
*/
public def atomicBlock[T](action:()=>T):T =on(TRUE, action);
/**
* The primary work horse of the monitor. An activity executing this
* method will block until such time as cond evaluates to true. It
* will then execute action.
*
* <p> cond should be side-effect free; it may be evaluated an unknown number
* of times. However, action() will be evaluated only once.
* <p> The last execution of cond and the execution of action are guaranteed
* to be done in a single step wtih respect to any other
* <tt>on</tt> operations on this monitor.
*
*/
public def on[T](cond:()=>Boolean, action:()=>T):T {
try {
// When an activity blocks, its underlying thread will block, with FJ
// scheduling. Therefore tell the runtime to ensure that there is another
// thread available to execute asyncs.
if (increase) Runtime.increaseParallelism();
lock();
logger.info(() => "Monitor: "+ this + " 0 trying cond " + cond);
while (!cond()) {
val thisWorker = Runtime.worker();
val s = size;
threads(size++)=thisWorker;
while(threads(s)==thisWorker) {
logger.info(suspending);
unlock();
Worker.park();
logger.info(retrying);
lock();
}
}
if (increase) Runtime.decreaseParallelism(1n);
logger.info(()=>"Monitor: " + this + " 1 action " + action);
val result=action();
// now awaken everyone to try.
val m=size;
logger.info(() => "Monitor : " + this + " 2 awakening size=" + m);
for (var i:Int = 0n; i<m; ++i) {
size--;
logger.info((i:Int)=> "Monitor: " + this + " 3 (" + i + ") waking "
+ threads(size).toString(), i);
threads(size).unpark();
threads(size)=null;
}
logger.info(() => "Monitor: " + this + " 4 done.");
return result;
} finally {
unlock();
}
}
static val waking = (t:String)=> "Monitor: waking " + t;
static val trying = ()=>"Monitor: Trying cond ";
static val retrying = ()=>"Monitor: Retrying cond ";
static val suspending = ()=>"Monitor: Suspending. ";
static val acting = ()=>"Monitor: Trying action.";
static val finished = ()=>"Monitor: done";
}
| X10 | 5 | milthorpe/rudra | x10/src/rudra/util/Monitor.x10 | [
"BSD-3-Clause"
] |
lexer grammar TestLexer;
import TestBaseLexer, TestBaseLexer2;
WS : Whitespace+ -> skip;
TEXT : ~[<&]+ ; // match any 16 bit char other than < and &
| ANTLR | 4 | maximmenshikov/antlr4 | antlr4-maven-plugin/src/test/projects/importsStandard/src/main/antlr4/test/TestLexer.g4 | [
"BSD-3-Clause"
] |
// Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// This assembly file exists to allow internal/cpu to call
// non-exported runtime functions that use "go:linkname". | GAS | 0 | SSSDNSY/go | src/internal/cpu/cpu.s | [
"BSD-3-Clause"
] |
extends /templates/common/table
block tableHeader
tr
th(data-i18n="general.name") Name
th(data-i18n="general.description") Description
th(data-i18n="polls.priority") Priority
th(data-i18n="general.date") Date
block tableBody
for data in documents
- data = data.attributes;
tr
td
a(href="/editor/poll/#{data.slug || data._id}")
| #{data.name}
td= data.description
td= data.priority
td= moment(data.created).fromNow()
| Jade | 3 | cihatislamdede/codecombat | app/templates/editor/poll/poll-search-table.jade | [
"CC-BY-4.0",
"MIT"
] |
#!/usr/bin/bash
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
cd $DIR
OUT=trace_
sudo ./tracebox -o $OUT --txt -c configs/scheduling.cfg
sudo chown $USER:$USER $OUT
| Shell | 3 | aolin480/openpilot | selfdrive/debug/profiling/perfetto/record.sh | [
"MIT"
] |
insert into 中文表 values (2345);
| SQL | 1 | suryatmodulus/tidb | br/tests/lightning_exotic_filenames/data/zwk.zwb.sql | [
"Apache-2.0",
"BSD-3-Clause"
] |
#!/usr/bin/awk -f
#---------------------------------------------
#
# generate-script.awk
#
# Simple AWK script to generate the XDG scripts, substituting the
# necessary text from other source files.
#
# Copyright 2006, Benedikt Meurer <benny@xfce.org>
#
# LICENSE:
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
#---------------------------------------------
# All lines from the input file should be printed
{
print
}
# The text from ../LICENSE should be inserted after
# the "# LICENSE:" line
/^# LICENSE:/ {
while (getline < "../LICENSE")
print
close ("../LICENSE")
}
# Insert the examples text from the .txt file
# after the "cat << _MANUALPAGE" line
/^cat << _MANUALPAGE/ {
# determine the name of the .txt file
txtfile = FILENAME
sub(/\.in$/, ".txt", txtfile)
# read the .txt file content
for (txtfile_print = 0; getline < txtfile; ) {
# if (match ($0, /^Examples/) != 0) {
# # print everything starting at the "Examples" line
# txtfile_print = 1
# }
# if (txtfile_print != 0) {
# print $0
# }
gsub("`","'")
gsub("—","-")
print $0
}
close (txtfile)
}
# Insert the usage text from the .txt file
# after the "cat << _USAGE" line
/^cat << _USAGE/ {
# determine the name of the .txt file
txtfile = FILENAME
sub(/\.in$/, ".txt", txtfile)
# read the .txt file content
for (txtfile_print = 0; getline < txtfile; ) {
if (match ($0, /^Name/) != 0) {
# skip empty line after "Name"
getline < txtfile
# from now on, print everything
txtfile_print = 1
}
else if (match ($0, /^Description/) != 0) {
# stop at "Description"
break
}
else if (txtfile_print != 0) {
gsub("—","-")
print $0
}
}
close (txtfile)
}
# Insert the xdg-utils-common.in content after
# the "#@xdg-utils-common@" line
/^#@xdg-utils-common@/ {
while (getline < "xdg-utils-common.in")
print
close ("xdg-utils-common.in")
}
| Awk | 4 | freedesktop-unofficial-mirror/xdg__xdg-utils | scripts/generate-help-script.awk | [
"MIT"
] |
.RootSvg:before {
display: block;
content: ' ';
background-image: url(./logo.svg);
background-size: 28px 28px;
height: 28px;
width: 28px;
}
| CSS | 4 | sandie06/create-react-app | test/fixtures/relative-paths/src/index.css | [
"MIT"
] |
syntax = "proto3";
package tensorflow.profiler.op_profile;
// Profile is the top-level data that summarizes a program.
message Profile {
reserved 2;
reserved "by_program_structure";
reserved 3;
reserved "per_program";
// Root of a profile broken down by instruction category.
Node by_category = 1;
// Root of a profile broken down by program.
Node by_program = 4;
// Device type.
string device_type = 5;
// Exclude idle ops.
Node by_category_exclude_idle = 6;
Node by_program_exclude_idle = 7;
}
// An entry in the profile tree. (An instruction, or set of instructions).
message Node {
string name = 1; // Semantics depend on contents.
Metrics metrics = 2; // May be omitted e.g. for fused instructions.
repeated Node children = 3; // Subjected to pruning.
// Details about what this node represents.
oneof contents {
InstructionCategory category = 4;
XLAInstruction xla = 5;
}
int32 num_children = 6; // Total number of children before pruning.
// A category of XLA instructions.
// name is a descriptive string, like "data formatting".
message InstructionCategory {}
// A single XLA instruction.
// name is the unique instruction id, like "%multiply.5".
message XLAInstruction {
string op = 1; // Opcode like %multiply
string expression = 2; // %multiply = [shape]multiply(operand1, operand2)
string provenance = 3; // Typically the TensorFlow operation name.
string category = 4;
// Describes the physical memory layout of the instruction's primary input.
// e.g. for a convolution, this analyzes the image and ignores the kernel.
LayoutAnalysis layout = 5;
message LayoutAnalysis {
// The physical data layout, from most-minor to most-major dimensions.
repeated Dimension dimensions = 1;
message Dimension {
int32 size = 1; // Size of the data in this dimension.
int32 alignment = 2; // Data must be padded to a multiple of alignment.
string semantics = 3; // What the dimension represents, e.g. "spatial".
}
}
}
}
// Measurements of an operation (or aggregated set of operations).
// Metrics are always "total" rather than "self".
message Metrics {
// Core-time taken by this operation, as a fraction of all operations.
double time = 1;
// Floating point computations performed by this operation, as a fraction of
// peak core FLOPS * program time. This representation has useful properties:
// - it is proportional to the number of floating point operations performed
// - utilization is flops/time
// - wasted potential flops is proportional to time - flops
// - it does not reveal the peak core FLOPS of the hardware
double flops = 2;
// The memory bandwidth used to load operands, as a fraction of
// thereotical memory bandwidth on the specific hardware.
double memory_bandwidth = 3;
double raw_time = 11; // Elapsed core-time in picoseconds.
double raw_flops = 12; // Total floating-point operations performed.
double raw_bytes_accessed = 13; // Total bytes accessed (include read/write).
}
| Protocol Buffer | 5 | EricRemmerswaal/tensorflow | tensorflow/core/profiler/protobuf/op_profile.proto | [
"Apache-2.0"
] |
module CloogleServer
import StdArray
import StdBool
import StdFile
from StdFunc import id, o
import StdList
import StdMisc
import StdOrdList
import StdOverloaded
import StdString
import StdTuple
from TCPIP import :: IPAddress, :: Port, instance toString IPAddress
import Clean.Types
import Clean.Types.Parse
import Clean.Types.Unify
import Clean.Types.Util
import Control.Applicative
import Control.Monad => qualified join
import Data.Error
import qualified Data.Foldable as Foldable
from Data.Foldable import class Foldable
from Data.Func import $, hyperstrict, instance Functor ((->) r), mapSt, seqSt, on, `on`
import Data.Functor
from Data.List import permutations
import Data.Maybe
import Data.Tuple
import System._Posix
import System.CommandLine
import System.Options
import System.Time
from Text import class Text(concat,join,toLowerCase), instance Text String, <+
import Text.GenJSON
import Cloogle.API
import Cloogle.DB
import Cloogle.Search
import Util.SimpleTCPServer
import Util.Cache
import Util.Memory
MAX_RESULTS :== 15
CACHE_PREFETCH :== 5
CACHE_NS_THRESHOLD :== 20000000
:: RequestCacheKey
= { c_unify :: Maybe Type
, c_name :: Maybe String
, c_className :: Maybe String
, c_typeName :: Maybe String
, c_using :: Maybe [String]
, c_modules :: Maybe [String]
, c_libraries :: Maybe [String]
, c_include_builtins :: Bool
, c_include_core :: Bool
, c_include_apps :: Bool
, c_page :: Int
}
derive JSONEncode Kind, Type, RequestCacheKey, TypeRestriction
derive JSONDecode Kind, Type, RequestCacheKey, TypeRestriction
instance toString RequestCacheKey
where toString rck = toString $ toJSON rck
toRequestCacheKey :: !*CloogleDB !Request -> *(!RequestCacheKey, !*CloogleDB)
toRequestCacheKey db r
# (alwaysUnique,db) = alwaysUniquePredicate db
# (allsyns,db) = allTypeSynonyms db
= (
{ c_unify = snd <$>
prepare_unification True alwaysUnique allsyns <$>
(parseType o fromString =<< r.unify)
, c_name = toLowerCase <$> r.Request.name
, c_className = r.className
, c_typeName = r.typeName
, c_using = r.using
, c_modules = sort <$> r.modules
, c_libraries = sort <$> r.libraries
, c_include_builtins = fromMaybe DEFAULT_INCLUDE_BUILTINS r.include_builtins
, c_include_core = fromMaybe DEFAULT_INCLUDE_CORE r.include_core
, c_include_apps = fromMaybe DEFAULT_INCLUDE_APPS r.include_apps
, c_page = fromMaybe 0 r.page
}, db)
fromRequestCacheKey :: RequestCacheKey -> Request
fromRequestCacheKey k =
{ unify = concat <$> print False <$> unprepare <$> k.c_unify
, name = k.c_name
, className = k.c_className
, typeName = k.c_typeName
, using = k.c_using
, modules = k.c_modules
, libraries = k.c_libraries
, include_builtins = Just k.c_include_builtins
, include_core = Just k.c_include_core
, include_apps = Just k.c_include_apps
, page = Just k.c_page
}
where
unprepare :: !Type -> Type
unprepare (Type t ts) = Type t (map unprepare ts)
unprepare (Func is t tc) = Func (map unprepare is) (unprepare t) (map unprepareTR tc)
unprepare (Var tv) = Var (tv % (1,size tv-1))
unprepare (Cons v ts) = Cons (v % (1,size v-1)) (map unprepare ts)
unprepare (Uniq t) = Uniq (unprepare t)
unprepare (Forall ts t tc) = Forall (map unprepare ts) (unprepare t) (map unprepareTR tc)
unprepare (Arrow mt) = Arrow (unprepare <$> mt)
unprepareTR :: !TypeRestriction -> TypeRestriction
unprepareTR (Instance c ts) = Instance c (map unprepare ts)
unprepareTR (Derivation g t) = Derivation g (unprepare t)
:: Options =
{ port :: !Int
, reload_cache :: !Bool
, test_file :: !Maybe FilePath
, test_options :: ![TestOption]
}
:: TestOption = NoUnify
instance zero Options
where
zero =
{ port = 31215
, reload_cache = False
, test_file = Nothing
, test_options = []
}
optionDescription :: Option Options
optionDescription = WithHelp True $ Options
[ Shorthand "-p" "--port" $ Option
"--port"
(\port opts -> case (toInt port, port) of
(0, "0") -> Error ["Cannot use port 0"]
(0, p) -> Error ["'" <+ p <+ "' is not an integer"]
(p, _) -> Ok {Options | opts & port=p})
"PORT"
"Listen on port PORT (default: 31215)"
, Flag
"--reload-cache"
(\opts -> Ok {opts & reload_cache=True})
"Reload the cache in the background"
, Option
"--test"
(\file opts -> Ok {opts & test_file=Just file})
"FILE"
"Load queries from FILE and execute them (do not start a TCP server)"
, Flag
"--test-no-unify"
(\opts -> Ok {opts & test_options=[NoUnify:opts.test_options]})
"Do not test queries that require unification (only used with --test)"
]
Start w
# ([prog:args], w) = getCommandLine w
# opts = parseOptions optionDescription args zero
| isError opts
# (io,w) = stdio w
# io = io <<< join "\n" (fromError opts) <<< "\n"
# (_,w) = fclose io w
= w
# opts = fromOk opts
# w = disableSwap w
#! (_,f,w) = fopen "types.json" FReadText w
#! (db,f) = openDB f
#! (ok,db) = isJustU db
| not ok
# (io,w) = stdio w
# io = io <<< "Could not open database\n"
# (_,w) = fclose io w
= w
#! db = hyperstrict (fromJust db)
| isJust opts.test_file
# (ok,f,w) = fopen (fromJust opts.test_file) FReadText w
| not ok
# (io,w) = stdio w
# io = io <<< "Could not open test file\n"
# (_,w) = fclose io w
= w
= test opts.test_options f db w
#! (db,w) = if opts.reload_cache (doInBackground reloadCache) id (db,w)
#! (_,w) = fclose f w
= serve
{ handler = handle
, logger = Just log
, port = opts.Options.port
, connect_timeout = Just 3600000 // 1h
, keepalive_timeout = Just 5000 // 5s
} db w
where
disableSwap :: *World -> *World
disableSwap w
# (ok,w) = mlockall (MCL_CURRENT bitor MCL_FUTURE) w
| ok = w
# (err,w) = errno w
# (io,w) = stdio w
# io = io <<< "Could not lock memory (" <<< err <<< "); process may get swapped out\n"
= snd $ fclose io w
handle :: !(Maybe Request) !*CloogleDB !*World -> *(!Response, !(!Maybe CacheKey, !MicroSeconds), !*CloogleDB, !*World)
handle Nothing db w = (err InvalidInput "Couldn't parse input", (Nothing,0), db, w)
handle (Just request=:{unify,name,page}) db w
#! (start,w) = nsTime w
//Check cache
#! (key,db) = toRequestCacheKey db request
#! (mbResponse, w) = readCache key w
| isJust mbResponse
# r = fromJust mbResponse
= respond start Nothing {r & return = if (r.return == 0) 1 r.return} db w
| isJust name && size (fromJust name) > 40
= respond start Nothing (err InvalidName "Function name too long") db w
| isJust name && any isSpace (fromString $ fromJust name)
= respond start Nothing (err InvalidName "Name cannot contain spaces") db w
| isJust unify && isNothing (parseType $ fromString $ fromJust unify)
= respond start Nothing (err InvalidType "Couldn't parse type") db w
| all isNothing [unify,name,request.typeName,request.className] && isNothing request.using
= respond start Nothing (err InvalidInput "Empty query") db w
// Results
#! drop_n = fromJust (page <|> pure 0) * MAX_RESULTS
#! (res,suggs,db) = searchWithSuggestions request db
#! suggs = if (isEmpty suggs) Nothing (Just suggs)
#! results = drop drop_n res
#! more = max 0 (length results - MAX_RESULTS)
// Suggestions
#! (db,w) = seqSt
(\(req,res) (db,w) -> let (k,db`) = toRequestCacheKey db req in (db`,cachePages k CACHE_PREFETCH 0 zero res w))
(fromMaybe [] suggs)
(db,w)
#! suggs = sortBy ((<) `on` snd) <$> map (appSnd length) <$> suggs
#! (results,nextpages) = splitAt MAX_RESULTS results
// Response
#! response = if (isEmpty results)
(err NoResults "No results")
{ zero
& data = results
, more_available = Just more
, suggestions = suggs
}
// Save page prefetches
#! w = cachePages key CACHE_PREFETCH 1 response nextpages w
// Save cache file
= respond start (Just key) response db w
where
respond :: !Timespec !(Maybe RequestCacheKey) !Response !*CloogleDB !*World ->
*(!Response, !(!Maybe CacheKey, !MicroSeconds), !*CloogleDB, !*World)
respond start key r db w
#! (end,w) = nsTime w
#! duration = 1000000000 * (end.tv_sec - start.tv_sec) + end.tv_nsec - start.tv_nsec
#! cache = duration > CACHE_NS_THRESHOLD
= (r, (if cache (cacheKey <$> key) Nothing, duration / 1000), db, case (cache,key) of
(True,Just k) -> writeCache LongTerm k r w
_ -> w)
cachePages :: !RequestCacheKey !Int !Int !Response ![Result] !*World -> *World
cachePages key _ _ _ [] w = w
cachePages key 0 _ _ _ w = w
cachePages key npages i response results w
# w = writeCache Brief req` resp` w
= cachePages key (npages - 1) (i + 1) response keep w
where
req` = { key & c_page = key.c_page + i }
resp` =
{ response
& more_available = Just $ max 0 (length results - MAX_RESULTS)
, data = give
}
(give,keep) = splitAt MAX_RESULTS results
reloadCache :: !*(!*CloogleDB, !*World) -> *(!*CloogleDB, !*World)
reloadCache (db,w)
# (ks,w) = allCacheKeys LongTerm w
= loop ks db w
where
loop :: ![RequestCacheKey] !*CloogleDB !*World -> *(!*CloogleDB, !*World)
loop [] db w = (db,w)
loop [k:ks] db w
# w = removeFromCache LongTerm k w
# (_,_,db,w) = handle (Just $ fromRequestCacheKey k) db w
# db = resetDB db
= loop ks db w
doInBackground :: (*a -> *a) *a -> *a
doInBackground f w
#! (pid,w) = fork w
| pid < 0 = abort "fork failed\n"
| pid > 0 = w // Parent: return directly
| pid == 0 = snd $ exit 0 $ f w // Child: do function
test :: ![TestOption] !*File !*CloogleDB !*World -> *World
test opts queries db w
# (e,queries) = fend queries
| e = w
# (qstring,queries) = freadline queries
# qstring = {c \\ c <-: qstring | c <> '\n' && c <> '\r'}
# q = parseSingleLineRequest qstring
| isError q
# w = snd $ fclose (stderr <<< "Warning: could not parse '" <<< qstring <<< "'; " <<< fromError q <<< "\n") w
= test opts queries db w
# q = fromOk q
| excluded opts q
= test opts queries db w
# (_,_,db,w) = handle (Just q) db w
= test opts queries db w
where
excluded :: ![TestOption] !Request -> Bool
excluded [] _ = False
excluded [NoUnify:os] r = isJust r.unify || excluded os r
:: LogMemory =
{ mem_ip :: IPAddress
, mem_time_start :: Tm
, mem_time_end :: Tm
, mem_request :: Maybe Request
}
instance zero LogMemory
where
zero =
{ mem_ip = undef
, mem_time_start = undef
, mem_time_end = undef
, mem_request = undef
}
:: MicroSeconds :== Int
:: LogMessage` :== LogMessage (Maybe Request) Response (Maybe CacheKey, MicroSeconds)
:: LogEntry =
{ ip :: String
, time_start :: (String, Int)
, time_end :: (String, Int)
, microseconds :: Int
, request :: Maybe Request
, cachekey :: Maybe String
, response_code :: Int
, results :: Int
}
derive JSONEncode LogEntry
log :: LogMessage` (Maybe LogMemory) *World -> *(Maybe LogMemory, *World)
log msg mem w
# mem = fromJust (mem <|> pure zero)
# (mem,w) = updateMemory msg mem w
| not needslog = (Just mem, w)
# (io,w) = stdio w
# io = io <<< toString (toJSON $ makeLogEntry msg mem) <<< "\n"
= (Just mem, snd (fclose io w))
where
needslog = case msg of (Sent _ _) = True; _ = False
updateMemory :: LogMessage` LogMemory *World -> *(LogMemory, *World)
updateMemory (Connected ip) s w = ({s & mem_ip=ip}, w)
updateMemory (Received r) s w
# (t,w) = localTime w
= ({s & mem_time_start=t, mem_request=r}, w)
updateMemory (Sent _ _) s w
# (t,w) = localTime w
= ({s & mem_time_end=t}, w)
updateMemory _ s w = (s,w)
makeLogEntry :: LogMessage` LogMemory -> LogEntry
makeLogEntry (Sent response (ck,us)) mem =
{ ip = toString mem.mem_ip
, time_start = (toString mem.mem_time_start, toInt $ timeGm mem.mem_time_start)
, time_end = (toString mem.mem_time_end, toInt $ timeGm mem.mem_time_end)
, microseconds = us
, request = mem.mem_request
, cachekey = ck
, response_code = response.return
, results = length response.data
}
err :: CloogleError String -> Response
err c m = { return = toInt c
, data = []
, msg = m
, more_available = Nothing
, suggestions = Nothing
}
| Clean | 4 | clean-cloogle/Cloogle | backend/CloogleServer.icl | [
"MIT"
] |
IfTest := UnitTest clone do(
/*
Object if := method(condition,
index = if(condition, 1, 2)
if(call message arguments size > index,
call sender doMessage(call message argAt(index), call sender)
,
if(condition, true, false)
)
)
*/
testIfEval := method(
v := false
if(v := true)
assertTrue(v)
)
testTrue := method(
assertTrue(if(true))
)
testTrueExpression := method(
assertEquals(if(true, 1), 1)
)
testTrue2Expressions := method(
assertEquals(if(true, 1, 2), 1)
)
testFalse := method(
assertFalse(if(false))
)
testFalseExpression := method(
assertFalse(if(false, 1))
)
testFalse2Expressions := method(
assertEquals(if(false, 1, 2), 2)
)
testNil := method(
assertFalse(if)
assertFalse(if())
assertFalse(if(nil))
)
testOtherTrue := method(
assertTrue(if(Object))
assertTrue(if(13))
assertTrue(if("foo"))
)
)
| Io | 4 | akluth/io | libs/iovm/tests/correctness/IfTest.io | [
"BSD-3-Clause"
] |
/*
Copyright (c) 2013 Advanced Micro Devices, Inc.
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it freely,
subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
//Originally written by Erwin Coumans
#include "Bullet3Collision/NarrowPhaseCollision/shared/b3RigidBodyData.h"
#include "Bullet3Dynamics/shared/b3IntegrateTransforms.h"
__kernel void
integrateTransformsKernel( __global b3RigidBodyData_t* bodies,const int numNodes, float timeStep, float angularDamping, float4 gravityAcceleration)
{
int nodeID = get_global_id(0);
if( nodeID < numNodes)
{
integrateSingleTransform(bodies,nodeID, timeStep, angularDamping,gravityAcceleration);
}
}
| OpenCL | 3 | N0hbdy/godot | thirdparty/bullet/Bullet3OpenCL/RigidBody/kernels/integrateKernel.cl | [
"CC-BY-3.0",
"Apache-2.0",
"MIT"
] |
label ccd0010:
call gl(0,"bgcc0000b")
call vsp(0,1)
with wipeleft
pause (500.0/1000.0)
call gl(0,"bgcc0011a")
call vsp(0,1)
with wipeleft
play bgm "bgm/bgm018.ogg"
太一 "「ほ……」"
"いろいろ動き回ってみた。"
"日曜日の部活。"
"世界最後の日に、皆で大団円を迎えるため。"
"だけど……困難さを感じた。"
"全員を和姦……じゃなくて和解させるには、そーとーなパズルが必要だ。"
"祠に向かう。"
call gl(0,"bgcc0016a")
call vsp(0,1)
with wipeleft
"大量のノート。"
"読み切れないほどの分量だ。"
"美希を手込め(表現に)にすると、霧がダメになる。"
"情報が増えるのは良いことだ。"
"けど増えすぎると、解析する時間がなくなる。"
"ジレンマだ。"
call gl(0,"bgcc0000c")
call vsp(0,1)
with wipeleft
"俺は夜中まで、頭を捻り続けた。"
voice "vfCCD0001you037"
曜子 "「太一」"
play se "SE019"
"背後から、ライトがつく。"
"懐中電灯だ。"
call gl(0,"bgcc0016b")
call gl(1,"TCHY0000c|tchy000x")
call vsp(1,1)
call vsp(0,1)
call gp(1,t=center)#x=180
with Dissolve(500.0/1000.0)
"そして曜子ちゃんだ。"
太一 "「んあ……明るい……」"
call gl(1,"TCHY0001c|tchy000x")
call vsp(1,1)
with dissolve
voice "vfCCD0001you038"
曜子 "「いくらその目でも、文字を読んでたら悪くするから」"
太一 "「ん……ごめん」"
call gl(1,"TCHY0000c|tchy000x")
call vsp(1,1)
with dissolve
voice "vfCCD0001you039"
曜子 "「なにか発見はあった?」"
太一 "「ない。知恵の輪に延々とハマってるみたいだ」"
call gl(1,"TCHY0001c|tchy000x")
call vsp(1,1)
with dissolve
voice "vfCCD0001you040"
曜子 "「そう、残念ね」"
太一 "「曜子ちゃんはこのノートを……」"
"問いかけて、口をつぐむ。"
"彼女に頼ることだろうか。"
太一 "「いいや。帰ろう」"
"立ち上がる。"
"ノートは一応、祠にしまう。"
"何冊かは手にする。読める分は。"
call gl(1,"TCHY0000c|tchy000x")
call vsp(1,1)
with dissolve
voice "vfCCD0001you041"
曜子 "「……一緒に帰っても、いい?」"
太一 "「いっつも監視してるくせに」"
call gl(1,"TCHY0001c|tchy000x")
call vsp(1,1)
with dissolve
voice "vfCCD0001you042"
曜子 "「ごめんなさい……」"
stop bgm
call gl(0,"bgcc0000d")
call vsp(0,1)
call vsp(1,0)
with Dissolve(500.0/1000.0)
pause (500.0/1000.0)
return
# | Ren'Py | 2 | fossabot/cross-channel_chinese-localization_project | AllPlatforms/scripts/ccd/ccd0010.rpy | [
"Apache-2.0"
] |
#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
struct Uniforms {
half4 colorGreen;
half4 colorRed;
half2x2 testMatrix2x2;
half3x3 testMatrix3x3;
};
struct Inputs {
};
struct Outputs {
half4 sk_FragColor [[color(0)]];
};
thread bool operator==(const half2x2 left, const half2x2 right);
thread bool operator!=(const half2x2 left, const half2x2 right);
thread bool operator==(const half3x3 left, const half3x3 right);
thread bool operator!=(const half3x3 left, const half3x3 right);
thread bool operator==(const half2x2 left, const half2x2 right) {
return all(left[0] == right[0]) &&
all(left[1] == right[1]);
}
thread bool operator!=(const half2x2 left, const half2x2 right) {
return !(left == right);
}
thread bool operator==(const half3x3 left, const half3x3 right) {
return all(left[0] == right[0]) &&
all(left[1] == right[1]) &&
all(left[2] == right[2]);
}
thread bool operator!=(const half3x3 left, const half3x3 right) {
return !(left == right);
}
fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
Outputs _out;
(void)_out;
bool _0_ok = true;
_0_ok = _0_ok && _uniforms.testMatrix2x2 == half2x2(half2(1.0h, 2.0h), half2(3.0h, 4.0h));
_0_ok = _0_ok && _uniforms.testMatrix3x3 == half3x3(half3(1.0h, 2.0h, 3.0h), half3(4.0h, 5.0h, 6.0h), half3(7.0h, 8.0h, 9.0h));
_0_ok = _0_ok && _uniforms.testMatrix2x2 != half2x2(100.0h);
_0_ok = _0_ok && _uniforms.testMatrix3x3 != half3x3(half3(9.0h, 8.0h, 7.0h), half3(6.0h, 5.0h, 4.0h), half3(3.0h, 2.0h, 1.0h));
_out.sk_FragColor = _0_ok ? _uniforms.colorGreen : _uniforms.colorRed;
return _out;
}
| Metal | 4 | fourgrad/skia | tests/sksl/shared/MatrixEquality.metal | [
"BSD-3-Clause"
] |
writeln("Hello, world!"); // print 'Hello, world!' to the console
| Chapel | 1 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/Chapel/hello.chpl | [
"MIT"
] |
% This is an example on how to build models with the COPASI backend API.
COPASI
%! assert(swig_this(CRootContainer.getRoot()) != 0)
% create a new datamodel
dataModel = CRootContainer.addDatamodel();
%! assert(CRootContainer.getDatamodelList().size() == 1);
% get the model from the datamodel
model = dataModel.getModel();
%! assert(swig_this(model) != 0);
% set the units for the model
% we want seconds as the time unit
% microliter as the volume units
% and nanomole as the substance units
model.setTimeUnit(CUnit_s);
model.setVolumeUnit(CUnit_microl);
model.setQuantityUnit(CUnit_nMol);
% we have to keep a set of all the initial values that are changed during
% the model building process
% They are needed after the model has been built to make sure all initial
% values are set to the correct initial value
changedObjects=ObjectStdVector();
% create a compartment with the name cell and an initial volume of 5.0
% microliter
compartment = model.createCompartment("cell", 5.0);
object = compartment.getInitialValueReference();
%! assert(swig_this(object) != 0);
changedObjects.push_back(object);
%! assert(swig_this(compartment) != 0);
%! assert(model.getCompartments().size() == 1);
% create a new metabolite with the name glucose and an inital
% concentration of 10 nanomol
% the metabolite belongs to the compartment we created and is is to be
% fixed
glucose = model.createMetabolite("glucose", compartment.getObjectName(), 10.0, CModelEntity_Status_FIXED);
%! assert(swig_this(glucose) != 0);
object = glucose.getInitialConcentrationReference();
%! assert(swig_this(object) != 0);
changedObjects.push_back(object);
%! assert(model.getMetabolites().size() == 1);
% create a second metabolite called glucose-6-phosphate with an initial
% concentration of 0. This metabolite is to be changed by reactions
g6p = model.createMetabolite("glucose-6-phosphate", compartment.getObjectName(), 0.0, CModelEntity_Status_REACTIONS);
%! assert(swig_this(g6p) != 0);
object = g6p.getInitialConcentrationReference();
%! assert(swig_this(object) != 0);
changedObjects.push_back(object);
%! assert(model.getMetabolites().size() == 2);
% another metabolite for ATP, also fixed
atp = model.createMetabolite("ATP", compartment.getObjectName(), 10.0, CModelEntity_Status_FIXED);
%! assert(swig_this(atp) != 0);
object = atp.getInitialConcentrationReference();
%! assert(swig_this(object) != 0);
changedObjects.push_back(object);
%! assert(model.getMetabolites().size() == 3);
% and one for ADP
adp = model.createMetabolite("ADP", compartment.getObjectName(), 0.0, CModelEntity_Status_REACTIONS);
%! assert(swig_this(adp) != 0);
object = adp.getInitialConcentrationReference();
%! assert(swig_this(object) != 0);
changedObjects.push_back(object);
%! assert(model.getMetabolites().size() == 4);
% now we create a reaction
reaction = model.createReaction("hexokinase");
%! assert(swig_this(reaction) != 0);
%! assert(model.getReactions().size() == 1);
% hexokinase converts glucose and ATP to glucose-6-phosphate and ADP
% we can set these on the chemical equation of the reaction
chemEq = reaction.getChemEq();
% glucose is a substrate with stoichiometry 1
chemEq.addMetabolite(glucose.getKey(), 1.0, CChemEq_SUBSTRATE);
% ATP is a substrate with stoichiometry 1
chemEq.addMetabolite(atp.getKey(), 1.0, CChemEq_SUBSTRATE);
% glucose-6-phosphate is a product with stoichiometry 1
chemEq.addMetabolite(g6p.getKey(), 1.0, CChemEq_PRODUCT);
% ADP is a product with stoichiometry 1
chemEq.addMetabolite(adp.getKey(), 1.0, CChemEq_PRODUCT);
%! assert(chemEq.getSubstrates().size() == 2);
%! assert(chemEq.getProducts().size() == 2);
% this reaction is to be irreversible
reaction.setReversible(false);
%! assert(reaction.isReversible() == false);
% now we ned to set a kinetic law on the reaction
% maybe constant flux would be OK
% we need to get the function from the function database
funDB = CRootContainer.getFunctionList();
%! assert(swig_this(funDB) != 0);
% it should be in the list of suitable functions
% lets get all suitable functions for an irreversible reaction with 2 substrates
% and 2 products
suitableFunctions = funDB.suitableFunctions(2, 2, TriFalse);
%! assert(len(suitableFunctions) > 0);
func=0;
iMax = suitableFunctions.size();
for i = 0:iMax
% we just assume that the only suitable function with Constant in
% it's name is the one we want
f=suitableFunctions(i);
if index(f.getObjectName(),"Constant") != 0
func=f;
break
endif
endfor
if (isstruct(func))
% we set the function
% the method should be smart enough to associate the reaction entities
% with the correct function parameters
reaction.setFunction(func);
%!assert(swig_this(reaction.getFunction()) != 0);
% constant flux has only one function parameter
%!assert(reaction.getFunctionParameters().size() == 1);
% so there should be only one entry in the parameter mapping as well
%!assert(len(reaction.getParameterMappings()) == 1);
parameterGroup = reaction.getParameters();
%!assert(parameterGroup.size() == 1);
parameter = parameterGroup.getParameter(0);
% make sure the parameter is a local parameter
%!assert(reaction.isLocalParameter(parameter.getObjectName()));
% now we set the value of the parameter to 0.5
parameter.setDblValue(0.5);
object = parameter.getValueReference();
%!assert(swig_this(object) != 0);
changedObjects.push_back(object);
else
error("Error. Could not find a kinetic law that contains the term \"Constant\".");
quit(1);
endif
% now we also create a separate reaction for the backwards reaction and
% set the kinetic law to irreversible mass action
% now we create a reaction
reaction = model.createReaction("hexokinase-backwards");
%! assert(swig_this(reaction) != 0);
%! assert(model.getReactions().size() == 2);
chemEq = reaction.getChemEq();
% glucose is a product with stoichiometry 1
chemEq.addMetabolite(glucose.getKey(), 1.0, CChemEq_PRODUCT);
% ATP is a product with stoichiometry 1
chemEq.addMetabolite(atp.getKey(), 1.0, CChemEq_PRODUCT);
% glucose-6-phosphate is a substrate with stoichiometry 1
chemEq.addMetabolite(g6p.getKey(), 1.0, CChemEq_SUBSTRATE);
% ADP is a substrate with stoichiometry 1
chemEq.addMetabolite(adp.getKey(), 1.0, CChemEq_SUBSTRATE);
%! assert(chemEq.getSubstrates().size() == 2);
%! assert(chemEq.getProducts().size() == 2);
% this reaction is to be irreversible
reaction.setReversible(false);
%! assert(reaction.isReversible() == false);
% now we ned to set a kinetic law on the reaction
massAction = funDB.findFunction("Mass action (irreversible)");
%! assert(swig_this(massAction) != 0);
% we set the function
% the method should be smart enough to associate the reaction entities
% with the correct function parameters
reaction.setFunction(massAction);
%! assert(swig_this(reaction.getFunction()) != 0);
%! assert(reaction.getFunctionParameters().size() == 2);
% so there should be two entries in the parameter mapping as well
%! assert(len(reaction.getParameterMappings()) == 2);
% mass action is a special case since the parameter mappings for the
% substrates (and products) are in a vector
% Let us create a global parameter that is determined by an assignment
% and that is used as the rate constant of the mass action kinetics
% it gets the name rateConstant and an initial value of 1.56
modelValue = model.createModelValue("rateConstant", 1.56);
%! assert(swig_this(modelValue) != 0);
object = modelValue.getInitialValueReference();
%! assert(swig_this(object) != 0);
changedObjects.push_back(object);
%! assert(model.getModelValues().size() == 1);
% set the status to assignment
modelValue.setStatus(CModelEntity_Status_ASSIGNMENT);
% the assignment does not have to make sense
modelValue.setExpression("1.0 / 4.0 + 2.0");
% now we have to adjust the parameter mapping in the reaction so
% that the kinetic law uses the global parameter we just created instead
% of the local one that is created by default
% The first parameter is the one for the rate constant, so we point it to
% the key of out model value
reaction.setParameterObject(0, modelValue);
% now we have to set the parameter mapping for the substrates
reaction.addParameterObject("substrate", g6p);
reaction.addParameterObject("substrate", adp);
% finally compile the model
% compile needs to be done before updating all initial values for
% the model with the refresh sequence
%model.compileIfNecessary();
% now that we are done building the model, we have to make sure all
% initial values are updated according to their dependencies
%model.updateInitialValues(changedObjects);
% save the model to a COPASI file
% we save to a file named example1.cps, we don't want a progress report
% and we want to overwrite any existing file with the same name
% Default tasks are automatically generated and will always appear in cps
% file unless they are explicitley deleted before saving.
dataModel.saveModel("example1.cps", true);
% export the model to an SBML file
% we save to a file named example1.xml, we want to overwrite any
% existing file with the same name and we want SBML L2V3
dataModel.exportSBML("example1.xml", true, 2, 3);
| Octave | 5 | SzVarga/COPASI | copasi/bindings/octave/examples/example1.oct | [
"Artistic-2.0"
] |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as DOM from 'vs/base/browser/dom';
import * as nls from 'vs/nls';
import { Disposable, DisposableStore } from 'vs/base/common/lifecycle';
import { IOpenerService } from 'vs/platform/opener/common/opener';
import { DiffElementViewModelBase, SideBySideDiffElementViewModel } from 'vs/workbench/contrib/notebook/browser/diff/diffElementViewModel';
import { DiffSide, INotebookTextDiffEditor } from 'vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser';
import { ICellOutputViewModel, IInsetRenderOutput, RenderOutputType } from 'vs/workbench/contrib/notebook/browser/notebookBrowser';
import { NotebookTextModel } from 'vs/workbench/contrib/notebook/common/model/notebookTextModel';
import { NotebookCellOutputsSplice } from 'vs/workbench/contrib/notebook/common/notebookCommon';
import { INotebookService } from 'vs/workbench/contrib/notebook/common/notebookService';
import { DiffNestedCellViewModel } from 'vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel';
import { ThemeIcon } from 'vs/platform/theme/common/themeService';
import { mimetypeIcon } from 'vs/workbench/contrib/notebook/browser/notebookIcons';
import { StandardKeyboardEvent } from 'vs/base/browser/keyboardEvent';
import { KeyCode } from 'vs/base/common/keyCodes';
import { IQuickInputService, IQuickPickItem } from 'vs/platform/quickinput/common/quickInput';
interface IMimeTypeRenderer extends IQuickPickItem {
index: number;
}
export class OutputElement extends Disposable {
readonly resizeListener = this._register(new DisposableStore());
domNode!: HTMLElement;
renderResult?: IInsetRenderOutput;
constructor(
private _notebookEditor: INotebookTextDiffEditor,
private _notebookTextModel: NotebookTextModel,
private _notebookService: INotebookService,
private _quickInputService: IQuickInputService,
private _diffElementViewModel: DiffElementViewModelBase,
private _diffSide: DiffSide,
private _nestedCell: DiffNestedCellViewModel,
private _outputContainer: HTMLElement,
readonly output: ICellOutputViewModel
) {
super();
}
render(index: number, beforeElement?: HTMLElement) {
const outputItemDiv = document.createElement('div');
let result: IInsetRenderOutput | undefined = undefined;
const [mimeTypes, pick] = this.output.resolveMimeTypes(this._notebookTextModel, undefined);
const pickedMimeTypeRenderer = mimeTypes[pick];
if (mimeTypes.length > 1) {
outputItemDiv.style.position = 'relative';
const mimeTypePicker = DOM.$('.multi-mimetype-output');
mimeTypePicker.classList.add(...ThemeIcon.asClassNameArray(mimetypeIcon));
mimeTypePicker.tabIndex = 0;
mimeTypePicker.title = nls.localize('mimeTypePicker', "Choose a different output mimetype, available mimetypes: {0}", mimeTypes.map(mimeType => mimeType.mimeType).join(', '));
outputItemDiv.appendChild(mimeTypePicker);
this.resizeListener.add(DOM.addStandardDisposableListener(mimeTypePicker, 'mousedown', async e => {
if (e.leftButton) {
e.preventDefault();
e.stopPropagation();
await this.pickActiveMimeTypeRenderer(this._notebookTextModel, this.output);
}
}));
this.resizeListener.add((DOM.addDisposableListener(mimeTypePicker, DOM.EventType.KEY_DOWN, async e => {
const event = new StandardKeyboardEvent(e);
if ((event.equals(KeyCode.Enter) || event.equals(KeyCode.Space))) {
e.preventDefault();
e.stopPropagation();
await this.pickActiveMimeTypeRenderer(this._notebookTextModel, this.output);
}
})));
}
const innerContainer = DOM.$('.output-inner-container');
DOM.append(outputItemDiv, innerContainer);
if (mimeTypes.length !== 0) {
const renderer = this._notebookService.getRendererInfo(pickedMimeTypeRenderer.rendererId);
result = renderer
? { type: RenderOutputType.Extension, renderer, source: this.output, mimeType: pickedMimeTypeRenderer.mimeType }
: this._renderMissingRenderer(this.output, pickedMimeTypeRenderer.mimeType);
this.output.pickedMimeType = pickedMimeTypeRenderer;
}
this.domNode = outputItemDiv;
this.renderResult = result;
if (!result) {
// this.viewCell.updateOutputHeight(index, 0);
return;
}
if (beforeElement) {
this._outputContainer.insertBefore(outputItemDiv, beforeElement);
} else {
this._outputContainer.appendChild(outputItemDiv);
}
this._notebookEditor.createOutput(
this._diffElementViewModel,
this._nestedCell,
result,
() => this.getOutputOffsetInCell(index),
this._diffElementViewModel instanceof SideBySideDiffElementViewModel
? this._diffSide
: this._diffElementViewModel.type === 'insert' ? DiffSide.Modified : DiffSide.Original
);
}
private _renderMissingRenderer(viewModel: ICellOutputViewModel, preferredMimeType: string | undefined): IInsetRenderOutput {
if (!viewModel.model.outputs.length) {
return this._renderMessage(viewModel, nls.localize('empty', "Cell has no output"));
}
if (!preferredMimeType) {
const mimeTypes = viewModel.model.outputs.map(op => op.mime);
const mimeTypesMessage = mimeTypes.join(', ');
return this._renderMessage(viewModel, nls.localize('noRenderer.2', "No renderer could be found for output. It has the following mimetypes: {0}", mimeTypesMessage));
}
return this._renderSearchForMimetype(viewModel, preferredMimeType);
}
private _renderSearchForMimetype(viewModel: ICellOutputViewModel, mimeType: string): IInsetRenderOutput {
const query = `@tag:notebookRenderer ${mimeType}`;
return {
type: RenderOutputType.Html,
source: viewModel,
htmlContent: `<p>No renderer could be found for mimetype "${mimeType}", but one might be available on the Marketplace.</p>
<a href="command:workbench.extensions.search?%22${query}%22" class="monaco-button monaco-text-button" tabindex="0" role="button" style="padding: 8px; text-decoration: none; color: rgb(255, 255, 255); background-color: rgb(14, 99, 156); max-width: 200px;">Search Marketplace</a>`
};
}
private _renderMessage(viewModel: ICellOutputViewModel, message: string): IInsetRenderOutput {
return { type: RenderOutputType.Html, source: viewModel, htmlContent: `<p>${message}</p>` };
}
private async pickActiveMimeTypeRenderer(notebookTextModel: NotebookTextModel, viewModel: ICellOutputViewModel) {
const [mimeTypes, currIndex] = viewModel.resolveMimeTypes(notebookTextModel, undefined);
const items = mimeTypes.filter(mimeType => mimeType.isTrusted).map((mimeType, index): IMimeTypeRenderer => ({
label: mimeType.mimeType,
id: mimeType.mimeType,
index: index,
picked: index === currIndex,
detail: this.generateRendererInfo(mimeType.rendererId),
description: index === currIndex ? nls.localize('curruentActiveMimeType', "Currently Active") : undefined
}));
const picker = this._quickInputService.createQuickPick();
picker.items = items;
picker.activeItems = items.filter(item => !!item.picked);
picker.placeholder = items.length !== mimeTypes.length
? nls.localize('promptChooseMimeTypeInSecure.placeHolder', "Select mimetype to render for current output. Rich mimetypes are available only when the notebook is trusted")
: nls.localize('promptChooseMimeType.placeHolder', "Select mimetype to render for current output");
const pick = await new Promise<number | undefined>(resolve => {
picker.onDidAccept(() => {
resolve(picker.selectedItems.length === 1 ? (picker.selectedItems[0] as IMimeTypeRenderer).index : undefined);
picker.dispose();
});
picker.show();
});
if (pick === undefined) {
return;
}
if (pick !== currIndex) {
// user chooses another mimetype
const index = this._nestedCell.outputsViewModels.indexOf(viewModel);
const nextElement = this.domNode.nextElementSibling;
this.resizeListener.clear();
const element = this.domNode;
if (element) {
element.parentElement?.removeChild(element);
this._notebookEditor.removeInset(
this._diffElementViewModel,
this._nestedCell,
viewModel,
this._diffSide
);
}
viewModel.pickedMimeType = mimeTypes[pick];
this.render(index, nextElement as HTMLElement);
}
}
private generateRendererInfo(renderId: string): string {
const renderInfo = this._notebookService.getRendererInfo(renderId);
if (renderInfo) {
const displayName = renderInfo.displayName !== '' ? renderInfo.displayName : renderInfo.id;
return `${displayName} (${renderInfo.extensionId.value})`;
}
return nls.localize('builtinRenderInfo', "built-in");
}
getCellOutputCurrentIndex() {
return this._diffElementViewModel.getNestedCellViewModel(this._diffSide).outputs.indexOf(this.output.model);
}
updateHeight(index: number, height: number) {
this._diffElementViewModel.updateOutputHeight(this._diffSide, index, height);
}
getOutputOffsetInContainer(index: number) {
return this._diffElementViewModel.getOutputOffsetInContainer(this._diffSide, index);
}
getOutputOffsetInCell(index: number) {
return this._diffElementViewModel.getOutputOffsetInCell(this._diffSide, index);
}
}
export class OutputContainer extends Disposable {
private _outputEntries = new Map<ICellOutputViewModel, OutputElement>();
constructor(
private _editor: INotebookTextDiffEditor,
private _notebookTextModel: NotebookTextModel,
private _diffElementViewModel: DiffElementViewModelBase,
private _nestedCellViewModel: DiffNestedCellViewModel,
private _diffSide: DiffSide,
private _outputContainer: HTMLElement,
@INotebookService private _notebookService: INotebookService,
@IQuickInputService private readonly _quickInputService: IQuickInputService,
@IOpenerService readonly _openerService: IOpenerService
) {
super();
this._register(this._diffElementViewModel.onDidLayoutChange(() => {
this._outputEntries.forEach((value, key) => {
const index = _nestedCellViewModel.outputs.indexOf(key.model);
if (index >= 0) {
const top = this._diffElementViewModel.getOutputOffsetInContainer(this._diffSide, index);
value.domNode.style.top = `${top}px`;
}
});
}));
this._register(this._nestedCellViewModel.textModel.onDidChangeOutputs(splice => {
this._updateOutputs(splice);
}));
}
private _updateOutputs(splice: NotebookCellOutputsSplice) {
const removedKeys: ICellOutputViewModel[] = [];
this._outputEntries.forEach((value, key) => {
if (this._nestedCellViewModel.outputsViewModels.indexOf(key) < 0) {
// already removed
removedKeys.push(key);
// remove element from DOM
this._outputContainer.removeChild(value.domNode);
this._editor.removeInset(this._diffElementViewModel, this._nestedCellViewModel, key, this._diffSide);
}
});
removedKeys.forEach(key => {
this._outputEntries.get(key)?.dispose();
this._outputEntries.delete(key);
});
let prevElement: HTMLElement | undefined = undefined;
const outputsToRender = this._nestedCellViewModel.outputsViewModels;
outputsToRender.reverse().forEach(output => {
if (this._outputEntries.has(output)) {
// already exist
prevElement = this._outputEntries.get(output)!.domNode;
return;
}
// newly added element
const currIndex = this._nestedCellViewModel.outputsViewModels.indexOf(output);
this._renderOutput(output, currIndex, prevElement);
prevElement = this._outputEntries.get(output)?.domNode;
});
}
render() {
// TODO, outputs to render (should have a limit)
for (let index = 0; index < this._nestedCellViewModel.outputsViewModels.length; index++) {
const currOutput = this._nestedCellViewModel.outputsViewModels[index];
// always add to the end
this._renderOutput(currOutput, index, undefined);
}
}
showOutputs() {
for (let index = 0; index < this._nestedCellViewModel.outputsViewModels.length; index++) {
const currOutput = this._nestedCellViewModel.outputsViewModels[index];
// always add to the end
this._editor.showInset(this._diffElementViewModel, currOutput.cellViewModel, currOutput, this._diffSide);
}
}
hideOutputs() {
this._outputEntries.forEach((outputElement, cellOutputViewModel) => {
this._editor.hideInset(this._diffElementViewModel, this._nestedCellViewModel, cellOutputViewModel);
});
}
private _renderOutput(currOutput: ICellOutputViewModel, index: number, beforeElement?: HTMLElement) {
if (!this._outputEntries.has(currOutput)) {
this._outputEntries.set(currOutput, new OutputElement(this._editor, this._notebookTextModel, this._notebookService, this._quickInputService, this._diffElementViewModel, this._diffSide, this._nestedCellViewModel, this._outputContainer, currOutput));
}
const renderElement = this._outputEntries.get(currOutput)!;
renderElement.render(index, beforeElement);
}
}
| TypeScript | 4 | sbj42/vscode | src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.ts | [
"MIT"
] |
#version 310 es
#extension GL_EXT_shader_io_blocks : require
layout(location = 0) out VertexOut
{
vec4 color;
vec3 normal;
} vout;
layout(location = 0) in vec4 Position;
void main()
{
gl_Position = Position;
vout.color = vec4(1.0);
vout.normal = vec3(0.5);
}
| GLSL | 4 | Alan-love/filament | third_party/spirv-cross/shaders/legacy/vert/io-block.legacy.vert | [
"Apache-2.0"
] |
[
(line_comment)
(block_comment)
] @comment
| Scheme | 0 | hmac/nvim-treesitter | queries/supercollider/injections.scm | [
"Apache-2.0"
] |
struct Cookbook {
1: string name
}
const Cookbook cookbook = Cookbook
| Thrift | 1 | JonnoFTW/thriftpy2 | tests/parser-cases/e_value_ref_2.thrift | [
"MIT"
] |
(kicad_pcb (version 4) (host pcbnew "(2014-07-09 BZR 4988)-product")
(general
(links 166)
(no_connects 0)
(area 155.904372 110.399999 224.285714 145.700001)
(thickness 1.6)
(drawings 32)
(tracks 748)
(zones 0)
(modules 44)
(nets 80)
)
(page A4)
(layers
(0 F.Cu signal)
(1 Inner2.Cu signal)
(2 Inner1.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(44 Edge.Cuts user)
)
(setup
(last_trace_width 0.2032)
(user_trace_width 0.2032)
(user_trace_width 0.254)
(user_trace_width 0.3048)
(user_trace_width 0.381)
(trace_clearance 0.1778)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2032)
(segment_width 0.2)
(edge_width 0.1)
(via_size 1.27)
(via_drill 0.635)
(via_min_size 0.889)
(via_min_drill 0.508)
(uvia_size 0.508)
(uvia_drill 0.127)
(uvias_allowed no)
(uvia_min_size 0.508)
(uvia_min_drill 0.127)
(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 1 1.2)
(pad_drill 0.5)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements 7FFFFF7F)
(pcbplotparams
(layerselection 0x00030_80000001)
(usegerberextensions true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask true)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory gerber))
)
(net 0 "")
(net 1 GND)
(net 2 "Net-(C17-Pad1)")
(net 3 +3.3VDAC)
(net 4 "Net-(C18-Pad1)")
(net 5 /CLK54)
(net 6 /CSEL)
(net 7 "Net-(P1-Pad5)")
(net 8 "Net-(P1-Pad6)")
(net 9 /VDATA0)
(net 10 /VDATA1)
(net 11 /VDATA2)
(net 12 /VDATA3)
(net 13 /VDATA4)
(net 14 /VDATA5)
(net 15 /VDATA6)
(net 16 /VDATA7)
(net 17 /LRCK)
(net 18 /ADATA)
(net 19 /BCLK)
(net 20 /HSYNC)
(net 21 /VSYNC)
(net 22 /CSYNC)
(net 23 /TMS)
(net 24 /TCK)
(net 25 /TDI)
(net 26 /TDO)
(net 27 "Net-(R1-Pad1)")
(net 28 "Net-(R5-Pad1)")
(net 29 /DACSYNCn)
(net 30 /DACCLOCK)
(net 31 /EXTHSYNCn)
(net 32 /EXTVSYNCn)
(net 33 /EXTCSYNCn)
(net 34 "Net-(U1-Pad98)")
(net 35 /G0)
(net 36 /G1)
(net 37 /G2)
(net 38 /G3)
(net 39 /G4)
(net 40 /G5)
(net 41 /G6)
(net 42 /G7)
(net 43 /B4)
(net 44 /B5)
(net 45 /B6)
(net 46 /B7)
(net 47 /R0)
(net 48 /R1)
(net 49 /R2)
(net 50 /R3)
(net 51 /R4)
(net 52 /R5)
(net 53 /R6)
(net 54 /R7)
(net 55 /B0)
(net 56 /B1)
(net 57 /B2)
(net 58 /B3)
(net 59 "Net-(U2-Pad13)")
(net 60 "Net-(U2-Pad25)")
(net 61 "Net-(U2-Pad37)")
(net 62 "Net-(U2-Pad24)")
(net 63 "Net-(JP1-Pad1)")
(net 64 /Rout)
(net 65 /Gout)
(net 66 /BOut)
(net 67 "Net-(U4-Pad8)")
(net 68 "Net-(U4-Pad10)")
(net 69 "Net-(U4-Pad12)")
(net 70 +3.3V)
(net 71 /SPARE1)
(net 72 /SPARE2)
(net 73 /SPARE3)
(net 74 /SPARE4)
(net 75 "Net-(P3-Pad4)")
(net 76 /SPARE5)
(net 77 /SPARE6)
(net 78 /SPARE7)
(net 79 /SPARE8)
(net_class Default "This is the default net class."
(clearance 0.1778)
(trace_width 0.2032)
(via_dia 1.27)
(via_drill 0.635)
(uvia_dia 0.508)
(uvia_drill 0.127)
(add_net +3.3V)
(add_net /ADATA)
(add_net /B0)
(add_net /B1)
(add_net /B2)
(add_net /B3)
(add_net /B4)
(add_net /B5)
(add_net /B6)
(add_net /B7)
(add_net /BCLK)
(add_net /BOut)
(add_net /CLK54)
(add_net /CSEL)
(add_net /CSYNC)
(add_net /DACCLOCK)
(add_net /DACSYNCn)
(add_net /EXTCSYNCn)
(add_net /EXTHSYNCn)
(add_net /EXTVSYNCn)
(add_net /G0)
(add_net /G1)
(add_net /G2)
(add_net /G3)
(add_net /G4)
(add_net /G5)
(add_net /G6)
(add_net /G7)
(add_net /Gout)
(add_net /HSYNC)
(add_net /LRCK)
(add_net /R0)
(add_net /R1)
(add_net /R2)
(add_net /R3)
(add_net /R4)
(add_net /R5)
(add_net /R6)
(add_net /R7)
(add_net /Rout)
(add_net /SPARE1)
(add_net /SPARE2)
(add_net /SPARE3)
(add_net /SPARE4)
(add_net /SPARE5)
(add_net /SPARE6)
(add_net /SPARE7)
(add_net /SPARE8)
(add_net /TCK)
(add_net /TDI)
(add_net /TDO)
(add_net /TMS)
(add_net /VDATA0)
(add_net /VDATA1)
(add_net /VDATA2)
(add_net /VDATA3)
(add_net /VDATA4)
(add_net /VDATA5)
(add_net /VDATA6)
(add_net /VDATA7)
(add_net /VSYNC)
(add_net "Net-(C17-Pad1)")
(add_net "Net-(C18-Pad1)")
(add_net "Net-(JP1-Pad1)")
(add_net "Net-(P1-Pad5)")
(add_net "Net-(P1-Pad6)")
(add_net "Net-(P3-Pad4)")
(add_net "Net-(R1-Pad1)")
(add_net "Net-(R5-Pad1)")
(add_net "Net-(U1-Pad98)")
(add_net "Net-(U2-Pad13)")
(add_net "Net-(U2-Pad24)")
(add_net "Net-(U2-Pad25)")
(add_net "Net-(U2-Pad37)")
(add_net "Net-(U4-Pad10)")
(add_net "Net-(U4-Pad12)")
(add_net "Net-(U4-Pad8)")
)
(net_class Power ""
(clearance 0.1778)
(trace_width 0.381)
(via_dia 1.27)
(via_drill 0.635)
(uvia_dia 0.508)
(uvia_drill 0.127)
(add_net +3.3VDAC)
(add_net GND)
)
(module SMD_Packages:TQFP_100 locked placed (layer F.Cu) (tedit 53B1CC34) (tstamp 53B5A2B8)
(at 192 122.5)
(descr "Module SMD TQFP 100 Pins")
(tags "CMS TQFP")
(path /53AFCC20)
(attr smd)
(fp_text reference U1 (at 7.75 7.75) (layer F.SilkS)
(effects (font (size 1.27 1.016) (thickness 0.254)))
)
(fp_text value MachXO2-256-TQ100 (at 0 2.54) (layer F.SilkS) hide
(effects (font (size 1.524 1.016) (thickness 0.2032)))
)
(fp_circle (center 6.096 -6.477) (end 6.096 -6.985) (layer F.SilkS) (width 0.2032))
(fp_line (start 6.985 -6.35) (end 6.35 -6.985) (layer F.SilkS) (width 0.2032))
(fp_line (start -6.985 -6.731) (end -6.731 -6.985) (layer F.SilkS) (width 0.2032))
(fp_line (start -6.985 6.731) (end -6.731 6.985) (layer F.SilkS) (width 0.2032))
(fp_line (start 6.731 6.985) (end 6.985 6.731) (layer F.SilkS) (width 0.2032))
(fp_line (start 6.35 -6.985) (end -6.731 -6.985) (layer F.SilkS) (width 0.2032))
(fp_line (start -6.985 -6.731) (end -6.985 6.731) (layer F.SilkS) (width 0.2032))
(fp_line (start -6.731 6.985) (end 6.731 6.985) (layer F.SilkS) (width 0.2032))
(fp_line (start 6.985 6.731) (end 6.985 -6.35) (layer F.SilkS) (width 0.2032))
(pad 100 smd rect (at 7.747 -5.9944) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 76 smd rect (at 7.747 5.9944) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 77 /SPARE6))
(pad 77 smd rect (at 7.747 5.4864) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 78 /SPARE7))
(pad 78 smd rect (at 7.747 5.0038) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask))
(pad 79 smd rect (at 7.747 4.4958) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 80 smd rect (at 7.747 3.9878) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 81 smd rect (at 7.747 3.5052) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 79 /SPARE8))
(pad 82 smd rect (at 7.747 2.9972) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 71 /SPARE1))
(pad 83 smd rect (at 7.747 2.4892) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask))
(pad 84 smd rect (at 7.747 2.0066) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask))
(pad 85 smd rect (at 7.747 1.4986) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 72 /SPARE2))
(pad 86 smd rect (at 7.747 0.9906) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 73 /SPARE3))
(pad 87 smd rect (at 7.747 0.4826) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 74 /SPARE4))
(pad 88 smd rect (at 7.747 0) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 28 "Net-(R5-Pad1)"))
(pad 89 smd rect (at 7.747 -0.508) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask))
(pad 90 smd rect (at 7.747 -1.016) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 23 /TMS))
(pad 91 smd rect (at 7.747 -1.4986) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 24 /TCK))
(pad 92 smd rect (at 7.747 -2.0066) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 93 smd rect (at 7.747 -2.5146) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 94 smd rect (at 7.747 -2.9972) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 25 /TDI))
(pad 95 smd rect (at 7.747 -3.5052) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 26 /TDO))
(pad 96 smd rect (at 7.747 -4.0132) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask))
(pad 97 smd rect (at 7.747 -4.4958) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask))
(pad 98 smd rect (at 7.747 -5.0038) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 34 "Net-(U1-Pad98)"))
(pad 99 smd rect (at 7.747 -5.5118) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 63 "Net-(JP1-Pad1)"))
(pad 75 smd rect (at 5.9944 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 18 /ADATA))
(pad 51 smd rect (at -5.9944 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 48 /R1))
(pad 52 smd rect (at -5.4864 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 47 /R0))
(pad 53 smd rect (at -5.0038 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 6 /CSEL))
(pad 54 smd rect (at -4.4958 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 9 /VDATA0))
(pad 55 smd rect (at -3.9878 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 56 smd rect (at -3.5052 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 57 smd rect (at -2.9972 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 11 /VDATA2))
(pad 58 smd rect (at -2.4892 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 10 /VDATA1))
(pad 59 smd rect (at -2.0066 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 60 smd rect (at -1.4986 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 61 smd rect (at -0.9906 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 62 smd rect (at -0.4826 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 12 /VDATA3))
(pad 63 smd rect (at 0 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 13 /VDATA4))
(pad 64 smd rect (at 0.508 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 65 smd rect (at 1.016 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 66 smd rect (at 1.4986 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 15 /VDATA6))
(pad 67 smd rect (at 2.0066 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 14 /VDATA5))
(pad 68 smd rect (at 2.5146 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 69 smd rect (at 2.9972 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 70 smd rect (at 3.5052 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 16 /VDATA7))
(pad 71 smd rect (at 4.0132 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 17 /LRCK))
(pad 72 smd rect (at 4.4958 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 73 smd rect (at 5.0038 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 74 smd rect (at 5.5118 7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 19 /BCLK))
(pad 1 smd rect (at 5.9944 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 33 /EXTCSYNCn))
(pad 2 smd rect (at 5.4864 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 32 /EXTVSYNCn))
(pad 3 smd rect (at 5.0038 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 31 /EXTHSYNCn))
(pad 4 smd rect (at 4.4958 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 76 /SPARE5))
(pad 5 smd rect (at 3.9878 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 6 smd rect (at 3.5052 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 7 smd rect (at 2.9972 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 30 /DACCLOCK))
(pad 8 smd rect (at 2.4892 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 46 /B7))
(pad 9 smd rect (at 2.0066 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 10 smd rect (at 1.4986 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 11 smd rect (at 0.9906 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 12 smd rect (at 0.4826 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 45 /B6))
(pad 13 smd rect (at 0 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 44 /B5))
(pad 14 smd rect (at -0.508 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 15 smd rect (at -1.016 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 16 smd rect (at -1.4986 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 43 /B4))
(pad 17 smd rect (at -2.0066 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 58 /B3))
(pad 18 smd rect (at -2.5146 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 19 smd rect (at -2.9972 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask))
(pad 20 smd rect (at -3.5052 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 57 /B2))
(pad 21 smd rect (at -4.0132 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 55 /B0))
(pad 22 smd rect (at -4.4958 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 23 smd rect (at -5.0038 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 24 smd rect (at -5.5118 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 29 /DACSYNCn))
(pad 25 smd rect (at -5.9944 -7.747) (size 0.254 1.016) (layers F.Cu F.Paste F.Mask)
(net 56 /B1))
(pad 26 smd rect (at -7.747 -5.9944) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 27 smd rect (at -7.747 -5.4864) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 42 /G7))
(pad 28 smd rect (at -7.747 -5.0038) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 41 /G6))
(pad 29 smd rect (at -7.747 -4.4958) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask))
(pad 30 smd rect (at -7.747 -3.9878) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask))
(pad 31 smd rect (at -7.747 -3.5052) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 40 /G5))
(pad 32 smd rect (at -7.747 -2.9972) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 39 /G4))
(pad 33 smd rect (at -7.747 -2.4892) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 34 smd rect (at -7.747 -2.0066) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 38 /G3))
(pad 35 smd rect (at -7.747 -1.4986) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 37 /G2))
(pad 36 smd rect (at -7.747 -0.9906) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask))
(pad 37 smd rect (at -7.747 -0.4826) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask))
(pad 38 smd rect (at -7.747 0) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 36 /G1))
(pad 39 smd rect (at -7.747 0.508) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 35 /G0))
(pad 40 smd rect (at -7.747 1.016) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 54 /R7))
(pad 41 smd rect (at -7.747 1.4986) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 53 /R6))
(pad 42 smd rect (at -7.747 2.0066) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 52 /R5))
(pad 43 smd rect (at -7.747 2.5146) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 51 /R4))
(pad 44 smd rect (at -7.747 2.9972) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 45 smd rect (at -7.747 3.5052) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask))
(pad 46 smd rect (at -7.747 4.0132) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 47 smd rect (at -7.747 4.4958) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask))
(pad 48 smd rect (at -7.747 5.0038) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 50 /R3))
(pad 49 smd rect (at -7.747 5.5118) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 49 /R2))
(pad 50 smd rect (at -7.747 5.9944) (size 1.016 0.254) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(model smd/TQFP_100.wrl
(at (xyz 0 0 0.001))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 180))
)
)
(module SMD_Packages:SM0805 placed (layer B.Cu) (tedit 53B0B80B) (tstamp 53B04B53)
(at 188.25 130.25)
(path /53B03022)
(attr smd)
(fp_text reference C9 (at 1 1.3175) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 10n (at 0 0 90) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer B.Cu) (tedit 53B0B80E) (tstamp 53B06E00)
(at 183.75 126.75 90)
(path /53B056FA)
(attr smd)
(fp_text reference C1 (at 1 -1.1825 90) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 100n (at 0 0 180) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer B.Cu) (tedit 53B0B817) (tstamp 53B04B29)
(at 196.75 132.5 180)
(path /53B05713)
(attr smd)
(fp_text reference C2 (at -2.25 0.0675 180) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 100n (at 0 0 270) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer B.Cu) (tedit 53B0B7EC) (tstamp 53B5B522)
(at 202.5 120.25 270)
(path /53B05740)
(attr smd)
(fp_text reference C3 (at 2.0675 -0.25 360) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 100n (at 0 0 360) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 270) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0 270) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer B.Cu) (tedit 53B0B7F5) (tstamp 53B08BF5)
(at 188.25 112.5)
(path /53B05759)
(attr smd)
(fp_text reference C4 (at -2.25 1.3175) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 100n (at 0 0 90) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer B.Cu) (tedit 53B0B812) (tstamp 53B04B9C)
(at 182.25 129.75 180)
(path /53B05772)
(attr smd)
(fp_text reference C5 (at 1 -1.4325 180) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 100n (at 0 0 270) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B7A1) (tstamp 53B04BB8)
(at 196.75 132.5 180)
(path /53B02F78)
(attr smd)
(fp_text reference C7 (at -2.25 0.1825 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10n (at 0 0 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B7B2) (tstamp 53B04B37)
(at 202.5 120.25 270)
(path /53B02FF7)
(attr smd)
(fp_text reference C8 (at -1 1.1825 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10n (at 0 0 360) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 270) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0 270) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B74E) (tstamp 53B04AFF)
(at 195.75 112.5 180)
(path /53B0303F)
(attr smd)
(fp_text reference C10 (at 2.25 -1.0675 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10n (at 0 0 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B79A) (tstamp 53B08B03)
(at 182.25 129.75 180)
(path /53B03058)
(attr smd)
(fp_text reference C11 (at -0.75 -1.3175 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10n (at 0 0 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B75A) (tstamp 53B04BC6)
(at 188.25 112.5)
(path /53B03073)
(attr smd)
(fp_text reference C12 (at 2.25 1.1825) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10n (at 0 0 90) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer B.Cu) (tedit 53B0B7FC) (tstamp 53B08BCE)
(at 186 119 270)
(path /53B03094)
(attr smd)
(fp_text reference C13 (at 2.0675 0 360) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 10n (at 0 0 360) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 270) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0 270) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B7AB) (tstamp 53B0613C)
(at 202 126.75 270)
(path /53B030AD)
(attr smd)
(fp_text reference C14 (at -0.75 -1.3175 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10n (at 0 0 360) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 270) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0 270) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer B.Cu) (tedit 53B0B808) (tstamp 53B04B45)
(at 188.25 126.5)
(path /53B030C6)
(attr smd)
(fp_text reference C15 (at 0.75 -1.1825) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 10n (at 0 0 90) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B753) (tstamp 53B04B8E)
(at 200 113.25 90)
(path /53B030DF)
(attr smd)
(fp_text reference C16 (at 1 1.4325 90) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10n (at 0 0 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B771) (tstamp 53B04C44)
(at 167.75 124.5 180)
(path /53AFE804)
(attr smd)
(fp_text reference C17 (at -0.75 -1.3175 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 100n (at 0 0 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 2 "Net-(C17-Pad1)"))
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 3 +3.3VDAC))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B78C) (tstamp 53B04C36)
(at 168.75 128.25 270)
(path /53AFE869)
(attr smd)
(fp_text reference C18 (at 2.1825 0 360) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 100n (at 0 0 360) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 270) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 4 "Net-(C18-Pad1)"))
(pad 2 smd rect (at 0.9525 0 270) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B762) (tstamp 53B04C1A)
(at 180 117.5 90)
(path /53B00476)
(attr smd)
(fp_text reference C19 (at 1.9325 0 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10n (at 0 0 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 3 +3.3VDAC))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B76E) (tstamp 53B04C28)
(at 169 121.25 90)
(path /53B00451)
(attr smd)
(fp_text reference C20 (at 1 -1.3175 90) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 100n (at 0 0 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 3 +3.3VDAC))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer B.Cu) (tedit 53B0B802) (tstamp 53B04C0C)
(at 180 117.5 90)
(path /53B00384)
(attr smd)
(fp_text reference C21 (at 2.0675 0 180) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 100n (at 0 0 180) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 3 +3.3VDAC))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B72F) (tstamp 53B04BFE)
(at 168.5 138)
(path /53B02157)
(attr smd)
(fp_text reference L1 (at -1 -1.5) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_text value INDUCTOR (at 0 0.381) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 3 +3.3VDAC))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module Connect:SIL-5 placed (layer F.Cu) (tedit 53B088B6) (tstamp 53B04CCF)
(at 161.75 123.75 90)
(descr "Connecteur 5 pins")
(tags "CONN DEV")
(path /53AFFAF4)
(fp_text reference P2 (at -0.635 -2.54 90) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
)
(fp_text value CONN_5 (at 0 -2.54 90) (layer F.SilkS) hide
(effects (font (size 1.524 1.016) (thickness 0.3048)))
)
(fp_line (start -7.62 1.27) (end -7.62 -1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start -7.62 -1.27) (end 5.08 -1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start 5.08 -1.27) (end 5.08 1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start 5.08 1.27) (end -7.62 1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start -5.08 1.27) (end -5.08 -1.27) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole rect (at -6.35 0 90) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 64 /Rout))
(pad 2 thru_hole circle (at -3.81 0 90) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 3 thru_hole circle (at -1.27 0 90) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 65 /Gout))
(pad 4 thru_hole circle (at 1.27 0 90) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 5 thru_hole circle (at 3.81 0 90) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 66 /BOut))
)
(module Connect:SIL-4 placed (layer F.Cu) (tedit 53B088B2) (tstamp 53B04B63)
(at 166.25 112.25 180)
(descr "Connecteur 4 pibs")
(tags "CONN DEV")
(path /53B04DC8)
(fp_text reference P3 (at 0 -2.54 180) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
)
(fp_text value CONN_4 (at 0 -2.54 180) (layer F.SilkS) hide
(effects (font (size 1.524 1.016) (thickness 0.3048)))
)
(fp_line (start -5.08 -1.27) (end -5.08 -1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start -5.08 1.27) (end -5.08 -1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start -5.08 -1.27) (end -5.08 -1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start -5.08 -1.27) (end 5.08 -1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start 5.08 -1.27) (end 5.08 1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start 5.08 1.27) (end -5.08 1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start -2.54 1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole rect (at -3.81 0 180) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 2 thru_hole circle (at -1.27 0 180) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 20 /HSYNC))
(pad 3 thru_hole circle (at 1.27 0 180) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 21 /VSYNC))
(pad 4 thru_hole circle (at 3.81 0 180) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 75 "Net-(P3-Pad4)"))
)
(module Connect:SIL-6 placed (layer F.Cu) (tedit 53B0B7C5) (tstamp 53B04B80)
(at 205.5 122 90)
(descr "Connecteur 6 pins")
(tags "CONN DEV")
(path /53B025B8)
(fp_text reference P4 (at 0.25 3 90) (layer F.SilkS) hide
(effects (font (size 1.72974 1.08712) (thickness 0.27178)))
)
(fp_text value CONN_6 (at 0 2.75 90) (layer F.SilkS) hide
(effects (font (size 1.524 1.016) (thickness 0.3048)))
)
(fp_line (start -7.62 1.27) (end -7.62 -1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start -7.62 -1.27) (end 7.62 -1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start 7.62 -1.27) (end 7.62 1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start 7.62 1.27) (end -7.62 1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start -5.08 1.27) (end -5.08 -1.27) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole rect (at -6.35 0 90) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 70 +3.3V))
(pad 2 thru_hole circle (at -3.81 0 90) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 23 /TMS))
(pad 3 thru_hole circle (at -1.27 0 90) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 24 /TCK))
(pad 4 thru_hole circle (at 1.27 0 90) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 25 /TDI))
(pad 5 thru_hole circle (at 3.81 0 90) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 26 /TDO))
(pad 6 thru_hole circle (at 6.35 0 90) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B78F) (tstamp 53B07312)
(at 170.81 128.198 270)
(path /53AFE882)
(attr smd)
(fp_text reference R1 (at 2.1745 -0.388 360) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 348 (at 0.052 0.06 360) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 270) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 27 "Net-(R1-Pad1)"))
(pad 2 smd rect (at 0.9525 0 270) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B788) (tstamp 53B073AE)
(at 164.5 129 90)
(path /53AFE72E)
(attr smd)
(fp_text reference R2 (at 1 1.3175 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 75 (at 0 0 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 64 /Rout))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B77C) (tstamp 53B073BC)
(at 164.5 124.25 90)
(path /53AFE759)
(attr smd)
(fp_text reference R3 (at 1 1.4325 90) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 75 (at 0 0 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 65 /Gout))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B777) (tstamp 53B073A0)
(at 164.5 120.75 270)
(path /53AFE792)
(attr smd)
(fp_text reference R4 (at -1 -1.3175 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 75 (at 0 0 360) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 270) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 66 /BOut))
(pad 2 smd rect (at 0.9525 0 270) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 placed (layer F.Cu) (tedit 53B0B7A6) (tstamp 53B04AF1)
(at 202.75 131.2 180)
(path /53B0AFEF)
(attr smd)
(fp_text reference R5 (at 0.25 1.1825 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 75 (at 0 0 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 28 "Net-(R5-Pad1)"))
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 5 /CLK54))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module Housings_QFP:lqfp-48 placed (layer F.Cu) (tedit 53B0B707) (tstamp 53B04C90)
(at 175.5 122.5 90)
(descr LQFP-48)
(path /53AFCC01)
(attr smd)
(fp_text reference U2 (at 4 -4 180) (layer F.SilkS)
(effects (font (size 0.7493 0.7493) (thickness 0.14986)))
)
(fp_text value CDK3404 (at 0 -1.143 90) (layer F.SilkS) hide
(effects (font (size 0.7493 0.7493) (thickness 0.14986)))
)
(fp_line (start -2.8 3.2) (end -2.9 3.2) (layer F.SilkS) (width 0.15))
(fp_line (start -2.9 3.2) (end -3.2 2.9) (layer F.SilkS) (width 0.15))
(fp_line (start -3.2 2.9) (end -3.2 -2.9) (layer F.SilkS) (width 0.15))
(fp_line (start -3.2 -2.9) (end -2.9 -3.2) (layer F.SilkS) (width 0.15))
(fp_line (start -2.9 -3.2) (end 2.9 -3.2) (layer F.SilkS) (width 0.15))
(fp_line (start 2.9 -3.2) (end 3.2 -2.9) (layer F.SilkS) (width 0.15))
(fp_line (start 3.2 -2.9) (end 3.2 2.9) (layer F.SilkS) (width 0.15))
(fp_line (start 3.2 2.9) (end 2.9 3.2) (layer F.SilkS) (width 0.15))
(fp_line (start 2.9 3.2) (end -2.8 3.2) (layer F.SilkS) (width 0.15))
(fp_line (start -4.09956 3.8989) (end -3.8989 4.09956) (layer F.SilkS) (width 0.14986))
(fp_line (start -3.70078 4.09956) (end -4.09956 3.70078) (layer F.SilkS) (width 0.14986))
(fp_line (start -4.09956 3.50012) (end -3.50012 4.09956) (layer F.SilkS) (width 0.14986))
(fp_line (start -3.29946 4.09956) (end -4.09956 3.29946) (layer F.SilkS) (width 0.14986))
(fp_line (start -3.0988 4.09956) (end -4.09956 4.09956) (layer F.SilkS) (width 0.14986))
(fp_line (start -4.09956 4.09956) (end -4.09956 3.0988) (layer F.SilkS) (width 0.14986))
(fp_line (start -4.09956 3.0988) (end -3.0988 4.09956) (layer F.SilkS) (width 0.14986))
(fp_line (start 4.09956 3.0988) (end 4.09956 4.09956) (layer F.SilkS) (width 0.14986))
(fp_line (start 4.09956 4.09956) (end 3.0988 4.09956) (layer F.SilkS) (width 0.14986))
(fp_line (start 3.0988 -4.09956) (end 4.09956 -4.09956) (layer F.SilkS) (width 0.14986))
(fp_line (start 4.09956 -4.09956) (end 4.09956 -3.0988) (layer F.SilkS) (width 0.14986))
(fp_line (start -4.09956 -3.0988) (end -4.09956 -4.09956) (layer F.SilkS) (width 0.14986))
(fp_line (start -4.09956 -4.09956) (end -3.0988 -4.09956) (layer F.SilkS) (width 0.14986))
(fp_circle (center -2.413 2.413) (end -2.667 2.54) (layer F.SilkS) (width 0.127))
(pad 4 smd rect (at -1.24968 4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 37 /G2))
(pad 5 smd rect (at -0.7493 4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 38 /G3))
(pad 6 smd rect (at -0.24892 4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 39 /G4))
(pad 7 smd rect (at 0.24892 4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 40 /G5))
(pad 8 smd rect (at 0.7493 4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 41 /G6))
(pad 1 smd rect (at -2.75082 4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 2 smd rect (at -2.25044 4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 35 /G0))
(pad 3 smd rect (at -1.75006 4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 36 /G1))
(pad 13 smd rect (at 4.09956 2.75082 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 59 "Net-(U2-Pad13)"))
(pad 14 smd rect (at 4.09956 2.25044 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 15 smd rect (at 4.09956 1.75006 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 16 smd rect (at 4.09956 1.24968 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 55 /B0))
(pad 17 smd rect (at 4.09956 0.7493 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 56 /B1))
(pad 18 smd rect (at 4.09956 0.24892 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 57 /B2))
(pad 19 smd rect (at 4.09956 -0.24892 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 58 /B3))
(pad 20 smd rect (at 4.09956 -0.7493 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 43 /B4))
(pad 25 smd rect (at 2.75082 -4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 60 "Net-(U2-Pad25)"))
(pad 26 smd rect (at 2.25044 -4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 30 /DACCLOCK))
(pad 27 smd rect (at 1.75006 -4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 28 smd rect (at 1.24968 -4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 29 smd rect (at 0.7493 -4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 66 /BOut))
(pad 30 smd rect (at 0.24892 -4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 3 +3.3VDAC))
(pad 31 smd rect (at -0.24892 -4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 3 +3.3VDAC))
(pad 32 smd rect (at -0.7493 -4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 65 /Gout))
(pad 37 smd rect (at -4.09956 -2.75082 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 61 "Net-(U2-Pad37)"))
(pad 38 smd rect (at -4.09956 -2.25044 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 39 smd rect (at -4.09956 -1.75006 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 40 smd rect (at -4.09956 -1.24968 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 47 /R0))
(pad 41 smd rect (at -4.09956 -0.7493 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 48 /R1))
(pad 42 smd rect (at -4.09956 -0.24892 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 49 /R2))
(pad 43 smd rect (at -4.09956 0.24892 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 50 /R3))
(pad 44 smd rect (at -4.09956 0.7493 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 51 /R4))
(pad 9 smd rect (at 1.24968 4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 42 /G7))
(pad 10 smd rect (at 1.75006 4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 3 +3.3VDAC))
(pad 11 smd rect (at 2.25044 4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 29 /DACSYNCn))
(pad 12 smd rect (at 2.75082 4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 3 +3.3VDAC))
(pad 21 smd rect (at 4.09956 -1.24968 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 44 /B5))
(pad 22 smd rect (at 4.09956 -1.75006 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 45 /B6))
(pad 23 smd rect (at 4.09956 -2.25044 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 46 /B7))
(pad 24 smd rect (at 4.09956 -2.75082 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 62 "Net-(U2-Pad24)"))
(pad 33 smd rect (at -1.24968 -4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 64 /Rout))
(pad 34 smd rect (at -1.75006 -4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 2 "Net-(C17-Pad1)"))
(pad 35 smd rect (at -2.25044 -4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 4 "Net-(C18-Pad1)"))
(pad 36 smd rect (at -2.75082 -4.09956 90) (size 0.29972 1.30048) (layers F.Cu F.Paste F.Mask)
(net 27 "Net-(R1-Pad1)"))
(pad 45 smd rect (at -4.09956 1.24968 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 52 /R5))
(pad 46 smd rect (at -4.09956 1.75006 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 53 /R6))
(pad 47 smd rect (at -4.09956 2.25044 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 54 /R7))
(pad 48 smd rect (at -4.09956 2.75082 90) (size 1.30048 0.29972) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/smd_lqfp/lqfp-48.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Housings_SOIC:SOIC-14_Narrow placed (layer B.Cu) (tedit 53B088BD) (tstamp 53B48027)
(at 165.25 135.5)
(descr "module CMS SOJ 14 pins etroit")
(tags "CMS SOJ")
(path /53B041EC)
(attr smd)
(fp_text reference U4 (at 3.75 -4) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 74LVC14 (at -0.5 -0.016) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -4.6 -0.6) (end -4.6 -1.8) (layer B.SilkS) (width 0.2))
(fp_line (start -4.6 1.8) (end -4.6 0.6) (layer B.SilkS) (width 0.2))
(fp_arc (start -4.6 0) (end -4 0) (angle -90) (layer B.SilkS) (width 0.2))
(fp_arc (start -4.6 0) (end -4.6 0.6) (angle -90) (layer B.SilkS) (width 0.2))
(fp_line (start -4.6 1.8) (end 4.6 1.8) (layer B.SilkS) (width 0.2))
(fp_line (start 4.6 1.8) (end 4.6 -1.8) (layer B.SilkS) (width 0.2))
(fp_line (start 4.6 -1.8) (end -4.6 -1.8) (layer B.SilkS) (width 0.2))
(pad 1 smd rect (at -3.81 -2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 33 /EXTCSYNCn))
(pad 2 smd rect (at -2.54 -2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 22 /CSYNC))
(pad 3 smd rect (at -1.27 -2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 32 /EXTVSYNCn))
(pad 4 smd rect (at 0 -2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 21 /VSYNC))
(pad 5 smd rect (at 1.27 -2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 31 /EXTHSYNCn))
(pad 6 smd rect (at 2.54 -2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 20 /HSYNC))
(pad 7 smd rect (at 3.81 -2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(pad 8 smd rect (at 3.81 2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 67 "Net-(U4-Pad8)"))
(pad 9 smd rect (at 2.54 2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(pad 10 smd rect (at 1.27 2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 68 "Net-(U4-Pad10)"))
(pad 11 smd rect (at 0 2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(pad 12 smd rect (at -1.27 2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 69 "Net-(U4-Pad12)"))
(pad 13 smd rect (at -2.54 2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(pad 14 smd rect (at -3.81 2.7) (size 0.6 1.5) (layers B.Cu B.Paste B.Mask)
(net 70 +3.3V))
(model smd/cms_so14.wrl
(at (xyz 0 0 0))
(scale (xyz 0.5 0.3 0.5))
(rotate (xyz 0 0 0))
)
)
(module SOLDER_JUMPER:SOLDER_JUMPER (layer F.Cu) (tedit 53B0B7CB) (tstamp 53B05F0D)
(at 204.25 112.5 90)
(path /53B0BB84)
(fp_text reference JP1 (at 0 5 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value RGB/COMP (at 0 3 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 -1.25 90) (size 3 2) (layers F.Cu F.Paste F.Mask)
(net 63 "Net-(JP1-Pad1)"))
(pad 2 smd rect (at 0 1.25 90) (size 3 2) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
)
(module SMD_Packages:SM1206POL (layer F.Cu) (tedit 53B0B725) (tstamp 53B07FA7)
(at 171.803 136.229 90)
(path /53B035AA)
(attr smd)
(fp_text reference C6 (at 3.229 -0.053 180) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_text value 10u (at 0.032 -0.074 180) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_line (start -2.54 -1.143) (end -2.794 -1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.794 -1.143) (end -2.794 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.794 1.143) (end -2.54 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.54 -1.143) (end -2.54 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.54 1.143) (end -0.889 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start 0.889 -1.143) (end 2.54 -1.143) (layer F.SilkS) (width 0.127))
(fp_line (start 2.54 -1.143) (end 2.54 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start 2.54 1.143) (end 0.889 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -0.889 -1.143) (end -2.54 -1.143) (layer F.SilkS) (width 0.127))
(pad 1 smd rect (at -1.651 0 90) (size 1.524 2.032) (layers F.Cu F.Paste F.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 1.651 0 90) (size 1.524 2.032) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms_pol.wrl
(at (xyz 0 0 0))
(scale (xyz 0.17 0.16 0.16))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM1206POL (layer F.Cu) (tedit 53B0B72B) (tstamp 53B5A9D1)
(at 165.301 136.221 90)
(path /53B02471)
(attr smd)
(fp_text reference C22 (at 3.221 -0.051 180) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_text value 10u (at 0.022 -0.08 180) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_line (start -2.54 -1.143) (end -2.794 -1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.794 -1.143) (end -2.794 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.794 1.143) (end -2.54 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.54 -1.143) (end -2.54 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -2.54 1.143) (end -0.889 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start 0.889 -1.143) (end 2.54 -1.143) (layer F.SilkS) (width 0.127))
(fp_line (start 2.54 -1.143) (end 2.54 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start 2.54 1.143) (end 0.889 1.143) (layer F.SilkS) (width 0.127))
(fp_line (start -0.889 -1.143) (end -2.54 -1.143) (layer F.SilkS) (width 0.127))
(pad 1 smd rect (at -1.651 0 90) (size 1.524 2.032) (layers F.Cu F.Paste F.Mask)
(net 3 +3.3VDAC))
(pad 2 smd rect (at 1.651 0 90) (size 1.524 2.032) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(model smd/chip_cms_pol.wrl
(at (xyz 0 0 0))
(scale (xyz 0.17 0.16 0.16))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_2x02 (layer F.Cu) (tedit 53B094F1) (tstamp 53B0948B)
(at 204.75 135.350001)
(descr "1 pin")
(tags "CONN DEV")
(path /53B0A799)
(fp_text reference P5 (at 1.5 -3.56) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.2032)))
)
(fp_text value CONN_2X2 (at 0 0) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.2032)))
)
(fp_line (start -2.54 0) (end -2.54 2.54) (layer F.SilkS) (width 0.254))
(fp_line (start -2.54 2.54) (end 0 2.54) (layer F.SilkS) (width 0.254))
(fp_line (start 0 2.54) (end 0 0) (layer F.SilkS) (width 0.254))
(fp_line (start 0 0) (end -2.54 0) (layer F.SilkS) (width 0.254))
(fp_line (start -2.54 0) (end -2.54 -2.54) (layer F.SilkS) (width 0.254))
(fp_line (start -2.54 -2.54) (end 2.54 -2.54) (layer F.SilkS) (width 0.254))
(fp_line (start 2.54 -2.54) (end 2.54 2.54) (layer F.SilkS) (width 0.254))
(fp_line (start 2.54 2.54) (end 0 2.54) (layer F.SilkS) (width 0.254))
(pad 1 thru_hole rect (at -1.27 1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 71 /SPARE1))
(pad 2 thru_hole oval (at -1.27 -1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 72 /SPARE2))
(pad 3 thru_hole oval (at 1.27 1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 73 /SPARE3))
(pad 4 thru_hole oval (at 1.27 -1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 74 /SPARE4))
(model Pin_Headers/Pin_Header_Straight_2x02.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Wire_Pads:SolderWirePad_single_0-8mmDrill (layer F.Cu) (tedit 53B5A103) (tstamp 53B59D4A)
(at 194.25 120.350001)
(path /53B5BA28)
(fp_text reference P6 (at 0 -2.54) (layer F.SilkS) hide
(effects (font (thickness 0.3048)))
)
(fp_text value CONN_1 (at 0 2.54) (layer F.SilkS) hide
(effects (font (size 1.50114 1.50114) (thickness 0.20066)))
)
(pad 1 thru_hole circle (at 0 0) (size 1.99898 1.99898) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 76 /SPARE5))
)
(module Wire_Pads:SolderWirePad_single_0-8mmDrill (layer F.Cu) (tedit 53B5A115) (tstamp 53B59D4F)
(at 194.5 127.350001)
(path /53B5BAB5)
(fp_text reference P7 (at 0 -2.54) (layer F.SilkS) hide
(effects (font (thickness 0.3048)))
)
(fp_text value CONN_1 (at 0 2.54) (layer F.SilkS) hide
(effects (font (size 1.50114 1.50114) (thickness 0.20066)))
)
(pad 1 thru_hole circle (at 0 0) (size 1.99898 1.99898) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 77 /SPARE6))
)
(module Wire_Pads:SolderWirePad_single_0-8mmDrill (layer F.Cu) (tedit 53B5A113) (tstamp 53B59D54)
(at 197.75 127.350001)
(path /53B5BAD4)
(fp_text reference P8 (at 0 -2.54) (layer F.SilkS) hide
(effects (font (thickness 0.3048)))
)
(fp_text value CONN_1 (at 0 2.54) (layer F.SilkS) hide
(effects (font (size 1.50114 1.50114) (thickness 0.20066)))
)
(pad 1 thru_hole circle (at 0 0) (size 1.99898 1.99898) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 78 /SPARE7))
)
(module Wire_Pads:SolderWirePad_single_0-8mmDrill (layer F.Cu) (tedit 53B5A110) (tstamp 53B59D59)
(at 194.5 124.850001)
(path /53B5BAED)
(fp_text reference P9 (at 0 -2.54) (layer F.SilkS) hide
(effects (font (thickness 0.3048)))
)
(fp_text value CONN_1 (at 0 2.54) (layer F.SilkS) hide
(effects (font (size 1.50114 1.50114) (thickness 0.20066)))
)
(pad 1 thru_hole circle (at 0 0) (size 1.99898 1.99898) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 79 /SPARE8))
)
(module SMD_Packages:SM0805 (layer B.Cu) (tedit 53B5B55F) (tstamp 53B59D66)
(at 163.5 116.899999)
(path /53B5C819)
(attr smd)
(fp_text reference R6 (at -2 0.350001 90) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 100 (at 0 0.000001 90) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 75 "Net-(P3-Pad4)"))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 22 /CSYNC))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 (layer B.Cu) (tedit 53B59BD7) (tstamp 53B5B4DD)
(at 201.5 117.399999)
(path /53B5CCB5)
(attr smd)
(fp_text reference R7 (at -1 -1.1825) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 4k7 (at 0.018999 0.100001 90) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 70 +3.3V))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 63 "Net-(JP1-Pad1)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SMD_Packages:SM0805 (layer B.Cu) (tedit 53B59BD7) (tstamp 53B59D80)
(at 200.399999 120.25 90)
(path /53B5EDD0)
(attr smd)
(fp_text reference R8 (at 1.016 -1.1811 90) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 4k7 (at -0.050401 0.012401 180) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 24 /TCK))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_2x11 (layer F.Cu) (tedit 53B59E50) (tstamp 53B59F16)
(at 187.525 136.779)
(descr "1 pin")
(tags "CONN DEV")
(path /53AFCB94)
(fp_text reference P1 (at 0 -3.81) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)))
)
(fp_text value CONN_11X2 (at 0 0) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.2032)))
)
(fp_line (start 13.97 -2.54) (end -13.97 -2.54) (layer F.SilkS) (width 0.254))
(fp_line (start -11.43 2.54) (end 13.97 2.54) (layer F.SilkS) (width 0.254))
(fp_line (start 13.97 -2.54) (end 13.97 2.54) (layer F.SilkS) (width 0.254))
(fp_line (start -13.97 -2.54) (end -13.97 0) (layer F.SilkS) (width 0.254))
(fp_line (start -13.97 2.54) (end -11.43 2.54) (layer F.SilkS) (width 0.254))
(fp_line (start -13.97 0) (end -11.43 0) (layer F.SilkS) (width 0.254))
(fp_line (start -11.43 0) (end -11.43 2.54) (layer F.SilkS) (width 0.254))
(fp_line (start -13.97 2.54) (end -13.97 0) (layer F.SilkS) (width 0.254))
(pad 1 thru_hole rect (at -12.7 1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 70 +3.3V))
(pad 2 thru_hole oval (at -12.7 -1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 5 /CLK54))
(pad 3 thru_hole oval (at -10.16 1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 6 /CSEL))
(pad 4 thru_hole oval (at -10.16 -1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 5 thru_hole oval (at -7.62 1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 7 "Net-(P1-Pad5)"))
(pad 6 thru_hole oval (at -7.62 -1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 8 "Net-(P1-Pad6)"))
(pad 7 thru_hole oval (at -5.08 1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 9 /VDATA0))
(pad 8 thru_hole oval (at -5.08 -1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 9 thru_hole oval (at -2.54 1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 10 /VDATA1))
(pad 10 thru_hole oval (at -2.54 -1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 11 /VDATA2))
(pad 11 thru_hole oval (at 0 1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 12 thru_hole oval (at 0 -1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 12 /VDATA3))
(pad 13 thru_hole oval (at 2.54 1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 13 /VDATA4))
(pad 14 thru_hole oval (at 2.54 -1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 15 thru_hole oval (at 5.08 1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 14 /VDATA5))
(pad 16 thru_hole oval (at 5.08 -1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 15 /VDATA6))
(pad 17 thru_hole oval (at 7.62 1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 70 +3.3V))
(pad 18 thru_hole oval (at 7.62 -1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 16 /VDATA7))
(pad 19 thru_hole oval (at 10.16 1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 17 /LRCK))
(pad 20 thru_hole oval (at 10.16 -1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 21 thru_hole oval (at 12.7 1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 18 /ADATA))
(pad 22 thru_hole oval (at 12.7 -1.27) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 19 /BCLK))
(model Pin_Headers/Pin_Header_Straight_2x11.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(dimension 5 (width 0.3) (layer Dwgs.User)
(gr_text "5,000 mm" (at 221 137.75 90) (layer Dwgs.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 215.25 135.5) (xy 219.699999 135.5)))
(feature2 (pts (xy 215.25 140.5) (xy 219.699999 140.5)))
(crossbar (pts (xy 216.999999 140.5) (xy 216.999999 135.5)))
(arrow1a (pts (xy 216.999999 135.5) (xy 217.58642 136.626504)))
(arrow1b (pts (xy 216.999999 135.5) (xy 216.413578 136.626504)))
(arrow2a (pts (xy 216.999999 140.5) (xy 217.58642 139.373496)))
(arrow2b (pts (xy 216.999999 140.5) (xy 216.413578 139.373496)))
)
(dimension 5 (width 0.3) (layer Dwgs.User)
(gr_text "5,000 mm" (at 221 114 270) (layer Dwgs.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 214.75 115.5) (xy 219.699999 115.5)))
(feature2 (pts (xy 214.75 110.5) (xy 219.699999 110.5)))
(crossbar (pts (xy 216.999999 110.5) (xy 216.999999 115.5)))
(arrow1a (pts (xy 216.999999 115.5) (xy 216.413578 114.373496)))
(arrow1b (pts (xy 216.999999 115.5) (xy 217.58642 114.373496)))
(arrow2a (pts (xy 216.999999 110.5) (xy 216.413578 111.626504)))
(arrow2b (pts (xy 216.999999 110.5) (xy 217.58642 111.626504)))
)
(gr_text -ik (at 173.8 131) (layer B.Mask)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(gr_text -ik (at 173.7 131) (layer F.Mask)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_line (start 159 140.5) (end 159 110.5) (layer Edge.Cuts) (width 0.2))
(gr_line (start 208 110.5) (end 159 110.5) (layer Edge.Cuts) (width 0.2))
(gr_text SPARE (at 205.75 138.75) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(gr_text JTAG (at 206 130.5) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(gr_text "GCVideo Lite\n0.9" (at 172.25 113.25) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.254)) (justify left))
)
(gr_text GND (at 164.5 128) (layer B.SilkS) (tstamp 53B08F01)
(effects (font (size 0.762 0.762) (thickness 0.127)) (justify mirror))
)
(gr_text GND (at 170 114.5) (layer B.SilkS) (tstamp 53B08F00)
(effects (font (size 0.762 0.762) (thickness 0.127)) (justify mirror))
)
(gr_text GND (at 164.5 122.5) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)) (justify mirror))
)
(gr_text VS (at 165 114.75) (layer B.SilkS)
(effects (font (size 1.27 1.016) (thickness 0.254)) (justify mirror))
)
(gr_text HS (at 167.5 114.75) (layer B.SilkS)
(effects (font (size 1.27 1.016) (thickness 0.254)) (justify mirror))
)
(gr_text CS (at 162.5 114.75) (layer B.SilkS)
(effects (font (size 1.27 1.016) (thickness 0.254)) (justify mirror))
)
(gr_text B (at 164.5 119.75 270) (layer B.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(gr_text G (at 164.5 125 270) (layer B.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(gr_text R (at 164.5 130 270) (layer B.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(gr_text -ik (at 173.8 131) (layer B.Cu)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(gr_text RGB (at 207.25 112.5 90) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(gr_line (start 163.5 126.75) (end 164 127.25) (layer F.SilkS) (width 0.2))
(gr_line (start 163.5 126.75) (end 164 126.25) (layer F.SilkS) (width 0.2))
(gr_line (start 165.25 126.75) (end 166.5 128.75) (layer F.SilkS) (width 0.2) (tstamp 53B089EF))
(gr_line (start 163.5 126.75) (end 165.25 126.75) (layer F.SilkS) (width 0.2))
(gr_text B-G-R (at 167 129.5 270) (layer F.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.127)))
)
(gr_text "C V H -" (at 166.25 115) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(dimension 49 (width 0.3) (layer Dwgs.User)
(gr_text "49,000 mm" (at 183.5 144.35) (layer Dwgs.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 159 141.5) (xy 159 145.7)))
(feature2 (pts (xy 208 141.5) (xy 208 145.7)))
(crossbar (pts (xy 208 143) (xy 159 143)))
(arrow1a (pts (xy 159 143) (xy 160.126504 142.413579)))
(arrow1b (pts (xy 159 143) (xy 160.126504 143.586421)))
(arrow2a (pts (xy 208 143) (xy 206.873496 142.413579)))
(arrow2b (pts (xy 208 143) (xy 206.873496 143.586421)))
)
(dimension 30 (width 0.3) (layer Dwgs.User)
(gr_text "30,000 mm" (at 212.85 125.5 270) (layer Dwgs.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 210 140.5) (xy 214.2 140.5)))
(feature2 (pts (xy 210 110.5) (xy 214.2 110.5)))
(crossbar (pts (xy 211.5 110.5) (xy 211.5 140.5)))
(arrow1a (pts (xy 211.5 140.5) (xy 210.913579 139.373496)))
(arrow1b (pts (xy 211.5 140.5) (xy 212.086421 139.373496)))
(arrow2a (pts (xy 211.5 110.5) (xy 210.913579 111.626504)))
(arrow2b (pts (xy 211.5 110.5) (xy 212.086421 111.626504)))
)
(gr_text -ik (at 173.7 131) (layer F.Cu)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_line (start 208 140.5) (end 208 139) (layer Edge.Cuts) (width 0.2) (tstamp 53B08507))
(gr_line (start 159 140.5) (end 208 140.5) (layer Edge.Cuts) (width 0.2) (tstamp 53B08503))
(gr_line (start 208 110.5) (end 208 139) (layer Edge.Cuts) (width 0.2) (tstamp 53B084E2))
(segment (start 189 113.75) (end 189.2025 113.5475) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 189.2025 113.5475) (end 189.2025 112.5) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 187.860671 113.75) (end 189 113.75) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 187.5042 114.106471) (end 187.860671 113.75) (width 0.2032) (layer F.Cu) (net 1))
(segment (start 187.5042 114.753) (end 187.5042 114.106471) (width 0.2032) (layer F.Cu) (net 1))
(segment (start 189.2025 112.5) (end 190.75 112.5) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 189.2025 112.5) (end 190.75 112.5) (width 0.3048) (layer F.Cu) (net 1))
(via (at 190.75 112.5) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 181.433561 116.5475) (end 181.791241 116.18982) (width 0.381) (layer F.Cu) (net 1))
(via (at 181.791241 116.18982) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 180 116.5475) (end 181.433561 116.5475) (width 0.381) (layer F.Cu) (net 1))
(segment (start 180 116.5475) (end 181.433561 116.5475) (width 0.381) (layer B.Cu) (net 1))
(segment (start 181.433561 116.5475) (end 181.791241 116.18982) (width 0.381) (layer B.Cu) (net 1))
(segment (start 181.2975 129.75) (end 180.5 129.75) (width 0.381) (layer B.Cu) (net 1))
(segment (start 180.5 129.75) (end 179.75 130.5) (width 0.381) (layer B.Cu) (net 1))
(via (at 179.75 130.5) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 189.25 130.2025) (end 189.2025 130.25) (width 0.254) (layer B.Cu) (net 1))
(segment (start 188.4948 130.247) (end 188.4948 130.621349) (width 0.254) (layer F.Cu) (net 1))
(segment (start 188.4948 130.621349) (end 188.49481 130.621359) (width 0.254) (layer F.Cu) (net 1))
(segment (start 201.220537 129.231263) (end 201.016447 129.231263) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 202 128.4518) (end 201.220537 129.231263) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 202 127.7025) (end 202 128.4518) (width 0.3048) (layer F.Cu) (net 1))
(via (at 201.016447 129.231263) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 201.25 112.5442) (end 201.25 114.5) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 201.25 114.5) (end 201.75 115) (width 0.3048) (layer F.Cu) (net 1))
(via (at 201.75 115) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 200 112.2975) (end 201.0033 112.2975) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 201.0033 112.2975) (end 201.25 112.5442) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 194.7975 112.5) (end 193.25 112.5) (width 0.381) (layer F.Cu) (net 1))
(via (at 193.25 112.5) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 200.75 127.186) (end 200.75 127.4558) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 200.75 127.4558) (end 200.9967 127.7025) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 200.9967 127.7025) (end 202 127.7025) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 199.747 126.9958) (end 200.5598 126.9958) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 200.5598 126.9958) (end 200.75 127.186) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 202.5 121.2025) (end 203.4525 121.2025) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 203.4525 121.2025) (end 204.25 122) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 202.5 121.2025) (end 203.4525 121.2025) (width 0.3048) (layer F.Cu) (net 1))
(via (at 204.25 122) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 203.4525 121.2025) (end 204.25 122) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 200.7434 120.4934) (end 201.4525 121.2025) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 201.4525 121.2025) (end 202.5 121.2025) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 199.747 120.4934) (end 200.7434 120.4934) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 205.5 112.5) (end 205.5 115.65) (width 0.3048) (layer F.Cu) (net 1) (status 30))
(segment (start 195.25 113.75) (end 195.50519 114.00519) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 195.50519 114.00519) (end 195.50519 114.753) (width 0.3048) (layer F.Cu) (net 1) (status 20))
(segment (start 195.0442 113.75) (end 195.25 113.75) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 194.7975 112.5) (end 194.7975 113.5033) (width 0.3048) (layer F.Cu) (net 1) (status 10))
(segment (start 194.7975 113.5033) (end 195.0442 113.75) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 177.75044 117.574102) (end 177.75044 118.40044) (width 0.3048) (layer F.Cu) (net 1) (status 20))
(segment (start 178.777042 116.5475) (end 177.75044 117.574102) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 180 116.5475) (end 178.777042 116.5475) (width 0.3048) (layer F.Cu) (net 1) (status 10))
(segment (start 177.25006 118.40044) (end 177.75044 118.40044) (width 0.3048) (layer F.Cu) (net 1) (status 30))
(segment (start 184.253 120.0108) (end 184.9892 120.0108) (width 0.254) (layer F.Cu) (net 1))
(via (at 187.5 119.25) (size 1.27) (layers F.Cu B.Cu) (net 1))
(segment (start 185.75 119.25) (end 187.5 119.25) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 184.9892 120.0108) (end 185.75 119.25) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 187.5 119.25) (end 187.5 119.75) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 187.2975 119.9525) (end 186 119.9525) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 187.5 119.75) (end 187.2975 119.9525) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 185.4972 125.4972) (end 185.75 125.75) (width 0.2032) (layer F.Cu) (net 1))
(segment (start 184.253 125.4972) (end 185.4972 125.4972) (width 0.2032) (layer F.Cu) (net 1))
(via (at 185.75 125.75) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 185.7025 125.7975) (end 185.75 125.75) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 183.75 125.7975) (end 185.7025 125.7975) (width 0.3048) (layer B.Cu) (net 1))
(via (at 173.25 128.25) (size 1.27) (layers F.Cu B.Cu) (net 1))
(segment (start 173.24956 126.59956) (end 173.74994 126.59956) (width 0.2032) (layer F.Cu) (net 1))
(segment (start 173.24956 127.561342) (end 173.24956 127.449377) (width 0.381) (layer F.Cu) (net 1))
(segment (start 173.25 127.561782) (end 173.24956 127.561342) (width 0.381) (layer F.Cu) (net 1))
(segment (start 173.25 128.25) (end 173.25 127.561782) (width 0.381) (layer F.Cu) (net 1))
(segment (start 173.24956 126.59956) (end 173.24956 127.449377) (width 0.2032) (layer F.Cu) (net 1))
(segment (start 170.0795 120.2975) (end 170.5 120.718) (width 0.381) (layer F.Cu) (net 1))
(segment (start 169 120.2975) (end 170.0795 120.2975) (width 0.381) (layer F.Cu) (net 1))
(segment (start 170.53194 120.74994) (end 171.40044 120.74994) (width 0.254) (layer F.Cu) (net 1))
(segment (start 170.5 120.718) (end 170.53194 120.74994) (width 0.254) (layer F.Cu) (net 1))
(via (at 169 119) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 169 120.2975) (end 169 119) (width 0.381) (layer F.Cu) (net 1))
(segment (start 170.5 121.20332) (end 170.5 120.718) (width 0.2032) (layer F.Cu) (net 1))
(segment (start 170.547 121.25032) (end 170.5 121.20332) (width 0.2032) (layer F.Cu) (net 1))
(segment (start 171.40044 121.25032) (end 170.547 121.25032) (width 0.2032) (layer F.Cu) (net 1))
(segment (start 173.1505 128.1505) (end 173.25 128.25) (width 0.381) (layer F.Cu) (net 1))
(segment (start 172.3495 129.1505) (end 173.25 128.25) (width 0.381) (layer F.Cu) (net 1))
(segment (start 170.81 129.1505) (end 172.3495 129.1505) (width 0.381) (layer F.Cu) (net 1))
(segment (start 170.758 129.2025) (end 170.81 129.1505) (width 0.381) (layer F.Cu) (net 1))
(segment (start 168.75 129.2025) (end 170.758 129.2025) (width 0.381) (layer F.Cu) (net 1))
(segment (start 162.737828 122.48) (end 163.467828 121.75) (width 0.381) (layer F.Cu) (net 1))
(segment (start 161.75 122.48) (end 162.737828 122.48) (width 0.381) (layer F.Cu) (net 1))
(segment (start 164.4525 121.75) (end 164.5 121.7025) (width 0.381) (layer F.Cu) (net 1))
(segment (start 163.467828 121.75) (end 164.4525 121.75) (width 0.381) (layer F.Cu) (net 1))
(segment (start 162.737828 122.614828) (end 162.737828 122.48) (width 0.381) (layer F.Cu) (net 1))
(segment (start 163.4205 123.2975) (end 162.737828 122.614828) (width 0.381) (layer F.Cu) (net 1))
(segment (start 164.5 123.2975) (end 163.4205 123.2975) (width 0.381) (layer F.Cu) (net 1))
(segment (start 162.2375 128.0475) (end 161.75 127.56) (width 0.381) (layer F.Cu) (net 1))
(segment (start 164.5 128.0475) (end 162.2375 128.0475) (width 0.381) (layer F.Cu) (net 1))
(via (at 178 125) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 179.59956 125.25082) (end 178.25082 125.25082) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 178.25082 125.25082) (end 178 125) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 178.25082 126.59956) (end 178.25082 125.25082) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 180.5 129.75) (end 179.75 130.5) (width 0.381) (layer F.Cu) (net 1))
(segment (start 181.2975 129.75) (end 180.5 129.75) (width 0.381) (layer F.Cu) (net 1))
(via (at 194.528821 132.438374) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 194.590447 132.5) (end 194.528821 132.438374) (width 0.3048) (layer F.Cu) (net 1))
(segment (start 200.399999 119.9452) (end 200.399999 119.2975) (width 0.2032) (layer B.Cu) (net 1))
(segment (start 200.704799 120.25) (end 200.399999 119.9452) (width 0.2032) (layer B.Cu) (net 1))
(segment (start 202.25 120.25) (end 200.704799 120.25) (width 0.2032) (layer B.Cu) (net 1))
(segment (start 202.5 120.5) (end 202.25 120.25) (width 0.2032) (layer B.Cu) (net 1))
(segment (start 202.5 121.2025) (end 202.5 120.5) (width 0.2032) (layer B.Cu) (net 1))
(segment (start 195.735874 132.438374) (end 195.7975 132.5) (width 0.381) (layer F.Cu) (net 1))
(segment (start 194.528821 132.438374) (end 195.735874 132.438374) (width 0.381) (layer F.Cu) (net 1))
(segment (start 165.25 136.75) (end 165.25 138.2) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 163.1052 136.75) (end 165.25 136.75) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 162.71 137.1452) (end 163.1052 136.75) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 162.71 138.2) (end 162.71 137.1452) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 167.79 137.1452) (end 167.79 138.2) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 167.3948 136.75) (end 167.79 137.1452) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 165.25 136.75) (end 167.3948 136.75) (width 0.3048) (layer B.Cu) (net 1))
(via (at 168.5 135.75) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 167.5 136.75) (end 167.865001 136.384999) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 167.3948 136.75) (end 167.5 136.75) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 167.865001 136.384999) (end 168.5 135.75) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 167.32 134.57) (end 168.5 135.75) (width 0.381) (layer F.Cu) (net 1))
(segment (start 165.301 134.57) (end 167.32 134.57) (width 0.381) (layer F.Cu) (net 1))
(segment (start 169.672 134.578) (end 171.803 134.578) (width 0.381) (layer F.Cu) (net 1))
(segment (start 168.5 135.75) (end 169.672 134.578) (width 0.381) (layer F.Cu) (net 1))
(segment (start 173.2 134.578) (end 171.803 134.578) (width 0.381) (layer F.Cu) (net 1))
(segment (start 173.500901 134.277099) (end 173.2 134.578) (width 0.381) (layer F.Cu) (net 1))
(segment (start 176.133099 134.277099) (end 173.500901 134.277099) (width 0.381) (layer F.Cu) (net 1))
(segment (start 177.365 135.509) (end 176.133099 134.277099) (width 0.381) (layer F.Cu) (net 1))
(via (at 170.75 131.75) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 169.7 132.8) (end 170.75 131.75) (width 0.381) (layer B.Cu) (net 1))
(segment (start 169.06 132.8) (end 169.7 132.8) (width 0.381) (layer B.Cu) (net 1))
(segment (start 194.590447 132.5) (end 194.528821 132.438374) (width 0.381) (layer B.Cu) (net 1))
(segment (start 195.7975 132.5) (end 194.590447 132.5) (width 0.381) (layer B.Cu) (net 1))
(segment (start 189.2025 128.4525) (end 189.25 128.5) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 189.25 128.5) (end 189.25 130.2025) (width 0.254) (layer B.Cu) (net 1))
(segment (start 188.4948 130.247) (end 188.4948 129.2552) (width 0.254) (layer F.Cu) (net 1))
(segment (start 188.4948 129.2552) (end 189.25 128.5) (width 0.254) (layer F.Cu) (net 1))
(via (at 189.25 128.5) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 1))
(segment (start 189.2025 126.5) (end 189.2025 128.4525) (width 0.3048) (layer B.Cu) (net 1))
(segment (start 196.4958 130.247) (end 196.4958 130.9958) (width 0.254) (layer F.Cu) (net 1))
(segment (start 196.4958 130.9958) (end 195.75 131.7416) (width 0.254) (layer F.Cu) (net 1))
(segment (start 195.75 132.4525) (end 195.7975 132.5) (width 0.254) (layer F.Cu) (net 1))
(segment (start 195.75 131.7416) (end 195.75 132.4525) (width 0.254) (layer F.Cu) (net 1))
(segment (start 168.95244 124.25006) (end 168.7025 124.5) (width 0.2032) (layer F.Cu) (net 2))
(segment (start 171.40044 124.25006) (end 168.95244 124.25006) (width 0.2032) (layer F.Cu) (net 2))
(segment (start 179.59956 119.74918) (end 180 119.74918) (width 0.3048) (layer F.Cu) (net 3))
(segment (start 180 119.74918) (end 180 118.4525) (width 0.3048) (layer F.Cu) (net 3))
(segment (start 179.59956 120.74994) (end 178.74612 120.74994) (width 0.2032) (layer F.Cu) (net 3))
(segment (start 178.74612 120.74994) (end 178.669919 120.673739) (width 0.2032) (layer F.Cu) (net 3))
(segment (start 178.669919 120.673739) (end 178.669919 119.825381) (width 0.2032) (layer F.Cu) (net 3))
(segment (start 178.669919 119.825381) (end 178.74612 119.74918) (width 0.2032) (layer F.Cu) (net 3))
(segment (start 178.74612 119.74918) (end 179.59956 119.74918) (width 0.2032) (layer F.Cu) (net 3))
(segment (start 181.68756 117.84444) (end 181.68756 117.726026) (width 0.381) (layer F.Cu) (net 3))
(segment (start 181.0795 118.4525) (end 181.68756 117.84444) (width 0.381) (layer F.Cu) (net 3))
(via (at 181.68756 117.726026) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 3))
(segment (start 180 118.4525) (end 181.0795 118.4525) (width 0.381) (layer F.Cu) (net 3))
(segment (start 181.68756 117.84444) (end 181.68756 117.726026) (width 0.381) (layer B.Cu) (net 3))
(segment (start 181.0795 118.4525) (end 181.68756 117.84444) (width 0.381) (layer B.Cu) (net 3))
(segment (start 180 118.4525) (end 181.0795 118.4525) (width 0.381) (layer B.Cu) (net 3))
(segment (start 170.389198 122.2025) (end 170.436698 122.25) (width 0.381) (layer F.Cu) (net 3))
(segment (start 169 122.2025) (end 170.389198 122.2025) (width 0.381) (layer F.Cu) (net 3))
(segment (start 170.437778 122.25108) (end 171.40044 122.25108) (width 0.3048) (layer F.Cu) (net 3))
(segment (start 170.436698 122.25) (end 170.437778 122.25108) (width 0.3048) (layer F.Cu) (net 3))
(segment (start 171.40044 122.74892) (end 170.50108 122.74892) (width 0.3048) (layer F.Cu) (net 3))
(segment (start 170.436698 122.684538) (end 170.436698 122.25) (width 0.3048) (layer F.Cu) (net 3))
(segment (start 170.50108 122.74892) (end 170.436698 122.684538) (width 0.3048) (layer F.Cu) (net 3))
(via (at 166.75 122) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 3))
(segment (start 166.9525 122.2025) (end 166.75 122) (width 0.381) (layer F.Cu) (net 3))
(segment (start 169 122.2025) (end 166.9525 122.2025) (width 0.381) (layer F.Cu) (net 3))
(via (at 166.25 126.25) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 3))
(segment (start 166.7975 125.7025) (end 166.25 126.25) (width 0.381) (layer F.Cu) (net 3))
(segment (start 166.7975 124.5) (end 166.7975 125.7025) (width 0.381) (layer F.Cu) (net 3))
(segment (start 165.429 138) (end 165.301 137.872) (width 0.381) (layer F.Cu) (net 3))
(segment (start 167.5475 138) (end 165.429 138) (width 0.381) (layer F.Cu) (net 3))
(via (at 162 135.75) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 3))
(segment (start 162.925 135.75) (end 162 135.75) (width 0.381) (layer F.Cu) (net 3))
(segment (start 165.047 137.872) (end 162.925 135.75) (width 0.381) (layer F.Cu) (net 3))
(segment (start 165.301 137.872) (end 165.047 137.872) (width 0.381) (layer F.Cu) (net 3))
(segment (start 171.40044 124.75044) (end 170.24956 124.75044) (width 0.2032) (layer F.Cu) (net 4))
(segment (start 168.75 126.25) (end 168.75 127.2975) (width 0.2032) (layer F.Cu) (net 4))
(segment (start 170.24956 124.75044) (end 168.75 126.25) (width 0.2032) (layer F.Cu) (net 4))
(segment (start 200 131.2) (end 201.7975 131.2) (width 0.2032) (layer F.Cu) (net 5))
(via (at 200 131.2) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 5))
(segment (start 176.134 134.2) (end 174.825 135.509) (width 0.2032) (layer B.Cu) (net 5))
(segment (start 189.2 134.2) (end 176.134 134.2) (width 0.2032) (layer B.Cu) (net 5))
(segment (start 192.2 131.2) (end 189.2 134.2) (width 0.2032) (layer B.Cu) (net 5))
(segment (start 200 131.2) (end 192.2 131.2) (width 0.2032) (layer B.Cu) (net 5))
(segment (start 178.228599 137.185401) (end 177.365 138.049) (width 0.2032) (layer F.Cu) (net 6))
(segment (start 178.635 136.779) (end 178.228599 137.185401) (width 0.2032) (layer F.Cu) (net 6))
(segment (start 180.721 136.779) (end 178.635 136.779) (width 0.2032) (layer F.Cu) (net 6))
(segment (start 181.229 136.271) (end 180.721 136.779) (width 0.2032) (layer F.Cu) (net 6))
(segment (start 181.229 135.033358) (end 181.229 136.271) (width 0.2032) (layer F.Cu) (net 6))
(segment (start 184.699538 131.56282) (end 181.229 135.033358) (width 0.2032) (layer F.Cu) (net 6))
(segment (start 186.43718 131.56282) (end 184.699538 131.56282) (width 0.2032) (layer F.Cu) (net 6))
(segment (start 186.9962 131.0038) (end 186.43718 131.56282) (width 0.2032) (layer F.Cu) (net 6))
(segment (start 186.9962 130.247) (end 186.9962 131.0038) (width 0.2032) (layer F.Cu) (net 6))
(segment (start 183.308599 137.185401) (end 182.445 138.049) (width 0.2032) (layer F.Cu) (net 9))
(segment (start 183.769 136.725) (end 183.308599 137.185401) (width 0.2032) (layer F.Cu) (net 9))
(segment (start 183.769 134.769829) (end 183.769 136.725) (width 0.2032) (layer F.Cu) (net 9))
(segment (start 187.5042 131.034629) (end 183.769 134.769829) (width 0.2032) (layer F.Cu) (net 9))
(segment (start 187.5042 130.247) (end 187.5042 131.034629) (width 0.2032) (layer F.Cu) (net 9))
(segment (start 185.848599 137.185401) (end 184.985 138.049) (width 0.2032) (layer F.Cu) (net 10))
(segment (start 186.309 136.725) (end 185.848599 137.185401) (width 0.2032) (layer F.Cu) (net 10))
(segment (start 186.309 134.747) (end 186.309 136.725) (width 0.2032) (layer F.Cu) (net 10))
(segment (start 189.5108 131.5452) (end 186.309 134.747) (width 0.2032) (layer F.Cu) (net 10))
(segment (start 189.5108 130.247) (end 189.5108 131.5452) (width 0.2032) (layer F.Cu) (net 10))
(segment (start 189.0028 131.4912) (end 184.985 135.509) (width 0.2032) (layer F.Cu) (net 11))
(segment (start 189.0028 130.247) (end 189.0028 131.4912) (width 0.2032) (layer F.Cu) (net 11))
(segment (start 191.5174 131.5166) (end 187.525 135.509) (width 0.2032) (layer F.Cu) (net 12))
(segment (start 191.5174 130.247) (end 191.5174 131.5166) (width 0.2032) (layer F.Cu) (net 12))
(segment (start 190.928599 137.185401) (end 190.065 138.049) (width 0.2032) (layer F.Cu) (net 13))
(segment (start 191.389 136.725) (end 190.928599 137.185401) (width 0.2032) (layer F.Cu) (net 13))
(segment (start 191.389 134.493) (end 191.389 136.725) (width 0.2032) (layer F.Cu) (net 13))
(segment (start 192 133.882) (end 191.389 134.493) (width 0.2032) (layer F.Cu) (net 13))
(segment (start 192 130.247) (end 192 133.882) (width 0.2032) (layer F.Cu) (net 13))
(segment (start 193.929 136.725) (end 192.605 138.049) (width 0.2032) (layer F.Cu) (net 14))
(segment (start 193.929 134.874) (end 193.929 136.725) (width 0.2032) (layer F.Cu) (net 14))
(segment (start 193.233391 134.178391) (end 193.929 134.874) (width 0.2032) (layer F.Cu) (net 14))
(segment (start 193.233391 131.70636) (end 193.233391 134.178391) (width 0.2032) (layer F.Cu) (net 14))
(segment (start 194.0066 130.933152) (end 193.233391 131.70636) (width 0.2032) (layer F.Cu) (net 14))
(segment (start 194.0066 130.247) (end 194.0066 130.933152) (width 0.2032) (layer F.Cu) (net 14))
(segment (start 192.605 134.287686) (end 192.605 135.509) (width 0.2032) (layer F.Cu) (net 15))
(segment (start 192.605 131.795922) (end 192.605 134.287686) (width 0.2032) (layer F.Cu) (net 15))
(segment (start 193.4986 130.902322) (end 192.605 131.795922) (width 0.2032) (layer F.Cu) (net 15))
(segment (start 193.4986 130.247) (end 193.4986 130.902322) (width 0.2032) (layer F.Cu) (net 15))
(segment (start 195.5052 130.247) (end 195.5052 130.9582) (width 0.2032) (layer F.Cu) (net 16))
(segment (start 195.5052 130.9582) (end 195.077801 131.385599) (width 0.2032) (layer F.Cu) (net 16))
(segment (start 195.077801 131.385599) (end 194.092981 131.385599) (width 0.2032) (layer F.Cu) (net 16))
(segment (start 194.092981 131.385599) (end 193.614401 131.864179) (width 0.2032) (layer F.Cu) (net 16))
(segment (start 193.614401 131.864179) (end 193.614401 133.978401) (width 0.2032) (layer F.Cu) (net 16))
(segment (start 193.614401 133.978401) (end 195.145 135.509) (width 0.2032) (layer F.Cu) (net 16))
(segment (start 196.0132 128.810276) (end 195.976569 128.773645) (width 0.2032) (layer F.Cu) (net 17))
(via (at 195.976569 128.773645) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 17))
(segment (start 196.0132 130.247) (end 196.0132 128.810276) (width 0.2032) (layer F.Cu) (net 17))
(segment (start 199 134.853314) (end 199 136.734) (width 0.2032) (layer B.Cu) (net 17))
(segment (start 200.914401 130.761087) (end 200.914401 132.938913) (width 0.2032) (layer B.Cu) (net 17))
(segment (start 195.976569 128.773645) (end 198.926959 128.773645) (width 0.2032) (layer B.Cu) (net 17))
(segment (start 198.926959 128.773645) (end 200.914401 130.761087) (width 0.2032) (layer B.Cu) (net 17))
(segment (start 200.914401 132.938913) (end 199 134.853314) (width 0.2032) (layer B.Cu) (net 17))
(segment (start 199 136.734) (end 198.548599 137.185401) (width 0.2032) (layer B.Cu) (net 17))
(segment (start 198.548599 137.185401) (end 197.685 138.049) (width 0.2032) (layer B.Cu) (net 17))
(segment (start 197.9944 130.247) (end 197.9944 130.628) (width 0.2032) (layer F.Cu) (net 18))
(segment (start 197.9944 130.628) (end 201.368001 134.001601) (width 0.2032) (layer F.Cu) (net 18))
(segment (start 201.368001 134.001601) (end 201.368001 136.905999) (width 0.2032) (layer F.Cu) (net 18))
(segment (start 201.368001 136.905999) (end 201.088599 137.185401) (width 0.2032) (layer F.Cu) (net 18))
(segment (start 201.088599 137.185401) (end 200.225 138.049) (width 0.2032) (layer F.Cu) (net 18))
(segment (start 197.5118 130.247) (end 197.5118 130.90113) (width 0.2032) (layer F.Cu) (net 19))
(segment (start 197.5118 130.90113) (end 197.67047 131.0598) (width 0.2032) (layer F.Cu) (net 19))
(segment (start 197.67047 131.0598) (end 197.8598 131.0598) (width 0.2032) (layer F.Cu) (net 19))
(segment (start 197.8598 131.0598) (end 200.225 133.425) (width 0.2032) (layer F.Cu) (net 19))
(segment (start 200.225 133.425) (end 200.225 134.287686) (width 0.2032) (layer F.Cu) (net 19))
(segment (start 200.225 134.287686) (end 200.225 135.509) (width 0.2032) (layer F.Cu) (net 19))
(segment (start 167.79 112.52) (end 167.52 112.25) (width 0.2032) (layer B.Cu) (net 20))
(segment (start 167.79 132.8) (end 167.79 112.52) (width 0.2032) (layer B.Cu) (net 20))
(segment (start 165.25 118.936316) (end 165.25 118.5) (width 0.2032) (layer B.Cu) (net 21))
(segment (start 165.25 118.5) (end 165.25 129.593701) (width 0.2032) (layer B.Cu) (net 21))
(segment (start 165.25 129.593701) (end 165.25 132.8) (width 0.2032) (layer B.Cu) (net 21))
(segment (start 164.98 113.237828) (end 164.98 112.25) (width 0.2032) (layer B.Cu) (net 21))
(segment (start 165.25 113.507828) (end 164.98 113.237828) (width 0.2032) (layer B.Cu) (net 21))
(segment (start 165.25 115.75) (end 165.25 113.507828) (width 0.254) (layer B.Cu) (net 21))
(segment (start 165.5 116) (end 165.25 115.75) (width 0.2032) (layer B.Cu) (net 21))
(segment (start 165.5 117.75) (end 165.5 116) (width 0.2032) (layer B.Cu) (net 21))
(segment (start 165.25 118) (end 165.5 117.75) (width 0.2032) (layer B.Cu) (net 21))
(segment (start 165.25 118.5) (end 165.25 118) (width 0.2032) (layer B.Cu) (net 21))
(segment (start 164.4525 130.6075) (end 164.4525 116.899999) (width 0.2032) (layer B.Cu) (net 22))
(segment (start 162.71 132.35) (end 164.4525 130.6075) (width 0.2032) (layer B.Cu) (net 22))
(segment (start 162.71 132.8) (end 162.71 132.35) (width 0.2032) (layer B.Cu) (net 22))
(segment (start 199.747 121.484) (end 200.509 121.484) (width 0.2032) (layer F.Cu) (net 23))
(segment (start 200.509 121.484) (end 201.729589 122.704589) (width 0.2032) (layer F.Cu) (net 23))
(segment (start 201.729589 122.704589) (end 202.394589 122.704589) (width 0.2032) (layer F.Cu) (net 23))
(segment (start 202.394589 122.704589) (end 204.801501 125.111501) (width 0.2032) (layer F.Cu) (net 23))
(segment (start 204.801501 125.111501) (end 205.5 125.81) (width 0.2032) (layer F.Cu) (net 23))
(segment (start 200.4582 121.0014) (end 199.747 121.0014) (width 0.2032) (layer F.Cu) (net 24))
(segment (start 200.637071 121.0014) (end 200.4582 121.0014) (width 0.2032) (layer F.Cu) (net 24))
(segment (start 201.95925 122.323579) (end 200.637071 121.0014) (width 0.2032) (layer F.Cu) (net 24))
(segment (start 202.552408 122.323579) (end 201.95925 122.323579) (width 0.2032) (layer F.Cu) (net 24))
(segment (start 203.498828 123.27) (end 202.552408 122.323579) (width 0.2032) (layer F.Cu) (net 24))
(segment (start 205.5 123.27) (end 203.498828 123.27) (width 0.2032) (layer F.Cu) (net 24))
(segment (start 200.399999 121.899999) (end 200.399999 121.2025) (width 0.2032) (layer B.Cu) (net 24))
(segment (start 201.77 123.27) (end 200.399999 121.899999) (width 0.2032) (layer B.Cu) (net 24))
(segment (start 205.5 123.27) (end 201.77 123.27) (width 0.2032) (layer B.Cu) (net 24))
(segment (start 205.5 120.73) (end 205.5 119.637294) (width 0.2032) (layer F.Cu) (net 25))
(segment (start 205.5 119.637294) (end 204.112706 118.25) (width 0.2032) (layer F.Cu) (net 25))
(segment (start 204.112706 118.25) (end 201.75 118.25) (width 0.2032) (layer F.Cu) (net 25))
(segment (start 201.75 118.25) (end 200.4972 119.5028) (width 0.2032) (layer F.Cu) (net 25))
(segment (start 200.4972 119.5028) (end 200.4582 119.5028) (width 0.2032) (layer F.Cu) (net 25))
(segment (start 200.4582 119.5028) (end 199.747 119.5028) (width 0.2032) (layer F.Cu) (net 25))
(segment (start 199.747 118.9948) (end 200.4582 118.9948) (width 0.2032) (layer F.Cu) (net 26))
(segment (start 200.4582 118.9948) (end 201.961499 117.491501) (width 0.2032) (layer F.Cu) (net 26))
(segment (start 201.961499 117.491501) (end 204.801501 117.491501) (width 0.2032) (layer F.Cu) (net 26))
(segment (start 204.801501 117.491501) (end 205.5 118.19) (width 0.2032) (layer F.Cu) (net 26))
(segment (start 170.81 126.437405) (end 170.81 127.2455) (width 0.2032) (layer F.Cu) (net 27))
(segment (start 171.40044 125.846965) (end 170.81 126.437405) (width 0.2032) (layer F.Cu) (net 27))
(segment (start 171.40044 125.25082) (end 171.40044 125.846965) (width 0.2032) (layer F.Cu) (net 27))
(segment (start 203.7025 131.2) (end 203.7025 124.599186) (width 0.2032) (layer F.Cu) (net 28))
(segment (start 200.853314 122.5) (end 201.688913 123.335599) (width 0.2032) (layer F.Cu) (net 28))
(segment (start 199.747 122.5) (end 200.853314 122.5) (width 0.2032) (layer F.Cu) (net 28))
(segment (start 203.7025 130.5983) (end 203.7025 131.5) (width 0.2032) (layer F.Cu) (net 28))
(segment (start 202.438913 123.335599) (end 203.7025 124.599186) (width 0.2032) (layer F.Cu) (net 28))
(segment (start 201.688913 123.335599) (end 202.438913 123.335599) (width 0.2032) (layer F.Cu) (net 28))
(segment (start 182.627379 118.153779) (end 182.627379 116.622621) (width 0.2032) (layer F.Cu) (net 29))
(segment (start 179.59956 120.24956) (end 180.531598 120.24956) (width 0.2032) (layer F.Cu) (net 29))
(segment (start 180.531598 120.24956) (end 182.627379 118.153779) (width 0.2032) (layer F.Cu) (net 29))
(segment (start 182.627379 116.622621) (end 183.439801 115.810199) (width 0.2032) (layer F.Cu) (net 29))
(segment (start 183.439801 115.810199) (end 186.142201 115.810199) (width 0.2032) (layer F.Cu) (net 29))
(segment (start 186.142201 115.810199) (end 186.4882 115.4642) (width 0.2032) (layer F.Cu) (net 29))
(segment (start 186.4882 115.4642) (end 186.4882 114.753) (width 0.2032) (layer F.Cu) (net 29))
(segment (start 194.52822 117.336696) (end 194.52822 116.438671) (width 0.2032) (layer B.Cu) (net 30))
(segment (start 194.9972 114.753) (end 194.9972 115.969691) (width 0.2032) (layer F.Cu) (net 30))
(segment (start 194.9972 115.969691) (end 194.52822 116.438671) (width 0.2032) (layer F.Cu) (net 30))
(via (at 194.52822 116.438671) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 30))
(segment (start 172.863492 120.642775) (end 172.863492 122.070811) (width 0.2032) (layer B.Cu) (net 30))
(segment (start 174.87828 124.085599) (end 188.414401 124.085599) (width 0.2032) (layer B.Cu) (net 30))
(segment (start 172.863492 122.070811) (end 174.87828 124.085599) (width 0.2032) (layer B.Cu) (net 30))
(segment (start 188.414401 124.085599) (end 194.52822 117.97178) (width 0.2032) (layer B.Cu) (net 30))
(segment (start 194.52822 117.97178) (end 194.52822 117.336696) (width 0.2032) (layer B.Cu) (net 30))
(segment (start 171.40044 120.24956) (end 172.470277 120.24956) (width 0.2032) (layer F.Cu) (net 30))
(via (at 172.863492 120.642775) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 30))
(segment (start 172.470277 120.24956) (end 172.863492 120.642775) (width 0.2032) (layer F.Cu) (net 30))
(segment (start 197.0038 116.789384) (end 196.435757 117.357427) (width 0.2032) (layer F.Cu) (net 31))
(segment (start 197.0038 114.753) (end 197.0038 116.789384) (width 0.2032) (layer F.Cu) (net 31))
(via (at 196.435757 117.357427) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 31))
(segment (start 166.52 133.7532) (end 166.52 132.8) (width 0.2032) (layer B.Cu) (net 31))
(segment (start 166.7668 134) (end 166.52 133.7532) (width 0.2032) (layer B.Cu) (net 31))
(segment (start 169.5 134) (end 166.7668 134) (width 0.2032) (layer B.Cu) (net 31))
(segment (start 170.75 132.75) (end 169.5 134) (width 0.2032) (layer B.Cu) (net 31))
(segment (start 188.348422 132.75) (end 170.75 132.75) (width 0.2032) (layer B.Cu) (net 31))
(segment (start 190.272649 130.825773) (end 188.348422 132.75) (width 0.2032) (layer B.Cu) (net 31))
(segment (start 190.272649 124.977351) (end 190.272649 130.825773) (width 0.2032) (layer B.Cu) (net 31))
(segment (start 193.185405 122.064595) (end 190.272649 124.977351) (width 0.2032) (layer B.Cu) (net 31))
(segment (start 194.435405 122.064595) (end 193.185405 122.064595) (width 0.2032) (layer B.Cu) (net 31))
(segment (start 195.732496 120.767504) (end 194.435405 122.064595) (width 0.2032) (layer B.Cu) (net 31))
(segment (start 195.732496 118.060688) (end 195.732496 120.767504) (width 0.2032) (layer B.Cu) (net 31))
(segment (start 196.435757 117.357427) (end 195.732496 118.060688) (width 0.2032) (layer B.Cu) (net 31))
(via (at 197.5 118.5) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 32))
(segment (start 197.5 114.7666) (end 197.4864 114.753) (width 0.2032) (layer F.Cu) (net 32))
(segment (start 197.5 118.5) (end 197.5 114.7666) (width 0.2032) (layer F.Cu) (net 32))
(segment (start 170.907818 133.13101) (end 169.657819 134.38101) (width 0.2032) (layer B.Cu) (net 32))
(segment (start 169.657819 134.38101) (end 165.11101 134.38101) (width 0.2032) (layer B.Cu) (net 32))
(segment (start 165.11101 134.38101) (end 163.98 133.25) (width 0.2032) (layer B.Cu) (net 32))
(segment (start 163.98 133.25) (end 163.98 132.8) (width 0.2032) (layer B.Cu) (net 32))
(segment (start 188.506241 133.13101) (end 170.907818 133.13101) (width 0.2032) (layer B.Cu) (net 32))
(segment (start 196.456066 119.543934) (end 196.456066 120.755106) (width 0.2032) (layer B.Cu) (net 32))
(segment (start 190.75 125.25) (end 190.75 130.887251) (width 0.2032) (layer B.Cu) (net 32))
(segment (start 190.75 130.887251) (end 188.506241 133.13101) (width 0.2032) (layer B.Cu) (net 32))
(segment (start 197.5 118.5) (end 196.456066 119.543934) (width 0.2032) (layer B.Cu) (net 32))
(segment (start 196.456066 120.755106) (end 194.425588 122.785584) (width 0.2032) (layer B.Cu) (net 32))
(segment (start 194.425588 122.785584) (end 193.214416 122.785584) (width 0.2032) (layer B.Cu) (net 32))
(segment (start 193.214416 122.785584) (end 190.75 125.25) (width 0.2032) (layer B.Cu) (net 32))
(segment (start 197.9944 114.753) (end 197.9944 116.9944) (width 0.2032) (layer F.Cu) (net 33))
(segment (start 197.9944 116.9944) (end 198.5 117.5) (width 0.2032) (layer F.Cu) (net 33))
(via (at 197.5 120.25) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 33))
(segment (start 198.5 119.25) (end 197.5 120.25) (width 0.2032) (layer F.Cu) (net 33))
(segment (start 198.5 117.5) (end 198.5 119.25) (width 0.2032) (layer F.Cu) (net 33))
(segment (start 171.065636 133.51202) (end 169.815638 134.76202) (width 0.2032) (layer B.Cu) (net 33))
(segment (start 197.5 120.25) (end 194.378742 123.371258) (width 0.2032) (layer B.Cu) (net 33))
(segment (start 194.378742 123.371258) (end 193.480717 123.371258) (width 0.2032) (layer B.Cu) (net 33))
(segment (start 193.480717 123.371258) (end 191.194506 125.657469) (width 0.2032) (layer B.Cu) (net 33))
(segment (start 191.194506 125.657469) (end 191.194506 130.981574) (width 0.2032) (layer B.Cu) (net 33))
(segment (start 191.194506 130.981574) (end 188.66406 133.51202) (width 0.2032) (layer B.Cu) (net 33))
(segment (start 188.66406 133.51202) (end 171.065636 133.51202) (width 0.2032) (layer B.Cu) (net 33))
(segment (start 169.815638 134.76202) (end 162.95202 134.76202) (width 0.2032) (layer B.Cu) (net 33))
(segment (start 162.95202 134.76202) (end 161.44 133.25) (width 0.2032) (layer B.Cu) (net 33))
(segment (start 161.44 133.25) (end 161.44 132.8) (width 0.2032) (layer B.Cu) (net 33))
(segment (start 183.5418 123.008) (end 184.253 123.008) (width 0.2032) (layer F.Cu) (net 35))
(segment (start 182.693 123.008) (end 183.5418 123.008) (width 0.2032) (layer F.Cu) (net 35))
(segment (start 180.95056 124.75044) (end 182.693 123.008) (width 0.2032) (layer F.Cu) (net 35))
(segment (start 179.59956 124.75044) (end 180.95056 124.75044) (width 0.2032) (layer F.Cu) (net 35))
(segment (start 183.5418 122.5) (end 184.253 122.5) (width 0.2032) (layer F.Cu) (net 36))
(segment (start 182.62625 122.5) (end 183.5418 122.5) (width 0.2032) (layer F.Cu) (net 36))
(segment (start 180.87619 124.25006) (end 182.62625 122.5) (width 0.2032) (layer F.Cu) (net 36))
(segment (start 179.59956 124.25006) (end 180.87619 124.25006) (width 0.2032) (layer F.Cu) (net 36))
(segment (start 183.5501 121.0014) (end 184.253 121.0014) (width 0.2032) (layer F.Cu) (net 37))
(segment (start 180.80182 123.74968) (end 183.5501 121.0014) (width 0.2032) (layer F.Cu) (net 37))
(segment (start 179.59956 123.74968) (end 180.80182 123.74968) (width 0.2032) (layer F.Cu) (net 37))
(segment (start 183.5418 120.4934) (end 184.253 120.4934) (width 0.2032) (layer F.Cu) (net 38))
(segment (start 183.48335 120.4934) (end 183.5418 120.4934) (width 0.2032) (layer F.Cu) (net 38))
(segment (start 180.72745 123.2493) (end 183.48335 120.4934) (width 0.2032) (layer F.Cu) (net 38))
(segment (start 179.59956 123.2493) (end 180.72745 123.2493) (width 0.2032) (layer F.Cu) (net 38))
(segment (start 183.623078 119.5028) (end 184.253 119.5028) (width 0.2032) (layer F.Cu) (net 39))
(segment (start 183.440199 119.685679) (end 183.623078 119.5028) (width 0.2032) (layer F.Cu) (net 39))
(segment (start 183.440199 119.961801) (end 183.440199 119.685679) (width 0.2032) (layer F.Cu) (net 39))
(segment (start 180.65308 122.74892) (end 183.440199 119.961801) (width 0.2032) (layer F.Cu) (net 39))
(segment (start 179.59956 122.74892) (end 180.65308 122.74892) (width 0.2032) (layer F.Cu) (net 39))
(segment (start 180.453 122.25108) (end 179.59956 122.25108) (width 0.2032) (layer F.Cu) (net 40))
(segment (start 180.57617 122.25108) (end 180.453 122.25108) (width 0.2032) (layer F.Cu) (net 40))
(segment (start 183.033789 119.793461) (end 180.57617 122.25108) (width 0.2032) (layer F.Cu) (net 40))
(segment (start 183.033789 119.502811) (end 183.033789 119.793461) (width 0.2032) (layer F.Cu) (net 40))
(segment (start 183.5418 118.9948) (end 183.033789 119.502811) (width 0.2032) (layer F.Cu) (net 40))
(segment (start 184.253 118.9948) (end 183.5418 118.9948) (width 0.2032) (layer F.Cu) (net 40))
(segment (start 183.623078 117.4962) (end 184.253 117.4962) (width 0.2032) (layer F.Cu) (net 41))
(segment (start 183.440199 117.679079) (end 183.623078 117.4962) (width 0.2032) (layer F.Cu) (net 41))
(segment (start 183.440199 118.490459) (end 183.440199 117.679079) (width 0.2032) (layer F.Cu) (net 41))
(segment (start 182.627379 119.303279) (end 183.440199 118.490459) (width 0.2032) (layer F.Cu) (net 41))
(segment (start 182.627379 119.625121) (end 182.627379 119.303279) (width 0.2032) (layer F.Cu) (net 41))
(segment (start 180.5018 121.7507) (end 182.627379 119.625121) (width 0.2032) (layer F.Cu) (net 41))
(segment (start 179.59956 121.7507) (end 180.5018 121.7507) (width 0.2032) (layer F.Cu) (net 41))
(segment (start 183.03379 117.465018) (end 183.485208 117.0136) (width 0.2032) (layer F.Cu) (net 42))
(segment (start 183.5418 117.0136) (end 184.253 117.0136) (width 0.2032) (layer F.Cu) (net 42))
(segment (start 183.485208 117.0136) (end 183.5418 117.0136) (width 0.2032) (layer F.Cu) (net 42))
(segment (start 183.03379 118.322118) (end 183.03379 117.465018) (width 0.2032) (layer F.Cu) (net 42))
(segment (start 182.22097 119.134938) (end 183.03379 118.322118) (width 0.2032) (layer F.Cu) (net 42))
(segment (start 182.22097 119.45678) (end 182.22097 119.134938) (width 0.2032) (layer F.Cu) (net 42))
(segment (start 180.42743 121.25032) (end 182.22097 119.45678) (width 0.2032) (layer F.Cu) (net 42))
(segment (start 179.59956 121.25032) (end 180.42743 121.25032) (width 0.2032) (layer F.Cu) (net 42))
(segment (start 190.5014 114.753) (end 190.5014 116.181959) (width 0.2032) (layer F.Cu) (net 43))
(via (at 190.569441 116.25) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 43))
(segment (start 190.5014 116.181959) (end 190.569441 116.25) (width 0.2032) (layer F.Cu) (net 43))
(segment (start 174.7507 118.40044) (end 174.7507 119.400082) (width 0.2032) (layer F.Cu) (net 43))
(segment (start 174.7507 119.400082) (end 175.368635 120.018017) (width 0.2032) (layer F.Cu) (net 43))
(segment (start 175.368635 120.018017) (end 175.368635 120.754825) (width 0.2032) (layer F.Cu) (net 43))
(via (at 177.977945 122.004129) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 43))
(segment (start 190.569441 116.25) (end 190.569441 118.720965) (width 0.2032) (layer B.Cu) (net 43))
(segment (start 175.368635 120.754825) (end 175.857331 121.243521) (width 0.2032) (layer F.Cu) (net 43))
(segment (start 175.857331 121.243521) (end 177.217337 121.243521) (width 0.2032) (layer F.Cu) (net 43))
(segment (start 177.342946 121.36913) (end 177.977945 122.004129) (width 0.2032) (layer F.Cu) (net 43))
(segment (start 187.286277 122.004129) (end 178.87597 122.004129) (width 0.2032) (layer B.Cu) (net 43))
(segment (start 190.569441 118.720965) (end 187.286277 122.004129) (width 0.2032) (layer B.Cu) (net 43))
(segment (start 177.217337 121.243521) (end 177.342946 121.36913) (width 0.2032) (layer F.Cu) (net 43))
(segment (start 178.87597 122.004129) (end 177.977945 122.004129) (width 0.2032) (layer B.Cu) (net 43))
(via (at 191.509261 117.75) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 44))
(segment (start 191.509261 116.851975) (end 191.509261 117.75) (width 0.2032) (layer F.Cu) (net 44))
(segment (start 191.509261 115.849833) (end 191.509261 116.851975) (width 0.2032) (layer F.Cu) (net 44))
(segment (start 192 114.753) (end 192 115.359094) (width 0.2032) (layer F.Cu) (net 44))
(segment (start 192 115.359094) (end 191.509261 115.849833) (width 0.2032) (layer F.Cu) (net 44))
(segment (start 191.509261 117.75) (end 191.509261 118.648025) (width 0.2032) (layer B.Cu) (net 44))
(segment (start 177.317879 122.942569) (end 177.16825 122.79294) (width 0.2032) (layer B.Cu) (net 44))
(segment (start 187.214717 122.942569) (end 177.317879 122.942569) (width 0.2032) (layer B.Cu) (net 44))
(segment (start 177.16825 122.79294) (end 176.533251 122.157941) (width 0.2032) (layer B.Cu) (net 44))
(segment (start 191.509261 118.648025) (end 187.214717 122.942569) (width 0.2032) (layer B.Cu) (net 44))
(via (at 176.533251 122.157941) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 44))
(segment (start 174.962226 120.923166) (end 176.197001 122.157941) (width 0.2032) (layer F.Cu) (net 44))
(segment (start 174.25032 119.474452) (end 174.962226 120.186358) (width 0.2032) (layer F.Cu) (net 44))
(segment (start 176.197001 122.157941) (end 176.533251 122.157941) (width 0.2032) (layer F.Cu) (net 44))
(segment (start 174.962226 120.186358) (end 174.962226 120.923166) (width 0.2032) (layer F.Cu) (net 44))
(segment (start 174.25032 118.40044) (end 174.25032 119.474452) (width 0.2032) (layer F.Cu) (net 44))
(segment (start 175.720475 123.066368) (end 175.085476 122.431369) (width 0.2032) (layer B.Cu) (net 45))
(segment (start 175.977686 123.323579) (end 175.720475 123.066368) (width 0.2032) (layer B.Cu) (net 45))
(segment (start 188.098765 123.323579) (end 175.977686 123.323579) (width 0.2032) (layer B.Cu) (net 45))
(segment (start 192.5 118.922344) (end 188.098765 123.323579) (width 0.2032) (layer B.Cu) (net 45))
(segment (start 192.5 116.25) (end 192.5 118.922344) (width 0.2032) (layer B.Cu) (net 45))
(via (at 192.5 116.25) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 45))
(segment (start 192.4826 114.753) (end 192.4826 116.2326) (width 0.2032) (layer F.Cu) (net 45) (status 10))
(segment (start 192.4826 116.2326) (end 192.5 116.25) (width 0.2032) (layer F.Cu) (net 45))
(segment (start 173.74994 119.548822) (end 174.555817 120.354699) (width 0.2032) (layer F.Cu) (net 45))
(segment (start 174.555817 120.354699) (end 174.555817 121.091507) (width 0.2032) (layer F.Cu) (net 45))
(via (at 175.085476 122.431369) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 45))
(segment (start 173.74994 118.40044) (end 173.74994 119.548822) (width 0.2032) (layer F.Cu) (net 45))
(segment (start 174.555817 121.091507) (end 175.085476 121.621166) (width 0.2032) (layer F.Cu) (net 45))
(segment (start 175.085476 121.621166) (end 175.085476 122.431369) (width 0.2032) (layer F.Cu) (net 45))
(segment (start 194.4892 114.753) (end 194.4892 115.408322) (width 0.2032) (layer F.Cu) (net 46))
(segment (start 194.4892 115.408322) (end 194.357121 115.540401) (width 0.2032) (layer F.Cu) (net 46))
(segment (start 194.357121 115.540401) (end 193.825033 115.540401) (width 0.2032) (layer F.Cu) (net 46))
(segment (start 193.825033 115.540401) (end 193.603408 115.762026) (width 0.2032) (layer F.Cu) (net 46))
(segment (start 193.603408 115.762026) (end 193.603408 116.705383) (width 0.2032) (layer F.Cu) (net 46))
(segment (start 193.603408 116.705383) (end 193.603408 117.603408) (width 0.2032) (layer F.Cu) (net 46))
(segment (start 192.968409 118.238407) (end 193.603408 117.603408) (width 0.2032) (layer B.Cu) (net 46))
(segment (start 192.968409 118.992763) (end 192.968409 118.238407) (width 0.2032) (layer B.Cu) (net 46))
(segment (start 188.256583 123.704589) (end 192.968409 118.992763) (width 0.2032) (layer B.Cu) (net 46))
(segment (start 175.058735 123.704589) (end 188.256583 123.704589) (width 0.2032) (layer B.Cu) (net 46))
(segment (start 173.818239 122.464093) (end 175.058735 123.704589) (width 0.2032) (layer B.Cu) (net 46))
(segment (start 173.818239 121.731176) (end 173.818239 122.464093) (width 0.2032) (layer B.Cu) (net 46))
(via (at 193.603408 117.603408) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 46))
(via (at 173.818239 121.731176) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 46))
(segment (start 173.818239 120.833151) (end 173.818239 121.731176) (width 0.2032) (layer F.Cu) (net 46))
(segment (start 173.24956 119.688383) (end 173.818239 120.257062) (width 0.2032) (layer F.Cu) (net 46))
(segment (start 173.818239 120.257062) (end 173.818239 120.833151) (width 0.2032) (layer F.Cu) (net 46))
(segment (start 173.24956 118.40044) (end 173.24956 119.688383) (width 0.2032) (layer F.Cu) (net 46))
(segment (start 178.070811 131.820811) (end 183.902719 131.820811) (width 0.2032) (layer F.Cu) (net 47))
(segment (start 174.25032 126.59956) (end 174.25032 128.00032) (width 0.2032) (layer F.Cu) (net 47))
(segment (start 174.25032 128.00032) (end 178.070811 131.820811) (width 0.2032) (layer F.Cu) (net 47))
(segment (start 183.902719 131.820811) (end 184.56712 131.15641) (width 0.2032) (layer F.Cu) (net 47))
(segment (start 184.56712 131.15641) (end 186.26884 131.15641) (width 0.2032) (layer F.Cu) (net 47))
(segment (start 186.26884 131.15641) (end 186.5136 130.91165) (width 0.2032) (layer F.Cu) (net 47))
(segment (start 186.5136 130.91165) (end 186.5136 130.247) (width 0.2032) (layer F.Cu) (net 47))
(segment (start 186.0056 130.247) (end 184.937702 130.247) (width 0.2032) (layer F.Cu) (net 48))
(segment (start 184.937702 130.247) (end 183.744901 131.439801) (width 0.2032) (layer F.Cu) (net 48))
(segment (start 183.744901 131.439801) (end 178.301921 131.439801) (width 0.2032) (layer F.Cu) (net 48))
(segment (start 178.301921 131.439801) (end 174.7507 127.88858) (width 0.2032) (layer F.Cu) (net 48))
(segment (start 174.7507 127.88858) (end 174.7507 127.453) (width 0.2032) (layer F.Cu) (net 48))
(segment (start 174.7507 127.453) (end 174.7507 126.59956) (width 0.2032) (layer F.Cu) (net 48))
(segment (start 175.25108 127.453) (end 175.25108 126.59956) (width 0.2032) (layer F.Cu) (net 49))
(segment (start 179.678008 129.586648) (end 176.987596 129.586648) (width 0.2032) (layer F.Cu) (net 49))
(segment (start 184.253 128.0118) (end 181.252856 128.0118) (width 0.2032) (layer F.Cu) (net 49))
(segment (start 181.252856 128.0118) (end 179.678008 129.586648) (width 0.2032) (layer F.Cu) (net 49))
(segment (start 176.987596 129.586648) (end 175.25108 127.850132) (width 0.2032) (layer F.Cu) (net 49))
(segment (start 175.25108 127.850132) (end 175.25108 127.453) (width 0.2032) (layer F.Cu) (net 49))
(segment (start 175.74892 126.59956) (end 175.74892 127.773222) (width 0.2032) (layer F.Cu) (net 50))
(segment (start 183.5418 127.5038) (end 184.253 127.5038) (width 0.2032) (layer F.Cu) (net 50))
(segment (start 175.74892 127.773222) (end 177.155936 129.180238) (width 0.2032) (layer F.Cu) (net 50))
(segment (start 177.155936 129.180238) (end 179.509668 129.180238) (width 0.2032) (layer F.Cu) (net 50))
(segment (start 179.509668 129.180238) (end 181.186106 127.5038) (width 0.2032) (layer F.Cu) (net 50))
(segment (start 181.186106 127.5038) (end 183.5418 127.5038) (width 0.2032) (layer F.Cu) (net 50))
(segment (start 184.253 125.0146) (end 183.101887 125.0146) (width 0.2032) (layer F.Cu) (net 51))
(segment (start 183.101887 125.0146) (end 179.342659 128.773828) (width 0.2032) (layer F.Cu) (net 51))
(segment (start 179.342659 128.773828) (end 177.324276 128.773828) (width 0.2032) (layer F.Cu) (net 51))
(segment (start 176.2493 127.698852) (end 176.2493 127.453) (width 0.2032) (layer F.Cu) (net 51))
(segment (start 176.2493 127.453) (end 176.2493 126.59956) (width 0.2032) (layer F.Cu) (net 51))
(segment (start 177.324276 128.773828) (end 176.2493 127.698852) (width 0.2032) (layer F.Cu) (net 51))
(segment (start 176.74968 127.453) (end 176.74968 126.59956) (width 0.2032) (layer F.Cu) (net 52))
(segment (start 183.071058 124.5066) (end 179.210239 128.367419) (width 0.2032) (layer F.Cu) (net 52))
(segment (start 184.253 124.5066) (end 183.071058 124.5066) (width 0.2032) (layer F.Cu) (net 52))
(segment (start 176.74968 127.624482) (end 176.74968 127.453) (width 0.2032) (layer F.Cu) (net 52))
(segment (start 177.492617 128.367419) (end 176.74968 127.624482) (width 0.2032) (layer F.Cu) (net 52))
(segment (start 179.210239 128.367419) (end 177.492617 128.367419) (width 0.2032) (layer F.Cu) (net 52))
(segment (start 184.253 123.9986) (end 183.040229 123.9986) (width 0.2032) (layer F.Cu) (net 53))
(segment (start 183.040229 123.9986) (end 179.077818 127.961011) (width 0.2032) (layer F.Cu) (net 53))
(segment (start 179.077818 127.961011) (end 177.688779 127.961011) (width 0.2032) (layer F.Cu) (net 53))
(segment (start 177.25006 127.522292) (end 177.25006 127.453) (width 0.2032) (layer F.Cu) (net 53))
(segment (start 177.25006 127.453) (end 177.25006 126.59956) (width 0.2032) (layer F.Cu) (net 53))
(segment (start 177.688779 127.961011) (end 177.25006 127.522292) (width 0.2032) (layer F.Cu) (net 53))
(segment (start 183.5418 123.516) (end 184.253 123.516) (width 0.2032) (layer F.Cu) (net 54))
(segment (start 182.984 123.516) (end 183.5418 123.516) (width 0.2032) (layer F.Cu) (net 54))
(segment (start 178.945399 127.554601) (end 182.984 123.516) (width 0.2032) (layer F.Cu) (net 54))
(segment (start 177.857119 127.554601) (end 178.945399 127.554601) (width 0.2032) (layer F.Cu) (net 54))
(segment (start 177.75044 127.447922) (end 177.857119 127.554601) (width 0.2032) (layer F.Cu) (net 54))
(segment (start 177.75044 126.59956) (end 177.75044 127.447922) (width 0.2032) (layer F.Cu) (net 54))
(segment (start 185.036712 115.25) (end 185.25 115.25) (width 0.2032) (layer B.Cu) (net 55))
(segment (start 178.5 115.25) (end 185.036712 115.25) (width 0.2032) (layer B.Cu) (net 55))
(segment (start 185 115.25) (end 185.036712 115.25) (width 0.2032) (layer B.Cu) (net 55))
(segment (start 187.9868 115.4642) (end 187.536712 115.914288) (width 0.2032) (layer F.Cu) (net 55))
(segment (start 177.5 116.25) (end 178.5 115.25) (width 0.2032) (layer B.Cu) (net 55))
(segment (start 187.9868 114.753) (end 187.9868 115.4642) (width 0.2032) (layer F.Cu) (net 55))
(segment (start 176.74968 118.40044) (end 176.74968 117.00032) (width 0.2032) (layer F.Cu) (net 55) (status 10))
(via (at 177.5 116.25) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 55))
(segment (start 176.74968 117.00032) (end 177.5 116.25) (width 0.2032) (layer F.Cu) (net 55))
(segment (start 176.75 118.40012) (end 176.74968 118.40044) (width 0.2032) (layer F.Cu) (net 55) (status 30))
(via (at 187.529865 117.496163) (size 1.27) (layers F.Cu B.Cu) (net 55))
(segment (start 187.536712 117.489316) (end 187.529865 117.496163) (width 0.2032) (layer F.Cu) (net 55))
(segment (start 187.536712 115.914288) (end 187.536712 117.489316) (width 0.2032) (layer F.Cu) (net 55))
(segment (start 187.529865 116.598138) (end 186.681727 115.75) (width 0.2032) (layer B.Cu) (net 55))
(segment (start 187.529865 117.496163) (end 187.529865 116.598138) (width 0.2032) (layer B.Cu) (net 55))
(segment (start 185.75 115.75) (end 185.25 115.25) (width 0.2032) (layer B.Cu) (net 55))
(segment (start 186.681727 115.75) (end 185.75 115.75) (width 0.2032) (layer B.Cu) (net 55))
(segment (start 176.2493 116.0007) (end 176.2493 118.40044) (width 0.2032) (layer F.Cu) (net 56))
(segment (start 177.497 114.753) (end 176.2493 116.0007) (width 0.2032) (layer F.Cu) (net 56))
(segment (start 186.0056 114.753) (end 177.497 114.753) (width 0.2032) (layer F.Cu) (net 56))
(via (at 188.514867 116.265239) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 57))
(segment (start 188.4948 114.753) (end 188.4948 116.245172) (width 0.2032) (layer F.Cu) (net 57))
(segment (start 188.4948 116.245172) (end 188.514867 116.265239) (width 0.2032) (layer F.Cu) (net 57))
(via (at 177.75 120) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 57))
(segment (start 175.74892 118.40044) (end 175.794639 118.446159) (width 0.2032) (layer F.Cu) (net 57) (status 30))
(segment (start 175.794639 118.446159) (end 175.794639 119.294521) (width 0.2032) (layer F.Cu) (net 57) (status 10))
(segment (start 175.794639 119.294521) (end 175.855599 119.355481) (width 0.2032) (layer F.Cu) (net 57))
(segment (start 175.855599 119.355481) (end 177.105481 119.355481) (width 0.2032) (layer F.Cu) (net 57))
(segment (start 177.105481 119.355481) (end 177.75 120) (width 0.2032) (layer F.Cu) (net 57))
(segment (start 188.514867 117.163264) (end 188.514867 116.265239) (width 0.2032) (layer B.Cu) (net 57))
(segment (start 178.458573 120.708573) (end 187.432333 120.708573) (width 0.2032) (layer B.Cu) (net 57))
(segment (start 177.75 120) (end 178.458573 120.708573) (width 0.2032) (layer B.Cu) (net 57))
(segment (start 188.514867 119.626039) (end 188.514867 117.163264) (width 0.2032) (layer B.Cu) (net 57))
(segment (start 187.432333 120.708573) (end 188.514867 119.626039) (width 0.2032) (layer B.Cu) (net 57))
(via (at 189.629621 117.743918) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 58))
(segment (start 189.9934 114.753) (end 189.9934 115.4642) (width 0.2032) (layer F.Cu) (net 58))
(segment (start 189.629621 116.845893) (end 189.629621 117.743918) (width 0.2032) (layer F.Cu) (net 58))
(segment (start 189.9934 115.4642) (end 189.629621 115.827979) (width 0.2032) (layer F.Cu) (net 58))
(segment (start 189.629621 115.827979) (end 189.629621 116.845893) (width 0.2032) (layer F.Cu) (net 58))
(via (at 176.308436 120.30372) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 58))
(segment (start 175.25108 118.40044) (end 175.25108 119.325712) (width 0.2032) (layer F.Cu) (net 58) (status 10))
(segment (start 175.25108 119.325712) (end 176.229088 120.30372) (width 0.2032) (layer F.Cu) (net 58))
(segment (start 176.229088 120.30372) (end 176.308436 120.30372) (width 0.2032) (layer F.Cu) (net 58))
(segment (start 187.626073 121.089583) (end 189.629621 119.086035) (width 0.2032) (layer B.Cu) (net 58))
(segment (start 176.308436 120.30372) (end 177.094299 121.089583) (width 0.2032) (layer B.Cu) (net 58))
(segment (start 189.629621 118.641943) (end 189.629621 117.743918) (width 0.2032) (layer B.Cu) (net 58))
(segment (start 177.094299 121.089583) (end 187.626073 121.089583) (width 0.2032) (layer B.Cu) (net 58))
(segment (start 189.629621 119.086035) (end 189.629621 118.641943) (width 0.2032) (layer B.Cu) (net 58))
(via (at 203.25 115.5) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 63))
(segment (start 203.25 115.700799) (end 203.25 115.5) (width 0.2032) (layer B.Cu) (net 63))
(segment (start 202.4525 116.498299) (end 203.25 115.700799) (width 0.2032) (layer B.Cu) (net 63))
(segment (start 202.4525 117.399999) (end 202.4525 116.498299) (width 0.2032) (layer B.Cu) (net 63))
(segment (start 201.7618 116.9882) (end 203.25 115.5) (width 0.2032) (layer F.Cu) (net 63))
(segment (start 199.747 116.9882) (end 201.7618 116.9882) (width 0.2032) (layer F.Cu) (net 63))
(segment (start 203.25 112.75) (end 203 112.5) (width 0.2032) (layer F.Cu) (net 63))
(segment (start 203.25 115.5) (end 203.25 112.75) (width 0.2032) (layer F.Cu) (net 63))
(segment (start 171.40044 123.74968) (end 169.99968 123.74968) (width 0.2032) (layer F.Cu) (net 64))
(segment (start 169.99968 123.74968) (end 169.63101 123.38101) (width 0.2032) (layer F.Cu) (net 64))
(segment (start 169.63101 123.38101) (end 167.86899 123.38101) (width 0.2032) (layer F.Cu) (net 64))
(segment (start 167.86899 123.38101) (end 167.75 123.5) (width 0.2032) (layer F.Cu) (net 64))
(segment (start 167.75 123.5) (end 167.75 126.25) (width 0.2032) (layer F.Cu) (net 64))
(segment (start 164.3525 130.1) (end 164.5 129.9525) (width 0.2032) (layer F.Cu) (net 64))
(segment (start 161.75 130.1) (end 164.3525 130.1) (width 0.2032) (layer F.Cu) (net 64))
(segment (start 164.5 129.9525) (end 165.7975 129.9525) (width 0.2032) (layer F.Cu) (net 64))
(segment (start 165.7975 129.9525) (end 167 128.75) (width 0.2032) (layer F.Cu) (net 64))
(segment (start 167 127) (end 167.75 126.25) (width 0.2032) (layer F.Cu) (net 64))
(segment (start 167 128.75) (end 167 127) (width 0.2032) (layer F.Cu) (net 64))
(segment (start 161.9325 125.2025) (end 161.75 125.02) (width 0.2032) (layer F.Cu) (net 65))
(segment (start 164.5 125.2025) (end 161.9325 125.2025) (width 0.2032) (layer F.Cu) (net 65))
(segment (start 165.5475 125.2025) (end 164.5 125.2025) (width 0.2032) (layer F.Cu) (net 65))
(segment (start 165.75 125) (end 165.5475 125.2025) (width 0.2032) (layer F.Cu) (net 65))
(segment (start 165.75 123.5) (end 165.75 125) (width 0.2032) (layer F.Cu) (net 65))
(segment (start 166.25 123) (end 165.75 123.5) (width 0.2032) (layer F.Cu) (net 65))
(segment (start 170.141489 123) (end 166.25 123) (width 0.2032) (layer F.Cu) (net 65))
(segment (start 170.390789 123.2493) (end 170.141489 123) (width 0.2032) (layer F.Cu) (net 65))
(segment (start 171.40044 123.2493) (end 170.390789 123.2493) (width 0.2032) (layer F.Cu) (net 65))
(segment (start 170.547 121.7507) (end 171.40044 121.7507) (width 0.2032) (layer F.Cu) (net 66))
(segment (start 170.52889 121.73259) (end 170.547 121.7507) (width 0.2032) (layer F.Cu) (net 66))
(segment (start 170.48259 121.73259) (end 170.52889 121.73259) (width 0.2032) (layer F.Cu) (net 66))
(segment (start 169.693422 121.25) (end 168.25 121.25) (width 0.2032) (layer F.Cu) (net 66))
(segment (start 170.176012 121.73259) (end 169.693422 121.25) (width 0.2032) (layer F.Cu) (net 66))
(segment (start 170.52889 121.73259) (end 170.176012 121.73259) (width 0.2032) (layer F.Cu) (net 66))
(segment (start 166.7975 119.7975) (end 164.5 119.7975) (width 0.2032) (layer F.Cu) (net 66))
(segment (start 168.25 121.25) (end 166.7975 119.7975) (width 0.2032) (layer F.Cu) (net 66))
(segment (start 164.3575 119.94) (end 164.5 119.7975) (width 0.2032) (layer F.Cu) (net 66))
(segment (start 161.75 119.94) (end 164.3575 119.94) (width 0.2032) (layer F.Cu) (net 66))
(segment (start 202 125.7975) (end 202 124.25) (width 0.3048) (layer F.Cu) (net 70))
(via (at 202 124.25) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 70))
(segment (start 186.9962 114.0038) (end 187.2975 113.7025) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 187.2975 113.7025) (end 187.2975 112.5) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 186.9962 114.753) (end 186.9962 114.0038) (width 0.2032) (layer F.Cu) (net 70))
(segment (start 184.253 128.4944) (end 184.253 128.747) (width 0.254) (layer F.Cu) (net 70))
(segment (start 187.25 128.5) (end 185.987422 128.5) (width 0.3048) (layer B.Cu) (net 70))
(segment (start 185.987422 128.5) (end 184.737422 129.75) (width 0.3048) (layer B.Cu) (net 70))
(segment (start 184.737422 129.75) (end 183.2025 129.75) (width 0.3048) (layer B.Cu) (net 70))
(segment (start 187.25 126.5475) (end 187.2975 126.5) (width 0.3048) (layer B.Cu) (net 70))
(segment (start 184.253 128.4944) (end 184.924508 128.4944) (width 0.2032) (layer F.Cu) (net 70))
(segment (start 184.930108 128.5) (end 184.924508 128.4944) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 188.0122 130.247) (end 188.0122 129.2622) (width 0.254) (layer F.Cu) (net 70))
(segment (start 188.0122 129.2622) (end 187.5272 128.7772) (width 0.254) (layer F.Cu) (net 70))
(segment (start 187.5272 128.7772) (end 187.25 128.5) (width 0.254) (layer F.Cu) (net 70))
(segment (start 187.25 128.5) (end 187.25 130.2025) (width 0.254) (layer B.Cu) (net 70))
(segment (start 187.25 130.2025) (end 187.2975 130.25) (width 0.254) (layer B.Cu) (net 70))
(via (at 187.25 128.5) (size 1.27) (layers F.Cu B.Cu) (net 70))
(segment (start 198.25 113.25) (end 199.2025 114.2025) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 199.2025 114.2025) (end 200 114.2025) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 198.25 113.25) (end 197.5 112.5) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 196.7025 112.5) (end 197.5 112.5) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 185.75 112.5) (end 187.2975 112.5) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 200.75 126.2976) (end 200.75 126.0442) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 200.75 126.0442) (end 200.9967 125.7975) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 200.9967 125.7975) (end 202 125.7975) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 199.747 126.4878) (end 200.5598 126.4878) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 200.5598 126.4878) (end 200.75 126.2976) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 200.7646 119.9854) (end 201.4525 119.2975) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 201.4525 119.2975) (end 202.5 119.2975) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 199.747 119.9854) (end 200.7646 119.9854) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 200 114.2025) (end 200 115.75) (width 0.254) (layer F.Cu) (net 70) (status 10))
(via (at 198.25 113.25) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 70))
(segment (start 199.747 116.003) (end 200 115.75) (width 0.254) (layer F.Cu) (net 70))
(segment (start 199.747 116.5056) (end 199.747 116.003) (width 0.254) (layer F.Cu) (net 70) (status 10))
(segment (start 196.178 113.75) (end 196.4558 113.75) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 196.4558 113.75) (end 196.7025 113.5033) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 196.7025 113.5033) (end 196.7025 112.5) (width 0.3048) (layer F.Cu) (net 70) (status 20))
(segment (start 195.9878 114.753) (end 195.9878 113.9402) (width 0.3048) (layer F.Cu) (net 70) (status 10))
(segment (start 195.9878 113.9402) (end 196.178 113.75) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 185.75 112.5) (end 187.25 112.5) (width 0.3048) (layer B.Cu) (net 70) (status 20))
(via (at 185.75 112.5) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 70))
(via (at 186 116.75) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 70))
(segment (start 186 116.75) (end 186 118.0475) (width 0.3048) (layer B.Cu) (net 70))
(segment (start 184.253 116.5056) (end 184.7444 116.5056) (width 0.254) (layer F.Cu) (net 70))
(segment (start 185.7556 116.5056) (end 186 116.75) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 184.7444 116.5056) (end 185.7556 116.5056) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 185.189922 127.7025) (end 185.987422 128.5) (width 0.3048) (layer B.Cu) (net 70))
(segment (start 183.75 127.7025) (end 185.189922 127.7025) (width 0.3048) (layer B.Cu) (net 70))
(segment (start 184.253 126.5132) (end 184.9868 126.5132) (width 0.254) (layer F.Cu) (net 70))
(segment (start 185.558368 127.084768) (end 185.558368 128.5) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 184.9868 126.5132) (end 185.558368 127.084768) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 185.558368 128.5) (end 184.930108 128.5) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 187.25 128.5) (end 185.558368 128.5) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 184.253 129.525) (end 184.253 128.747) (width 0.381) (layer F.Cu) (net 70))
(segment (start 184.028 129.75) (end 184.253 129.525) (width 0.381) (layer F.Cu) (net 70))
(segment (start 183.2025 129.75) (end 184.028 129.75) (width 0.381) (layer F.Cu) (net 70))
(segment (start 197.746 132.5435) (end 197.7025 132.5) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 202.4525 119.25) (end 202.5 119.2975) (width 0.2032) (layer B.Cu) (net 70))
(segment (start 198.25 114.148025) (end 198.25 113.25) (width 0.2032) (layer B.Cu) (net 70))
(segment (start 198.25 115.750199) (end 198.25 114.148025) (width 0.2032) (layer B.Cu) (net 70))
(segment (start 199.8998 117.399999) (end 198.25 115.750199) (width 0.2032) (layer B.Cu) (net 70))
(segment (start 200.5475 117.399999) (end 199.8998 117.399999) (width 0.2032) (layer B.Cu) (net 70))
(segment (start 174.656 137.88) (end 174.825 138.049) (width 0.381) (layer F.Cu) (net 70))
(segment (start 171.803 137.88) (end 174.656 137.88) (width 0.381) (layer F.Cu) (net 70))
(segment (start 171.683 138) (end 171.803 137.88) (width 0.381) (layer F.Cu) (net 70))
(segment (start 169.4525 138) (end 171.683 138) (width 0.381) (layer F.Cu) (net 70))
(segment (start 173.7074 138.049) (end 174.825 138.049) (width 0.254) (layer B.Cu) (net 70))
(segment (start 172.2564 139.5) (end 173.7074 138.049) (width 0.254) (layer B.Cu) (net 70))
(segment (start 161.75 139.5) (end 172.2564 139.5) (width 0.254) (layer B.Cu) (net 70))
(segment (start 161.44 139.19) (end 161.75 139.5) (width 0.254) (layer B.Cu) (net 70))
(segment (start 161.44 138.2) (end 161.44 139.19) (width 0.254) (layer B.Cu) (net 70))
(via (at 199 133.5) (size 1.27) (layers F.Cu B.Cu) (net 70))
(segment (start 199 133.5) (end 197.75 133.5) (width 0.381) (layer F.Cu) (net 70))
(segment (start 197.75 132.5475) (end 197.7025 132.5) (width 0.381) (layer F.Cu) (net 70))
(segment (start 197.75 133.5) (end 197.75 132.5475) (width 0.381) (layer F.Cu) (net 70))
(segment (start 197.7025 132.5) (end 197.7025 133.4525) (width 0.381) (layer B.Cu) (net 70))
(segment (start 197.75 133.5) (end 199 133.5) (width 0.381) (layer B.Cu) (net 70))
(segment (start 197.7025 133.4525) (end 197.75 133.5) (width 0.381) (layer B.Cu) (net 70))
(segment (start 187.25 128.5) (end 187.25 126.5475) (width 0.3048) (layer B.Cu) (net 70))
(segment (start 197.0038 130.247) (end 197.0038 130.9962) (width 0.254) (layer F.Cu) (net 70))
(segment (start 197.0038 130.9962) (end 197.75 131.7424) (width 0.254) (layer F.Cu) (net 70))
(segment (start 197.75 132.4525) (end 197.7025 132.5) (width 0.254) (layer F.Cu) (net 70))
(segment (start 197.75 131.7424) (end 197.75 132.4525) (width 0.254) (layer F.Cu) (net 70))
(via (at 204.08476 119.51524) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 70))
(segment (start 203.86702 119.2975) (end 204.08476 119.51524) (width 0.3048) (layer B.Cu) (net 70))
(segment (start 203.86702 119.2975) (end 204.08476 119.51524) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 202.5 119.2975) (end 203.86702 119.2975) (width 0.3048) (layer F.Cu) (net 70))
(segment (start 202.5 119.2975) (end 203.86702 119.2975) (width 0.3048) (layer B.Cu) (net 70))
(segment (start 199.747 125.4972) (end 197.89491 125.4972) (width 0.2032) (layer F.Cu) (net 71))
(segment (start 198.386515 125.09078) (end 197.48849 125.09078) (width 0.2032) (layer B.Cu) (net 71))
(segment (start 201.930848 128.635113) (end 198.386515 125.09078) (width 0.2032) (layer B.Cu) (net 71))
(segment (start 201.930848 136.137649) (end 201.930848 128.635113) (width 0.2032) (layer B.Cu) (net 71))
(segment (start 202.4132 136.620001) (end 201.930848 136.137649) (width 0.2032) (layer B.Cu) (net 71))
(segment (start 203.48 136.620001) (end 202.4132 136.620001) (width 0.2032) (layer B.Cu) (net 71))
(segment (start 197.89491 125.4972) (end 197.48849 125.09078) (width 0.2032) (layer F.Cu) (net 71))
(via (at 197.48849 125.09078) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 71))
(segment (start 198.059306 124.308282) (end 197.927403 124.176379) (width 0.2032) (layer B.Cu) (net 72))
(segment (start 198.661596 124.308282) (end 198.059306 124.308282) (width 0.2032) (layer B.Cu) (net 72))
(segment (start 202.5 128.146686) (end 198.661596 124.308282) (width 0.2032) (layer B.Cu) (net 72))
(segment (start 202.5 133.100001) (end 202.5 128.146686) (width 0.2032) (layer B.Cu) (net 72))
(segment (start 196.926379 124.176379) (end 196.884999 124.134999) (width 0.2032) (layer B.Cu) (net 72))
(segment (start 196.926379 124.176379) (end 196.884999 124.134999) (width 0.2032) (layer F.Cu) (net 72))
(segment (start 203.48 134.080001) (end 202.5 133.100001) (width 0.2032) (layer B.Cu) (net 72))
(segment (start 198.176935 124.176379) (end 196.926379 124.176379) (width 0.2032) (layer F.Cu) (net 72))
(segment (start 196.884999 124.134999) (end 196.25 123.5) (width 0.2032) (layer B.Cu) (net 72))
(segment (start 198.354714 123.9986) (end 198.176935 124.176379) (width 0.2032) (layer F.Cu) (net 72))
(segment (start 197.927403 124.176379) (end 196.926379 124.176379) (width 0.2032) (layer B.Cu) (net 72))
(segment (start 199.747 123.9986) (end 198.354714 123.9986) (width 0.2032) (layer F.Cu) (net 72))
(segment (start 196.884999 124.134999) (end 196.25 123.5) (width 0.2032) (layer F.Cu) (net 72))
(via (at 196.25 123.5) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 72))
(via (at 197.75 123.25) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 73))
(segment (start 197.9906 123.4906) (end 197.75 123.25) (width 0.2032) (layer F.Cu) (net 73))
(segment (start 199.747 123.4906) (end 197.9906 123.4906) (width 0.2032) (layer F.Cu) (net 73))
(segment (start 198.384999 123.884999) (end 197.75 123.25) (width 0.2032) (layer B.Cu) (net 73))
(segment (start 199.033024 123.884999) (end 198.384999 123.884999) (width 0.2032) (layer B.Cu) (net 73))
(segment (start 203 127.851975) (end 199.033024 123.884999) (width 0.2032) (layer B.Cu) (net 73))
(segment (start 203 131.25) (end 203 127.851975) (width 0.2032) (layer B.Cu) (net 73))
(segment (start 204.75 133) (end 203 131.25) (width 0.2032) (layer B.Cu) (net 73))
(segment (start 204.75 135.350001) (end 204.75 133) (width 0.2032) (layer B.Cu) (net 73))
(segment (start 206.02 136.620001) (end 204.75 135.350001) (width 0.2032) (layer B.Cu) (net 73))
(segment (start 203.5 127.5) (end 198.384999 122.384999) (width 0.2032) (layer B.Cu) (net 74))
(segment (start 203.5 130.338687) (end 203.5 127.5) (width 0.2032) (layer B.Cu) (net 74))
(segment (start 206.02 132.858687) (end 203.5 130.338687) (width 0.2032) (layer B.Cu) (net 74))
(segment (start 206.02 134.080001) (end 206.02 132.858687) (width 0.2032) (layer B.Cu) (net 74))
(segment (start 198.384999 122.384999) (end 197.75 121.75) (width 0.2032) (layer F.Cu) (net 74))
(segment (start 198.9826 122.9826) (end 198.384999 122.384999) (width 0.2032) (layer F.Cu) (net 74))
(segment (start 199.747 122.9826) (end 198.9826 122.9826) (width 0.2032) (layer F.Cu) (net 74))
(segment (start 198.384999 122.384999) (end 197.75 121.75) (width 0.2032) (layer B.Cu) (net 74))
(via (at 197.75 121.75) (size 1.27) (drill 0.635) (layers F.Cu B.Cu) (net 74))
(segment (start 162.44 116.792499) (end 162.5475 116.899999) (width 0.2032) (layer B.Cu) (net 75))
(segment (start 162.44 112.25) (end 162.44 116.792499) (width 0.2032) (layer B.Cu) (net 75))
(segment (start 195.249489 117.250511) (end 196.4958 116.0042) (width 0.2032) (layer F.Cu) (net 76))
(segment (start 196.4958 116.0042) (end 196.4958 114.753) (width 0.2032) (layer F.Cu) (net 76))
(segment (start 194.25 120.350001) (end 195.249489 119.350512) (width 0.2032) (layer F.Cu) (net 76))
(segment (start 195.249489 119.350512) (end 195.249489 117.250511) (width 0.2032) (layer F.Cu) (net 76))
(segment (start 199.747 128.4944) (end 198.7556 128.4944) (width 0.2032) (layer F.Cu) (net 77))
(segment (start 198.7556 128.4944) (end 198.5 128.75) (width 0.2032) (layer F.Cu) (net 77))
(segment (start 198.5 128.75) (end 197.313491 128.75) (width 0.2032) (layer F.Cu) (net 77))
(segment (start 197.313491 128.75) (end 195.913492 127.350001) (width 0.2032) (layer F.Cu) (net 77))
(segment (start 195.913492 127.350001) (end 194.5 127.350001) (width 0.2032) (layer F.Cu) (net 77))
(segment (start 199.747 127.9864) (end 198.386399 127.9864) (width 0.2032) (layer F.Cu) (net 78))
(segment (start 198.386399 127.9864) (end 197.75 127.350001) (width 0.2032) (layer F.Cu) (net 78))
(segment (start 199.747 126.0052) (end 195.655199 126.0052) (width 0.2032) (layer F.Cu) (net 79))
(segment (start 195.655199 126.0052) (end 194.5 124.850001) (width 0.2032) (layer F.Cu) (net 79))
(zone (net 1) (net_name GND) (layer Inner2.Cu) (tstamp 0) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 207.5 111) (xy 207.5 140) (xy 159.5 140) (xy 159.5 114) (xy 159.5 111)
(xy 184.75 111)
)
)
(filled_polygon
(pts
(xy 207.265 139.765) (xy 201.752959 139.765) (xy 201.752959 138.049) (xy 201.638885 137.475511) (xy 201.314029 136.98933)
(xy 200.999248 136.779) (xy 201.314029 136.56867) (xy 201.638885 136.082489) (xy 201.752959 135.509) (xy 201.638885 134.935511)
(xy 201.314029 134.44933) (xy 200.827848 134.124474) (xy 200.254359 134.0104) (xy 200.195641 134.0104) (xy 200.160278 134.017434)
(xy 200.269779 133.753727) (xy 200.27022 133.24849) (xy 200.077282 132.781542) (xy 199.766079 132.469796) (xy 200.25151 132.47022)
(xy 200.718458 132.277282) (xy 201.076026 131.920337) (xy 201.269779 131.453727) (xy 201.27022 130.94849) (xy 201.077282 130.481542)
(xy 200.720337 130.123974) (xy 200.253727 129.930221) (xy 199.74849 129.92978) (xy 199.52022 130.024098) (xy 199.52022 112.99849)
(xy 199.327282 112.531542) (xy 198.970337 112.173974) (xy 198.503727 111.980221) (xy 197.99849 111.97978) (xy 197.531542 112.172718)
(xy 197.173974 112.529663) (xy 196.980221 112.996273) (xy 196.97978 113.50151) (xy 197.172718 113.968458) (xy 197.529663 114.326026)
(xy 197.996273 114.519779) (xy 198.50151 114.52022) (xy 198.968458 114.327282) (xy 199.326026 113.970337) (xy 199.519779 113.503727)
(xy 199.52022 112.99849) (xy 199.52022 130.024098) (xy 199.384774 130.080063) (xy 199.384774 127.026307) (xy 199.136462 126.425346)
(xy 198.677073 125.965155) (xy 198.488604 125.886896) (xy 198.564516 125.811117) (xy 198.758269 125.344507) (xy 198.75871 124.83927)
(xy 198.565772 124.372322) (xy 198.494679 124.301105) (xy 198.826026 123.970337) (xy 199.019779 123.503727) (xy 199.02022 122.99849)
(xy 198.827282 122.531542) (xy 198.796052 122.500258) (xy 198.826026 122.470337) (xy 199.019779 122.003727) (xy 199.02022 121.49849)
(xy 198.827282 121.031542) (xy 198.631887 120.835806) (xy 198.769779 120.503727) (xy 198.77022 119.99849) (xy 198.577282 119.531542)
(xy 198.421052 119.37504) (xy 198.576026 119.220337) (xy 198.769779 118.753727) (xy 198.77022 118.24849) (xy 198.577282 117.781542)
(xy 198.220337 117.423974) (xy 197.753727 117.230221) (xy 197.705868 117.230179) (xy 197.705977 117.105917) (xy 197.513039 116.638969)
(xy 197.156094 116.281401) (xy 196.689484 116.087648) (xy 196.184247 116.087207) (xy 195.798388 116.246639) (xy 195.79844 116.187161)
(xy 195.605502 115.720213) (xy 195.248557 115.362645) (xy 194.781947 115.168892) (xy 194.27671 115.168451) (xy 193.809762 115.361389)
(xy 193.595396 115.575381) (xy 193.577282 115.531542) (xy 193.220337 115.173974) (xy 192.753727 114.980221) (xy 192.24849 114.97978)
(xy 191.781542 115.172718) (xy 191.534603 115.419226) (xy 191.289778 115.173974) (xy 190.823168 114.980221) (xy 190.317931 114.97978)
(xy 189.850983 115.172718) (xy 189.534309 115.48884) (xy 189.235204 115.189213) (xy 188.768594 114.99546) (xy 188.263357 114.995019)
(xy 187.796409 115.187957) (xy 187.438841 115.544902) (xy 187.245088 116.011512) (xy 187.244888 116.23977) (xy 187.175215 116.268559)
(xy 187.077282 116.031542) (xy 186.720337 115.673974) (xy 186.253727 115.480221) (xy 185.74849 115.47978) (xy 185.281542 115.672718)
(xy 184.923974 116.029663) (xy 184.730221 116.496273) (xy 184.72978 117.00151) (xy 184.922718 117.468458) (xy 185.279663 117.826026)
(xy 185.746273 118.019779) (xy 186.25151 118.02022) (xy 186.354649 117.977603) (xy 186.452583 118.214621) (xy 186.809528 118.572189)
(xy 187.276138 118.765942) (xy 187.781375 118.766383) (xy 188.248323 118.573445) (xy 188.496051 118.326148) (xy 188.552339 118.462376)
(xy 188.909284 118.819944) (xy 189.375894 119.013697) (xy 189.881131 119.014138) (xy 190.348079 118.8212) (xy 190.566472 118.603186)
(xy 190.788924 118.826026) (xy 191.255534 119.019779) (xy 191.760771 119.02022) (xy 192.227719 118.827282) (xy 192.585287 118.470337)
(xy 192.611447 118.407336) (xy 192.883071 118.679434) (xy 193.349681 118.873187) (xy 193.543603 118.873356) (xy 193.325345 118.963539)
(xy 192.865154 119.422928) (xy 192.615794 120.023454) (xy 192.615226 120.673695) (xy 192.863538 121.274656) (xy 193.322927 121.734847)
(xy 193.923453 121.984207) (xy 194.573694 121.984775) (xy 195.174655 121.736463) (xy 195.634846 121.277074) (xy 195.884206 120.676548)
(xy 195.884774 120.026307) (xy 195.636462 119.425346) (xy 195.177073 118.965155) (xy 194.576547 118.715795) (xy 194.237621 118.715498)
(xy 194.321866 118.68069) (xy 194.679434 118.323745) (xy 194.873187 117.857135) (xy 194.87335 117.670208) (xy 195.165588 117.549458)
(xy 195.165537 117.608937) (xy 195.358475 118.075885) (xy 195.71542 118.433453) (xy 196.18203 118.627206) (xy 196.229888 118.627247)
(xy 196.22978 118.75151) (xy 196.422718 119.218458) (xy 196.578947 119.374959) (xy 196.423974 119.529663) (xy 196.230221 119.996273)
(xy 196.22978 120.50151) (xy 196.422718 120.968458) (xy 196.618112 121.164193) (xy 196.480221 121.496273) (xy 196.47978 122.00151)
(xy 196.588892 122.265584) (xy 196.503727 122.230221) (xy 195.99849 122.22978) (xy 195.531542 122.422718) (xy 195.173974 122.779663)
(xy 194.980221 123.246273) (xy 194.980191 123.279593) (xy 194.826547 123.215795) (xy 194.176306 123.215227) (xy 193.575345 123.463539)
(xy 193.115154 123.922928) (xy 192.865794 124.523454) (xy 192.865226 125.173695) (xy 193.113538 125.774656) (xy 193.43848 126.100165)
(xy 193.115154 126.422928) (xy 192.865794 127.023454) (xy 192.865226 127.673695) (xy 193.113538 128.274656) (xy 193.572927 128.734847)
(xy 194.173453 128.984207) (xy 194.706384 128.984672) (xy 194.706349 129.025155) (xy 194.899287 129.492103) (xy 195.256232 129.849671)
(xy 195.722842 130.043424) (xy 196.228079 130.043865) (xy 196.695027 129.850927) (xy 197.052595 129.493982) (xy 197.246348 129.027372)
(xy 197.246449 128.910708) (xy 197.423453 128.984207) (xy 198.073694 128.984775) (xy 198.674655 128.736463) (xy 199.134846 128.277074)
(xy 199.384206 127.676548) (xy 199.384774 127.026307) (xy 199.384774 130.080063) (xy 199.281542 130.122718) (xy 198.923974 130.479663)
(xy 198.730221 130.946273) (xy 198.72978 131.45151) (xy 198.922718 131.918458) (xy 199.23392 132.230203) (xy 198.74849 132.22978)
(xy 198.281542 132.422718) (xy 197.923974 132.779663) (xy 197.730221 133.246273) (xy 197.72978 133.75151) (xy 197.888213 134.13495)
(xy 197.812 134.174531) (xy 197.812 135.382) (xy 197.832 135.382) (xy 197.832 135.636) (xy 197.812 135.636)
(xy 197.812 135.656) (xy 197.558 135.656) (xy 197.558 135.636) (xy 197.538 135.636) (xy 197.538 135.382)
(xy 197.558 135.382) (xy 197.558 134.174531) (xy 197.325973 134.054032) (xy 196.79651 134.302179) (xy 196.414992 134.72016)
(xy 196.234029 134.44933) (xy 195.747848 134.124474) (xy 195.174359 134.0104) (xy 195.115641 134.0104) (xy 194.542152 134.124474)
(xy 194.055971 134.44933) (xy 193.875 134.720172) (xy 193.694029 134.44933) (xy 193.207848 134.124474) (xy 192.634359 134.0104)
(xy 192.575641 134.0104) (xy 192.002152 134.124474) (xy 191.515971 134.44933) (xy 191.335007 134.72016) (xy 190.95349 134.302179)
(xy 190.424027 134.054032) (xy 190.192 134.174531) (xy 190.192 135.382) (xy 190.212 135.382) (xy 190.212 135.636)
(xy 190.192 135.636) (xy 190.192 135.656) (xy 189.938 135.656) (xy 189.938 135.636) (xy 189.918 135.636)
(xy 189.918 135.382) (xy 189.938 135.382) (xy 189.938 134.174531) (xy 189.705973 134.054032) (xy 189.17651 134.302179)
(xy 188.794992 134.72016) (xy 188.614029 134.44933) (xy 188.52022 134.386648) (xy 188.52022 128.24849) (xy 188.327282 127.781542)
(xy 187.970337 127.423974) (xy 187.503727 127.230221) (xy 186.99849 127.22978) (xy 186.531542 127.422718) (xy 186.173974 127.779663)
(xy 185.980221 128.246273) (xy 185.97978 128.75151) (xy 186.172718 129.218458) (xy 186.529663 129.576026) (xy 186.996273 129.769779)
(xy 187.50151 129.77022) (xy 187.968458 129.577282) (xy 188.326026 129.220337) (xy 188.519779 128.753727) (xy 188.52022 128.24849)
(xy 188.52022 134.386648) (xy 188.127848 134.124474) (xy 187.554359 134.0104) (xy 187.495641 134.0104) (xy 186.922152 134.124474)
(xy 186.435971 134.44933) (xy 186.255 134.720172) (xy 186.074029 134.44933) (xy 185.587848 134.124474) (xy 185.014359 134.0104)
(xy 184.955641 134.0104) (xy 184.382152 134.124474) (xy 183.895971 134.44933) (xy 183.715007 134.72016) (xy 183.33349 134.302179)
(xy 182.95778 134.126092) (xy 182.95778 117.474516) (xy 182.764842 117.007568) (xy 182.407897 116.65) (xy 181.941287 116.456247)
(xy 181.43605 116.455806) (xy 180.969102 116.648744) (xy 180.611534 117.005689) (xy 180.417781 117.472299) (xy 180.41734 117.977536)
(xy 180.610278 118.444484) (xy 180.967223 118.802052) (xy 181.433833 118.995805) (xy 181.93907 118.996246) (xy 182.406018 118.803308)
(xy 182.763586 118.446363) (xy 182.957339 117.979753) (xy 182.95778 117.474516) (xy 182.95778 134.126092) (xy 182.804027 134.054032)
(xy 182.572 134.174531) (xy 182.572 135.382) (xy 182.592 135.382) (xy 182.592 135.636) (xy 182.572 135.636)
(xy 182.572 135.656) (xy 182.318 135.656) (xy 182.318 135.636) (xy 182.298 135.636) (xy 182.298 135.382)
(xy 182.318 135.382) (xy 182.318 134.174531) (xy 182.085973 134.054032) (xy 181.55651 134.302179) (xy 181.174992 134.72016)
(xy 180.994029 134.44933) (xy 180.507848 134.124474) (xy 179.934359 134.0104) (xy 179.875641 134.0104) (xy 179.302152 134.124474)
(xy 179.248165 134.160546) (xy 179.248165 121.752619) (xy 179.055227 121.285671) (xy 178.698282 120.928103) (xy 178.641511 120.904529)
(xy 178.826026 120.720337) (xy 179.019779 120.253727) (xy 179.02022 119.74849) (xy 178.827282 119.281542) (xy 178.77022 119.22438)
(xy 178.77022 115.99849) (xy 178.577282 115.531542) (xy 178.220337 115.173974) (xy 177.753727 114.980221) (xy 177.24849 114.97978)
(xy 176.781542 115.172718) (xy 176.423974 115.529663) (xy 176.230221 115.996273) (xy 176.22978 116.50151) (xy 176.422718 116.968458)
(xy 176.779663 117.326026) (xy 177.246273 117.519779) (xy 177.75151 117.52022) (xy 178.218458 117.327282) (xy 178.576026 116.970337)
(xy 178.769779 116.503727) (xy 178.77022 115.99849) (xy 178.77022 119.22438) (xy 178.470337 118.923974) (xy 178.003727 118.730221)
(xy 177.49849 118.72978) (xy 177.031542 118.922718) (xy 176.814968 119.138914) (xy 176.562163 119.033941) (xy 176.056926 119.0335)
(xy 175.589978 119.226438) (xy 175.23241 119.583383) (xy 175.038657 120.049993) (xy 175.038216 120.55523) (xy 175.231154 121.022178)
(xy 175.392355 121.18366) (xy 175.339203 121.16159) (xy 174.956895 121.161256) (xy 174.895521 121.012718) (xy 174.538576 120.65515)
(xy 174.133628 120.487001) (xy 174.133712 120.391265) (xy 173.940774 119.924317) (xy 173.583829 119.566749) (xy 173.117219 119.372996)
(xy 172.611982 119.372555) (xy 172.145034 119.565493) (xy 171.787466 119.922438) (xy 171.593713 120.389048) (xy 171.593272 120.894285)
(xy 171.78621 121.361233) (xy 172.143155 121.718801) (xy 172.548102 121.886949) (xy 172.548019 121.982686) (xy 172.740957 122.449634)
(xy 173.097902 122.807202) (xy 173.564512 123.000955) (xy 173.946819 123.001288) (xy 174.008194 123.149827) (xy 174.365139 123.507395)
(xy 174.831749 123.701148) (xy 175.336986 123.701589) (xy 175.803934 123.508651) (xy 176.000901 123.312026) (xy 176.279524 123.42772)
(xy 176.784761 123.428161) (xy 177.251709 123.235223) (xy 177.363147 123.123978) (xy 177.724218 123.273908) (xy 178.229455 123.274349)
(xy 178.696403 123.081411) (xy 179.053971 122.724466) (xy 179.247724 122.257856) (xy 179.248165 121.752619) (xy 179.248165 134.160546)
(xy 178.815971 134.44933) (xy 178.635007 134.72016) (xy 178.25349 134.302179) (xy 177.724027 134.054032) (xy 177.492 134.174531)
(xy 177.492 135.382) (xy 177.512 135.382) (xy 177.512 135.636) (xy 177.492 135.636) (xy 177.492 135.656)
(xy 177.238 135.656) (xy 177.238 135.636) (xy 177.218 135.636) (xy 177.218 135.382) (xy 177.238 135.382)
(xy 177.238 134.174531) (xy 177.005973 134.054032) (xy 176.47651 134.302179) (xy 176.094992 134.72016) (xy 175.914029 134.44933)
(xy 175.427848 134.124474) (xy 174.854359 134.0104) (xy 174.795641 134.0104) (xy 174.222152 134.124474) (xy 173.735971 134.44933)
(xy 173.411115 134.935511) (xy 173.297041 135.509) (xy 173.411115 136.082489) (xy 173.735971 136.56867) (xy 173.757023 136.582736)
(xy 173.601702 136.647073) (xy 173.423073 136.825701) (xy 173.3264 137.05909) (xy 173.3264 137.311709) (xy 173.3264 139.038909)
(xy 173.423073 139.272298) (xy 173.601701 139.450927) (xy 173.83509 139.5476) (xy 174.087709 139.5476) (xy 175.814909 139.5476)
(xy 176.048298 139.450927) (xy 176.226927 139.272299) (xy 176.290643 139.118473) (xy 176.762152 139.433526) (xy 177.335641 139.5476)
(xy 177.394359 139.5476) (xy 177.967848 139.433526) (xy 178.454029 139.10867) (xy 178.635 138.837827) (xy 178.815971 139.10867)
(xy 179.302152 139.433526) (xy 179.875641 139.5476) (xy 179.934359 139.5476) (xy 180.507848 139.433526) (xy 180.994029 139.10867)
(xy 181.175 138.837827) (xy 181.355971 139.10867) (xy 181.842152 139.433526) (xy 182.415641 139.5476) (xy 182.474359 139.5476)
(xy 183.047848 139.433526) (xy 183.534029 139.10867) (xy 183.715 138.837827) (xy 183.895971 139.10867) (xy 184.382152 139.433526)
(xy 184.955641 139.5476) (xy 185.014359 139.5476) (xy 185.587848 139.433526) (xy 186.074029 139.10867) (xy 186.254992 138.837839)
(xy 186.63651 139.255821) (xy 187.165973 139.503968) (xy 187.398 139.383469) (xy 187.398 138.176) (xy 187.378 138.176)
(xy 187.378 137.922) (xy 187.398 137.922) (xy 187.398 137.902) (xy 187.652 137.902) (xy 187.652 137.922)
(xy 187.672 137.922) (xy 187.672 138.176) (xy 187.652 138.176) (xy 187.652 139.383469) (xy 187.884027 139.503968)
(xy 188.41349 139.255821) (xy 188.795007 138.837839) (xy 188.975971 139.10867) (xy 189.462152 139.433526) (xy 190.035641 139.5476)
(xy 190.094359 139.5476) (xy 190.667848 139.433526) (xy 191.154029 139.10867) (xy 191.335 138.837827) (xy 191.515971 139.10867)
(xy 192.002152 139.433526) (xy 192.575641 139.5476) (xy 192.634359 139.5476) (xy 193.207848 139.433526) (xy 193.694029 139.10867)
(xy 193.875 138.837827) (xy 194.055971 139.10867) (xy 194.542152 139.433526) (xy 195.115641 139.5476) (xy 195.174359 139.5476)
(xy 195.747848 139.433526) (xy 196.234029 139.10867) (xy 196.415 138.837827) (xy 196.595971 139.10867) (xy 197.082152 139.433526)
(xy 197.655641 139.5476) (xy 197.714359 139.5476) (xy 198.287848 139.433526) (xy 198.774029 139.10867) (xy 198.955 138.837827)
(xy 199.135971 139.10867) (xy 199.622152 139.433526) (xy 200.195641 139.5476) (xy 200.254359 139.5476) (xy 200.827848 139.433526)
(xy 201.314029 139.10867) (xy 201.638885 138.622489) (xy 201.752959 138.049) (xy 201.752959 139.765) (xy 171.3935 139.765)
(xy 171.3935 113.07481) (xy 171.3935 112.822191) (xy 171.3935 112.53575) (xy 171.23475 112.377) (xy 170.187 112.377)
(xy 170.187 113.42475) (xy 170.34575 113.5835) (xy 170.884809 113.5835) (xy 171.118198 113.486827) (xy 171.296827 113.308199)
(xy 171.3935 113.07481) (xy 171.3935 139.765) (xy 168.02022 139.765) (xy 168.02022 121.74849) (xy 167.827282 121.281542)
(xy 167.470337 120.923974) (xy 167.003727 120.730221) (xy 166.49849 120.72978) (xy 166.031542 120.922718) (xy 165.673974 121.279663)
(xy 165.480221 121.746273) (xy 165.47978 122.25151) (xy 165.672718 122.718458) (xy 166.029663 123.076026) (xy 166.496273 123.269779)
(xy 167.00151 123.27022) (xy 167.468458 123.077282) (xy 167.826026 122.720337) (xy 168.019779 122.253727) (xy 168.02022 121.74849)
(xy 168.02022 139.765) (xy 167.52022 139.765) (xy 167.52022 125.99849) (xy 167.327282 125.531542) (xy 166.970337 125.173974)
(xy 166.503727 124.980221) (xy 165.99849 124.97978) (xy 165.531542 125.172718) (xy 165.173974 125.529663) (xy 164.980221 125.996273)
(xy 164.97978 126.50151) (xy 165.172718 126.968458) (xy 165.529663 127.326026) (xy 165.996273 127.519779) (xy 166.50151 127.52022)
(xy 166.968458 127.327282) (xy 167.326026 126.970337) (xy 167.519779 126.503727) (xy 167.52022 125.99849) (xy 167.52022 139.765)
(xy 163.27022 139.765) (xy 163.27022 135.49849) (xy 163.095927 135.076666) (xy 163.095927 127.75252) (xy 163.095927 122.67252)
(xy 163.083731 122.448035) (xy 163.083731 119.675914) (xy 162.881146 119.18562) (xy 162.506353 118.810173) (xy 162.016413 118.606732)
(xy 161.485914 118.606269) (xy 160.99562 118.808854) (xy 160.620173 119.183647) (xy 160.416732 119.673587) (xy 160.416269 120.204086)
(xy 160.618854 120.69438) (xy 160.993647 121.069827) (xy 161.315118 121.203313) (xy 161.057071 121.3102) (xy 160.995417 121.545812)
(xy 161.75 122.300395) (xy 162.504583 121.545812) (xy 162.442929 121.3102) (xy 162.163688 121.211916) (xy 162.50438 121.071146)
(xy 162.879827 120.696353) (xy 163.083268 120.206413) (xy 163.083731 119.675914) (xy 163.083731 122.448035) (xy 163.067148 122.142801)
(xy 162.9198 121.787071) (xy 162.684188 121.725417) (xy 161.929605 122.48) (xy 162.684188 123.234583) (xy 162.9198 123.172929)
(xy 163.095927 122.67252) (xy 163.095927 127.75252) (xy 163.083731 127.528035) (xy 163.083731 124.755914) (xy 162.881146 124.26562)
(xy 162.506353 123.890173) (xy 162.184881 123.756686) (xy 162.442929 123.6498) (xy 162.504583 123.414188) (xy 161.75 122.659605)
(xy 161.570395 122.83921) (xy 161.570395 122.48) (xy 160.815812 121.725417) (xy 160.5802 121.787071) (xy 160.404073 122.28748)
(xy 160.432852 122.817199) (xy 160.5802 123.172929) (xy 160.815812 123.234583) (xy 161.570395 122.48) (xy 161.570395 122.83921)
(xy 160.995417 123.414188) (xy 161.057071 123.6498) (xy 161.336311 123.748083) (xy 160.99562 123.888854) (xy 160.620173 124.263647)
(xy 160.416732 124.753587) (xy 160.416269 125.284086) (xy 160.618854 125.77438) (xy 160.993647 126.149827) (xy 161.315118 126.283313)
(xy 161.057071 126.3902) (xy 160.995417 126.625812) (xy 161.75 127.380395) (xy 162.504583 126.625812) (xy 162.442929 126.3902)
(xy 162.163688 126.291916) (xy 162.50438 126.151146) (xy 162.879827 125.776353) (xy 163.083268 125.286413) (xy 163.083731 124.755914)
(xy 163.083731 127.528035) (xy 163.067148 127.222801) (xy 162.9198 126.867071) (xy 162.684188 126.805417) (xy 161.929605 127.56)
(xy 162.684188 128.314583) (xy 162.9198 128.252929) (xy 163.095927 127.75252) (xy 163.095927 135.076666) (xy 163.0835 135.04659)
(xy 163.0835 130.92481) (xy 163.0835 130.672191) (xy 163.0835 129.275191) (xy 162.986827 129.041802) (xy 162.808199 128.863173)
(xy 162.57481 128.7665) (xy 162.354327 128.7665) (xy 162.442929 128.7298) (xy 162.504583 128.494188) (xy 161.75 127.739605)
(xy 161.570395 127.91921) (xy 161.570395 127.56) (xy 160.815812 126.805417) (xy 160.5802 126.867071) (xy 160.404073 127.36748)
(xy 160.432852 127.897199) (xy 160.5802 128.252929) (xy 160.815812 128.314583) (xy 161.570395 127.56) (xy 161.570395 127.91921)
(xy 160.995417 128.494188) (xy 161.057071 128.7298) (xy 161.161342 128.7665) (xy 160.925191 128.7665) (xy 160.691802 128.863173)
(xy 160.513173 129.041801) (xy 160.4165 129.27519) (xy 160.4165 129.527809) (xy 160.4165 130.924809) (xy 160.513173 131.158198)
(xy 160.691801 131.336827) (xy 160.92519 131.4335) (xy 161.177809 131.4335) (xy 162.574809 131.4335) (xy 162.808198 131.336827)
(xy 162.986827 131.158199) (xy 163.0835 130.92481) (xy 163.0835 135.04659) (xy 163.077282 135.031542) (xy 162.720337 134.673974)
(xy 162.253727 134.480221) (xy 161.74849 134.47978) (xy 161.281542 134.672718) (xy 160.923974 135.029663) (xy 160.730221 135.496273)
(xy 160.72978 136.00151) (xy 160.922718 136.468458) (xy 161.279663 136.826026) (xy 161.746273 137.019779) (xy 162.25151 137.02022)
(xy 162.718458 136.827282) (xy 163.076026 136.470337) (xy 163.269779 136.003727) (xy 163.27022 135.49849) (xy 163.27022 139.765)
(xy 159.735 139.765) (xy 159.735 111.235) (xy 161.569271 111.235) (xy 161.310173 111.493647) (xy 161.106732 111.983587)
(xy 161.106269 112.514086) (xy 161.308854 113.00438) (xy 161.683647 113.379827) (xy 162.173587 113.583268) (xy 162.704086 113.583731)
(xy 163.19438 113.381146) (xy 163.569827 113.006353) (xy 163.710093 112.668553) (xy 163.848854 113.00438) (xy 164.223647 113.379827)
(xy 164.713587 113.583268) (xy 165.244086 113.583731) (xy 165.73438 113.381146) (xy 166.109827 113.006353) (xy 166.250093 112.668553)
(xy 166.388854 113.00438) (xy 166.763647 113.379827) (xy 167.253587 113.583268) (xy 167.784086 113.583731) (xy 168.27438 113.381146)
(xy 168.649827 113.006353) (xy 168.7265 112.821704) (xy 168.7265 112.822191) (xy 168.7265 113.07481) (xy 168.823173 113.308199)
(xy 169.001802 113.486827) (xy 169.235191 113.5835) (xy 169.77425 113.5835) (xy 169.933 113.42475) (xy 169.933 112.377)
(xy 169.913 112.377) (xy 169.913 112.123) (xy 169.933 112.123) (xy 169.933 112.103) (xy 170.187 112.103)
(xy 170.187 112.123) (xy 171.23475 112.123) (xy 171.3935 111.96425) (xy 171.3935 111.677809) (xy 171.3935 111.42519)
(xy 171.31472 111.235) (xy 185.485856 111.235) (xy 185.031542 111.422718) (xy 184.673974 111.779663) (xy 184.480221 112.246273)
(xy 184.47978 112.75151) (xy 184.672718 113.218458) (xy 185.029663 113.576026) (xy 185.496273 113.769779) (xy 186.00151 113.77022)
(xy 186.468458 113.577282) (xy 186.826026 113.220337) (xy 187.019779 112.753727) (xy 187.02022 112.24849) (xy 186.827282 111.781542)
(xy 186.470337 111.423974) (xy 186.015236 111.235) (xy 207.265 111.235) (xy 207.265 133.253757) (xy 207.109029 133.020331)
(xy 206.845927 132.844531) (xy 206.845927 115.84252) (xy 206.817148 115.312801) (xy 206.6698 114.957071) (xy 206.434188 114.895417)
(xy 206.254583 115.075022) (xy 206.254583 114.715812) (xy 206.192929 114.4802) (xy 205.69252 114.304073) (xy 205.162801 114.332852)
(xy 204.807071 114.4802) (xy 204.745417 114.715812) (xy 205.5 115.470395) (xy 206.254583 114.715812) (xy 206.254583 115.075022)
(xy 205.679605 115.65) (xy 206.434188 116.404583) (xy 206.6698 116.342929) (xy 206.845927 115.84252) (xy 206.845927 132.844531)
(xy 206.833731 132.836382) (xy 206.833731 125.545914) (xy 206.631146 125.05562) (xy 206.256353 124.680173) (xy 205.918553 124.539906)
(xy 206.25438 124.401146) (xy 206.629827 124.026353) (xy 206.833268 123.536413) (xy 206.833731 123.005914) (xy 206.631146 122.51562)
(xy 206.256353 122.140173) (xy 205.918553 121.999906) (xy 206.25438 121.861146) (xy 206.629827 121.486353) (xy 206.833268 120.996413)
(xy 206.833731 120.465914) (xy 206.631146 119.97562) (xy 206.256353 119.600173) (xy 205.918553 119.459906) (xy 206.25438 119.321146)
(xy 206.629827 118.946353) (xy 206.833268 118.456413) (xy 206.833731 117.925914) (xy 206.631146 117.43562) (xy 206.256353 117.060173)
(xy 205.934881 116.926686) (xy 206.192929 116.8198) (xy 206.254583 116.584188) (xy 205.5 115.829605) (xy 205.320395 116.00921)
(xy 205.320395 115.65) (xy 204.565812 114.895417) (xy 204.393016 114.940633) (xy 204.327282 114.781542) (xy 203.970337 114.423974)
(xy 203.503727 114.230221) (xy 202.99849 114.22978) (xy 202.531542 114.422718) (xy 202.173974 114.779663) (xy 201.980221 115.246273)
(xy 201.97978 115.75151) (xy 202.172718 116.218458) (xy 202.529663 116.576026) (xy 202.996273 116.769779) (xy 203.50151 116.77022)
(xy 203.968458 116.577282) (xy 204.293054 116.253251) (xy 204.3302 116.342929) (xy 204.565812 116.404583) (xy 205.320395 115.65)
(xy 205.320395 116.00921) (xy 204.745417 116.584188) (xy 204.807071 116.8198) (xy 205.086311 116.918083) (xy 204.74562 117.058854)
(xy 204.370173 117.433647) (xy 204.166732 117.923587) (xy 204.166269 118.454086) (xy 204.176949 118.479935) (xy 203.99849 118.47978)
(xy 203.531542 118.672718) (xy 203.173974 119.029663) (xy 202.980221 119.496273) (xy 202.97978 120.00151) (xy 203.172718 120.468458)
(xy 203.529663 120.826026) (xy 203.996273 121.019779) (xy 204.17695 121.019936) (xy 204.368854 121.48438) (xy 204.743647 121.859827)
(xy 205.081446 122.000093) (xy 204.74562 122.138854) (xy 204.370173 122.513647) (xy 204.166732 123.003587) (xy 204.166269 123.534086)
(xy 204.368854 124.02438) (xy 204.743647 124.399827) (xy 205.081446 124.540093) (xy 204.74562 124.678854) (xy 204.370173 125.053647)
(xy 204.166732 125.543587) (xy 204.166269 126.074086) (xy 204.368854 126.56438) (xy 204.743647 126.939827) (xy 204.928295 127.0165)
(xy 204.675191 127.0165) (xy 204.441802 127.113173) (xy 204.263173 127.291801) (xy 204.1665 127.52519) (xy 204.1665 127.777809)
(xy 204.1665 129.174809) (xy 204.263173 129.408198) (xy 204.441801 129.586827) (xy 204.67519 129.6835) (xy 204.927809 129.6835)
(xy 206.324809 129.6835) (xy 206.558198 129.586827) (xy 206.736827 129.408199) (xy 206.8335 129.17481) (xy 206.8335 128.922191)
(xy 206.8335 127.525191) (xy 206.736827 127.291802) (xy 206.558199 127.113173) (xy 206.32481 127.0165) (xy 206.072191 127.0165)
(xy 206.072009 127.0165) (xy 206.25438 126.941146) (xy 206.629827 126.566353) (xy 206.833268 126.076413) (xy 206.833731 125.545914)
(xy 206.833731 132.836382) (xy 206.622848 132.695475) (xy 206.049359 132.581401) (xy 205.990641 132.581401) (xy 205.417152 132.695475)
(xy 204.930971 133.020331) (xy 204.75 133.291173) (xy 204.569029 133.020331) (xy 204.082848 132.695475) (xy 203.509359 132.581401)
(xy 203.450641 132.581401) (xy 203.27022 132.617288) (xy 203.27022 123.99849) (xy 203.077282 123.531542) (xy 202.720337 123.173974)
(xy 202.253727 122.980221) (xy 201.74849 122.97978) (xy 201.281542 123.172718) (xy 200.923974 123.529663) (xy 200.730221 123.996273)
(xy 200.72978 124.50151) (xy 200.922718 124.968458) (xy 201.279663 125.326026) (xy 201.746273 125.519779) (xy 202.25151 125.52022)
(xy 202.718458 125.327282) (xy 203.076026 124.970337) (xy 203.269779 124.503727) (xy 203.27022 123.99849) (xy 203.27022 132.617288)
(xy 202.877152 132.695475) (xy 202.390971 133.020331) (xy 202.066115 133.506512) (xy 201.952041 134.080001) (xy 202.066115 134.65349)
(xy 202.390971 135.139671) (xy 202.412023 135.153737) (xy 202.256702 135.218074) (xy 202.078073 135.396702) (xy 201.9814 135.630091)
(xy 201.9814 135.88271) (xy 201.9814 137.60991) (xy 202.078073 137.843299) (xy 202.256701 138.021928) (xy 202.49009 138.118601)
(xy 202.742709 138.118601) (xy 204.469909 138.118601) (xy 204.703298 138.021928) (xy 204.881927 137.8433) (xy 204.945643 137.689474)
(xy 205.417152 138.004527) (xy 205.990641 138.118601) (xy 206.049359 138.118601) (xy 206.622848 138.004527) (xy 207.109029 137.679671)
(xy 207.265 137.446244) (xy 207.265 139) (xy 207.265 139.765)
)
)
)
(zone (net 3) (net_name +3.3VDAC) (layer Inner1.Cu) (tstamp 53B08665) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 159.5 111) (xy 182.5 111) (xy 182.5 131.5) (xy 172 131.5) (xy 172 140)
(xy 159.5 140)
)
)
(filled_polygon
(pts
(xy 182.373 131.373) (xy 180.673096 131.373) (xy 180.826026 131.220337) (xy 181.019779 130.753727) (xy 181.02022 130.24849)
(xy 180.827282 129.781542) (xy 180.470337 129.423974) (xy 180.003727 129.230221) (xy 179.49849 129.22978) (xy 179.27022 129.324098)
(xy 179.27022 124.74849) (xy 179.248165 124.695112) (xy 179.248165 121.752619) (xy 179.055227 121.285671) (xy 178.698282 120.928103)
(xy 178.641511 120.904529) (xy 178.826026 120.720337) (xy 179.019779 120.253727) (xy 179.02022 119.74849) (xy 178.827282 119.281542)
(xy 178.77022 119.22438) (xy 178.77022 115.99849) (xy 178.577282 115.531542) (xy 178.220337 115.173974) (xy 177.753727 114.980221)
(xy 177.24849 114.97978) (xy 176.781542 115.172718) (xy 176.423974 115.529663) (xy 176.230221 115.996273) (xy 176.22978 116.50151)
(xy 176.422718 116.968458) (xy 176.779663 117.326026) (xy 177.246273 117.519779) (xy 177.75151 117.52022) (xy 178.218458 117.327282)
(xy 178.576026 116.970337) (xy 178.769779 116.503727) (xy 178.77022 115.99849) (xy 178.77022 119.22438) (xy 178.470337 118.923974)
(xy 178.003727 118.730221) (xy 177.49849 118.72978) (xy 177.031542 118.922718) (xy 176.814968 119.138914) (xy 176.562163 119.033941)
(xy 176.056926 119.0335) (xy 175.589978 119.226438) (xy 175.23241 119.583383) (xy 175.038657 120.049993) (xy 175.038216 120.55523)
(xy 175.231154 121.022178) (xy 175.392355 121.18366) (xy 175.339203 121.16159) (xy 174.956895 121.161256) (xy 174.895521 121.012718)
(xy 174.538576 120.65515) (xy 174.133628 120.487001) (xy 174.133712 120.391265) (xy 173.940774 119.924317) (xy 173.583829 119.566749)
(xy 173.117219 119.372996) (xy 172.611982 119.372555) (xy 172.145034 119.565493) (xy 171.787466 119.922438) (xy 171.593713 120.389048)
(xy 171.593272 120.894285) (xy 171.78621 121.361233) (xy 172.143155 121.718801) (xy 172.548102 121.886949) (xy 172.548019 121.982686)
(xy 172.740957 122.449634) (xy 173.097902 122.807202) (xy 173.564512 123.000955) (xy 173.946819 123.001288) (xy 174.008194 123.149827)
(xy 174.365139 123.507395) (xy 174.831749 123.701148) (xy 175.336986 123.701589) (xy 175.803934 123.508651) (xy 176.000901 123.312026)
(xy 176.279524 123.42772) (xy 176.784761 123.428161) (xy 177.251709 123.235223) (xy 177.363147 123.123978) (xy 177.724218 123.273908)
(xy 178.229455 123.274349) (xy 178.696403 123.081411) (xy 179.053971 122.724466) (xy 179.247724 122.257856) (xy 179.248165 121.752619)
(xy 179.248165 124.695112) (xy 179.077282 124.281542) (xy 178.720337 123.923974) (xy 178.253727 123.730221) (xy 177.74849 123.72978)
(xy 177.281542 123.922718) (xy 176.923974 124.279663) (xy 176.730221 124.746273) (xy 176.72978 125.25151) (xy 176.922718 125.718458)
(xy 177.279663 126.076026) (xy 177.746273 126.269779) (xy 178.25151 126.27022) (xy 178.718458 126.077282) (xy 179.076026 125.720337)
(xy 179.269779 125.253727) (xy 179.27022 124.74849) (xy 179.27022 129.324098) (xy 179.031542 129.422718) (xy 178.673974 129.779663)
(xy 178.480221 130.246273) (xy 178.47978 130.75151) (xy 178.672718 131.218458) (xy 178.82699 131.373) (xy 174.52022 131.373)
(xy 174.52022 127.99849) (xy 174.327282 127.531542) (xy 173.970337 127.173974) (xy 173.503727 126.980221) (xy 172.99849 126.97978)
(xy 172.531542 127.172718) (xy 172.173974 127.529663) (xy 171.980221 127.996273) (xy 171.97978 128.50151) (xy 172.172718 128.968458)
(xy 172.529663 129.326026) (xy 172.996273 129.519779) (xy 173.50151 129.52022) (xy 173.968458 129.327282) (xy 174.326026 128.970337)
(xy 174.519779 128.503727) (xy 174.52022 127.99849) (xy 174.52022 131.373) (xy 171.968368 131.373) (xy 171.827282 131.031542)
(xy 171.470337 130.673974) (xy 171.003727 130.480221) (xy 170.49849 130.47978) (xy 170.27022 130.574098) (xy 170.27022 118.74849)
(xy 170.077282 118.281542) (xy 169.720337 117.923974) (xy 169.253727 117.730221) (xy 168.74849 117.72978) (xy 168.281542 117.922718)
(xy 167.923974 118.279663) (xy 167.730221 118.746273) (xy 167.72978 119.25151) (xy 167.922718 119.718458) (xy 168.279663 120.076026)
(xy 168.746273 120.269779) (xy 169.25151 120.27022) (xy 169.718458 120.077282) (xy 170.076026 119.720337) (xy 170.269779 119.253727)
(xy 170.27022 118.74849) (xy 170.27022 130.574098) (xy 170.031542 130.672718) (xy 169.673974 131.029663) (xy 169.480221 131.496273)
(xy 169.47978 132.00151) (xy 169.672718 132.468458) (xy 170.029663 132.826026) (xy 170.496273 133.019779) (xy 171.00151 133.02022)
(xy 171.468458 132.827282) (xy 171.826026 132.470337) (xy 171.873 132.35721) (xy 171.873 139.765) (xy 169.77022 139.765)
(xy 169.77022 135.49849) (xy 169.577282 135.031542) (xy 169.220337 134.673974) (xy 168.753727 134.480221) (xy 168.24849 134.47978)
(xy 167.781542 134.672718) (xy 167.423974 135.029663) (xy 167.230221 135.496273) (xy 167.22978 136.00151) (xy 167.422718 136.468458)
(xy 167.779663 136.826026) (xy 168.246273 137.019779) (xy 168.75151 137.02022) (xy 169.218458 136.827282) (xy 169.576026 136.470337)
(xy 169.769779 136.003727) (xy 169.77022 135.49849) (xy 169.77022 139.765) (xy 163.083731 139.765) (xy 163.083731 127.295914)
(xy 162.881146 126.80562) (xy 162.506353 126.430173) (xy 162.168553 126.289906) (xy 162.50438 126.151146) (xy 162.879827 125.776353)
(xy 163.083268 125.286413) (xy 163.083731 124.755914) (xy 162.881146 124.26562) (xy 162.506353 123.890173) (xy 162.168553 123.749906)
(xy 162.50438 123.611146) (xy 162.879827 123.236353) (xy 163.083268 122.746413) (xy 163.083731 122.215914) (xy 162.881146 121.72562)
(xy 162.506353 121.350173) (xy 162.168553 121.209906) (xy 162.50438 121.071146) (xy 162.879827 120.696353) (xy 163.083268 120.206413)
(xy 163.083731 119.675914) (xy 162.881146 119.18562) (xy 162.506353 118.810173) (xy 162.016413 118.606732) (xy 161.485914 118.606269)
(xy 160.99562 118.808854) (xy 160.620173 119.183647) (xy 160.416732 119.673587) (xy 160.416269 120.204086) (xy 160.618854 120.69438)
(xy 160.993647 121.069827) (xy 161.331446 121.210093) (xy 160.99562 121.348854) (xy 160.620173 121.723647) (xy 160.416732 122.213587)
(xy 160.416269 122.744086) (xy 160.618854 123.23438) (xy 160.993647 123.609827) (xy 161.331446 123.750093) (xy 160.99562 123.888854)
(xy 160.620173 124.263647) (xy 160.416732 124.753587) (xy 160.416269 125.284086) (xy 160.618854 125.77438) (xy 160.993647 126.149827)
(xy 161.331446 126.290093) (xy 160.99562 126.428854) (xy 160.620173 126.803647) (xy 160.416732 127.293587) (xy 160.416269 127.824086)
(xy 160.618854 128.31438) (xy 160.993647 128.689827) (xy 161.178295 128.7665) (xy 160.925191 128.7665) (xy 160.691802 128.863173)
(xy 160.513173 129.041801) (xy 160.4165 129.27519) (xy 160.4165 129.527809) (xy 160.4165 130.924809) (xy 160.513173 131.158198)
(xy 160.691801 131.336827) (xy 160.92519 131.4335) (xy 161.177809 131.4335) (xy 162.574809 131.4335) (xy 162.808198 131.336827)
(xy 162.986827 131.158199) (xy 163.0835 130.92481) (xy 163.0835 130.672191) (xy 163.0835 129.275191) (xy 162.986827 129.041802)
(xy 162.808199 128.863173) (xy 162.57481 128.7665) (xy 162.322191 128.7665) (xy 162.322009 128.7665) (xy 162.50438 128.691146)
(xy 162.879827 128.316353) (xy 163.083268 127.826413) (xy 163.083731 127.295914) (xy 163.083731 139.765) (xy 159.735 139.765)
(xy 159.735 111.235) (xy 161.569271 111.235) (xy 161.310173 111.493647) (xy 161.106732 111.983587) (xy 161.106269 112.514086)
(xy 161.308854 113.00438) (xy 161.683647 113.379827) (xy 162.173587 113.583268) (xy 162.704086 113.583731) (xy 163.19438 113.381146)
(xy 163.569827 113.006353) (xy 163.710093 112.668553) (xy 163.848854 113.00438) (xy 164.223647 113.379827) (xy 164.713587 113.583268)
(xy 165.244086 113.583731) (xy 165.73438 113.381146) (xy 166.109827 113.006353) (xy 166.250093 112.668553) (xy 166.388854 113.00438)
(xy 166.763647 113.379827) (xy 167.253587 113.583268) (xy 167.784086 113.583731) (xy 168.27438 113.381146) (xy 168.649827 113.006353)
(xy 168.7265 112.821704) (xy 168.7265 113.074809) (xy 168.823173 113.308198) (xy 169.001801 113.486827) (xy 169.23519 113.5835)
(xy 169.487809 113.5835) (xy 170.884809 113.5835) (xy 171.118198 113.486827) (xy 171.296827 113.308199) (xy 171.3935 113.07481)
(xy 171.3935 112.822191) (xy 171.3935 111.425191) (xy 171.31472 111.235) (xy 182.373 111.235) (xy 182.373 115.056251)
(xy 182.044968 114.920041) (xy 181.539731 114.9196) (xy 181.072783 115.112538) (xy 180.715215 115.469483) (xy 180.521462 115.936093)
(xy 180.521021 116.44133) (xy 180.713959 116.908278) (xy 181.070904 117.265846) (xy 181.537514 117.459599) (xy 182.042751 117.46004)
(xy 182.373 117.323584) (xy 182.373 131.373)
)
)
)
(zone (net 70) (net_name +3.3V) (layer Inner1.Cu) (tstamp 53B5AAB4) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 184.75 111) (xy 207.5 111) (xy 207.5 140) (xy 173 140) (xy 173 132.5)
(xy 183.5 132.5) (xy 183.5 114) (xy 183.5 111)
)
)
(filled_polygon
(pts
(xy 207.265 139.765) (xy 201.752959 139.765) (xy 201.752959 138.049) (xy 201.638885 137.475511) (xy 201.314029 136.98933)
(xy 200.999248 136.779) (xy 201.314029 136.56867) (xy 201.638885 136.082489) (xy 201.752959 135.509) (xy 201.638885 134.935511)
(xy 201.314029 134.44933) (xy 200.827848 134.124474) (xy 200.254359 134.0104) (xy 200.195641 134.0104) (xy 199.622152 134.124474)
(xy 199.135971 134.44933) (xy 198.955 134.720172) (xy 198.774029 134.44933) (xy 198.287848 134.124474) (xy 197.714359 134.0104)
(xy 197.655641 134.0104) (xy 197.082152 134.124474) (xy 196.595971 134.44933) (xy 196.415 134.720172) (xy 196.234029 134.44933)
(xy 195.799041 134.15868) (xy 195.799041 132.186864) (xy 195.606103 131.719916) (xy 195.249158 131.362348) (xy 194.782548 131.168595)
(xy 194.277311 131.168154) (xy 193.810363 131.361092) (xy 193.452795 131.718037) (xy 193.259042 132.184647) (xy 193.258601 132.689884)
(xy 193.451539 133.156832) (xy 193.808484 133.5144) (xy 194.275094 133.708153) (xy 194.780331 133.708594) (xy 195.247279 133.515656)
(xy 195.604847 133.158711) (xy 195.7986 132.692101) (xy 195.799041 132.186864) (xy 195.799041 134.15868) (xy 195.747848 134.124474)
(xy 195.174359 134.0104) (xy 195.115641 134.0104) (xy 194.542152 134.124474) (xy 194.055971 134.44933) (xy 193.875 134.720172)
(xy 193.694029 134.44933) (xy 193.207848 134.124474) (xy 192.634359 134.0104) (xy 192.575641 134.0104) (xy 192.002152 134.124474)
(xy 191.515971 134.44933) (xy 191.335 134.720172) (xy 191.154029 134.44933) (xy 190.667848 134.124474) (xy 190.52022 134.095108)
(xy 190.52022 128.24849) (xy 190.327282 127.781542) (xy 189.970337 127.423974) (xy 189.503727 127.230221) (xy 188.99849 127.22978)
(xy 188.531542 127.422718) (xy 188.173974 127.779663) (xy 187.980221 128.246273) (xy 187.97978 128.75151) (xy 188.172718 129.218458)
(xy 188.529663 129.576026) (xy 188.996273 129.769779) (xy 189.50151 129.77022) (xy 189.968458 129.577282) (xy 190.326026 129.220337)
(xy 190.519779 128.753727) (xy 190.52022 128.24849) (xy 190.52022 134.095108) (xy 190.094359 134.0104) (xy 190.035641 134.0104)
(xy 189.462152 134.124474) (xy 188.975971 134.44933) (xy 188.795 134.720172) (xy 188.614029 134.44933) (xy 188.127848 134.124474)
(xy 187.554359 134.0104) (xy 187.495641 134.0104) (xy 187.02022 134.104967) (xy 187.02022 125.49849) (xy 186.827282 125.031542)
(xy 186.470337 124.673974) (xy 186.003727 124.480221) (xy 185.49849 124.47978) (xy 185.031542 124.672718) (xy 184.673974 125.029663)
(xy 184.480221 125.496273) (xy 184.47978 126.00151) (xy 184.672718 126.468458) (xy 185.029663 126.826026) (xy 185.496273 127.019779)
(xy 186.00151 127.02022) (xy 186.468458 126.827282) (xy 186.826026 126.470337) (xy 187.019779 126.003727) (xy 187.02022 125.49849)
(xy 187.02022 134.104967) (xy 186.922152 134.124474) (xy 186.435971 134.44933) (xy 186.255 134.720172) (xy 186.074029 134.44933)
(xy 185.587848 134.124474) (xy 185.014359 134.0104) (xy 184.955641 134.0104) (xy 184.382152 134.124474) (xy 183.895971 134.44933)
(xy 183.715 134.720172) (xy 183.534029 134.44933) (xy 183.047848 134.124474) (xy 182.474359 134.0104) (xy 182.415641 134.0104)
(xy 181.842152 134.124474) (xy 181.355971 134.44933) (xy 181.175 134.720172) (xy 180.994029 134.44933) (xy 180.507848 134.124474)
(xy 179.934359 134.0104) (xy 179.875641 134.0104) (xy 179.302152 134.124474) (xy 178.815971 134.44933) (xy 178.635 134.720172)
(xy 178.454029 134.44933) (xy 177.967848 134.124474) (xy 177.394359 134.0104) (xy 177.335641 134.0104) (xy 176.762152 134.124474)
(xy 176.275971 134.44933) (xy 176.095 134.720172) (xy 175.914029 134.44933) (xy 175.427848 134.124474) (xy 174.854359 134.0104)
(xy 174.795641 134.0104) (xy 174.222152 134.124474) (xy 173.735971 134.44933) (xy 173.411115 134.935511) (xy 173.297041 135.509)
(xy 173.411115 136.082489) (xy 173.735971 136.56867) (xy 173.757023 136.582736) (xy 173.601702 136.647073) (xy 173.423073 136.825701)
(xy 173.3264 137.05909) (xy 173.3264 137.311709) (xy 173.3264 137.76325) (xy 173.48515 137.922) (xy 174.698 137.922)
(xy 174.698 137.902) (xy 174.952 137.902) (xy 174.952 137.922) (xy 174.972 137.922) (xy 174.972 138.176)
(xy 174.952 138.176) (xy 174.952 139.38885) (xy 175.11075 139.5476) (xy 175.814909 139.5476) (xy 176.048298 139.450927)
(xy 176.226927 139.272299) (xy 176.290643 139.118473) (xy 176.762152 139.433526) (xy 177.335641 139.5476) (xy 177.394359 139.5476)
(xy 177.967848 139.433526) (xy 178.454029 139.10867) (xy 178.635 138.837827) (xy 178.815971 139.10867) (xy 179.302152 139.433526)
(xy 179.875641 139.5476) (xy 179.934359 139.5476) (xy 180.507848 139.433526) (xy 180.994029 139.10867) (xy 181.175 138.837827)
(xy 181.355971 139.10867) (xy 181.842152 139.433526) (xy 182.415641 139.5476) (xy 182.474359 139.5476) (xy 183.047848 139.433526)
(xy 183.534029 139.10867) (xy 183.715 138.837827) (xy 183.895971 139.10867) (xy 184.382152 139.433526) (xy 184.955641 139.5476)
(xy 185.014359 139.5476) (xy 185.587848 139.433526) (xy 186.074029 139.10867) (xy 186.255 138.837827) (xy 186.435971 139.10867)
(xy 186.922152 139.433526) (xy 187.495641 139.5476) (xy 187.554359 139.5476) (xy 188.127848 139.433526) (xy 188.614029 139.10867)
(xy 188.795 138.837827) (xy 188.975971 139.10867) (xy 189.462152 139.433526) (xy 190.035641 139.5476) (xy 190.094359 139.5476)
(xy 190.667848 139.433526) (xy 191.154029 139.10867) (xy 191.335 138.837827) (xy 191.515971 139.10867) (xy 192.002152 139.433526)
(xy 192.575641 139.5476) (xy 192.634359 139.5476) (xy 193.207848 139.433526) (xy 193.694029 139.10867) (xy 193.874992 138.837839)
(xy 194.25651 139.255821) (xy 194.785973 139.503968) (xy 195.018 139.383469) (xy 195.018 138.176) (xy 194.998 138.176)
(xy 194.998 137.922) (xy 195.018 137.922) (xy 195.018 137.902) (xy 195.272 137.902) (xy 195.272 137.922)
(xy 195.292 137.922) (xy 195.292 138.176) (xy 195.272 138.176) (xy 195.272 139.383469) (xy 195.504027 139.503968)
(xy 196.03349 139.255821) (xy 196.415007 138.837839) (xy 196.595971 139.10867) (xy 197.082152 139.433526) (xy 197.655641 139.5476)
(xy 197.714359 139.5476) (xy 198.287848 139.433526) (xy 198.774029 139.10867) (xy 198.955 138.837827) (xy 199.135971 139.10867)
(xy 199.622152 139.433526) (xy 200.195641 139.5476) (xy 200.254359 139.5476) (xy 200.827848 139.433526) (xy 201.314029 139.10867)
(xy 201.638885 138.622489) (xy 201.752959 138.049) (xy 201.752959 139.765) (xy 174.698 139.765) (xy 174.698 139.38885)
(xy 174.698 138.176) (xy 173.48515 138.176) (xy 173.3264 138.33475) (xy 173.3264 138.786291) (xy 173.3264 139.03891)
(xy 173.423073 139.272299) (xy 173.601702 139.450927) (xy 173.835091 139.5476) (xy 174.53925 139.5476) (xy 174.698 139.38885)
(xy 174.698 139.765) (xy 173.127 139.765) (xy 173.127 132.627) (xy 183.627 132.627) (xy 183.627 114)
(xy 183.627 111.235) (xy 190.485856 111.235) (xy 190.031542 111.422718) (xy 189.673974 111.779663) (xy 189.480221 112.246273)
(xy 189.47978 112.75151) (xy 189.672718 113.218458) (xy 190.029663 113.576026) (xy 190.496273 113.769779) (xy 191.00151 113.77022)
(xy 191.468458 113.577282) (xy 191.826026 113.220337) (xy 192.000189 112.800904) (xy 192.172718 113.218458) (xy 192.529663 113.576026)
(xy 192.996273 113.769779) (xy 193.50151 113.77022) (xy 193.968458 113.577282) (xy 194.326026 113.220337) (xy 194.519779 112.753727)
(xy 194.52022 112.24849) (xy 194.327282 111.781542) (xy 193.970337 111.423974) (xy 193.515236 111.235) (xy 207.265 111.235)
(xy 207.265 133.253757) (xy 207.109029 133.020331) (xy 206.833731 132.836382) (xy 206.833731 125.545914) (xy 206.631146 125.05562)
(xy 206.256353 124.680173) (xy 205.918553 124.539906) (xy 206.25438 124.401146) (xy 206.629827 124.026353) (xy 206.833268 123.536413)
(xy 206.833731 123.005914) (xy 206.631146 122.51562) (xy 206.256353 122.140173) (xy 205.918553 121.999906) (xy 206.25438 121.861146)
(xy 206.629827 121.486353) (xy 206.833268 120.996413) (xy 206.833731 120.465914) (xy 206.631146 119.97562) (xy 206.256353 119.600173)
(xy 205.918553 119.459906) (xy 206.25438 119.321146) (xy 206.629827 118.946353) (xy 206.833268 118.456413) (xy 206.833731 117.925914)
(xy 206.631146 117.43562) (xy 206.256353 117.060173) (xy 205.918553 116.919906) (xy 206.25438 116.781146) (xy 206.629827 116.406353)
(xy 206.833268 115.916413) (xy 206.833731 115.385914) (xy 206.631146 114.89562) (xy 206.256353 114.520173) (xy 205.766413 114.316732)
(xy 205.235914 114.316269) (xy 204.74562 114.518854) (xy 204.372601 114.891223) (xy 204.327282 114.781542) (xy 203.970337 114.423974)
(xy 203.503727 114.230221) (xy 202.99849 114.22978) (xy 202.83398 114.297753) (xy 202.827282 114.281542) (xy 202.470337 113.923974)
(xy 202.003727 113.730221) (xy 201.49849 113.72978) (xy 201.031542 113.922718) (xy 200.673974 114.279663) (xy 200.480221 114.746273)
(xy 200.47978 115.25151) (xy 200.672718 115.718458) (xy 201.029663 116.076026) (xy 201.496273 116.269779) (xy 202.00151 116.27022)
(xy 202.166019 116.202246) (xy 202.172718 116.218458) (xy 202.529663 116.576026) (xy 202.996273 116.769779) (xy 203.50151 116.77022)
(xy 203.968458 116.577282) (xy 204.302509 116.243812) (xy 204.368854 116.40438) (xy 204.743647 116.779827) (xy 205.081446 116.920093)
(xy 204.74562 117.058854) (xy 204.370173 117.433647) (xy 204.166732 117.923587) (xy 204.166269 118.454086) (xy 204.368854 118.94438)
(xy 204.743647 119.319827) (xy 205.081446 119.460093) (xy 204.74562 119.598854) (xy 204.370173 119.973647) (xy 204.166732 120.463587)
(xy 204.166499 120.729926) (xy 203.99849 120.72978) (xy 203.531542 120.922718) (xy 203.173974 121.279663) (xy 202.980221 121.746273)
(xy 202.97978 122.25151) (xy 203.172718 122.718458) (xy 203.529663 123.076026) (xy 203.996273 123.269779) (xy 204.166499 123.269927)
(xy 204.166269 123.534086) (xy 204.368854 124.02438) (xy 204.743647 124.399827) (xy 205.081446 124.540093) (xy 204.74562 124.678854)
(xy 204.370173 125.053647) (xy 204.166732 125.543587) (xy 204.166269 126.074086) (xy 204.368854 126.56438) (xy 204.743647 126.939827)
(xy 204.928295 127.0165) (xy 204.927809 127.0165) (xy 204.67519 127.0165) (xy 204.441801 127.113173) (xy 204.263173 127.291802)
(xy 204.1665 127.525191) (xy 204.1665 128.06425) (xy 204.32525 128.223) (xy 205.373 128.223) (xy 205.373 128.203)
(xy 205.627 128.203) (xy 205.627 128.223) (xy 206.67475 128.223) (xy 206.8335 128.06425) (xy 206.8335 127.525191)
(xy 206.736827 127.291802) (xy 206.558199 127.113173) (xy 206.32481 127.0165) (xy 206.072191 127.0165) (xy 206.072009 127.0165)
(xy 206.25438 126.941146) (xy 206.629827 126.566353) (xy 206.833268 126.076413) (xy 206.833731 125.545914) (xy 206.833731 132.836382)
(xy 206.8335 132.836228) (xy 206.8335 129.174809) (xy 206.8335 128.63575) (xy 206.67475 128.477) (xy 205.627 128.477)
(xy 205.627 129.52475) (xy 205.78575 129.6835) (xy 206.072191 129.6835) (xy 206.32481 129.6835) (xy 206.558199 129.586827)
(xy 206.736827 129.408198) (xy 206.8335 129.174809) (xy 206.8335 132.836228) (xy 206.622848 132.695475) (xy 206.049359 132.581401)
(xy 205.990641 132.581401) (xy 205.417152 132.695475) (xy 205.373 132.724976) (xy 205.373 129.52475) (xy 205.373 128.477)
(xy 204.32525 128.477) (xy 204.1665 128.63575) (xy 204.1665 129.174809) (xy 204.263173 129.408198) (xy 204.441801 129.586827)
(xy 204.67519 129.6835) (xy 204.927809 129.6835) (xy 205.21425 129.6835) (xy 205.373 129.52475) (xy 205.373 132.724976)
(xy 204.930971 133.020331) (xy 204.75 133.291173) (xy 204.569029 133.020331) (xy 204.082848 132.695475) (xy 203.509359 132.581401)
(xy 203.450641 132.581401) (xy 202.877152 132.695475) (xy 202.390971 133.020331) (xy 202.286667 133.176432) (xy 202.286667 128.979753)
(xy 202.093729 128.512805) (xy 201.736784 128.155237) (xy 201.270174 127.961484) (xy 200.764937 127.961043) (xy 200.297989 128.153981)
(xy 199.940421 128.510926) (xy 199.746668 128.977536) (xy 199.746227 129.482773) (xy 199.930991 129.929939) (xy 199.74849 129.92978)
(xy 199.384774 130.080063) (xy 199.384774 127.026307) (xy 199.136462 126.425346) (xy 198.677073 125.965155) (xy 198.488604 125.886896)
(xy 198.564516 125.811117) (xy 198.758269 125.344507) (xy 198.75871 124.83927) (xy 198.565772 124.372322) (xy 198.494679 124.301105)
(xy 198.826026 123.970337) (xy 199.019779 123.503727) (xy 199.02022 122.99849) (xy 198.827282 122.531542) (xy 198.796052 122.500258)
(xy 198.826026 122.470337) (xy 199.019779 122.003727) (xy 199.02022 121.49849) (xy 198.827282 121.031542) (xy 198.631887 120.835806)
(xy 198.769779 120.503727) (xy 198.77022 119.99849) (xy 198.577282 119.531542) (xy 198.421052 119.37504) (xy 198.576026 119.220337)
(xy 198.769779 118.753727) (xy 198.77022 118.24849) (xy 198.577282 117.781542) (xy 198.220337 117.423974) (xy 197.753727 117.230221)
(xy 197.705868 117.230179) (xy 197.705977 117.105917) (xy 197.513039 116.638969) (xy 197.156094 116.281401) (xy 196.689484 116.087648)
(xy 196.184247 116.087207) (xy 195.798388 116.246639) (xy 195.79844 116.187161) (xy 195.605502 115.720213) (xy 195.248557 115.362645)
(xy 194.781947 115.168892) (xy 194.27671 115.168451) (xy 193.809762 115.361389) (xy 193.595396 115.575381) (xy 193.577282 115.531542)
(xy 193.220337 115.173974) (xy 192.753727 114.980221) (xy 192.24849 114.97978) (xy 191.781542 115.172718) (xy 191.534603 115.419226)
(xy 191.289778 115.173974) (xy 190.823168 114.980221) (xy 190.317931 114.97978) (xy 189.850983 115.172718) (xy 189.534309 115.48884)
(xy 189.235204 115.189213) (xy 188.768594 114.99546) (xy 188.263357 114.995019) (xy 187.796409 115.187957) (xy 187.438841 115.544902)
(xy 187.245088 116.011512) (xy 187.244888 116.23977) (xy 186.811407 116.418881) (xy 186.453839 116.775826) (xy 186.260086 117.242436)
(xy 186.259645 117.747673) (xy 186.452583 118.214621) (xy 186.595824 118.358112) (xy 186.423974 118.529663) (xy 186.230221 118.996273)
(xy 186.22978 119.50151) (xy 186.422718 119.968458) (xy 186.779663 120.326026) (xy 187.246273 120.519779) (xy 187.75151 120.52022)
(xy 188.218458 120.327282) (xy 188.576026 119.970337) (xy 188.769779 119.503727) (xy 188.77022 118.99849) (xy 188.577282 118.531542)
(xy 188.43404 118.38805) (xy 188.496051 118.326148) (xy 188.552339 118.462376) (xy 188.909284 118.819944) (xy 189.375894 119.013697)
(xy 189.881131 119.014138) (xy 190.348079 118.8212) (xy 190.566472 118.603186) (xy 190.788924 118.826026) (xy 191.255534 119.019779)
(xy 191.760771 119.02022) (xy 192.227719 118.827282) (xy 192.585287 118.470337) (xy 192.611447 118.407336) (xy 192.883071 118.679434)
(xy 193.349681 118.873187) (xy 193.543603 118.873356) (xy 193.325345 118.963539) (xy 192.865154 119.422928) (xy 192.615794 120.023454)
(xy 192.615226 120.673695) (xy 192.863538 121.274656) (xy 193.322927 121.734847) (xy 193.923453 121.984207) (xy 194.573694 121.984775)
(xy 195.174655 121.736463) (xy 195.634846 121.277074) (xy 195.884206 120.676548) (xy 195.884774 120.026307) (xy 195.636462 119.425346)
(xy 195.177073 118.965155) (xy 194.576547 118.715795) (xy 194.237621 118.715498) (xy 194.321866 118.68069) (xy 194.679434 118.323745)
(xy 194.873187 117.857135) (xy 194.87335 117.670208) (xy 195.165588 117.549458) (xy 195.165537 117.608937) (xy 195.358475 118.075885)
(xy 195.71542 118.433453) (xy 196.18203 118.627206) (xy 196.229888 118.627247) (xy 196.22978 118.75151) (xy 196.422718 119.218458)
(xy 196.578947 119.374959) (xy 196.423974 119.529663) (xy 196.230221 119.996273) (xy 196.22978 120.50151) (xy 196.422718 120.968458)
(xy 196.618112 121.164193) (xy 196.480221 121.496273) (xy 196.47978 122.00151) (xy 196.588892 122.265584) (xy 196.503727 122.230221)
(xy 195.99849 122.22978) (xy 195.531542 122.422718) (xy 195.173974 122.779663) (xy 194.980221 123.246273) (xy 194.980191 123.279593)
(xy 194.826547 123.215795) (xy 194.176306 123.215227) (xy 193.575345 123.463539) (xy 193.115154 123.922928) (xy 192.865794 124.523454)
(xy 192.865226 125.173695) (xy 193.113538 125.774656) (xy 193.43848 126.100165) (xy 193.115154 126.422928) (xy 192.865794 127.023454)
(xy 192.865226 127.673695) (xy 193.113538 128.274656) (xy 193.572927 128.734847) (xy 194.173453 128.984207) (xy 194.706384 128.984672)
(xy 194.706349 129.025155) (xy 194.899287 129.492103) (xy 195.256232 129.849671) (xy 195.722842 130.043424) (xy 196.228079 130.043865)
(xy 196.695027 129.850927) (xy 197.052595 129.493982) (xy 197.246348 129.027372) (xy 197.246449 128.910708) (xy 197.423453 128.984207)
(xy 198.073694 128.984775) (xy 198.674655 128.736463) (xy 199.134846 128.277074) (xy 199.384206 127.676548) (xy 199.384774 127.026307)
(xy 199.384774 130.080063) (xy 199.281542 130.122718) (xy 198.923974 130.479663) (xy 198.730221 130.946273) (xy 198.72978 131.45151)
(xy 198.922718 131.918458) (xy 199.279663 132.276026) (xy 199.746273 132.469779) (xy 200.25151 132.47022) (xy 200.718458 132.277282)
(xy 201.076026 131.920337) (xy 201.269779 131.453727) (xy 201.27022 130.94849) (xy 201.085455 130.501323) (xy 201.267957 130.501483)
(xy 201.734905 130.308545) (xy 202.092473 129.9516) (xy 202.286226 129.48499) (xy 202.286667 128.979753) (xy 202.286667 133.176432)
(xy 202.066115 133.506512) (xy 201.952041 134.080001) (xy 202.066115 134.65349) (xy 202.390971 135.139671) (xy 202.412023 135.153737)
(xy 202.256702 135.218074) (xy 202.078073 135.396702) (xy 201.9814 135.630091) (xy 201.9814 135.88271) (xy 201.9814 137.60991)
(xy 202.078073 137.843299) (xy 202.256701 138.021928) (xy 202.49009 138.118601) (xy 202.742709 138.118601) (xy 204.469909 138.118601)
(xy 204.703298 138.021928) (xy 204.881927 137.8433) (xy 204.945643 137.689474) (xy 205.417152 138.004527) (xy 205.990641 138.118601)
(xy 206.049359 138.118601) (xy 206.622848 138.004527) (xy 207.109029 137.679671) (xy 207.265 137.446244) (xy 207.265 139)
(xy 207.265 139.765)
)
)
)
)
| KiCad | 3 | srtbit/srtbit_gcvideo | Hardware/gcvideo_lite_09/gcvideo_lite.kicad_pcb | [
"Unlicense"
] |
30 5 2 0
0 1 12 1 2 27 9 12 24 3 4 20 5 26 19 [0 0] [0 0] [0 0] [0 0] [0 0] [0 0] [0 0] [0 0] [0 0] [0 0] [0 0] [0 0]
1 2 2 18 12 [-1 2 6 -3] [11 3 -2 -1]
2 2 2 30 31 [15 0 6 1] [7 2]
3 2 3 22 31 20 [20 1 2 0] [9 2] [20 -4 3 -1]
4 2 3 31 18 17 [1 8] [2 0 0 13] [0 1 21 13]
5 2 2 16 18 [3 3 0 0] [3 3 -1 3]
6 2 2 31 30 [9 6] [4 15 4 -1]
7 2 1 11 [8 6 5 6]
8 2 3 15 31 26 [2 1 8 3] [1 3] [-129 -217 -184 -87]
9 2 2 14 19 [7 3 1 0] [4 -2 2 0]
10 2 2 16 31 [-5 26 24 5] [10 9]
11 2 2 8 31 [20 18 16 3] [7 7]
12 2 3 17 7 20 [1 5 3 24] [10 9 22 16] [11 12 16 0]
13 2 2 31 6 [2 7] [4 0 2 -4]
14 2 3 10 29 31 [0 -3 0 0] [21 19 7 1] [8 3]
15 2 2 31 13 [1 9] [0 0 -1 3]
16 2 3 26 31 5 [-6 0 18 15] [10 8] [-200 -182 -141 -86]
17 2 2 10 31 [1 9 1 0] [4 1]
18 2 1 7 [1 5 1 2]
19 2 3 31 18 17 [3 10] [1 8 7 18] [7 4 17 12]
20 2 2 28 31 [-5 16 2 0] [6 1]
21 2 4 26 1 31 11 [-86 -164 -91 -145] [-152 -135 -57 -160] [9 5] [11 -5 -4 14]
22 2 3 28 23 31 [3 0 5 8] [0 0 3 8] [1 5]
23 2 2 9 31 [3 -1 7 -2] [3 3]
24 2 2 21 31 [3 3 0 0] [1 1]
25 2 3 28 21 31 [-99 -201 -84 -200] [1 6 4 2] [5 2]
26 2 3 25 27 31 [6 7 16 14] [1 0 2 9] [5 7]
27 2 3 12 24 31 [-133 -79 -123 -152] [-5 1 4 14] [8 9]
28 2 2 31 14 [5 1] [7 9 0 2]
29 2 3 25 31 14 [9 9 6 -2] [3 3] [-206 -123 -101 -154]
30 2 1 31 [1 9]
31 1 0
0 1 0 0 0 0 0 0 0 0
1 1 5 2 2 4 5 5 1 5
2 5 2 2 4 5 5 1 5
2 1 7 1 1 3 1 2 1 4
2 2 1 1 3 1 2 1 4
3 1 9 2 5 1 3 5 1 1
2 2 2 5 1 3 5 1 1
4 1 1 4 4 1 2 1 5 5
2 8 4 4 1 2 1 5 5
5 1 1 5 3 2 2 5 5 3
2 2 5 3 2 2 5 5 3
6 1 9 3 5 5 5 5 4 4
2 6 3 5 5 5 5 4 4
7 1 3 5 2 3 4 5 4 2
2 2 5 2 3 4 5 4 2
8 1 1 5 2 4 5 5 4 3
2 3 5 2 4 5 5 4 3
9 1 4 3 4 1 2 1 3 3
2 1 3 4 1 2 1 3 3
10 1 10 3 2 1 4 4 1 1
2 9 3 2 1 4 4 1 1
11 1 7 2 5 5 4 4 5 3
2 7 2 5 5 4 4 5 3
12 1 5 1 4 4 1 3 3 5
2 9 1 4 4 1 3 3 5
13 1 2 2 3 4 1 3 5 4
2 7 2 3 4 1 3 5 4
14 1 8 2 2 1 5 1 2 4
2 3 2 2 1 5 1 2 4
15 1 1 1 3 1 1 2 5 2
2 9 1 3 1 1 2 5 2
16 1 10 3 2 4 2 2 2 5
2 8 3 2 4 2 2 2 5
17 1 4 3 1 5 3 4 2 1
2 1 3 1 5 3 4 2 1
18 1 2 5 4 3 3 5 4 5
2 1 5 4 3 3 5 4 5
19 1 3 2 2 4 3 5 5 3
2 10 2 2 4 3 5 5 3
20 1 6 3 2 4 5 5 1 1
2 1 3 2 4 5 5 1 1
21 1 9 5 1 4 3 5 2 4
2 5 5 1 4 3 5 2 4
22 1 1 3 1 5 5 5 2 3
2 5 3 1 5 5 5 2 3
23 1 3 1 3 5 4 2 2 3
2 3 1 3 5 4 2 2 3
24 1 1 3 4 1 5 3 2 5
2 1 3 4 1 5 3 2 5
25 1 5 4 1 2 4 5 2 1
2 2 4 1 2 4 5 2 1
26 1 5 1 5 3 5 2 4 5
2 7 1 5 3 5 2 4 5
27 1 8 1 3 4 3 1 5 5
2 9 1 3 4 3 1 5 5
28 1 5 4 5 5 1 4 3 5
2 1 4 5 5 1 4 3 5
29 1 3 3 5 4 2 1 4 3
2 3 3 5 4 2 1 4 3
30 1 1 5 2 5 1 1 4 3
2 9 5 2 5 1 1 4 3
31 1 0 0 0 0 0 0 0 0
23 29 29 30 29 93 194
| Eagle | 1 | klorel/or-tools | examples/data/rcpsp/multi_mode_max_delay/mm_j30/psp88.sch | [
"Apache-2.0"
] |
--TEST--
Bug #69688 (segfault with eval and opcache fast shutdown)
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.fast_shutdown=1
--EXTENSIONS--
opcache
--FILE--
<?php
eval('function g() {} function g2() {} function g3() {}');
eval('class A{} class B{} class C{}');
?>
okey
--EXPECT--
okey
| PHP | 3 | NathanFreeman/php-src | ext/opcache/tests/bug69688.phpt | [
"PHP-3.01"
] |
CLASS zcl_abapgit_filename_logic DEFINITION
PUBLIC
FINAL
CREATE PUBLIC .
PUBLIC SECTION.
CONSTANTS:
BEGIN OF c_package_file,
obj_name TYPE c LENGTH 7 VALUE 'package',
sep1 TYPE c LENGTH 1 VALUE '.',
obj_type TYPE c LENGTH 4 VALUE 'devc',
sep2 TYPE c LENGTH 1 VALUE '.',
extension TYPE c LENGTH 3 VALUE 'xml',
END OF c_package_file.
CONSTANTS:
BEGIN OF c_json_file,
extension TYPE c LENGTH 4 VALUE 'json',
END OF c_json_file.
CLASS-METHODS file_to_object
IMPORTING
!iv_filename TYPE string
!iv_path TYPE string
!iv_devclass TYPE devclass OPTIONAL
!io_dot TYPE REF TO zcl_abapgit_dot_abapgit
EXPORTING
!es_item TYPE zif_abapgit_definitions=>ty_item
!ev_is_xml TYPE abap_bool
!ev_is_json TYPE abap_bool
RAISING
zcx_abapgit_exception .
CLASS-METHODS object_to_file
IMPORTING
!is_item TYPE zif_abapgit_definitions=>ty_item
!iv_ext TYPE string
!iv_extra TYPE clike OPTIONAL
RETURNING
VALUE(rv_filename) TYPE string .
PROTECTED SECTION.
PRIVATE SECTION.
ENDCLASS.
CLASS zcl_abapgit_filename_logic IMPLEMENTATION.
METHOD file_to_object.
DATA:
lv_name TYPE string,
lv_type TYPE string,
lv_ext TYPE string.
" Guess object type and name
SPLIT to_upper( iv_filename ) AT '.' INTO lv_name lv_type lv_ext.
" Handle namespaces
REPLACE ALL OCCURRENCES OF '#' IN lv_name WITH '/'.
REPLACE ALL OCCURRENCES OF '#' IN lv_type WITH '/'.
REPLACE ALL OCCURRENCES OF '#' IN lv_ext WITH '/'.
" The counter part to this logic must be maintained in OBJECT_TO_FILE
IF lv_type = to_upper( c_package_file-obj_type ).
" Try to get a unique package name for DEVC by using the path
ASSERT lv_name = to_upper( c_package_file-obj_name ).
lv_name = zcl_abapgit_folder_logic=>get_instance( )->path_to_package(
iv_top = iv_devclass
io_dot = io_dot
iv_create_if_not_exists = abap_false
iv_path = iv_path ).
ELSE.
" Get original object name
lv_name = cl_http_utility=>unescape_url( lv_name ).
ENDIF.
CLEAR es_item.
es_item-obj_type = lv_type.
es_item-obj_name = lv_name.
ev_is_xml = boolc( lv_ext = to_upper( c_package_file-extension ) AND strlen( lv_type ) = 4 ).
ev_is_json = boolc( lv_ext = to_upper( c_json_file-extension ) AND strlen( lv_type ) = 4 ).
ENDMETHOD.
METHOD object_to_file.
DATA lv_obj_name TYPE string.
lv_obj_name = is_item-obj_name.
" The counter part to this logic must be maintained in FILE_TO_OBJECT
IF is_item-obj_type = to_upper( c_package_file-obj_type ).
" Packages have a fixed filename so that the repository can be installed to a different
" package(-hierarchy) on the client and not show up as a different package in the repo.
lv_obj_name = c_package_file-obj_name.
ELSE.
" Some characters in object names cause problems when identifying the object later
" -> we escape these characters here
" cl_http_utility=>escape_url doesn't do dots but escapes slash which we use for namespaces
" -> we escape just some selected characters
REPLACE ALL OCCURRENCES OF `%` IN lv_obj_name WITH '%25'.
REPLACE ALL OCCURRENCES OF `#` IN lv_obj_name WITH '%23'.
REPLACE ALL OCCURRENCES OF `.` IN lv_obj_name WITH '%2e'.
REPLACE ALL OCCURRENCES OF `=` IN lv_obj_name WITH '%3d'.
REPLACE ALL OCCURRENCES OF `?` IN lv_obj_name WITH '%3f'.
REPLACE ALL OCCURRENCES OF `<` IN lv_obj_name WITH '%3c'.
REPLACE ALL OCCURRENCES OF `>` IN lv_obj_name WITH '%3e'.
ENDIF.
IF iv_extra IS INITIAL.
CONCATENATE lv_obj_name '.' is_item-obj_type INTO rv_filename.
ELSE.
CONCATENATE lv_obj_name '.' is_item-obj_type '.' iv_extra INTO rv_filename.
ENDIF.
IF iv_ext IS NOT INITIAL.
CONCATENATE rv_filename '.' iv_ext INTO rv_filename.
ENDIF.
" handle namespaces
REPLACE ALL OCCURRENCES OF '/' IN rv_filename WITH '#'.
TRANSLATE rv_filename TO LOWER CASE.
ENDMETHOD.
ENDCLASS.
| ABAP | 4 | IvxLars/abapGit | src/objects/core/zcl_abapgit_filename_logic.clas.abap | [
"MIT"
] |
$TITLE eps-Constraint Method for Multiobjective Optimization (EPSCM,SEQ=319)
$inlinecom [ ]
$eolcom //
$STitle Example model definitions
Sets
p energy storage technologies /PHS,CAES,FES,LeadAcid,NaS,SodiumNickelChlorideBattery,NiCd,Li_Ion,VRB,ZnBr,PSB,SMES,Sc,HES,Powerwall2,BlueBattery,Baobab/
k objective functions / environment,cost, maturity /
d param /Pa_low, Pa_high, Da_low, Da_high/
$set min -1
$set max +1
Parameter dir(k) direction of the objective functions
/ cost %min%, environment %min%, maturity %max%/;
*Application specifications
*Power requirement
Parameter
*Pa_low Lower bound of power for different application
Pa_high Higher bound of power for different application
Pa_ave average power for different applications
Pa_halfrange half of the range of power for different applications *Duration requirement
*Da_low Lower bound of duration for different applications
*Da_high Higher bound of duration for different applications
Da_ave average duration for different applications
Da_halfrange half of the range of duration for different applications;
*Technology
Parameter
Pt_low(p) Lower bound of power for different ESS
Pt_high(p) Higher bound of power for different ESS
Dt_low(p) Lower bound of duration for different ESS
Dt_high(p) Higher bound of duration for different ESS
E(p) Environmental_Score obtained from the comparison of environmental impact among different ESS
C(p) Economical_Score obtained from the comparison of LCOE among different ESS-Levelized cost of energy storage system
M(p) Maturity obtained from the database for different ESS ;
$call csv2gdx Pa_high.csv id=Pa_high index=1 values=2..lastCol useHeader=y
$GDXIN Pa_high.gdx
$Load Pa_high
$GDXIN
$call csv2gdx Ptlow.csv id=Pt_low index=1 values=2..lastCol useHeader=y
$GDXIN Ptlow.gdx
$Load Pt_low
$GDXIN
$call csv2gdx Pthigh.csv id=Pt_high index=1 values=2..lastCol useHeader=y
$GDXIN Pthigh.gdx
$Load Pt_high
$GDXIN
$call csv2gdx Dtlow.csv id=Dt_low index=1 values=2..lastCol useHeader=y
$GDXIN Dtlow.gdx
$Load Dt_low
$GDXIN
$call csv2gdx Dthigh.csv id=Dt_high index=1 values=2..lastCol useHeader=y
$GDXIN Dthigh.gdx
$Load Dt_high
$GDXIN
$call csv2gdx EnvironmentalScore.csv id=E index=1 values=2..lastCol useHeader=y
$GDXIN EnvironmentalScore.gdx
$Load E
$GDXIN
$call csv2gdx EconomicalScore.csv id=C index=1 values=2..lastCol useHeader=y
$GDXIN EconomicalScore.gdx
$Load C
$GDXIN
$call csv2gdx Maturity.csv id=M index=1 values=2..lastCol useHeader=y
$GDXIN Maturity.gdx
$Load M
$GDXIN
Parameter
Pt_ave(p) average power for different ESS
Pt_halfrange(p) half of the range of power for different ESS
dP_ave(p) difference between the average of i and j
dP_halfrange(p) sum of half range of i and j
P_index(p) overlapping index of power between technology i and application j assuming standard deviation
Dt_ave(p) average duration for different ESS
Dt_halfrange(p) half of the range of duration for different ESS
dD_ave(p) difference between the average of i and j
dD_halfrange(p) sum of half range of i and j
D_index(p) overlapping index of duration between technology i and application j assuming standard deviation;
Pt_ave(p)=(Pt_high(p)+Pt_low(p))/2;
Pt_halfrange(p)=(Pt_high(p)-Pt_low(p))/2;
Pa_ave=(Pa_high('Pa_high')+Pa_high('Pa_low'))/2;
Pa_halfrange=(Pa_high('Pa_high') - Pa_high('Pa_low'))/2;
dP_ave(p)=abs(Pt_ave(p)-Pa_ave);
dP_halfrange(p)=Pt_halfrange(p)+Pa_halfrange;
P_index(p)=(dP_halfrange(p)-dP_ave(p));
Dt_ave(p)=(Dt_high(p)+Dt_low(p))/2;
Dt_halfrange(p)=(Dt_high(p)-Dt_low(p))/2;
Da_ave=(Pa_high('Da_high')+Pa_high('Da_low'))/2;
Da_halfrange=(Pa_high('Da_high')-Pa_high('Da_low'))/2;
dD_ave(p)=abs(Dt_ave(p)-Da_ave);
dD_halfrange(p)=Dt_halfrange(p)+Da_halfrange;
D_index(p)=(dD_halfrange(p)-dD_ave(p));
display Pa_high;
display Pa_ave;
display Pa_halfrange;
Variables
z(k) objective function variables
Binary Variables
x(p) if the ESS is selected z equals to 1 otherwise 0;
Equations
objcost objective for minimizing cost in K$
objco2 objective for minimizing CO2 emissions in Kt
objco3 Market Readiness
cons1 D
cons2 P
cons select only one technology;
* Objective functions
objcost.. sum(p, x(p)*C(p)) =e= z('cost');
objco2.. sum(p, x(p)*E(p)) =e= z('environment');
objco3.. sum(p, x(p)*M(p)) =e= z('maturity');
cons1.. sum(p, x(p)*D_index(p)) =g= 0;
cons2.. sum(p, x(p)*P_index(p)) =g= 0;
cons.. sum(p, x(p))=e=1;
option decimals=5;
Model example / all /;
$STitle eps-constraint method
Set k1(k) the first element of k, km1(k) all but the first elements of k;
k1(k)$(ord(k)=1) = yes; km1(k)=yes; km1(k1) = no;
Set kk(k) active objective function in constraint allobj
Parameter
rhs(k) right hand side of the constrained obj functions in eps-constraint
maxobj(k) maximum value from the payoff table
minobj(k) minimum value from the payoff table
Variables
a_objval auxiliary variable for the objective function
obj auxiliary variable during the construction of the payoff table
Positive Variables
sl(k) slack or surplus variables for the eps-constraints
Equations
con_obj(k) constrained objective functions
augm_obj augmented objective function to avoid weakly efficient solutions
allobj all the objective functions in one expression;
con_obj(km1).. z(km1) - dir(km1)*sl(km1) =e= rhs(km1);
* We optimize the first objective function and put the others as constraints
* the second term is for avoiding weakly efficient points
augm_obj..
sum(k1,dir(k1)*z(k1))+1e-3*sum(km1,sl(km1)/(maxobj(km1)-minobj(km1))) =e= a_objval;
allobj.. sum(kk, dir(kk)*z(kk)) =e= obj;
Model mod_payoff / example, allobj / ;
Model mod_epsmethod / example, con_obj, augm_obj / ;
option limrow=0, limcol=0;
option solprint=off, solvelink=%solvelink.CallModule%;
Parameter
payoff(k,k) payoff tables entries;
Alias(k,kp);
* Generate payoff table applying lexicographic optimization
loop(kp,
kk(kp)=yes;
repeat
solve mod_payoff using mip maximizing obj;
payoff(kp,kk) = z.l(kk);
z.fx(kk) = z.l(kk); // freeze the value of the last objective optimized
kk(k++1) = kk(k); // cycle through the objective functions
until kk(kp); kk(kp) = no;
* release the fixed values of the objective functions for the new iteration
z.up(k) = inf; z.lo(k) =-inf;
);
if (mod_payoff.modelstat<>%modelstat.Optimal% and mod_payoff.modelstat<>%modelstat.FeasibleSolution%, abort 'no feasible solution for mod_payoff');
display payoff;
minobj(k)=smin(kp,payoff(kp,k));
maxobj(k)=smax(kp,payoff(kp,k));
$set fname p.%gams.scrext%
File fx solution points from eps-method / "%gams.scrdir%%fname%" /;
$if not set gridpoints $set gridpoints 10
Set g grid points /g0*g%gridpoints%/
grid(k,g) grid
Parameter
gridrhs(k,g) rhs of eps-constraint at grid point
maxg(k) maximum point in grid for objective
posg(k) grid position of objective
firstOffMax, lastZero some counters
numk(k) ordinal value of k starting with 1
numg(g) ordinal value of g starting with 0;
lastZero=1; loop(km1, numk(km1)=lastZero; lastZero=lastZero+1); numg(g) = ord(g)-1;
grid(km1,g) = yes; // Here we could define different grid intervals for different objectives
maxg(km1) = smax(grid(km1,g), numg(g));
gridrhs(grid(km1,g))$(%min%=dir(km1)) = maxobj(km1) - numg(g)/maxg(km1)*(maxobj(km1)- minobj(km1));
gridrhs(grid(km1,g))$(%max%=dir(km1)) = minobj(km1) + numg(g)/maxg(km1)*(maxobj(km1)- minobj(km1));
* Walk the grid points and take shortcuts if the model becomes infeasible
posg(km1) = 0;
repeat
rhs(km1) = sum(grid(km1,g)$(numg(g)=posg(km1)), gridrhs(km1,g));
solve mod_epsmethod maximizing a_objval using mip;
$ontext
if (mod_epsmethod.modelstat<>%modelstat.Optimal%, // not optimal is in this case infeasible
lastZero = 0; loop(km1$(posg(km1)>0 and lastZero=0), lastZero=numk(km1));
posg(km1)$(numk(km1)<=lastZero) = maxg(km1); // skip all solves for more demanding values of rhs(km1)
else
$offtext
loop(k, put fx z.l(k):12:2);
put /;
* Proceed forward in the grid
firstOffMax = 0;
loop(km1$(posg(km1)<maxg(km1) and firstOffMax=0), posg(km1)=posg(km1)+1; firstOffMax=numk(km1));
posg(km1)$(numk(km1)<firstOffMax) = 0;
until sum(km1$(posg(km1)=maxg(km1)),1)=card(km1) and firstOffMax=0;
putclose fx; // close the point file
* Get unique solutions from the point file using some Posix Tools (awk, (g)sort, uniq) that come with GAMS
$set awkscript awk.%gams.scrext%
file fa / "%gams.scrdir%%awkscript%" /; put fa 'BEGIN { printf("Table solutions(*,*)\n$ondelim\nsol';
loop(k, put ',' k.tl:0); putclose '\n"); }' / '{ print NR,$0 }' / 'END { print ";" }';
$if %system.filesys% == UNIX execute 'cd "%gams.scrdir%" && sort %fname% | uniq | awk -f %awkscript% > g.%gams.scrext% && gams g.%gams.scrext% o=gx.%gams.scrext% lo=0 gdx=soleps';
$if NOT %system.filesys% == UNIX execute 'cd "%gams.wdir%" && gsort %fname% | uniq | awk -f %awkscript% > g.%gams.scrext% && gams g.%gams.scrext% o=gx.%gams.scrext% lo=0 gdx=soleps';
* execute 'mv -f "%gams.scrdir%soleps.gdx" .';
Set s Solutions /1*50/; Parameter solutions(s,k) Unique solutions;
execute_load 'soleps', solutions;
File output /solutions.csv/;
put output;
loop((s,k), put solutions(s,k));
display solutions;
$exit
* The display should produce a table with 18 unique solutions
| GAMS | 4 | mdhillmancmcl/TheWorldAvatar-CMCL-Fork | JPS_ESS/workingdir/NESS.gms | [
"MIT"
] |
/// <include file="Console.xml" path="doc/ConsoleCoord/*" />
CLASS ConsoleCoord
/// <include file="Console.xml" path="doc/ConsoleCoord.X/*" />
EXPORT X AS INT
/// <include file="Console.xml" path="doc/ConsoleCoord.Y/*" />
EXPORT Y AS INT
/// <include file="Console.xml" path="doc/ConsoleCoord.ctor/*" />
CONSTRUCTOR( nX AS INT, nY AS INT)
X := nX
Y := nY
RETURN
END CLASS
| xBase | 4 | orangesocks/XSharpPublic | Runtime/VOSDK/Source/VOSDK/Console_Classes_SDK/ConsoleCoord.prg | [
"Apache-2.0"
] |
- dashboard: template_adwords_account_perfomance
title: Template Adwords Account Perfomance
layout: grid
rows:
- elements: [chart_convs_clicks,bar_chart_cost_clicks]
height: 400
- elements: [adwords_account_perfomance_data_table]
height: 250
filters:
- name: date_start
type: date_filter
default_value: 2017/04/01 to 2017/05/14
- name: account_id
type: string_filter
default_value: '000000000014'
elements:
- name: chart_convs_clicks
title: Conversions & Clicks By Dates
type: looker_line
model: template_project
explore: adsets_adwords
dimensions: [adsets_adwords.date_date]
fill_fields: [adsets_adwords.date_date]
measures: [adsets_adwords.click, adsets_adwords.conversions]
sorts: [adsets_adwords.date_date]
limit: '500'
column_limit: '50'
query_timezone: America/Los_Angeles
stacking: ''
show_value_labels: false
label_density: 25
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: false
limit_displayed_rows: false
y_axis_combined: false
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
show_null_points: true
point_style: circle
interpolation: linear
show_row_numbers: true
truncate_column_names: false
hide_totals: false
hide_row_totals: false
table_theme: white
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
series_types: {}
series_labels:
adsets_adwords.date_date: Dates
adsets_adwords.click: Clicks
adsets_adwords.cpa: Cost/Conv
adsets_adwords.ctr: CTR %
x_axis_label: Dates
y_axis_orientation: [left, right]
listen:
date_start: adsets_adwords.date_date
account_id: adsets_adwords.account_id
- name: bar_chart_cost_clicks
title: Breakdown of Top 10 Spent & Clicks By Adsets
type: looker_bar
model: template_project
explore: adsets_adwords
dimensions: [adsets_adwords.adset_name]
measures: [adsets_adwords.cost, adsets_adwords.click]
sorts: [adsets_adwords.click desc]
limit: '10'
column_limit: '50'
query_timezone: America/Los_Angeles
stacking: ''
show_value_labels: false
label_density: 25
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: false
limit_displayed_rows: false
y_axis_combined: false
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
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
show_null_points: true
point_style: circle
value_labels: legend
label_type: labPer
interpolation: linear
show_row_numbers: true
truncate_column_names: false
hide_totals: false
hide_row_totals: false
table_theme: white
series_types: {}
series_labels:
adsets_103_adwords.date_date: Dates
adsets_103_adwords.click: Clicks
adsets_103_adwords.cpa: Cost/Conv
adsets_103_adwords.ctr: CTR %
x_axis_label: ''
y_axis_orientation: [left, right]
inner_radius: 60
colors: ['palette: Mixed Dark']
series_colors: {}
y_axis_labels: []
listen:
date_start: adsets_adwords.date_date
account_id: adsets_adwords.account_id
- name: adwords_account_perfomance_data_table
title: Adwords Account Perfomance Data Table
type: table
model: template_project
explore: adsets_adwords
dimensions: [adsets_adwords.date_date]
fill_fields: [adsets_adwords.date_date]
measures: [adsets_adwords.click, adsets_adwords.impressions, adsets_adwords.conversions,
adsets_adwords.cost, adsets_adwords.ctr, adsets_adwords.cpa, adsets_adwords.conv_rate]
sorts: [adsets_adwords.date_date]
limit: '500'
column_limit: '50'
query_timezone: America/Los_Angeles
show_view_names: false
show_row_numbers: true
truncate_column_names: false
hide_totals: false
hide_row_totals: false
table_theme: white
limit_displayed_rows: false
stacking: ''
show_value_labels: false
label_density: 25
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
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
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
series_types: {}
series_labels:
adsets_adwords.date_date: Dates
adsets_adwords.click: Clicks
adsets_adwords.cpa: Cost/Conv
adsets_adwords.ctr: CTR %
listen:
date_start: adsets_adwords.date_date
account_id: adsets_adwords.account_id
| LookML | 4 | llooker/improvado | template_adwords_account_perfomance.dashboard.lookml | [
"MIT"
] |
package unit.issues;
class Issue3948 extends Test {
function test() {
eq("ok:true", throwBool(true));
eq("ok:false", throwBool(false));
eq("ok:12", throwInt(12));
eq("ok:-12", throwInt(-12));
eq("ok:0", throwInt(0));
}
function throwBool(b:Bool) {
return try {
throw b;
} catch(b:Bool) {
"ok:" + b;
}
}
function throwInt(i:Int) {
return try {
throw i;
} catch(i:Int) {
"ok:" + i;
}
}
} | Haxe | 4 | jonasmalacofilho/haxe | tests/unit/src/unit/issues/Issue3948.hx | [
"MIT"
] |
# 7 april 2019
BEGIN {
RS = ""
FS = "\n +- "
}
/^- job:/ {
for (i = 1; i <= NF; i++) {
if (!(i in nextindex)) {
# fast path for first occurrence
lines[i, 0] = $i
nextindex[i] = 1
if (maxIndex < i)
maxIndex = i
continue
}
found = 0
for (j = 0; j < nextindex[i]; j++)
if (lines[i, j] == $i) {
found = 1
break
}
if (!found) {
lines[i, nextindex[i]] = $i
nextindex[i]++
}
}
}
END {
for (i = 1; i <= maxIndex; i++) {
if (nextindex[i] == 1) {
# only one entry here, just print it
print "- " lines[i, 0]
continue
}
print "{"
for (j = 0; j < nextindex[i]; j++)
print "- " lines[i, j]
print "}"
}
}
| Awk | 4 | chayward/libui | azure-pipelines/collapse.awk | [
"MIT"
] |
package {
import GZ.File.Resource;
<cpp_h>
#include "Lib_GZ/Lib.h"
</cpp_h>
public overclass File {
public var sFullExePath : String;
public var sExeFullName : String;
public var sExeName : String;
public var sExeExt : String;
public var sExeFolder : String;
public var sFullPath : String;
public var sFullName : String;
public var sName : String;
public var sExt : String;
public var sFolder : String;
public var sVDrive : String;
public var sRealDrive : String;
public var sFullRealDrive : String;
public var bProcessAllPathDone : Bool = false;
public function File(_sFile : String):Void{
if(_sFile.nSize > 0){
Debug.fTrace("New File!: " + _sFile);
if(_sFile == "Sys|CurrentModule"){
Debug.fTrace("Requiere systeme module");
// fExtractPath("Sys|" + fGetSystemExePath());
fExtractPath("Sys|" + fGetSystemExePath());
}else{
fExtractPath(_sFile);
}
}
}
overable static function fGetSystemExePath() : String {
Debug.fTrace("fGetExePath not impletmented");
}
public static function fCreateDirectory(_sFolder : String):Int;
public static function fIsSysFileExist(_sFile : String):Bool;
public static function fIsFileExist(_sPath : String):Bool{
var _oFile : File = new File(_sPath);
Debug.fTrace("TestExist: " + _oFile.sFullPath);
return fIsSysFileExist(_oFile.sFullPath);
}
public static function fLauch(_sFile : String, _sArguments : String):Void;
public static function fExtractPath(_sPath : String) : Void {
sFullPath = _sPath;
//Debug.fTrace("****fExtractPath " + _sPath);
var _aSplitArg : Array<String> = _sPath.fSplit("|");
if(_aSplitArg.nSize > 1){
sVDrive = _aSplitArg[0];
_sPath = _aSplitArg[1];
}else{
sVDrive = "";
_sPath = _aSplitArg[0];
}
var _aPath : Array<String> = _sPath.fSplit(":/");
if(_aPath.nSize > 1){
sRealDrive = _aPath[0];
_sPath = _aPath[1];
sFullRealDrive = sRealDrive + ":/";
}else{
sRealDrive = "";
sFullRealDrive = "";
_sPath = _aPath[0];
}
var _oResult : Result_Search = _sPath.fRevFind("/");
sFullName = _sPath.fSubStr(_oResult.nValEnd );
sFolder = _sPath.fSubStr(0, _oResult.nValEnd );
_oResult = sFullName.fFind(".");
sName = sFullName.fSubStr(0, _oResult.nVal);
sExt = sFullName.fSubStr(_oResult.nValEnd );
// Debug.fTrace("****sVDrive " + sVDrive);
if(sVDrive == "Exe"){
// Debug.fTrace("****Have EXE " );
sFullPath = File.sFullRealDrive + File.sFolder + sFolder + sFullName;
}
/*
Debug.fTrace("--- " );
Debug.fTrace("sFullPath: " + sFullPath);
Debug.fTrace("sFullName: " + sFullName);
Debug.fTrace("sFolder: " + sFolder);
Debug.fTrace("sName: " + sName);
Debug.fTrace("sExt: " + sExt);
Debug.fTrace("sVDrive: " + sVDrive);*/
}
public static function fGetFullPath(_sDrive:String, _sPath:String) : String{
//fProcessAllPath();
var _sRealDrive : String = _sDrive;
Debug.fTrace("fGetFullPath: " + _sPath);
if(_sDrive == "Exe"){
Debug.fTrace("Now fGetExePath: " + _sPath);
//_sRealDrive = File.fGetExePath();
/*
<cpp>
_sRealDrive = Lib_GZ::Lib::sDirExe;
</cpp>
*/
// Debug.fTrace("_sRealDrivePath: " + sFullExePath);
}else{
//Default drive
_sRealDrive += ":/";
}
return _sRealDrive + _sPath;
}
public static function fLoadFileFromVDrive(_oRc : Resource):Bool {
Debug.fTrace("AfLoadFile not impletmented");
//Get the path
return fLoadFile(_oRc);
//return File.fLoadFile(_oRc);
}
overable static function fLoadFile(_oRc : Resource):Bool{
Debug.fTrace("AAAAAfLoadFile not impletmented");
}
}
}
| Redcode | 4 | VLiance/GZE | src/Lib_GZ/File/File.cw | [
"Apache-2.0"
] |
import { browser, element, by } from 'protractor';
describe('Resolution-modifiers-example', () => {
beforeAll(() => browser.get(''));
it('shows basic flower emoji', async () => {
expect(await element.all(by.css('p')).get(0).getText()).toContain('🌸');
});
it('shows basic leaf emoji', async () => {
expect(await element.all(by.css('p')).get(1).getText()).toContain('🌿');
});
it('shows yellow flower in host child', async () => {
expect(await element.all(by.css('p')).get(9).getText()).toContain('🌼');
});
});
| TypeScript | 4 | John-Cassidy/angular | aio/content/examples/resolution-modifiers/e2e/src/app.e2e-spec.ts | [
"MIT"
] |
(defmodule xt.backend
(export
(start 1)))
(include-lib "logjam/include/logjam.hrl")
(defun start (cfg)
(log-notice "Starting Extempore backend ...")
'ok) | LFE | 4 | cyblue9/undertone | src/xt/backend.lfe | [
"Apache-2.0"
] |
from decimal import Decimal
from django.db.models import DecimalField
from django.db.models.functions import Sign
from django.test import TestCase
from django.test.utils import register_lookup
from ..models import DecimalModel, FloatModel, IntegerModel
class SignTests(TestCase):
def test_null(self):
IntegerModel.objects.create()
obj = IntegerModel.objects.annotate(null_sign=Sign('normal')).first()
self.assertIsNone(obj.null_sign)
def test_decimal(self):
DecimalModel.objects.create(n1=Decimal('-12.9'), n2=Decimal('0.6'))
obj = DecimalModel.objects.annotate(n1_sign=Sign('n1'), n2_sign=Sign('n2')).first()
self.assertIsInstance(obj.n1_sign, Decimal)
self.assertIsInstance(obj.n2_sign, Decimal)
self.assertEqual(obj.n1_sign, Decimal('-1'))
self.assertEqual(obj.n2_sign, Decimal('1'))
def test_float(self):
FloatModel.objects.create(f1=-27.5, f2=0.33)
obj = FloatModel.objects.annotate(f1_sign=Sign('f1'), f2_sign=Sign('f2')).first()
self.assertIsInstance(obj.f1_sign, float)
self.assertIsInstance(obj.f2_sign, float)
self.assertEqual(obj.f1_sign, -1.0)
self.assertEqual(obj.f2_sign, 1.0)
def test_integer(self):
IntegerModel.objects.create(small=-20, normal=0, big=20)
obj = IntegerModel.objects.annotate(
small_sign=Sign('small'),
normal_sign=Sign('normal'),
big_sign=Sign('big'),
).first()
self.assertIsInstance(obj.small_sign, int)
self.assertIsInstance(obj.normal_sign, int)
self.assertIsInstance(obj.big_sign, int)
self.assertEqual(obj.small_sign, -1)
self.assertEqual(obj.normal_sign, 0)
self.assertEqual(obj.big_sign, 1)
def test_transform(self):
with register_lookup(DecimalField, Sign):
DecimalModel.objects.create(n1=Decimal('5.4'), n2=Decimal('0'))
DecimalModel.objects.create(n1=Decimal('-0.1'), n2=Decimal('0'))
obj = DecimalModel.objects.filter(n1__sign__lt=0, n2__sign=0).get()
self.assertEqual(obj.n1, Decimal('-0.1'))
| Python | 5 | ni-ning/django | tests/db_functions/math/test_sign.py | [
"CNRI-Python-GPL-Compatible",
"BSD-3-Clause"
] |
//http://www.microsoft.com/downloads/details.aspx?FamilyID=1cc39ffe-a2aa-4548-91b3-855a2de99304
[CustomMessages]
de.dotnetfx20sp1lp_title=.NET Framework 2.0 SP1 Sprachpaket: Deutsch
es.dotnetfx20sp1lp_title=.NET Framework 2.0 SP1 paquete de idioma: Español
de.dotnetfx20sp1lp_size=3,4 MB
es.dotnetfx20sp1lp_size=3,3 MB
de.dotnetfx20sp1lp_size_x64=4,9 MB
es.dotnetfx20sp1lp_size_x64=4,8 MB
;http://www.microsoft.com/globaldev/reference/lcid-all.mspx
de.dotnetfx20sp1lp_lcid=1031
es.dotnetfx20sp1lp_lcid=3082
de.dotnetfx20sp1lp_url=http://download.microsoft.com/download/8/a/a/8aab7e6a-5e58-4e83-be99-f5fb49fe811e/NetFx20SP1_x86de.exe
de.dotnetfx20sp1lp_url_x64=http://download.microsoft.com/download/1/4/2/1425872f-c564-4ab2-8c9e-344afdaecd44/NetFx20SP1_x64de.exe
de.dotnetfx20sp1lp_url_ia64=http://download.microsoft.com/download/a/0/b/a0bef431-19d8-433c-9f42-6e2824a8cb90/NetFx20SP1_ia64de.exe
es.dotnetfx20sp1lp_url=http://download.microsoft.com/download/f/6/1/f61563a2-5545-4cba-8e6f-afcf2fb77737/NetFx20SP1_x86es.exe
es.dotnetfx20sp1lp_url_x64=http://download.microsoft.com/download/3/a/5/3a5c5b7f-fcbe-49ee-bc72-77e9eeaf5896/NetFx20SP1_x64es.exe
[Code]
procedure dotnetfx20sp1lp();
begin
if (ActiveLanguage() <> 'en') then begin
if (netfxspversion(NetFx20, CustomMessage('dotnetfx20sp1lp_lcid')) < 1) then
AddProduct('dotnetfx20sp1' + GetArchitectureString() + '_' + ActiveLanguage() + '.exe',
'/passive /norestart /lang:ENU',
CustomMessage('dotnetfx20sp1lp_title'),
CustomMessage('dotnetfx20sp1lp_size' + GetArchitectureString()),
CustomMessage('dotnetfx20sp1lp_url' + GetArchitectureString()),
false, false);
end;
end;
| Inno Setup | 3 | internetsimple/Bulk-Crap-Uninstaller | installer/scripts/products/dotnetfx20sp1lp.iss | [
"Apache-2.0"
] |
"Hello World" println
| Ioke | 0 | Gabrielarodrigues10/ga | i/Ioke.ik | [
"MIT"
] |
DEFINES += BUILD_QXT_CORE BUILD_QXT_GUI
HEADERS += $$PWD/qxtglobal.h
HEADERS += $$PWD/qxtglobalshortcut_p.h
HEADERS += $$PWD/qxtglobalshortcut.h
SOURCES += $$PWD/qxtglobal.cpp
SOURCES += $$PWD/qxtglobalshortcut.cpp
unix:!macx {
CONFIG += X11
QT += x11extras
HEADERS += $$PWD/x11info.h
SOURCES += $$PWD/qxtwindowsystem_x11.cpp
SOURCES += $$PWD/qxtglobalshortcut_x11.cpp
}
macx {
QMAKE_LFLAGS += -framework Carbon -framework CoreFoundation
HEADERS += $$PWD/qxtwindowsystem_mac.h
SOURCES += $$PWD/qxtwindowsystem_mac.cpp
SOURCES += $$PWD/qxtglobalshortcut_mac.cpp
}
win32 {
LIBS += -luser32
SOURCES += $$PWD/qxtwindowsystem_win.cpp
SOURCES += $$PWD/qxtglobalshortcut_win.cpp
}
| QMake | 3 | alexwang815/QWidgetDemo | third/3rd_qxtglobalshortcut/3rd_qxtglobalshortcut.pri | [
"MulanPSL-1.0"
] |
// This is a test with a setup similar to issue 85155, which triggers a const eval error: a const
// argument value is outside the range expected by the `stdarch` intrinsic.
//
// It's not the exact code mentioned in that issue because it depends both on `stdarch` intrinsics
// only available on x64, and internal implementation details of `stdarch`. But mostly because these
// are not important to trigger the diagnostics issue: it's specifically about the lack of context
// in the diagnostics of post-monomorphization errors (PMEs) for consts, happening in a dependency.
// Therefore, its setup is reproduced with an aux crate, which will similarly trigger a PME
// depending on the const argument value, like the `stdarch` intrinsics would.
//
// aux-build: post_monomorphization_error.rs
// build-fail: this is a post-monomorphization error, it passes check runs and requires building
// to actually fail.
extern crate post_monomorphization_error;
fn main() {
// This function triggers a PME whenever the const argument does not fit in 1-bit.
post_monomorphization_error::stdarch_intrinsic::<2>();
//~^ NOTE the above error was encountered while instantiating
}
| Rust | 4 | mbc-git/rust | src/test/ui/consts/const-eval/issue-85155.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
<%@ WebHandler Language="C#" Class="Save" %>
using System;
using System.Web;
public class Save : IHttpHandler
{
public void ProcessRequest (HttpContext context)
{
// Response is always returned as text/plain
context.Response.ContentType = "text/plain";
string xml = HttpUtility.UrlDecode(context.Request.Params["xml"]);
if (xml != null && xml.Length > 0)
{
context.Response.Write("Request received: " + xml);
}
else
{
context.Response.Write("Empty or missing request parameter.");
}
}
public bool IsReusable
{
// Return false in case your Managed Handler cannot be reused for another request.
// Usually this would be false in case you have some state information preserved per request.
get { return true; }
}
}
| ASP | 4 | Arkitektbedriftene/mxgraph | dotnet/aspnet/Save.ashx | [
"Apache-2.0"
] |
package jadx.core.dex.visitors.typeinference;
import java.util.ArrayList;
import java.util.List;
import jadx.core.dex.instructions.args.ArgType;
import jadx.core.dex.instructions.args.InsnArg;
import jadx.core.dex.nodes.MethodNode;
import jadx.core.utils.exceptions.JadxOverflowException;
public class TypeUpdateInfo {
private final MethodNode mth;
private final TypeUpdateFlags flags;
private final List<TypeUpdateEntry> updates = new ArrayList<>();
private final int updatesLimitCount;
public TypeUpdateInfo(MethodNode mth, TypeUpdateFlags flags) {
this.mth = mth;
this.flags = flags;
this.updatesLimitCount = mth.getInsnsCount() * 5; // maximum registers count to update at once
}
public void requestUpdate(InsnArg arg, ArgType changeType) {
updates.add(new TypeUpdateEntry(arg, changeType));
}
public void applyUpdates() {
for (TypeUpdateEntry updateEntry : updates) {
InsnArg arg = updateEntry.getArg();
arg.setType(updateEntry.getType());
}
}
public boolean isProcessed(InsnArg arg) {
if (updates.isEmpty()) {
return false;
}
for (TypeUpdateEntry entry : updates) {
if (entry.getArg() == arg) {
return true;
}
}
return false;
}
public ArgType getType(InsnArg arg) {
for (TypeUpdateEntry update : updates) {
if (update.getArg() == arg) {
return update.getType();
}
}
return arg.getType();
}
public void rollbackUpdate(InsnArg arg) {
updates.removeIf(updateEntry -> updateEntry.getArg() == arg);
}
public void checkUpdatesCount() {
if (updates.size() > updatesLimitCount) {
throw new JadxOverflowException("Type inference error: update tree size limit reached");
}
}
public MethodNode getMth() {
return mth;
}
public List<TypeUpdateEntry> getUpdates() {
return updates;
}
public TypeUpdateFlags getFlags() {
return flags;
}
@Override
public String toString() {
return "TypeUpdateInfo{" + flags + ", updates=" + updates + '}';
}
}
| Java | 4 | mazhidong/jadx | jadx-core/src/main/java/jadx/core/dex/visitors/typeinference/TypeUpdateInfo.java | [
"Apache-2.0"
] |
--TEST--
Bug #81216: Nullsafe operator leaks dynamic property name
--FILE--
<?php
$str = "foo";
null?->{$str . "bar"};
?>
DONE
--EXPECT--
DONE
| PHP | 2 | NathanFreeman/php-src | Zend/tests/bug81216.phpt | [
"PHP-3.01"
] |
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="utf-8">
<base href="../../../" />
<script src="page.js"></script>
<link type="text/css" rel="stylesheet" href="page.css" />
</head>
<body class="rtl">
<h1>الاختبار مع NPM</h1>
<p class="desc">
يوضح هذه المقال كيفية الحصول على three.js في بيئة [link:https://nodejs.org/en/ node.js] حتى تتمكن من تنفيذ الاختبارات الآلية. يمكن إجراء الاختبارات على سطر الأوامر ، أو بواسطة أدوات CI الآلية مثل [link:https://travis-ci.org/ Travis].
</p>
<h2>النسخة القصيرة</h2>
<p>
إذا كنت مرتاحًا مع node و npm ،
<code>
$ npm install three --save-dev
</code>
و من ثم قم بإضافة
<code>
const THREE = require('three');
</code>
للاختبار الخاص بك.
</p>
<h2>إنشاء مشروع قابلة للاختبار من الصفر</h2>
<p>
إذا لم تكن معتادًا على هذه الأدوات ، فإليك دليلًا سريعًا (بالنسبة لنظام التشغيل Linux ، ستكون عملية التثبيت مختلفة قليلاً باستخدام windows ، لكن أوامر NPM متطابقة).
</p>
<h3>الإعدادات الأساسية</h3>
<div>
<ol>
<li>
قم بتثبيت [link:https://www.npmjs.org/ npm] و nodejs. عادةً ما يبدو أقصر طريق كالأتي
<code>
$ sudo apt-get install -y npm nodejs-legacy
# fix any problems with SSL in the default registry URL
$ npm config set registry http://registry.npmjs.org/
</code>
</li>
<li>
أنشئ دليل مشروع جديد
<code>
$ mkdir test-example; cd test-example
</code>
</li>
<li>
اطلب من npm إنشاء ملف مشروع جديد لك:
<code>
$ npm init
</code>
واقبل جميع الإعدادات الافتراضية عن طريق الضغط على Enter في جميع المطالبات ، سيؤدي هذا إلى إنشاء package.json.
</li><br />
<li>
جرب وابدأ اختبار الميزة بـ
<code>
$ npm test
</code>
هذا سيفشل ، وهو أمر متوقع. إذا نظرت في package.json ، فإن تعريف البرنامج النصي للاختبار هو
<code>
"test": "echo \"Error: no test specified\" && exit 1"
</code>
</li>
</ol>
</div>
<h2>إضافة mocha</h2>
<div>
سنقوم بإستخدام [link:https://mochajs.org/ mocha].
<ol>
<li>
تثبيت mocha من خلال
<code>
$ npm install mocha --save-dev
</code>
لاحظ أنه تم إنشاء node_modules/ وتظهر تبعياتك هناك. لاحظ أيضًا أنه تم تحديث package.json: تمت إضافة خاصية devDependencies وتحديثها باستخدام --save-dev.
</li><br />
<li>
قم بتحرير package.json لاستخدام mocha للاختبار. عندما يتم استدعاء الاختبار ، نريد فقط تشغيل المخاوي وتحديد مراسل مطول. بشكل افتراضي ، سيؤدي هذا إلى تشغيل أي شيء في test (لا يمكن تشغيل الدليل test في npm ERR! ، قم بإنشائه عبر اختبار mkdir)
<code>
"test": "mocha --reporter list"
</code>
</li>
<li>
أعد الاختبار باستخدام
<code>
$ npm test
</code>
يجب أن ينجح هذا الآن ، حيث يتم الإبلاغ عن 0 تمرير (1 جزء من الثانية) أو ما شابه.
</li>
</ol>
</div>
<h2>أضف three.js</h2>
<div>
<ol>
<li>
دعنا نسحب تبعية three.js لدينا مع
<code>
$ npm install three --save-dev
</code>
<ul>
<li>
إذا كنت بحاجة إلى إصدار مختلف ، فاستخدم
<code>
$ npm show three versions
</code>
لمعرفة ما هو متاح. لإخبار npm بالقيمة الصحيحة ، استخدم
<code>
$ npm install three@0.84.0 --save
</code>
(0.84.0 في هذا المثال). - حفظ يجعل هذا تبعية لهذا المشروع ، بدلاً من dev تبعية. انظر المستندات هنا [link:https://docs.npmjs.com/cli/v8/configuring-npm/package-json here] لمزيد من المعلومات.
</li>
</ul>
</li>
<li>
سيبحث Mocha عن الاختبارات في test/ ، لذلك دعونا
<code>
$ mkdir test
</code>
</li>
<li>
أخيرًا ، نحتاج بالفعل إلى اختبار JS للتشغيل. دعنا نضيف اختبارًا بسيطًا للتحقق من أن الكائن three.js متاح ويعمل. أنشئ test/verify-three.js تحتوي على:
<code>
const THREE = require('three');
const assert = require("assert");
describe('The THREE object', function() {
it('should have a defined BasicShadowMap constant', function() {
assert.notEqual('undefined', THREE.BasicShadowMap);
}),
it('should be able to construct a Vector3 with default of x=0', function() {
const vec3 = new THREE.Vector3();
assert.equal(0, vec3.x);
})
})
</code>
</li>
<li>
أخيرًا ، دعنا نختبر مرة أخرى باستخدام $ npm اختبار. يجب أن يؤدي هذا إلى إجراء الاختبارات أعلاه وأن ينجح ، ويظهر شيئًا مثل:
<code>
The THREE object should have a defined BasicShadowMap constant: 0ms
The THREE object should be able to construct a Vector3 with default of x=0: 0ms
2 passing (8ms)
</code>
</li>
</ol>
</div>
<h2>أضف الرمز الخاص بك</h2>
<div>
<p>عليك القيام بثلاثة أشياء:</p>
<ol>
<li>
اكتب اختبارًا للسلوك المتوقع لشفرتك ، وضعه تحت test/.
هنا مثال من مشروع حقيقي
[link:https://github.com/air/encounter/blob/master/test/Physics-test.js Here].
</li>
<li>
قم بتصدير الكود الوظيفي الخاص بك بطريقة يمكن للعقدة js رؤيتها ، لاستخدامها مع طلب.
شاهده هنا [link:https://github.com/air/encounter/blob/master/js/Physics.js here].
</li>
<li>
اطلب الكود الخاص بك في ملف الاختبار ، بنفس الطريقة التي فعلنا بها require('three') في المثال أعلاه.
</li>
</ol>
<p>
سيختلف البندان 2 و 3 بناءً على كيفية إدارتك للرمز. في مثال Physics.js الموضح أعلاه ، يكون جزء التصدير في النهاية. نقوم بتعيين كائن إلى module.exports:
</p>
<code>
//=============================================================================
// make available in nodejs
//=============================================================================
if (typeof exports !== 'undefined')
{
module.exports = Physics;
}
</code>
</div>
<h2>التعامل مع التبعيات (dependencies)</h2>
<div>
<p>
إذا كنت تستخدم بالفعل شيئًا ذكيًا مثل request.js أو browserify فتخط هذا الجزء.
</p>
<p>
عادةً ما يتم تشغيل مشروع three.js في المتصفح. يتم تحميل الوحدة النمطية عن طريق المتصفح الذي يقوم بتنفيذ مجموعة من علامات البرنامج النصي. فبالنسبة لملفاتك الفردية فلا داعي للقلق بشأن التبعيات. ومع ذلك ، في سياق nodejs ، لا يوجد index.html يربط كل شيء معًا ، لذلك يجب أن تكون واضحًا.
</p>
<p>
إذا كنت تقوم بتصدير وحدة تعتمد على ملفات أخرى ، فسيتعين عليك إخبار العقدة بتحميلها.
إليك طريقة واحدة:
</p>
<ol>
<li>
في بداية الوحدة النمطية الخاصة بك ، تحقق لمعرفة ما إذا كنت في بيئة nodejs.
</li>
<li>
إذا كان هذا هو الحال، فيتوجب عليك أن تعلن عن التبعيات الخاصة بك.
</li>
<li>
إذا لم يكن الأمر كذلك ، فمن المحتمل أنك في متصفح لذلك لا تحتاج إلى القيام بأي شيء آخر.
</li>
</ol>
مثال لإستعمال Physics.js:
<code>
//=============================================================================
// setup for server-side testing
//=============================================================================
if (typeof require === 'function') // test for nodejs environment
{
const THREE = require('three');
const MY3 = require('./MY3.js');
}
</code>
</div>
</body>
</html>
| HTML | 4 | Hyeong-jin/three.js | docs/manual/ar/buildTools/Testing-with-NPM.html | [
"MIT"
] |
BEGIN {
flag = 0;
}
{
++a[$0];
if (a[$0] > 1)
flag = 1;
}
END {
exit flag == 1 ? 0 : 1;
}
| Awk | 3 | d3dave/enhancd | functions/enhancd/lib/has_dup_lines.awk | [
"MIT"
] |
package com.baeldung.spring.jinq.entities;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.OneToOne;
@Entity(name = "CAR")
public class Car {
private String model;
private String description;
private int year;
private String engine;
private Manufacturer manufacturer;
@Id
public String getModel() {
return model;
}
public void setModel(String model) {
this.model = model;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public int getYear() {
return year;
}
public void setYear(int year) {
this.year = year;
}
public String getEngine() {
return engine;
}
public void setEngine(String engine) {
this.engine = engine;
}
@OneToOne
@JoinColumn(name = "name")
public Manufacturer getManufacturer() {
return manufacturer;
}
public void setManufacturer(Manufacturer manufacturer) {
this.manufacturer = manufacturer;
}
}
| Java | 4 | zeesh49/tutorials | spring-jinq/src/main/java/com/baeldung/spring/jinq/entities/Car.java | [
"MIT"
] |
<html>
<head>
<style>
.full {
bottom: 0;
left: 0;
right: 0;
top: 0;
}
.container-1 {
position: fixed;
}
.container-2,
.host {
position: absolute;
}
</style>
</head>
<body>
<div class="container-1 full">
<div class="container-2 full">
<div class="host full"></div>
</div>
</div>
<script>
document.querySelector('.host').attachShadow({ mode: 'open' })
</script>
</body>
</html>
| HTML | 3 | mm73628486283/cypress | packages/driver/cypress/fixtures/issue-7794.html | [
"MIT"
] |
TDSmalltalkLeafNode {
#name : 'issue_136',
#contents : 'MetacelloRegistryLoadScriptTestCase debug: #\'testFie35Foo40FeauxLoadLockError\'.
\"pharo\"
MetacelloRegistryLoadScriptTestCase
debug: #\'testFie35Foo40FeauxLoadLockNAllowEvenIfLockedUpgrade\'.
MetacelloRegistryLoadScriptTestCase
debug: #\'testFie35Foo40FeauxLoadLockNAllowUpgradeError\'.
MetacelloScriptingSuccessTestCase debug: #\'testGithubRefBaselineLoad2\'.
MetacelloScriptingSuccessTestCase debug: #\'testGithubRefBaselineLoad3\'.
\"
squeak\"
MetacelloScriptingSuccessTestCase debug: #\'testGithubRefBaselineLoad2\'.
MetacelloScriptingSuccessTestCase debug: #\'testGithubRefBaselineLoad3\'.
MetacelloRegistryLoadScriptTestCase debug: #\'testFie35Foo40FeauxLoadLockError\'.
MetacelloRegistryLoadScriptTestCase
debug: #\'testFie35Foo40FeauxLoadLockNAllowEvenIfLockedUpgrade\'.
MetacelloRegistryLoadScriptTestCase
debug: #\'testFie35Foo40FeauxLoadLockNAllowUpgradeError\'.
\"
gemstone\"
MetacelloRegistryLoadScriptTestCase debug: #\'testFie35Foo40FeauxLoadLockError\'.
MetacelloRegistryLoadScriptTestCase
debug: #\'testFie35Foo40FeauxLoadLockNAllowEvenIfLockedUpgrade\'.
MetacelloRegistryLoadScriptTestCase
debug: #\'testFie35Foo40FeauxLoadLockNAllowUpgradeError\'.
MetacelloScriptingSuccessTestCase debug: #\'testGithubRefBaselineLoad2\'.
MetacelloScriptingSuccessTestCase debug: #\'testGithubRefBaselineLoad3\''
}
| STON | 2 | tom95/metacello | tode/issue_136.ston | [
"MIT"
] |
@REM Build for Visual Studio compiler. Run your copy of vcvars32.bat or vcvarsall.bat to setup command-line compiler.
@set OUT_EXE=example_sdl_vulkan
@set INCLUDES=/I..\.. /I..\..\backends /I%SDL2_DIR%\include /I %VULKAN_SDK%\include
@set SOURCES=main.cpp ..\..\backends\imgui_impl_sdl.cpp ..\..\backends\imgui_impl_vulkan.cpp ..\..\imgui*.cpp
@set LIBS=/LIBPATH:%SDL2_DIR%\lib\x86 /libpath:%VULKAN_SDK%\lib32 SDL2.lib SDL2main.lib shell32.lib vulkan-1.lib
@set OUT_DIR=Debug
mkdir %OUT_DIR%
cl /nologo /Zi /MD %INCLUDES% %SOURCES% /Fe%OUT_DIR%/%OUT_EXE%.exe /Fo%OUT_DIR%/ /link %LIBS% /subsystem:console
| Batchfile | 3 | WillianKoessler/imgui | examples/example_sdl_vulkan/build_win32.bat | [
"MIT"
] |
<section class="section is-medium">
<div class="container">
<h3 class="title is-2">
<span class="icon is-medium">
<i class="fas fa-asterisk"></i>
</span>
<a href="{{ site.url }}/documentation/elements/box/">
And all the usual <strong>elements</strong> and <strong>components</strong>
</a>
</h3>
</div>
</section>
| HTML | 3 | kalpitzeta/bulma | docs/_includes/index/usual.html | [
"MIT"
] |
// scss-docs-start table-variant
@mixin table-variant($state, $background) {
.table-#{$state} {
$color: color-contrast(opaque($body-bg, $background));
$hover-bg: mix($color, $background, percentage($table-hover-bg-factor));
$striped-bg: mix($color, $background, percentage($table-striped-bg-factor));
$active-bg: mix($color, $background, percentage($table-active-bg-factor));
$border-color: mix($color, $background, percentage($table-border-factor));
--#{$variable-prefix}table-color: #{$color};
--#{$variable-prefix}table-bg: #{$background};
--#{$variable-prefix}table-border-color: #{$border-color};
--#{$variable-prefix}table-striped-bg: #{$striped-bg};
--#{$variable-prefix}table-striped-color: #{color-contrast($striped-bg)};
--#{$variable-prefix}table-active-bg: #{$active-bg};
--#{$variable-prefix}table-active-color: #{color-contrast($active-bg)};
--#{$variable-prefix}table-hover-bg: #{$hover-bg};
--#{$variable-prefix}table-hover-color: #{color-contrast($hover-bg)};
color: var(--#{$variable-prefix}table-color);
border-color: var(--#{$variable-prefix}table-border-color);
}
}
// scss-docs-end table-variant
| SCSS | 4 | OpperiToti/bootstrap | scss/mixins/_table-variants.scss | [
"MIT"
] |
; Cambia estas dos funciones para definir el Sistema Dinámico 2D:
; fx = dx / dt
; fy = dy / dt
to-report fx [x y]
report y ; f1
;report x ; f2: Punto fijo
;report -1 * y ; f3: Oscilante
;report -1 * x ; f4: Punto de Silla
end
to-report fy [x y]
report -1 * (x ^ 2 - 1) * y - x ; f1
;report y ; f2
;report x ; f3
;report y ; f4
end
;----------------------------
;
to setup
ca
; Creamos la tortuga trazador
crt 1 [
ht
]
; Dibujamos ejes
ejes
end
; Dibujo de los ejes
to ejes
crt 1 [
set color grey
pu
setxy 0 max-pycor
pd
setxy 0 min-pycor
pu
setxy min-pxcor 0
pd
setxy max-pxcor 0
pu
die
]
end
; Funcion de traza de órbitas
to go
; rep: número de pasos que va a dar la trazadora en cada órbita
let rep 10 * amplitud / dt
; La trazadora
ask turtles [
set color (lput 20 (extract-rgb col))
; sitúa la trazadora en un punto inicial
set-ini
; dibujamos la órbita
repeat rep [
; Transformamos las coordenadas patch en coordenadas reales
let x xcor / max-pxcor * amplitud
let y ycor / max-pycor * amplitud
; Calculamos las derivadas parciales
let f_x fx x y
let f_y fy x y
; orientamos la trazadora en el ángulo dado por el gradiente y trazamos el segmento
ifelse f_x = 0
[ set-ini ]
[ set heading atan f_x f_y
fd dt]
; Si la trazadora se sale de la zona de dibujo, la resituamos
if xcor > max-pxcor or ycor > max-pycor or xcor < min-pxcor or ycor < min-pycor [set-ini]
]
]
; Dibujamos los ejes, para que no se oculten con las órbitas
ejes
end
; Función de colocación inicial de la trazadora (inicio de la órbita parcial)
to set-ini
pu
; Con igual probabilidad generamos 7 zonas: los 2 ejes, los 4 bordes, o el interior
let ini random 7
if ini = 0 [ setxy random-xcor min-pycor ] ; Borde inferior
if ini = 1 [ setxy random-xcor max-pycor ] ; Borde superior
if ini = 2 [ setxy random-xcor 0 ] ; Eje X
if ini = 3 [ setxy min-pxcor random-ycor ] ; Borde izquierdo
if ini = 4 [ setxy max-pxcor random-ycor ] ; Borde derecho
if ini = 5 [ setxy 0 random-ycor ] ; Eje Y
if ini = 6 [ setxy random-xcor random-ycor ] ; Interior
pd
end
@#$#@#$#@
GRAPHICS-WINDOW
185
10
622
448
-1
-1
13.0
1
10
1
1
1
0
0
0
1
-16
16
-16
16
0
0
1
ticks
30.0
BUTTON
5
145
68
178
limpia
setup
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
BUTTON
115
145
178
178
NIL
Go
T
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
INPUTBOX
5
10
180
70
col
15.0
1
0
Color
SLIDER
5
75
177
108
amplitud
amplitud
0
10
4.0
1
1
NIL
HORIZONTAL
SLIDER
5
110
177
143
dt
dt
0.01
1
0.1
.01
1
NIL
HORIZONTAL
@#$#@#$#@
## WHAT IS IT?
(a general understanding of what the model is trying to show or explain)
## HOW IT WORKS
(what rules the agents use to create the overall behavior of the model)
## HOW TO USE IT
(how to use the model, including a description of each of the items in the Interface tab)
## THINGS TO NOTICE
(suggested things for the user to notice while running the model)
## THINGS TO TRY
(suggested things for the user to try to do (move sliders, switches, etc.) with the model)
## EXTENDING THE MODEL
(suggested things to add or change in the Code tab to make the model more complicated, detailed, accurate, etc.)
## NETLOGO FEATURES
(interesting or unusual features of NetLogo that the model uses, particularly in the Code tab; or where workarounds were needed for missing features)
## RELATED MODELS
(models in the NetLogo Models Library and elsewhere which are of related interest)
## CREDITS AND REFERENCES
(a reference to the model's URL on the web if it has one, as well as any other necessary credits, citations, and links)
@#$#@#$#@
default
true
0
Polygon -7500403 true true 150 5 40 250 150 205 260 250
airplane
true
0
Polygon -7500403 true true 150 0 135 15 120 60 120 105 15 165 15 195 120 180 135 240 105 270 120 285 150 270 180 285 210 270 165 240 180 180 285 195 285 165 180 105 180 60 165 15
arrow
true
0
Polygon -7500403 true true 150 0 0 150 105 150 105 293 195 293 195 150 300 150
box
false
0
Polygon -7500403 true true 150 285 285 225 285 75 150 135
Polygon -7500403 true true 150 135 15 75 150 15 285 75
Polygon -7500403 true true 15 75 15 225 150 285 150 135
Line -16777216 false 150 285 150 135
Line -16777216 false 150 135 15 75
Line -16777216 false 150 135 285 75
bug
true
0
Circle -7500403 true true 96 182 108
Circle -7500403 true true 110 127 80
Circle -7500403 true true 110 75 80
Line -7500403 true 150 100 80 30
Line -7500403 true 150 100 220 30
butterfly
true
0
Polygon -7500403 true true 150 165 209 199 225 225 225 255 195 270 165 255 150 240
Polygon -7500403 true true 150 165 89 198 75 225 75 255 105 270 135 255 150 240
Polygon -7500403 true true 139 148 100 105 55 90 25 90 10 105 10 135 25 180 40 195 85 194 139 163
Polygon -7500403 true true 162 150 200 105 245 90 275 90 290 105 290 135 275 180 260 195 215 195 162 165
Polygon -16777216 true false 150 255 135 225 120 150 135 120 150 105 165 120 180 150 165 225
Circle -16777216 true false 135 90 30
Line -16777216 false 150 105 195 60
Line -16777216 false 150 105 105 60
car
false
0
Polygon -7500403 true true 300 180 279 164 261 144 240 135 226 132 213 106 203 84 185 63 159 50 135 50 75 60 0 150 0 165 0 225 300 225 300 180
Circle -16777216 true false 180 180 90
Circle -16777216 true false 30 180 90
Polygon -16777216 true false 162 80 132 78 134 135 209 135 194 105 189 96 180 89
Circle -7500403 true true 47 195 58
Circle -7500403 true true 195 195 58
circle
false
0
Circle -7500403 true true 0 0 300
circle 2
false
0
Circle -7500403 true true 0 0 300
Circle -16777216 true false 30 30 240
cow
false
0
Polygon -7500403 true true 200 193 197 249 179 249 177 196 166 187 140 189 93 191 78 179 72 211 49 209 48 181 37 149 25 120 25 89 45 72 103 84 179 75 198 76 252 64 272 81 293 103 285 121 255 121 242 118 224 167
Polygon -7500403 true true 73 210 86 251 62 249 48 208
Polygon -7500403 true true 25 114 16 195 9 204 23 213 25 200 39 123
cylinder
false
0
Circle -7500403 true true 0 0 300
dot
false
0
Circle -7500403 true true 90 90 120
face happy
false
0
Circle -7500403 true true 8 8 285
Circle -16777216 true false 60 75 60
Circle -16777216 true false 180 75 60
Polygon -16777216 true false 150 255 90 239 62 213 47 191 67 179 90 203 109 218 150 225 192 218 210 203 227 181 251 194 236 217 212 240
face neutral
false
0
Circle -7500403 true true 8 7 285
Circle -16777216 true false 60 75 60
Circle -16777216 true false 180 75 60
Rectangle -16777216 true false 60 195 240 225
face sad
false
0
Circle -7500403 true true 8 8 285
Circle -16777216 true false 60 75 60
Circle -16777216 true false 180 75 60
Polygon -16777216 true false 150 168 90 184 62 210 47 232 67 244 90 220 109 205 150 198 192 205 210 220 227 242 251 229 236 206 212 183
fish
false
0
Polygon -1 true false 44 131 21 87 15 86 0 120 15 150 0 180 13 214 20 212 45 166
Polygon -1 true false 135 195 119 235 95 218 76 210 46 204 60 165
Polygon -1 true false 75 45 83 77 71 103 86 114 166 78 135 60
Polygon -7500403 true true 30 136 151 77 226 81 280 119 292 146 292 160 287 170 270 195 195 210 151 212 30 166
Circle -16777216 true false 215 106 30
flag
false
0
Rectangle -7500403 true true 60 15 75 300
Polygon -7500403 true true 90 150 270 90 90 30
Line -7500403 true 75 135 90 135
Line -7500403 true 75 45 90 45
flower
false
0
Polygon -10899396 true false 135 120 165 165 180 210 180 240 150 300 165 300 195 240 195 195 165 135
Circle -7500403 true true 85 132 38
Circle -7500403 true true 130 147 38
Circle -7500403 true true 192 85 38
Circle -7500403 true true 85 40 38
Circle -7500403 true true 177 40 38
Circle -7500403 true true 177 132 38
Circle -7500403 true true 70 85 38
Circle -7500403 true true 130 25 38
Circle -7500403 true true 96 51 108
Circle -16777216 true false 113 68 74
Polygon -10899396 true false 189 233 219 188 249 173 279 188 234 218
Polygon -10899396 true false 180 255 150 210 105 210 75 240 135 240
house
false
0
Rectangle -7500403 true true 45 120 255 285
Rectangle -16777216 true false 120 210 180 285
Polygon -7500403 true true 15 120 150 15 285 120
Line -16777216 false 30 120 270 120
leaf
false
0
Polygon -7500403 true true 150 210 135 195 120 210 60 210 30 195 60 180 60 165 15 135 30 120 15 105 40 104 45 90 60 90 90 105 105 120 120 120 105 60 120 60 135 30 150 15 165 30 180 60 195 60 180 120 195 120 210 105 240 90 255 90 263 104 285 105 270 120 285 135 240 165 240 180 270 195 240 210 180 210 165 195
Polygon -7500403 true true 135 195 135 240 120 255 105 255 105 285 135 285 165 240 165 195
line
true
0
Line -7500403 true 150 0 150 300
line half
true
0
Line -7500403 true 150 0 150 150
pentagon
false
0
Polygon -7500403 true true 150 15 15 120 60 285 240 285 285 120
person
false
0
Circle -7500403 true true 110 5 80
Polygon -7500403 true true 105 90 120 195 90 285 105 300 135 300 150 225 165 300 195 300 210 285 180 195 195 90
Rectangle -7500403 true true 127 79 172 94
Polygon -7500403 true true 195 90 240 150 225 180 165 105
Polygon -7500403 true true 105 90 60 150 75 180 135 105
plant
false
0
Rectangle -7500403 true true 135 90 165 300
Polygon -7500403 true true 135 255 90 210 45 195 75 255 135 285
Polygon -7500403 true true 165 255 210 210 255 195 225 255 165 285
Polygon -7500403 true true 135 180 90 135 45 120 75 180 135 210
Polygon -7500403 true true 165 180 165 210 225 180 255 120 210 135
Polygon -7500403 true true 135 105 90 60 45 45 75 105 135 135
Polygon -7500403 true true 165 105 165 135 225 105 255 45 210 60
Polygon -7500403 true true 135 90 120 45 150 15 180 45 165 90
sheep
false
15
Circle -1 true true 203 65 88
Circle -1 true true 70 65 162
Circle -1 true true 150 105 120
Polygon -7500403 true false 218 120 240 165 255 165 278 120
Circle -7500403 true false 214 72 67
Rectangle -1 true true 164 223 179 298
Polygon -1 true true 45 285 30 285 30 240 15 195 45 210
Circle -1 true true 3 83 150
Rectangle -1 true true 65 221 80 296
Polygon -1 true true 195 285 210 285 210 240 240 210 195 210
Polygon -7500403 true false 276 85 285 105 302 99 294 83
Polygon -7500403 true false 219 85 210 105 193 99 201 83
square
false
0
Rectangle -7500403 true true 30 30 270 270
square 2
false
0
Rectangle -7500403 true true 30 30 270 270
Rectangle -16777216 true false 60 60 240 240
star
false
0
Polygon -7500403 true true 151 1 185 108 298 108 207 175 242 282 151 216 59 282 94 175 3 108 116 108
target
false
0
Circle -7500403 true true 0 0 300
Circle -16777216 true false 30 30 240
Circle -7500403 true true 60 60 180
Circle -16777216 true false 90 90 120
Circle -7500403 true true 120 120 60
tree
false
0
Circle -7500403 true true 118 3 94
Rectangle -6459832 true false 120 195 180 300
Circle -7500403 true true 65 21 108
Circle -7500403 true true 116 41 127
Circle -7500403 true true 45 90 120
Circle -7500403 true true 104 74 152
triangle
false
0
Polygon -7500403 true true 150 30 15 255 285 255
triangle 2
false
0
Polygon -7500403 true true 150 30 15 255 285 255
Polygon -16777216 true false 151 99 225 223 75 224
truck
false
0
Rectangle -7500403 true true 4 45 195 187
Polygon -7500403 true true 296 193 296 150 259 134 244 104 208 104 207 194
Rectangle -1 true false 195 60 195 105
Polygon -16777216 true false 238 112 252 141 219 141 218 112
Circle -16777216 true false 234 174 42
Rectangle -7500403 true true 181 185 214 194
Circle -16777216 true false 144 174 42
Circle -16777216 true false 24 174 42
Circle -7500403 false true 24 174 42
Circle -7500403 false true 144 174 42
Circle -7500403 false true 234 174 42
turtle
true
0
Polygon -10899396 true false 215 204 240 233 246 254 228 266 215 252 193 210
Polygon -10899396 true false 195 90 225 75 245 75 260 89 269 108 261 124 240 105 225 105 210 105
Polygon -10899396 true false 105 90 75 75 55 75 40 89 31 108 39 124 60 105 75 105 90 105
Polygon -10899396 true false 132 85 134 64 107 51 108 17 150 2 192 18 192 52 169 65 172 87
Polygon -10899396 true false 85 204 60 233 54 254 72 266 85 252 107 210
Polygon -7500403 true true 119 75 179 75 209 101 224 135 220 225 175 261 128 261 81 224 74 135 88 99
wheel
false
0
Circle -7500403 true true 3 3 294
Circle -16777216 true false 30 30 240
Line -7500403 true 150 285 150 15
Line -7500403 true 15 150 285 150
Circle -7500403 true true 120 120 60
Line -7500403 true 216 40 79 269
Line -7500403 true 40 84 269 221
Line -7500403 true 40 216 269 79
Line -7500403 true 84 40 221 269
wolf
false
0
Polygon -16777216 true false 253 133 245 131 245 133
Polygon -7500403 true true 2 194 13 197 30 191 38 193 38 205 20 226 20 257 27 265 38 266 40 260 31 253 31 230 60 206 68 198 75 209 66 228 65 243 82 261 84 268 100 267 103 261 77 239 79 231 100 207 98 196 119 201 143 202 160 195 166 210 172 213 173 238 167 251 160 248 154 265 169 264 178 247 186 240 198 260 200 271 217 271 219 262 207 258 195 230 192 198 210 184 227 164 242 144 259 145 284 151 277 141 293 140 299 134 297 127 273 119 270 105
Polygon -7500403 true true -1 195 14 180 36 166 40 153 53 140 82 131 134 133 159 126 188 115 227 108 236 102 238 98 268 86 269 92 281 87 269 103 269 113
x
false
0
Polygon -7500403 true true 270 75 225 30 30 225 75 270
Polygon -7500403 true true 30 75 75 30 270 225 225 270
@#$#@#$#@
NetLogo 6.0.2
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
default
0.0
-0.2 0 0.0 1.0
0.0 1 1.0 0.0
0.2 0 0.0 1.0
link direction
true
0
Line -7500403 true 150 150 90 180
Line -7500403 true 150 150 210 180
@#$#@#$#@
1
@#$#@#$#@
| NetLogo | 4 | fsancho/IA | 07. Complexity/Flujos2D.nlogo | [
"MIT"
] |
module Compiler.Jvm.ExtPrim
import Core.Context
import Core.Name
||| Extended primitives for the scheme backend, outside the standard set of primFn
public export
data ExtPrim = JvmStaticMethodCall | JvmInstanceMethodCall
| NewIORef | ReadIORef | WriteIORef
| NewArray | ArrayGet | ArraySet
| GetField | SetField
| VoidElim
| SysOS | SysCodegen
| MakeFuture
| Unknown Name
export
Show ExtPrim where
show JvmStaticMethodCall = "JvmStaticMethodCall"
show JvmInstanceMethodCall = "JvmInstanceMethodCall"
show NewIORef = "NewIORef"
show ReadIORef = "ReadIORef"
show WriteIORef = "WriteIORef"
show NewArray = "NewArray"
show ArrayGet = "ArrayGet"
show ArraySet = "ArraySet"
show GetField = "GetField"
show SetField = "SetField"
show VoidElim = "VoidElim"
show SysOS = "SysOS"
show SysCodegen = "SysCodegen"
show MakeFuture = "MakeFuture"
show (Unknown n) = "Unknown " ++ show n
||| Match on a user given name to get the scheme primitive
export
toPrim : Name -> ExtPrim
toPrim pn@(NS _ n)
= cond [(n == UN "prim__jvmStatic", JvmStaticMethodCall),
(n == UN "prim__jvmInstance", JvmInstanceMethodCall),
(n == UN "prim__newIORef", NewIORef),
(n == UN "prim__readIORef", ReadIORef),
(n == UN "prim__writeIORef", WriteIORef),
(n == UN "prim__newArray", NewArray),
(n == UN "prim__arrayGet", ArrayGet),
(n == UN "prim__arraySet", ArraySet),
(n == UN "prim__getField", GetField),
(n == UN "prim__setField", SetField),
(n == UN "void", VoidElim),
(n == UN "prim__os", SysOS),
(n == UN "prim__codegen", SysCodegen),
(n == UN "prim__makeFuture", MakeFuture)
]
(Unknown pn)
toPrim pn = Unknown pn | Idris | 4 | mmhelloworld/idris-jvm | src/Compiler/Jvm/ExtPrim.idr | [
"BSD-3-Clause"
] |
-- Copyright 2016 Stanford University
--
-- 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.
import "regent"
local c = regentlib.c
task summer(lim: int64)
var sum: int64 = 0
for i = 1,lim do
sum += i
end
c.printf("Summer is done!\n")
return sum
end
-- Just making the point that subtasks can also launch subtasks ...
task subtracter(input: int64)
c.printf("Subtracter is done!\n")
return input - 3
end
task tester(sum: int64)
if sum >= 40 then
sum = subtracter(sum)
elseif sum <= 30 then
sum = 0
else
sum += 3
end
c.printf("Tester is done!\n")
return sum
end
-- A main task with two subtasks
task main()
var sum: int64 = summer(10)
sum = tester(sum)
c.printf("The answer is: %d\n",sum)
end
regentlib.start(main) | Rouge | 4 | StanfordLegion/bootcamp2017 | Tasks/2.rg | [
"Apache-2.0"
] |
# Rename this file to hie.yaml to open this project in HIE and use Cabal as build system
cradle:
cabal:
- path: "src"
component: "lib:implicit-hie"
- path: "app/Main.hs"
component: "implicit-hie:exe:gen-hie"
- path: "test"
component: "implicit-hie:test:implicit-hie-test"
| COBOL | 3 | theGhostJW/implicit-hie | hie.yaml.cbl | [
"BSD-3-Clause"
] |
%lex
%%
\s+ {}
(global|local|integer|float) { return yytext; }
[a-zA-Z_]\w* { return 'id'; }
. { return yytext; }
/lex
%%
D
: C T L
;
C
: global
| local
;
T
: integer
| float
;
L
: L ',' id {
console.log("L -> L ',' id ("+yytext+")");
console.log($id + ' is of type ' + $0);
console.log($1 + ' is of class ' + $-1);
}
| id {
console.log("L -> id ("+yytext+")");
console.log($id + ' is of type ' + $0);
console.log($1 + ' is of class ' + $-1);
}
;
%%
| Yacc | 3 | RubenVerborgh/jison | examples/inherited.y | [
"Unlicense"
] |
pub enum XE {
XStruct { a: u8 },
XTuple(u8),
XUnit,
}
| Rust | 4 | Eric-Arellano/rust | src/test/ui/variants/auxiliary/variant-namespacing.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
import "base"
class FormSlide : BaseSlide
{
BMBar { this };
Title title { this, caption = "A Form class" };
MBar { this };
Col t { this, maxSize = { 1550, 1250 }, margin = { 60, 15, 60, 15 } };
//Header { t, caption = "Features" };
MBar { t };
Bullet { t, caption = "The Ecere library provides a cross-platform GUI toolkit." };
Bullet { t, caption = "All controls and form derive from the Window class." };
Bullet { t, caption = "Let's define a Form class inheriting from Window:" };
BMBar { t };
SmallHeader { t, caption = " Syntax:" };
MBar { t };
CodeBlock { t, minSize = { 900, 600 }, caption =
"import \"ecere\"\n"
"class Form : Window\n"
"{\n"
" caption = $\"My Form\";\n"
" background = formColor;\n"
" borderStyle = sizable;\n"
" hasMaximize = true;\n"
" hasMinimize = true;\n"
" hasClose = true;\n"
" clientSize = { 640, 480 };\n"
"}\n"
"Form form { };\n"
};
}
| eC | 4 | N-eil/ecere-sdk | autoLayout/slides/formSlide.ec | [
"BSD-3-Clause"
] |
all: h2b_stub
h2b_stub: h2b_asm
cat h2b_asm | \
sed 's/^/echo /g' | \
sed 's/$$/ >>decoder_stub/g' | \
sed 's/echo /echo /g'> h2b_stub
h2b_asm: h2b.com.dbg
cat h2b.com.dbg | \
sed 's/\;.*$$//g' | \
grep -v ^''$$ | \
tr -d '\r' | \
sed 's/ *$$//g' > h2b_asm
h2b.com.dbg:
./fix_up.rb > h2b.com.dbg
unix2dos h2b.com.dbg
chmod 644 h2b.com.dbg
clean:
rm -f h2b.com.dbg h2b_asm h2b_stub
| Makefile | 3 | OsmanDere/metasploit-framework | external/source/cmdstager/debug_asm/Makefile | [
"BSD-2-Clause",
"BSD-3-Clause"
] |
#!/bin/bash
# build the project
BASEDIR=$(dirname $0)
source $BASEDIR/defaults.sh
if ! $WITH_CMAKE ; then
make --jobs $NUM_THREADS all test pycaffe warn
else
cd build
make --jobs $NUM_THREADS all test.testbin
fi
make lint
| Shell | 4 | Jiawei-Gu/caffe_gu | scripts/travis/build.sh | [
"BSD-2-Clause"
] |
package(default_visibility=["//visibility:public"])
# To build Python C/C++ extension on Windows, we need to link to python import library pythonXY.lib
# See https://docs.python.org/3/extending/windows.html
cc_import(
name="%{VARIETY_NAME}_lib",
interface_library=select({
"//:windows": ":%{VARIETY_NAME}_import_lib",
# A placeholder for Unix platforms which makes --no_build happy.
"//conditions:default": "not-existing.lib",
}),
system_provided=1,
)
cc_library(
name="%{VARIETY_NAME}_headers",
hdrs=[":%{VARIETY_NAME}_include"],
deps=select({
"//:windows": [":%{VARIETY_NAME}_lib"],
"//conditions:default": [],
}),
includes=["%{VARIETY_NAME}_include"],
)
%{PYTHON_INCLUDE_GENRULE}
%{PYTHON_IMPORT_LIB_GENRULE}
| Smarty | 4 | mpminardi/grpc | third_party/py/variety.tpl | [
"Apache-2.0"
] |
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head><!-- start favicons snippet, use https://realfavicongenerator.net/ --><link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png"><link rel="manifest" href="/assets/site.webmanifest"><link rel="mask-icon" href="/assets/safari-pinned-tab.svg" color="#fc4d50"><link rel="shortcut icon" href="/assets/favicon.ico"><meta name="msapplication-TileColor" content="#ffc40d"><meta name="msapplication-config" content="/assets/browserconfig.xml"><meta name="theme-color" content="#ffffff"><!-- end favicons snippet -->
<title>ExtractorUtil (ExoPlayer library)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../../../jquery/jquery-3.5.1.js"></script>
<script type="text/javascript" src="../../../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ExtractorUtil (ExoPlayer library)";
}
}
catch(err) {
}
//-->
var data = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
var pathtoroot = "../../../../../";
var useModuleDirectories = false;
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../index.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses.html">All Classes</a></li>
</ul>
<ul class="navListSearch">
<li><label for="search">SEARCH:</label>
<input type="text" id="search" value="search" disabled="disabled">
<input type="reset" id="reset" value="reset" disabled="disabled">
</li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a id="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding"> </div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
</nav>
</header>
<!-- ======== START OF CLASS DATA ======== -->
<main role="main">
<div class="header">
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">com.google.android.exoplayer2.extractor</a></div>
<h2 title="Class ExtractorUtil" class="title">Class ExtractorUtil</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="https://developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" class="externalLink" target="_top">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>com.google.android.exoplayer2.extractor.ExtractorUtil</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<pre>public final class <span class="typeNameLabel">ExtractorUtil</span>
extends <a href="https://developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" class="externalLink" target="_top">Object</a></pre>
<div class="block">Extractor related utility methods.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Method</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#checkContainerInput(boolean,java.lang.String)">checkContainerInput</a></span>​(boolean expression,
<a href="https://developer.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="externalLink" target="_top">String</a> message)</code></th>
<td class="colLast">
<div class="block">If <code>expression</code> is false, throws a <a href="../ParserException.html#createForMalformedContainer(java.lang.String,java.lang.Throwable)"><code>container malformed ParserException</code></a> with the given message.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#peekFullyQuietly(com.google.android.exoplayer2.extractor.ExtractorInput,byte%5B%5D,int,int,boolean)">peekFullyQuietly</a></span>​(<a href="ExtractorInput.html" title="interface in com.google.android.exoplayer2.extractor">ExtractorInput</a> input,
byte[] output,
int offset,
int length,
boolean allowEndOfInput)</code></th>
<td class="colLast">
<div class="block">Peeks data from <code>input</code>, respecting <code>allowEndOfInput</code>.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#peekToLength(com.google.android.exoplayer2.extractor.ExtractorInput,byte%5B%5D,int,int)">peekToLength</a></span>​(<a href="ExtractorInput.html" title="interface in com.google.android.exoplayer2.extractor">ExtractorInput</a> input,
byte[] target,
int offset,
int length)</code></th>
<td class="colLast">
<div class="block">Peeks <code>length</code> bytes from the input peek position, or all the bytes to the end of the
input if there was less than <code>length</code> bytes left.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>static boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#readFullyQuietly(com.google.android.exoplayer2.extractor.ExtractorInput,byte%5B%5D,int,int)">readFullyQuietly</a></span>​(<a href="ExtractorInput.html" title="interface in com.google.android.exoplayer2.extractor">ExtractorInput</a> input,
byte[] output,
int offset,
int length)</code></th>
<td class="colLast">
<div class="block">Equivalent to <a href="ExtractorInput.html#readFully(byte%5B%5D,int,int)"><code>ExtractorInput.readFully(byte[], int, int)</code></a> except that it returns <code>
false</code> instead of throwing an <a href="https://developer.android.com/reference/java/io/EOFException.html" title="class or interface in java.io" class="externalLink" target="_top"><code>EOFException</code></a> if the end of input is encountered without
having fully satisfied the read.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>static boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#skipFullyQuietly(com.google.android.exoplayer2.extractor.ExtractorInput,int)">skipFullyQuietly</a></span>​(<a href="ExtractorInput.html" title="interface in com.google.android.exoplayer2.extractor">ExtractorInput</a> input,
int length)</code></th>
<td class="colLast">
<div class="block">Equivalent to <a href="ExtractorInput.html#skipFully(int)"><code>ExtractorInput.skipFully(int)</code></a> except that it returns <code>false</code>
instead of throwing an <a href="https://developer.android.com/reference/java/io/EOFException.html" title="class or interface in java.io" class="externalLink" target="_top"><code>EOFException</code></a> if the end of input is encountered without having
fully satisfied the skip.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.<a href="https://developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" class="externalLink" target="_top">Object</a></h3>
<code><a href="https://developer.android.com/reference/java/lang/Object.html#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink" target="_top">wait</a></code></li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a id="checkContainerInput(boolean,java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>checkContainerInput</h4>
<pre class="methodSignature">@Pure
public static void checkContainerInput​(boolean expression,
@Nullable
<a href="https://developer.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="externalLink" target="_top">String</a> message)
throws <a href="../ParserException.html" title="class in com.google.android.exoplayer2">ParserException</a></pre>
<div class="block">If <code>expression</code> is false, throws a <a href="../ParserException.html#createForMalformedContainer(java.lang.String,java.lang.Throwable)"><code>container malformed ParserException</code></a> with the given message. Otherwise, does nothing.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../ParserException.html" title="class in com.google.android.exoplayer2">ParserException</a></code></dd>
</dl>
</li>
</ul>
<a id="peekToLength(com.google.android.exoplayer2.extractor.ExtractorInput,byte[],int,int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>peekToLength</h4>
<pre class="methodSignature">public static int peekToLength​(<a href="ExtractorInput.html" title="interface in com.google.android.exoplayer2.extractor">ExtractorInput</a> input,
byte[] target,
int offset,
int length)
throws <a href="https://developer.android.com/reference/java/io/IOException.html" title="class or interface in java.io" class="externalLink" target="_top">IOException</a></pre>
<div class="block">Peeks <code>length</code> bytes from the input peek position, or all the bytes to the end of the
input if there was less than <code>length</code> bytes left.
<p>If an exception is thrown, there is no guarantee on the peek position.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>input</code> - The stream input to peek the data from.</dd>
<dd><code>target</code> - A target array into which data should be written.</dd>
<dd><code>offset</code> - The offset into the target array at which to write.</dd>
<dd><code>length</code> - The maximum number of bytes to peek from the input.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The number of bytes peeked.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://developer.android.com/reference/java/io/IOException.html" title="class or interface in java.io" class="externalLink" target="_top">IOException</a></code> - If an error occurs peeking from the input.</dd>
</dl>
</li>
</ul>
<a id="readFullyQuietly(com.google.android.exoplayer2.extractor.ExtractorInput,byte[],int,int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>readFullyQuietly</h4>
<pre class="methodSignature">public static boolean readFullyQuietly​(<a href="ExtractorInput.html" title="interface in com.google.android.exoplayer2.extractor">ExtractorInput</a> input,
byte[] output,
int offset,
int length)
throws <a href="https://developer.android.com/reference/java/io/IOException.html" title="class or interface in java.io" class="externalLink" target="_top">IOException</a></pre>
<div class="block">Equivalent to <a href="ExtractorInput.html#readFully(byte%5B%5D,int,int)"><code>ExtractorInput.readFully(byte[], int, int)</code></a> except that it returns <code>
false</code> instead of throwing an <a href="https://developer.android.com/reference/java/io/EOFException.html" title="class or interface in java.io" class="externalLink" target="_top"><code>EOFException</code></a> if the end of input is encountered without
having fully satisfied the read.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://developer.android.com/reference/java/io/IOException.html" title="class or interface in java.io" class="externalLink" target="_top">IOException</a></code></dd>
</dl>
</li>
</ul>
<a id="skipFullyQuietly(com.google.android.exoplayer2.extractor.ExtractorInput,int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>skipFullyQuietly</h4>
<pre class="methodSignature">public static boolean skipFullyQuietly​(<a href="ExtractorInput.html" title="interface in com.google.android.exoplayer2.extractor">ExtractorInput</a> input,
int length)
throws <a href="https://developer.android.com/reference/java/io/IOException.html" title="class or interface in java.io" class="externalLink" target="_top">IOException</a></pre>
<div class="block">Equivalent to <a href="ExtractorInput.html#skipFully(int)"><code>ExtractorInput.skipFully(int)</code></a> except that it returns <code>false</code>
instead of throwing an <a href="https://developer.android.com/reference/java/io/EOFException.html" title="class or interface in java.io" class="externalLink" target="_top"><code>EOFException</code></a> if the end of input is encountered without having
fully satisfied the skip.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://developer.android.com/reference/java/io/IOException.html" title="class or interface in java.io" class="externalLink" target="_top">IOException</a></code></dd>
</dl>
</li>
</ul>
<a id="peekFullyQuietly(com.google.android.exoplayer2.extractor.ExtractorInput,byte[],int,int,boolean)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>peekFullyQuietly</h4>
<pre class="methodSignature">public static boolean peekFullyQuietly​(<a href="ExtractorInput.html" title="interface in com.google.android.exoplayer2.extractor">ExtractorInput</a> input,
byte[] output,
int offset,
int length,
boolean allowEndOfInput)
throws <a href="https://developer.android.com/reference/java/io/IOException.html" title="class or interface in java.io" class="externalLink" target="_top">IOException</a></pre>
<div class="block">Peeks data from <code>input</code>, respecting <code>allowEndOfInput</code>. Returns true if the peek is
successful.
<p>If <code>allowEndOfInput=false</code> then encountering the end of the input (whether before or
after reading some data) will throw <a href="https://developer.android.com/reference/java/io/EOFException.html" title="class or interface in java.io" class="externalLink" target="_top"><code>EOFException</code></a>.
<p>If <code>allowEndOfInput=true</code> then encountering the end of the input (even after reading
some data) will return <code>false</code>.
<p>This is slightly different to the behaviour of <a href="ExtractorInput.html#peekFully(byte%5B%5D,int,int,boolean)"><code>ExtractorInput.peekFully(byte[], int,
int, boolean)</code></a>, where <code>allowEndOfInput=true</code> only returns false (and suppresses the
exception) if the end of the input is reached before reading any data.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://developer.android.com/reference/java/io/IOException.html" title="class or interface in java.io" class="externalLink" target="_top">IOException</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
</div>
</main>
<!-- ========= END OF CLASS DATA ========= -->
<footer role="contentinfo">
<nav role="navigation">
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a id="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../index.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a id="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</nav>
</footer>
</body>
</html>
| HTML | 5 | ITS-TVS/ExoPlayer | docs/doc/reference/com/google/android/exoplayer2/extractor/ExtractorUtil.html | [
"Apache-2.0"
] |
sleep 1
t app appmode photo
sleep 480
t app button shutter PR
reboot yes
| AGS Script | 1 | waltersgrey/autoexechack | MegaLapse/8MinInterval/autoexec.ash | [
"MIT"
] |
<div style="background-color: black; color: blue">
<h1>Page 1 {{ greet "iris developer"}}</h1>
{{ render "partials/page1_partial1.html" }}
</div>
| HTML | 3 | mkosakana/iris | _examples/view/template_html_2/templates/page1.html | [
"BSD-3-Clause"
] |
exports.sourceNodes = ({ actions, createContentDigest }) => {
const node = {
id: `parent_parentAdditionForTransformer`,
internal: {
type: `Parent_ParentAdditionForTransformer`,
},
foo: `bar`,
}
node.internal.contentDigest = createContentDigest(node)
actions.createNode(node)
}
| JavaScript | 3 | nicholascapo/gatsby | integration-tests/cache-resilience/plugins/source-and-transformers-child-nodes/source-added/gatsby-source/gatsby-node-1.js | [
"MIT"
] |
<?php
# CRLF/EOL
define('EOL', "\r\n");
# Header
echo 'Last update : ' . date('r', time()) . ' (refresh rate : ' . $_ini->get('refresh_rate') . ' sec)' . EOL . EOL;
# Table header
echo '<strong>' . sprintf('%-36s', 'NAME') . sprintf('%10s', 'SIZE') . sprintf('%7s', '%MEM') . sprintf('%8s', 'TIME') .
sprintf('%6s', 'CONN') . sprintf('%7s', '%HIT') . sprintf('%8s', 'REQ/s') . sprintf('%8s', 'GET/s') . sprintf('%8s', 'SET/s') .
sprintf('%8s', 'DEL/s') . sprintf('%8s', 'EVI/s') . sprintf('%11s', 'READ/s') . sprintf('%10s', 'WRITE/s') . '</strong>' . EOL . '<hr>';
# Showing stats for every server
foreach($stats as $server => $data)
{
# Server name
echo sprintf('%-36.36s', $server);
# Checking for stats validity
if((isset($data['time'], $data['bytes_percent'], $data['get_hits_percent'], $data['query_time'], $data['request_rate'], $data['curr_connections'],
$data['get_rate'], $data['set_rate'], $data['delete_rate'], $data['eviction_rate'], $data['bytes_read'], $data['bytes_written'])) && ($data['time'] > 0))
{
# Total Memory
echo sprintf('%10s', Library_Data_Analysis::byteResize($data['limit_maxbytes']) . 'b');
# Memory Occupation / Alert State
if($data['bytes_percent'] > $_ini->get('memory_alert'))
{
echo str_pad('', 7 - strlen($data['bytes_percent']), ' ') . '<span class="red">' . sprintf('%.1f', $data['bytes_percent']) . '</span>';
}
else
{
echo sprintf('%7.1f', $data['bytes_percent']);
}
# Query Time
echo sprintf('%5.0f', Library_Data_Analysis::valueResize($data['query_time'])) . ' ms';
# Current connection
echo sprintf('%6s', $data['curr_connections']);
# Hit percent (get)
if($data['get_hits_percent'] < $_ini->get('hit_rate_alert'))
{
echo str_pad('', 7 - strlen($data['get_hits_percent']), ' ') . '<span class="red">' . sprintf('%.1f', $data['get_hits_percent']) . '</span>';
}
else
{
echo sprintf('%7.1f', $data['get_hits_percent']);
}
# Request rate
echo sprintf('%8s', Library_Data_Analysis::valueResize($data['request_rate']));
# Get rate
echo sprintf('%8s', Library_Data_Analysis::valueResize($data['get_rate']));
# Set rate
echo sprintf('%8s', Library_Data_Analysis::valueResize($data['set_rate']));
# Delete rate
echo sprintf('%8s', Library_Data_Analysis::valueResize($data['delete_rate']));
# Eviction rate
if($data['eviction_rate'] > $_ini->get('eviction_alert'))
{
echo str_pad('', 8 - strlen(Library_Data_Analysis::valueResize($data['eviction_rate'])), ' ') . '<span class="red">' . Library_Data_Analysis::valueResize($data['eviction_rate']) . '</span>';
}
else
{
echo sprintf('%8s', Library_Data_Analysis::valueResize($data['eviction_rate']));
}
# Bytes read
echo sprintf('%11s', Library_Data_Analysis::byteResize($data['bytes_read'] / $data['time']) . 'b');
# Bytes written
echo sprintf('%10s', Library_Data_Analysis::byteResize($data['bytes_written'] / $data['time']) . 'b');
}
else
{
echo str_pad('', 20, ' ') . '<span class="alert">An error has occured when retreiving or calculating stats</span>';
}
# End of Line
echo EOL . '<hr>';
} | HTML+PHP | 5 | axelVO/tourComperator | .devilbox/www/htdocs/vendor/phpmemcachedadmin-1.3.0/View/LiveStats/Stats.phtml | [
"MIT"
] |
"""Tests for the rmvtransport component."""
| Python | 0 | domwillcode/home-assistant | tests/components/rmvtransport/__init__.py | [
"Apache-2.0"
] |
/*
* Copyright 2002-2020 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
*
* https://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.springframework.test.web.servlet.result
import org.hamcrest.Matcher
import org.springframework.test.web.servlet.ResultActions
/**
* Provide a [JsonPathResultMatchers] Kotlin DSL in order to be able to write idiomatic Kotlin code.
*
* @author Sebastien Deleuze
* @since 5.3
*/
@Suppress("UsePropertyAccessSyntax")
class JsonPathResultMatchersDsl internal constructor(@PublishedApi internal val actions: ResultActions, expression: String, vararg args: Any?) {
@PublishedApi
internal val matchers = MockMvcResultMatchers.jsonPath(expression, args)
/**
* @see JsonPathResultMatchers.prefix
*/
fun prefix(prefix: String) {
matchers.prefix(prefix)
}
/**
* @see JsonPathResultMatchers.value
*/
inline fun <reified T> value(matcher: Matcher<T>) {
actions.andExpect(matchers.value(matcher, T::class.java))
}
/**
* @see JsonPathResultMatchers.value
*/
fun value(expectedValue: Any?) {
actions.andExpect(matchers.value(expectedValue))
}
/**
* @see JsonPathResultMatchers.exists
*/
fun exists() {
actions.andExpect(matchers.exists())
}
/**
* @see JsonPathResultMatchers.doesNotExist
*/
fun doesNotExist() {
actions.andExpect(matchers.doesNotExist())
}
/**
* @see JsonPathResultMatchers.isEmpty
*/
fun isEmpty() {
actions.andExpect(matchers.isEmpty())
}
/**
* @see JsonPathResultMatchers.isNotEmpty
*/
fun isNotEmpty() {
actions.andExpect(matchers.isNotEmpty())
}
/**
* @see JsonPathResultMatchers.hasJsonPath
*/
fun hasJsonPath() {
actions.andExpect(matchers.hasJsonPath())
}
/**
* @see JsonPathResultMatchers.doesNotHaveJsonPath
*/
fun doesNotHaveJsonPath() {
actions.andExpect(matchers.doesNotHaveJsonPath())
}
/**
* @see JsonPathResultMatchers.isString
*/
fun isString() {
actions.andExpect(matchers.isString())
}
/**
* @see JsonPathResultMatchers.isBoolean
*/
fun isBoolean() {
actions.andExpect(matchers.isBoolean())
}
/**
* @see JsonPathResultMatchers.isNumber
*/
fun isNumber() {
actions.andExpect(matchers.isNumber())
}
/**
* @see JsonPathResultMatchers.isArray
*/
fun isArray() {
actions.andExpect(matchers.isArray())
}
/**
* @see JsonPathResultMatchers.isMap
*/
fun isMap() {
actions.andExpect(matchers.isMap())
}
}
| Kotlin | 5 | spreoW/spring-framework | spring-test/src/main/kotlin/org/springframework/test/web/servlet/result/JsonPathResultMatchersDsl.kt | [
"Apache-2.0"
] |
(* -*- sml-lex -*-
* ml.lex
* Copyright 1989 by AT&T Bell Laboratories
*)
type svalue = Tokens.svalue
type ('a,'b) token = ('a,'b) Tokens.token
type pos = {fileName:string, line:int, col:int}
type lexresult = (svalue,pos) Tokens.token
type arg = {
columns : int ref,
space : string ref,
newline : string ref,
guardLeft : string ref,
guardRight : string ref,
maxDepthOfGuards : int option ref,
maxWidthOfGuards : int option ref,
cutOverTail : bool ref,
comLevel : int ref,
doFirstLinePrompt : bool ref,
error : (string * pos * pos) -> unit,
fileName:string,
linePos:int ref (* file position at the last nl *),
ln:int ref, (* current line number *)
promptMode:bool,
stream:TextIO.instream,
stringBuf:string list ref,
stringStart:pos ref,
stringType:bool ref,
verbose : bool ref
}
fun currentPos (p,n,arg:arg) = {fileName = #fileName arg,line = !(#ln arg), col=p - !(#linePos arg) + n}
fun left (p,arg) = currentPos(p,0,arg)
fun right (p,s,arg) = currentPos(p,s,arg)
fun addString (buf,s) = buf := s::(!buf)
fun addChar (buf,s) = buf := Char.toString s::(!buf)
fun makeString (buf) = concat (rev (!buf)) before buf := nil
val eof = fn s => Tokens.EOF (left(0,s),right(0,0,s))
local
fun cvt radix (s, i) =
#1(valOf(Int.scan radix Substring.getc (Substring.triml i (Substring.full s))))
in
val atoi = cvt StringCvt.DEC
val xtoi = cvt StringCvt.HEX
end (* local *)
fun inc (ri as ref i) = (ri := i+1)
fun dec (ri as ref i) = (ri := i-1)
%%
%reject
%s A FC S F Q AQ L LL LLC LLCQ;
%header (functor FormatExpressionLexFun(structure Tokens : FormatExpression_TOKENS));
%arg (args as
{
columns,
space,
newline,
guardLeft,
guardRight,
maxDepthOfGuards,
maxWidthOfGuards,
cutOverTail,
comLevel,
doFirstLinePrompt,
error,
fileName,
linePos,
ln,
promptMode,
stream,
stringBuf,
stringStart,
stringType,
verbose
} :
{
columns : int ref,
space : string ref,
newline : string ref,
guardLeft : string ref,
guardRight : string ref,
maxDepthOfGuards : int option ref,
maxWidthOfGuards : int option ref,
cutOverTail : bool ref,
comLevel : int ref,
doFirstLinePrompt : bool ref,
error :
(string * {fileName:string, line:int, col:int} * {fileName:string, line:int, col:int}) -> unit,
fileName:string,
linePos:int ref (* file position at the last nl *),
ln:int ref, (* current line number *)
promptMode:bool,
stream:TextIO.instream,
stringBuf:string list ref,
stringStart:{fileName:string, line:int, col:int} ref,
stringType:bool ref,
verbose : bool ref
});
idchars=[A-Za-z'_0-9];
id=[A-Za-z]{idchars}*;
ws=("\012"|[\t\ ])*;
nrws=("\012"|[\t\ ])+;
eol=("\013\010"|"\010"|"\013");
some_sym=[!%&$+/:<=>?@~|#*]|\-|\^;
sym={some_sym}|"\\";
quote="`";
full_sym={sym}|{quote};
num=[0-9]+;
frac="."{num};
exp=[eE](~?){num};
real=(~?)(({num}{frac}?{exp})|({num}{frac}{exp}?));
hexnum=[0-9a-fA-F]+;
%%
<INITIAL>{eol} => (ln := !ln + 1; linePos := yypos; continue());
<INITIAL>exit => (Tokens.EXIT(left(yypos,args), right(yypos,size yytext,args)));
<INITIAL>print => (Tokens.PRINT(left(yypos, args), right(yypos,size yytext,args)));
<INITIAL>set => (Tokens.SET(left(yypos, args), right(yypos,size yytext,args)));
<INITIAL>use => (Tokens.USE(left(yypos, args), right(yypos,size yytext,args)));
<INITIAL>\" => (stringBuf := [""]; stringStart := left(yypos,args);
stringType := true; YYBEGIN S; continue());
<INITIAL>"\\n" => (Tokens.NEWLINE(left(yypos, args), right(yypos,size yytext,args)));
<INITIAL>("~")?{num}"[" => (Tokens.STARTOFINDENT(atoi(yytext, 0), left(yypos,args), right(yypos,size yytext,args)));
<INITIAL>"+" => (Tokens.FORMATINDICATOR({space = true, newline = NONE}, left(yypos,args),right(yypos,size yytext,args)));
<INITIAL>"+"?("d"|{num}) =>
(let
val space = String.sub (yytext, 0) = #"+"
val priorityText =
if space then String.extract (yytext, 1, NONE) else yytext
val priority =
if priorityText = "d"
then SMLFormat.FormatExpression.Deferred
else SMLFormat.FormatExpression.Preferred (atoi(priorityText, 0))
val indicatorArg =
{space = space, newline = SOME{priority = priority}}
in
Tokens.FORMATINDICATOR
(indicatorArg, left(yypos,args), right(yypos,size yytext, args))
end);
<INITIAL>"!"?[LRN]("~")?{num} =>
(let
val (cut, directionCharPos, numStartPos) =
if #"!" = String.sub (yytext, 0)
then (true, 1, 2)
else (false, 0, 1)
val direction =
case String.sub (yytext, directionCharPos)
of #"L" => SMLFormat.FormatExpression.Left
| #"R" => SMLFormat.FormatExpression.Right
| #"N" => SMLFormat.FormatExpression.Neutral
val strength = atoi (yytext, numStartPos)
in
Tokens.ASSOCINDICATOR
({
cut = cut,
direction = direction,
strength = strength
},
left(yypos,args),
right(yypos,size yytext,args))
end);
<INITIAL>";" => (Tokens.SEMICOLON(left(yypos,args),right(yypos,size yytext,args)));
<INITIAL>"{" => (Tokens.LBRACE(left(yypos,args),right(yypos,1,args)));
<INITIAL>"}" => (Tokens.RBRACE(left(yypos,args),right(yypos,1,args)));
<INITIAL>"]" => (Tokens.RBRACKET(left(yypos,args),right(yypos,1,args)));
<INITIAL>{id} => (Tokens.ID(yytext,left(yypos,args),right(yypos,size yytext,args)));
<INITIAL>{ws} => (continue());
<INITIAL>. => (error
("ml lexer: bad character:"^yytext,
left(yypos, args), right(yypos,1,args))
;
continue());
<INITIAL>"(*" => (YYBEGIN A; comLevel := 1; continue());
<A>"(*" => (comLevel := !comLevel + 1; continue());
<A>"*)" => (comLevel := !comLevel - 1; if !comLevel=0 then YYBEGIN INITIAL else (); continue());
<A>. => (continue());
<S>\" => (let val s = makeString stringBuf
val s = if size s <> 1 andalso not(!stringType)
then (error
("character constant not length 1",
left(yypos, args), right(yypos,1,args));
substring(s^"x",0,1))
else s
val t = (s,!stringStart,right(yypos,1,args))
in YYBEGIN INITIAL;
Tokens.STRING t
end);
<S>{eol} => (error ("unclosed string",left(yypos,args),right(yypos,1,args));
YYBEGIN INITIAL;
Tokens.STRING(makeString stringBuf,!stringStart,right(yypos,1,args)));
<S>\\{eol} => (ln := !ln + 1;
linePos := yypos;
error ("unclosed string", left(yypos,args),right(yypos,1,args));
continue());
<S>\\{ws} => (error ("unclosed string",left(yypos,args),right(yypos,1,args));
continue());
<S>\\a => (addString(stringBuf, "\007"); continue());
<S>\\b => (addString(stringBuf, "\008"); continue());
<S>\\f => (addString(stringBuf, "\012"); continue());
<S>\\n => (addString(stringBuf, "\010"); continue());
<S>\\r => (addString(stringBuf, "\013"); continue());
<S>\\t => (addString(stringBuf, "\009"); continue());
<S>\\v => (addString(stringBuf, "\011"); continue());
<S>\\\\ => (addString(stringBuf, "\\"); continue());
<S>\\\" => (addString(stringBuf, "\""); continue());
<S>\\\^[@-_] => (addChar(stringBuf,
Char.chr(Char.ord(String.sub(yytext,2))-Char.ord #"@"));
continue());
<S>\\\^. =>
(error ("illegal control escape; must be one of \
\@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", left(yypos,args),right(yypos,2,args));
continue());
<S>\\[0-9]{3} =>
(let val x = Char.ord(String.sub(yytext,1))*100
+Char.ord(String.sub(yytext,2))*10
+Char.ord(String.sub(yytext,3))
-((Char.ord #"0")*111)
in (if x>255
then error ("illegal ascii escape",left(yypos,args),right(yypos,1,args))
else addChar(stringBuf, Char.chr x);
continue())
end);
<S>\\ => (error ("illegal string escape",left(yypos,args),right(yypos,1,args));
continue());
<S>[\000-\031] =>
(error ("illegal non-printing character in string",left(yypos,args),right(yypos,1,args));
continue());
<S>({idchars}|{some_sym}|\[|\]|\(|\)|{quote}|[,.;^{}])+|. => (addString(stringBuf,yytext); continue());
| Lex | 4 | plveir/smlsharp | src/smlformat/example/FormatExpressionParser/Lexer.lex | [
"MIT"
] |
mutation RemoveTeamMember($userUid: ID!, $teamID: ID!) {
removeTeamMember(userUid: $userUid, teamID: $teamID)
} | GraphQL | 3 | miily8310s/hoppscotch | packages/hoppscotch-app/helpers/backend/gql/mutations/RemoveTeamMember.graphql | [
"MIT"
] |
workspace "guetzli"
configurations { "Release", "Debug" }
language "C++"
flags { "C++11" }
includedirs { ".", "third_party/butteraugli" }
filter "action:vs*"
platforms { "x86_64", "x86" }
filter "platforms:x86"
architecture "x86"
filter "platforms:x86_64"
architecture "x86_64"
-- workaround for #41
filter "action:gmake"
symbols "On"
filter "configurations:Debug"
symbols "On"
filter "configurations:Release"
optimize "Full"
filter {}
project "guetzli_static"
kind "StaticLib"
files
{
"guetzli/*.cc",
"guetzli/*.h",
"third_party/butteraugli/butteraugli/butteraugli.cc",
"third_party/butteraugli/butteraugli/butteraugli.h"
}
removefiles "guetzli/guetzli.cc"
filter "action:gmake"
linkoptions { "`pkg-config --static --libs libpng || libpng-config --static --ldflags`" }
buildoptions { "`pkg-config --static --cflags libpng || libpng-config --static --cflags`" }
project "guetzli"
kind "ConsoleApp"
filter "action:gmake"
linkoptions { "`pkg-config --libs libpng || libpng-config --ldflags`" }
buildoptions { "`pkg-config --cflags libpng || libpng-config --cflags`" }
filter "action:vs*"
links { "shlwapi" }
filter {}
files
{
"guetzli/*.cc",
"guetzli/*.h",
"third_party/butteraugli/butteraugli/butteraugli.cc",
"third_party/butteraugli/butteraugli/butteraugli.h"
}
| Lua | 4 | navieSimple/guetzli | premake5.lua | [
"Apache-2.0"
] |
; inherits: json
(comment) @ignore
| Scheme | 0 | hmac/nvim-treesitter | queries/jsonc/indents.scm | [
"Apache-2.0"
] |
let path-name = (if ((sys).host.name == "Windows") { "Path" } { "PATH" })
let-env $path-name = $nu.env.VENV_OLD_PATH
unlet-env VIRTUAL_ENV
unlet-env VENV_OLD_PATH
| Nu | 3 | lily-mara/nu_scripts | virtual_environments/venv_deactivate.nu | [
"MIT"
] |
/* @(#)bootparam_prot.x 2.1 88/08/01 4.0 RPCSRC */
/*
* Copyright (c) 2010, Oracle America, Inc.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
* * Neither the name of the "Oracle America, Inc." nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* RPC for bootparms service.
* There are two procedures:
* WHOAMI takes a net address and returns a client name and also a
* likely net address for routing
* GETFILE takes a client name and file identifier and returns the
* server name, server net address and pathname for the file.
* file identifiers typically include root, swap, pub and dump
*/
#ifdef RPC_HDR
%#include <rpc/types.h>
%#include <sys/time.h>
%#include <sys/errno.h>
%#include <nfs/nfs.h>
#endif
const MAX_MACHINE_NAME = 255;
const MAX_PATH_LEN = 1024;
const MAX_FILEID = 32;
const IP_ADDR_TYPE = 1;
typedef string bp_machine_name_t<MAX_MACHINE_NAME>;
typedef string bp_path_t<MAX_PATH_LEN>;
typedef string bp_fileid_t<MAX_FILEID>;
struct ip_addr_t {
char net;
char host;
char lh;
char impno;
};
union bp_address switch (int address_type) {
case IP_ADDR_TYPE:
ip_addr_t ip_addr;
};
struct bp_whoami_arg {
bp_address client_address;
};
struct bp_whoami_res {
bp_machine_name_t client_name;
bp_machine_name_t domain_name;
bp_address router_address;
};
struct bp_getfile_arg {
bp_machine_name_t client_name;
bp_fileid_t file_id;
};
struct bp_getfile_res {
bp_machine_name_t server_name;
bp_address server_address;
bp_path_t server_path;
};
program BOOTPARAMPROG {
version BOOTPARAMVERS {
bp_whoami_res BOOTPARAMPROC_WHOAMI(bp_whoami_arg) = 1;
bp_getfile_res BOOTPARAMPROC_GETFILE(bp_getfile_arg) = 2;
} = 1;
} = 100026;
| Logos | 4 | best008/BC_ARMGCC_NUC97X | armgcc/arm-none-linux-gnueabi/libc/usr/include/rpcsvc/bootparam_prot.x | [
"MIT"
] |
/* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/c/experimental/saved_model/core/ops/restore_ops.h"
#include "tensorflow/c/eager/abstract_tensor_handle.h"
#include "tensorflow/c/eager/immediate_execution_context.h"
#include "tensorflow/c/eager/immediate_execution_operation.h"
#include "tensorflow/c/eager/immediate_execution_tensor_handle.h"
#include "tensorflow/c/tensor_interface.h"
#include "tensorflow/core/framework/tensor.h"
#include "tensorflow/core/framework/types.pb.h"
#include "tensorflow/core/lib/llvm_rtti/llvm_rtti.h"
#include "tensorflow/core/platform/errors.h"
#include "tensorflow/core/platform/types.h"
namespace tensorflow {
namespace internal {
namespace {
// Creates a scalar string tensorhandle containing a single string `s`
Status CreateStringScalarTensorHandle(ImmediateExecutionContext* ctx,
const std::string& s,
ImmediateTensorHandlePtr* out) {
AbstractTensorPtr tensor(ctx->CreateStringScalar(s));
if (tensor.get() == nullptr) {
return errors::Internal(
"Failed to create scalar string tensor for checkpoint restore");
}
out->reset(ctx->CreateLocalHandle(tensor.get()));
return Status();
}
// Creates a Rank 1 string tensorhandle containing a single string `s`
Status CreateStringVectorTensorHandle(ImmediateExecutionContext* ctx,
const std::string& s,
ImmediateTensorHandlePtr* out) {
int64_t flat_shape[] = {1};
AbstractTensorPtr tensor(ctx->CreateTensor(DT_STRING, flat_shape));
if (tensor.get() == nullptr) {
return errors::Internal(
"Failed to create vector string tensor for checkpoint restore");
}
// Use placement new to construct the string, since we don't have
// access to Tensor::flat. This is conceptually equivalent to:
// tensor.flat<tstring>()(0) = s
new (tensor->Data()) tstring(s);
out->reset(ctx->CreateLocalHandle(tensor.get()));
return Status();
}
} // namespace
Status SingleRestore(ImmediateExecutionContext* ctx, const std::string& prefix,
const std::string& checkpoint_key, DataType dtype,
ImmediateTensorHandlePtr* out) {
// Create the EagerOp
ImmediateOpPtr restore_op(ctx->CreateOperation());
TF_RETURN_IF_ERROR(restore_op->Reset("RestoreV2", "/cpu:0"));
TF_RETURN_IF_ERROR(restore_op->SetAttrTypeList("dtypes", &dtype, 1));
ImmediateTensorHandlePtr prefix_handle;
TF_RETURN_IF_ERROR(
CreateStringScalarTensorHandle(ctx, prefix, &prefix_handle));
ImmediateTensorHandlePtr names_handle;
TF_RETURN_IF_ERROR(
CreateStringVectorTensorHandle(ctx, checkpoint_key, &names_handle));
// Note that empty string is the slice spec used for a non-partitioned
// ResourceVariable:
// https://github.com/tensorflow/tensorflow/blob/06ff30f7ea35098cb68a231a9eb7ff3ff4be4e1e/tensorflow/python/training/saving/saveable_object_util.py#L194
ImmediateTensorHandlePtr shapes_and_slices_handle;
TF_RETURN_IF_ERROR(
CreateStringVectorTensorHandle(ctx, "", &shapes_and_slices_handle));
TF_RETURN_IF_ERROR(restore_op->AddInput(prefix_handle.get()));
TF_RETURN_IF_ERROR(restore_op->AddInput(names_handle.get()));
TF_RETURN_IF_ERROR(restore_op->AddInput(shapes_and_slices_handle.get()));
AbstractTensorHandle* restored_handle = nullptr;
int num_retvals = 1;
TF_RETURN_IF_ERROR(restore_op->Execute(
absl::MakeSpan(&restored_handle, num_retvals), &num_retvals));
AbstractTensorHandlePtr owned_restored_handle(restored_handle);
if (!tensorflow::isa<ImmediateExecutionTensorHandle>(
owned_restored_handle.get())) {
return errors::Internal("Unexpected tensor handle kind.");
}
out->reset(reinterpret_cast<ImmediateExecutionTensorHandle*>(
owned_restored_handle.release()));
return Status();
}
} // namespace internal
} // namespace tensorflow
| C++ | 5 | EricRemmerswaal/tensorflow | tensorflow/c/experimental/saved_model/core/ops/restore_ops.cc | [
"Apache-2.0"
] |
2016-03-08 11:21:44 skrzyp mind that OlaHughson is actually a guy, but tries to be a girl in teh interweb
2016-03-08 11:24:49 fsociety oh i know
2016-03-08 11:25:26 fsociety i use awkward gay advances to get reactions.. mainly cause i'm bored at work
2016-03-08 11:28:02 skrzyp I don't have problem with that
2016-03-08 11:28:04 skrzyp ;p
2016-03-08 11:28:17 fsociety haha sometimes i dont, but today is slow
2016-03-08 11:28:21 fsociety i work for a mainframe company
2016-03-08 11:28:27 fsociety its a quiet day, so its a good day
2016-03-08 11:28:27 fsociety ;)
2016-03-08 11:28:59 fsociety it means i dont have touch obscure unix machines.. the moment i have to sit down with aix the moment i pull my hair out
2016-03-08 11:29:06 skrzyp are you working with z/OS?
2016-03-08 11:29:31 fsociety yup
2016-03-08 11:29:50 fsociety we actually have an instance of z/os running in hercules. i know we shouldn't do it.. but fuck ibm
2016-03-08 11:30:01 skrzyp someone said me they never fire you if you know z/os
2016-03-08 11:30:22 fsociety pretty correct
2016-03-08 11:30:29 fsociety its so obscure and odd as an OS
2016-03-08 11:30:53 fsociety but very sought after as the industry refuses to train new recruits and its pretty complex as an OS
2016-03-08 11:30:58 fsociety not what you'd call end user friendly
2016-03-08 11:31:17 skrzyp I had account on z/OS mainframe
2016-03-08 11:31:24 skrzyp but I dropped it because I can't use it
2016-03-08 11:31:52 skrzyp but I have a large allowance for unusual OSes as I know AmigaOS, SpartaDOS and basics of VMS
2016-03-08 11:33:11 fsociety if you can learn z/OS do so.. guarantedd high paying job in the backend mainframe infastructure
2016-03-08 11:33:29 fsociety i only know its basics
2016-03-08 11:33:45 fsociety only of the assembly coders here at work showed me enough to navigate through it
2016-03-08 11:33:50 fsociety and hes pretty eccentric
2016-03-08 11:34:04 fsociety refuses to work past 3pm .. says his brain refuses to function after that
2016-03-08 11:34:10 fsociety has a ridiculously long white beard
2016-03-08 11:34:26 fsociety walks around with only one lense in his glasses
2016-03-08 11:36:38 skrzyp how can I get z/OS for education use?
2016-03-08 11:37:24 fsociety i could send it to you ;)
2016-03-08 11:37:32 fsociety otherwise it is impossible
2016-03-08 11:38:35 skrzyp isn't that protected?
2016-03-08 11:38:46 skrzyp I mean, you can send it to me, but I won't be able to install
2016-03-08 11:39:07 fsociety *cough* yes protected
2016-03-08 11:39:10 fsociety you need to install hercules
2016-03-08 11:39:17 fsociety and you can install it without an issue
2016-03-08 11:40:36 skrzyp I asked about some things like license protection
2016-03-08 11:40:47 skrzyp you know, I think it might ask me about serial number
2016-03-08 11:40:55 fsociety :)
2016-03-08 11:41:02 skrzyp is that possible?
2016-03-08 11:41:09 fsociety i can send you an installed instance which gets past that
2016-03-08 11:41:20 fsociety because hercules can immitate cpuids
2016-03-08 11:41:36 fsociety the thing is, the installed instance is 80gb
2016-03-08 11:41:38 fsociety so it might take a bitr
2016-03-08 11:41:41 skrzyp or "PLZ PUT YOUR DICK^WKEYDONGLE IN PORT 0 AND PRESS ANY KEY WHEN READY"
2016-03-08 11:41:42 fsociety i can't type today
2016-03-08 11:41:53 fsociety hahaha..
2016-03-08 11:42:04 fsociety that would be an amusing copy protection scheme though
2016-03-08 11:42:13 fsociety "WHAT DO U THINK A DONGLE IS.. PUT IT IN THERE"
2016-03-08 11:42:14 fsociety lol
2016-03-08 11:42:21 skrzyp like CUBASE did on ST/TT
2016-03-08 11:42:41 fsociety CUBASE still do that
2016-03-08 11:43:01 fsociety they never stopped that protection scheme
2016-03-08 11:44:11 skrzyp do you know Calamus is still developed on ST/Falcon?
2016-03-08 11:45:18 fsociety really
2016-03-08 11:45:21 fsociety i need to check this out
2016-03-08 11:46:11 skrzyp it's still proprietary, but loonks like old cracks still work
2016-03-08 11:47:48 fsociety haha.. i can't believe its still being developed
2016-03-08 11:47:57 fsociety how many ppl still use this application
2016-03-08 11:48:23 skrzyp protip: many more than you can expect to
2016-03-08 11:49:03 fsociety at least its something that isn't microsoft or adobe i guess
2016-03-08 11:49:43 skrzyp that guy with f060 and hades still uses it
2016-03-08 11:49:50 skrzyp he mainly uses f060 with MiNT for daily use
2016-03-08 11:50:10 skrzyp his PC is basically an crappy laptop with half gig of RAM and windows XP
2016-03-08 11:50:20 fsociety i can see the appeal
2016-03-08 11:50:22 fsociety i really can
2016-03-08 11:50:59 skrzyp there's another guy here who uses pentium4 with 512mb ram alongside atari xe and ste in the same time
2016-03-08 11:51:40 skrzyp but the problem is that second admits his machine has 3GHZ CPU AND CAN'T SHOW YOUTUBE WITHOUT HANGING HURR DURR
2016-03-08 11:52:08 skrzyp ( i repeat, it's single core pentium 4, oc'ed, still with half gig of ram, and firefox 44 )
2016-03-08 11:52:27 skrzyp ( and flash installed, youtube won't switch to html5 if you haven't disabled flash )
| IRC log | 0 | 0x4b1dN/2016-dots | misc/weechat/logs/irc.unixchat.skrzyp.weechatlog | [
"MIT"
] |
grammar t031emptyAlt;
options {
language = JavaScript;
}
r
: NAME
( {this.cond}?=> WS+ NAME
|
)
EOF
;
NAME: ('a'..'z') ('a'..'z' | '0'..'9')+;
NUMBER: ('0'..'9')+;
WS: ' '+;
| G-code | 4 | DanielMabadeje/Artificial-Intelligence-Deep-Learning-Machine-Learning-Tutorials | java/java2py/antlr-3.1.3/runtime/JavaScript/tests/functional/t031emptyAlt.g | [
"Apache-2.0"
] |
import macros
{.experimental: "callOperator".}
type Foo[T: proc] = object
callback: T
macro `()`(foo: Foo, args: varargs[untyped]): untyped =
result = newCall(newDotExpr(foo, ident"callback"))
for a in args:
result.add(a)
var f1Calls = 0
var f = Foo[proc()](callback: proc() = inc f1Calls)
doAssert f1Calls == 0
f()
doAssert f1Calls == 1
var f2Calls = 0
f.callback = proc() = inc f2Calls
doAssert f2Calls == 0
f()
doAssert f2Calls == 1
let g = Foo[proc (x: int): int](callback: proc (x: int): int = x * 2 + 1)
doAssert g(15) == 31
proc `()`(args: varargs[string]): string =
result = "("
for a in args: result.add(a)
result.add(')')
let a = "1"
let b = "2"
let c = "3"
doAssert a(b) == "(12)"
doAssert a.b(c) == `()`(b, a, c)
doAssert (a.b)(c) == `()`(a.b, c)
doAssert `()`(a.b, c) == `()`(`()`(b, a), c)
| Nimrod | 5 | JohnAD/Nim | tests/specialops/tcallops.nim | [
"MIT"
] |
/*
*
* Copyright 2015 gRPC authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include <grpc/support/port_platform.h>
#include "src/core/lib/iomgr/port.h"
#ifdef GRPC_POSIX_SOCKET_RESOLVE_ADDRESS
#include <string.h>
#include <sys/types.h>
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>
#include <grpc/support/string_util.h>
#include <grpc/support/time.h>
#include "src/core/lib/gpr/string.h"
#include "src/core/lib/gpr/useful.h"
#include "src/core/lib/gprpp/host_port.h"
#include "src/core/lib/gprpp/thd.h"
#include "src/core/lib/iomgr/block_annotate.h"
#include "src/core/lib/iomgr/executor.h"
#include "src/core/lib/iomgr/iomgr_internal.h"
#include "src/core/lib/iomgr/resolve_address.h"
#include "src/core/lib/iomgr/sockaddr.h"
#include "src/core/lib/iomgr/unix_sockets_posix.h"
static grpc_error_handle posix_blocking_resolve_address(
const char* name, const char* default_port,
grpc_resolved_addresses** addresses) {
grpc_core::ExecCtx exec_ctx;
struct addrinfo hints;
struct addrinfo *result = nullptr, *resp;
int s;
size_t i;
grpc_error_handle err;
std::string host;
std::string port;
/* parse name, splitting it into host and port parts */
grpc_core::SplitHostPort(name, &host, &port);
if (host.empty()) {
err = grpc_error_set_str(
GRPC_ERROR_CREATE_FROM_STATIC_STRING("unparseable host:port"),
GRPC_ERROR_STR_TARGET_ADDRESS, name);
goto done;
}
if (port.empty()) {
if (default_port == nullptr) {
err = grpc_error_set_str(
GRPC_ERROR_CREATE_FROM_STATIC_STRING("no port in name"),
GRPC_ERROR_STR_TARGET_ADDRESS, name);
goto done;
}
port = default_port;
}
/* Call getaddrinfo */
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_UNSPEC; /* ipv4 or ipv6 */
hints.ai_socktype = SOCK_STREAM; /* stream socket */
hints.ai_flags = AI_PASSIVE; /* for wildcard IP address */
GRPC_SCHEDULING_START_BLOCKING_REGION;
s = getaddrinfo(host.c_str(), port.c_str(), &hints, &result);
GRPC_SCHEDULING_END_BLOCKING_REGION;
if (s != 0) {
/* Retry if well-known service name is recognized */
const char* svc[][2] = {{"http", "80"}, {"https", "443"}};
for (i = 0; i < GPR_ARRAY_SIZE(svc); i++) {
if (port == svc[i][0]) {
GRPC_SCHEDULING_START_BLOCKING_REGION;
s = getaddrinfo(host.c_str(), svc[i][1], &hints, &result);
GRPC_SCHEDULING_END_BLOCKING_REGION;
break;
}
}
}
if (s != 0) {
err = grpc_error_set_str(
grpc_error_set_str(
grpc_error_set_str(
grpc_error_set_int(
GRPC_ERROR_CREATE_FROM_STATIC_STRING(gai_strerror(s)),
GRPC_ERROR_INT_ERRNO, s),
GRPC_ERROR_STR_OS_ERROR, gai_strerror(s)),
GRPC_ERROR_STR_SYSCALL, "getaddrinfo"),
GRPC_ERROR_STR_TARGET_ADDRESS, name);
goto done;
}
/* Success path: set addrs non-NULL, fill it in */
*addresses = static_cast<grpc_resolved_addresses*>(
gpr_malloc(sizeof(grpc_resolved_addresses)));
(*addresses)->naddrs = 0;
for (resp = result; resp != nullptr; resp = resp->ai_next) {
(*addresses)->naddrs++;
}
(*addresses)->addrs = static_cast<grpc_resolved_address*>(
gpr_malloc(sizeof(grpc_resolved_address) * (*addresses)->naddrs));
i = 0;
for (resp = result; resp != nullptr; resp = resp->ai_next) {
memcpy(&(*addresses)->addrs[i].addr, resp->ai_addr, resp->ai_addrlen);
(*addresses)->addrs[i].len = resp->ai_addrlen;
i++;
}
err = GRPC_ERROR_NONE;
done:
if (result) {
freeaddrinfo(result);
}
return err;
}
struct request {
char* name;
char* default_port;
grpc_closure* on_done;
grpc_resolved_addresses** addrs_out;
grpc_closure request_closure;
void* arg;
};
/* Callback to be passed to grpc Executor to asynch-ify
* grpc_blocking_resolve_address */
static void do_request_thread(void* rp, grpc_error_handle /*error*/) {
request* r = static_cast<request*>(rp);
grpc_core::ExecCtx::Run(
DEBUG_LOCATION, r->on_done,
grpc_blocking_resolve_address(r->name, r->default_port, r->addrs_out));
gpr_free(r->name);
gpr_free(r->default_port);
gpr_free(r);
}
static void posix_resolve_address(const char* name, const char* default_port,
grpc_pollset_set* /*interested_parties*/,
grpc_closure* on_done,
grpc_resolved_addresses** addrs) {
request* r = static_cast<request*>(gpr_malloc(sizeof(request)));
GRPC_CLOSURE_INIT(&r->request_closure, do_request_thread, r, nullptr);
r->name = gpr_strdup(name);
r->default_port = gpr_strdup(default_port);
r->on_done = on_done;
r->addrs_out = addrs;
grpc_core::Executor::Run(&r->request_closure, GRPC_ERROR_NONE,
grpc_core::ExecutorType::RESOLVER);
}
grpc_address_resolver_vtable grpc_posix_resolver_vtable = {
posix_resolve_address, posix_blocking_resolve_address};
#endif
| C++ | 5 | bostikforever/grpc | src/core/lib/iomgr/resolve_address_posix.cc | [
"Apache-2.0"
] |
# Copyright (c) 2018-2021, Carnegie Mellon University
# See LICENSE for details
#
# NB: Contents of this file should be moved to a directory local to the
# particular Spiral Extension
#
Class(f2DTr, Tr, rec(
advdomain := self >> [[self.params[2], self.params[1]]],
advrange := self >> [[self.params[1], self.params[2]]]
));
Class(f2DTrExplicitL, f2DTr);
Class(f2DTrExplicitR, f2DTr);
Class(f4DHalfFlip, PermClass, rec(
def := (a1,a2,b1,b2) -> rec(size := a1*a2*b1*b2),
lambda := self >> let(
a1 := self.params[1], a2 := self.params[2],
b1 := self.params[3], b2 := self.params[4],
fTensor(Tr(a1, a2), Tr(b1, b2)).lambda()
),
domain := self >> self.params[1] * self.params[2] * self.params[3] * self.params[4],
range := self >> self.params[1] * self.params[2] * self.params[3] * self.params[4],
dims := self >> [self.range(), self.domain()],
transpose := self >> Error("not supported"),
advdomain := self >> [[self.params[4], self.params[3], self.params[2], self.params[1]]],
advrange := self >> [[self.params[3], self.params[4], self.params[1], self.params[2]]]
));
Class(f4DMacroFlip, PermClass, rec(
def := (a1,a2,b1,b2) -> rec(size := a1*a2*b1*b2),
lambda := self >> let(
a1 := self.params[1], a2 := self.params[2],
b1 := self.params[3], b2 := self.params[4],
Tr(a1*a2, b1*b2).lambda()),
# i := Ind(a1*a2*b1*b2),
# k := a1*a2, str := b1*b2,
# Lambda(i, add(mul(b2, idiv(idiv(i, k), b2)), imod(idiv(i, k), b2))
# + str * add(mul(a2, idiv(imod(i, k), a2)), imod(imod(i, k), a2)))),
domain := self >> self.params[1] * self.params[2] * self.params[3] * self.params[4],
range := self >> self.params[1] * self.params[2] * self.params[3] * self.params[4],
dims := self >> [self.range(), self.domain()],
transpose := self >> Error("not supported"),
advdomain := self >> [[self.params[3], self.params[4], self.params[1], self.params[2]]],
advrange := self >> [[self.params[1], self.params[2], self.params[3], self.params[4]]]
));
Class(f4DFullFlip, PermClass, rec(
def := (a1,a2,b1,b2) -> rec(size := a1*a2*b1*b2),
lambda := self >> let(
a1 := self.params[1], a2 := self.params[2],
b1 := self.params[3], b2 := self.params[4],
i := Ind(a1*a2*b1*b2),
Lambda(i, imod(i,b2) * a1 * a2 * b1
+ imod(idiv(i,b2),b1)*a1*a2
+ imod(idiv(i, b2*b1),a2) * a1
+ imod(idiv(i, b2*b1*a2), a1))),
domain := self >> self.params[1] * self.params[2] * self.params[3] * self.params[4],
range := self >> self.params[1] * self.params[2] * self.params[3] * self.params[4],
dims := self >> [self.range(), self.domain()],
transpose := self >> Error("not supported"),
advdomain := self >> [[self.params[4], self.params[3], self.params[2], self.params[1]]],
advrange := self >> [[self.params[1], self.params[2], self.params[3], self.params[4]]]
));
#F
#F Multi-dimensional fTensor's for OL
#F
Class(f2DTensor, fTensor, rec(
advdomain := self >> [List(self._children, x->x.domain())],
advrange := self >> [List(self._children, x->x.range())]
));
Class(f4DTensor, fTensor, rec(
advdomain := self >> [List(self._children, x->x.domain())],
advrange := self >> [List(self._children, x->x.range())]
));
| GAP | 3 | sr7cb/spiral-software | namespaces/spiral/spl/ext_ol.gi | [
"BSD-2-Clause-FreeBSD"
] |
/
---
layout: false
title: This is the title commented
---
h1= current_page.data.title
| Slim | 3 | scaleupally/middleman | middleman-core/fixtures/frontmatter-app/source/front-matter-slim-commented.html.slim | [
"MIT"
] |
TDRawGatewayNode{#name:'projectComposition',#contents:'(TDComposedProjectEntryNode
pathComposedDirectoryNodeNamed: \'home\'
topez: self topez)
addPathNode: \'/sys/stone/projects\';
addPathNode: \'/sys/local/server/projects\';
addPathNode: \'/sys/default/server/projects\';
yourself'}
| STON | 2 | ahdach/GsDevKit_home | sys/default/server/templates/projectComposition.ston | [
"MIT"
] |
//@module: amd
// @Filename: propertyIdentityWithPrivacyMismatch_0.ts
declare module 'mod1' {
class Foo {
private n;
}
}
declare module 'mod2' {
class Foo {
private n;
}
}
// @Filename: propertyIdentityWithPrivacyMismatch_1.ts
///<reference path='propertyIdentityWithPrivacyMismatch_0.ts'/>
import m1 = require('mod1');
import m2 = require('mod2');
var x: m1.Foo;
var x: m2.Foo; // Should be error (mod1.Foo !== mod2.Foo)
class Foo1 {
private n;
}
class Foo2 {
private n;
}
var y: Foo1;
var y: Foo2; | TypeScript | 4 | nilamjadhav/TypeScript | tests/cases/compiler/propertyIdentityWithPrivacyMismatch.ts | [
"Apache-2.0"
] |
Red [
Title: "Program called by Red call tests"
Author: "Bruno Anselme & Peter W A Wood"
File: %called-test.red
Tabs: 4
Rights: "Copyright (C) 2014-2015 Bruno Anselme & Peter W A Wood. All rights reserved."
License: "BSD-3 - https://github.com/red/red/blob/origin/BSD-3-License.txt"
]
#include %../../../system/library/call/call.red
read-argument: routine [
/local
args [str-array!]
str [red-string!]
][
if system/args-count <> 2 [
SET_RETURN(none-value)
exit
]
args: system/args-list + 1 ;-- skip binary filename
str: string/load args/item (1 + length? args/item) UTF-8
SET_RETURN(str)
]
test-name: read-argument
if test-name = "option-1" [
prin "Hello World"
quit
]
| Red | 4 | 0xflotus/red | tests/source/library/called-test.red | [
"BSL-1.0",
"BSD-3-Clause"
] |
<pre>
DEF: 1
Titolo: Il Contratto Sociale Intelligente
Autori: Santiago Siri <santi@democracy.earth>, Herb Stephens <herb@democracy.earth>.
Commenti-Sommario: Nessun commento.
Stato: Attivo
Tipo: Paper
Creato: 2017-07-14
Licenza: MIT
Sostituzioni: 0
</pre>
=Il Contratto Sociale Intelligente.=
La ''Initial Rights Offering'' di [http://democracy.earth Democracy Earth Foundation].
==i. Abstract.==
In un mondo che è riuscito a globalizzare i patrimoni finanziari pur mantenendo i diritti politici rinchiusi nei territori, abbiamo bisogno di costruire nuovi modelli di governance democratica che consentano all' umanità di collaborare e affrontare le questioni globali più pressanti. Democracy Earth Foundation sta costruendo un software open source gratuito per ottenere un processo decisionale (ossia di voto) incorruttibile e basato su blockchain all'interno di istituzioni di tutte le dimensioni, dalle più locali con solo due persone fino alle più globali, che coinvolgono tutti noi. Una distribuzione disomogenea delle opportunità in tutto il mondo dovuta al perpetuo confronto tra i governi nazionali ha portato ad accelerare il cambiamento climatico, all'aumento delle disuguaglianze, al terrorismo e alle migrazioni forzate. Democracy Earth Foundation ritiene che lo sviluppo tecnologico che vede Bitcoin come denaro programmabile senza Banche Centrali, e Ethereum che permette contratti intelligenti senza la necessità di tribunali giudiziari, richieda un nuovo livello che segnali voti incorruttibili oltre i confini territoriali degli Stati Nazionali. Questa rete transnazionale opererà nel rispetto della sovranità personale dei suoi membri e proteggerà i loro diritti umani con la cifratura. Nell'Initial Rights Offering offriamo un token chiamato voto che concederà diritti di partecipazione ad ogni essere umano con il processo decisionale come funzione principale. La nostra proposta introduce l'uguaglianza indotta criptograficamente: fintanto che una persona sarà in grado di convalidare la propria identità auto-sovrana, riceverà una corrispondente quota di voti pari alla quota di ogni partecipante attivo nella rete. Definiamo un processo di Verifica dell'Identità che evita l'autorità centrale introducendo il concetto di attention mining che incentiva i partecipanti a rafforzare la fiducia dei voti eseguendo semplici test finalizzati all'individuazione delle repliche. Infine, i voti si rilasciano ai partecipanti validi secondo un meccanismo di Reddito di Base Universale con l'obiettivo di trovare un giusto equilibrio nella tensione storica tra denaro e politica. Cerchiamo niente meno che una vera e propria governance democratica per l'era di Internet, uno degli elementi fondanti di una pace e prosperità globale raggiungibili scaturiti da un arco di innovazioni tecnologiche che cambieranno ciò che significa essere umani sulla Terra.
==ii. Contenuti.==
Questo testo è strutturato in tre parti, ognuna volta a soddisfare un target di lettori diverso (anche se tutti questi possono risiedere all'interno della stessa persona.)
* [[#Manifesto|Manifesto]]: Per gli idealisti. Conduce una diagnosi del contesto politico globale e sostiene un cambiamento paradigmatico.
* [[#Paper|Paper]]: Per i costruttori. Descrive gli elementi costitutivi di un sistema che può essere implementato ovunque e da chiunque.
* [[#Execution|Esecuzione]]: Per pragmatici. Specifica come realizzare queste idee per ottenere un impatto.
La nostra intenzione è che questo testo non rimanga fisso. È pubblicato sotto licenza open source e accogliamo con favore i contributi di chiunque, in quanto il nostro obiettivo è che questo documento sia una vera e propria roadmap per la governance planetaria. La democrazia come capacità di fidarsi l'uno dell'altro nella massima misura possibile è una forza che definisce la traiettoria della storia. La nostra missione echeggia con urgenza in tutto il mondo, coinvolgendo tutta l'umanità: la necessità di fare della nostra casa comune un luogo di convivenza pacifica. La[http://democracy.earth Democracy Earth Foundation] ha svolto [[#Background|ricerche approfondite]] sui sistemi di voto, sulla cyberpolitica e le reti blockchain; siamo all'avanguardia nella conversazione pubblica sull'Internet come giurisdizione planetaria.
Seguendo [https://twitter.com/lsukernik/status/892101885771034628 l'esempio di Satoshi Nakamoto], prima di condividere le nostre idee in forma scritta ci siamo impegnati a scrivere innanzitutto il codice, per capire bene cosa si può fare. A tal fine, [https://github.com/DemocracyEarth/sovereign dall'ottobre 2015 sono state scritte più di 30.000 righe di codice], fatto che a sua volta ha guidato la nostra ricerca, i casi d'uso e le idee qui presentate. Questa è la nostra proposta.
==iii. Retroscena.==
Siamo stati i pionieri della democrazia digitale dopo aver scritto alcuni dei più importanti software open source per la democrazia [https://github.com/search?utf8=%E2%9C%93&q=topic%3Ademocracy&type=Repositories secondo la classifica della community di GitHub] incluso il progetto originale di [https://www.youtube.com/watch?v=qNCgfd7dNb0 DemocracyOS], un semplice progetto per la democrazia diretta che abbiamo creato nel 2012. Abbiamo fondato il primo partito politico digitale nelle Americhe, il [http://partidodelared.org Partido de la Red] (il Partito della Rete) che ha funzionato per la sua prima elezione nella città di [http://www.wired.co.uk/article/e-voting Buenos Aires nel 2013]. Nel 2014 abbiamo condiviso la nostra esperienza in [https://www.ted.com/talks/pia_mancini_how_to_upgrade_democracy_for_the_internet_era TED] Talks che hanno raggiunto oltre 1,2 milioni di ascoltatori. Nel 2015 e nel 2016, il [http://ycombinator.com Y Combinator] e [http://ffwd.org Fast Forward] della Silicon Valley hanno finanziato i nostri sforzi per avviare la [http://democracy.earth Democracy Earth Foundation], un'organizzazione senza scopo di lucro impegnata nella missione della governance senza confini.
La nostra esperienza che combina le sfide politiche e tecnologiche della democrazia ci ha portato a pensare e progettare riguardo la nozione di come costruire un partito politico utilizzando contratti intelligenti (smart contracts), o meglio una forma leggera di governance che chiunque possa implementare a basso costo. Abbiamo iniziato lo sviluppo di [http://sovereign.software Sovereign], '''''una democrazia liquida su blockchain''''' che permette il voto diretto su questioni così come la possibilità di delegare il potere di voto su argomenti specifici a pari in una rete sicura senza autorità centrale. Operando con token immessi sulla blockchain, tutti i voti diventano resistenti alla censura e i diritti di audit immediato possono essere concessi ad ogni elettore senza bisogno di fornire l'accesso a server o infrastrutture private, rendendo così il sistema aperto e trasparente per tutti. Il nostro lavoro è guidato da pratiche di sviluppo software open source e collabora con progetti chiave volti a garantire l'identità in ambienti decentralizzati, tra cui gli sforzi di [https://blockstack.org/blockstack_usenix16.pdf Blockstack], [http://civic.com Civic] e [https://whitepaper.uport.me/uPort_whitepaper_DRAFT20170221.pdf Consensys] tra gli altri.
[[File:/images/sovereign.png|Sovereign.]]
[https://github.com/DemocracyEarth/sovereign La codebase di Sovereign] offre un'applicazione adaptive per mobile e desktop agli elettori e alle organizzazioni che standardizza un processo decisionale incorruttibile in una democrazia basata su blockchain. Il nostro obiettivo è quello di continuare a percorrere la strada delle implementazioni che consentano [https://www.usenix.org/legacy/event/sec08/tech/full_papers/adida/adida.pdf votazioni criptografiche in open-audit] e di integrare il nostro software con blockchain in grado di garantire i diritti sovrani degli utenti.
----
<div id="Manifesto"></div>
==1. Manifesto.==
<blockquote>
La democrazia è sempre un work in progress, non è mai un'idea assoluta, altrimenti sarebbe un'ideologia totalitaria proprio come tutte le altre.
</blockquote>
'''[https://it.wikipedia.org/wiki/Jos%C3%A9_Mujica José Mujica]''', Presidente dell'Uruguay (2010–2015).
Gli attuali sistemi democratici che governano le società sotto il dominio territoriale degli Stati nazionali sono diventati stagnanti in termini di partecipazione e stanno portando ad una maggiore polarizzazione. Le Costituzioni sono dotate di mezzi su misura che soddisfano le loro stesse convinzioni endogamiche, che demoliscono la società man mano che il discorso e il dibattito fattuale sono sostituiti da una mentalità [https://www.wikiwand.com/en/Post-truth_politics di post-verità]. Ciò è una conseguenza della drastica espansione dei canali di comunicazione, accompagnata da una capacità di attenzione sempre minore e dalla necessità di rendere sacrificabili le analisi ponderate. La distribuzione centralizzata delle informazioni del XX secolo ha creato narrazioni, realtà e identità uniformi. Internet le ha rotte. Le istanze di partecipazione politica nelle cosiddette democrazie moderne non sono adatte a contesti abbondanti di informazione e sono rimaste immutate dal loro inizio.
[[File:/images/bipartisan-votes-us-congress.png|Bipartisan votes in the U.S. House of Representatives since 1981, source: The Rise of Partisanship (2015).]]
Il coinvolgimento attraverso i canali tradizionali è più debole tra le giovani generazioni, [http://www.economist.com/news/essays/21596796-democracy-was-most-successful-political-idea-20th-century-why-has-it-run-trouble-and-what-can-be-do che spesso non vanno a votare e difficilmente si impegnano nella politica di partito]. Nel frattempo l'attivismo online sta crescendo con i social media che diventano l'arena dominante per gli scontri politici. Questo include Facebook e Twitter (dove la diffusione dei pettegolezzi è predominante con le "fake news", i "bot" e il "trolling" tra le altre strategie di ottimizzazione delle campagne) e camere di eco emergenti come [http://www.4chan.org/ 4chan.org] dove l'anonimato ha portato al political incorrect o [https://gab.ai/ gab.ai] che ha consolidato la comunità "alt-right" negli Stati Uniti. Inutile dire che l'endogamia rende solo la polarizzazione più forte, e le nostre società tribalizzate hanno mostrato una tendenza a continuare a relativizzare la verità [https://www.nytimes.com/2017/06/01/climate/trump-paris-climate-agreement.html mettendo a rischio la conservazione delle risorse] e la sopravvivenza delle generazioni future.
I processi democratici osservati durante le elezioni ad alto livello sono spesso soggetti a comportamenti fraudolenti, con [https://it.wikipedia.org/wiki/Gerrymandering il "gerrymandering"] che diventa sempre più comune e un forte legame tra ciò che i [https://www.ineteconomics.org/uploads/papers/WP_48_Ferguson_et_al. pdf, i principali partiti politici spendono e la percentuale di voti vinti]. Nei paesi in via di sviluppo le urne elettorali vengono rimosse, rotte e persino bruciate da grandi partiti che sperano di sopprimere le possibilità dei concorrenti più piccoli.
Questo documento propone una soluzione che affronterà le questioni politiche e tecniche che attualmente indeboliscono le prospettive della democrazia nel mondo, offrendo un'alternativa che può essere adottata direttamente dai cittadini e attuata utilizzando reti peer-to-peer. Mentre Internet diventa la forza dominante nella politica moderna, vediamo l'indispensabile necessità di sviluppare una tecnologia digitale per il voto che possa essere utilizzata in modo sicuro in qualsiasi luogo geografico e per le comunità di qualsiasi dimensione.
Con la crescita di Internet [http://www.bbc.com/news/technology-32884867 che ha toccato oltre 3 miliardi di vite] (molto più di quanto fatto dalle principali religioni e gli Stati nazionali) e lo sviluppo di reti crittografate conosciute come blockchain che permettono operazioni incorruttibili con un controllo che non necessita di permesso, non c'è motivo di impedire all'umanità di costruire un bene comune senza confini che possa contribuire a plasmare il prossimo salto evolutivo per la governance democratica a qualsiasi scala. Anche nelle regioni in cui la penetrazione di Internet è inferiore al 50%, il divario digitale non si basa su fattori socioeconomici, ma è piuttosto un divario generazionale. Secondo Rick Falkvinge, fondatore del [https://it.wikipedia.org/wiki/Partito_Pirata Partito Pirata]: "La politica si muove a velocità glaciali: nulla sembra accadere fino a quando improvvisamente un rumore estenuante attira l'attenzione di tutti. È lenta perché spesso ci vuole la morte di una generazione perché la generazione successiva prenda il sopravvento. E oggi viviamo in un mondo che ha la ''generazione offline'' al comando e la ''generazione online'' che sta crescendo".
[[File:/images/age internet.png|The digital divide is generational more than socioeconomic, source: Pew Internet & American Life Project Surveys April 2000-April 2012.]]
Le nuove forme di governance devono riconoscere i beni comuni collegati in rete che uniscono l'umanità e indebolire progressivamente il retaggio delle frontiere nazionali e la sua intrinseca incapacità di affrontare questioni globali pressanti quali il cambiamento climatico, le crescenti disuguaglianze, il terrorismo, l'automazione e le migrazioni forzate. Una distribuzione disomogenea delle opportunità in tutto il mondo a causa del perpetuo confronto tra i governi nazionali ha portato all'ascesa di questi problemi nell'agenda globale. Crediamo che lo stack tecnologico che include [http://bitcoin.com/bitcoin.pdf Bitcoin] come moneta programmabile senza Banche Centrali e [http://ethdocs.org/en/latest/index.html Ethereum] che permette contratti intelligenti senza la necessità di Corti Giuridiche necessiti di una nuova dimensione per affermare voti incorruttibili oltre i confini degli Stati nazionali. Questo network transnazionale agirà in accordo con la sovranità personale dei suoi membri e proteggerà i loro diritti umani con la cifratura.
===1.1 Retaggio.===
Possiamo considerare le elezioni indette da Stati, province e comuni come democrazie all'interno delle quali siamo ridotti a destinatari passivi di un monologo. I cittadini sono chiamati tra periodi di tempo sostanzialmente lunghi, durante le elezioni, a fornire un contributo di base: essenzialmente accettare o rifiutare i giocatori nello stesso sistema. Questa è la larghezza di banda del sistema che costituisce il nostro retaggio delle cosiddette ''democrazie moderne''. In base a questi sistemi, meno dell'uno per cento della popolazione è in grado di votare sulla legislazione o eseguire i bilanci, mentre gli altri sono legalmente costretti a esternalizzare i loro pieni diritti di cittadinanza a una minoranza rappresentativa che alla fine scopre come perpetuarsi.
La tecnologia alla base delle "democrazie rappresentative" può essere raggruppata in due gruppi:
* '''Elezioni analogiche''': di solito schede e urne cartacee con le autorità responsabili del conteggio dei voti e della segnalazione di comportamenti fraudolenti. Anche se questi sistemi sono stabili nei paesi sviluppati, essi soffrono di una grave mancanza di partecipazione. Barriere sono attuate tramite requisiti quali la necessità di registrarsi per votare attraverso un processo eccessivamente burocratico che finisce per bloccare la maggioranza degli elettori esclusi dal diritto di voto. Le autorità applicano il gerrymandering sui distretti sfruttando i dati dei sondaggi in previsione dei risultati elettorali. Anche se questi sistemi sono più facili da controllare, ciò significa anche che sono più facili da corrompere: nelle nazioni in via di sviluppo le "elezioni analogiche'' vengono sovvertite da gruppi affiliati ai grandi partiti che bruciano o "fanno sparire" le urne elettorali, minacciando gli scrutinatori dei concorrenti più piccoli e lasciando che la violenza invada il processo nei distretti chiave. Nella nostra esperienza con il [http://partidodelared.org Partido de la Red] che correva per il Congresso della città di Buenos Aires alle elezioni del 2013 abbiamo scoperto che nessuno sforzo era più importante che avere un numero sufficiente di scrutinatori di partito per coprire ogni distretto della città, altrimenti voti sarebbero stati rubati. Quanto più grande è il territorio di un'elezione, tanto meno è probabile che un sistema analogico possa garantire un processo equo. Inoltre, gli elevati costi di attuazione finiscono per limitare le elezioni a pochi giorni all'anno (in alcuni anni), rendendo la democrazia un'eccezione piuttosto che la norma per quanto riguarda le modalità di elezione dei governi. Inoltre, il tradizionale processo elettorale analogico ha la forma di un oleodotto, dove i voti navigano dalle mani dell'elettore a un server centrale. In questo oleodotto, i voti di ogni scheda sono riassunti manualmente su fogli di carta, che vengono successivamente scansionati e trasmessi ad un ufficio centrale. Qui i fogli ricevuti vengono caricati manualmente in un server centrale che calcola il conteggio dei voti. In questo schema, quando si naviga in questo processo, il voto è gestito da un numero qualsiasi di attori umani diversi, ognuno dei quali potrebbe, intenzionalmente o involontariamente, introdurre frodi in qualsiasi momento. L'elezione elettronica mira ad accorciare questo oleodotto, con l'obiettivo che nessun essere umano sia in grado di gestire i voti: gli elettori interagiscono con un dispositivo (ad esempio, una macchina elettronica di voto) che trasmette i voti criptati ad un server centrale o ad un registro condiviso (per esempio, una blockchain).
[[File:/images/nation-state-voter-turnout.png|Territorial voting.]]
* '''Votazione elettronica''': le proposte che offrono soluzioni basate su dispositivi di voto elettronici mirano a garantire il processo attraverso un'interfaccia digitale, ma con la stessa logica di poche elezioni all'anno, con l'effetto prodotto di una nuova tecnologia che ha lo stesso scopo della vecchia tecnologia di voto, vale a dire quella di legittimare i politici professionisti. Le macchine possono contribuire efficacemente a evitare le tecniche di [https://it.wikipedia.org/wiki/Clientelismo clientelismo] per corrompere un'elezione, ma aprono una nuova superficie d'attacco esponendo le schede elettorali al rischio di hack non rilevati e all'intervento straniero. Gli esperti in questo campo ([https://www.ndi.org/e-voting-guide/examples/constitutionality-of-electronic-voting-germany compresa la Corte suprema tedesca]) raccomandano l'uso di dispositivi elettronici di voto che lasciano tracce cartacee [https://www.amazon.com/Voting-Wars-Florida-Election-Meltdown/dp/0300198248 o qualsiasi altro supporto alternativo] per verificare il voto. Un altro approccio per sistemi di voto sicuri e trasparenti sono gli sforzi per rendere le macchine di voto [https://www.nytimes.com/2017/08/03/opinion/open-source-software-hacker-voting.html open source e controllabili dal pubblico]. La tecnologia può anche essere introdotta direttamente dai cittadini che utilizzano le app per smartphone per effettuare una ''tabulazione delle votazioni parallele'' per segnalare i risultati parziali tra i diversi seggi elettorali come salvaguardia delle segnalazioni ufficiali. Per loro stessa natura, i sistemi informatici tengono registri e non possono garantire la segretezza del voto. Per questo motivo, qualsiasi registrazione di un sistema di voto digitale dovrebbe essere pubblica per default e affidabile, operando con un registro distribuito che sincronizza i risultati di una rete condivisa. In breve: la blockchain.
Le tradizionali elezioni analogiche ed elettroniche sono strettamente pensate per democrazie rappresentative a lungo termine, con periodi elettivi che vanno da 4 a 6 anni. Ma la dinamica di fondo di questi sistemi è che i funzionari sono preeletti dall'alto verso il basso e presentati ai cittadini perché li legittimino con il loro voto. L'argomentazione secondo cui i cittadini non hanno le conoscenze e la preparazione necessarie per assumersi la responsabilità politica e non hanno abbastanza tempo nella loro vita quotidiana per impegnarsi negli affari pubblici è debole sotto il profilo del merito: nella maggior parte dei casi i funzionari pubblici hanno bisogno del contributo di esperti in settori specifici per elaborare la legislazione. Inoltre, grazie a Internet, telefoni cellulari, social media e satelliti, viviamo osservabilmente in un mondo pieno di cittadini che si dibattono regolarmente su questioni politiche (anche se mancano possibilità di impatto reale).
===1.2 Geopolitica.===
Una conseguenza delle elezioni presidenziali americane del 2016 è che la [https://www.theguardian.com/us-news/2016/dec/16/qa-russian-hackers-vladimir-putin-donald-trump-us-presidential-election paura di un intervento straniero] è diventata una delle principali minacce alla sicurezza dei processi elettorali. Ma anche se le macchine di voto sono un obiettivo estremamente vulnerabile ([https://blog.horner.tj/post/hacking-voting-machines-def-con-25 defcon 25 aveva una vasta selezione di macchine di voto, e tutte queste sono state sfruttate]), gli attacchi stranieri hanno un metodo più semplice che hackerare le macchine di voto, perché la manipolazione diretta dei voti è potenzialmente rintracciabile, è molto costosa e difficile da eseguire su una scala abbastanza grande da soddisfare l'aggressore. Un approccio più efficiente è [https://en.wikipedia.org/wiki/2016_Dyn_cyberattack instillare una diffusa paura facendo collassare l'infrastruttura internet giorni prima di una elezione] in un modo che possa aiutare a spingere favoritismo su un candidato che è percepito più forte dell'altro. Questo tipo di ciberattacco che è in grado di innescare un cambiamento nella percezione degli elettori è quasi impossibile da tacciare come sovversione politica, e rivela il conflitto intrinseco che un bene comune digitale ha con le democrazie territoriali.
[[File:/images/hacked-america.png|Impact of DNS cyberattack (October 21, 2016) & Presidential Election (November 6, 2016).]]
Ciò è accaduto due settimane prima dell'elezione del 2016 negli Stati Uniti, quando una rete bot coordinata attraverso un gran numero di dispositivi Internet of Things (IoT) ha eseguito un attacco [https://it.wikipedia.org/wiki/Denial_of_service#DDoS Distributed Denial of Service (DDoS)] che ha colpito il fornitore di DNS (Domain Name System) Dyn Inc., portando in down i principali siti web negli Stati Uniti, tra cui Amazon, Paypal, New York Times, e Wall Street Journal, e molti altri.
===1.3 Terra vs. Cloud.===
<blockquote>
Nel prossimo futuro, elettroni e luce fluiranno liberamente e le reti informatiche aziendali eclisseranno le stelle. Nonostante i grandi progressi nella computerizzazione, i Paesi e la razza non sono ancora obsoleti...
</blockquote>
[http://www.imdb.com/title/tt0113568/ '''''Ghost in the shell'''''], graphic novel (1995).
Il XXI secolo è testimone di un conflitto crescente tra ''La Terra'': governi che monopolizzano la legge sulle giurisdizioni territoriali limitando la libera circolazione di beni fisici e corpi; e ''Il Cloud'': società globali che monopolizzano l'accesso ai dati degli utenti in grado di tracciare e indirizzare idee attraverso la pubblicità personalizzata. In questo mondo la libertà è un'illusione: i nostri corpi appartengono ai governi, le nostre menti alle imprese. Tra le famigerate battaglie di questo conflitto si annovera il caso [https://en.wikipedia.org/wiki/FBI%E2%80%93Apple_encryption_dispute "Apple contro l'FBI''] che ha richiesto il jailbreak di un telefono criptato; o la disputa storica tra [[https://www.washingtonpost.com/news/the-switch/wp/2017/03/06/trumps-new-travel-ban-raises-the-same-silicon-valley-objections/?utm_term=.0854c54536d6 il cosmopolitismo della Silicon Valley in cerca di visti flessibili e il nazionalismo di Washington D.C. intento ad innalzare barriere migratorie). Mentre questo scenario si sviluppa, la crittografia gioca un ruolo di crescente importanza per proteggere i diritti umani dei cittadini digitali, in quanto può aiutarli a separarsi dalla trappola "cloud contro terra".
[[File:/images/the-land.png|The land: monopolies on force.]]
Le origini della moderna crittografia risalgono alla Seconda Guerra Mondiale, quando Alan Turing costruì i primi protocomputer per decifrare i messaggi nazisti. Da allora, la cifratura è stata regolamentata negli USA nello stesso modo in cui è stata mantenuta per le armi tradizionali: è inclusa nella ''Lista delle munizioni'' della [https://www.pmddtc.state.gov/regulations_laws/itar. html International Traffic in Arms Regulations] e i relativi software e hardware devono rispondere alle restrizioni all'esportazione. E anche se la cifratura è spesso considerata un diritto tutelato dal Primo Emendamento, sostenendo che "il codice è parola", la sua natura difensiva indica che deve essere tutelata anche sotto l'ombrello del Secondo Emendamento, poiché contiene lo stesso ragionamento dietro il "diritto di portare armi", vale a dire: in un'epoca in cui [http://twitter.Com/Snowden i cosìddetti whistleblower] stanno rivelando come le spie ''Deep State'' spiano i cittadini ovunque nel mondo, le informazioni criptate sono l'unica garanzia realistica che chiunque debba essere protetto da abusi governativi (e le società che li sostengono).
[[File:/images/the-cloud.png|The cloud: monopolies on data.]]
La segretezza è una proprietà fondamentale di elezioni libere ed eque, in quanto è un meccanismo che aiuta ad evitare la coercizione da parte di coloro che sono al potere e previene il rischio che le elezioni vengano comprate e vendute a scopo di lucro. La privacy è la migliore garanzia che una mente consapevole e libera possa pensare per se stessa. Ma sul moderno Internet, la privacy è illusoria quando si usa Facebook, Google o qualsiasi servizio basato sul web. Anche se i monopoli di Internet fingono di essere i custodi della privacy online, teoricamente Facebook può ancora impersonare uno dei suoi 2 miliardi di utenti registrati se mai lo desiderasse. Google e Facebook possiedono i più grandi database di identità del mondo - che superano i governi di India e Cina - mentre [https://twitter.com/AdrianChen/status/832452637320556544 il 97% dei loro ricavi dichiarati proviene dalla pubblicità], condizionando severamente il tipo di esperienza che gli utenti ottengono con la loro tecnologia. È nel loro interesse aziendale raccogliere quante più informazioni possibili per profilare le persone al fine di rimanere competitivi nel mercato dell'attenzione, ed entrambe le aziende filtrano le informazioni alimentate agli utenti con [https://medium.com/@piamancini/future-scenarios for-algorithmic-accountability-andgovernance-17cd436d22a0 algoritmi che rispondono] solo al proprio consiglio di amministrazione. Nessuno dei loro servizi è veramente libero: la sovranità personale viene inconsapevolmente ceduta ai giganti della tecnologia oggi allo stesso modo in cui 500 anni fa i nativi del continente americano erano distratti a guardare i loro propri "selfie" in specchi luminosi anche mentre i conquistadores europei spazzavano via tutto il loro stile di vita. I dibattiti non censurati, liberi e sovrani sul futuro dell'umanità vengono mangiati da inutili "mi piace" che aiutano solo a perpetuare queste entità aziendali. Gli "sfruttamenti delle fake news'' (come sono state usate durante le elezioni americane) o i contenuti critici che si diffondono a macchia d'olio (come è successo durante la Primavera araba) dimostrano che ogni sforzo per fermare l'influenza internazionale sulla politica nazionale è inutile perché le società trascorrono la maggior parte del loro tempo online. In poche parole, Internet è incompatibile con gli Stati nazionali.
===1.4 L'Intelligence.===
<blockquote>
Non posso permetterti di farlo, Dave.
</blockquote>
'''HAL 9000''' in ''2001: Odissea nello spazio'' (1968).
La migliore tecnologia civile è quella che viene utilizzata ogni giorno. Facebook, Twitter e altre piattaforme di social media sono già diventate per delega le principali interfacce che i cittadini utilizzano per influenzare la politica quotidiana. Ma le conseguenze impreviste del trasferimento di dati personali attraverso servizi web centralizzati possono essere molte, con implicazioni rilevanti - anche terribili - per il futuro dell' umanità. L'architettura informativa su come i dati personali vengono memorizzati, condivisi e monetizzati è fondamentale per comprendere la sovranità nel XXI secolo.
Una minaccia incombente è l'uso dell'Intelligenza Artificiale (AI) senza restrizioni, che viene alimentata da contenuti generati dall'utente senza alcun tipo di supervisione pubblica. Ciò era evidente nella rivelazione che ci fu fatta da un ex dipendente di Blackwater su come i dati diventano armi: da un ufficio di Dubai era in grado di guidare e ottenere le immagini in diretta di un drone che volava sopra la Siria o il Pakistan, ma sorprendentemente la decisione di uccidere il bersaglio non veniva presa dall'operatore umano (o da un'autorità di supervisione) ma da una AI che faceva partire il colpo da Internet "almeno il 90% delle volte". Questa AI era stata fornita da una società della Silicon Valley spesso "accreditata" per la fornitura di servizi di intelligence alla CIA e per la cattura di Osama bin Laden nel 2011.
La questione dell'Intelligenza Artificiale che decide sul destino della vita umana apre questioni etiche e morali. Alla fine, nemmeno i ricercatori umani sono in grado di capire correttamente come si comporta l'AI, diventando una minaccia se essa è una componente chiave della tecnologia militare. Secondo l'autore Yuval Noah Harari, "l'Intelligence sta separandosi dagli organismi viventi e non sarà monopolizzata a lungo dagli esseri di carbonio". La coscienza è la nuova frontiera politica che viene tracciata, una linea di demarcazione tra macchine e uomini. In altre parole: capire se stiamo utilizzando le macchine o le macchine ci stanno usando. Come strutturare le organizzazioni umane -e governare il codice che le gestisce - definisce chi è responsabile. Poiché la capacità dell'intelligenza del silicio corrisponde ai tassi di crescita della legge di Moore, l'umanità nel suo insieme deve chiedersi come ha intenzione di mantenere le redini di questo potere senza precedenti.
===1.5 Decentralizzazione.===
<blockquote>
Sovrano è colui che decide sull'eccezione.
</blockquote>
[https://it.wikipedia.org/wiki/Carl_Schmitt '''Carl Schmitt'''], filosofo politico (1888-1985).
Il tallone d'Achille dei monopoli di Internet, affamati di dati e coltivatori di attenzione, è il loro bisogno di un'architettura centralizzata dell'informazione. Sono sorti come ''superhub'' in quella che era la promessa di un network a forma di rete, implementando le soluzioni vincenti per i casi di utilizzo online più importanti. Ma la conseguenza non voluta è stata un ecosistema privatizzato: codice chiuso, giardini murati e centralizzazione del potere in poche mani che apre la strada ad una [https://youtu.be/IrSn3zx2GbM?t=10m34s società di sorveglianza] completa su quello che altrimenti potrebbe essere un bene comune senza confini. Quando Sir Tim Berners-Lee, creatore dei protocolli del'' world wide web'', ha sottolineato i rischi intrinseci di Internet di oggi, ha chiesto la necessità di redigere una [https://www.ted.com/talks/tim_berners_lee_a_a_magna_carta_for_the_web Magna Carta per il Web]: "A meno che non disponiamo di un Internet aperto e neutrale, su cui possiamo contare senza preoccuparci di ciò che sta accadendo alla porta di servizio, non possiamo avere un governo aperto, una buona democrazia, comunità collegate e diversità di cultura. Non è ingenuo pensare di poterlo avere, ma è ingenuo pensare che possiamo solo sederci e prenderlo."
La centralizzazione è l'unico punto di fallimento delle elezioni ed è incompatibile con la democrazia. Nella nostra esperienza di implementazione di votazione digitale centralizzata per le decisioni del Partido de la Red, abbiamo rilevato che se un'elezione è ad alto rischio (tutti o la maggior parte dei membri hanno un interesse parziale nel risultato), la probabilità che il sistema sia corrotto aumenta. Il rischio maggiore è rappresentato da coloro che sono responsabili del controllo dei server e dell'integrità dei database. Abbiamo scoperto che in concomitanza di [https://asamblea.partidodelared.org/topic/58eaf4739b96a611009bc3fc elezioni interne] tenutesi all'inizio del 2017 ci sono state discrepanze tra le informazioni riportate dai revisori dei database e i registri conservati nei loro computer locali: manipolazione dei dati di emissione dei voti, modifica arbitraria della data di chiusura del sondaggio, cancellazione dei record e improvvisa messa al bando dei conti registrati sono stati dimostrati e denunciati, cosa che ha portato ad una percezione generalizzata della frode nell'intero processo. Le democrazie digitali centralizzate senza alcuna considerazione per la sicurezza crittografica sono giocattoli utili per scopi ludici, ma possono essere pericolose se implementate in scenari reali sotto mani fraudolente.
Nel frattempo, le elezioni tradizionali hanno una tecnica nota come "conteggio contraddittorio'' quando il risultato è vicino a un pareggio. Le autorità di tutte le parti coinvolte partecipano al conteggio manuale dei voti. Ma quando un'elezione avviene all'interno di una popolazione numerosa, il "conteggio contraddittorio'' riduce il costo della sovversione, imponendo ad un aggressore di corrompere solo poche autorità da una parte concorrente per ottenere un risultato. Qualsiasi tipo di sistema che richieda fiducia da parte dei partecipanti corre il rischio di veder crollare l'intera struttura se un'autorità è fraudolenta.
[[File:/images/blockchain-permissionless-audit-voting.png|Blockchain democracies enable permissionless audits.]]
La decentralizzazione è un requisito delle elezioni democratiche. Senza di essa ci sarà sempre spazio per la corruzione. Le blockchain permettono sistemi affidabili, erodendo il bisogno di autorità umana e aumentando le difese dell'integrità del voto con una risorsa condivisa che ha come funzione principale il conteggio. Ciò consente di concepire sistemi elettorali senza precedenti. Con una democrazia basata su blockchain, i voti diventano resistenti alla censura e ogni singolo elettore può controllare un'elezione senza richiedere alcun tipo di diritto di accesso all'infrastruttura. Memorizzando i dati di voto in una blockchain piuttosto che in server privati o nelle urne, i costi di audit diventano astratti e si trasformano in un diritto garantito per ogni partecipante. Gli elettori non sono solo semplici spettatori, ma anche guardiani sovrani dell'intero processo. Questo tipo di trasparenza non può essere garantita da sistemi elettorali tradizionali, analogici o elettronici.
===1.6 Sovranità.===
Sull'Internet di oggi, il voto è emerso come la principale interazione. Ogni volta che gli utenti rilasciano un "mi piace'', un "upvote'', un ''cuore'', un ''link'' o un ''retweet'', stanno segnalando una preferenza che alimenta un loop di feedback che genera raccomandazioni migliori per loro. Ma l'azione non andrà oltre: è un "voto falso" che manca di implicazioni istituzionali. I social media funzionano come gettoni privi di valore che possono essere gonfiati con un solo clic, anche se fissano il prezzo della pubblicità in dollari. Gli effetti di rete hanno trasformato questa interazione in una metrica che mette in evidenza l'influenza di un'idea specifica all'interno di una folla, spesso diventando uno strumento per coloro che sono in potere di rilevare i bisogni della società. Ma i benefici finanziari e politici di queste transazioni sono mantenuti interamente dai [https://www.nytimes.com/2016/10/16/technology/peter-thiel-donald-j-trump.html proprietari dei network].
[[File:/images/web-voting.png|Web voting.]]
La tecnologia di Sovereign, in grado di operare in reti peer-to-peer, convalidare identità, conservare l'anonimato, crittografare i dati, decentrare le infrastrutture, con codice open source free (''come in freedom'', libertà), può completamente perturbare il paesaggio descritto.
Nel corso della storia hanno prevalso solo tre tipi di sovranità: la ''tribù sovrana'' dove una folla segue un leader, il ''re sovrano'' fedele solo a Dio, e la ''repubblica sovrana'' con terre continentali governate da una sola legge. Le blockchain che operano nel ciberspazio stanno dando origine ad un quarto tipo: l' "individuo connesso". È una possibilità non lontana -- raggiungere [https://www.amazon.com/Sovereign-Individual-Mastering-Transition-Information/dp/0684832720 la sovranità personale] è già una realtà per coloro che gestiscono le loro finanze con bitcoin e altri possedimenti cripto. Come dice l'investitore [http://twitter.com/naval Naval Ravikant]: "È possibile attraversare un confine internazionale portando nella testa un miliardo di dollari in bitcoin". Questo tipo di atto sovrano è senza precedenti anche per i capi di Stato contemporanei.
L'adozione generalizzata di blockchain sta dando origine ad un modello che inizialmente è cresciuto sotto l'ombra di istituzioni consolidate, ma che alla fine le renderà obsolete. Le blockchain sono burocrazie automatizzate che offrono notevoli vantaggi finanziari in termini di costi di transazione, riducendo al contempo le necessità degli intermediari. Permettono sistemi di libera associazione che contribuiscono a rompere la coercizione politica e finanziaria imposta dai governi e dalle banche, limitando il diritto di voto o l'accesso al capitale. Una società tecnologicamente avanzata può prosperare al di là dei domini territoriali ovunque vi sia una connessione Internet, con i cittadini digitali che entrano a far parte di un nuovo tipo di diaspora.
----
Con questa diagnosi, in [[#Paper|Sezione 2]] mappiamo gli elementi constitutivi di una democrazia liquida decentralizzata. Una volta definiti gli strumenti, [[#Esecuzione|Sezione 3]] propone una implementazione che si concentra sulla creazione di un sistema sicuro ed inclusivo.
<div id="Paper"></div>
==2. Paper.==
<blockquote>
È la tecnologia che non controlliamo quella utilizzata per controllarci.
</blockquote>
[https://twitter.com/earlkman '''Emiliano Kargieman'''], space hacker (1975).
Un principio fondamentale della democrazia è il diritto di essere ascoltati. Oggi la maggior parte della popolazione mondiale non viene ascoltata: avere una voce è un incidente di nascita. Le voci individuali e collettive sono messe a tacere politicamente ed economicamente con l'illiquidità: agli emarginati non vengono dati strumenti per trasmettere o amplificare la loro voce. La democrazia moderna è figlia dell' "Era della Carta Stampata": sistemi costituzionali stampati che dipendono dai contratti umidi di inchiostro e dalla velocità del servizio postale. Le democrazie rappresentative sono un prodotto delle tecnologie dell' informazione del XVIII secolo.
[[File:/images/liquid.png|Direct democracy vs. Liquid Democracy.]]
Una democrazia liquida si basa su un modello di rappresentazione dinamica che funziona con un approccio dal basso verso l'alto: i cittadini possono scegliere liberamente all'interno del loro schema sociale (amici, colleghi, familiari) chi vogliono avere come rappresentanti su un insieme specifico di argomenti. È la forma più flessibile di governance democratica che può essere costruita con la tecnologia digitale, operando come un ibrido che permette il voto diretto o delegato in qualsiasi momento. Ci sono pochi precedenti di ambienti bottom-up affidabili che hanno portato a contenuti autorevoli, con [https://www.wikipedia.org/ Wikipedia] che ne rappresenta un caso pionieristico. Ma se la storia è una guida, l'ultima volta che la civiltà ha affrontato [https://it.wikipedia.org/wiki/Illuminismo un cambiamento di paradigma per quanto riguarda l'Illuminazione enciclopedica] è stato proprio nell'epoca che precede l'ascesa delle democrazie moderne.
Questo paper descrive in dettaglio l'attuazione di una democrazia liquida utilizzando [http://github.com/DemocracyEarth/sovereign Sovereign], la nostra applicazione di governance democratica che opera con token di blockchain utilizzando un set di contratti intelligenti (smart contracts) di base. Semplicità nel design e nel linguaggio usato per esprimere questo concetto progettuale è importante allo scopo di un dispositivo veramente democratico. Nessuna tecnologia sarà mai in grado di soddisfare le aspirazioni democratiche se potrà essere compresa solo da un'élite. Come ha dichiarato il crittografo [https://it.wikipedia.org/wiki/Ralph_Merkle Ralph Merkle]:
<blockquote>
Non chiediamo ai comuni cittadini non addestrati di eseguire interventi chirurgici, pilotare aerei, progettare computer, o svolgere le altre miriadi di compiti necessari per il funzionamento della società, cosa rende la governance diversa? Il problema è ben compreso: se diamo la governance agli "esperti", essi prenderanno decisioni nel loro stesso interesse, non nell'interesse di tutti noi.
</blockquote>
| MediaWiki | 4 | 1110sillabo/paper | translations/italian/README_IT.mediawiki | [
"MIT"
] |
{% block content %}{% endblock %} | HTML+PHP | 1 | londry/boxbilling | src/bb-themes/boxbilling/html/layout_blank.phtml | [
"Apache-2.0"
] |
[CustomMessages]
vc2012x86_title=MS Visual C++ 2012 Redistributable package (x86)
vc2012x64_title=MS Visual C++ 2012 Redistributable package (x64)
en.vc2012x86_size=6.3 MB
en.vc2012x64_size=6.9 MB
#ifdef dotnet_Passive
#define vc2012_passive "'/passive '"
#else
#define vc2012_passive "''"
#endif
[Code]
const
vc2012x86_url = 'http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU1/vcredist_x86.exe';
vc2012x64_url = 'http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU1/vcredist_x64.exe';
procedure vc2012();
var
version: cardinal;
begin
// x86 (32 bit) runtime
if not RegQueryDWordValue(HKLM32, 'SOFTWARE\Microsoft\VisualStudio\11.0\VC\VCRedist\x86', 'Installed', version) then
RegQueryDWordValue(HKLM32, 'SOFTWARE\Microsoft\VisualStudio\11.0\VC\Runtimes\x86', 'Installed', version);
if version <> 1 then
AddProduct('vcredist_x86.exe',
'/q ' + {#vc2012_passive} + '/norestart',
CustomMessage('vc2012x86_title'),
CustomMessage('vc2012x86_size'),
vc2012x86_url,false,false);
if isX64 then begin
version := 0;
// x64 (64 bit) runtime also.
if not RegQueryDWordValue(HKLM32, 'SOFTWARE\Microsoft\VisualStudio\11.0\VC\VCRedist\x64', 'Installed', version) then
RegQueryDWordValue(HKLM32, 'SOFTWARE\Microsoft\VisualStudio\11.0\VC\Runtimes\x64', 'Installed', version);
if version <> 1 then
AddProduct('vcredist_x64.exe',
'/q ' + {#vc2012_passive} + '/norestart',
CustomMessage('vc2012x64_title'),
CustomMessage('vc2012x64_size'),
vc2012x64_url,false,false);
end;
end;
| Inno Setup | 3 | jxliujinyue/pgina | Installer/scripts/products/vc2012.iss | [
"BSD-3-Clause"
] |
Hello <%= @user.name %>,
Your ENCODE DCC data submission account has been created.
Login: <%= @user.login %>
Visit this URL to activate your account:
<%= @url %>
| RHTML | 3 | andypohl/kent | src/hg/encode/hgEncodeSubmit/app/views/user_notifier/signup_notification.rhtml | [
"MIT"
] |
/*
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| https://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#include "mbfilter_singlebyte.h"
#define CK(statement) do { if ((statement) < 0) return (-1); } while (0)
static inline uint32_t coalesce(uint32_t a, uint32_t b)
{
return a ? a : b;
}
/* Helper for single-byte encodings which use a conversion table */
static int mbfl_conv_singlebyte_table(int c, mbfl_convert_filter *filter, int tbl_min, const unsigned short tbl[])
{
if (c < tbl_min) {
CK((*filter->output_function)(c, filter->data));
} else {
CK((*filter->output_function)(coalesce(tbl[c - tbl_min], MBFL_BAD_INPUT), filter->data));
}
return 0;
}
static int mbfl_conv_reverselookup_table(int c, mbfl_convert_filter *filter, int tbl_min, const unsigned short tbl[])
{
if (c == MBFL_BAD_INPUT) {
CK(mbfl_filt_conv_illegal_output(c, filter));
} else if (c < tbl_min) {
CK((*filter->output_function)(c, filter->data));
} else {
for (int i = 0; i < 256 - tbl_min; i++) {
if (c == tbl[i]) {
CK((*filter->output_function)(i + tbl_min, filter->data));
return 0;
}
}
CK(mbfl_filt_conv_illegal_output(c, filter));
}
return 0;
}
/* Initialize data structures for a single-byte encoding */
#define DEF_SB(id, name, mime_name, aliases) \
static int mbfl_filt_conv_##id##_wchar(int c, mbfl_convert_filter *filter); \
static int mbfl_filt_conv_wchar_##id(int c, mbfl_convert_filter *filter); \
static size_t mb_##id##_to_wchar(unsigned char **in, size_t *in_len, uint32_t *buf, size_t bufsize, unsigned int *state); \
static void mb_wchar_to_##id(uint32_t *in, size_t len, mb_convert_buf *buf, bool end); \
static const struct mbfl_convert_vtbl vtbl_##id##_wchar = { \
mbfl_no_encoding_##id, \
mbfl_no_encoding_wchar, \
mbfl_filt_conv_common_ctor, \
NULL, \
mbfl_filt_conv_##id##_wchar, \
mbfl_filt_conv_common_flush, \
NULL \
}; \
static const struct mbfl_convert_vtbl vtbl_wchar_##id = { \
mbfl_no_encoding_wchar, \
mbfl_no_encoding_##id, \
mbfl_filt_conv_common_ctor, \
NULL, \
mbfl_filt_conv_wchar_##id, \
mbfl_filt_conv_common_flush, \
NULL \
}; \
const mbfl_encoding mbfl_encoding_##id = { \
mbfl_no_encoding_##id, \
name, \
mime_name, \
aliases, \
NULL, \
MBFL_ENCTYPE_SBCS, \
&vtbl_##id##_wchar, \
&vtbl_wchar_##id, \
mb_##id##_to_wchar, \
mb_wchar_to_##id \
}
/* For single-byte encodings which use a conversion table */
#define DEF_SB_TBL(id, name, mime_name, aliases, tbl_min, tbl) \
static int mbfl_filt_conv_##id##_wchar(int c, mbfl_convert_filter *filter) { \
return mbfl_conv_singlebyte_table(c, filter, tbl_min, tbl); \
} \
static int mbfl_filt_conv_wchar_##id(int c, mbfl_convert_filter *filter) { \
return mbfl_conv_reverselookup_table(c, filter, tbl_min, tbl); \
} \
static size_t mb_##id##_to_wchar(unsigned char **in, size_t *in_len, uint32_t *buf, size_t bufsize, unsigned int *state) \
{ \
unsigned char *p = *in, *e = p + *in_len; \
uint32_t *out = buf, *limit = buf + bufsize; \
while (p < e && out < limit) { \
unsigned char c = *p++; \
*out++ = (c < tbl_min) ? c : coalesce(tbl[c - tbl_min], MBFL_BAD_INPUT); \
} \
*in_len = e - p; \
*in = p; \
return out - buf; \
} \
static void mb_wchar_to_##id(uint32_t *in, size_t len, mb_convert_buf *buf, bool end) \
{ \
unsigned char *out, *limit; \
MB_CONVERT_BUF_LOAD(buf, out, limit); \
MB_CONVERT_BUF_ENSURE(buf, out, limit, len); \
while (len--) { \
uint32_t w = *in++; \
if (w < tbl_min) { \
out = mb_convert_buf_add(out, w & 0xFF); \
} else { \
for (int i = 0; i < 256 - tbl_min; i++) { \
if (w == tbl[i]) { \
out = mb_convert_buf_add(out, i + tbl_min); \
goto next_iteration; \
} \
} \
MB_CONVERT_ERROR(buf, out, limit, w, mb_wchar_to_##id); \
MB_CONVERT_BUF_ENSURE(buf, out, limit, len); \
next_iteration: ; \
} \
} \
MB_CONVERT_BUF_STORE(buf, out, limit); \
} \
DEF_SB(id, name, mime_name, aliases)
/* The grand-daddy of them all: ASCII */
static const char *ascii_aliases[] = {"ANSI_X3.4-1968", "iso-ir-6", "ANSI_X3.4-1986", "ISO_646.irv:1991", "US-ASCII", "ISO646-US", "us", "IBM367", "IBM-367", "cp367", "csASCII", NULL};
DEF_SB(ascii, "ASCII", "US-ASCII", ascii_aliases);
static int mbfl_filt_conv_ascii_wchar(int c, mbfl_convert_filter *filter)
{
CK((*filter->output_function)((c < 0x80) ? c : MBFL_BAD_INPUT, filter->data));
return 0;
}
static int mbfl_filt_conv_wchar_ascii(int c, mbfl_convert_filter *filter)
{
if (c < 0x80 && c != MBFL_BAD_INPUT) {
CK((*filter->output_function)(c, filter->data));
} else {
CK(mbfl_filt_conv_illegal_output(c, filter));
}
return 0;
}
static size_t mb_ascii_to_wchar(unsigned char **in, size_t *in_len, uint32_t *buf, size_t bufsize, unsigned int *state)
{
unsigned char *p = *in, *e = p + *in_len;
uint32_t *out = buf, *limit = buf + bufsize;
while (p < e && out < limit) {
unsigned char c = *p++;
*out++ = (c < 0x80) ? c : MBFL_BAD_INPUT;
}
*in_len = e - p;
*in = p;
return out - buf;
}
static void mb_wchar_to_ascii(uint32_t *in, size_t len, mb_convert_buf *buf, bool end)
{
unsigned char *out, *limit;
MB_CONVERT_BUF_LOAD(buf, out, limit);
MB_CONVERT_BUF_ENSURE(buf, out, limit, len);
while (len--) {
uint32_t w = *in++;
if (w < 0x80) {
out = mb_convert_buf_add(out, w & 0xFF);
} else {
MB_CONVERT_ERROR(buf, out, limit, w, mb_wchar_to_ascii);
MB_CONVERT_BUF_ENSURE(buf, out, limit, len);
}
}
MB_CONVERT_BUF_STORE(buf, out, limit);
}
/* ISO-8859-X */
static const char *iso8859_1_aliases[] = {"ISO8859-1", "latin1", NULL};
DEF_SB(8859_1, "ISO-8859-1", "ISO-8859-1", iso8859_1_aliases);
static int mbfl_filt_conv_8859_1_wchar(int c, mbfl_convert_filter *filter)
{
return (*filter->output_function)(c, filter->data);
}
static int mbfl_filt_conv_wchar_8859_1(int c, mbfl_convert_filter *filter)
{
if (c < 0x100 && c != MBFL_BAD_INPUT) {
CK((*filter->output_function)(c, filter->data));
} else {
CK(mbfl_filt_conv_illegal_output(c, filter));
}
return 0;
}
static size_t mb_8859_1_to_wchar(unsigned char **in, size_t *in_len, uint32_t *buf, size_t bufsize, unsigned int *state)
{
unsigned char *p = *in, *e = p + *in_len;
uint32_t *out = buf, *limit = buf + bufsize;
while (p < e && out < limit) {
*out++ = *p++;
}
*in_len = e - p;
*in = p;
return out - buf;
}
static void mb_wchar_to_8859_1(uint32_t *in, size_t len, mb_convert_buf *buf, bool end)
{
unsigned char *out, *limit;
MB_CONVERT_BUF_LOAD(buf, out, limit);
MB_CONVERT_BUF_ENSURE(buf, out, limit, len);
while (len--) {
uint32_t w = *in++;
if (w < 0x100) {
out = mb_convert_buf_add(out, w);
} else {
MB_CONVERT_ERROR(buf, out, limit, w, mb_wchar_to_8859_1);
MB_CONVERT_BUF_ENSURE(buf, out, limit, len);
}
}
MB_CONVERT_BUF_STORE(buf, out, limit);
}
static const char *iso8859_2_aliases[] = {"ISO8859-2", "latin2", NULL};
static const unsigned short iso8859_2_ucs_table[] = {
0x00A0, 0x0104, 0x02D8, 0x0141, 0x00A4, 0x013D, 0x015A, 0x00A7,
0x00A8, 0x0160, 0x015E, 0x0164, 0x0179, 0x00AD, 0x017D, 0x017B,
0x00B0, 0x0105, 0x02DB, 0x0142, 0x00B4, 0x013E, 0x015B, 0x02C7,
0x00B8, 0x0161, 0x015F, 0x0165, 0x017A, 0x02DD, 0x017E, 0x017C,
0x0154, 0x00C1, 0x00C2, 0x0102, 0x00C4, 0x0139, 0x0106, 0x00C7,
0x010C, 0x00C9, 0x0118, 0x00CB, 0x011A, 0x00CD, 0x00CE, 0x010E,
0x0110, 0x0143, 0x0147, 0x00D3, 0x00D4, 0x0150, 0x00D6, 0x00D7,
0x0158, 0x016E, 0x00DA, 0x0170, 0x00DC, 0x00DD, 0x0162, 0x00DF,
0x0155, 0x00E1, 0x00E2, 0x0103, 0x00E4, 0x013A, 0x0107, 0x00E7,
0x010D, 0x00E9, 0x0119, 0x00EB, 0x011B, 0x00ED, 0x00EE, 0x010F,
0x0111, 0x0144, 0x0148, 0x00F3, 0x00F4, 0x0151, 0x00F6, 0x00F7,
0x0159, 0x016F, 0x00FA, 0x0171, 0x00FC, 0x00FD, 0x0163, 0x02D9
};
DEF_SB_TBL(8859_2, "ISO-8859-2", "ISO-8859-2", iso8859_2_aliases, 0xA0, iso8859_2_ucs_table);
static const char *iso8859_3_aliases[] = {"ISO8859-3", "latin3", NULL};
static const unsigned short iso8859_3_ucs_table[] = {
0x00A0, 0x0126, 0x02D8, 0x00A3, 0x00A4, 0x0000, 0x0124, 0x00A7,
0x00A8, 0x0130, 0x015E, 0x011E, 0x0134, 0x00AD, 0x0000, 0x017B,
0x00B0, 0x0127, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x0125, 0x00B7,
0x00B8, 0x0131, 0x015F, 0x011F, 0x0135, 0x00BD, 0x0000, 0x017C,
0x00C0, 0x00C1, 0x00C2, 0x0000, 0x00C4, 0x010A, 0x0108, 0x00C7,
0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF,
0x0000, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x0120, 0x00D6, 0x00D7,
0x011C, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x016C, 0x015C, 0x00DF,
0x00E0, 0x00E1, 0x00E2, 0x0000, 0x00E4, 0x010B, 0x0109, 0x00E7,
0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF,
0x0000, 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x0121, 0x00F6, 0x00F7,
0x011D, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x016D, 0x015D, 0x02D9
};
DEF_SB_TBL(8859_3, "ISO-8859-3", "ISO-8859-3", iso8859_3_aliases, 0xA0, iso8859_3_ucs_table);
static const char *iso8859_4_aliases[] = {"ISO8859-4", "latin4", NULL};
static const unsigned short iso8859_4_ucs_table[] = {
0x00A0, 0x0104, 0x0138, 0x0156, 0x00A4, 0x0128, 0x013B, 0x00A7,
0x00A8, 0x0160, 0x0112, 0x0122, 0x0166, 0x00AD, 0x017D, 0x00AF,
0x00B0, 0x0105, 0x02DB, 0x0157, 0x00B4, 0x0129, 0x013C, 0x02C7,
0x00B8, 0x0161, 0x0113, 0x0123, 0x0167, 0x014A, 0x017E, 0x014B,
0x0100, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x012E,
0x010C, 0x00C9, 0x0118, 0x00CB, 0x0116, 0x00CD, 0x00CE, 0x012A,
0x0110, 0x0145, 0x014C, 0x0136, 0x00D4, 0x00D5, 0x00D6, 0x00D7,
0x00D8, 0x0172, 0x00DA, 0x00DB, 0x00DC, 0x0168, 0x016A, 0x00DF,
0x0101, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x012F,
0x010D, 0x00E9, 0x0119, 0x00EB, 0x0117, 0x00ED, 0x00EE, 0x012B,
0x0111, 0x0146, 0x014D, 0x0137, 0x00F4, 0x00F5, 0x00F6, 0x00F7,
0x00F8, 0x0173, 0x00FA, 0x00FB, 0x00FC, 0x0169, 0x016B, 0x02D9
};
DEF_SB_TBL(8859_4, "ISO-8859-4", "ISO-8859-4", iso8859_4_aliases, 0xA0, iso8859_4_ucs_table);
static const char *iso8859_5_aliases[] = {"ISO8859-5", "cyrillic", NULL};
static const unsigned short iso8859_5_ucs_table[] = {
0x00A0, 0x0401, 0x0402, 0x0403, 0x0404, 0x0405, 0x0406, 0x0407,
0x0408, 0x0409, 0x040A, 0x040B, 0x040C, 0x00AD, 0x040E, 0x040F,
0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417,
0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F,
0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427,
0x0428, 0x0429, 0x042A, 0x042B, 0x042C, 0x042D, 0x042E, 0x042F,
0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437,
0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F,
0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,
0x0448, 0x0449, 0x044A, 0x044B, 0x044C, 0x044D, 0x044E, 0x044F,
0x2116, 0x0451, 0x0452, 0x0453, 0x0454, 0x0455, 0x0456, 0x0457,
0x0458, 0x0459, 0x045A, 0x045B, 0x045C, 0x00A7, 0x045E, 0x045F
};
DEF_SB_TBL(8859_5, "ISO-8859-5", "ISO-8859-5", iso8859_5_aliases, 0xA0, iso8859_5_ucs_table);
static const char *iso8859_6_aliases[] = {"ISO8859-6", "arabic", NULL};
static const unsigned short iso8859_6_ucs_table[] = {
0x00A0, 0x0000, 0x0000, 0x0000, 0x00A4, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x060C, 0x00AD, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x061B, 0x0000, 0x0000, 0x0000, 0x061F,
0x0000, 0x0621, 0x0622, 0x0623, 0x0624, 0x0625, 0x0626, 0x0627,
0x0628, 0x0629, 0x062A, 0x062B, 0x062C, 0x062D, 0x062E, 0x062F,
0x0630, 0x0631, 0x0632, 0x0633, 0x0634, 0x0635, 0x0636, 0x0637,
0x0638, 0x0639, 0x063A, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0640, 0x0641, 0x0642, 0x0643, 0x0644, 0x0645, 0x0646, 0x0647,
0x0648, 0x0649, 0x064A, 0x064B, 0x064C, 0x064D, 0x064E, 0x064F,
0x0650, 0x0651, 0x0652, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
};
DEF_SB_TBL(8859_6, "ISO-8859-6", "ISO-8859-6", iso8859_6_aliases, 0xA0, iso8859_6_ucs_table);
static const char *iso8859_7_aliases[] = {"ISO8859-7", "greek", NULL};
static const unsigned short iso8859_7_ucs_table[] = {
0x00A0, 0x2018, 0x2019, 0x00A3, 0x20AC, 0x20AF, 0x00A6, 0x00A7,
0x00A8, 0x00A9, 0x037A, 0x00AB, 0x00AC, 0x00AD, 0x0000, 0x2015,
0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x0384, 0x0385, 0x0386, 0x00B7,
0x0388, 0x0389, 0x038A, 0x00BB, 0x038C, 0x00BD, 0x038E, 0x038F,
0x0390, 0x0391, 0x0392, 0x0393, 0x0394, 0x0395, 0x0396, 0x0397,
0x0398, 0x0399, 0x039A, 0x039B, 0x039C, 0x039D, 0x039E, 0x039F,
0x03A0, 0x03A1, 0x0000, 0x03A3, 0x03A4, 0x03A5, 0x03A6, 0x03A7,
0x03A8, 0x03A9, 0x03AA, 0x03AB, 0x03AC, 0x03AD, 0x03AE, 0x03AF,
0x03B0, 0x03B1, 0x03B2, 0x03B3, 0x03B4, 0x03B5, 0x03B6, 0x03B7,
0x03B8, 0x03B9, 0x03BA, 0x03BB, 0x03BC, 0x03BD, 0x03BE, 0x03BF,
0x03C0, 0x03C1, 0x03C2, 0x03C3, 0x03C4, 0x03C5, 0x03C6, 0x03C7,
0x03C8, 0x03C9, 0x03CA, 0x03CB, 0x03CC, 0x03CD, 0x03CE, 0x0000
};
DEF_SB_TBL(8859_7, "ISO-8859-7", "ISO-8859-7", iso8859_7_aliases, 0xA0, iso8859_7_ucs_table);
static const char *iso8859_8_aliases[] = {"ISO8859-8", "hebrew", NULL};
static const unsigned short iso8859_8_ucs_table[] = {
0x00A0, 0x0000, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7,
0x00A8, 0x00A9, 0x00D7, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,
0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7,
0x00B8, 0x00B9, 0x00F7, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2017,
0x05D0, 0x05D1, 0x05D2, 0x05D3, 0x05D4, 0x05D5, 0x05D6, 0x05D7,
0x05D8, 0x05D9, 0x05DA, 0x05DB, 0x05DC, 0x05DD, 0x05DE, 0x05DF,
0x05E0, 0x05E1, 0x05E2, 0x05E3, 0x05E4, 0x05E5, 0x05E6, 0x05E7,
0x05E8, 0x05E9, 0x05EA, 0x0000, 0x0000, 0x200E, 0x200F, 0x0000
};
DEF_SB_TBL(8859_8, "ISO-8859-8", "ISO-8859-8", iso8859_8_aliases, 0xA0, iso8859_8_ucs_table);
static const char *iso8859_9_aliases[] = {"ISO8859-9", "latin5", NULL};
static const unsigned short iso8859_9_ucs_table[] = {
0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7,
0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,
0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7,
0x00B8, 0x00B9, 0x00BA, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00BF,
0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7,
0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF,
0x011E, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x00D7,
0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x0130, 0x015E, 0x00DF,
0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x00E7,
0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF,
0x011F, 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x00F7,
0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x0131, 0x015F, 0x00FF
};
DEF_SB_TBL(8859_9, "ISO-8859-9", "ISO-8859-9", iso8859_9_aliases, 0xA0, iso8859_9_ucs_table);
static const char *iso8859_10_aliases[] = {"ISO8859-10", "latin6", NULL};
static const unsigned short iso8859_10_ucs_table[] = {
0x00A0, 0x0104, 0x0112, 0x0122, 0x012A, 0x0128, 0x0136, 0x00A7,
0x013B, 0x0110, 0x0160, 0x0166, 0x017D, 0x00AD, 0x016A, 0x014A,
0x00B0, 0x0105, 0x0113, 0x0123, 0x012B, 0x0129, 0x0137, 0x00B7,
0x013C, 0x0111, 0x0161, 0x0167, 0x017E, 0x2015, 0x016B, 0x014B,
0x0100, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x012E,
0x010C, 0x00C9, 0x0118, 0x00CB, 0x0116, 0x00CD, 0x00CE, 0x00CF,
0x00D0, 0x0145, 0x014C, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x0168,
0x00D8, 0x0172, 0x00DA, 0x00DB, 0x00DC, 0x00DD, 0x00DE, 0x00DF,
0x0101, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x012F,
0x010D, 0x00E9, 0x0119, 0x00EB, 0x0117, 0x00ED, 0x00EE, 0x00EF,
0x00F0, 0x0146, 0x014D, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x0169,
0x00F8, 0x0173, 0x00FA, 0x00FB, 0x00FC, 0x00FD, 0x00FE, 0x0138
};
DEF_SB_TBL(8859_10, "ISO-8859-10", "ISO-8859-10", iso8859_10_aliases, 0xA0, iso8859_10_ucs_table);
static const char *iso8859_13_aliases[] = {"ISO8859-13", NULL};
static const unsigned short iso8859_13_ucs_table[] = {
0x00A0, 0x201D, 0x00A2, 0x00A3, 0x00A4, 0x201E, 0x00A6, 0x00A7,
0x00D8, 0x00A9, 0x0156, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00C6,
0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x201C, 0x00B5, 0x00B6, 0x00B7,
0x00F8, 0x00B9, 0x0157, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00E6,
0x0104, 0x012E, 0x0100, 0x0106, 0x00C4, 0x00C5, 0x0118, 0x0112,
0x010C, 0x00C9, 0x0179, 0x0116, 0x0122, 0x0136, 0x012A, 0x013B,
0x0160, 0x0143, 0x0145, 0x00D3, 0x014C, 0x00D5, 0x00D6, 0x00D7,
0x0172, 0x0141, 0x015A, 0x016A, 0x00DC, 0x017B, 0x017D, 0x00DF,
0x0105, 0x012F, 0x0101, 0x0107, 0x00E4, 0x00E5, 0x0119, 0x0113,
0x010D, 0x00E9, 0x017A, 0x0117, 0x0123, 0x0137, 0x012B, 0x013C,
0x0161, 0x0144, 0x0146, 0x00F3, 0x014D, 0x00F5, 0x00F6, 0x00F7,
0x0173, 0x0142, 0x015B, 0x016B, 0x00FC, 0x017C, 0x017E, 0x2019
};
DEF_SB_TBL(8859_13, "ISO-8859-13", "ISO-8859-13", iso8859_13_aliases, 0xA0, iso8859_13_ucs_table);
static const char *iso8859_14_aliases[] = {"ISO8859-14", "latin8", NULL};
static const unsigned short iso8859_14_ucs_table[] = {
0x00A0, 0x1E02, 0x1E03, 0x00A3, 0x010A, 0x010B, 0x1E0A, 0x00A7,
0x1E80, 0x00A9, 0x1E82, 0x1E0B, 0x1EF2, 0x00AD, 0x00AE, 0x0178,
0x1E1E, 0x1E1F, 0x0120, 0x0121, 0x1E40, 0x1E41, 0x00B6, 0x1E56,
0x1E81, 0x1E57, 0x1E83, 0x1E60, 0x1EF3, 0x1E84, 0x1E85, 0x1E61,
0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7,
0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF,
0x0174, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x1E6A,
0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x00DD, 0x0176, 0x00DF,
0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x00E7,
0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF,
0x0175, 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x1E6B,
0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x00FD, 0x0177, 0x00FF
};
DEF_SB_TBL(8859_14, "ISO-8859-14", "ISO-8859-14", iso8859_14_aliases, 0xA0, iso8859_14_ucs_table);
static const char *iso8859_15_aliases[] = {"ISO8859-15", NULL};
static const unsigned short iso8859_15_ucs_table[] = {
0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x20AC, 0x00A5, 0x0160, 0x00A7,
0x0161, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,
0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x017D, 0x00B5, 0x00B6, 0x00B7,
0x017E, 0x00B9, 0x00BA, 0x00BB, 0x0152, 0x0153, 0x0178, 0x00BF,
0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7,
0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF,
0x00D0, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x00D7,
0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x00DD, 0x00DE, 0x00DF,
0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x00E7,
0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF,
0x00F0, 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x00F7,
0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x00FD, 0x00FE, 0x00FF
};
DEF_SB_TBL(8859_15, "ISO-8859-15", "ISO-8859-15", iso8859_15_aliases, 0xA0, iso8859_15_ucs_table);
static const char *iso8859_16_aliases[] = {"ISO8859-16", NULL};
static const unsigned short iso8859_16_ucs_table[] = {
0x00A0, 0x0104, 0x0105, 0x0141, 0x20AC, 0x201E, 0x0160, 0x00A7,
0x0161, 0x00A9, 0x0218, 0x00AB, 0x0179, 0x00AD, 0x017A, 0x017B,
0x00B0, 0x00B1, 0x010C, 0x0142, 0x017D, 0x201D, 0x00B6, 0x00B7,
0x017E, 0x010D, 0x0219, 0x00BB, 0x0152, 0x0153, 0x0178, 0x017C,
0x00C0, 0x00C1, 0x00C2, 0x0102, 0x00C4, 0x0106, 0x00C6, 0x00C7,
0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF,
0x0110, 0x0143, 0x00D2, 0x00D3, 0x00D4, 0x0150, 0x00D6, 0x015A,
0x0170, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x0118, 0x021A, 0x00DF,
0x00E0, 0x00E1, 0x00E2, 0x0103, 0x00E4, 0x0107, 0x00E6, 0x00E7,
0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF,
0x0111, 0x0144, 0x00F2, 0x00F3, 0x00F4, 0x0151, 0x00F6, 0x015B,
0x0171, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x0119, 0x021B, 0x00FF
};
DEF_SB_TBL(8859_16, "ISO-8859-16", "ISO-8859-16", iso8859_16_aliases, 0xA0, iso8859_16_ucs_table);
static const char *cp1251_aliases[] = {"CP1251", "CP-1251", "WINDOWS-1251", NULL};
static const unsigned short cp1251_ucs_table[] = {
0x0402, 0x0403, 0x201A, 0x0453, 0x201E, 0x2026, 0x2020, 0x2021,
0x20AC, 0x2030, 0x0409, 0x2039, 0x040A, 0x040C, 0x040B, 0x040F,
0x0452, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
0x0000, 0x2122, 0x0459, 0x203A, 0x045A, 0x045C, 0x045B, 0x045F,
0x00A0, 0x040E, 0x045E, 0x0408, 0x00A4, 0x0490, 0x00A6, 0x00A7,
0x0401, 0x00A9, 0x0404, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x0407,
0x00B0, 0x00B1, 0x0406, 0x0456, 0x0491, 0x00B5, 0x00B6, 0x00B7,
0x0451, 0x2116, 0x0454, 0x00BB, 0x0458, 0x0405, 0x0455, 0x0457,
0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417,
0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F,
0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427,
0x0428, 0x0429, 0x042A, 0x042B, 0x042C, 0x042D, 0x042E, 0x042F,
0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437,
0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F,
0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,
0x0448, 0x0449, 0x044A, 0x044B, 0x044C, 0x044D, 0x044E, 0x044F
};
DEF_SB_TBL(cp1251, "Windows-1251", "Windows-1251", cp1251_aliases, 0x80, cp1251_ucs_table);
static const char *cp1252_aliases[] = {"cp1252", NULL};
static const unsigned short cp1252_ucs_table[] = {
0x20AC, 0x0000, 0x201A, 0x0192, 0x201E, 0x2026, 0x2020, 0x2021,
0x02C6, 0x2030, 0x0160, 0x2039, 0x0152, 0x0000, 0x017D, 0x0000,
0x0000, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
0x02DC, 0x2122, 0x0161, 0x203A, 0x0153, 0x0000, 0x017E, 0x0178
};
DEF_SB(cp1252, "Windows-1252", "Windows-1252", cp1252_aliases);
static int mbfl_filt_conv_wchar_cp1252(int c, mbfl_convert_filter *filter)
{
if (c >= 0x100) {
for (int n = 0; n < 32; n++) {
if (c == cp1252_ucs_table[n]) {
CK((*filter->output_function)(0x80 + n, filter->data));
return 0;
}
}
CK(mbfl_filt_conv_illegal_output(c, filter));
} else if ((c <= 0x7F || c >= 0xA0) && c != MBFL_BAD_INPUT) {
CK((*filter->output_function)(c, filter->data));
} else {
CK(mbfl_filt_conv_illegal_output(c, filter));
}
return 0;
}
static int mbfl_filt_conv_cp1252_wchar(int c, mbfl_convert_filter *filter)
{
int s;
if (c >= 0x80 && c < 0xA0) {
s = coalesce(cp1252_ucs_table[c - 0x80], MBFL_BAD_INPUT);
} else {
s = c;
}
CK((*filter->output_function)(s, filter->data));
return 0;
}
static size_t mb_cp1252_to_wchar(unsigned char **in, size_t *in_len, uint32_t *buf, size_t bufsize, unsigned int *state)
{
unsigned char *p = *in, *e = p + *in_len;
uint32_t *out = buf, *limit = buf + bufsize;
while (p < e && out < limit) {
unsigned char c = *p++;
if (c >= 0x80 && c < 0xA0) {
*out++ = coalesce(cp1252_ucs_table[c - 0x80], MBFL_BAD_INPUT);
} else {
*out++ = c;
}
}
*in_len = e - p;
*in = p;
return out - buf;
}
static void mb_wchar_to_cp1252(uint32_t *in, size_t len, mb_convert_buf *buf, bool end)
{
unsigned char *out, *limit;
MB_CONVERT_BUF_LOAD(buf, out, limit);
MB_CONVERT_BUF_ENSURE(buf, out, limit, len);
while (len--) {
uint32_t w = *in++;
if (w >= 0x100) {
for (int i = 0; i < 32; i++) {
if (w == cp1252_ucs_table[i]) {
out = mb_convert_buf_add(out, i + 0x80);
goto continue_cp1252;
}
}
MB_CONVERT_ERROR(buf, out, limit, w, mb_wchar_to_cp1252);
MB_CONVERT_BUF_ENSURE(buf, out, limit, len);
} else if (w <= 0x7F || w >= 0xA0) {
out = mb_convert_buf_add(out, w);
} else {
MB_CONVERT_ERROR(buf, out, limit, w, mb_wchar_to_cp1252);
MB_CONVERT_BUF_ENSURE(buf, out, limit, len);
}
continue_cp1252: ;
}
MB_CONVERT_BUF_STORE(buf, out, limit);
}
static const char *cp1254_aliases[] = {"CP1254", "CP-1254", "WINDOWS-1254", NULL};
static const unsigned short cp1254_ucs_table[] = {
0x20AC, 0X0000, 0X201A, 0X0192, 0X201E, 0X2026, 0X2020, 0X2021,
0X02C6, 0X2030, 0X0160, 0X2039, 0X0152, 0X0000, 0X0000, 0X0000,
0X0000, 0X2018, 0X2019, 0X201C, 0X201D, 0X2022, 0X2013, 0X2014,
0X02DC, 0X2122, 0X0161, 0X203A, 0X0153, 0X0000, 0X0000, 0X0178,
0X00A0, 0X00A1, 0X00A2, 0X00A3, 0X00A4, 0X00A5, 0X00A6, 0X00A7,
0X00A8, 0X00A9, 0X00AA, 0X00AB, 0X00AC, 0X00AD, 0X00AE, 0X00AF,
0X00B0, 0X00B1, 0X00B2, 0X00B3, 0X00B4, 0X00B5, 0X00B6, 0X00B7,
0X00B8, 0X00B9, 0X00BA, 0X00BB, 0X00BC, 0X00BD, 0X00BE, 0X00BF,
0X00C0, 0X00C1, 0X00C2, 0X00C3, 0X00C4, 0X00C5, 0X00C6, 0X00C7,
0X00C8, 0X00C9, 0X00CA, 0X00CB, 0X00CC, 0X00CD, 0X00CE, 0X00CF,
0X011E, 0X00D1, 0X00D2, 0X00D3, 0X00D4, 0X00D5, 0X00D6, 0X00D7,
0X00D8, 0X00D9, 0X00DA, 0X00DB, 0X00DC, 0X0130, 0X015E, 0X00DF,
0X00E0, 0X00E1, 0X00E2, 0X00E3, 0X00E4, 0X00E5, 0X00E6, 0X00E7,
0X00E8, 0X00E9, 0X00EA, 0X00EB, 0X00EC, 0X00ED, 0X00EE, 0X00EF,
0X011F, 0X00F1, 0X00F2, 0X00F3, 0X00F4, 0X00F5, 0X00F6, 0X00F7,
0X00F8, 0X00F9, 0X00FA, 0X00FB, 0X00FC, 0X0131, 0X015F, 0X00FF
};
DEF_SB_TBL(cp1254, "Windows-1254", "Windows-1254", cp1254_aliases, 0x80, cp1254_ucs_table);
static const char *cp866_aliases[] = {"CP-866", "IBM866", "IBM-866", NULL};
static const unsigned short cp866_ucs_table[] = {
0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417,
0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F,
0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427,
0x0428, 0x0429, 0x042A, 0x042B, 0x042C, 0x042D, 0x042E, 0x042F,
0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437,
0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F,
0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,
0x2555, 0x2563, 0x2551, 0x2557, 0x255D, 0x255C, 0x255B, 0x2510,
0x2514, 0x2534, 0x252C, 0x251C, 0x2500, 0x253C, 0x255E, 0x255F,
0x255A, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256C, 0x2567,
0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256B,
0x256A, 0x2518, 0x250C, 0x2588, 0x2584, 0x258C, 0x2590, 0x2580,
0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,
0x0448, 0x0449, 0x044A, 0x044B, 0x044C, 0x044D, 0x044E, 0x044F,
0x0401, 0x0451, 0x0404, 0x0454, 0x0407, 0x0457, 0x040E, 0x045E,
0x00B0, 0x2219, 0x00B7, 0x221A, 0x2116, 0x00A4, 0x25A0, 0x00A0
};
DEF_SB_TBL(cp866, "CP866", "CP866", cp866_aliases, 0x80, cp866_ucs_table);
static const char *cp850_aliases[] = {"CP-850", "IBM850", "IBM-850", NULL};
static const unsigned short cp850_ucs_table[] = {
0x00C7, 0x00FC, 0x00E9, 0x00E2, 0x00E4, 0x00E0, 0x00E5, 0x00E7,
0x00EA, 0x00EB, 0x00E8, 0x00EF, 0x00EE, 0x00EC, 0x00C4, 0x00C5,
0x00C9, 0x00E6, 0x00C6, 0x00F4, 0x00F6, 0x00F2, 0x00FB, 0x00F9,
0x00FF, 0x00D6, 0x00DC, 0x00F8, 0x00A3, 0x00D8, 0x00D7, 0x0192,
0x00E1, 0x00ED, 0x00F3, 0x00FA, 0x00F1, 0x00D1, 0x00AA, 0x00BA,
0x00BF, 0x00AE, 0x00AC, 0x00BD, 0x00BC, 0x00A1, 0x00AB, 0x00BB,
0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x00C1, 0x00C2, 0x00C0,
0x00A9, 0x2563, 0x2551, 0x2557, 0x255D, 0x00A2, 0x00A5, 0x2510,
0x2514, 0x2534, 0x252C, 0x251C, 0x2500, 0x253C, 0x00E3, 0x00C3,
0x255A, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256C, 0x00A4,
0x00F0, 0x00D0, 0x00CA, 0x00CB, 0x00C8, 0x0131, 0x00CD, 0x00CE,
0x00CF, 0x2518, 0x250C, 0x2588, 0x2584, 0x00A6, 0x00CC, 0x2580,
0x00D3, 0x00DF, 0x00D4, 0x00D2, 0x00F5, 0x00D5, 0x00B5, 0x00FE,
0x00DE, 0x00DA, 0x00DB, 0x00D9, 0x00FD, 0x00DD, 0x00AF, 0x00B4,
0x00AD, 0x00B1, 0x2017, 0x00BE, 0x00B6, 0x00A7, 0x00F7, 0x00B8,
0x00B0, 0x00A8, 0x00B7, 0x00B9, 0x00B3, 0x00B2, 0x25A0, 0x00A0
};
DEF_SB_TBL(cp850, "CP850", "CP850", cp850_aliases, 0x80, cp850_ucs_table);
static const char *koi8r_aliases[] = {"KOI8R", NULL};
static const unsigned short koi8r_ucs_table[] = {
0x2500, 0x2502, 0x250C, 0x2510, 0x2514, 0x2518, 0x251C, 0x2524,
0x252C, 0x2534, 0x253C, 0x2580, 0x2584, 0x2588, 0x258C, 0x2590,
0x2591, 0x2592, 0x2593, 0x2320, 0x25A0, 0x2219, 0x221A, 0x2248,
0x2264, 0x2265, 0x00A0, 0x2321, 0x00B0, 0x00B2, 0x00B7, 0x00F7,
0x2550, 0x2551, 0x2552, 0x0451, 0x2553, 0x2554, 0x2555, 0x2556,
0x2557, 0x2558, 0x2559, 0x255A, 0x255B, 0x255C, 0x255D, 0x255E,
0x255F, 0x2560, 0x2561, 0x0401, 0x2562, 0x2563, 0x2564, 0x2565,
0x2566, 0x2567, 0x2568, 0x2569, 0x256A, 0x256B, 0x256C, 0x00A9,
0x044E, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433,
0x0445, 0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E,
0x043F, 0x044F, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432,
0x044C, 0x044B, 0x0437, 0x0448, 0x044D, 0x0449, 0x0447, 0x044A,
0x042E, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413,
0x0425, 0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E,
0x041F, 0x042F, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412,
0x042C, 0x042B, 0x0417, 0x0428, 0x042D, 0x0429, 0x0427, 0x042A
};
DEF_SB_TBL(koi8r, "KOI8-R", "KOI8-R", koi8r_aliases, 0x80, koi8r_ucs_table);
static const char *koi8u_aliases[] = {"KOI8U", NULL};
static const unsigned short koi8u_ucs_table[] = {
0x2500, 0x2502, 0x250C, 0x2510, 0x2514, 0x2518, 0x251C, 0x2524,
0x252C, 0x2534, 0x253C, 0x2580, 0x2584, 0x2588, 0x258C, 0x2590,
0x2591, 0x2592, 0x2593, 0x2320, 0x25A0, 0x2219, 0x221A, 0x2248,
0x2264, 0x2265, 0x00A0, 0x2321, 0x00B0, 0x00B2, 0x00B7, 0x00F7,
0x2550, 0x2551, 0x2552, 0x0451, 0x0454, 0x2554, 0x0456, 0x0457,
0x2557, 0x2558, 0x2559, 0x255A, 0x255B, 0x0491, 0x255D, 0x255E,
0x255F, 0x2560, 0x2561, 0x0401, 0x0404, 0x2563, 0x0406, 0x0407,
0x2566, 0x2567, 0x2568, 0x2569, 0x256A, 0x0490, 0x256C, 0x00A9,
0x044E, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433,
0x0445, 0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E,
0x043F, 0x044F, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432,
0x044C, 0x044B, 0x0437, 0x0448, 0x044D, 0x0449, 0x0447, 0x044A,
0x042E, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413,
0x0425, 0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E,
0x041F, 0x042F, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412,
0x042C, 0x042B, 0x0417, 0x0428, 0x042D, 0x0429, 0x0427, 0x042A
};
DEF_SB_TBL(koi8u, "KOI8-U", "KOI8-U", koi8u_aliases, 0x80, koi8u_ucs_table);
static const char *armscii8_aliases[] = {"ArmSCII8", "ARMSCII-8", "ARMSCII8", NULL};
static const unsigned short armscii8_ucs_table[] = {
0x00A0, 0x0000, 0x0587, 0x0589, 0x0029, 0x0028, 0x00BB, 0x00AB,
0x2014, 0x002E, 0x055D, 0x002C, 0x002D, 0x058A, 0x2026, 0x055C,
0x055B, 0x055E, 0x0531, 0x0561, 0x0532, 0x0562, 0x0533, 0x0563,
0x0534, 0x0564, 0x0535, 0x0565, 0x0536, 0x0566, 0x0537, 0x0567,
0x0538, 0x0568, 0x0539, 0x0569, 0x053A, 0x056A, 0x053B, 0x056B,
0x053C, 0x056C, 0x053D, 0x056D, 0x053E, 0x056E, 0x053F, 0x056F,
0x0540, 0x0570, 0x0541, 0x0571, 0x0542, 0x0572, 0x0543, 0x0573,
0x0544, 0x0574, 0x0545, 0x0575, 0x0546, 0x0576, 0x0547, 0x0577,
0x0548, 0x0578, 0x0549, 0x0579, 0x054A, 0x057A, 0x054B, 0x057B,
0x054C, 0x057C, 0x054D, 0x057D, 0x054E, 0x057E, 0x054F, 0x057F,
0x0550, 0x0580, 0x0551, 0x0581, 0x0552, 0x0582, 0x0553, 0x0583,
0x0554, 0x0584, 0x0555, 0x0585, 0x0556, 0x0586, 0x055A, 0x0000
};
static const unsigned char ucs_armscii8_table[] = {
0xA5, 0xA4, 0x2A, 0x2B, 0xAB, 0xAC, 0xA9, 0x2F
};
DEF_SB(armscii8, "ArmSCII-8", "ArmSCII-8", armscii8_aliases);
static int mbfl_filt_conv_armscii8_wchar(int c, mbfl_convert_filter *filter)
{
CK((*filter->output_function)((c < 0xA0) ? c : coalesce(armscii8_ucs_table[c - 0xA0], MBFL_BAD_INPUT), filter->data));
return 0;
}
static int mbfl_filt_conv_wchar_armscii8(int c, mbfl_convert_filter *filter)
{
if (c >= 0x28 && c <= 0x2F) {
CK((*filter->output_function)(ucs_armscii8_table[c - 0x28], filter->data));
} else if (c == MBFL_BAD_INPUT) {
CK(mbfl_filt_conv_illegal_output(c, filter));
} else if (c < 0xA0) {
CK((*filter->output_function)(c, filter->data));
} else {
for (int n = 0; n < 0x60; n++) {
if (c == armscii8_ucs_table[n]) {
CK((*filter->output_function)(0xA0 + n, filter->data));
return 0;
}
}
CK(mbfl_filt_conv_illegal_output(c, filter));
}
return 0;
}
static size_t mb_armscii8_to_wchar(unsigned char **in, size_t *in_len, uint32_t *buf, size_t bufsize, unsigned int *state)
{
unsigned char *p = *in, *e = p + *in_len;
uint32_t *out = buf, *limit = buf + bufsize;
while (p < e && out < limit) {
unsigned char c = *p++;
*out++ = (c < 0xA0) ? c : coalesce(armscii8_ucs_table[c - 0xA0], MBFL_BAD_INPUT);
}
*in_len = e - p;
*in = p;
return out - buf;
}
static void mb_wchar_to_armscii8(uint32_t *in, size_t len, mb_convert_buf *buf, bool end)
{
unsigned char *out, *limit;
MB_CONVERT_BUF_LOAD(buf, out, limit);
MB_CONVERT_BUF_ENSURE(buf, out, limit, len);
while (len--) {
uint32_t w = *in++;
if (w >= 0x28 && w <= 0x2F) {
out = mb_convert_buf_add(out, ucs_armscii8_table[w - 0x28]);
} else if (w < 0xA0) {
out = mb_convert_buf_add(out, w);
} else {
for (int i = 0; i < 0x60; i++) {
if (w == armscii8_ucs_table[i]) {
out = mb_convert_buf_add(out, 0xA0 + i);
goto continue_armscii8;
}
}
MB_CONVERT_ERROR(buf, out, limit, w, mb_wchar_to_armscii8);
MB_CONVERT_BUF_ENSURE(buf, out, limit, len);
}
continue_armscii8: ;
}
MB_CONVERT_BUF_STORE(buf, out, limit);
}
| C | 5 | NathanFreeman/php-src | ext/mbstring/libmbfl/filters/mbfilter_singlebyte.c | [
"PHP-3.01"
] |
import value, { assets } from "./report-child-assets-loader!./file";
it("should not emit hot updates from child compilers", done => {
expect(value).toBe(1);
expect(assets).toEqual(["test.js"]);
module.hot.accept("./report-child-assets-loader!./file", () => {
expect(value).toBe(2);
expect(assets).toEqual(["test.js"]);
done();
});
NEXT(require("../../update")(done));
});
| JavaScript | 3 | 1shenxi/webpack | test/hotCases/child-compiler/issue-9706/index.js | [
"MIT"
] |
package universe_test
import "testing"
import "testing/expect"
import "planner"
import "csv"
testcase last_multi_shard {
expect.planner(rules: ["PushDownBareAggregateRule": 1])
input = "
#group,false,false,true,true,false,false,true,true,true
#datatype,string,long,dateTime:RFC3339,dateTime:RFC3339,dateTime:RFC3339,double,string,string,string
#default,_result,,,,,,,,
,result,table,_start,_stop,_time,_value,_field,_measurement,meter
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2019-04-11T07:00:00Z,0,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2019-04-23T07:00:00Z,64,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2019-05-22T07:00:00Z,759,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2019-06-24T07:00:00Z,1234,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2019-07-24T07:00:00Z,1503,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2019-08-22T07:00:00Z,1707,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2019-09-23T07:00:00Z,1874,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2019-10-23T07:00:00Z,2086,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2019-11-21T08:00:00Z,2187,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2019-12-24T08:00:00Z,1851,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2020-01-24T08:00:00Z,1391,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2020-02-24T08:00:00Z,1221,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2020-03-25T07:00:00Z,0,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2020-04-23T07:00:00Z,447,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2020-05-22T07:00:00Z,868,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2020-06-23T07:00:00Z,1321,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2020-07-23T07:00:00Z,1453,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2020-08-21T07:00:00Z,1332,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2020-09-23T07:00:00Z,1312,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2020-10-22T07:00:00Z,1261,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2020-11-20T08:00:00Z,933,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2020-12-23T08:00:00Z,233,bank,pge_bill,35632393IN
,,0,2017-02-16T20:30:31.713576368Z,2021-02-16T20:30:31.713576368Z,2021-01-26T08:00:00Z,-1099,bank,pge_bill,35632393IN
"
want = csv.from(
csv: "
#group,false,false,false,false,true,true
#datatype,string,long,dateTime:RFC3339,double,string,string
#default,_result,,,,,
,result,table,_time,_value,_field,_measurement
,,0,2021-01-26T08:00:00Z,-1099,bank,pge_bill
",
)
result = testing.loadStorage(csv: input)
|> range(start: -3y)
|> filter(fn: (r) => r._measurement == "pge_bill" and r._field == "bank")
|> last()
|> keep(columns: ["_time", "_value", "_field", "_measurement"])
testing.diff(want: want, got: result)
}
| FLUX | 3 | ldwformat/influxdb | query/stdlib/universe/last_test.flux | [
"MIT"
] |
- dashboard: business_pulse
title: Business Pulse
layout: newspaper
elements:
- title: Untitled
name: Untitled
model: shopify
explore: orders
type: single_value
fields:
- orders__line_items.avg_price
- orders.created_date
fill_fields:
- orders.created_date
sorts:
- orders.created_date desc
limit: 500
custom_color_enabled: false
custom_color: forestgreen
show_single_value_title: true
show_comparison: false
comparison_type: value
comparison_reverse_colors: false
show_comparison_label: true
stacking: ''
show_value_labels: false
label_density: 25
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: true
limit_displayed_rows: false
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
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
series_types: {}
single_value_title: Average Order Sale Price
row: 0
col: 0
width: 8
height: 3
- title: New Tile
name: New Tile
model: shopify
explore: orders
type: single_value
fields:
- orders.reporting_period
- orders__line_items.count
sorts:
- orders__line_items.count desc
limit: 500
query_timezone: America/New_York
custom_color_enabled: false
custom_color: forestgreen
show_single_value_title: true
show_comparison: false
comparison_type: change
comparison_reverse_colors: false
show_comparison_label: true
stacking: ''
show_value_labels: false
label_density: 25
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: true
limit_displayed_rows: false
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
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
series_types: {}
single_value_title: Orders This Year
comparison_label: vs Same Period Last Year
note_state: collapsed
note_display: below
note_text: There is no current 2018 data for the reporting period hence the vs
same period last year is NULL
row: 0
col: 8
width: 8
height: 3
- title: Orders by Day and Category
name: Orders by Day and Category
model: shopify
explore: orders
type: looker_area
fields:
- orders__line_items.count
- products.product_type
- orders.created_date
pivots:
- products.product_type
fill_fields:
- orders.created_date
filters:
products.product_type: "%Sneakers%,%Apparel%,%Choozepack%,%Sandals%,%Loafers%,%Slip-Ons%"
orders.created_year: '2016'
sorts:
- orders__line_items.count desc 0
- products.product_type
limit: 500
column_limit: 50
query_timezone: America/New_York
stacking: normal
show_value_labels: false
label_density: 25
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: true
limit_displayed_rows: false
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
show_null_points: true
point_style: none
interpolation: linear
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
show_row_numbers: true
truncate_column_names: false
hide_totals: false
hide_row_totals: false
table_theme: editable
enable_conditional_formatting: false
conditional_formatting_include_totals: false
conditional_formatting_include_nulls: false
series_types: {}
x_axis_datetime_tick_count: 10
colors:
- 'palette: Looker Classic'
series_colors: {}
row: 18
col: 0
width: 24
height: 8
- title: Total Sales, Year over Year
name: Total Sales, Year over Year
model: shopify
explore: orders
type: looker_line
fields:
- orders.created_year
- orders.created_month_num
- orders.total_order_revenue
pivots:
- orders.created_year
fill_fields:
- orders.created_year
- orders.created_month_num
sorts:
- orders.created_year
- orders.created_month_num
limit: 500
stacking: ''
show_value_labels: false
label_density: 25
legend_position: right
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: true
limit_displayed_rows: false
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
show_null_points: true
point_style: none
interpolation: monotone
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
series_types: {}
x_axis_label: Month of Year
y_axes:
- label: Total Sale Price
maxValue:
minValue:
orientation: left
showLabels: true
showValues: true
tickDensity: default
tickDensityCustom: 5
type: linear
unpinAxis: false
valueFormat:
series:
- id: '2015'
name: '2015'
axisId: orders.total_order
- id: '2016'
name: '2016'
axisId: orders.total_order
- id: '2017'
name: '2017'
axisId: orders.total_order
colors:
- 'palette: Tomato to Steel Blue'
series_colors:
2016 - orders.total_order_revenue: "#8E687E"
2017 - orders.total_order_revenue: "#4D6C97"
row: 3
col: 13
width: 11
height: 6
- title: User Spend by Location
name: User Spend by Location
model: shopify
explore: orders
type: looker_map
fields:
- orders.shipping_location
- orders.total_order_revenue
sorts:
- orders.total_order_revenue desc
limit: 500
query_timezone: America/New_York
map_plot_mode: points
heatmap_gridlines: false
heatmap_gridlines_empty: false
heatmap_opacity: 0.5
show_region_field: true
draw_map_labels_above_data: true
map_tile_provider: positron
map_position: custom
map_scale_indicator: 'off'
map_pannable: true
map_zoomable: true
map_marker_type: circle
map_marker_icon_name: default
map_marker_radius_mode: proportional_value
map_marker_units: meters
map_marker_proportional_scale_type: linear
map_marker_color_mode: fixed
show_view_names: true
show_legend: true
quantize_map_value_colors: false
reverse_map_value_colors: false
map_latitude: -71.90918219403265
map_longitude: 14.449768066406252
map_zoom: 1
row: 3
col: 0
width: 13
height: 6
- title: first_purchase_count
name: first_purchase_count
model: shopify
explore: orders
type: single_value
fields:
- orders__line_items.first_purchase_count
filters:
orders.created_date: '2017'
sorts:
- calculation_1 desc
limit: 500
dynamic_fields:
- table_calculation: calculation_1
label: Calculation 1
expression: '20000'
value_format:
value_format_name: decimal_0
_kind_hint: dimension
_type_hint: number
query_timezone: America/New_York
custom_color_enabled: false
custom_color: forestgreen
show_single_value_title: true
show_comparison: true
comparison_type: progress_percentage
comparison_reverse_colors: false
show_comparison_label: true
show_view_names: true
show_row_numbers: true
truncate_column_names: false
hide_totals: false
hide_row_totals: false
table_theme: editable
limit_displayed_rows: false
enable_conditional_formatting: false
conditional_formatting_include_totals: false
conditional_formatting_include_nulls: false
series_types: {}
single_value_title: New Users Acquired
comparison_label: Goal
row: 0
col: 16
width: 8
height: 3
- title: Cohort Analysis
name: Cohort Analysis
model: shopify
explore: orders
type: looker_area
fields:
- customers.created_month
- orders.created_month
- orders.total_order_revenue
pivots:
- customers.created_month
fill_fields:
- customers.created_month
- orders.created_month
filters:
customers.created_month: 2016/10/01 to 2017/10/01
orders.created_month: 2016/10/01 to 2017/10/01
sorts:
- orders.created_month desc
- customers.created_month desc
limit: 500
column_limit: 50
stacking: normal
show_value_labels: false
label_density: 25
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: true
limit_displayed_rows: false
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
show_null_points: true
point_style: none
interpolation: linear
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
show_row_numbers: true
truncate_column_names: false
hide_totals: false
hide_row_totals: false
table_theme: editable
enable_conditional_formatting: false
conditional_formatting_include_totals: false
conditional_formatting_include_nulls: false
series_types: {}
colors:
- 'palette: Tomato to Steel Blue'
series_colors: {}
row: 9
col: 0
width: 13
height: 9
- title: Order Drop-off Rate
name: Order Drop-off Rate
model: shopify
explore: orders
type: looker_column
fields:
- customers.orders_count
- customers.count
sorts:
- customers.orders_count
limit: 5
column_limit: 50
stacking: ''
show_value_labels: true
label_density: 25
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: true
limit_displayed_rows: false
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
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
series_colors:
customers.count: "#1f3e5a"
show_dropoff: true
y_axes:
- label: ''
maxValue:
minValue:
orientation: left
showLabels: true
showValues: false
tickDensity: default
tickDensityCustom: 5
type: linear
unpinAxis: false
valueFormat:
series:
- id: customers.count
name: Customers Count
axisId: customers.count
row: 9
col: 13
width: 11
height: 9
- title: Top 5 Product Types Ordered
name: Top 5 Product Types Ordered
model: shopify
explore: orders
type: looker_pie
fields:
- customer_order_facts.total_lifetime_revenue
- products.product_type
sorts:
- customer_order_facts.total_lifetime_revenue desc
- products.product_type
limit: 5
column_limit: 50
value_labels: legend
label_type: labPer
stacking: ''
show_value_labels: true
label_density: 25
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: true
limit_displayed_rows: false
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
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
show_null_points: true
point_style: none
interpolation: linear
show_row_numbers: true
truncate_column_names: false
hide_totals: false
hide_row_totals: false
table_theme: editable
enable_conditional_formatting: false
conditional_formatting_include_totals: false
conditional_formatting_include_nulls: false
map_plot_mode: points
heatmap_gridlines: false
heatmap_gridlines_empty: false
heatmap_opacity: 0.5
show_region_field: true
draw_map_labels_above_data: true
map_tile_provider: positron
map_position: fit_data
map_scale_indicator: 'off'
map_pannable: true
map_zoomable: true
map_marker_type: circle
map_marker_icon_name: default
map_marker_radius_mode: proportional_value
map_marker_units: meters
map_marker_proportional_scale_type: linear
map_marker_color_mode: fixed
show_legend: true
quantize_map_value_colors: false
reverse_map_value_colors: false
series_colors: {}
show_dropoff: false
y_axes:
- label: ''
maxValue:
minValue:
orientation: left
showLabels: true
showValues: false
tickDensity: default
tickDensityCustom: 5
type: linear
unpinAxis: false
valueFormat:
series:
- id: customers.count
name: Customers Count
axisId: customers.count
series_types: {}
colors:
- 'palette: Mixed Pastels'
row: 26
col: 0
width: 10
height: 6
- title: Total Revenue by Customer Creation Date
name: Total Revenue by Customer Creation Date
model: shopify
explore: orders
type: looker_line
fields:
- orders.total_order_revenue
- customers.created_date
fill_fields:
- customers.created_date
sorts:
- orders.total_order_revenue desc
limit: 500
column_limit: 50
query_timezone: America/New_York
stacking: ''
show_value_labels: false
label_density: 25
legend_position: center
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: false
limit_displayed_rows: false
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
show_null_points: true
point_style: none
interpolation: linear
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
map: usa
map_projection: ''
quantize_colors: false
map_plot_mode: points
heatmap_gridlines: false
heatmap_gridlines_empty: false
heatmap_opacity: 0.5
show_region_field: true
draw_map_labels_above_data: true
map_tile_provider: positron
map_position: custom
map_scale_indicator: 'off'
map_pannable: true
map_zoomable: true
map_marker_type: circle
map_marker_icon_name: default
map_marker_radius_mode: proportional_value
map_marker_units: meters
map_marker_proportional_scale_type: linear
map_marker_color_mode: fixed
show_legend: true
quantize_map_value_colors: false
reverse_map_value_colors: false
font_size: '12'
custom_color_enabled: false
custom_color: forestgreen
show_single_value_title: true
show_comparison: false
comparison_type: value
comparison_reverse_colors: false
show_comparison_label: true
show_row_numbers: true
truncate_column_names: false
hide_totals: false
hide_row_totals: false
table_theme: editable
enable_conditional_formatting: false
conditional_formatting_include_totals: false
conditional_formatting_include_nulls: false
series_types: {}
map_latitude: 35.55904339525896
map_longitude: -87.24380493164062
map_zoom: 2
y_axes:
- label: ''
maxValue:
minValue:
orientation: left
showLabels: true
showValues: true
tickDensity: default
tickDensityCustom: 5
type: linear
unpinAxis: false
valueFormat:
series:
- id: orders.total_order_revenue
name: Orders Total Order Revenue
axisId: orders.total_order_revenue
x_axis_label: Customer Creation Date
row: 26
col: 10
width: 14
height: 6
- title: Product Revenue Performance by Month
name: Product Revenue Performance by Month
model: shopify
explore: orders
type: looker_area
fields:
- orders.created_month_num
- products.product_type
- orders.total_order_revenue
pivots:
- products.product_type
fill_fields:
- orders.created_month_num
filters:
products.product_type: "-NULL"
sorts:
- orders.created_month_num
- products.product_type desc
limit: 500
column_limit: 5
query_timezone: America/New_York
stacking: normal
show_value_labels: false
label_density: 25
legend_position: right
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: false
limit_displayed_rows: false
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
show_null_points: false
point_style: circle
interpolation: linear
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
ordering: none
show_null_labels: false
value_labels: legend
label_type: labPer
font_size: '12'
map: usa
map_projection: ''
quantize_colors: false
map_plot_mode: points
heatmap_gridlines: false
heatmap_gridlines_empty: false
heatmap_opacity: 0.5
show_region_field: true
draw_map_labels_above_data: true
map_tile_provider: positron
map_position: custom
map_scale_indicator: 'off'
map_pannable: true
map_zoomable: true
map_marker_type: circle
map_marker_icon_name: default
map_marker_radius_mode: proportional_value
map_marker_units: meters
map_marker_proportional_scale_type: linear
map_marker_color_mode: fixed
show_legend: true
quantize_map_value_colors: false
reverse_map_value_colors: false
custom_color_enabled: false
custom_color: forestgreen
show_single_value_title: true
show_comparison: false
comparison_type: value
comparison_reverse_colors: false
show_comparison_label: true
show_row_numbers: true
truncate_column_names: false
hide_totals: false
hide_row_totals: false
table_theme: editable
enable_conditional_formatting: false
conditional_formatting_include_totals: false
conditional_formatting_include_nulls: false
series_types: {}
map_latitude: 35.55904339525896
map_longitude: -87.24380493164062
map_zoom: 2
y_axes:
- label: ''
maxValue:
minValue:
orientation: left
showLabels: true
showValues: true
tickDensity: default
tickDensityCustom: 5
type: linear
unpinAxis: false
valueFormat:
series:
- id: orders.total_order_revenue
name: Orders Total Order Revenue
axisId: orders.total_order_revenue
x_axis_label: Order Date
focus_on_hover: false
swap_axes: false
colors:
- 'palette: Mixed Pastels'
series_colors: {}
row: 32
col: 13
width: 11
height: 7
- title: Top 10 Revenue Generating Cities
name: Top 10 Revenue Generating Cities
model: shopify
explore: orders
type: looker_column
fields:
- customers.city
- customer_order_facts.total_lifetime_revenue
filters:
customers.city: "-NULL"
sorts:
- customer_order_facts.total_lifetime_revenue desc
limit: 10
column_limit: 50
query_timezone: America/New_York
stacking: ''
show_value_labels: true
label_density: 25
legend_position: right
x_axis_gridlines: false
y_axis_gridlines: true
show_view_names: false
limit_displayed_rows: false
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
ordering: none
show_null_labels: false
show_totals_labels: false
show_silhouette: false
totals_color: "#808080"
show_null_points: false
point_style: circle
interpolation: linear
value_labels: legend
label_type: labPer
font_size: '12'
map: usa
map_projection: ''
quantize_colors: false
map_plot_mode: points
heatmap_gridlines: false
heatmap_gridlines_empty: false
heatmap_opacity: 0.5
show_region_field: true
draw_map_labels_above_data: true
map_tile_provider: positron
map_position: custom
map_scale_indicator: 'off'
map_pannable: true
map_zoomable: true
map_marker_type: circle
map_marker_icon_name: default
map_marker_radius_mode: proportional_value
map_marker_units: meters
map_marker_proportional_scale_type: linear
map_marker_color_mode: fixed
show_legend: true
quantize_map_value_colors: false
reverse_map_value_colors: false
custom_color_enabled: false
custom_color: forestgreen
show_single_value_title: true
show_comparison: false
comparison_type: value
comparison_reverse_colors: false
show_comparison_label: true
show_row_numbers: true
truncate_column_names: false
hide_totals: false
hide_row_totals: false
table_theme: editable
enable_conditional_formatting: false
conditional_formatting_include_totals: false
conditional_formatting_include_nulls: false
series_types: {}
map_latitude: 35.55904339525896
map_longitude: -87.24380493164062
map_zoom: 2
y_axes:
- label: ''
maxValue:
minValue:
orientation: left
showLabels: true
showValues: true
tickDensity: default
tickDensityCustom: 5
type: linear
unpinAxis: false
valueFormat:
series:
- id: orders.total_order_revenue
name: Orders Total Order Revenue
axisId: orders.total_order_revenue
x_axis_label: City
focus_on_hover: false
swap_axes: false
colors:
- 'palette: Tomato to Steel Blue'
series_colors: {}
show_dropoff: false
row: 32
col: 0
width: 13
height: 7
| LookML | 4 | llooker/block-stitch-shopify | business_pulse.dashboard.lookml | [
"MIT"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.